-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add rule 'having note of type' for citation, event, family, person, p…
…lace and source.
- Loading branch information
Showing
13 changed files
with
387 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
# | ||
|
||
""" | ||
Rule that checks for a note of a particular type. | ||
""" | ||
|
||
# ------------------------------------------------------------------------- | ||
# | ||
# Gramps modules | ||
# | ||
# ------------------------------------------------------------------------- | ||
from ...const import GRAMPS_LOCALE as glocale | ||
from ...lib.notetype import NoteType | ||
from . import Rule | ||
|
||
_ = glocale.translation.gettext | ||
|
||
|
||
# ------------------------------------------------------------------------- | ||
# | ||
# HasType | ||
# | ||
# ------------------------------------------------------------------------- | ||
class HasNoteTypeBase(Rule): | ||
""" | ||
Objects having note of particular type. | ||
""" | ||
|
||
labels = [_("Note type:")] | ||
name = _("Objects with notes with the particular type") | ||
description = _("Matches notes with the particular type ") | ||
category = _("General filters") | ||
|
||
def __init__(self, arg, use_regex=False, use_case=False): | ||
super().__init__(arg, use_regex, use_case) | ||
self.note_type = None | ||
|
||
def prepare(self, db, user): | ||
""" | ||
Prepare the rule. Things we only want to do once. | ||
""" | ||
if self.list[0]: | ||
self.note_type = NoteType() | ||
self.note_type.set_from_xml_str(self.list[0]) | ||
|
||
def apply(self, db, obj): | ||
""" | ||
Apply the rule. Return True on a match. | ||
""" | ||
notelist = obj.get_note_list() | ||
for notehandle in notelist: | ||
note = db.get_note_from_handle(notehandle) | ||
if note.get_type() == self.note_type: | ||
return True | ||
return False | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# | ||
# Gramps - a GTK+/GNOME based genealogy program | ||
# | ||
# Copyright (C) 2002-2007 Donald N. Allingham | ||
# Copyright (C) 2007-2008 Brian G. Matherly | ||
# Copyright (C) 2008 Jerome Rapinat | ||
# Copyright (C) 2008 Benny Malengier | ||
# Copyright (C) 2011 Tim G L Lyons | ||
# | ||
# 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.gettext | ||
|
||
# ------------------------------------------------------------------------- | ||
# | ||
# Gramps modules | ||
# | ||
# ------------------------------------------------------------------------- | ||
from .._hasnotetypebase import HasNoteTypeBase | ||
|
||
|
||
# ------------------------------------------------------------------------- | ||
# "Sources having notes" | ||
# ------------------------------------------------------------------------- | ||
class HasNoteType(HasNoteTypeBase): | ||
"""Citations having note of particular type""" | ||
|
||
name = _("Citations having note of particular type") | ||
description = _("Matches citations having note of the particular type") | ||
category = _("Note filters") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# | ||
# Gramps - a GTK+/GNOME based genealogy program | ||
# | ||
# Copyright (C) 2002-2007 Donald N. Allingham | ||
# Copyright (C) 2007-2008 Brian G. Matherly | ||
# Copyright (C) 2008 Jerome Rapinat | ||
# Copyright (C) 2008 Benny Malengier | ||
# Copyright (C) 2011 Tim G L Lyons | ||
# | ||
# 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.gettext | ||
|
||
# ------------------------------------------------------------------------- | ||
# | ||
# Gramps modules | ||
# | ||
# ------------------------------------------------------------------------- | ||
from .._hasnotetypebase import HasNoteTypeBase | ||
|
||
|
||
# ------------------------------------------------------------------------- | ||
# "Sources having notes" | ||
# ------------------------------------------------------------------------- | ||
class HasNoteType(HasNoteTypeBase): | ||
"""Citations having note of particular type""" | ||
|
||
name = _("Events having note of particular type") | ||
description = _("Matches events having note of the particular type") | ||
category = _("Note filters") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# | ||
# Gramps - a GTK+/GNOME based genealogy program | ||
# | ||
# Copyright (C) 2002-2007 Donald N. Allingham | ||
# Copyright (C) 2007-2008 Brian G. Matherly | ||
# Copyright (C) 2008 Jerome Rapinat | ||
# Copyright (C) 2008 Benny Malengier | ||
# Copyright (C) 2011 Tim G L Lyons | ||
# | ||
# 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.gettext | ||
|
||
# ------------------------------------------------------------------------- | ||
# | ||
# Gramps modules | ||
# | ||
# ------------------------------------------------------------------------- | ||
from .._hasnotetypebase import HasNoteTypeBase | ||
|
||
|
||
# ------------------------------------------------------------------------- | ||
# "Sources having notes" | ||
# ------------------------------------------------------------------------- | ||
class HasNoteType(HasNoteTypeBase): | ||
"""Citations having note of particular type""" | ||
|
||
name = _("Families having note of particular type") | ||
description = _("Matches families having note of the particular type") | ||
category = _("Note filters") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# | ||
# Gramps - a GTK+/GNOME based genealogy program | ||
# | ||
# Copyright (C) 2002-2007 Donald N. Allingham | ||
# Copyright (C) 2007-2008 Brian G. Matherly | ||
# Copyright (C) 2008 Jerome Rapinat | ||
# Copyright (C) 2008 Benny Malengier | ||
# Copyright (C) 2011 Tim G L Lyons | ||
# | ||
# 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.gettext | ||
|
||
# ------------------------------------------------------------------------- | ||
# | ||
# Gramps modules | ||
# | ||
# ------------------------------------------------------------------------- | ||
from .._hasnotetypebase import HasNoteTypeBase | ||
|
||
|
||
# ------------------------------------------------------------------------- | ||
# "Sources having notes" | ||
# ------------------------------------------------------------------------- | ||
class HasNoteType(HasNoteTypeBase): | ||
"""Persons having note of particular type""" | ||
|
||
name = _("Persons having note of particular type") | ||
description = _("Matches persons having note of the particular type") | ||
category = _("Note filters") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.