3352: Confusion in creating multiple views of same type and selecting them; see tracker for more details

svn: r13705
This commit is contained in:
Doug Blank
2009-12-05 04:38:31 +00:00
parent e07455b891
commit 7fbdff5e0d
10 changed files with 89 additions and 82 deletions

View File

@@ -1,12 +1,12 @@
register(VIEW,
id = 'fanchartview',
name = _("Fan Chart View"),
category = ("Charts", _("Charts")),
description = _("The view showing relations through a fanchart"),
version = '1.0',
status = UNSTABLE,
fname = 'fanchartview.py',
authors = [u"Douglas S. Blank"],
authors_email = ["doug.blank@gmail.com"],
category = VIEW_PEDI,
viewclass = 'FanChartView',
)

View File

@@ -55,7 +55,7 @@ if not (TOOLKIT == NOWEB):
fname = 'geoview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_GEO,
category = ("Geography", _("Geography")),
viewclass = 'GeoView',
)
@@ -68,6 +68,6 @@ if not (TOOLKIT == NOWEB):
fname = 'htmlrenderer.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_MISC,
category = ("Web", _("Web")),
viewclass = 'HtmlView',
)

View File

@@ -7,6 +7,6 @@ register(VIEW,
fname = 'placetreeview.py',
authors = [u"Donald N. Allingham", u"Gary Burton", u"Nick Hall"],
authors_email = [""],
category = VIEW_PLACE,
category = ("Places", _("Places")),
viewclass = 'PlaceTreeView',
)

View File

@@ -36,7 +36,7 @@ status = STABLE,
fname = 'eventview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_EVENT,
category = ("Events", _("Events")),
viewclass = 'EventView',
order = START,
)
@@ -50,7 +50,7 @@ status = STABLE,
fname = 'familyview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_FAMILY,
category = ("Families", _("Families")),
viewclass = 'FamilyView',
order = START,
)
@@ -64,7 +64,7 @@ status = STABLE,
fname = 'grampletview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_MISC,
category = ("Gramplets", _("Gramplets")),
viewclass = 'GrampletView',
order = START,
)
@@ -78,7 +78,7 @@ status = STABLE,
fname = 'mediaview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_MEDIA,
category = ("Media", _("Media")),
viewclass = 'MediaView',
order = START,
)
@@ -92,7 +92,7 @@ status = STABLE,
fname = 'noteview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_NOTE,
category = ("Notes", _("Notes")),
viewclass = 'NoteView',
order = START,
)
@@ -106,7 +106,7 @@ status = STABLE,
fname = 'relview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_REL,
category = ("Relationships", _("Relationships")),
viewclass = 'RelationshipView',
order = START,
)
@@ -120,8 +120,9 @@ status = STABLE,
fname = 'pedigreeview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_PEDI,
category = ("Charts", _("Charts")),
viewclass = 'PedigreeView',
order = START,
)
register(VIEW,
@@ -133,7 +134,7 @@ status = STABLE,
fname = 'personview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_PERSON,
category = ("People", _("People")),
viewclass = 'PersonView',
order = START,
)
@@ -147,7 +148,7 @@ status = STABLE,
fname = 'placeview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_PLACE,
category = ("Places", _("Places")),
viewclass = 'PlaceView',
order = START,
)
@@ -161,7 +162,7 @@ status = STABLE,
fname = 'repoview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_REPO,
category = ("Repositories", _("Repositories")),
viewclass = 'RepositoryView',
order = START,
)
@@ -175,7 +176,7 @@ status = STABLE,
fname = 'sourceview.py',
authors = [u"The Gramps project"],
authors_email = ["http://gramps-project.org"],
category = VIEW_SOURCE,
category = ("Sources", _("Sources")),
viewclass = 'SourceView',
order = START,
)