0001674: when exporting, filter dropdown menu has to "Entire Database" entries
svn: r9989
This commit is contained in:
parent
0e4e799375
commit
5ae6d584f7
@ -1,3 +1,12 @@
|
||||
2008-02-02 Brian Matherly <brian@gramps-project.org>
|
||||
* src/plugins/ExportVCard.py:
|
||||
* src/plugins/ExportCSV.py:
|
||||
* src/plugins/ExportVCalendar.py:
|
||||
* src/plugins/WriteFtree.py:
|
||||
* src/plugins/WriteGeneWeb.py:
|
||||
0001674: when exporting, filter dropdown menu has to
|
||||
"Entire Database" entries
|
||||
|
||||
2008-02-02 Brian Matherly <brian@gramps-project.org>
|
||||
* po/POTFILES.in:
|
||||
0001689: Text: Generato commadline plugin interface not localised
|
||||
|
@ -205,7 +205,7 @@ class CSVWriterOptionBox:
|
||||
com.add_rule(Rules.Person.HasCommonAncestorWith(
|
||||
[self.person.get_gramps_id()]))
|
||||
|
||||
the_filters += [all,des,ans,com]
|
||||
the_filters += [des,ans,com]
|
||||
|
||||
from Filters import CustomFilters
|
||||
the_filters.extend(CustomFilters.get_filters('Person'))
|
||||
|
@ -110,7 +110,7 @@ class CalendarWriterOptionBox:
|
||||
com.add_rule(Rules.Person.HasCommonAncestorWith(
|
||||
[self.person.get_gramps_id()]))
|
||||
|
||||
the_filters += [everyone_filter, des, ans, com]
|
||||
the_filters += [des, ans, com]
|
||||
|
||||
from Filters import CustomFilters
|
||||
the_filters.extend(CustomFilters.get_filters('Person'))
|
||||
|
@ -107,7 +107,7 @@ class CardWriterOptionBox:
|
||||
com.add_rule(Rules.Person.HasCommonAncestorWith(
|
||||
[self.person.get_gramps_id()]))
|
||||
|
||||
the_filters += [all, des, ans, com]
|
||||
the_filters += [des, ans, com]
|
||||
|
||||
from Filters import CustomFilters
|
||||
the_filters.extend(CustomFilters.get_filters('Person'))
|
||||
|
@ -109,7 +109,7 @@ class FtreeWriterOptionBox:
|
||||
com.add_rule(Rules.Person.HasCommonAncestorWith(
|
||||
[self.person.get_gramps_id()]))
|
||||
|
||||
the_filters += [all, des, ans, com]
|
||||
the_filters += [des, ans, com]
|
||||
|
||||
from Filters import CustomFilters
|
||||
the_filters.extend(CustomFilters.get_filters('Person'))
|
||||
|
@ -114,7 +114,7 @@ class GeneWebWriterOptionBox:
|
||||
com.add_rule(Rules.Person.HasCommonAncestorWith(
|
||||
[self.person.get_gramps_id()]))
|
||||
|
||||
the_filters += [all, des, ans, com]
|
||||
the_filters += [des, ans, com]
|
||||
|
||||
from Filters import CustomFilters
|
||||
the_filters.extend(CustomFilters.get_filters('Person'))
|
||||
|
Loading…
Reference in New Issue
Block a user