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:
parent
a1e67e9e4f
commit
f5635de066
@ -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>
|
2006-05-23 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
||||||
* src/DataViews/_MapView.py: Catch exceptions of the PixbufLoader that
|
* src/DataViews/_MapView.py: Catch exceptions of the PixbufLoader that
|
||||||
occur if nothing or not an image have been downloaded.
|
occur if nothing or not an image have been downloaded.
|
||||||
|
@ -1409,6 +1409,8 @@ class GrampsBSDDB(GrampsDbBase,UpdateCallback):
|
|||||||
|
|
||||||
# Switch from fixed lds ords to a list
|
# Switch from fixed lds ords to a list
|
||||||
if lds_seal:
|
if lds_seal:
|
||||||
|
lds_seal.type = LdsOrd.SEAL_TO_SPOUSE
|
||||||
|
lds_seal.private = False
|
||||||
family.lds_ord_list = [lds_seal]
|
family.lds_ord_list = [lds_seal]
|
||||||
|
|
||||||
self.commit_family(family,trans)
|
self.commit_family(family,trans)
|
||||||
@ -1497,8 +1499,18 @@ class GrampsBSDDB(GrampsDbBase,UpdateCallback):
|
|||||||
convert_url_9(url)
|
convert_url_9(url)
|
||||||
|
|
||||||
# Switch from fixed lds ords to a list
|
# Switch from fixed lds ords to a list
|
||||||
person.lds_ord_list = [item for item
|
if lds_bapt:
|
||||||
in [lds_bapt,lds_endow,lds_seal] if item]
|
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.commit_person(person,trans)
|
||||||
self.update()
|
self.update()
|
||||||
|
Loading…
Reference in New Issue
Block a user