2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2004-05-11 05:20:30 +05:30
|
|
|
# Copyright (C) 2000-2004 Donald N. Allingham
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
2003-12-17 21:36:36 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
"Database Processing/Rename personal event types"
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
|
|
|
|
|
|
|
import const
|
|
|
|
import Utils
|
2003-08-17 07:44:33 +05:30
|
|
|
from gettext import gettext as _
|
2002-11-04 09:35:47 +05:30
|
|
|
from QuestionDialog import OkDialog
|
2003-03-17 10:51:40 +05:30
|
|
|
import AutoComp
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2004-05-11 05:20:30 +05:30
|
|
|
def runTool(database,person,callback,parent=None):
|
2002-10-20 19:55:16 +05:30
|
|
|
try:
|
2004-05-26 08:21:45 +05:30
|
|
|
ChangeTypes(database,person,parent)
|
2002-10-20 19:55:16 +05:30
|
|
|
except:
|
|
|
|
import DisplayTrace
|
|
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
|
2003-03-17 10:51:40 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
class ChangeTypes:
|
2004-05-26 08:21:45 +05:30
|
|
|
def __init__(self,db,person,parent):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.person = person
|
|
|
|
self.db = db
|
2004-08-13 10:04:07 +05:30
|
|
|
self.trans = db.transaction_begin()
|
2002-10-20 19:55:16 +05:30
|
|
|
base = os.path.dirname(__file__)
|
|
|
|
glade_file = "%s/%s" % (base,"changetype.glade")
|
2003-08-17 07:44:33 +05:30
|
|
|
self.glade = gtk.glade.XML(glade_file,"top","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-08-05 09:44:21 +05:30
|
|
|
self.auto1 = self.glade.get_widget("original")
|
|
|
|
self.auto2 = self.glade.get_widget("new")
|
|
|
|
|
|
|
|
AutoComp.fill_combo(self.auto1,const.personalEvents)
|
|
|
|
AutoComp.fill_combo(self.auto2,const.personalEvents)
|
2003-03-17 10:51:40 +05:30
|
|
|
|
|
|
|
Utils.set_titles(self.glade.get_widget('top'),
|
|
|
|
self.glade.get_widget('title'),
|
|
|
|
_('Change event types'))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.glade.signal_autoconnect({
|
|
|
|
"on_close_clicked" : Utils.destroy_passed_object,
|
|
|
|
"on_apply_clicked" : self.on_apply_clicked
|
|
|
|
})
|
|
|
|
|
|
|
|
def on_apply_clicked(self,obj):
|
|
|
|
modified = 0
|
2004-08-05 09:44:21 +05:30
|
|
|
original = unicode(self.auto1.child.get_text())
|
2004-08-20 03:40:26 +05:30
|
|
|
new = unicode(self.auto2.child.get_text())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-08-13 10:04:07 +05:30
|
|
|
for person_handle in self.db.get_person_handles(sort_handles=False):
|
2004-08-07 10:46:57 +05:30
|
|
|
person = self.db.get_person_from_handle(person_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
for event_handle in person.get_event_list():
|
|
|
|
if not event_handle:
|
2004-05-11 05:20:30 +05:30
|
|
|
continue
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
event = self.db.get_event_from_handle(event_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
if event.get_name() == original:
|
|
|
|
event.set_name(new)
|
2002-10-20 19:55:16 +05:30
|
|
|
modified = modified + 1
|
2004-05-13 09:51:27 +05:30
|
|
|
self.db.commit_event(event,self.trans)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
if modified == 1:
|
|
|
|
msg = _("1 event record was modified")
|
|
|
|
else:
|
|
|
|
msg = _("%d event records were modified") % modified
|
|
|
|
|
2003-03-19 09:57:34 +05:30
|
|
|
OkDialog(_('Change types'),msg)
|
2004-08-13 10:04:07 +05:30
|
|
|
self.db.transaction_commit(self.trans,_('Change types'))
|
2002-10-20 19:55:16 +05:30
|
|
|
Utils.destroy_passed_object(obj)
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2005-01-05 10:32:19 +05:30
|
|
|
from PluginMgr import register_tool
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
register_tool(
|
|
|
|
runTool,
|
|
|
|
_("Rename personal event types"),
|
|
|
|
category=_("Database Processing"),
|
|
|
|
description=_("Allows all the events of a certain name to be renamed to a new name")
|
|
|
|
)
|