~rosco2/ubuntu/wily/gramps/bug-1492304

« back to all changes in this revision

Viewing changes to src/filters/MatchSndEx.py

  • Committer: Bazaar Package Importer
  • Author(s): James A. Treacy
  • Date: 2004-06-16 16:53:36 UTC
  • Revision ID: james.westby@ubuntu.com-20040616165336-kjzczqef4gnxrn2b
Tags: upstream-1.0.4
ImportĀ upstreamĀ versionĀ 1.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Gramps - a GTK+/GNOME based genealogy program
 
3
#
 
4
# Copyright (C) 2000  Donald N. Allingham
 
5
#
 
6
# This program is free software; you can redistribute it and/or modify
 
7
# it under the terms of the GNU General Public License as published by
 
8
# the Free Software Foundation; either version 2 of the License, or
 
9
# (at your option) any later version.
 
10
#
 
11
# This program is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
# GNU General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License
 
17
# along with this program; if not, write to the Free Software
 
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
#
 
20
 
 
21
"Names with same SoundEx code as ..."
 
22
 
 
23
import Filter
 
24
import soundex
 
25
from gettext import gettext as _
 
26
 
 
27
class MatchSndEx(Filter.Filter):
 
28
    "Names with same SoundEx code as ..."
 
29
 
 
30
    def __init__(self,text):
 
31
        self.sndex = soundex.soundex(text)
 
32
        Filter.Filter.__init__(self,text)
 
33
        
 
34
    def match(self,person):
 
35
        return self.sndex == soundex.soundex(person.getPrimaryName().getSurname())
 
36
 
 
37
#------------------------------------------------------------------------
 
38
#
 
39
 
40
#
 
41
#------------------------------------------------------------------------
 
42
Filter.register_filter(MatchSndEx,
 
43
                       description=_("Names with same SoundEx code as ..."),
 
44
                       label=_("Surname"),
 
45
                       qualifier=1)