* src/ReadGedcom.py: remove extra commits
svn: r3601
This commit is contained in:
parent
b2b9b7e7d2
commit
9beecadc74
@ -1,3 +1,6 @@
|
|||||||
|
2004-10-06 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
|
* src/ReadGedcom.py: remove extra commits
|
||||||
|
|
||||||
2004-10-06 Alex Roitman <shura@alex.neuro.umn.edu>
|
2004-10-06 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||||
* src/Makefile.am: Remove extra DESTDIR.
|
* src/Makefile.am: Remove extra DESTDIR.
|
||||||
* src/docgen/Makefile.am: Remove extra DESTDIR, correct pycheck target.
|
* src/docgen/Makefile.am: Remove extra DESTDIR, correct pycheck target.
|
||||||
|
@ -138,7 +138,6 @@ class GrampsDbBase:
|
|||||||
Commits the specified Person to the database, storing the changes
|
Commits the specified Person to the database, storing the changes
|
||||||
as part of the transaction.
|
as part of the transaction.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if change_time:
|
if change_time:
|
||||||
person.change = int(change_time)
|
person.change = int(change_time)
|
||||||
else:
|
else:
|
||||||
|
@ -605,7 +605,6 @@ class GedcomParser:
|
|||||||
intid = Utils.create_id()
|
intid = Utils.create_id()
|
||||||
person.set_handle(intid)
|
person.set_handle(intid)
|
||||||
person.set_gramps_id(gramps_id)
|
person.set_gramps_id(gramps_id)
|
||||||
self.db.add_person(person,self.trans)
|
|
||||||
self.gid2id[gramps_id] = intid
|
self.gid2id[gramps_id] = intid
|
||||||
return person
|
return person
|
||||||
|
|
||||||
@ -618,7 +617,6 @@ class GedcomParser:
|
|||||||
intid = Utils.create_id()
|
intid = Utils.create_id()
|
||||||
source.set_handle(intid)
|
source.set_handle(intid)
|
||||||
source.set_gramps_id(gramps_id)
|
source.set_gramps_id(gramps_id)
|
||||||
self.db.add_source(source,self.trans)
|
|
||||||
self.sid2id[gramps_id] = intid
|
self.sid2id[gramps_id] = intid
|
||||||
return source
|
return source
|
||||||
|
|
||||||
@ -632,7 +630,6 @@ class GedcomParser:
|
|||||||
place.set_handle(intid)
|
place.set_handle(intid)
|
||||||
place.set_title(gramps_id)
|
place.set_title(gramps_id)
|
||||||
place.set_gramps_id(self.db.find_next_place_gramps_id())
|
place.set_gramps_id(self.db.find_next_place_gramps_id())
|
||||||
self.db.add_place(place,self.trans)
|
|
||||||
self.lid2id[gramps_id] = intid
|
self.lid2id[gramps_id] = intid
|
||||||
return place
|
return place
|
||||||
|
|
||||||
@ -645,7 +642,6 @@ class GedcomParser:
|
|||||||
intid = Utils.create_id()
|
intid = Utils.create_id()
|
||||||
family.set_handle(intid)
|
family.set_handle(intid)
|
||||||
family.set_gramps_id(gramps_id)
|
family.set_gramps_id(gramps_id)
|
||||||
self.db.add_family(family,self.trans)
|
|
||||||
self.fid2id[gramps_id] = intid
|
self.fid2id[gramps_id] = intid
|
||||||
return family
|
return family
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user