GEPS023: merge branch (changes 17960-18546) into trunk

svn: r18548
This commit is contained in:
Tim G L Lyons
2011-12-04 17:09:17 +00:00
211 changed files with 9529 additions and 2316 deletions

View File

@ -2,6 +2,7 @@
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2011 Nick Hall
# 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
@ -217,6 +218,20 @@ register(GRAMPLET,
navtypes=["Source"],
)
register(GRAMPLET,
id="Citation Gallery",
name=_("Citation Gallery"),
description = _("Gramplet showing media objects for a citation"),
version="1.0.0",
gramps_target_version="3.4",
status = STABLE,
fname="Gallery.py",
height=200,
gramplet = 'CitationGallery',
gramplet_title=_("Gallery"),
navtypes=["Citation"],
)
register(GRAMPLET,
id="Person Attributes",
name=_("Person Attributes"),
@ -343,6 +358,20 @@ register(GRAMPLET,
navtypes=["Source"],
)
register(GRAMPLET,
id="Citation Notes",
name=_("Citation Notes"),
description = _("Gramplet showing the notes for a citation"),
version="1.0.0",
gramps_target_version="3.4",
status = STABLE,
fname="Notes.py",
height=200,
gramplet = 'CitationNotes',
gramplet_title=_("Notes"),
navtypes=["Citation"],
)
register(GRAMPLET,
id="Repository Notes",
name=_("Repository Notes"),
@ -372,72 +401,72 @@ register(GRAMPLET,
)
register(GRAMPLET,
id="Person Sources",
name=_("Person Sources"),
description = _("Gramplet showing the sources for a person"),
id="Person Citations",
name=_("Person Citations"),
description = _("Gramplet showing the citations for a person"),
version="1.0.0",
gramps_target_version="3.4",
status = STABLE,
fname="Sources.py",
fname="Citations.py",
height=200,
gramplet = 'PersonSources',
gramplet_title=_("Sources"),
gramplet = 'PersonCitations',
gramplet_title=_("Citations"),
navtypes=["Person"],
)
register(GRAMPLET,
id="Event Sources",
name=_("Event Sources"),
description = _("Gramplet showing the sources for an event"),
id="Event Citations",
name=_("Event Citations"),
description = _("Gramplet showing the citations for an event"),
version="1.0.0",
gramps_target_version="3.4",
status = STABLE,
fname="Sources.py",
fname="Citations.py",
height=200,
gramplet = 'EventSources',
gramplet_title=_("Sources"),
gramplet = 'EventCitations',
gramplet_title=_("Citations"),
navtypes=["Event"],
)
register(GRAMPLET,
id="Family Sources",
name=_("Family Sources"),
description = _("Gramplet showing the sources for a family"),
id="Family Citations",
name=_("Family Citations"),
description = _("Gramplet showing the citations for a family"),
version="1.0.0",
gramps_target_version="3.4",
status = STABLE,
fname="Sources.py",
fname="Citations.py",
height=200,
gramplet = 'FamilySources',
gramplet_title=_("Sources"),
gramplet = 'FamilyCitations',
gramplet_title=_("Citations"),
navtypes=["Family"],
)
register(GRAMPLET,
id="Place Sources",
name=_("Place Sources"),
description = _("Gramplet showing the sources for a place"),
id="Place Citations",
name=_("Place Citations"),
description = _("Gramplet showing the citations for a place"),
version="1.0.0",
gramps_target_version="3.4",
status = STABLE,
fname="Sources.py",
fname="Citations.py",
height=200,
gramplet = 'PlaceSources',
gramplet_title=_("Sources"),
gramplet = 'PlaceCitations',
gramplet_title=_("Citations"),
navtypes=["Place"],
)
register(GRAMPLET,
id="Media Sources",
name=_("Media Sources"),
description = _("Gramplet showing the sources for a media object"),
id="Media Citations",
name=_("Media Citations"),
description = _("Gramplet showing the citations for a media object"),
version="1.0.0",
gramps_target_version="3.4",
status = STABLE,
fname="Sources.py",
fname="Citations.py",
height=200,
gramplet = 'MediaSources',
gramplet_title=_("Sources"),
gramplet = 'MediaCitations',
gramplet_title=_("Citations"),
navtypes=["Media"],
)
@ -539,6 +568,20 @@ register(GRAMPLET,
navtypes=["Source"],
)
register(GRAMPLET,
id="Citation Backlinks",
name=_("Citation Backlinks"),
description = _("Gramplet showing the backlinks for a citation"),
version="1.0.0",
gramps_target_version="3.4",
status = STABLE,
fname="Backlinks.py",
height=200,
gramplet = 'CitationBacklinks',
gramplet_title=_("References"),
navtypes=["Citation"],
)
register(GRAMPLET,
id="Repository Backlinks",
name=_("Repository Backlinks"),
@ -637,6 +680,20 @@ register(GRAMPLET,
navtypes=["Source"],
)
register(GRAMPLET,
id="Citation Filter",
name=_("Citation Filter"),
description = _("Gramplet providing a citation filter"),
version="1.0.0",
gramps_target_version="3.4",
status = STABLE,
fname="Filter.py",
height=200,
gramplet = 'CitationFilter',
gramplet_title=_("Filter"),
navtypes=["Citation"],
)
register(GRAMPLET,
id="Place Filter",
name=_("Place Filter"),