Added new soundex rule

svn: r1587
This commit is contained in:
Alex Roitman 2003-05-23 17:19:28 +00:00
parent d547f2d573
commit 1cc0a9e598

View File

@ -1,7 +1,7 @@
# #
# Gramps - a GTK+/GNOME based genealogy program # Gramps - a GTK+/GNOME based genealogy program
# #
# Copyright (C) 2000 Donald N. Allingham # Copyright (C) 2000-2003 Donald N. Allingham
# #
# This program is free software; you can redistribute it and/or modify # 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 # it under the terms of the GNU General Public License as published by
@ -30,9 +30,9 @@ import string
# constants # constants
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
IGNORE = "~!@#$%^&*()_+=-`[]\|;:'/?.,<>\" \t\f\v" IGNORE = "HW~!@#$%^&*()_+=-`[]\|;:'/?.,<>\" \t\f\v"
TABLE = string.maketrans('ABCDEFGHIJKLMNOPQRSTUVWXYZ', TABLE = string.maketrans('ABCDEFGIJKLMNOPQRSTUVXYZ',
'01230120022455012623010202') '012301202245501262301202')
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #