* src/plugins/GraphViz.py (GraphVizDialog.get_report_filters):
Make static Descendant and Ancestral filters inclusive. svn: r2212
This commit is contained in:
parent
ee43d53753
commit
a7d583dbf7
@ -1,3 +1,7 @@
|
||||
2003-10-07 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||
* src/plugins/GraphViz.py (GraphVizDialog.get_report_filters):
|
||||
Make static Descendant and Ancestral filters inclusive.
|
||||
|
||||
2003-10-06 Don Allingham <dallingham@users.sourceforge.net>
|
||||
* src/plugins/WebPage.py: Fixed ID link so that link references are
|
||||
not converted to < and >
|
||||
|
@ -103,11 +103,11 @@ class GraphVizDialog(Report.ReportDialog):
|
||||
|
||||
des = GenericFilter.GenericFilter()
|
||||
des.set_name(_("Descendants of %s") % name)
|
||||
des.add_rule(GenericFilter.IsDescendantOf([self.person.getId()]))
|
||||
des.add_rule(GenericFilter.IsDescendantOf([self.person.getId(),1]))
|
||||
|
||||
ans = GenericFilter.GenericFilter()
|
||||
ans.set_name(_("Ancestors of %s") % name)
|
||||
ans.add_rule(GenericFilter.IsAncestorOf([self.person.getId()]))
|
||||
ans.add_rule(GenericFilter.IsAncestorOf([self.person.getId(),1]))
|
||||
|
||||
com = GenericFilter.GenericFilter()
|
||||
com.set_name(_("People with common ancestor with %s") % name)
|
||||
|
Loading…
Reference in New Issue
Block a user