2007-02-18 Don Allingham <don@gramps-project.org>

* src/GrampsDbUtils/_GedcomParse.py: more refactoring



svn: r8156
This commit is contained in:
Don Allingham 2007-02-18 19:53:14 +00:00
parent 272b43b1f2
commit aa02f10882
6 changed files with 1369 additions and 922 deletions

View File

@ -1,3 +1,6 @@
2007-02-18 Don Allingham <don@gramps-project.org>
* src/GrampsDbUtils/_GedcomParse.py: more refactoring
2007-02-18 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/GrampsDbUtils/_GedcomParse.py: Work around some Tracebacks

File diff suppressed because it is too large Load Diff

View File

@ -846,7 +846,6 @@ class ViewManager:
if len(self.pages) > 0:
self.active_page = self.pages[num]
self.active_page.set_active()
print 'Save', num
Config.set(Config.LAST_VIEW,num)
Config.sync()

View File

@ -1,7 +1,6 @@
# This is the src/data level Makefile for gramps
# $Id$
#
SUBDIRS = templates
pkgdatadir = $(datadir)/@PACKAGE@/data
dist_pkgdata_DATA = \

View File

@ -75,6 +75,8 @@ if platform.system() == "Windows":
reports_icon = "reports.png"
parents_icon = "parents.png"
spouse_icon = "spouse.png"
notes_icon = "notes.png"
repos_icon = "repos.png"
else:
person_icon = "person.svg"
relation_icon = "relation.svg"
@ -87,6 +89,8 @@ else:
reports_icon = "reports.svg"
parents_icon = "parents.svg"
spouse_icon = "spouse.svg"
notes_icon = "notes.svg"
repos_icon = "repos.svg"
sharefam_icon = "share-fam.png"
@ -108,7 +112,7 @@ def register_stock_icons ():
('gramps-media',_('Media'),gtk.gdk.CONTROL_MASK,0,'')),
(os.path.join(const.image_dir,'ped24.png'),
('gramps-pedigree',_('Pedigree'),gtk.gdk.CONTROL_MASK,0,'')),
(os.path.join(const.image_dir,'repos.png'),
(os.path.join(const.image_dir,repos_icon),
('gramps-repository',_('Repositories'),gtk.gdk.CONTROL_MASK,0,'')),
(os.path.join(const.image_dir, sources_icon),
('gramps-source',_('Sources'),gtk.gdk.CONTROL_MASK,0,'')),
@ -122,7 +126,7 @@ def register_stock_icons ():
('gramps-reports',_('Reports'),gtk.gdk.CONTROL_MASK,0,'')),
(os.path.join(const.image_dir,'stock_export.png'),
('gramps-export',_('Export'),gtk.gdk.CONTROL_MASK,0,'')),
(os.path.join(const.image_dir,'stock_notes.png'),
(os.path.join(const.image_dir,notes_icon),
('gramps-notes',_('Notes'),gtk.gdk.CONTROL_MASK,0,'')),
(os.path.join(const.image_dir,'stock_undo-history.png'),
('gramps-undo-history',_('Undo History'),gtk.gdk.CONTROL_MASK,0,'')),

View File

@ -75,6 +75,9 @@ dist_pkgdata_DATA = \
spouse.svg\
place.svg\
place.png\
notes.png\
notes.svg\
repos.svg\
relation.svg\
repos.png\
reports.svg\