* src/RelLib.py: fix index for place map

* src/FamilyView.py: include person ID's


svn: r3212
This commit is contained in:
Don Allingham 2004-06-15 03:43:33 +00:00
parent 8341a65f75
commit c9a392961f
4 changed files with 25 additions and 12 deletions

View File

@ -1,3 +1,7 @@
2004-06-14 Don Allingham <dallingham@users.sourceforge.net>
* src/RelLib.py: fix index for place map
* src/FamilyView.py: include person ID's
2004-06-14 Alex Roitman <shura@alex.neuro.umn.edu>
* NEWS: Update.

View File

@ -5,8 +5,8 @@ AC_PREREQ(2.57)
AC_INIT(gramps, 1.1.0, gramps-bugs@lists.sourceforge.net)
AC_CONFIG_SRCDIR(src/gramps.py)
AM_INIT_AUTOMAKE(1.6.3)
RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
dnl RELEASE=1
dnl RELEASE=0.CVS$(head -c 10 ${srcdir}/ChangeLog | tr -d '-')
RELEASE=1
VERSIONSTRING=$VERSION
if test x"$RELEASE" != "x"

View File

@ -867,14 +867,21 @@ class FamilyView:
dd = self.parent.db.find_event_from_id(self.person.get_death_id())
if bd and dd:
n = "%s\n\t%s %s\n\t%s %s " % (GrampsCfg.nameof(self.person),
_BORN,bd.get_date(),_DIED,dd.get_date())
n = "%s [%s]\n\t%s %s\n\t%s %s " % (GrampsCfg.nameof(self.person),
self.person.get_id(),
_BORN,bd.get_date(),
_DIED,dd.get_date())
elif bd:
n = "%s\n\t%s %s" % (GrampsCfg.nameof(self.person),_BORN,bd.get_date())
n = "%s [%s]\n\t%s %s" % (GrampsCfg.nameof(self.person),
self.person.get_id(),
_BORN,bd.get_date())
elif dd:
n = "%s\n\t%s %s" % (GrampsCfg.nameof(self.person),_DIED,dd.get_date())
n = "%s [%s]\n\t%s %s" % (GrampsCfg.nameof(self.person),
self.person.get_id(),
_DIED,dd.get_date())
else:
n = GrampsCfg.nameof(self.person)
n = "%s [%s]" % (GrampsCfg.nameof(self.person),
self.person.get_id())
self.ap_model.clear()
self.ap_data.get_selection().set_mode(gtk.SELECTION_NONE)
@ -915,9 +922,10 @@ class FamilyView:
mdate = " - %s" % event.get_date()
else:
mdate = ""
v = "%s\n\t%s%s" % (GrampsCfg.nameof(sp),
const.display_frel(fm.get_relationship()),
mdate)
v = "%s [%s]\n\t%s%s" % (GrampsCfg.nameof(sp),
sp.get_id(),
const.display_frel(fm.get_relationship()),
mdate)
self.spouse_model.set(iter,0,v)
else:
self.spouse_model.set(iter,0,"%s\n" % _("<double click to add spouse>"))
@ -974,7 +982,8 @@ class FamilyView:
def nameof(self,l,p,mode):
if p:
n = GrampsCfg.nameof(p)
return _("%s: %s\n\tRelationship: %s") % (l,n,_(mode))
pid = p.get_id()
return _("%s: %s [%s]\n\tRelationship: %s") % (l,n,pid,_(mode))
else:
return _("%s: unknown") % (l)

View File

@ -3351,7 +3351,7 @@ class GrampsDB:
def get_place_display(self,key):
# fix this up better
place = Place()
place.unserialize(self.place_map[key])
place.unserialize(self.place_map[str(key)])
return place.get_display_info()
def get_source_keys(self):