Update Date and Place text

svn: r1196
This commit is contained in:
Bruce DeGrasse 2002-11-19 16:04:46 +00:00
parent 7700c1c1ac
commit bcd267e6a0

View File

@ -1,4 +1,3 @@
# #
# Gramps - a GTK+/GNOME based genealogy program # Gramps - a GTK+/GNOME based genealogy program
# #
@ -41,7 +40,7 @@ import libglade
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
class DetAncestorReport(Report): class DetAncestorReport(Report):
#-------------------------------------------------------------------- #--------------------------------------------------------------------
# #
# #
@ -88,6 +87,9 @@ class DetAncestorReport(Report):
NAME Born: DATE PLACE Died: DATE e NAME Born: DATE PLACE Died: DATE e
NAME Born: DATE PLACE Died: PLACE d NAME Born: DATE PLACE Died: PLACE d
NAME Born: DATE PLACE c NAME Born: DATE PLACE c
NAME Born: DATE Died: DATE PLACE b
NAME Born: DATE Died: DATE a
NAME Born: DATE Died: PLACE 9
NAME Born: DATE 8 NAME Born: DATE 8
NAME Born: PLACE Died: DATE PLACE 7 NAME Born: PLACE Died: DATE PLACE 7
NAME Born: PLACE Died: DATE 6 NAME Born: PLACE Died: DATE 6
@ -124,10 +126,8 @@ class DetAncestorReport(Report):
childID= child.getId() childID= child.getId()
if self.prevGenIDs.get(childID) != None: if self.prevGenIDs.get(childID) != None:
name= "[" + str(self.prevGenIDs.get(childID)) + "] "+ name name= "[" + str(self.prevGenIDs.get(childID)) + "] "+ name
#print "Child List: <", birth.getDate(), ">", birth.getPlaceName()
if birth.getDate() != "": if birth.getDate() != "":
#print birth.getPlaceName() if birth.getPlaceName() != "":
if birth.getPlaceName() != None:
if death.getDate() != "": if death.getDate() != "":
if death.getPlaceName() != "": if death.getPlaceName() != "":
self.doc.write_text(_("- %s Born: %s %s Died: %s %s") % \ self.doc.write_text(_("- %s Born: %s %s Died: %s %s") % \
@ -152,13 +152,13 @@ class DetAncestorReport(Report):
else: else:
self.doc.write_text(_("- %s Born: %s Died: %s") % \ self.doc.write_text(_("- %s Born: %s Died: %s") % \
(name, birth.getDate(), death.getDate())) # a (name, birth.getDate(), death.getDate())) # a
elif death.PlaceName() != "": elif death.getPlaceName() != "":
self.doc.write_text(_("- %s Born: %s Died: %s") % \ self.doc.write_text(_("- %s Born: %s Died: %s") % \
(name, birth.getDate(), birth.getPlaceName())) # 9 (name, birth.getDate(), death.getPlaceName())) # 9
else: self.doc.write_text(_("- %s Born: %s") % \ else: self.doc.write_text(_("- %s Born: %s") % \
(name, birth.getDate())) # 8 (name, birth.getDate())) # 8
else: else:
if birth.getPlaceName() != None: if birth.getPlaceName() != "":
if death.getDate() != "": if death.getDate() != "":
if death.getPlaceName() != "": if death.getPlaceName() != "":
self.doc.write_text(_("- %s Born: %s Died: %s %s") % \ self.doc.write_text(_("- %s Born: %s Died: %s %s") % \
@ -168,7 +168,7 @@ class DetAncestorReport(Report):
self.doc.write_text(_("- %s Born: %s Died: %s") % \ self.doc.write_text(_("- %s Born: %s Died: %s") % \
(name, birth.getPlaceName(), death.getDate())) # 6 (name, birth.getPlaceName(), death.getDate())) # 6
elif death.getPlaceName() != "": elif death.getPlaceName() != "":
self.doc.write_text(_("- %s Born: %s Died: %s") % \ self.doc.write_text(_("- %s Born: %s %s Died: %s") % \
(name, birth.getPlaceName(), death.getPlaceName())) # 5 (name, birth.getPlaceName(), death.getPlaceName())) # 5
else: self.doc.write_text(_("- %s Born: %s") % \ else: self.doc.write_text(_("- %s Born: %s") % \
(name, birth.getPlaceName())) # 4 (name, birth.getPlaceName())) # 4
@ -431,22 +431,27 @@ class DetAncestorReport(Report):
HE/SHE married SPOUSE on FULLDATE in PLACE. HE/SHE married SPOUSE on FULLDATE in PLACE.
HE/SHE married SPOUSE on FULLDATE. HE/SHE married SPOUSE on FULLDATE.
HE/SHE married SPOUSE in PLACE. HE/SHE married SPOUSE in PLACE.
He/SHE married SPOUSE HE/SHE married SPOUSE
HE/SHE married on FULLDATE in PLACE.
HE/SHE married on FULLDATE.
HE/SHE married in PLACE.
""" """
famList= person.getFamilyList() famList= person.getFamilyList()
if len(famList) > 0: if len(famList) > 0:
fam_num= 0 fam_num= 0
endOfSent= ""
for fam in famList: for fam in famList:
fam_num= fam_num + 1 fam_num= fam_num + 1
spouse= "" spouse= ""
t= ""
if person.getGender() == RelLib.Person.male: if person.getGender() == RelLib.Person.male:
if fam.getMother() != None: if fam.getMother() != None:
spouse= fam.getMother().getPrimaryName().getRegularName() spouse= fam.getMother().getPrimaryName().getRegularName()
if fam_num == 1: if fam_num == 1:
heshe= _("He") heshe= _("He")
elif fam_num < len(famList): elif fam_num < len(famList):
heshe= _(",") heshe= _(",")
else: heshe= _("and he") else: heshe= _("and he")
else: else:
if fam_num == 1: if fam_num == 1:
heshe= _("She") heshe= _("She")
@ -478,25 +483,26 @@ class DetAncestorReport(Report):
if spouse != "": if spouse != "":
if fulldate == "" and place == "": if fulldate == "" and place == "":
t= _(" %s married %s" % (heshe, spouse)) t= _(" %s married %s") % (heshe, spouse)
elif fulldate == "" and place != "": elif fulldate == "" and place != "":
t= _(" %s married %s in %s" % (heshe, spouse, place)) t= _(" %s married %s in %s") % (heshe, spouse, place)
elif fulldate != "" and place == "": elif fulldate != "" and place == "":
t= _(" %s married %s on %s" % (heshe, spouse, fulldate)) t= _(" %s married %s on %s") % (heshe, spouse, fulldate)
else: t= _(" %s married %s on %s in %s" % \ else: t= _(" %s married %s on %s in %s") % \
(heshe, spouse, fulldate, place)) (heshe, spouse, fulldate, place)
else: else:
if fulldate == "" and place == "": if fulldate == "" and place != "":
t= _(" %s married") t= _(" %s married in %s") % (heshe, place)
elif fulldate == "" and place != "":
t= _(" %s married in %s" % (heshe, place))
elif fulldate != "" and place == "": elif fulldate != "" and place == "":
t= _(" %s married on %s" % (heshe, fulldate)) t= _(" %s married on %s") % (heshe, fulldate)
else: t= _(" %s married on %s in %s" % \ elif fulldate != "" and place != "":
(heshe, fulldate, place)) t= _(" %s married on %s in %s") % \
(heshe, fulldate, place)
if t != "": self.doc.write_text(t) if t != "":
if fam_num == len(famList): self.doc.write_text(".") self.doc.write_text(t)
endOfSent= "."
if fam_num == len(famList): self.doc.write_text(endOfSent)
def write_mate(self, mate, rptOptions): def write_mate(self, mate, rptOptions):
"""Output birth, death, parentage, marriage and notes information """ """Output birth, death, parentage, marriage and notes information """
@ -510,9 +516,9 @@ class DetAncestorReport(Report):
ind= fam.getMother() ind= fam.getMother()
person= fam.getMother().getPrimaryName().getRegularName() person= fam.getMother().getPrimaryName().getRegularName()
firstName= fam.getMother().getPrimaryName().getFirstName() firstName= fam.getMother().getPrimaryName().getFirstName()
heshe= _("He") heshe= _("She")
else: else:
heshe= _("She") heshe= _("He")
if fam.getFather() != None: if fam.getFather() != None:
ind= fam.getFather() ind= fam.getFather()
person= fam.getFather().getPrimaryName().getRegularName() person= fam.getFather().getPrimaryName().getRegularName()
@ -599,10 +605,10 @@ class DetAncestorReport(Report):
# #
# #
#-------------------------------------------------------------------- #--------------------------------------------------------------------
def write_report(self): def write_report(self, rptOpt):
self.filter(self.start,1) self.filter(self.start,1)
rptOpt= reportOptions() #rptOpt= reportOptions()
name = self.start.getPrimaryName().getRegularName() name = self.start.getPrimaryName().getRegularName()
self.doc.start_paragraph("Title") self.doc.start_paragraph("Title")
@ -738,8 +744,139 @@ class DetAncestorReportDialog(TextReportDialog):
output file opened.""" output file opened."""
MyReport = DetAncestorReport(self.db, self.person, self.target_path, MyReport = DetAncestorReport(self.db, self.person, self.target_path,
self.max_gen, self.pg_brk, self.doc) self.max_gen, self.pg_brk, self.doc)
MyReport.write_report()
rptOpt= reportOptions()
rptOpt.firstName= self.firstName
rptOpt.fullDate= self.fullDate
rptOpt.listChildren= self.listChildren
rptOpt.includeNotes= self.includeNotes
rptOpt.blankPlace= self.blankPlace
rptOpt.blankDate= self.blankDate
rptOpt.calcAgeFlag= self.calcAgeFlag
rptOpt.dupPersons= self.dupPersons
rptOpt.childRef= self.childRef
rptOpt.addImages= self.addImages
MyReport.write_report(rptOpt)
#*** Begin change
def add_user_options(self):
# Create a GTK Checkbox widgets
# Pronoun instead of first name
self.first_name_option = gtk.GtkCheckButton(_("Use first names instead of pronouns"))
self.first_name_option.set_active(0)
# Full date usage
self.full_date_option = gtk.GtkCheckButton(_("Use full dates instead of only the year"))
self.full_date_option.set_active(1)
# Children List
self.list_children_option = gtk.GtkCheckButton(_("List children"))
self.list_children_option.set_active(1)
# Print notes
self.include_notes_option = gtk.GtkCheckButton(_("Include notes"))
self.include_notes_option.set_active(1)
# Replace missing Place with ___________
self.place_option = gtk.GtkCheckButton(_("Replace Place with ______"))
self.place_option.set_active(0)
# Replace missing dates with __________
self.date_option = gtk.GtkCheckButton(_("Replace Dates with ______"))
self.date_option.set_active(0)
# Add "Died at the age of NN" in text
self.age_option = gtk.GtkCheckButton(_("Compute age"))
self.age_option.set_active(1)
# Omit duplicate persons, occurs when distant cousins marry
self.dupPersons_option = gtk.GtkCheckButton(_("Omit duplicate ancestors"))
self.dupPersons_option.set_active(1)
#Add descendant reference in child list
self.childRef_option = gtk.GtkCheckButton(_("Add descendant reference in child list"))
self.childRef_option.set_active(1)
#Add photo/image reference
self.image_option = gtk.GtkCheckButton(_("Include Photo/Images from Gallery"))
self.image_option.set_active(0)
# Add new options. The first argument is the tab name for grouping options.
# if you want to put everyting in the generic "Options" category, use
# self.add_option(text,widget) instead of self.add_frame_option(category,text,widget)
self.add_frame_option('Content','',self.first_name_option)
self.add_frame_option('Content','',self.full_date_option)
self.add_frame_option('Content','',self.list_children_option)
self.add_frame_option('Content','',self.include_notes_option)
self.add_frame_option('Content','',self.place_option)
self.add_frame_option('Content','',self.date_option)
self.add_frame_option('Content','',self.age_option)
self.add_frame_option('Content','',self.dupPersons_option)
self.add_frame_option('Content','',self.childRef_option)
self.add_frame_option('Content','',self.image_option)
def parse_report_options_frame(self):
"""Parse the report options frame of the dialog. Save the user selected choices for later use."""
# call the parent task to handle normal options
ReportDialog.parse_report_options_frame(self)
# get values from the widgets
if self.first_name_option.get_active():
self.firstName = reportOptions.Yes
else:
self.firstName = reportOptions.No
if self.full_date_option.get_active():
self.fullDate = reportOptions.Yes
else:
self.fullDate = reportOptions.No
if self.list_children_option.get_active():
self.listChildren = reportOptions.Yes
else:
self.listChildren = reportOptions.No
if self.include_notes_option.get_active():
self.includeNotes = reportOptions.Yes
else:
self.includeNotes = reportOptions.No
if self.place_option.get_active():
self.blankPlace = reportOptions.Yes
else:
self.blankPlace = reportOptions.No
if self.date_option.get_active():
self.blankDate = reportOptions.Yes
else:
self.blankDate = reportOptions.No
if self.age_option.get_active():
self.calcAgeFlag = reportOptions.Yes
else:
self.calcAgeFlag = reportOptions.No
if self.dupPersons_option.get_active():
self.dupPersons = reportOptions.Yes
else:
self.dupPersons = reportOptions.No
if self.childRef_option.get_active():
self.childRef = reportOptions.Yes
else:
self.childRef = reportOptions.No
if self.image_option.get_active():
self.addImages = reportOptions.Yes
else:
self.addImages = reportOptions.No
#*** End of change
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
@ -834,8 +971,6 @@ register_report(
class reportOptions: class reportOptions:
Yes=1 Yes=1
No= 0 No= 0
Left= 2
Right= 3
def __init__(self): def __init__(self):
### Initialize report options### ### Initialize report options###
@ -883,9 +1018,9 @@ class reportOptions:
self.calcAgeFlag= reportOptions.Yes self.calcAgeFlag= reportOptions.Yes
#Add Photos and Images to report #Add Photos and Images to report
self.addImages= reportOptions.No self.addImages= reportOptions.Yes
#self.imageAttrTag= "DetAncestralReport-H" self.imageAttrTag= "DetAncestralReport-H"
self.imageAttrTag= "DetAncestralReport-L" #self.imageAttrTag= "DetAncestralReport-L"
#Omit sensitive information such as birth, christening, marriage #Omit sensitive information such as birth, christening, marriage
# for living after XXXXX date. # for living after XXXXX date.
@ -907,8 +1042,6 @@ class reportOptions:
birth= ind.getBirth().getDateObj().get_start_date() birth= ind.getBirth().getDateObj().get_start_date()
death= ind.getDeath().getDateObj().get_start_date() death= ind.getDeath().getDateObj().get_start_date()
#print "birth=", birth.__dict__
#print "death=", death.__dict__
self.t= "" self.t= ""
if birth.getYearValid() and death.getYearValid(): if birth.getYearValid() and death.getYearValid():
self.age= death.getYear() - birth.getYear() self.age= death.getYear() - birth.getYear()