Add new bottombar gramplets

svn: r16613
This commit is contained in:
Nick Hall
2011-02-13 00:02:50 +00:00
parent 150d13bca6
commit f5fd46d518
16 changed files with 843 additions and 62 deletions

View File

@ -38,19 +38,6 @@ register(GRAMPLET,
gramplet_title=_("Details"),
)
register(GRAMPLET,
id="Person Gallery Gramplet",
name=_("Person Gallery Gramplet"),
description = _("Gramplet showing media objects for a person"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="PersonGallery.py",
height=200,
gramplet = 'PersonGallery',
gramplet_title=_("Gallery"),
)
register(GRAMPLET,
id="Person Residence Gramplet",
name=_("Person Residence Gramplet"),
@ -64,6 +51,58 @@ register(GRAMPLET,
gramplet_title=_("Residence"),
)
register(GRAMPLET,
id="Person Gallery Gramplet",
name=_("Person Gallery Gramplet"),
description = _("Gramplet showing media objects for a person"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Gallery.py",
height=200,
gramplet = 'PersonGallery',
gramplet_title=_("Gallery"),
)
register(GRAMPLET,
id="Event Gallery Gramplet",
name=_("Event Gallery Gramplet"),
description = _("Gramplet showing media objects for an event"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Gallery.py",
height=200,
gramplet = 'EventGallery',
gramplet_title=_("Gallery"),
)
register(GRAMPLET,
id="Place Gallery Gramplet",
name=_("Place Gallery Gramplet"),
description = _("Gramplet showing media objects for a place"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Gallery.py",
height=200,
gramplet = 'PlaceGallery',
gramplet_title=_("Gallery"),
)
register(GRAMPLET,
id="Source Gallery Gramplet",
name=_("Source Gallery Gramplet"),
description = _("Gramplet showing media objects for a source"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Gallery.py",
height=200,
gramplet = 'SourceGallery',
gramplet_title=_("Gallery"),
)
register(GRAMPLET,
id="Person Attributes Gramplet",
name=_("Person Attributes Gramplet"),
@ -71,12 +110,220 @@ register(GRAMPLET,
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="PersonAttributes.py",
fname="Attributes.py",
height=200,
gramplet = 'PersonAttributes',
gramplet_title=_("Attributes"),
)
register(GRAMPLET,
id="Event Attributes Gramplet",
name=_("Event Attributes Gramplet"),
description = _("Gramplet showing the attributes of an event"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Attributes.py",
height=200,
gramplet = 'EventAttributes',
gramplet_title=_("Attributes"),
)
register(GRAMPLET,
id="Family Attributes Gramplet",
name=_("Family Attributes Gramplet"),
description = _("Gramplet showing the attributes of a family"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Attributes.py",
height=200,
gramplet = 'FamilyAttributes',
gramplet_title=_("Attributes"),
)
register(GRAMPLET,
id="Media Attributes Gramplet",
name=_("Media Attributes Gramplet"),
description = _("Gramplet showing the attributes of a media object"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Attributes.py",
height=200,
gramplet = 'MediaAttributes',
gramplet_title=_("Attributes"),
)
register(GRAMPLET,
id="Person Notes Gramplet",
name=_("Person Notes Gramplet"),
description = _("Gramplet showing the notes for a person"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Notes.py",
height=200,
gramplet = 'PersonNotes',
gramplet_title=_("Notes"),
)
register(GRAMPLET,
id="Event Notes Gramplet",
name=_("Event Notes Gramplet"),
description = _("Gramplet showing the notes for an event"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Notes.py",
height=200,
gramplet = 'EventNotes',
gramplet_title=_("Notes"),
)
register(GRAMPLET,
id="Family Notes Gramplet",
name=_("Family Notes Gramplet"),
description = _("Gramplet showing the notes for a family"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Notes.py",
height=200,
gramplet = 'FamilyNotes',
gramplet_title=_("Notes"),
)
register(GRAMPLET,
id="Place Notes Gramplet",
name=_("Place Notes Gramplet"),
description = _("Gramplet showing the notes for a place"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Notes.py",
height=200,
gramplet = 'PlaceNotes',
gramplet_title=_("Notes"),
)
register(GRAMPLET,
id="Source Notes Gramplet",
name=_("Source Notes Gramplet"),
description = _("Gramplet showing the notes for a source"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Notes.py",
height=200,
gramplet = 'SourceNotes',
gramplet_title=_("Notes"),
)
register(GRAMPLET,
id="Repository Notes Gramplet",
name=_("Repository Notes Gramplet"),
description = _("Gramplet showing the notes for a repository"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Notes.py",
height=200,
gramplet = 'RepositoryNotes',
gramplet_title=_("Notes"),
)
register(GRAMPLET,
id="Media Notes Gramplet",
name=_("Media Notes Gramplet"),
description = _("Gramplet showing the notes for a media object"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Notes.py",
height=200,
gramplet = 'MediaNotes',
gramplet_title=_("Notes"),
)
register(GRAMPLET,
id="Person Sources Gramplet",
name=_("Person Sources Gramplet"),
description = _("Gramplet showing the sources for a person"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Sources.py",
height=200,
gramplet = 'PersonSources',
gramplet_title=_("Sources"),
)
register(GRAMPLET,
id="Event Sources Gramplet",
name=_("Event Sources Gramplet"),
description = _("Gramplet showing the sources for an event"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Sources.py",
height=200,
gramplet = 'EventSources',
gramplet_title=_("Sources"),
)
register(GRAMPLET,
id="Family Sources Gramplet",
name=_("Family Sources Gramplet"),
description = _("Gramplet showing the sources for a family"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Sources.py",
height=200,
gramplet = 'FamilySources',
gramplet_title=_("Sources"),
)
register(GRAMPLET,
id="Place Sources Gramplet",
name=_("Place Sources Gramplet"),
description = _("Gramplet showing the sources for a place"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Sources.py",
height=200,
gramplet = 'PlaceSources',
gramplet_title=_("Sources"),
)
register(GRAMPLET,
id="Media Sources Gramplet",
name=_("Media Sources Gramplet"),
description = _("Gramplet showing the sources for a media object"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Sources.py",
height=200,
gramplet = 'MediaSources',
gramplet_title=_("Sources"),
)
register(GRAMPLET,
id="Person Children Gramplet",
name=_("Person Children Gramplet"),
description = _("Gramplet showing the cildren of a person"),
version="1.0.0",
gramps_target_version="3.3",
status = STABLE,
fname="Children.py",
height=200,
gramplet = 'PersonChildren',
gramplet_title=_("Children"),
)
register(GRAMPLET,
id="Person Filter Gramplet",
name=_("Person Filter Gramplet"),