Reset bibliography between people in the individual complete report.

svn: r8796
This commit is contained in:
Brian Matherly 2007-08-01 11:55:55 +00:00
parent 707cb5be78
commit 6480123e0f
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2007-08-01 Brian Matherly <brian@gramps-project.org>
* src/plugins/IndivComplete.py: Reset bibliography between people.
2007-08-01 Brian Matherly <brian@gramps-project.org>
* src/plugins/EndOfLineReport.py: Add generations and relationships

View File

@ -87,7 +87,7 @@ class IndivCompleteReport(Report):
filter_num = options_class.handler.options_dict['filter']
filters = ReportUtils.get_person_filters(person)
self.filter = filters[filter_num]
self.bibli = Bibliography(Bibliography.MODE_PAGE)
self.bibli = None
def write_fact(self,event):
if event == None:
@ -424,7 +424,7 @@ class IndivCompleteReport(Report):
def write_person(self,count):
if count != 0:
self.doc.page_break()
self.slist = []
self.bibli = Bibliography(Bibliography.MODE_PAGE)
media_list = self.start_person.get_media_list()
name = _nd.display(self.start_person)