Bug fixes, new child/parent relationship handling, remembering places

svn: r241
This commit is contained in:
Don Allingham
2001-07-13 00:01:04 +00:00
parent 73ef51bb56
commit 1b03618556
15 changed files with 1474 additions and 797 deletions

View File

@@ -307,8 +307,8 @@ def exportData(database, filename, callback):
write_ref(g,"childof",person.getMainFamily())
for alt in person.getAltFamilyList():
g.write("<childof ref=\"" + str(alt[0].getId()))
g.write("\" type=\"" + alt[1] + "\"/>\n")
g.write("<childof ref=\"%s\" mrel=\"%s\" frel=\"%s\"/>\n" % \
(str(alt[0].getId()), alt[1], alt[2]))
for family in person.getFamilyList():
write_ref(g,"parentin",family)