- Revision
- 16097
- Author
- heikki
- Date
- 2007-12-10 11:34:11 -0800 (Mon, 10 Dec 2007)
Log Message
Bug 11575, Easy "subscribe to user list" feature, r=pbossut.
Modified Paths
Diff
Modified: trunk/chandler/application/Utility.py (16096 => 16097)
--- trunk/chandler/application/Utility.py 2007-12-10 18:09:00 UTC (rev 16096) +++ trunk/chandler/application/Utility.py 2007-12-10 19:34:11 UTC (rev 16097) @@ -34,7 +34,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 = "465" # rae: multiweek view +SCHEMA_VERSION = "466" # heikki: subscribe user list menu logger = None # initialized in initLogging()
Modified: trunk/chandler/parcels/osaf/framework/blocks/__init__.py (16096 => 16097)
--- trunk/chandler/parcels/osaf/framework/blocks/__init__.py 2007-12-10 18:09:00 UTC (rev 16096) +++ trunk/chandler/parcels/osaf/framework/blocks/__init__.py 2007-12-10 19:34:11 UTC (rev 16097) @@ -126,6 +126,9 @@ BlockEvent.template('GettingStarted', dispatchEnum = 'FocusBubbleUp').install(parcel), + BlockEvent.template('SubscribeUser', + dispatchEnum = 'FocusBubbleUp').install(parcel), + BlockEvent.template('FileBug', dispatchEnum = 'FocusBubbleUp').install(parcel),
Modified: trunk/chandler/parcels/osaf/views/main/Main.py (16096 => 16097)
--- trunk/chandler/parcels/osaf/views/main/Main.py 2007-12-10 18:09:00 UTC (rev 16096) +++ trunk/chandler/parcels/osaf/views/main/Main.py 2007-12-10 19:34:11 UTC (rev 16097) @@ -465,6 +465,11 @@ 'http://chandlerproject.org/guide' ) + def onSubscribeUserEvent(self, event): + self.openURLOrDialog( + 'http://lists.osafoundation.org/mailman/listinfo/chandler-users/' + ) + def onFileBugEvent(self, event): self.openURLOrDialog( 'http://chandlerproject.org/reportabug'
Modified: trunk/chandler/parcels/osaf/views/main/menus.py (16096 => 16097)
--- trunk/chandler/parcels/osaf/views/main/menus.py 2007-12-10 18:09:00 UTC (rev 16096) +++ trunk/chandler/parcels/osaf/views/main/menus.py 2007-12-10 19:34:11 UTC (rev 16097) @@ -834,6 +834,11 @@ # L10N: Keyboard shortcut to open the Chandler FAQ in # a web browser. accel = _(u'Ctrl+?')), + MenuItem.template('SubscribeUserMenuItem', + event = globalBlocks.SubscribeUser, + title = _(u'S&ubscribe to the Chandler user list'), + helpString = + _(u'Subscribe to the Chandler user mailinglist to discuss Chandler and get help')), MenuItem.template('FileBugMenuItem', event = globalBlocks.FileBug, title = _(u'Report a &Bug'),
_______________________________________________ Commits mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/commits
