* src/plugins/WriteGeneweb.py (GeneWebWriterOptionBox.get_option_box):
Build person-centered filters only if a person is selected. * src/plugins/WriteFtree.py (FtreeWriterOptionBox.get_option_box): Build person-centered filters only if a person is selected. svn: r4826
This commit is contained in:
parent
dfc376c640
commit
3ac758f702
@ -1,6 +1,10 @@
|
||||
2005-06-15 Alex Roitman <shura@gramps-project.org>
|
||||
* src/WriteGedcom.py (GedcomWriterOptionBox.get_option_box):
|
||||
Build person-centered filters only if a person is selected.
|
||||
* src/plugins/WriteGeneweb.py (GeneWebWriterOptionBox.get_option_box):
|
||||
Build person-centered filters only if a person is selected.
|
||||
* src/plugins/WriteFtree.py (FtreeWriterOptionBox.get_option_box):
|
||||
Build person-centered filters only if a person is selected.
|
||||
|
||||
2005-06-15 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
||||
* src/po/de.po: Applied patch from Jens Seidel <jensseidel@users.sf.net>
|
||||
|
@ -86,6 +86,7 @@ class FtreeWriterOptionBox:
|
||||
all.set_name(_("Entire Database"))
|
||||
all.add_rule(GenericFilter.Everyone([]))
|
||||
|
||||
if self.person:
|
||||
des = GenericFilter.GenericFilter()
|
||||
des.set_name(_("Descendants of %s") % self.person.get_primary_name().get_name())
|
||||
des.add_rule(GenericFilter.IsDescendantOf([self.person.get_handle(),1]))
|
||||
@ -100,6 +101,8 @@ class FtreeWriterOptionBox:
|
||||
com.add_rule(GenericFilter.HasCommonAncestorWith([self.person.get_handle()]))
|
||||
|
||||
self.filter_menu = GenericFilter.build_filter_menu([all,des,ans,com])
|
||||
else:
|
||||
self.filter_menu = GenericFilter.build_filter_menu([all])
|
||||
filter_obj.set_menu(self.filter_menu)
|
||||
|
||||
the_box = self.top.get_widget("vbox1")
|
||||
|
@ -87,6 +87,7 @@ class GeneWebWriterOptionBox:
|
||||
all.set_name(_("Entire Database"))
|
||||
all.add_rule(GenericFilter.Everyone([]))
|
||||
|
||||
if self.person:
|
||||
des = GenericFilter.GenericFilter()
|
||||
des.set_name(_("Descendants of %s") % self.person.get_primary_name().get_name())
|
||||
des.add_rule(GenericFilter.IsDescendantOf([self.person.get_handle(),1]))
|
||||
@ -101,6 +102,8 @@ class GeneWebWriterOptionBox:
|
||||
com.add_rule(GenericFilter.HasCommonAncestorWith([self.person.get_handle()]))
|
||||
|
||||
self.filter_menu = GenericFilter.build_filter_menu([all,des,ans,com])
|
||||
else:
|
||||
self.filter_menu = GenericFilter.build_filter_menu([all])
|
||||
filter_obj.set_menu(self.filter_menu)
|
||||
|
||||
the_box = self.topDialog.get_widget('vbox1')
|
||||
|
Loading…
Reference in New Issue
Block a user