* src/MergeData.py: fix dangling family after a merge.
svn: r5443
This commit is contained in:
parent
41c69d9557
commit
499aed0bd3
@ -1,3 +1,6 @@
|
|||||||
|
2005-11-27 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/MergeData.py: fix dangling family after a merge.
|
||||||
|
|
||||||
2005-11-27 Alex Roitman <shura@gramps-project.org>
|
2005-11-27 Alex Roitman <shura@gramps-project.org>
|
||||||
* src/po/template.po: Update.
|
* src/po/template.po: Update.
|
||||||
|
|
||||||
|
@ -7,8 +7,9 @@ AC_PREREQ(2.57)
|
|||||||
AC_INIT(gramps, 2.0.9, gramps-bugs@lists.sourceforge.net)
|
AC_INIT(gramps, 2.0.9, gramps-bugs@lists.sourceforge.net)
|
||||||
AC_CONFIG_SRCDIR(src/gramps.py)
|
AC_CONFIG_SRCDIR(src/gramps.py)
|
||||||
AM_INIT_AUTOMAKE(1.6.3)
|
AM_INIT_AUTOMAKE(1.6.3)
|
||||||
RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
|
dnl RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
|
||||||
dnl RELEASE=1
|
dnl RELEASE=1
|
||||||
|
RELEASE=0.RC1
|
||||||
|
|
||||||
VERSIONSTRING=$VERSION
|
VERSIONSTRING=$VERSION
|
||||||
if test x"$RELEASE" != "x"
|
if test x"$RELEASE" != "x"
|
||||||
|
@ -167,8 +167,8 @@ class Compare:
|
|||||||
self.add(tobj,indent,"%s:\t%s" % (_('Type'),relstr))
|
self.add(tobj,indent,"%s:\t%s" % (_('Type'),relstr))
|
||||||
event = ReportUtils.find_marriage(self.db,family)
|
event = ReportUtils.find_marriage(self.db,family)
|
||||||
if event:
|
if event:
|
||||||
self.add(tobj,indent,"%s:\t%s" % (_('Marriage'),
|
self.add(tobj,indent,"%s:\t%s" % (
|
||||||
self.get_event_info(event.get_handle())))
|
_('Marriage'), self.get_event_info(event.get_handle())))
|
||||||
for child_id in family.get_child_handle_list():
|
for child_id in family.get_child_handle_list():
|
||||||
child = self.db.get_person_from_handle(child_id)
|
child = self.db.get_person_from_handle(child_id)
|
||||||
self.add(tobj,indent,"%s:\t%s" % (_('Child'),name_of(child)))
|
self.add(tobj,indent,"%s:\t%s" % (_('Child'),name_of(child)))
|
||||||
@ -354,7 +354,11 @@ class MergePeople:
|
|||||||
trans = self.db.transaction_begin()
|
trans = self.db.transaction_begin()
|
||||||
|
|
||||||
self.merge_person_information(new,trans)
|
self.merge_person_information(new,trans)
|
||||||
|
self.debug_person(new, "NEW")
|
||||||
|
|
||||||
self.merge_family_information(new,trans)
|
self.merge_family_information(new,trans)
|
||||||
|
self.debug_person(new, "NEW")
|
||||||
|
|
||||||
self.db.commit_person(new,trans)
|
self.db.commit_person(new,trans)
|
||||||
self.debug_person(new, "NEW")
|
self.debug_person(new, "NEW")
|
||||||
self.db.remove_person(self.old_handle,trans)
|
self.db.remove_person(self.old_handle,trans)
|
||||||
@ -537,6 +541,7 @@ class MergePeople:
|
|||||||
"""
|
"""
|
||||||
self.merge_parents(new, trans)
|
self.merge_parents(new, trans)
|
||||||
self.merge_relationships(new, trans)
|
self.merge_relationships(new, trans)
|
||||||
|
self.debug_person(new, "NEW")
|
||||||
|
|
||||||
def merge_parents(self, new, trans):
|
def merge_parents(self, new, trans):
|
||||||
"""
|
"""
|
||||||
@ -557,6 +562,8 @@ class MergePeople:
|
|||||||
for fid in self.p2.get_parent_family_handle_list():
|
for fid in self.p2.get_parent_family_handle_list():
|
||||||
if fid not in parent_list:
|
if fid not in parent_list:
|
||||||
parent_list.append(fid)
|
parent_list.append(fid)
|
||||||
|
if __debug__:
|
||||||
|
print "Adding family to parent list", fid
|
||||||
|
|
||||||
# loop through the combined list, converting the child handles
|
# loop through the combined list, converting the child handles
|
||||||
# of the families, and adding the families to the merged
|
# of the families, and adding the families to the merged
|
||||||
@ -599,6 +606,7 @@ class MergePeople:
|
|||||||
|
|
||||||
family_num = 0
|
family_num = 0
|
||||||
family_list = self.p1.get_family_handle_list()
|
family_list = self.p1.get_family_handle_list()
|
||||||
|
new.set_family_handle_list(family_list)
|
||||||
|
|
||||||
for src_handle in self.p2.get_family_handle_list():
|
for src_handle in self.p2.get_family_handle_list():
|
||||||
|
|
||||||
@ -635,6 +643,8 @@ class MergePeople:
|
|||||||
for fid in self.p1.get_family_handle_list():
|
for fid in self.p1.get_family_handle_list():
|
||||||
if fid not in new.get_family_handle_list():
|
if fid not in new.get_family_handle_list():
|
||||||
new.add_family_handle(fid)
|
new.add_family_handle(fid)
|
||||||
|
if __debug__:
|
||||||
|
print "Adding family %s" % fid
|
||||||
|
|
||||||
if src_handle in new.get_family_handle_list():
|
if src_handle in new.get_family_handle_list():
|
||||||
continue
|
continue
|
||||||
@ -749,6 +759,8 @@ class MergePeople:
|
|||||||
if child_handle != self.new_handle:
|
if child_handle != self.new_handle:
|
||||||
child = self.db.get_person_from_handle(child_handle)
|
child = self.db.get_person_from_handle(child_handle)
|
||||||
if child.remove_parent_family_handle(src_family_handle):
|
if child.remove_parent_family_handle(src_family_handle):
|
||||||
|
if __debug__:
|
||||||
|
print "Remove parent family %s from %s" % (src_family_handle,child_handle)
|
||||||
self.db.commit_person(child,trans)
|
self.db.commit_person(child,trans)
|
||||||
|
|
||||||
# delete the old source family
|
# delete the old source family
|
||||||
|
@ -769,6 +769,7 @@ class CheckIntegrity:
|
|||||||
|
|
||||||
if efam == 1:
|
if efam == 1:
|
||||||
self.text.write(_("1 empty family was found\n"))
|
self.text.write(_("1 empty family was found\n"))
|
||||||
|
self.text.write("\t%s\n" % self.empty_family[0])
|
||||||
elif efam > 1:
|
elif efam > 1:
|
||||||
self.text.write(_("%d empty families were found\n") % efam)
|
self.text.write(_("%d empty families were found\n") % efam)
|
||||||
if rel == 1:
|
if rel == 1:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user