Bumped trunk to 4.1, updated plugins, requires setup.py build rather than copy of const.py.in, show svn number in version number

svn: r20919
This commit is contained in:
Doug Blank 2012-12-31 22:51:11 +00:00
parent a54c1badb7
commit 91173ba2a8
25 changed files with 291 additions and 310 deletions

View File

@ -1,3 +1,4 @@
#! /usr/bin/env python
#
# Gramps - a GTK+/GNOME based genealogy program
#

View File

@ -43,6 +43,7 @@ import uuid
#
#-------------------------------------------------------------------------
from .ggettext import sgettext as _
from .svn_revision import get_svn_revision
#-------------------------------------------------------------------------
#
@ -50,11 +51,12 @@ from .ggettext import sgettext as _
#
#-------------------------------------------------------------------------
PROGRAM_NAME = "Gramps"
if "@VERSIONSTRING@" == "@" + "VERSIONSTRING" + "@":
VERSION = "4.0.0"
else:
VERSION = "@VERSIONSTRING@"
VERSION_TUPLE = (4, 0, 0)
VERSION = "@VERSIONSTRING@"
if VERSION == "@" + "VERSIONSTRING" + "@":
raise Exception("Please run 'python setup.py build'")
VERSION_TUPLE = tuple(map(int, VERSION.split(".")))
major_version = "%s.%s" % (VERSION_TUPLE[0], VERSION_TUPLE[1])
VERSION += get_svn_revision()
#-------------------------------------------------------------------------
#
@ -65,11 +67,11 @@ URL_HOMEPAGE = "http://gramps-project.org/"
URL_MAILINGLIST = "http://sourceforge.net/mail/?group_id=25770"
URL_BUGTRACKER = "http://bugs.gramps-project.org/bug_report_advanced_page.php"
URL_WIKISTRING = "http://gramps-project.org/wiki/index.php?title="
URL_MANUAL_PAGE = "Gramps_4.0_Wiki_Manual"
URL_MANUAL_PAGE = "Gramps_%s_Wiki_Manual" % major_version
WIKI_FAQ = "FAQ"
WIKI_KEYBINDINGS = "Gramps_4.0_Wiki_Manual_-_Keybindings"
WIKI_EXTRAPLUGINS= "4.0_Addons"
WIKI_EXTRAPLUGINS_RAWDATA = "Plugins4.0&action=raw"
WIKI_KEYBINDINGS = "Gramps_%s_Wiki_Manual_-_Keybindings" % major_version
WIKI_EXTRAPLUGINS= "%s_Addons" % major_version
WIKI_EXTRAPLUGINS_RAWDATA = "Plugins%s&action=raw" % major_version
#-------------------------------------------------------------------------
#

View File

@ -745,7 +745,8 @@ class DbBsddbRead(DbReadBase, Callback):
return self.get_from_handle(handle, Tag, self.tag_map)
def __get_obj_from_gramps_id(self, val, tbl, class_, prim_tbl):
if isinstance(tbl, dict): return None ## trying to get object too early
if isinstance(tbl, dict):
return None ## trying to get object too early
if isinstance(val, UNITYPE):
val = val.encode('utf-8')
try:
@ -1514,6 +1515,8 @@ class DbBsddbRead(DbReadBase, Callback):
"""
Helper method for get_raw_<object>_data methods
"""
if table is None:
return None ## trying to get object too early
if isinstance(handle, UNITYPE):
handle = handle.encode('utf-8')
try:

View File

@ -0,0 +1,42 @@
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2012 Doug Blank <doug.blank@gmail.com>
#
# 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$
import sys
import subprocess
if sys.version_info[0] < 3:
cuni = unicode
else:
def to_utf8(s):
return s.decode("utf-8")
cuni = to_utf8
def get_svn_revision(path=""):
stdout = ""
try:
p = subprocess.Popen("svnversion -n \"%s\"" % path, shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(stdout, stderr) = p.communicate()
except:
pass
return "-r" + cuni(stdout) if stdout else ""

View File

@ -1,67 +0,0 @@
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2012 Doug Blank <doug.blank@gmail.com>
#
# 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$
"""
Based on the version from Django, a Python ORM.
"""
import re
import os
from ..constfunc import cuni
def get_svn_revision(path=None):
"""
Returns the SVN revision in the form SVN-XXXX,
where XXXX is the revision number.
Returns "" if anything goes wrong, such as an unexpected
format of internal SVN files.
If path is provided, it should be a directory whose SVN info you
want to inspect. If it's not provided, this will use the directory
where this file resides.
"""
rev = None
if path is None:
path = os.path.dirname(__file__)
entries_path = '%s/.svn/entries' % path
try:
entries = open(entries_path, 'r').read()
except IOError:
pass
else:
# Versions >= 7 of the entries file are flat text. The first line is
# the version number. The next set of digits after 'dir' is the revision
if re.match('(\d+)', entries):
rev_match = re.search('\d+\s+dir\s+(\d+)', entries)
if rev_match:
rev = rev_match.groups()[0]
# Older XML versions of the file specify revision as an attribute of
# the first entries node.
else:
from xml.dom import minidom
dom = minidom.parse(entries_path)
rev = dom.getElementsByTagName('entry')[0].getAttribute('revision')
if rev:
return cuni('SVN-%s' % rev)
return cuni('')

View File

@ -31,7 +31,7 @@ plg.id = 'asciidoc'
plg.name = _("Plain Text")
plg.description = _("Generates documents in plain text format (.txt).")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'asciidoc.py'
plg.ptype = DOCGEN
@ -52,7 +52,7 @@ plg.id = 'gtkprint'
plg.name = _('Print...')
plg.description = _("Generates documents and prints them directly.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'gtkprint.py'
plg.ptype = DOCGEN
@ -73,7 +73,7 @@ plg.id = 'htmldoc'
plg.name = _('HTML')
plg.description = _("Generates documents in HTML format.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'htmldoc.py'
plg.ptype = DOCGEN
@ -94,7 +94,7 @@ plg.id = 'latexdoc'
plg.name = _('LaTeX')
plg.description = _("Generates documents in LaTeX format.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'latexdoc.py'
plg.ptype = DOCGEN
@ -116,7 +116,7 @@ plg.name = _('OpenDocument Text')
plg.description = _("Generates documents in OpenDocument "
"Text format (.odt).")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'odfdoc.py'
plg.ptype = DOCGEN
@ -137,7 +137,7 @@ plg.id = 'pdfdoc'
plg.name = _('PDF document')
plg.description = _("Generates documents in PDF format (.pdf).")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'pdfdoc.py'
plg.ptype = DOCGEN
@ -158,7 +158,7 @@ plg.id = 'psdrawdoc'
plg.name = _('PostScript')
plg.description = _("Generates documents in PostScript format (.ps).")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'psdrawdoc.py'
plg.ptype = DOCGEN
@ -179,7 +179,7 @@ plg.id = 'rftdoc'
plg.name = _('RTF document')
plg.description = _("Generates documents in Rich Text format (.rtf).")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rtfdoc.py'
plg.ptype = DOCGEN
@ -201,7 +201,7 @@ plg.name = _('SVG document')
plg.description = _("Generates documents in Scalable "
"Vector Graphics format (.svg).")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'svgdrawdoc.py'
plg.ptype = DOCGEN

View File

@ -32,7 +32,7 @@ plg.id = 'ancestor_chart,BKI'
plg.name = _("Ancestor Chart")
plg.description = _("Produces a graphical ancestral chart")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'ancestortree.py'
plg.ptype = REPORT
@ -48,7 +48,7 @@ plg.id = 'ancestor_chart'
plg.name = _("Ancestor Tree")
plg.description = _("Produces a graphical ancestral tree")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'ancestortree.py'
plg.ptype = REPORT
@ -70,7 +70,7 @@ plg.id = 'calendar'
plg.name = _("Calendar")
plg.description = _("Produces a graphical calendar")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'calendarreport.py'
plg.ptype = REPORT
@ -92,7 +92,7 @@ plg.id = 'descend_chart,BKI'
plg.name = _("Descendant Chart")
plg.description = _("Produces a graphical descendant chart")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'descendtree.py'
plg.ptype = REPORT
@ -108,7 +108,7 @@ plg.id = 'descend_chart'
plg.name = _("Descendant Tree")
plg.description = _("Produces a graphical descendant tree")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'descendtree.py'
plg.ptype = REPORT
@ -134,7 +134,7 @@ plg.status = STABLE
plg.fname = 'descendtree.py'
plg.ptype = REPORT
plg.category = CATEGORY_DRAW
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.authors = ["Craig J. Anderson"]
plg.authors_email = ["ander882@hotmail.com"]
plg.require_active = True
@ -151,7 +151,7 @@ plg.status = STABLE
plg.fname = 'descendtree.py'
plg.ptype = REPORT
plg.category = CATEGORY_DRAW
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.authors = ["Craig J. Anderson"]
plg.authors_email = ["ander882@hotmail.com"]
plg.require_active = True
@ -170,7 +170,7 @@ plg.id = 'fan_chart'
plg.name = _("Fan Chart")
plg.description = _("Produces fan charts")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'fanchart.py'
plg.ptype = REPORT
@ -193,7 +193,7 @@ plg.name = _("Statistics Charts")
plg.description = _("Produces statistical bar and pie charts of the people "
"in the database")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'statisticschart.py'
plg.ptype = REPORT
@ -216,7 +216,7 @@ plg.id = 'timeline'
plg.name = _("Timeline Chart")
plg.description = _("Produces a timeline chart.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'timeline.py'
plg.ptype = REPORT

View File

@ -32,7 +32,7 @@ plg.name = _("Comma Separated Values Spreadsheet (CSV)")
plg.name_accell = _("Comma _Separated Values Spreadsheet (CSV)")
plg.description = _("CSV is a common spreadsheet format.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'exportcsv.py'
plg.ptype = EXPORT
@ -53,7 +53,7 @@ plg.name = _('Web Family Tree')
plg.name_accell = _('_Web Family Tree')
plg.description = _("Web Family Tree format")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'exportftree.py'
plg.ptype = EXPORT
@ -75,7 +75,7 @@ plg.name_accell = _('GE_DCOM')
plg.description = _('GEDCOM is used to transfer data between genealogy programs. '
'Most genealogy software will accept a GEDCOM file as input.')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'exportgedcom.py'
plg.ptype = EXPORT
@ -96,7 +96,7 @@ plg.name = _('GeneWeb')
plg.name_accell = _('_GeneWeb')
plg.description = _('GeneWeb is a web based genealogy program.')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'exportgeneweb.py'
plg.ptype = EXPORT
@ -118,7 +118,7 @@ plg.name_accell = _('Gra_mps XML Package (family tree and media)')
plg.description = _('Gramps package is an archived XML family tree together '
'with the media object files.')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'exportpkg.py'
plg.ptype = EXPORT
@ -141,7 +141,7 @@ plg.description = _('Gramps XML export is a complete archived XML backup of a'
' Gramps family tree without the media object files.'
' Suitable for backup purposes.')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'exportxml.py'
plg.ptype = EXPORT
@ -162,7 +162,7 @@ plg.name = _('vCalendar')
plg.name_accell = _('vC_alendar')
plg.description = _('vCalendar is used in many calendaring and PIM applications.')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'exportvcalendar.py'
plg.ptype = EXPORT
@ -183,7 +183,7 @@ plg.name = _('vCard')
plg.name_accell = _('_vCard')
plg.description = _('vCard is used in many addressbook and pim applications.')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'exportvcard.py'
plg.ptype = EXPORT

View File

@ -33,7 +33,7 @@ register(GRAMPLET,
name=_("Age on Date"),
description = _("Gramplet showing ages of living people on a specific date"),
version="2.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="ageondategramplet.py",
height=200,
@ -54,7 +54,7 @@ register(GRAMPLET,
detached_width = 600,
detached_height = 450,
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
register(GRAMPLET,
@ -70,7 +70,7 @@ register(GRAMPLET,
detached_width = 325,
detached_height = 250,
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
navtypes=["Person"],
)
@ -84,7 +84,7 @@ register(GRAMPLET,
gramplet = 'CalendarGramplet',
gramplet_title=_("Calendar"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
register(GRAMPLET,
@ -100,7 +100,7 @@ register(GRAMPLET,
detached_width = 500,
detached_height = 500,
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
navtypes=["Person"],
)
@ -117,7 +117,7 @@ register(GRAMPLET,
detached_width = 475,
gramplet_title=_("Fan Chart"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
navtypes=["Person"],
)
@ -134,7 +134,7 @@ register(GRAMPLET,
detached_width = 475,
gramplet_title=_("Descendant Fan"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
navtypes=["Person"],
)
@ -148,7 +148,7 @@ register(GRAMPLET,
gramplet = 'FAQGramplet',
gramplet_title=_("FAQ"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
register(GRAMPLET,
@ -162,7 +162,7 @@ register(GRAMPLET,
gramplet = 'GivenNameCloudGramplet',
gramplet_title=_("Given Name Cloud"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
register(GRAMPLET,
@ -178,7 +178,7 @@ register(GRAMPLET,
detached_width = 600,
detached_height = 400,
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
navtypes=["Person"],
)
@ -195,7 +195,7 @@ register(GRAMPLET,
detached_width = 600,
detached_height = 400,
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
register(GRAMPLET,
@ -210,7 +210,7 @@ register(GRAMPLET,
detached_width = 250,
detached_height = 300,
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
navtypes=["Person"],
)
@ -225,7 +225,7 @@ register(GRAMPLET,
gramplet = 'LogGramplet',
gramplet_title=_("Session Log"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
register(GRAMPLET,
@ -239,7 +239,7 @@ register(GRAMPLET,
gramplet = 'StatsGramplet',
gramplet_title=_("Statistics"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
register(GRAMPLET,
@ -253,7 +253,7 @@ register(GRAMPLET,
gramplet = 'SurnameCloudGramplet',
gramplet_title=_("Surname Cloud"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
register(GRAMPLET,
@ -267,7 +267,7 @@ register(GRAMPLET,
gramplet = 'TODOGramplet',
gramplet_title=_("TODO List"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
register(GRAMPLET,
@ -280,7 +280,7 @@ register(GRAMPLET,
gramplet = 'TopSurnamesGramplet',
gramplet_title=_("Top Surnames"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
register(GRAMPLET,
@ -294,7 +294,7 @@ register(GRAMPLET,
gramplet = 'WelcomeGramplet',
gramplet_title=_("Welcome to Gramps!"),
version="1.0.1",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
register(GRAMPLET,
@ -308,7 +308,7 @@ register(GRAMPLET,
gramplet = 'WhatNextGramplet',
gramplet_title = _("What's Next?"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
)
#------------------------------------------------------------------------
@ -325,7 +325,7 @@ register(GRAMPLET,
detached_width = 510,
detached_height = 550,
version = '1.5.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = "editexifmetadata.py",
help_url = "Edit Image Exif Metadata",
@ -342,7 +342,7 @@ register(GRAMPLET,
name=_("Person Details"),
description = _("Gramplet showing details of a person"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="persondetails.py",
height=200,
@ -356,7 +356,7 @@ register(GRAMPLET,
name=_("Repository Details"),
description = _("Gramplet showing details of a repository"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="repositorydetails.py",
height=200,
@ -370,7 +370,7 @@ register(GRAMPLET,
name=_("Place Details"),
description = _("Gramplet showing details of a place"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="placedetails.py",
height=200,
@ -384,7 +384,7 @@ register(GRAMPLET,
name=_("Media Preview"),
description = _("Gramplet showing a preview of a media object"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="mediapreview.py",
height=200,
@ -408,7 +408,7 @@ if available:
name = _("Metadata Viewer"),
description = _("Gramplet showing metadata for a media object"),
version = "1.0.0",
gramps_target_version = "4.0",
gramps_target_version = "4.1",
status = STABLE,
fname = "metadataviewer.py",
height = 200,
@ -422,7 +422,7 @@ register(GRAMPLET,
name=_("Person Residence"),
description = _("Gramplet showing residence events for a person"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="personresidence.py",
height=200,
@ -436,7 +436,7 @@ register(GRAMPLET,
name=_("Person Events"),
description = _("Gramplet showing the events for a person"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="events.py",
height=200,
@ -450,7 +450,7 @@ register(GRAMPLET,
name=_("Family Events"),
description = _("Gramplet showing the events for a family"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="events.py",
height=200,
@ -464,7 +464,7 @@ register(GRAMPLET,
name=_("Person Gallery"),
description = _("Gramplet showing media objects for a person"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="gallery.py",
height=200,
@ -478,7 +478,7 @@ register(GRAMPLET,
name=_("Family Gallery"),
description = _("Gramplet showing media objects for a family"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="gallery.py",
height=200,
@ -492,7 +492,7 @@ register(GRAMPLET,
name=_("Event Gallery"),
description = _("Gramplet showing media objects for an event"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="gallery.py",
height=200,
@ -506,7 +506,7 @@ register(GRAMPLET,
name=_("Place Gallery"),
description = _("Gramplet showing media objects for a place"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="gallery.py",
height=200,
@ -520,7 +520,7 @@ register(GRAMPLET,
name=_("Source Gallery"),
description = _("Gramplet showing media objects for a source"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="gallery.py",
height=200,
@ -534,7 +534,7 @@ register(GRAMPLET,
name=_("Citation Gallery"),
description = _("Gramplet showing media objects for a citation"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="gallery.py",
height=200,
@ -548,7 +548,7 @@ register(GRAMPLET,
name=_("Person Attributes"),
description = _("Gramplet showing the attributes of a person"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="attributes.py",
height=200,
@ -562,7 +562,7 @@ register(GRAMPLET,
name=_("Event Attributes"),
description = _("Gramplet showing the attributes of an event"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="attributes.py",
height=200,
@ -576,7 +576,7 @@ register(GRAMPLET,
name=_("Family Attributes"),
description = _("Gramplet showing the attributes of a family"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="attributes.py",
height=200,
@ -590,7 +590,7 @@ register(GRAMPLET,
name=_("Media Attributes"),
description = _("Gramplet showing the attributes of a media object"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="attributes.py",
height=200,
@ -604,7 +604,7 @@ register(GRAMPLET,
name=_("Person Notes"),
description = _("Gramplet showing the notes for a person"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="notes.py",
height=200,
@ -618,7 +618,7 @@ register(GRAMPLET,
name=_("Event Notes"),
description = _("Gramplet showing the notes for an event"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="notes.py",
height=200,
@ -632,7 +632,7 @@ register(GRAMPLET,
name=_("Family Notes"),
description = _("Gramplet showing the notes for a family"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="notes.py",
height=200,
@ -646,7 +646,7 @@ register(GRAMPLET,
name=_("Place Notes"),
description = _("Gramplet showing the notes for a place"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="notes.py",
height=200,
@ -660,7 +660,7 @@ register(GRAMPLET,
name=_("Source Notes"),
description = _("Gramplet showing the notes for a source"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="notes.py",
height=200,
@ -674,7 +674,7 @@ register(GRAMPLET,
name=_("Citation Notes"),
description = _("Gramplet showing the notes for a citation"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="notes.py",
height=200,
@ -688,7 +688,7 @@ register(GRAMPLET,
name=_("Repository Notes"),
description = _("Gramplet showing the notes for a repository"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="notes.py",
height=200,
@ -702,7 +702,7 @@ register(GRAMPLET,
name=_("Media Notes"),
description = _("Gramplet showing the notes for a media object"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="notes.py",
height=200,
@ -716,7 +716,7 @@ register(GRAMPLET,
name=_("Person Citations"),
description = _("Gramplet showing the citations for a person"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="citations.py",
height=200,
@ -730,7 +730,7 @@ register(GRAMPLET,
name=_("Event Citations"),
description = _("Gramplet showing the citations for an event"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="citations.py",
height=200,
@ -744,7 +744,7 @@ register(GRAMPLET,
name=_("Family Citations"),
description = _("Gramplet showing the citations for a family"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="citations.py",
height=200,
@ -758,7 +758,7 @@ register(GRAMPLET,
name=_("Place Citations"),
description = _("Gramplet showing the citations for a place"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="citations.py",
height=200,
@ -772,7 +772,7 @@ register(GRAMPLET,
name=_("Media Citations"),
description = _("Gramplet showing the citations for a media object"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="citations.py",
height=200,
@ -786,7 +786,7 @@ register(GRAMPLET,
name=_("Person Children"),
description = _("Gramplet showing the children of a person"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="children.py",
height=200,
@ -800,7 +800,7 @@ register(GRAMPLET,
name=_("Family Children"),
description = _("Gramplet showing the children of a family"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="children.py",
height=200,
@ -814,7 +814,7 @@ register(GRAMPLET,
name=_("Person Backlinks"),
description = _("Gramplet showing the backlinks for a person"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="backlinks.py",
height=200,
@ -828,7 +828,7 @@ register(GRAMPLET,
name=_("Event Backlinks"),
description = _("Gramplet showing the backlinks for an event"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="backlinks.py",
height=200,
@ -842,7 +842,7 @@ register(GRAMPLET,
name=_("Family Backlinks"),
description = _("Gramplet showing the backlinks for a family"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="backlinks.py",
height=200,
@ -856,7 +856,7 @@ register(GRAMPLET,
name=_("Place Backlinks"),
description = _("Gramplet showing the backlinks for a place"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="backlinks.py",
height=200,
@ -870,7 +870,7 @@ register(GRAMPLET,
name=_("Source Backlinks"),
description = _("Gramplet showing the backlinks for a source"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="backlinks.py",
height=200,
@ -884,7 +884,7 @@ register(GRAMPLET,
name=_("Citation Backlinks"),
description = _("Gramplet showing the backlinks for a citation"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="backlinks.py",
height=200,
@ -898,7 +898,7 @@ register(GRAMPLET,
name=_("Repository Backlinks"),
description = _("Gramplet showing the backlinks for a repository"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="backlinks.py",
height=200,
@ -912,7 +912,7 @@ register(GRAMPLET,
name=_("Media Backlinks"),
description = _("Gramplet showing the backlinks for a media object"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="backlinks.py",
height=200,
@ -926,7 +926,7 @@ register(GRAMPLET,
name=_("Note Backlinks"),
description = _("Gramplet showing the backlinks for a note"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="backlinks.py",
height=200,
@ -940,7 +940,7 @@ register(GRAMPLET,
name=_("Person Filter"),
description = _("Gramplet providing a person filter"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="filter.py",
height=200,
@ -954,7 +954,7 @@ register(GRAMPLET,
name=_("Family Filter"),
description = _("Gramplet providing a family filter"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="filter.py",
height=200,
@ -968,7 +968,7 @@ register(GRAMPLET,
name=_("Event Filter"),
description = _("Gramplet providing an event filter"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="filter.py",
height=200,
@ -982,7 +982,7 @@ register(GRAMPLET,
name=_("Source Filter"),
description = _("Gramplet providing a source filter"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="filter.py",
height=200,
@ -996,7 +996,7 @@ register(GRAMPLET,
name=_("Citation Filter"),
description = _("Gramplet providing a citation filter"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="filter.py",
height=200,
@ -1010,7 +1010,7 @@ register(GRAMPLET,
name=_("Place Filter"),
description = _("Gramplet providing a place filter"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="filter.py",
height=200,
@ -1024,7 +1024,7 @@ register(GRAMPLET,
name=_("Media Filter"),
description = _("Gramplet providing a media filter"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="filter.py",
height=200,
@ -1038,7 +1038,7 @@ register(GRAMPLET,
name=_("Repository Filter"),
description = _("Gramplet providing a repository filter"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="filter.py",
height=200,
@ -1052,7 +1052,7 @@ register(GRAMPLET,
name=_("Note Filter"),
description = _("Gramplet providing a note filter"),
version="1.0.0",
gramps_target_version="4.0",
gramps_target_version="4.1",
status = STABLE,
fname="filter.py",
height=200,
@ -1066,7 +1066,7 @@ register(GRAMPLET,
name=_("Records Gramplet"),
description=_("Shows some interesting records about people and families"),
version='1.0',
gramps_target_version='4.0',
gramps_target_version='4.1',
status=STABLE,
fname='recordsgramplet.py',
authors=["Reinhard Müller"],

View File

@ -31,7 +31,7 @@ plg.id = 'familylines_graph'
plg.name = _("Family Lines Graph")
plg.description = _("Produces family line graphs using GraphViz.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'gvfamilylines.py'
plg.ptype = REPORT
@ -54,7 +54,7 @@ plg.id = 'hourglass_graph'
plg.name = _("Hourglass Graph")
plg.description = _("Produces an hourglass graph using Graphviz.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'gvhourglass.py'
plg.ptype = REPORT
@ -76,7 +76,7 @@ plg.id = 'rel_graph'
plg.name = _("Relationship Graph")
plg.description = _("Produces relationship graphs using Graphviz.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'gvrelgraph.py'
plg.ptype = REPORT

View File

@ -33,7 +33,7 @@ plg.id = 'im_csv'
plg.name = _("Comma Separated Values Spreadsheet (CSV)")
plg.description = _("Import data from CSV files")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'importcsv.py'
plg.ptype = IMPORT
@ -52,7 +52,7 @@ plg.name = _('GEDCOM')
plg.description = _('GEDCOM is used to transfer data between genealogy programs. '
'Most genealogy software will accept a GEDCOM file as input.')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'importgedcom.py'
plg.ptype = IMPORT
@ -70,7 +70,7 @@ plg.id = 'im_geneweb'
plg.name = _('GeneWeb')
plg.description = _('Import data from GeneWeb files')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'importgeneweb.py'
plg.ptype = IMPORT
@ -89,7 +89,7 @@ plg.name = _('Gramps package (portable XML)')
plg.description = _('Import data from a Gramps package (an archived XML '
'family tree together with the media object files.)')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'importgpkg.py'
plg.ptype = IMPORT
@ -110,7 +110,7 @@ plg.description = _('The Gramps XML format is a text '
'read-write compatible with the '
'present Gramps database format.')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'importxml.py'
plg.ptype = IMPORT
@ -128,7 +128,7 @@ plg.id = 'im_grdb'
plg.name = _('Gramps 2.x database')
plg.description = _('Import data from Gramps 2.x database files')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'importgrdb.py'
plg.ptype = IMPORT
@ -146,7 +146,7 @@ plg.id = 'im_progen'
plg.name = _('Pro-Gen')
plg.description = _('Import data from Pro-Gen files')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'importprogen.py'
plg.ptype = IMPORT
@ -164,7 +164,7 @@ plg.id = 'im_vcard'
plg.name = _('vCard')
plg.description = _('Import data from vCard files')
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'importvcard.py'
plg.ptype = IMPORT

View File

@ -32,7 +32,7 @@ name = "Cairodoc lib",
description = _("Provides a library for using Cairo to "
"generate documents."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libcairodoc.py',
authors = ["The Gramps project"],
@ -50,7 +50,7 @@ id = 'libgedcom',
name = "GEDCOM library",
description = _("Provides GEDCOM processing functionality"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libgedcom.py',
authors = ["The Gramps project"],
@ -68,7 +68,7 @@ name = "Grampsxml lib",
description = _("Provides common functionality for Gramps XML "
"import/export."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libgrampsxml.py',
authors = ["The Gramps project"],
@ -86,7 +86,7 @@ id = 'libgrdb',
name = "grdb lib",
description = _("Base class for ImportGrdb") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libgrdb.py',
authors = ["The Gramps project"],
@ -104,7 +104,7 @@ id = 'libholiday',
name = "holiday lib",
description = _("Provides holiday information for different countries.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libholiday.py',
authors = ["The Gramps project"],
@ -122,7 +122,7 @@ id = 'libhtmlbackend',
name = "htmlbackend lib",
description = _("Manages a HTML file implementing DocBackend.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libhtmlbackend.py',
authors = ["The Gramps project"],
@ -140,7 +140,7 @@ id = 'libhtmlconst',
name = "htmlconst lib",
description = _("Common constants for html files.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libhtmlconst.py',
authors = ["The Gramps project"],
@ -158,7 +158,7 @@ id = 'libhtml',
name = "html lib",
description = _("Manages an HTML DOM tree.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libhtml.py',
authors = ["Gerald Britton"],
@ -176,7 +176,7 @@ id = 'libmapservice',
name = "mapservice lib",
description = _("Provides base functionality for map services.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libmapservice.py',
authors = ["The Gramps project"],
@ -193,7 +193,7 @@ id = 'libnarrate',
name = "narration lib",
description = _("Provides Textual Narration.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libnarrate.py',
authors = ["Brian Matherly"],
@ -210,7 +210,7 @@ id = 'libodfbackend',
name = "odfbackend lib",
description = _("Manages an ODF file implementing DocBackend.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libodfbackend.py',
authors = ["The Gramps project"],
@ -227,7 +227,7 @@ id = 'libtranslate',
name = "translation lib",
description = _("Provides Textual Translation.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libtranslate.py',
authors = ["Brian Matherly"],
@ -244,7 +244,7 @@ id = 'libpersonview',
name = "person list lib",
description = _("Provides the Base needed for the List People views.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libpersonview.py',
authors = ["The Gramps project"],
@ -261,7 +261,7 @@ id = 'libplaceview',
name = "place list lib",
description = _("Provides the Base needed for the List Place views.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libplaceview.py',
authors = ["The Gramps project"],
@ -278,7 +278,7 @@ id = 'libsubstkeyword',
name = "Substitution Values",
description = _("Provides variable substitution on display lines.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libsubstkeyword.py',
authors = ["The Gramps project"],
@ -295,7 +295,7 @@ name = "Graphical report lib",
description = _("Provides the base needed for the ancestor and "
"descendant graphical reports.") ,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'libtreebase.py',
authors = ["The Gramps project"],

View File

@ -31,7 +31,7 @@ id = 'EniroMaps',
name = _("EniroMaps"),
description = _("Opens on kartor.eniro.se"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'eniroswedenmap.py',
authors = ["Peter Landgren"],
@ -50,7 +50,7 @@ id = 'GoogleMaps',
name = _("GoogleMaps"),
description = _("Open on maps.google.com"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'googlemap.py',
authors = ["Benny Malengier"],
@ -69,7 +69,7 @@ id = 'OpenStreetMap',
name = _("OpenStreetMap"),
description = _("Open on openstreetmap.org"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'openstreetmap.py',
authors = ["Benny Malengier"],

View File

@ -32,7 +32,7 @@ id = 'ageondate',
name = _("Age on Date"),
description = _("Display people and ages on a particular date"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'ageondate.py',
authors = ["Douglas Blank"],
@ -52,7 +52,7 @@ id = 'attribute_match',
name = _("Attribute Match"),
description = _("Display people with same attribute."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'attributematch.py',
authors = ["Douglas Blank"],
@ -72,7 +72,7 @@ id = 'all_events',
name = _("All Events"),
description = _("Display a person's events, both personal and family."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'all_events.py',
authors = ["Donald N. Allingham"],
@ -87,7 +87,7 @@ id = 'all_events_fam',
name = _("All Family Events"),
description = _("Display the family and family members events."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'all_events.py',
authors = ["B. Malengier"],
@ -107,7 +107,7 @@ id = 'all_relations',
name = _("Relation to Home Person"),
description = _("Display all relationships between person and home person."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'all_relations.py',
authors = ["B. Malengier"],
@ -127,7 +127,7 @@ id = 'filterbyname',
name = _("Filter"),
description = _("Display filtered data"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'filterbyname.py',
authors = ["Douglas Blank"],
@ -147,7 +147,7 @@ id = 'father_lineage',
name = _("Father lineage"),
description = _("Display father lineage"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'lineage.py',
authors = ["B. Malengier"],
@ -161,7 +161,7 @@ id = 'mother_lineage',
name = _("Mother lineage"),
description = _("Display mother lineage"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'lineage.py',
authors = ["B. Malengier"],
@ -181,7 +181,7 @@ id = 'onthisday',
name = _("On This Day"),
description = _("Display events on a particular day"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'onthisday.py',
authors = ["Douglas Blank"],
@ -214,7 +214,7 @@ for (category, item, trans) in refitems:
name = _("%s References") % trans,
description = _("Display references for a %s") % trans,
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'references.py',
authors = ["Douglas Blank"],
@ -228,7 +228,7 @@ register(QUICKREPORT,
name = _("Link References"),
description = _("Display link references for a note"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'linkreferences.py',
authors = ["Douglas Blank"],
@ -249,7 +249,7 @@ name = _("Repository References"),
description = _("Display the repository reference for sources related to"
" the active repository"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'reporef.py',
authors = ["Jerome Rapinat"],
@ -269,7 +269,7 @@ id = 'samesurnames',
name = _("Same Surnames"),
description = _("Display people with the same surname as a person."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'samesurnames.py',
authors = ["Douglas Blank"],
@ -283,7 +283,7 @@ id = 'samegivens',
name = _("Same Given Names"),
description = _("Display people with the same given name as a person."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'samesurnames.py',
authors = ["Douglas Blank"],
@ -297,7 +297,7 @@ id = 'samegivens_misc',
name = _("Same Given Names - stand-alone"),
description = _("Display people with the same given name as a person."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'samesurnames.py',
authors = ["Douglas Blank"],
@ -316,7 +316,7 @@ id = 'siblings',
name = _("Siblings"),
description = _("Display a person's siblings."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'siblings.py',
authors = ["Donald N. Allingham"],

View File

@ -32,7 +32,7 @@ plg.id = 'relcalc_ca'
plg.name = _("Catalan Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_ca.py'
plg.ptype = RELCALC
@ -46,7 +46,7 @@ plg.id = 'relcalc_cs'
plg.name = _("Czech Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_cs.py'
plg.ptype = RELCALC
@ -59,7 +59,7 @@ plg.id = 'relcalc_da'
plg.name = _("Danish Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_da.py'
plg.ptype = RELCALC
@ -75,7 +75,7 @@ plg.id = 'relcalc_de'
plg.name = _("German Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_de.py'
plg.ptype = RELCALC
@ -91,7 +91,7 @@ plg.id = 'relcalc_es'
plg.name = _("Spanish Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_es.py'
plg.ptype = RELCALC
@ -106,7 +106,7 @@ plg.id = 'relcalc_fi'
plg.name = _("Finnish Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_fi.py'
plg.ptype = RELCALC
@ -121,7 +121,7 @@ plg.id = 'relcalc_fr'
plg.name = _("French Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_fr.py'
plg.ptype = RELCALC
@ -138,7 +138,7 @@ plg.id = 'relcalc_hr'
plg.name = _("Croatian Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_hr.py'
plg.ptype = RELCALC
@ -152,7 +152,7 @@ plg.id = 'relcalc_hu'
plg.name = _("Hungarian Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_hu.py'
plg.ptype = RELCALC
@ -165,7 +165,7 @@ plg.id = 'relcalc_it'
plg.name = _("Italian Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_it.py'
plg.ptype = RELCALC
@ -178,7 +178,7 @@ plg.id = 'relcalc_nl'
plg.name = _("Dutch Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_nl.py'
plg.ptype = RELCALC
@ -195,7 +195,7 @@ plg.id = 'relcalc_no'
plg.name = _("Norwegian Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_no.py'
plg.ptype = RELCALC
@ -212,7 +212,7 @@ plg.id = 'relcalc_pl'
plg.name = _("Polish Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_pl.py'
plg.ptype = RELCALC
@ -228,7 +228,7 @@ plg.id = 'relcalc_pt'
plg.name = _("Portuguese Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_pt.py'
plg.ptype = RELCALC
@ -244,7 +244,7 @@ plg.id = 'relcalc_ru'
plg.name = _("Russian Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_ru.py'
plg.ptype = RELCALC
@ -260,7 +260,7 @@ plg.id = 'relcalc_sk'
plg.name = _("Slovak Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_sk.py'
plg.ptype = RELCALC
@ -274,7 +274,7 @@ plg.id = 'relcalc_sl'
plg.name = _("Slovenian Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_sl.py'
plg.ptype = RELCALC
@ -287,7 +287,7 @@ plg.id = 'relcalc_sv'
plg.name = _("Swedish Relationship Calculator")
plg.description = _("Calculates relationships between people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'rel_sv.py'
plg.ptype = RELCALC

View File

@ -30,7 +30,7 @@ id = 'categorysidebar',
name = _("Category Sidebar"),
description = _("A sidebar to allow the selection of view categories"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'categorysidebar.py',
authors = ["Nick Hall"],

View File

@ -32,7 +32,7 @@ plg.id = 'ancestor_report'
plg.name = _("Ahnentafel Report")
plg.description = _("Produces a textual ancestral report")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'ancestorreport.py'
plg.ptype = REPORT
@ -54,7 +54,7 @@ plg.id = 'birthday_report'
plg.name = _("Birthday and Anniversary Report")
plg.description = _("Produces a report of birthdays and anniversaries")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'birthdayreport.py'
plg.ptype = REPORT
@ -76,7 +76,7 @@ plg.id = 'custom_text'
plg.name = _("Custom Text")
plg.description = _("Add custom text to the book report")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'custombooktext.py'
plg.ptype = REPORT
@ -98,7 +98,7 @@ plg.id = 'descend_report'
plg.name = _("Descendant Report")
plg.description = _("Produces a list of descendants of the active person")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'descendreport.py'
plg.ptype = REPORT
@ -120,7 +120,7 @@ plg.id = 'det_ancestor_report'
plg.name = _("Detailed Ancestral Report")
plg.description = _("Produces a detailed ancestral report")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'detancestralreport.py'
plg.ptype = REPORT
@ -142,7 +142,7 @@ plg.id = 'det_descendant_report'
plg.name = _("Detailed Descendant Report")
plg.description = _("Produces a detailed descendant report")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'detdescendantreport.py'
plg.ptype = REPORT
@ -164,7 +164,7 @@ plg.id = 'endofline_report'
plg.name = _("End of Line Report")
plg.description = _("Produces a textual end of line report")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'endoflinereport.py'
plg.ptype = REPORT
@ -187,7 +187,7 @@ plg.name = _("Family Group Report")
plg.description = _("Produces a family group report showing information "
"on a set of parents and their children.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'familygroup.py'
plg.ptype = REPORT
@ -209,7 +209,7 @@ plg.id = 'indiv_complete'
plg.name = _("Complete Individual Report")
plg.description = _("Produces a complete report on the selected people")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'indivcomplete.py'
plg.ptype = REPORT
@ -231,7 +231,7 @@ plg.id = 'kinship_report'
plg.name = _("Kinship Report")
plg.description = _("Produces a textual report of kinship for a given person")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'kinshipreport.py'
plg.ptype = REPORT
@ -253,7 +253,7 @@ plg.id = 'tag_report'
plg.name = _("Tag Report")
plg.description = _("Produces a list of people with a specified tag")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'tagreport.py'
plg.ptype = REPORT
@ -276,7 +276,7 @@ plg.id = 'number_of_ancestors_report'
plg.name = _("Number of Ancestors Report")
plg.description = _("Counts number of ancestors of selected person")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'numberofancestorsreport.py'
plg.ptype = REPORT
@ -298,7 +298,7 @@ plg.id = 'place_report'
plg.name = _("Place Report")
plg.description = _("Produces a textual place report")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'placereport.py'
plg.ptype = REPORT
@ -321,7 +321,7 @@ plg.id = 'simple_book_title'
plg.name = _("Title Page")
plg.description = _("Produces a title page for book reports.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'simplebooktitle.py'
plg.ptype = REPORT
@ -343,7 +343,7 @@ plg.id = 'summary'
plg.name = _("Database Summary Report")
plg.description = _("Provides a summary of the current database")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'summary.py'
plg.ptype = REPORT
@ -366,7 +366,7 @@ plg.id = 'table_of_contents'
plg.name = _("Table Of Contents")
plg.description = _("Produces a table of contents for book reports.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'tableofcontents.py'
plg.ptype = REPORT
@ -388,7 +388,7 @@ plg.id = 'alphabetical_index'
plg.name = _("Alphabetical Index")
plg.description = _("Produces an alphabetical index for book reports.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'alphabeticalindex.py'
plg.ptype = REPORT
@ -410,7 +410,7 @@ plg.id = 'records'
plg.name = _("Records Report")
plg.description = _("Shows some interesting records about people and families")
plg.version = '1.1'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'recordsreport.py'
plg.ptype = REPORT

View File

@ -36,7 +36,7 @@ name = _("Fix Capitalization of Family Names"),
description = _("Searches the entire database and attempts to "
"fix capitalization of the names."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'changenames.py',
authors = ["Donald N. Allingham"],
@ -59,7 +59,7 @@ name = _("Rename Event Types"),
description = _("Allows all the events of a certain name "
"to be renamed to a new name."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'changetypes.py',
authors = ["Donald N. Allingham"],
@ -82,7 +82,7 @@ name = _("Check and Repair Database"),
description = _("Checks the database for integrity problems, fixing the "
"problems that it can"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'check.py',
authors = ["Donald N. Allingham"],
@ -104,7 +104,7 @@ id = 'dbrowse',
name = _("Interactive Descendant Browser"),
description = _("Provides a browsable hierarchy based on the active person"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'desbrowser.py',
authors = ["Donald N. Allingham"],
@ -127,7 +127,7 @@ id = 'eval',
name = "Python Evaluation Window",
description = "Provides a window that can evaluate python code",
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'eval.py',
authors = ["Donald N. Allingham"],
@ -151,7 +151,7 @@ description = _("Aids in the analysis of data by allowing the "
"development of custom filters that can be applied "
"to the database to find similar events"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'eventcmp.py',
authors = ["Donald N. Allingham"],
@ -173,7 +173,7 @@ id = 'evname',
name = _("Extract Event Description"),
description = _("Extracts event descriptions from the event data"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'eventnames.py',
authors = ["Donald N. Allingham"],
@ -196,7 +196,7 @@ name = _("Extract Place Data from a Place Title"),
description = _("Attempts to extract city and state/province "
"from a place title"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'extractcity.py',
authors = ["Donald N. Allingham"],
@ -219,7 +219,7 @@ name = _("Find Possible Duplicate People"),
description = _("Searches the entire database, looking for "
"individual entries that may represent the same person."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'finddupes.py',
authors = ["Donald N. Allingham"],
@ -241,7 +241,7 @@ id = 'leak',
name = "Show Uncollected Objects",
description = "Provide a window listing all uncollected objects",
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'leak.py',
authors = ["Donald N. Allingham"],
@ -263,7 +263,7 @@ id = 'mediaman',
name = _("Media Manager"),
description = _("Manages batch operations on media files"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'mediamanager.py',
authors = ["Alex Roitman"],
@ -286,7 +286,7 @@ name = _("Not Related"),
description = _("Find people who are not in any way related to the "
"selected person"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'notrelated.py',
authors = ["Stephane Charette"],
@ -308,7 +308,7 @@ id = 'editowner',
name = _("Edit Database Owner Information"),
description = _("Allow editing database owner information."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'ownereditor.py',
authors = ["Zsolt Foldvari"],
@ -330,7 +330,7 @@ id = 'patchnames',
name = _("Extract Information from Names"),
description = _("Extract titles, prefixes and compound surnames from given name or family name."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'patchnames.py',
authors = ["Donald N. Allingham", "Benny Malengier"],
@ -352,7 +352,7 @@ id = 'rebuild',
name = _("Rebuild Secondary Indexes"),
description = _("Rebuilds secondary indexes"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'rebuild.py',
authors = ["Donald N. Allingham"],
@ -374,7 +374,7 @@ id = 'rebuild_refmap',
name = _("Rebuild Reference Maps"),
description = _("Rebuilds reference maps"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'rebuildrefmap.py',
authors = ["Alex Roitman"],
@ -396,7 +396,7 @@ id = 'rebuild_genstats',
name = _("Rebuild Gender Statistics"),
description = _("Rebuilds gender statistics for name gender guessing..."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'rebuildgenderstat.py',
authors = ["Benny Malengier"],
@ -418,7 +418,7 @@ id = 'relcalc',
name = _("Relationship Calculator"),
description = _("Calculates the relationship between two people"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'relcalc.py',
authors = ["Donald N. Allingham"],
@ -440,7 +440,7 @@ id = 'remove_unused',
name = _("Remove Unused Objects"),
description = _("Removes unused objects from the database"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'removeunused.py',
authors = ["Donald N. Allingham"],
@ -463,7 +463,7 @@ name = _("Reorder Gramps IDs"),
description = _("Reorders the Gramps IDs "
"according to Gramps' default rules."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'reorderids.py',
authors = ["Donald N. Allingham"],
@ -485,7 +485,7 @@ id = 'sortevents',
name = _("Sorts events"),
description = _("Sorts events"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'sortevents.py',
authors = ["Gary Burton"],
@ -507,7 +507,7 @@ id = 'soundgen',
name = _("Generate SoundEx Codes"),
description = _("Generates SoundEx codes for names"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'soundgen.py',
authors = ["Donald N. Allingham"],
@ -529,7 +529,7 @@ id = 'verify',
name = _("Verify the Data"),
description = _("Verifies the data against user-defined tests"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'verify.py',
authors = ["Alex Roitman"],
@ -552,7 +552,7 @@ name = _("Merge Citations"),
description = _("Searches the entire database, looking for "
"citations that have the same Volume/Page, Date and Confidence."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'mergecitations.py',
authors = ["Tim G L Lyons"],

View File

@ -39,7 +39,7 @@ description = ("This test tool will create many people showing all"
" the birth date. This way you can ensure that dates"
" printed can be parsed back in correctly."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = UNSTABLE,
fname = 'dateparserdisplaytest.py',
authors = ["Martin Hawlisch"],
@ -62,7 +62,7 @@ name = "Dump Gender Statistics",
description = ("Will dump the statistics for the gender guessing "
"from the first name."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'dumpgenderstats.py',
authors = ["Donald N. Allingham", "Martin Hawlisch"],
@ -86,7 +86,7 @@ description = ("The testcase generator will generate some persons "
"and families that have broken links in the database "
"or data that is in conflict to a relation."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = UNSTABLE,
fname = 'testcasegenerator.py',
authors = ["Martin Hawlisch"],
@ -110,7 +110,7 @@ description = ("This tool generates sources and citations ofr each source in "
"order to populate the database for testing with significant "
"numbers of sources and citations"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = UNSTABLE,
fname = 'populatesources.py',
authors = ["Tim Lyons"],

View File

@ -27,7 +27,7 @@
#
#------------------------------------------------------------------------
MODULE_VERSION="4.0"
MODULE_VERSION="4.1"
from gi import Repository

View File

@ -68,7 +68,7 @@ if not (TOOLKIT == NOWEB):
name = _("Html View"),
description = _("A view showing html pages embedded in Gramps"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'htmlrenderer.py',
authors = ["The Gramps project"],

View File

@ -35,7 +35,7 @@ id = 'eventview',
name = _("Events"),
description = _("The view showing all the events"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'eventview.py',
authors = ["The Gramps project"],
@ -50,7 +50,7 @@ id = 'familyview',
name = _("Families"),
description = _("The view showing all families"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'familyview.py',
authors = ["The Gramps project"],
@ -65,7 +65,7 @@ id = 'grampletview',
name = _("Gramplets"),
description = _("The view showing Gramplets"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'grampletview.py',
authors = ["The Gramps project"],
@ -80,7 +80,7 @@ id = 'mediaview',
name = _("Media"),
description = _("The view showing all the media objects"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'mediaview.py',
authors = ["The Gramps project"],
@ -95,7 +95,7 @@ id = 'noteview',
name = _("Notes"),
description = _("The view showing all the notes"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'noteview.py',
authors = ["The Gramps project"],
@ -110,7 +110,7 @@ id = 'relview',
name = _("Relationships"),
description = _("The view showing all relationships of the selected person"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'relview.py',
authors = ["The Gramps project"],
@ -125,7 +125,7 @@ id = 'pedigreeview',
name = _("Pedigree"),
description = _("The view showing an ancestor pedigree of the selected person"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'pedigreeview.py',
authors = ["The Gramps project"],
@ -142,7 +142,7 @@ name = _("Fan Chart"),
category = ("Ancestry", _("Charts")),
description = _("A view showing parents through a fanchart"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'fanchartview.py',
authors = ["Douglas S. Blank", "B. Malengier"],
@ -157,7 +157,7 @@ name = _("Descendant Fan"),
category = ("Ancestry", _("Charts")),
description = _("Showing descendants through a fanchart"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'fanchartdescview.py',
authors = ["B. Malengier"],
@ -172,7 +172,7 @@ name = _("Grouped People"),
description = _("The view showing all people in the family tree grouped per"
" family name"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'persontreeview.py',
authors = ["The Gramps project"],
@ -189,7 +189,7 @@ name = _("People"),
description = _("The view showing all people in the family tree"
" in a flat list"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'personlistview.py',
authors = ["The Gramps project"],
@ -205,7 +205,7 @@ id = 'placelistview',
name = _("Places"),
description = _("The view showing all the places of the family tree"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'placelistview.py',
authors = ["The Gramps project"],
@ -221,7 +221,7 @@ id = 'placetreeview',
name = _("Place Tree"),
description = _("A view displaying places in a tree format."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'placetreeview.py',
authors = ["Donald N. Allingham", "Gary Burton", "Nick Hall"],
@ -236,7 +236,7 @@ id = 'repoview',
name = _("Repositories"),
description = _("The view showing all the repositories"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'repoview.py',
authors = ["The Gramps project"],
@ -251,7 +251,7 @@ id = 'sourceview',
name = _("Sources"),
description = _("The view showing all the sources"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'sourceview.py',
authors = ["The Gramps project"],
@ -267,7 +267,7 @@ id = 'citationlistview',
name = _("Citations"),
description = _("The view showing all the citations"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'citationlistview.py',
authors = ["The Gramps project"],
@ -282,7 +282,7 @@ id = 'citationtreeview',
name = _("Citation Tree"),
description = _("A view displaying citations and sources in a tree format."),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
status = STABLE,
fname = 'citationtreeview.py',
authors = ["Tim G L Lyons", "Nick Hall"],

View File

@ -32,7 +32,7 @@ plg.name = _("Narrated Web Site")
plg.description = _("Produces web (HTML) pages for individuals, or a set of "
"individuals")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'narrativeweb.py'
plg.ptype = REPORT
@ -55,7 +55,7 @@ plg.id = 'WebCal'
plg.name = _("Web Calendar")
plg.description = _("Produces web (HTML) calendars.")
plg.version = '1.0'
plg.gramps_target_version = '4.0'
plg.gramps_target_version = '4.1'
plg.status = STABLE
plg.fname = 'webcal.py'
plg.ptype = REPORT

View File

@ -33,7 +33,7 @@ category = "WEBSTUFF",
name = _("Webstuff"),
description = _("Provides a collection of resources for the web"),
version = '1.0',
gramps_target_version = '4.0',
gramps_target_version = '4.1',
fname = "webstuff.py",
load_on_reg = True,
process = "process_list",

View File

@ -47,7 +47,7 @@ if sys.version_info[0] < 3:
import commands
from stat import ST_MODE
VERSION = 'trunk'
VERSION = '4.1.0'
ALL_LINGUAS = ('bg', 'ca', 'cs', 'da', 'de', 'el', 'en_GB', 'es', 'fi', 'fr', 'he',
'hr', 'hu', 'it', 'ja', 'lt', 'nb', 'nl', 'nn', 'pl', 'pt_BR',
'pt_PT', 'ru', 'sk', 'sl', 'sq', 'sv', 'uk', 'vi', 'zh_CN')