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 svn: r10212
This commit is contained in:
parent
52e250979b
commit
6499abe5af
@ -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>
|
2008-03-07 Douglas S. Blank <dblank@cs.brynmawr.edu>
|
||||||
* src/QuickReports.py: optionally pass in kwargs
|
* src/QuickReports.py: optionally pass in kwargs
|
||||||
* src/plugins/DefaultGramplets.py: added generation summary to pedigree
|
* src/plugins/DefaultGramplets.py: added generation summary to pedigree
|
||||||
|
@ -151,6 +151,7 @@ UIDEFAULT = '''<ui>
|
|||||||
<menuitem action="HomePage"/>
|
<menuitem action="HomePage"/>
|
||||||
<menuitem action="MailingLists"/>
|
<menuitem action="MailingLists"/>
|
||||||
<menuitem action="ReportBug"/>
|
<menuitem action="ReportBug"/>
|
||||||
|
<menuitem action="ExtraPlugins"/>
|
||||||
<separator/>
|
<separator/>
|
||||||
<menuitem action="About"/>
|
<menuitem action="About"/>
|
||||||
</menu>
|
</menu>
|
||||||
@ -395,7 +396,9 @@ class ViewManager:
|
|||||||
('MailingLists', None, _('GRAMPS _Mailing Lists'), None, None,
|
('MailingLists', None, _('GRAMPS _Mailing Lists'), None, None,
|
||||||
mailing_lists_activate),
|
mailing_lists_activate),
|
||||||
('ReportBug', None, _('_Report a Bug'), None, None,
|
('ReportBug', None, _('_Report a Bug'), None, None,
|
||||||
report_bug_activate),
|
report_bug_activate),
|
||||||
|
('ExtraPlugins', None, _('_Extra Reports/Tools'), None, None,
|
||||||
|
extra_plugins_activate),
|
||||||
('About', gtk.STOCK_ABOUT, _('_About'), None, None,
|
('About', gtk.STOCK_ABOUT, _('_About'), None, None,
|
||||||
display_about_box),
|
display_about_box),
|
||||||
('PluginStatus', None, _('_Plugin Status'), None, None,
|
('PluginStatus', None, _('_Plugin Status'), None, None,
|
||||||
@ -1486,7 +1489,13 @@ def mailing_lists_activate(obj):
|
|||||||
"""
|
"""
|
||||||
Display the mailing list web page
|
Display the mailing list web page
|
||||||
"""
|
"""
|
||||||
GrampsDisplay.url( const.URL_MAILINGLIST)
|
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):
|
def faq_activate(obj):
|
||||||
"""
|
"""
|
||||||
|
@ -45,6 +45,7 @@ URL_WIKISTRING = "http://gramps-project.org/wiki/index.php?title="
|
|||||||
URL_MANUAL_PAGE = "Gramps_3.0_Wiki_Manual"
|
URL_MANUAL_PAGE = "Gramps_3.0_Wiki_Manual"
|
||||||
WIKI_FAQ = "FAQ"
|
WIKI_FAQ = "FAQ"
|
||||||
WIKI_KEYBINDINGS = "Gramps_3.0_Wiki_Manual_-_Keybindings"
|
WIKI_KEYBINDINGS = "Gramps_3.0_Wiki_Manual_-_Keybindings"
|
||||||
|
WIKI_EXTRAPLUGINS= "3.0.x_Third-party_Plugins"
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user