* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,

src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).


svn: r3462
This commit is contained in:
Alex Roitman
2004-08-21 18:56:01 +00:00
parent 55a76f77e1
commit a75338f737
43 changed files with 178 additions and 161 deletions

View File

@@ -114,7 +114,7 @@ def add_familys_sources(db,family_handle,slist,private):
family = db.get_family_from_handle(family_handle)
for event_handle in family.get_event_list():
if event_handle:
event = db.find_event_from_handle(event_handle)
event = db.get_event_from_handle(event_handle)
if private and event.get_privacy():
continue
for source_ref in event.get_source_references():
@@ -142,7 +142,7 @@ def add_persons_sources(db,person,slist,private):
elist.append(person.get_death_handle())
for event_handle in elist:
if event_handle:
event = db.find_event_from_handle(event_handle)
event = db.get_event_from_handle(event_handle)
if private and event.get_privacy():
continue
for source_ref in event.get_source_references():
@@ -764,7 +764,7 @@ class GedcomWriter:
self.write_ord("SLGS",family.get_lds_sealing(),1,const.lds_ssealing)
for event_handle in family.get_event_list():
event = self.db.find_event_from_handle(event_handle)
event = self.db.get_event_from_handle(event_handle)
if self.private and event.get_privacy():
continue
name = event.get_name()
@@ -871,14 +871,14 @@ class GedcomWriter:
if not restricted:
birth_handle = person.get_birth_handle()
birth = self.db.find_event_from_handle(birth_handle)
birth = self.db.get_event_from_handle(birth_handle)
if birth_handle and not (self.private and birth.get_privacy()):
if not birth.get_date_object().is_empty() or birth.get_place_handle():
self.writeln("1 BIRT")
self.dump_event_stats(birth)
death_handle = person.get_death_handle()
death = self.db.find_event_from_handle(death_handle)
death = self.db.get_event_from_handle(death_handle)
if death_handle and not (self.private and death.get_privacy()):
if not death.get_date_object().is_empty() or death.get_place_handle():
self.writeln("1 DEAT")
@@ -891,7 +891,7 @@ class GedcomWriter:
self.write_ord("SLGC",person.get_lds_sealing(),1,const.lds_csealing)
for event_handle in person.get_event_list():
event = self.db.find_event_from_handle(event_handle)
event = self.db.get_event_from_handle(event_handle)
if self.private and event.get_privacy():
continue
name = event.get_name()