Fix so that date, if any, in source reference is printed.

svn: r17733
This commit is contained in:
Peter Landgren 2011-06-09 14:25:46 +00:00
parent b17dd8fe3e
commit 9c7fd12d56
3 changed files with 3 additions and 3 deletions

View File

@ -162,7 +162,7 @@ class DetAncestorReport(Report):
self.__get_type = translator.get_type
self.bibli = Bibliography(Bibliography.MODE_PAGE)
self.bibli = Bibliography(Bibliography.MODE_DATE|Bibliography.MODE_PAGE)
def apply_filter(self, person_handle, index):
if (not person_handle) or (index >= 2**self.max_generations):

View File

@ -180,7 +180,7 @@ class DetDescendantReport(Report):
self.__get_type = translator.get_type
self.bibli = Bibliography(Bibliography.MODE_PAGE)
self.bibli = Bibliography(Bibliography.MODE_DATE|Bibliography.MODE_PAGE)
def apply_henry_filter(self,person_handle, index, pid, cur_gen=1):
if (not person_handle) or (cur_gen > self.max_generations):

View File

@ -526,7 +526,7 @@ class IndivCompleteReport(Report):
def write_person(self, count):
if count != 0:
self.doc.page_break()
self.bibli = Bibliography(Bibliography.MODE_PAGE)
self.bibli = Bibliography(Bibliography.MODE_DATE|Bibliography.MODE_PAGE)
media_list = self.person.get_media_list()
name = _nd.display(self.person)