Add backlink bottombar gramplets

svn: r16997
This commit is contained in:
Nick Hall
2011-03-30 22:40:24 +00:00
parent 1d2ed8bf36
commit f43d71f9ef
10 changed files with 298 additions and 8 deletions

View File

@@ -293,4 +293,5 @@ class EventView(ListView):
("Event Gallery Gramplet",
"Event Sources Gramplet",
"Event Notes Gramplet",
"Event Attributes Gramplet"))
"Event Attributes Gramplet",
"Event Backlinks Gramplet"))

View File

@@ -347,4 +347,5 @@ class FamilyView(ListView):
return (("Family Filter Gramplet",),
("Family Sources Gramplet",
"Family Notes Gramplet",
"Family Attributes Gramplet"))
"Family Attributes Gramplet",
"Family Backlinks Gramplet"))

View File

@@ -440,4 +440,5 @@ class MediaView(ListView):
"Exif Viewer Gramplet",
"Media Sources Gramplet",
"Media Notes Gramplet",
"Media Attributes Gramplet"))
"Media Attributes Gramplet",
"Media Backlinks Gramplet"))

View File

@@ -300,4 +300,4 @@ class NoteView(ListView):
Define the default gramplets for the sidebar and bottombar.
"""
return (("Note Filter Gramplet",),
())
("Note Backlinks Gramplet",))

View File

@@ -276,4 +276,5 @@ class RepositoryView(ListView):
"""
return (("Repository Filter Gramplet",),
("Repository Details Gramplet",
"Repository Notes Gramplet"))
"Repository Notes Gramplet",
"Repository Backlinks Gramplet"))

View File

@@ -253,4 +253,5 @@ class SourceView(ListView):
"""
return (("Source Filter Gramplet",),
("Source Gallery Gramplet",
"Source Notes Gramplet"))
"Source Notes Gramplet",
"Source Backlinks Gramplet"))