Ready for 0.5.0 release

svn: r415
This commit is contained in:
Don Allingham
2001-09-18 23:43:53 +00:00
parent 5f07688c0c
commit 4d2571f0c0
8 changed files with 235 additions and 20 deletions

View File

@@ -2063,6 +2063,7 @@ def on_spouselist_changed(obj):
#-------------------------------------------------------------------------
def new_after_edit(epo):
database.addPerson(epo.person)
change_active_person(epo.person)
redisplay_person_list(epo.person)
#-------------------------------------------------------------------------

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -351,6 +351,9 @@ class AncestorReport:
generation = 0
need_header = 1
rptOpt.blankDate = reportOptions.No
rptOpt.blankPlace = reportOptions.No
for key in keys :
if generation == 0 or key >= 2**generation:
if self.pgbrk and generation > 0:

View File

@@ -141,7 +141,7 @@ def by_last_name(first, second) :
fsn = string.upper(name1.getSurname())
ssn = string.upper(name2.getSurname())
if first == second :
if fsn == ssn :
ffn = string.upper(name1.getFirstName())
sfn = string.upper(name2.getFirstName())
if ffn == sfn :