3352: Confusion in creating multiple views of same type and selecting them; see tracker for more details
svn: r13705
This commit is contained in:
@@ -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,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user