Fix styles in book. Switch to tuple of options.

* src/plugins/AncestorReport.py: Fix styles in book.
* src/plugins/Ancestors.py: Fix styles in book.
* src/plugins/DescendReport.py: Fix styles in book.
* src/plugins/FtmStyleAncestors.py: Fix styles in book.
* src/plugins/FtmStyleDescendants.py: Fix styles in book.
* src/plugins/IndivComplete.py: Switch to tuple of options.
* src/plugins/IndivSummary.py: Switch to tuple of options.
* src/plugins/SimpleBookTitle.py: Fix styles in book.
* src/plugins/FamilyGroup.py: Fix styles in book.
* src/plugins/DetAncestralReport.py: Fix styles in book.


svn: r1837
This commit is contained in:
Alex Roitman 2003-07-07 16:57:27 +00:00
parent 6abc6ece1b
commit c4b5ff9013
12 changed files with 52 additions and 42 deletions

View File

@ -1,5 +1,16 @@
2003-07-07 Alex Roitman <shura@alex.neuro.umn.edu> 2003-07-07 Alex Roitman <shura@alex.neuro.umn.edu>
* src/plugins/DetDescendantReport.py: Enable book functionality. * src/plugins/DetDescendantReport.py: Enable book functionality.
Fix styles in book. Switch to tuple of options.
* src/plugins/AncestorReport.py: Fix styles in book.
* src/plugins/Ancestors.py: Fix styles in book.
* src/plugins/DescendReport.py: Fix styles in book.
* src/plugins/FtmStyleAncestors.py: Fix styles in book.
* src/plugins/FtmStyleDescendants.py: Fix styles in book.
* src/plugins/IndivComplete.py: Switch to tuple of options.
* src/plugins/IndivSummary.py: Switch to tuple of options.
* src/plugins/SimpleBookTitle.py: Fix styles in book.
* src/plugins/FamilyGroup.py: Fix styles in book.
* src/plugins/DetAncestralReport.py: Fix styles in book.
2003-07-07 Tim Waugh <twaugh@redhat.com> 2003-07-07 Tim Waugh <twaugh@redhat.com>
* src/plugins/WriteGedcom.py: Fix GEDCOM export. Fixed date * src/plugins/WriteGedcom.py: Fix GEDCOM export. Fixed date

View File

@ -309,9 +309,6 @@ class AncestorBareReportDialog(Report.BareReportDialog):
self.person = person self.person = person
Report.BareReportDialog.__init__(self,database,self.person) Report.BareReportDialog.__init__(self,database,self.person)
def make_default_style(self):
_make_default_style(self.default_style)
self.max_gen = int(self.options[1]) self.max_gen = int(self.options[1])
self.pg_brk = int(self.options[2]) self.pg_brk = int(self.options[2])
self.style_name = stl self.style_name = stl
@ -327,6 +324,9 @@ class AncestorBareReportDialog(Report.BareReportDialog):
# Customization hooks # Customization hooks
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
def make_default_style(self):
_make_default_style(self.default_style)
def get_title(self): def get_title(self):
"""The window title for this dialog""" """The window title for this dialog"""
return "%s - GRAMPS Book" % (_("Ahnentafel Report")) return "%s - GRAMPS Book" % (_("Ahnentafel Report"))
@ -352,7 +352,7 @@ class AncestorBareReportDialog(Report.BareReportDialog):
if self.new_person: if self.new_person:
self.person = self.new_person self.person = self.new_person
self.options = [ self.person.getId(), self.max_gen, self.pg_brk ] self.options = ( self.person.getId(), self.max_gen, self.pg_brk )
self.style_name = self.selected_style.get_name() self.style_name = self.selected_style.get_name()
#------------------------------------------------------------------------ #------------------------------------------------------------------------

View File

@ -773,9 +773,6 @@ class AncestorsBareReportDialog(Report.BareReportDialog):
self.person = person self.person = person
Report.BareReportDialog.__init__(self,database,self.person) Report.BareReportDialog.__init__(self,database,self.person)
def make_default_style(self):
_make_default_style(self.default_style)
self.max_gen = int(self.options[1]) self.max_gen = int(self.options[1])
self.pg_brk = int(self.options[2]) self.pg_brk = int(self.options[2])
self.opt_cite = int(self.options[3]) self.opt_cite = int(self.options[3])
@ -793,6 +790,9 @@ class AncestorsBareReportDialog(Report.BareReportDialog):
# Customization hooks # Customization hooks
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
def make_default_style(self):
_make_default_style(self.default_style)
def get_title(self): def get_title(self):
"""The window title for this dialog""" """The window title for this dialog"""
return "%s - GRAMPS Book" % (_("Ancestors Report")) return "%s - GRAMPS Book" % (_("Ancestors Report"))
@ -827,7 +827,7 @@ class AncestorsBareReportDialog(Report.BareReportDialog):
if self.new_person: if self.new_person:
self.person = self.new_person self.person = self.new_person
self.options = [ self.person.getId(), self.max_gen, self.pg_brk, self.opt_cite ] self.options = ( self.person.getId(), self.max_gen, self.pg_brk, self.opt_cite )
self.style_name = self.selected_style.get_name() self.style_name = self.selected_style.get_name()
#------------------------------------------------------------------------ #------------------------------------------------------------------------

View File

@ -203,9 +203,6 @@ class DescendantBareReportDialog(Report.BareReportDialog):
self.person = person self.person = person
Report.BareReportDialog.__init__(self,database,self.person) Report.BareReportDialog.__init__(self,database,self.person)
def make_default_style(self):
_make_default_style(self.default_style)
self.max_gen = int(self.options[1]) self.max_gen = int(self.options[1])
self.pg_brk = int(self.options[2]) self.pg_brk = int(self.options[2])
self.style_name = stl self.style_name = stl
@ -221,6 +218,9 @@ class DescendantBareReportDialog(Report.BareReportDialog):
# Customization hooks # Customization hooks
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
def make_default_style(self):
_make_default_style(self.default_style)
def get_title(self): def get_title(self):
"""The window title for this dialog""" """The window title for this dialog"""
return "%s - GRAMPS Book" % (_("Descendant Report")) return "%s - GRAMPS Book" % (_("Descendant Report"))
@ -246,7 +246,7 @@ class DescendantBareReportDialog(Report.BareReportDialog):
if self.new_person: if self.new_person:
self.person = self.new_person self.person = self.new_person
self.options = [ self.person.getId(), self.max_gen, self.pg_brk ] self.options = ( self.person.getId(), self.max_gen, self.pg_brk )
self.style_name = self.selected_style.get_name() self.style_name = self.selected_style.get_name()
#------------------------------------------------------------------------ #------------------------------------------------------------------------

View File

@ -29,9 +29,7 @@ from intl import gettext as _
from QuestionDialog import ErrorDialog from QuestionDialog import ErrorDialog
import Report import Report
#from Report import *
import TextDoc import TextDoc
#from TextDoc import *
import gtk import gtk
import gnome.ui import gnome.ui
@ -977,9 +975,6 @@ class DetAncestorBareReportDialog(Report.BareReportDialog):
Report.BareReportDialog.__init__(self,database,self.person) Report.BareReportDialog.__init__(self,database,self.person)
def make_default_style(self):
_make_default_style(self.default_style)
self.style_name = stl self.style_name = stl
self.new_person = None self.new_person = None
@ -990,6 +985,9 @@ class DetAncestorBareReportDialog(Report.BareReportDialog):
# Customization hooks # Customization hooks
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
def make_default_style(self):
_make_default_style(self.default_style)
def get_title(self): def get_title(self):
"""The window title for this dialog""" """The window title for this dialog"""
return "%s - GRAMPS Book" % (_("Detailed Ancestral Report")) return "%s - GRAMPS Book" % (_("Detailed Ancestral Report"))
@ -1130,10 +1128,10 @@ class DetAncestorBareReportDialog(Report.BareReportDialog):
if self.new_person: if self.new_person:
self.person = self.new_person self.person = self.new_person
self.options = [ self.person.getId(), self.max_gen, self.pg_brk, self.options = ( self.person.getId(), self.max_gen, self.pg_brk,
self.first_name, self.full_date, self.list_children, self.first_name, self.full_date, self.list_children,
self.include_notes, self.place, self.date, self.age, self.include_notes, self.place, self.date, self.age,
self.dup_persons, self.child_ref, self.images ] self.dup_persons, self.child_ref, self.images )
self.style_name = self.selected_style.get_name() self.style_name = self.selected_style.get_name()

View File

@ -982,9 +982,6 @@ class DetDescendantBareReportDialog(Report.BareReportDialog):
Report.BareReportDialog.__init__(self,database,self.person) Report.BareReportDialog.__init__(self,database,self.person)
def make_default_style(self):
_make_default_style(self.default_style)
self.style_name = stl self.style_name = stl
self.new_person = None self.new_person = None
@ -995,6 +992,9 @@ class DetDescendantBareReportDialog(Report.BareReportDialog):
# Customization hooks # Customization hooks
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
def make_default_style(self):
_make_default_style(self.default_style)
def get_title(self): def get_title(self):
"""The window title for this dialog""" """The window title for this dialog"""
return "%s - GRAMPS Book" % (_("Detailed Descendant Report")) return "%s - GRAMPS Book" % (_("Detailed Descendant Report"))
@ -1135,10 +1135,10 @@ class DetDescendantBareReportDialog(Report.BareReportDialog):
if self.new_person: if self.new_person:
self.person = self.new_person self.person = self.new_person
self.options = [ self.person.getId(), self.max_gen, self.pg_brk, self.options = ( self.person.getId(), self.max_gen, self.pg_brk,
self.first_name, self.full_date, self.list_children, self.first_name, self.full_date, self.list_children,
self.include_notes, self.place, self.date, self.age, self.include_notes, self.place, self.date, self.age,
self.dup_persons, self.child_ref, self.images ] self.dup_persons, self.child_ref, self.images )
self.style_name = self.selected_style.get_name() self.style_name = self.selected_style.get_name()
#------------------------------------------------------------------------ #------------------------------------------------------------------------

View File

@ -452,9 +452,6 @@ class FamilyGroupBareDialog(Report.BareReportDialog):
self.person = person self.person = person
Report.BareReportDialog.__init__(self,database,self.person) Report.BareReportDialog.__init__(self,database,self.person)
def make_default_style(self):
_make_default_style(self.default_style)
self.spouse_name = self.options[1] self.spouse_name = self.options[1]
self.style_name = stl self.style_name = stl
@ -473,6 +470,9 @@ class FamilyGroupBareDialog(Report.BareReportDialog):
# Customization hooks # Customization hooks
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
def make_default_style(self):
_make_default_style(self.default_style)
def get_title(self): def get_title(self):
"""The window title for this dialog""" """The window title for this dialog"""
return "%s - GRAMPS Book" % (_("Family Group Report")) return "%s - GRAMPS Book" % (_("Family Group Report"))
@ -551,7 +551,7 @@ class FamilyGroupBareDialog(Report.BareReportDialog):
else: else:
self.spouse_name = "" self.spouse_name = ""
self.options = [ self.person.getId(), self.spouse_name ] self.options = ( self.person.getId(), self.spouse_name )
self.style_name = self.selected_style.get_name() self.style_name = self.selected_style.get_name()
#------------------------------------------------------------------------ #------------------------------------------------------------------------

View File

@ -856,9 +856,6 @@ class FtmAncestorBareReportDialog(Report.BareReportDialog):
self.person = person self.person = person
Report.BareReportDialog.__init__(self,database,self.person) Report.BareReportDialog.__init__(self,database,self.person)
def make_default_style(self):
_make_default_style(self.default_style)
self.max_gen = int(self.options[1]) self.max_gen = int(self.options[1])
self.pg_brk = int(self.options[2]) self.pg_brk = int(self.options[2])
self.style_name = stl self.style_name = stl
@ -874,6 +871,9 @@ class FtmAncestorBareReportDialog(Report.BareReportDialog):
# Customization hooks # Customization hooks
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
def make_default_style(self):
_make_default_style(self.default_style)
def get_title(self): def get_title(self):
"""The window title for this dialog""" """The window title for this dialog"""
return "%s - GRAMPS Book" % (_("FTM Style Ancestor Report")) return "%s - GRAMPS Book" % (_("FTM Style Ancestor Report"))
@ -899,7 +899,7 @@ class FtmAncestorBareReportDialog(Report.BareReportDialog):
if self.new_person: if self.new_person:
self.person = self.new_person self.person = self.new_person
self.options = [ self.person.getId(), self.max_gen, self.pg_brk ] self.options = ( self.person.getId(), self.max_gen, self.pg_brk )
self.style_name = self.selected_style.get_name() self.style_name = self.selected_style.get_name()

View File

@ -1260,10 +1260,8 @@ class FtmDescendantBareReportDialog(Report.BareReportDialog):
self.person = self.db.getPerson(self.options[0]) self.person = self.db.getPerson(self.options[0])
else: else:
self.person = person self.person = person
Report.BareReportDialog.__init__(self,database,self.person)
def make_default_style(self): Report.BareReportDialog.__init__(self,database,self.person)
_make_default_style(self.default_style)
self.max_gen = int(self.options[1]) self.max_gen = int(self.options[1])
self.pg_brk = int(self.options[2]) self.pg_brk = int(self.options[2])
@ -1292,6 +1290,9 @@ class FtmDescendantBareReportDialog(Report.BareReportDialog):
"""Where to save styles for this report.""" """Where to save styles for this report."""
return _style_file return _style_file
def make_default_style(self):
_make_default_style(self.default_style)
def on_cancel(self, obj): def on_cancel(self, obj):
pass pass
@ -1305,7 +1306,7 @@ class FtmDescendantBareReportDialog(Report.BareReportDialog):
if self.new_person: if self.new_person:
self.person = self.new_person self.person = self.new_person
self.options = [ self.person.getId(), self.max_gen, self.pg_brk ] self.options = ( self.person.getId(), self.max_gen, self.pg_brk )
self.style_name = self.selected_style.get_name() self.style_name = self.selected_style.get_name()
#------------------------------------------------------------------------ #------------------------------------------------------------------------

View File

@ -606,7 +606,7 @@ class IndivCompleteBareReportDialog(Report.BareReportDialog):
if self.new_person: if self.new_person:
self.person = self.new_person self.person = self.new_person
self.filter_num = self.filter_combo.get_history() self.filter_num = self.filter_combo.get_history()
self.options = [ self.person.getId(), self.max_gen, self.pg_brk, self.filter_num] self.options = ( self.person.getId(), self.max_gen, self.pg_brk, self.filter_num )
self.style_name = self.selected_style.get_name() self.style_name = self.selected_style.get_name()

View File

@ -540,7 +540,7 @@ class IndivSummaryBareReportDialog(Report.BareReportDialog):
if self.new_person: if self.new_person:
self.person = self.new_person self.person = self.new_person
self.options = [ self.person.getId(), self.max_gen, self.pg_brk ] self.options = ( self.person.getId(), self.max_gen, self.pg_brk )
self.style_name = self.selected_style.get_name() self.style_name = self.selected_style.get_name()

View File

@ -139,9 +139,6 @@ class SimpleBookTitleDialog(Report.BareReportDialog):
self.person = person self.person = person
Report.BareReportDialog.__init__(self,database,self.person) Report.BareReportDialog.__init__(self,database,self.person)
def make_default_style(self):
_make_default_style(self.default_style)
if self.options[1]: if self.options[1]:
self.title_string = self.options[1] self.title_string = self.options[1]
else: else:
@ -168,6 +165,9 @@ class SimpleBookTitleDialog(Report.BareReportDialog):
# Customization hooks # Customization hooks
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
def make_default_style(self):
_make_default_style(self.default_style)
def get_title(self): def get_title(self):
"""The window title for this dialog""" """The window title for this dialog"""
return "%s - GRAMPS Book" % (_("Simple Book Title")) return "%s - GRAMPS Book" % (_("Simple Book Title"))
@ -218,7 +218,7 @@ class SimpleBookTitleDialog(Report.BareReportDialog):
if self.new_person: if self.new_person:
self.person = self.new_person self.person = self.new_person
self.options = [ self.person.getId() , self.title_string, self.copyright_string ] self.options = ( self.person.getId() , self.title_string, self.copyright_string )
self.style_name = self.selected_style.get_name() self.style_name = self.selected_style.get_name()