2490: Migration : register new arg values on custom_filter.xml

svn: r11910
This commit is contained in:
Jérôme Rapinat 2009-02-08 08:36:21 +00:00
parent ed56bb9be5
commit a767ec9a4a
2 changed files with 8 additions and 44 deletions

View File

@ -42,3 +42,11 @@ class HavePhotos(HasGalleryBase):
name = _('People with <count> media')
description = _("Matches people with a certain number of items in the gallery")
def __init__(self, arg):
# Upgrade from pre 3.1 HasPhotos filter, use defaults that correspond
# Previous filter had 0 arguments
if len(arg) == 0:
HasGalleryBase.__init__(self, ["0", 'greater than'])
else:
HasGalleryBase.__init__(self, arg)

View File

@ -1,44 +0,0 @@
#
# Gramps - a GTK+/GNOME based genealogy program
#
# 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
# 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$
#-------------------------------------------------------------------------
#
# Standard Python modules
#
#-------------------------------------------------------------------------
from gettext import gettext as _
#-------------------------------------------------------------------------
#
# GRAMPS modules
#
#-------------------------------------------------------------------------
from Filters.Rules._HasGalleryBase import HasGalleryBase
#-------------------------------------------------------------------------
# "People who have images"
#-------------------------------------------------------------------------
class HavePhotos(HasGalleryBase):
"""Rule that checks for people who have Media object reference"""
name = _('People with images')
description = _("Matches people with images in the gallery")