3292: register plugins, load on need, not on start of GRAMPS - GEPS 014

svn: r13400
This commit is contained in:
Benny Malengier
2009-10-24 13:53:20 +00:00
parent d1fbb2bff9
commit ed619cfdd6
195 changed files with 4123 additions and 3371 deletions

View File

@@ -0,0 +1,37 @@
# encoding:utf-8
#------------------------------------------------------------------------
#
# records gramplet and text report
#
#------------------------------------------------------------------------
register(REPORT,
id = 'records',
name = _("Records Report"),
description = _("Shows some interesting records about people and families"),
version = '1.0',
status = STABLE,
fname = 'Records.py',
authors = [u"Reinhard Müller"],
authors_email = ["reinhard.mueller@bytewise.at"],
category = CATEGORY_TEXT,
reportclass = 'RecordsReport',
optionclass = 'RecordsReportOptions',
report_modes = [REPORT_MODE_GUI, REPORT_MODE_CLI, REPORT_MODE_BKI]
)
register(GRAMPLET,
id = 'Records Gramplet',
name = _("Records Gramplet"),
description = _("Shows some interesting records about people and families"),
version = '1.0',
status = STABLE,
fname = 'Records.py',
authors = [u"Reinhard Müller"],
authors_email = ["reinhard.mueller@bytewise.at"],
gramplet = 'RecordsGramplet',
height = 230,
expand = True,
gramplet_title = _("Records")
)