2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2004-02-06 01:23:02 +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
|
|
|
"Utilities/Generate SoundEx codes"
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
|
|
|
|
|
|
|
import soundex
|
|
|
|
import Utils
|
2003-03-17 10:51:40 +05:30
|
|
|
import AutoComp
|
|
|
|
|
2003-08-17 07:44:33 +05:30
|
|
|
from gettext import gettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def runTool(database,active_person,callback):
|
|
|
|
SoundGen(database,active_person)
|
|
|
|
|
|
|
|
|
|
|
|
class SoundGen:
|
|
|
|
def __init__(self,database,active_person):
|
|
|
|
self.db = database
|
|
|
|
|
|
|
|
base = os.path.dirname(__file__)
|
|
|
|
glade_file = base + os.sep + "soundex.glade"
|
|
|
|
|
2003-08-17 07:44:33 +05:30
|
|
|
self.glade = gtk.glade.XML(glade_file,"soundEx","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.glade.signal_autoconnect({
|
|
|
|
"destroy_passed_object" : Utils.destroy_passed_object,
|
|
|
|
})
|
|
|
|
|
2003-03-17 10:51:40 +05:30
|
|
|
Utils.set_titles(self.glade.get_widget('soundEx'),
|
|
|
|
self.glade.get_widget('title'),
|
|
|
|
_('SoundEx code generator'))
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.value = self.glade.get_widget("value")
|
|
|
|
self.name = self.glade.get_widget("name")
|
2003-03-23 01:56:44 +05:30
|
|
|
|
|
|
|
self.name.connect('changed',self.on_apply_clicked)
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
names = []
|
|
|
|
for person in self.db.getPersonMap().values():
|
|
|
|
lastname = person.getPrimaryName().getSurname()
|
|
|
|
if lastname not in names:
|
|
|
|
names.append(lastname)
|
|
|
|
|
|
|
|
names.sort()
|
2003-03-17 10:51:40 +05:30
|
|
|
self.autocomp = AutoComp.AutoCombo(self.glade.get_widget("nameList"),
|
|
|
|
names)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
if active_person:
|
|
|
|
n = active_person.getPrimaryName().getSurname()
|
|
|
|
self.name.set_text(n)
|
2004-02-06 01:23:02 +05:30
|
|
|
try:
|
|
|
|
se_text = soundex.soundex(n)
|
|
|
|
except UnicodeEncodeError:
|
|
|
|
se_text = soundex.soundex('')
|
|
|
|
self.value.set_text(se_text)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
self.name.set_text("")
|
|
|
|
|
|
|
|
self.glade.get_widget("soundEx").show()
|
|
|
|
|
|
|
|
def on_apply_clicked(self,obj):
|
2004-02-06 01:23:02 +05:30
|
|
|
try:
|
|
|
|
se_text = soundex.soundex(unicode(obj.get_text()))
|
|
|
|
except UnicodeEncodeError:
|
|
|
|
se_text = soundex.soundex('')
|
|
|
|
self.value.set_text(se_text)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
from Plugins import register_tool
|
|
|
|
|
|
|
|
register_tool(
|
|
|
|
runTool,
|
|
|
|
_("Generate SoundEx codes"),
|
|
|
|
category=_("Utilities"),
|
|
|
|
description=_("Generates SoundEx codes for names")
|
|
|
|
)
|