Committed by mistake
svn: r16140
This commit is contained in:
parent
9eb15acf14
commit
2ffb6993b7
@ -78,7 +78,7 @@ def url(link, uistate=None):
|
|||||||
"""
|
"""
|
||||||
Open the specified URL in a browser.
|
Open the specified URL in a browser.
|
||||||
"""
|
"""
|
||||||
if uistate and config.get('htmlview.url-handler'):
|
if uistate: # and config.get('htmlview.url-handler'):
|
||||||
cat_num = uistate.viewmanager.get_category('Web')
|
cat_num = uistate.viewmanager.get_category('Web')
|
||||||
if cat_num is not None:
|
if cat_num is not None:
|
||||||
page = uistate.viewmanager.goto_page(cat_num, None)
|
page = uistate.viewmanager.goto_page(cat_num, None)
|
||||||
|
@ -664,7 +664,7 @@ class ViewManager(CLIManager):
|
|||||||
('HomePage', None, _('Gramps _Home Page'), None, None,
|
('HomePage', None, _('Gramps _Home Page'), None, None,
|
||||||
home_page_activate),
|
home_page_activate),
|
||||||
('MailingLists', None, _('Gramps _Mailing Lists'), None, None,
|
('MailingLists', None, _('Gramps _Mailing Lists'), None, None,
|
||||||
mailing_lists_activate),
|
self.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,
|
('ExtraPlugins', None, _('_Extra Reports/Tools'), None, None,
|
||||||
@ -1657,6 +1657,13 @@ class ViewManager(CLIManager):
|
|||||||
ofile.write('</menu></menubar></ui>')
|
ofile.write('</menu></menubar></ui>')
|
||||||
return (ofile.getvalue(), actions)
|
return (ofile.getvalue(), actions)
|
||||||
|
|
||||||
|
def mailing_lists_activate(self, obj):
|
||||||
|
"""
|
||||||
|
Display the mailing list web page
|
||||||
|
"""
|
||||||
|
GrampsDisplay.url(const.URL_MAILINGLIST, self.uistate)
|
||||||
|
|
||||||
|
|
||||||
def display_about_box(obj):
|
def display_about_box(obj):
|
||||||
"""Display the About box."""
|
"""Display the About box."""
|
||||||
about = GrampsAboutDialog()
|
about = GrampsAboutDialog()
|
||||||
@ -1694,12 +1701,6 @@ def home_page_activate(obj):
|
|||||||
"""
|
"""
|
||||||
GrampsDisplay.url(const.URL_HOMEPAGE)
|
GrampsDisplay.url(const.URL_HOMEPAGE)
|
||||||
|
|
||||||
def mailing_lists_activate(obj):
|
|
||||||
"""
|
|
||||||
Display the mailing list web page
|
|
||||||
"""
|
|
||||||
GrampsDisplay.url(const.URL_MAILINGLIST)
|
|
||||||
|
|
||||||
def extra_plugins_activate(obj):
|
def extra_plugins_activate(obj):
|
||||||
"""
|
"""
|
||||||
Display the wiki page with extra plugins
|
Display the wiki page with extra plugins
|
||||||
|
Loading…
x
Reference in New Issue
Block a user