* src/GenericFilter.py: rewrote IsAncestorOf and IsDescendantOf rules

to be more efficient and to properly handle loop detection.
* src/RelLib.py: Added the getValidDeath and getValidBirth methods to
the Person class


svn: r1710
This commit is contained in:
Don Allingham
2003-06-12 02:04:42 +00:00
parent 91b3c84bee
commit 57bd52fd17
4 changed files with 85 additions and 54 deletions

View File

@@ -52,6 +52,7 @@ import GenericFilter
import Date
import sort
import Report
import Errors
from QuestionDialog import ErrorDialog
from intl import gettext as _
@@ -1162,11 +1163,11 @@ class WebReportDialog(Report.ReportDialog):
self.img_dir_text,self.template_name,
self.use_id,self.id_link,self.use_gendex,
self.html_ext)
MyReport.write_report()
except Errors.FilterError, msg:
(m1,m2) = msg.messages()
ErrorDialog(m1,m2)
MyReport.write_report()
#------------------------------------------------------------------------
#