| 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: [email protected] Date: 31 October, 2006 09:02:55 PST To: [email protected] Subject: [commits] (grant) [12170] [EMAIL PROTECTED]: grant | 2006-10-30 18:21:47 -0800 Reply-To: [EMAIL PROTECTED]
- Revision
- 12170
- Author
- grant
- Date
- 2006-10-31 09:02:54 -0800 (Tue, 31 Oct 2006)
Log Message [EMAIL PROTECTED]: grant | 2006-10-30 18:21:47 -0800 I need to change the schema version, too Modified Paths Added Paths Removed Paths Property Changed 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 [email protected] http://lists.osafoundation.org/mailman/listinfo/commits |