wiki manual link
svn: r10137
This commit is contained in:
parent
62f694be30
commit
fefa36ad4e
@ -1,3 +1,7 @@
|
|||||||
|
2008-02-28 Frederik De Richter <frederik.de.richter@pandora.be>
|
||||||
|
* src/plugins/Verify.py
|
||||||
|
links to wiki manual
|
||||||
|
|
||||||
2008-02-28 Douglas S. Blank <dblank@cs.brynmawr.edu>
|
2008-02-28 Douglas S. Blank <dblank@cs.brynmawr.edu>
|
||||||
* src/plugins/DefaultGramplets.py:
|
* src/plugins/DefaultGramplets.py:
|
||||||
made detached_width, height larger for the pedigree gramplet
|
made detached_width, height larger for the pedigree gramplet
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
# $Id$
|
# $Id$
|
||||||
|
|
||||||
"""
|
"""
|
||||||
A plugin to verify the data against user-adjsted tests.
|
A plugin to verify the data against user-adjusted tests.
|
||||||
This is the research tool, not the low-level data ingerity check.
|
This is the research tool, not the low-level data ingerity check.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@ -31,7 +31,6 @@ This is the research tool, not the low-level data ingerity check.
|
|||||||
#
|
#
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
import os
|
import os
|
||||||
from gettext import gettext as _
|
|
||||||
import cPickle
|
import cPickle
|
||||||
import md5
|
import md5
|
||||||
import Errors
|
import Errors
|
||||||
@ -57,6 +56,14 @@ import GrampsDisplay
|
|||||||
from ManagedWindow import ManagedWindow
|
from ManagedWindow import ManagedWindow
|
||||||
from BasicUtils import UpdateCallback
|
from BasicUtils import UpdateCallback
|
||||||
from PluginUtils import Tool, register_tool
|
from PluginUtils import Tool, register_tool
|
||||||
|
from TransUtils import sgettext as _
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Constants
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
WIKI_HELP_PAGE = 'Gramps_3.0_Wiki_Manual_-_Tools'
|
||||||
|
WIKI_HELP_SEC = _('manual|Verify_the_Data...')
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -287,7 +294,8 @@ class Verify(Tool.Tool, ManagedWindow, UpdateCallback):
|
|||||||
|
|
||||||
def on_help_clicked(self, obj):
|
def on_help_clicked(self, obj):
|
||||||
"""Display the relevant portion of GRAMPS manual"""
|
"""Display the relevant portion of GRAMPS manual"""
|
||||||
GrampsDisplay.help('tools-util-other')
|
GrampsDisplay.help('tools-util-other', webpage=WIKI_HELP_PAGE,
|
||||||
|
section=WIKI_HELP_SEC)
|
||||||
|
|
||||||
def on_apply_clicked(self, obj):
|
def on_apply_clicked(self, obj):
|
||||||
self.options.handler.options_dict['oldage'] = self.top.get_widget(
|
self.options.handler.options_dict['oldage'] = self.top.get_widget(
|
||||||
|
Loading…
Reference in New Issue
Block a user