示例#1
0
 def getFatherName(rawRecord, useClean=False):
     return mkName(rawRecord["gfxn"])
示例#2
0
 def getFatherSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["ssfather"])
     else:
         return mkName(rawRecord["father's surname"])
示例#3
0
 def getSpouseSurname(rawRecord, useClean=False):
     return mkName(rawRecord["groom's father's surname"])
 def getSpouseSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["ms"])
     else:
         return mkName(rawRecord["mother's maiden surname"])
示例#5
0
 def getMotherName(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["sxmother"])
     else:
         return mkName(rawRecord["mother's forename"])
示例#6
0
 def getSurname(rawRecord, useClean=False):
     return mkName(rawRecord["groom's mother's maiden surname"])
示例#7
0
 def getName(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["spousexn"])
     else:
         return mkName(rawRecord["forename of spouse"])
示例#8
0
 def getMotherName(rawRecord, useClean=False):
     return mkName(rawRecord["gmxn"])
 def getSpouseOccupation(rawRecord, useClean=False):
     return mkName(rawRecord["groom's father's occupation"])
示例#10
0
 def getName(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["sxchild"])
     else:
         return mkName(rawRecord["child's forname(s)"])
 def getSurname(rawRecord, useClean=False):
     return mkName(rawRecord["bs"])
 def getFatherName(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["fx"])
     else:
         return mkName(rawRecord["father's forename"])
 def getSpouseSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["fs"])
     else:
         return mkName(rawRecord["father's surname"])
示例#14
0
 def getSpouseSurname(rawRecord, useClean=False):
     return mkName(rawRecord["gsn"])
示例#15
0
 def getSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["spousesn"])
     else:
         return mkName(rawRecord["surname of spouse"])
示例#16
0
 def getFatherSurname(rawRecord, useClean=False):
     return mkName(rawRecord["bride's father's surname"])
示例#17
0
 def getSpouseName(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["sxdec"])
     else:
         return mkName(rawRecord["forename(s) of deceased"])
示例#18
0
 def getMotherSurname(rawRecord, useClean=False):
     return mkName(rawRecord["bride's mother's maiden surname"])
示例#19
0
 def getSpouseSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["ssdec"])
     else:
         return mkName(rawRecord["surname of deceased"])
示例#20
0
 def getMotherSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["ssmother"])
     else:
         return mkName(rawRecord["mother's maiden surname"])
示例#21
0
 def getSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["sschild"])
     else:
         return mkName(rawRecord["child's surname"])
示例#22
0
 def getSpouseName(rawRecord, useClean=False):
     return mkName(rawRecord["gfxn"])
示例#23
0
 def getSpouseName(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["sxfather"])
     else:
         return mkName(rawRecord["father's forename"])
示例#24
0
 def getName(rawRecord, useClean=False):
     return mkName(rawRecord["bfxn"])
 def getMotherName(rawRecord, useClean=False):
     return mkName(rawRecord["mother's forename"])