From a767ec9a4a313d32ac4e9400c3f8c1f6762103cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sun, 8 Feb 2009 08:36:21 +0000 Subject: [PATCH] 2490: Migration : register new arg values on custom_filter.xml svn: r11910 --- src/Filters/Rules/Person/_HasGallery.py | 8 +++++ src/Filters/Rules/Person/_HavePhotos.py | 44 ------------------------- 2 files changed, 8 insertions(+), 44 deletions(-) delete mode 100644 src/Filters/Rules/Person/_HavePhotos.py diff --git a/src/Filters/Rules/Person/_HasGallery.py b/src/Filters/Rules/Person/_HasGallery.py index ab6a8091e..699346b91 100644 --- a/src/Filters/Rules/Person/_HasGallery.py +++ b/src/Filters/Rules/Person/_HasGallery.py @@ -42,3 +42,11 @@ class HavePhotos(HasGalleryBase): name = _('People with 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) diff --git a/src/Filters/Rules/Person/_HavePhotos.py b/src/Filters/Rules/Person/_HavePhotos.py deleted file mode 100644 index b9822bc73..000000000 --- a/src/Filters/Rules/Person/_HavePhotos.py +++ /dev/null @@ -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")