* src/GrampsCfg.py: remove unused options

* src/gramps.glade: remove unused panels in preferences
* src/Plugins.py: removed xpm images
* src/EventEdit.py: get full event list
* src/plugins/AncestorChart.py: remove xpm image
* src/plugins/AncestorChart2.py: remove xpm image
* src/plugins/AncestorReport.py: remove xpm image
* src/plugins/Ancestors.py: remove xpm image
* src/plugins/BookReport.py: remove xpm image
* src/plugins/CustomBookText.py: remove xpm image
* src/plugins/DesGraph.py: remove xpm image
* src/plugins/DescendReport.py: remove xpm image
* src/plugins/DetAncestralReport.py: remove xpm image
* src/plugins/DetDescendantReport.py: remove xpm image
* src/plugins/FamilyGroup.py: remove xpm image
* src/plugins/FtmStyleAncestors.py: remove xpm image
* src/plugins/FtmStyleDescendants.py: remove xpm image
* src/plugins/IndivComplete.py: remove xpm image
* src/plugins/IndivSummary.py: remove xpm image
* src/plugins/Makefile.in: remove xpm image
* src/plugins/SimpleBookTitle.py: remove xpm image
* src/plugins/WebPage.py: remove xpm image
* src/RelLib.py: secondary index for event names


svn: r3158
This commit is contained in:
Don Allingham
2004-05-12 03:58:14 +00:00
parent a0aaf83b0c
commit d43745dc97
29 changed files with 100 additions and 1051 deletions

View File

@@ -757,8 +757,7 @@ class Gramps:
if self.find_person:
self.find_person.show()
else:
self.find_person = Find.FindPerson(self.find_goto_person,self.db,
self.people_view.id2col)
self.find_person = Find.FindPerson(self.find_goto_person,self.db,None)
def on_findname_activate(self,obj):
"""Display the find box"""
@@ -1575,39 +1574,6 @@ class Gramps:
self.setup_bookmarks()
try:
mylist = self.db.get_person_event_types()
for type in mylist:
ntype = const.display_pevent(type)
if ntype not in const.personalEvents:
const.personalEvents.append(ntype)
mylist = self.db.get_family_event_types()
for type in mylist:
ntype = const.display_fevent(type)
if ntype not in const.marriageEvents:
const.marriageEvents.append(ntype)
mylist = self.db.get_person_attribute_types()
for type in mylist:
ntype = const.display_pattr(type)
if ntype not in const.personalAttributes:
const.personalAttributes.append(ntype)
mylist = self.db.get_family_attribute_types()
for type in mylist:
ntype = const.display_fattr(type)
if ntype not in const.familyAttributes:
const.familyAttributes.append(ntype)
mylist = self.db.get_family_relation_types()
for type in mylist:
ntype = const.display_frel(type)
if ntype not in const.familyRelations:
const.familyRelations.append(ntype)
except:
pass
GrampsCfg.save_last_file(name)
self.gtop.get_widget("filter").set_text("")