Use the new view plugin structure to offer a flat list person view
svn: r14195
This commit is contained in:
@ -131,15 +131,29 @@ name = _("Person View"),
|
||||
description = _("The view showing all people in the family tree"),
|
||||
version = '1.0',
|
||||
status = STABLE,
|
||||
fname = 'personview.py',
|
||||
fname = 'persontreeview.py',
|
||||
authors = [u"The Gramps project"],
|
||||
authors_email = ["http://gramps-project.org"],
|
||||
category = ("People", _("People")),
|
||||
viewclass = 'PersonView',
|
||||
viewclass = 'PersonTreeView',
|
||||
order = START,
|
||||
)
|
||||
|
||||
register(VIEW,
|
||||
id = 'personlistview',
|
||||
name = _("Person List View"),
|
||||
description = _("The view showing all people in the family tree"
|
||||
" in a flat list"),
|
||||
version = '1.0',
|
||||
status = STABLE,
|
||||
fname = 'personlistview.py',
|
||||
authors = [u"The Gramps project"],
|
||||
authors_email = ["http://gramps-project.org"],
|
||||
category = ("People", _("People")),
|
||||
viewclass = 'PersonListView',
|
||||
order = END,
|
||||
)
|
||||
register(VIEW,
|
||||
id = 'placeview',
|
||||
name = _("Place View"),
|
||||
description = _("The view showing all the places of the family tree"),
|
||||
|
Reference in New Issue
Block a user