6014: Citation view crash
svn: r20323
This commit is contained in:
parent
6ffdacc185
commit
482d291a4e
@ -632,6 +632,7 @@ src/Filters/Rules/Source/_RegExpIdOf.py
|
||||
src/Filters/Rules/Citation/_AllCitations.py
|
||||
src/Filters/Rules/Citation/_ChangedSince.py
|
||||
src/Filters/Rules/Citation/_CitationPrivate.py
|
||||
src/Filters/Rules/Citation/_HasCitation.py
|
||||
src/Filters/Rules/Citation/_HasGallery.py
|
||||
src/Filters/Rules/Citation/_HasIdOf.py
|
||||
src/Filters/Rules/Citation/_HasNote.py
|
||||
|
@ -5,6 +5,7 @@ pkgpythondir = $(datadir)/@PACKAGE@/Filters/Rules/Citation
|
||||
|
||||
pkgpython_PYTHON = \
|
||||
__init__.py \
|
||||
_HasCitation.py \
|
||||
_AllCitations.py \
|
||||
_ChangedSince.py \
|
||||
_CitationPrivate.py \
|
||||
|
75
src/Filters/Rules/Citation/_HasCitation.py
Normal file
75
src/Filters/Rules/Citation/_HasCitation.py
Normal file
@ -0,0 +1,75 @@
|
||||
#
|
||||
# Gramps - a GTK+/GNOME based genealogy program
|
||||
#
|
||||
# Copyright (C) 2002-2006 Donald N. Allingham
|
||||
#
|
||||
# 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
|
||||
#
|
||||
|
||||
# $Id: _hascitation.py 20271 2012-08-27 09:39:02Z bmcage $
|
||||
|
||||
"""
|
||||
Filter rule to match citation data.
|
||||
"""
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# Standard Python modules
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
from gen.ggettext import gettext as _
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# GRAMPS modules
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
import DateHandler
|
||||
from Filters.Rules._Rule import Rule
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# HasCitation
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
class HasCitation(Rule):
|
||||
"""Rule that checks for a citations with a particular value"""
|
||||
|
||||
labels = [ _('Volume/Page:'),
|
||||
_('Date:'),
|
||||
_('Confidence level:')]
|
||||
name = _('Citations matching parameters')
|
||||
description = _("Matches citations with particular parameters")
|
||||
|
||||
def prepare(self, db):
|
||||
self.date = None
|
||||
try:
|
||||
if self.list[1]:
|
||||
self.date = DateHandler.parser.parse(self.list[1])
|
||||
except:
|
||||
pass
|
||||
|
||||
def apply(self, dbase, citation):
|
||||
if not self.match_substring(0, citation.get_page()):
|
||||
return False
|
||||
|
||||
if self.date:
|
||||
if not citation.get_date_object().match(self.date):
|
||||
return False
|
||||
|
||||
if self.list[2]:
|
||||
if citation.get_confidence_level() < int(self.list[2]):
|
||||
return False
|
||||
|
||||
return True
|
@ -26,8 +26,7 @@
|
||||
Package providing filter rules for GRAMPS.
|
||||
"""
|
||||
|
||||
from Filters.Rules._HasCitationBase import HasCitationBase as HasCitation
|
||||
|
||||
from _HasCitation import HasCitation
|
||||
from _AllCitations import AllCitations
|
||||
from _ChangedSince import ChangedSince
|
||||
from _CitationPrivate import CitationPrivate
|
||||
|
Loading…
Reference in New Issue
Block a user