Only one base translation per locale. To set up a different locale on any axis (locale, domain, directory, or languages) instantiate a secondary locale by calling GrampsLocale() with the appropriate arguments. svn: r21985
97 lines
4.0 KiB
Python
97 lines
4.0 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2010 Michiel D. Nauta
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
|
|
# $Id$
|
|
|
|
"""
|
|
Provide merge capabilities for events.
|
|
"""
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Gramps modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from ..lib import Person, Family
|
|
from ..db import DbTxn
|
|
from ..const import GRAMPS_LOCALE as glocale
|
|
_ = glocale.translation.sgettext
|
|
from ..errors import MergeError
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# MergeEventQuery
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
class MergeEventQuery(object):
|
|
"""
|
|
Create database query to merge two events.
|
|
"""
|
|
def __init__(self, dbstate, phoenix, titanic):
|
|
self.database = dbstate.db
|
|
self.phoenix = phoenix
|
|
self.titanic = titanic
|
|
|
|
def execute(self):
|
|
"""
|
|
Merges two events into a single event.
|
|
"""
|
|
new_handle = self.phoenix.get_handle()
|
|
old_handle = self.titanic.get_handle()
|
|
|
|
self.phoenix.merge(self.titanic)
|
|
|
|
with DbTxn(_("Merge Event Objects"), self.database) as trans:
|
|
self.database.commit_event(self.phoenix, trans)
|
|
for (class_name, handle) in self.database.find_backlink_handles(
|
|
old_handle):
|
|
if class_name == Person.__name__:
|
|
person = self.database.get_person_from_handle(handle)
|
|
assert(person.has_handle_reference("Event", old_handle))
|
|
bri = person.birth_ref_index
|
|
dri = person.death_ref_index
|
|
person.replace_handle_reference("Event", old_handle,
|
|
new_handle)
|
|
if person.birth_ref_index != bri and \
|
|
person.birth_ref_index == -1:
|
|
for index, ref in enumerate(person.get_event_ref_list()):
|
|
event = self.database.get_event_from_handle(ref.ref)
|
|
if event.type.is_birth() and ref.role.is_primary():
|
|
person.birth_ref_index = index
|
|
break
|
|
if person.death_ref_index != dri and \
|
|
person.death_ref_index == -1:
|
|
for index, ref in enumerate(person.get_event_ref_list()):
|
|
event = self.database.get_event_from_handle(ref.ref)
|
|
if event.type.is_death() and ref.role.is_primary():
|
|
person.death_ref_index = index
|
|
break
|
|
self.database.commit_person(person, trans)
|
|
elif class_name == Family.__name__:
|
|
family = self.database.get_family_from_handle(handle)
|
|
assert(family.has_handle_reference("Event", old_handle))
|
|
family.replace_handle_reference("Event", old_handle,
|
|
new_handle)
|
|
self.database.commit_family(family, trans)
|
|
else:
|
|
raise MergeError("Encounter an object of type %s that has "
|
|
"an event reference." % class_name)
|
|
self.database.remove_event(old_handle, trans)
|