Use Today for living filter date, and use basedb for determining living status
svn: r15556
This commit is contained in:
parent
1f17db49c2
commit
713344f2f8
@ -36,7 +36,8 @@ Proxy class for the GRAMPS databases. Filter out all living people.
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
from proxybase import ProxyDbBase
|
from proxybase import ProxyDbBase
|
||||||
from gen.lib import Date, Person, Name
|
from gen.lib import Person, Name
|
||||||
|
from gen.lib.date import Today
|
||||||
from Utils import probably_alive
|
from Utils import probably_alive
|
||||||
import config
|
import config
|
||||||
|
|
||||||
@ -78,8 +79,7 @@ class LivingProxyDb(ProxyDbBase):
|
|||||||
ProxyDbBase.__init__(self, dbase)
|
ProxyDbBase.__init__(self, dbase)
|
||||||
self.mode = mode
|
self.mode = mode
|
||||||
if current_year is not None:
|
if current_year is not None:
|
||||||
self.current_date = Date()
|
self.current_date = Today()
|
||||||
self.current_date.set_year(current_year)
|
|
||||||
else:
|
else:
|
||||||
self.current_date = None
|
self.current_date = None
|
||||||
self.years_after_death = years_after_death
|
self.years_after_death = years_after_death
|
||||||
@ -192,7 +192,7 @@ class LivingProxyDb(ProxyDbBase):
|
|||||||
Returns False if the person is not considered living.
|
Returns False if the person is not considered living.
|
||||||
"""
|
"""
|
||||||
return probably_alive( person,
|
return probably_alive( person,
|
||||||
self.db,
|
self.basedb,
|
||||||
self.current_date,
|
self.current_date,
|
||||||
self.years_after_death )
|
self.years_after_death )
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user