* src/ReportOptions.py (ReportOptions): Add wrappers to hide handler.
* src/plugins/BookReport.py: Use wrappers. * src/plugins/TimeLine.py: Use wrappers. * src/plugins/FtmStyleDescendants.py: Use wrappers. * src/plugins/FtmStyleAncestors.py: Use wrappers. * src/plugins/AncestorReport.py: Use wrappers. * src/plugins/DescendReport.py: Use wrappers. * src/plugins/IndivSummary.py: Use wrappers. svn: r3834
This commit is contained in:
@@ -85,11 +85,11 @@ class AncestorReport(Report.Report):
|
||||
self.map = {}
|
||||
|
||||
(self.max_generations,self.pgbrk) \
|
||||
= options_class.handler.get_report_generations()
|
||||
= options_class.get_report_generations()
|
||||
|
||||
self.doc = options_class.handler.doc
|
||||
output = options_class.handler.output
|
||||
self.newpage = options_class.handler.newpage
|
||||
self.doc = options_class.get_document()
|
||||
output = options_class.get_output()
|
||||
self.newpage = options_class.get_newpage()
|
||||
|
||||
if output:
|
||||
self.standalone = 1
|
||||
|
||||
@@ -1012,8 +1012,8 @@ class BookReportDialog(Report.ReportDialog):
|
||||
self.rptlist = []
|
||||
newpage = 0
|
||||
for item in self.book.get_item_list():
|
||||
item.option_class.handler.doc = self.doc
|
||||
item.option_class.handler.newpage = newpage
|
||||
item.option_class.set_document(self.doc)
|
||||
item.option_class.set_newpage(newpage)
|
||||
report_class = item.get_write_item()
|
||||
obj = Report.write_book_item(self.database,self.person,
|
||||
report_class,item.option_class)
|
||||
@@ -1072,14 +1072,14 @@ def cl_report(database,name,category,options_str_dict):
|
||||
rptlist = []
|
||||
newpage = 0
|
||||
for item in book.get_item_list():
|
||||
item.option_class.handler.doc = doc
|
||||
item.option_class.handler.newpage = newpage
|
||||
item.option_class.set_document(doc)
|
||||
item.option_class.set_newpage(newpage)
|
||||
report_class = item.get_write_item()
|
||||
obj = Report.write_book_item(database,clr.person,
|
||||
report_class,item.option_class)
|
||||
rptlist.append(obj)
|
||||
newpage = 1
|
||||
doc.open(clr.option_class.handler.output)
|
||||
doc.open(clr.option_class.get_output())
|
||||
doc.init()
|
||||
for item in rptlist:
|
||||
item.write_report()
|
||||
|
||||
@@ -90,11 +90,11 @@ class DescendantReport:
|
||||
self.options_class = options_class
|
||||
|
||||
(self.max_generations,self.pgbrk) \
|
||||
= options_class.handler.get_report_generations()
|
||||
= options_class.get_report_generations()
|
||||
|
||||
self.doc = options_class.handler.doc
|
||||
output = options_class.handler.output
|
||||
self.newpage = options_class.handler.newpage
|
||||
self.doc = options_class.get_document()
|
||||
output = options_class.get_output()
|
||||
self.newpage = options_class.get_newpage()
|
||||
|
||||
if output:
|
||||
self.standalone = 1
|
||||
|
||||
@@ -88,11 +88,11 @@ class FtmAncestorReport(Report.Report):
|
||||
self.map = {}
|
||||
|
||||
(self.max_generations,self.pgbrk) \
|
||||
= options_class.handler.get_report_generations()
|
||||
= options_class.get_report_generations()
|
||||
|
||||
self.doc = options_class.handler.doc
|
||||
output = options_class.handler.output
|
||||
self.newpage = options_class.handler.newpage
|
||||
self.doc = options_class.get_document()
|
||||
output = options_class.get_output()
|
||||
self.newpage = options_class.get_newpage()
|
||||
|
||||
if output:
|
||||
self.standalone = 1
|
||||
|
||||
@@ -94,11 +94,11 @@ class FtmDescendantReport(Report.Report):
|
||||
self.gen_map = {}
|
||||
|
||||
(self.max_generations,self.pgbrk) \
|
||||
= options_class.handler.get_report_generations()
|
||||
= options_class.get_report_generations()
|
||||
|
||||
self.doc = options_class.handler.doc
|
||||
output = options_class.handler.output
|
||||
self.newpage = options_class.handler.newpage
|
||||
self.doc = options_class.get_document()
|
||||
output = options_class.get_output()
|
||||
self.newpage = options_class.get_newpage()
|
||||
|
||||
self.setup()
|
||||
|
||||
|
||||
@@ -86,9 +86,9 @@ class IndivSummary(Report.Report):
|
||||
self.options_class = options_class
|
||||
|
||||
|
||||
self.d = options_class.handler.doc
|
||||
self.output = options_class.handler.output
|
||||
self.newpage = options_class.handler.newpage
|
||||
self.d = options_class.get_document()
|
||||
self.output = options_class.get_output()
|
||||
self.newpage = options_class.get_newpage()
|
||||
|
||||
c = database.get_researcher().get_name()
|
||||
self.d.creator(c)
|
||||
|
||||
@@ -97,7 +97,7 @@ class TimeLine:
|
||||
self.person = person
|
||||
self.options_class = options_class
|
||||
|
||||
filter_num = options_class.handler.get_filter_number()
|
||||
filter_num = options_class.get_filter_number()
|
||||
filters = options_class.get_report_filters(person)
|
||||
self.filter = filters[filter_num]
|
||||
|
||||
@@ -107,9 +107,9 @@ class TimeLine:
|
||||
sort_functions = options_class.get_sort_functions(Sort.Sort(database))
|
||||
self.sort_func = sort_functions[sort_func_num][1]
|
||||
|
||||
self.d = options_class.handler.doc
|
||||
self.output = options_class.handler.output
|
||||
self.newpage = options_class.handler.newpage
|
||||
self.d = options_class.get_document()
|
||||
self.output = options_class.get_output()
|
||||
self.newpage = options_class.get_newpage()
|
||||
|
||||
self.setup()
|
||||
if self.output:
|
||||
|
||||
Reference in New Issue
Block a user