Fix so that date, if any, in source reference is printed.
svn: r17733
This commit is contained in:
parent
b17dd8fe3e
commit
9c7fd12d56
@ -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):
|
||||
|
@ -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):
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user