2006-08-05 Alex Roitman <shura@gramps-project.org>
* src/Filters/Rules/Family/_MotherHasNameOf.py (apply): Handle missing parents. * src/Filters/Rules/Family/_MotherHasIdOf.py (apply): Handle missing parents. * src/Filters/Rules/Family/_FatherHasNameOf.py (apply): Handle missing parents. * src/Filters/Rules/Family/_FatherHasIdOf.py (apply): Handle missing parents. svn: r7134
This commit is contained in:
parent
117ba42c32
commit
f294e89110
@ -1,3 +1,13 @@
|
|||||||
|
2006-08-05 Alex Roitman <shura@gramps-project.org>
|
||||||
|
* src/Filters/Rules/Family/_MotherHasNameOf.py (apply): Handle
|
||||||
|
missing parents.
|
||||||
|
* src/Filters/Rules/Family/_MotherHasIdOf.py (apply): Handle
|
||||||
|
missing parents.
|
||||||
|
* src/Filters/Rules/Family/_FatherHasNameOf.py (apply): Handle
|
||||||
|
missing parents.
|
||||||
|
* src/Filters/Rules/Family/_FatherHasIdOf.py (apply): Handle
|
||||||
|
missing parents.
|
||||||
|
|
||||||
2006-08-04 Alex Roitman <shura@gramps-project.org>
|
2006-08-04 Alex Roitman <shura@gramps-project.org>
|
||||||
* src/Filters/SideBar: Add new module.
|
* src/Filters/SideBar: Add new module.
|
||||||
* src/Filters/Rules/Event/Makefile.am (pkgdata_PYTHON): Ship new files.
|
* src/Filters/Rules/Event/Makefile.am (pkgdata_PYTHON): Ship new files.
|
||||||
|
@ -51,4 +51,7 @@ class FatherHasIdOf(HasGrampsId):
|
|||||||
def apply(self,db,family):
|
def apply(self,db,family):
|
||||||
father_handle = family.get_father_handle()
|
father_handle = family.get_father_handle()
|
||||||
father = db.get_person_from_handle(father_handle)
|
father = db.get_person_from_handle(father_handle)
|
||||||
return HasGrampsId.apply(self,db,father)
|
if father:
|
||||||
|
return HasGrampsId.apply(self,db,father)
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
@ -50,4 +50,7 @@ class FatherHasNameOf(HasNameOf):
|
|||||||
def apply(self,db,family):
|
def apply(self,db,family):
|
||||||
father_handle = family.get_father_handle()
|
father_handle = family.get_father_handle()
|
||||||
father = db.get_person_from_handle(father_handle)
|
father = db.get_person_from_handle(father_handle)
|
||||||
return HasNameOf.apply(self,db,father)
|
if father:
|
||||||
|
return HasNameOf.apply(self,db,father)
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
@ -51,4 +51,7 @@ class MotherHasIdOf(HasGrampsId):
|
|||||||
def apply(self,db,family):
|
def apply(self,db,family):
|
||||||
mother_handle = family.get_mother_handle()
|
mother_handle = family.get_mother_handle()
|
||||||
mother = db.get_person_from_handle(mother_handle)
|
mother = db.get_person_from_handle(mother_handle)
|
||||||
return HasGrampsId.apply(self,db,mother)
|
if mother:
|
||||||
|
return HasGrampsId.apply(self,db,mother)
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
@ -50,4 +50,7 @@ class MotherHasNameOf(HasNameOf):
|
|||||||
def apply(self,db,family):
|
def apply(self,db,family):
|
||||||
mother_handle = family.get_mother_handle()
|
mother_handle = family.get_mother_handle()
|
||||||
mother = db.get_person_from_handle(mother_handle)
|
mother = db.get_person_from_handle(mother_handle)
|
||||||
return HasNameOf.apply(self,db,mother)
|
if mother:
|
||||||
|
return HasNameOf.apply(self,db,mother)
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
Loading…
Reference in New Issue
Block a user