Remove the "target" parameter from GrampsDisplay.help(). It was used for the old help system. We now link directly to the wiki.

svn: r10474
This commit is contained in:
Brian Matherly
2008-04-05 14:17:15 +00:00
parent ac83ce0468
commit a46e733398
46 changed files with 57 additions and 75 deletions

View File

@ -55,19 +55,10 @@ try:
except KeyError:
pass
def help(target, webpage='', section=''):
def help(webpage='', section=''):
"""
Display the specified target in a help window. If this fails,
open the manual on the web site.
Display the specified webpage and section from the Gramps 3.0 wiki.
"""
#try:
# import gnome
# gnome.help_display('gramps',target)
#except:
# url(const.URL_MANUAL+'en/')
# 3.0 Beta, direct to the wiki 3.0 Manual
if not webpage:
link = const.URL_WIKISTRING + const.URL_MANUAL_PAGE + EXTENSION
else: