From 659c085016119a619c477871597b42c554143991 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Thu, 31 Jul 2003 12:00:30 +0000 Subject: [PATCH] * src/Plugins.py: fixed call in _textdoc.append (typo) * src/plugins/Makefile.am: Add WriteFtree.py * src/ChooseParents.py: Used EditPerson dialog instead of quick add, select added parent in list * src/gramps_main.py: eliminated importing of string, display error if no person selected when trying to export * src/ListModel.py : explicitly delete renderers and columns due to memory leak in pygtk 1.99.16 * src/PlaceView.py: explictly delete model due to above memory leak * src/plugins/pkgexport.glade: don't set height of window * src/plugins/WriteFtree.py: export to Web Family Tree svn: r1943 --- gramps2/src/Plugins.py | 2 +- gramps2/src/plugins/Makefile.am | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gramps2/src/Plugins.py b/gramps2/src/Plugins.py index e78b8c010..58782055a 100644 --- a/gramps2/src/Plugins.py +++ b/gramps2/src/Plugins.py @@ -486,7 +486,7 @@ def register_text_doc(name,classref, table, paper, style, ext, for n in _textdoc: if n[0] == name: return - _textdoc.append((name,classref,table,paper,style,ext,printable)) + _textdoc.append((name,classref,table,paper,style,ext,print_report_label)) #------------------------------------------------------------------------- # diff --git a/gramps2/src/plugins/Makefile.am b/gramps2/src/plugins/Makefile.am index 33cfaf246..79272c701 100644 --- a/gramps2/src/plugins/Makefile.am +++ b/gramps2/src/plugins/Makefile.am @@ -36,6 +36,7 @@ pkgpython_PYTHON = \ TimeLine.py\ Verify.py\ WebPage.py\ + WriteFtree.py\ WriteGedcom.py\ WritePkg.py\ WriteCD.py\