[Chandler-dev] Re: (grant) [12170] Apologies for the spate of commits

Grant Baillie grant at osafoundation.org
Tue Oct 31 10:02:47 PST 2006


For those on the commits list, apologies for the chunk of 10 commit  
messages. I was trying out a new command in SVK ("svk push"), and  
didn't realize it replayed my local branch commits one-by-one without  
asking me for input.

The _real_ commit message was:

Fix Bug 6329 (Triage: Purge button commits pending triage-status  
changes)

I have now committed Purgery, although sadly, the button has been  
renamed to “Triage” instead of ”Purge”. Saying you’ve committed  
Triagery doesn’t have quite the same ring to it :(.

--Grant




Begin forwarded message:

> From: commits at osafoundation.org
> Date: 31 October, 2006 09:02:55 PST
> To: commits at osafoundation.org
> Subject: [commits] (grant) [12170] r13850 at Pro-Grammar: grant |  
> 2006-10-30 18:21:47 -0800
> Reply-To: chandler-dev at osafoundation.org
>
> Revision
> 12170
> Author
> grant
> Date
> 2006-10-31 09:02:54 -0800 (Tue, 31 Oct 2006)
> Log Message
>
> r13850 at Pro-Grammar: grant | 2006-10-30 18:21:47 -0800
> I need to change the schema version, too
> Modified Paths
>
> trunk/chandler/application/Utility.py
> trunk/chandler/parcels/osaf/views/main/Dashboard.py
> trunk/chandler/parcels/osaf/views/main/events.py
> trunk/chandler/parcels/osaf/views/main/mainblocks.py
> Added Paths
>
> trunk/chandler/Chandler.egg-info/resources/images/ 
> ApplicationBarTriage.png
> Removed Paths
>
> trunk/chandler/Chandler.egg-info/resources/images/ 
> ApplicationBarPurge.png
> Property Changed
>
> trunk/chandler/
> Diff
>
> Property changes: trunk/chandler
>
> Name: svk:merge
>    - 8c82eac9-66b6-4f75-afda-ac985f890e1b:/fixes/purge/chandler:13849
> 8c82eac9-66b6-4f75-afda-ac985f890e1b:/projects/stamping/chandler:13086
> bfa2d993-0e2c-4a41-9bab-303d141a821e:/local/stamping/chandler:7577
>    + 8c82eac9-66b6-4f75-afda-ac985f890e1b:/fixes/purge/chandler:13850
> 8c82eac9-66b6-4f75-afda-ac985f890e1b:/projects/stamping/chandler:13086
> bfa2d993-0e2c-4a41-9bab-303d141a821e:/local/stamping/chandler:7577
> Deleted: trunk/chandler/Chandler.egg-info/resources/images/ 
> ApplicationBarPurge.png
>
> (Binary files differ)
> Added: trunk/chandler/Chandler.egg-info/resources/images/ 
> ApplicationBarTriage.png
>
> (Binary files differ)
> Property changes on: trunk/chandler/Chandler.egg-info/resources/ 
> images/ApplicationBarTriage.png  
> ___________________________________________________________________  
> Name: svn:mime-type + image/png
> Modified: trunk/chandler/application/Utility.py (12169 => 12170)
>
> --- trunk/chandler/application/Utility.py	2006-10-31 17:02:50 UTC  
> (rev 12169)
> +++ trunk/chandler/application/Utility.py	2006-10-31 17:02:54 UTC  
> (rev 12170)
> @@ -33,7 +33,7 @@
>  # with your name (and some helpful text). The comment's really  
> there just to
>  # cause Subversion to warn you of a conflict when you update, in  
> case someone
>  # else changes it at the same time you do (that's why it's on the  
> same line).
> -SCHEMA_VERSION = "269" # vajda: reworked AppCollection schema (bug  
> 7815)
> +SCHEMA_VERSION = "270" # grant: "Purge" button (bug 6329)
>
>
>  logger = None # initialized in initLogging()
> Modified: trunk/chandler/parcels/osaf/views/main/Dashboard.py  
> (12169 => 12170)
>
> --- trunk/chandler/parcels/osaf/views/main/Dashboard.py	2006-10-31  
> 17:02:50 UTC (rev 12169)
> +++ trunk/chandler/parcels/osaf/views/main/Dashboard.py	2006-10-31  
> 17:02:54 UTC (rev 12170)
> @@ -196,7 +196,7 @@
>          if 'showSections' in names:
>              self.synchronizeWidget()
>
> -    def onPurgeEvent(self, event):
> +    def onTriageEvent(self, event):
>          for key in self.contents.iterkeys():
>              triageStatus = self.itsView.findValue(key,
>                                                    
> '_unpurgedTriageStatus',
> Modified: trunk/chandler/parcels/osaf/views/main/events.py (12169  
> => 12170)
>
> --- trunk/chandler/parcels/osaf/views/main/events.py	2006-10-31  
> 17:02:50 UTC (rev 12169)
> +++ trunk/chandler/parcels/osaf/views/main/events.py	2006-10-31  
> 17:02:54 UTC (rev 12170)
> @@ -228,7 +228,7 @@
>          dispatchToBlockName = 'MainView').install(parcel)
>
>      BlockEvent.template(
> -        'Purge',
> +        'Triage',
>          commitAfterDispatch = True,
>          dispatchEnum = 'SendToBlockByName',
>          dispatchToBlockName = 'TableSummaryView').install(parcel)
> Modified: trunk/chandler/parcels/osaf/views/main/mainblocks.py  
> (12169 => 12170)
>
> --- trunk/chandler/parcels/osaf/views/main/mainblocks.py	2006-10-31  
> 17:02:50 UTC (rev 12169)
> +++ trunk/chandler/parcels/osaf/views/main/mainblocks.py	2006-10-31  
> 17:02:54 UTC (rev 12170)
> @@ -163,10 +163,10 @@
>                  helpString = _(u'Send the selected Item')),
>              ToolbarItem.template('ApplicationSeparator2',
>                  toolbarItemKind = 'Separator'),
> -            ToolbarItem.template('PurgeButton',
> -                event = main.Purge,
> -                title = _(u"Purge"),
> -                bitmap = 'ApplicationBarPurge.png',
> +            ToolbarItem.template('TriageButton',
> +                event = main.Triage,
> +                title = _(u"Triage"),
> +                bitmap = 'ApplicationBarTriage.png',
>                  toolbarItemKind = 'Button'),
>              ToolbarItem.template('ApplicationSeparator3',
>                  toolbarItemKind = 'Separator'),
>
> _______________________________________________
> Commits mailing list
> Commits at osafoundation.org
> http://lists.osafoundation.org/mailman/listinfo/commits
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.osafoundation.org/pipermail/chandler-dev/attachments/20061031/64c3e46c/attachment.html


More information about the chandler-dev mailing list