* src/const.py.in : new const for third party plugin page
	* src/ViewManager.py: in help, menu option for the third party plugins



svn: r10212
This commit is contained in:
Benny Malengier
2008-03-07 14:31:04 +00:00
parent 52e250979b
commit 6499abe5af
3 changed files with 16 additions and 2 deletions

@ -1,3 +1,7 @@
2008-03-07 Benny Malengier <benny.malengier@gramps-project.org>
* src/const.py.in : new const for third party plugin page
* src/ViewManager.py: in help, menu option for the third party plugins
2008-03-07 Douglas S. Blank <dblank@cs.brynmawr.edu>
* src/QuickReports.py: optionally pass in kwargs
* src/plugins/DefaultGramplets.py: added generation summary to pedigree

@ -151,6 +151,7 @@ UIDEFAULT = '''<ui>
<menuitem action="HomePage"/>
<menuitem action="MailingLists"/>
<menuitem action="ReportBug"/>
<menuitem action="ExtraPlugins"/>
<separator/>
<menuitem action="About"/>
</menu>
@ -396,6 +397,8 @@ class ViewManager:
mailing_lists_activate),
('ReportBug', None, _('_Report a Bug'), None, None,
report_bug_activate),
('ExtraPlugins', None, _('_Extra Reports/Tools'), None, None,
extra_plugins_activate),
('About', gtk.STOCK_ABOUT, _('_About'), None, None,
display_about_box),
('PluginStatus', None, _('_Plugin Status'), None, None,
@ -1488,6 +1491,12 @@ def mailing_lists_activate(obj):
"""
GrampsDisplay.url(const.URL_MAILINGLIST)
def extra_plugins_activate(obj):
"""
Display the wiki page with extra plugins
"""
GrampsDisplay.url(const.URL_WIKISTRING+const.WIKI_EXTRAPLUGINS)
def faq_activate(obj):
"""
Display FAQ

@ -45,6 +45,7 @@ URL_WIKISTRING = "http://gramps-project.org/wiki/index.php?title="
URL_MANUAL_PAGE = "Gramps_3.0_Wiki_Manual"
WIKI_FAQ = "FAQ"
WIKI_KEYBINDINGS = "Gramps_3.0_Wiki_Manual_-_Keybindings"
WIKI_EXTRAPLUGINS= "3.0.x_Third-party_Plugins"
#-------------------------------------------------------------------------
#