* src/plugins/WriteFtree.py (on_help_clicked): Add function.

* doc/gramps.1: Update.


svn: r2453
This commit is contained in:
Alex Roitman
2003-12-06 23:05:52 +00:00
parent 949c26bf92
commit 8acc5f5cd6
3 changed files with 22 additions and 2 deletions

View File

@@ -18,6 +18,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
"Export to Web Family Tree"
#-------------------------------------------------------------------------
@@ -36,6 +38,7 @@ from cStringIO import StringIO
#-------------------------------------------------------------------------
import gtk
import gtk.glade
import gnome
#-------------------------------------------------------------------------
#
@@ -88,6 +91,7 @@ class FtreeWriter:
dic = {
"destroy_passed_object" : self.close,
"on_ok_clicked" : self.on_ok_clicked,
"on_help_clicked" : self.on_help_clicked,
}
self.top = gtk.glade.XML(glade_file,"top","gramps")
@@ -141,6 +145,10 @@ class FtreeWriter:
import DisplayTrace
DisplayTrace.DisplayTrace()
def on_help_clicked(self,obj):
"""Display the relevant portion of GRAMPS manual"""
gnome.help_display('gramps-manual','export-data')
def export(self, filename, cfilter, restrict ):
if cfilter == None: