7860: Add new place HasTitle rule

This commit is contained in:
Nick Hall 2015-01-27 22:55:01 +00:00
parent 7ec60ae6a3
commit 938f38c077
2 changed files with 60 additions and 1 deletions

View File

@ -44,6 +44,7 @@ from ._matcheseventfilter import MatchesEventFilter
from ._matchessourceconfidence import MatchesSourceConfidence from ._matchessourceconfidence import MatchesSourceConfidence
from ._changedsince import ChangedSince from ._changedsince import ChangedSince
from ._hastag import HasTag from ._hastag import HasTag
from ._hastitle import HasTitle
editor_rule_list = [ editor_rule_list = [
AllPlaces, AllPlaces,
@ -64,5 +65,6 @@ editor_rule_list = [
InLatLonNeighborhood, InLatLonNeighborhood,
MatchesEventFilter, MatchesEventFilter,
ChangedSince, ChangedSince,
HasTag HasTag,
HasTitle
] ]

View File

@ -0,0 +1,57 @@
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2002-2006 Donald N. Allingham
# Copyright (C) 2015 Nick Hall
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
#-------------------------------------------------------------------------
#
# Standard Python modules
#
#-------------------------------------------------------------------------
from ....const import GRAMPS_LOCALE as glocale
_ = glocale.translation.sgettext
#-------------------------------------------------------------------------
#
# Gramps modules
#
#-------------------------------------------------------------------------
from .. import Rule
from ....display.place import displayer
#-------------------------------------------------------------------------
#
# HasTitle
#
#-------------------------------------------------------------------------
class HasTitle(Rule):
"""
Rule that checks for a place with a title
"""
labels = [_('Title:')]
name = _('Places matching a title')
description = _('Matches places with a particular title')
category = _('General filters')
allow_regex = True
def apply(self, db, place):
if not self.match_substring(0, displayer.display(db, place)):
return False
return True