Feature: a fanchart for descendants. Futher to test with duplicates

svn: r20402
This commit is contained in:
Benny Malengier
2012-09-16 23:05:37 +00:00
parent e6864165ee
commit 1c6df8ad46
7 changed files with 1309 additions and 39 deletions

View File

@ -140,17 +140,32 @@ register(VIEW,
id = 'fanchartview',
name = _("Fan Chart View"),
category = ("Ancestry", _("Ancestry")),
description = _("The view showing relations through a fanchart"),
description = _("A view showing parents through a fanchart"),
version = '1.0',
gramps_target_version = '4.0',
status = STABLE,
fname = 'fanchartview.py',
authors = [u"Douglas S. Blank"],
authors_email = ["doug.blank@gmail.com"],
authors = [u"Douglas S. Blank", u"B. Malengier"],
authors_email = ["doug.blank@gmail.com", "benny.malengier@gmail.com"],
viewclass = 'FanChartView',
stock_icon = 'gramps-fanchart',
)
register(VIEW,
id = 'fanchartdescview',
name = _("Descendants Fan Chart View"),
category = ("Ancestry", _("Ancestry")),
description = _("Showing descendants through a fanchart"),
version = '1.0',
gramps_target_version = '4.0',
status = STABLE,
fname = 'fanchartdescview.py',
authors = [u"B. Malengier"],
authors_email = ["benny.malengier@gmail.com"],
viewclass = 'FanChartDescView',
stock_icon = 'gramps-fanchart',
)
register(VIEW,
id = 'personview',
name = _("Person Tree View"),