2006-05-23 Alex Roitman <shura@gramps-project.org>

* src/GrampsDb/_GrampsBSDDB.py (gramps_upgrade_9): Upgrade LdsOrd.



svn: r6766
This commit is contained in:
Alex Roitman 2006-05-23 23:37:24 +00:00
parent a1e67e9e4f
commit f5635de066
2 changed files with 17 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2006-05-23 Alex Roitman <shura@gramps-project.org>
* src/GrampsDb/_GrampsBSDDB.py (gramps_upgrade_9): Upgrade LdsOrd.
2006-05-23 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/DataViews/_MapView.py: Catch exceptions of the PixbufLoader that
occur if nothing or not an image have been downloaded.

View File

@ -1409,6 +1409,8 @@ class GrampsBSDDB(GrampsDbBase,UpdateCallback):
# Switch from fixed lds ords to a list
if lds_seal:
lds_seal.type = LdsOrd.SEAL_TO_SPOUSE
lds_seal.private = False
family.lds_ord_list = [lds_seal]
self.commit_family(family,trans)
@ -1497,8 +1499,18 @@ class GrampsBSDDB(GrampsDbBase,UpdateCallback):
convert_url_9(url)
# Switch from fixed lds ords to a list
person.lds_ord_list = [item for item
in [lds_bapt,lds_endow,lds_seal] if item]
if lds_bapt:
lds_bapt.type = LdsOrd.BAPTISM
person.lds_ord_list.append(lds_bapt)
if lds_endow:
lds_endow.type = LdsOrd.ENDOWMENT
person.lds_ord_list.append(lds_endow)
if lds_seal:
lds_seal.type = LdsOrd.SEAL_TO_PARENTS
person.lds_ord_list.append(lds_seal)
# Old lds ords did not have private attribute
for item in person.lds_ord_list:
item.private = False
self.commit_person(person,trans)
self.update()