0001938: Substring filter for notes does not work.
svn: r10324
This commit is contained in:
		@@ -6,8 +6,8 @@ pkgdata_PYTHON = \
 | 
				
			|||||||
	_AllNotes.py\
 | 
						_AllNotes.py\
 | 
				
			||||||
	_HasIdOf.py\
 | 
						_HasIdOf.py\
 | 
				
			||||||
	_HasMarkerOf.py\
 | 
						_HasMarkerOf.py\
 | 
				
			||||||
	_HasNoteMatchingSubstringOf.py\
 | 
						_MatchesSubstringOf.py\
 | 
				
			||||||
	_HasNoteRegexp.py\
 | 
						_MatchesRegexpOf.py\
 | 
				
			||||||
	_HasNote.py\
 | 
						_HasNote.py\
 | 
				
			||||||
	_HasReferenceCountOf.py\
 | 
						_HasReferenceCountOf.py\
 | 
				
			||||||
	_MatchesFilter.py\
 | 
						_MatchesFilter.py\
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,45 +1,63 @@
 | 
				
			|||||||
#
 | 
					#
 | 
				
			||||||
# Gramps - a GTK+/GNOME based genealogy program
 | 
					# Gramps - a GTK+/GNOME based genealogy program
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# Copyright (C) 2002-2006  Donald N. Allingham
 | 
					# Copyright (C) 2002-2006  Donald N. Allingham
 | 
				
			||||||
#
 | 
					# Copyright (C) 2008       Brian G. Matherly
 | 
				
			||||||
# 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
 | 
					# This program is free software; you can redistribute it and/or modify
 | 
				
			||||||
# the Free Software Foundation; either version 2 of the License, or
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
# (at your option) any later version.
 | 
					# 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
 | 
					# This program is distributed in the hope that it will be useful,
 | 
				
			||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
# GNU General Public License for more details.
 | 
					# 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
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 | 
					# along with this program; if not, write to the Free Software
 | 
				
			||||||
#
 | 
					# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
# $Id$
 | 
					
 | 
				
			||||||
 | 
					# $Id: _HasNoteRegexp.py 9912 2008-01-22 09:17:46Z acraphae $
 | 
				
			||||||
#-------------------------------------------------------------------------
 | 
					
 | 
				
			||||||
#
 | 
					#-------------------------------------------------------------------------
 | 
				
			||||||
# Standard Python modules
 | 
					#
 | 
				
			||||||
#
 | 
					# Standard Python modules
 | 
				
			||||||
#-------------------------------------------------------------------------
 | 
					#
 | 
				
			||||||
from gettext import gettext as _
 | 
					#-------------------------------------------------------------------------
 | 
				
			||||||
 | 
					import re
 | 
				
			||||||
#-------------------------------------------------------------------------
 | 
					from gettext import gettext as _
 | 
				
			||||||
#
 | 
					
 | 
				
			||||||
# GRAMPS modules
 | 
					#-------------------------------------------------------------------------
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
#-------------------------------------------------------------------------
 | 
					# GRAMPS modules
 | 
				
			||||||
from Filters.Rules._HasNoteRegexBase import HasNoteRegexBase
 | 
					#
 | 
				
			||||||
 | 
					#-------------------------------------------------------------------------
 | 
				
			||||||
#-------------------------------------------------------------------------
 | 
					from Filters.Rules import Rule
 | 
				
			||||||
# "Repos having notes that contain a substring"
 | 
					
 | 
				
			||||||
#-------------------------------------------------------------------------
 | 
					#-------------------------------------------------------------------------
 | 
				
			||||||
class HasNoteRegexp(HasNoteRegexBase):
 | 
					# "Repos having notes that contain a substring"
 | 
				
			||||||
 | 
					#-------------------------------------------------------------------------
 | 
				
			||||||
    name        = _('Notes having notes '
 | 
					class MatchesRegexpOf(Rule):
 | 
				
			||||||
                    'containing <regular expression>')
 | 
					
 | 
				
			||||||
    description = _("Matches notes whose notes contain text "
 | 
					    labels      = [ _('Regular expression:')]
 | 
				
			||||||
                    "matching a regular expression")
 | 
					    name        = _('Notes containing <regular expression>')
 | 
				
			||||||
 | 
					    description = _("Matches notes who contain text "
 | 
				
			||||||
 | 
					                    "matching a regular expression")
 | 
				
			||||||
 | 
					    category    = _('General filters')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    def __init__(self, list):
 | 
				
			||||||
 | 
					        Rule.__init__(self, list)
 | 
				
			||||||
 | 
					        
 | 
				
			||||||
 | 
					        try:
 | 
				
			||||||
 | 
					            self.match = re.compile(list[0], re.I|re.U|re.L)
 | 
				
			||||||
 | 
					        except:
 | 
				
			||||||
 | 
					            self.match = re.compile('')
 | 
				
			||||||
 | 
					            
 | 
				
			||||||
 | 
					    def apply(self, db, note):
 | 
				
			||||||
 | 
					        """ Apply the filter """
 | 
				
			||||||
 | 
					        text = unicode(note.get())
 | 
				
			||||||
 | 
					        if self.match.match(text) != None:
 | 
				
			||||||
 | 
					            return True
 | 
				
			||||||
 | 
					        return False
 | 
				
			||||||
@@ -2,6 +2,7 @@
 | 
				
			|||||||
# Gramps - a GTK+/GNOME based genealogy program
 | 
					# Gramps - a GTK+/GNOME based genealogy program
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# Copyright (C) 2002-2006  Donald N. Allingham
 | 
					# Copyright (C) 2002-2006  Donald N. Allingham
 | 
				
			||||||
 | 
					# Copyright (C) 2008       Brian G. Matherly
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# 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
 | 
				
			||||||
@@ -32,14 +33,23 @@ from gettext import gettext as _
 | 
				
			|||||||
# GRAMPS modules
 | 
					# GRAMPS modules
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
#-------------------------------------------------------------------------
 | 
					#-------------------------------------------------------------------------
 | 
				
			||||||
from Filters.Rules._HasNoteSubstrBase import HasNoteSubstrBase
 | 
					from Filters.Rules import Rule
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#-------------------------------------------------------------------------
 | 
					#-------------------------------------------------------------------------
 | 
				
			||||||
# "Events having notes that contain a substring"
 | 
					# "Events having notes that contain a substring"
 | 
				
			||||||
#-------------------------------------------------------------------------
 | 
					#-------------------------------------------------------------------------
 | 
				
			||||||
class HasNoteMatchingSubstringOf(HasNoteSubstrBase):
 | 
					class MatchesSubstringOf(Rule):
 | 
				
			||||||
    """Notes having notes containing <subtring>"""
 | 
					    """Notes having notes containing <subtring>"""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    name        = _('Notes having notes containing <substring>')
 | 
					    labels      = [ _('Substring:')]
 | 
				
			||||||
    description = _("Matches notes whose notes contain text "
 | 
					    name        = _('Notes containing <substring>')
 | 
				
			||||||
 | 
					    description = _("Matches notes who contain text "
 | 
				
			||||||
                    "matching a substring")
 | 
					                    "matching a substring")
 | 
				
			||||||
 | 
					    category    = _('General filters')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    def apply(self, db, note):
 | 
				
			||||||
 | 
					        """ Apply the filter """
 | 
				
			||||||
 | 
					        text = unicode(note.get())
 | 
				
			||||||
 | 
					        if text.upper().find(self.list[0].upper()) != -1:
 | 
				
			||||||
 | 
					            return True
 | 
				
			||||||
 | 
					        return False
 | 
				
			||||||
@@ -29,8 +29,8 @@ from _AllNotes import AllNotes
 | 
				
			|||||||
from _HasIdOf import HasIdOf
 | 
					from _HasIdOf import HasIdOf
 | 
				
			||||||
from _HasMarkerOf import HasMarkerOf
 | 
					from _HasMarkerOf import HasMarkerOf
 | 
				
			||||||
from _RegExpIdOf import RegExpIdOf
 | 
					from _RegExpIdOf import RegExpIdOf
 | 
				
			||||||
from _HasNoteRegexp import HasNoteRegexp
 | 
					from _MatchesRegexpOf import MatchesRegexpOf
 | 
				
			||||||
from _HasNoteMatchingSubstringOf import HasNoteMatchingSubstringOf
 | 
					from _MatchesSubstringOf import MatchesSubstringOf
 | 
				
			||||||
from _HasReferenceCountOf import HasReferenceCountOf
 | 
					from _HasReferenceCountOf import HasReferenceCountOf
 | 
				
			||||||
from _NotePrivate import NotePrivate
 | 
					from _NotePrivate import NotePrivate
 | 
				
			||||||
from _MatchesFilter import MatchesFilter
 | 
					from _MatchesFilter import MatchesFilter
 | 
				
			||||||
@@ -42,8 +42,8 @@ editor_rule_list = [
 | 
				
			|||||||
    HasMarkerOf,
 | 
					    HasMarkerOf,
 | 
				
			||||||
    RegExpIdOf,
 | 
					    RegExpIdOf,
 | 
				
			||||||
    HasNote,
 | 
					    HasNote,
 | 
				
			||||||
    HasNoteRegexp,
 | 
					    MatchesRegexpOf,
 | 
				
			||||||
    HasNoteMatchingSubstringOf,
 | 
					    MatchesSubstringOf,
 | 
				
			||||||
    HasReferenceCountOf,
 | 
					    HasReferenceCountOf,
 | 
				
			||||||
    NotePrivate,
 | 
					    NotePrivate,
 | 
				
			||||||
    MatchesFilter,
 | 
					    MatchesFilter,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user