New Quick View showing all names for all people; need to figure out where to put these QV's which don't require a specific row

svn: r13074
This commit is contained in:
Doug Blank 2009-08-19 14:51:02 +00:00
parent 5f024d5d2b
commit 850fac483f

View File

@ -0,0 +1,93 @@
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2009 Douglas S. Blank
#
# 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$
#
#
"""
Display all names of all people
"""
from Simple import SimpleAccess, SimpleDoc, SimpleTable
from gen.plug import PluginManager
from Utils import media_path_full
from QuickReports import run_quick_report_by_name_direct
from ReportBase import CATEGORY_QR_PERSON, CATEGORY_QR_FAMILY
from BasicUtils import name_displayer as nd
from gen.lib import Person
import DateHandler
import posixpath
from gettext import gettext as _
from gettext import ngettext
def run(database, document, *args, **kwargs):
"""
Loops through the families that the person is a child in, and display
the information about the other children.
"""
# setup the simple access functions
sdb = SimpleAccess(database)
sdoc = SimpleDoc(document)
stab = SimpleTable(sdb)
# display the title
sdoc.title(_("All Names of All People"))
sdoc.paragraph("")
matches = 0
stab.columns(_("Name"), _("Primary Name"), _("Name Type"))
people = database.iter_person_handles()
names = [] # name, person
for person_handle in people:
person = database.get_person_from_handle(person_handle)
primary_name = person.get_primary_name()
if primary_name:
names += [(nd.display_name(primary_name),
person,
str(primary_name.get_type()))]
names += [(nd.display_name(name),
person,
str(name.get_type())) for name in
person.get_alternate_names()]
names.sort()
matches = 0
for (name, person, name_type) in names:
stab.row(name, person, name_type)
matches += 1
sdoc.paragraph(_("Total names %d") % matches)
sdoc.paragraph("")
stab.write(sdoc)
#------------------------------------------------------------------------
#
#
#
#------------------------------------------------------------------------
pmgr = PluginManager.get_instance()
pmgr.register_quick_report(
name = 'allnames',
category = CATEGORY_QR_PERSON,
run_func = run,
translated_name = _("All Names of All People"),
status = _("Stable"),
description= _("All names of All people"),
author_name="Douglas S. Blank",
author_email="doug.blank@gmail.com"
)