Example #1
0
 def getFatherName(rawRecord, useClean=False):
     return mkName(rawRecord["gfxn"])
Example #2
0
 def getFatherSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["ssfather"])
     else:
         return mkName(rawRecord["father's surname"])
Example #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"])
Example #5
0
 def getMotherName(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["sxmother"])
     else:
         return mkName(rawRecord["mother's forename"])
Example #6
0
 def getSurname(rawRecord, useClean=False):
     return mkName(rawRecord["groom's mother's maiden surname"])
Example #7
0
 def getName(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["spousexn"])
     else:
         return mkName(rawRecord["forename of spouse"])
Example #8
0
 def getMotherName(rawRecord, useClean=False):
     return mkName(rawRecord["gmxn"])
 def getSpouseOccupation(rawRecord, useClean=False):
     return mkName(rawRecord["groom's father's occupation"])
Example #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"])
Example #14
0
 def getSpouseSurname(rawRecord, useClean=False):
     return mkName(rawRecord["gsn"])
Example #15
0
 def getSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["spousesn"])
     else:
         return mkName(rawRecord["surname of spouse"])
Example #16
0
 def getFatherSurname(rawRecord, useClean=False):
     return mkName(rawRecord["bride's father's surname"])
Example #17
0
 def getSpouseName(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["sxdec"])
     else:
         return mkName(rawRecord["forename(s) of deceased"])
Example #18
0
 def getMotherSurname(rawRecord, useClean=False):
     return mkName(rawRecord["bride's mother's maiden surname"])
Example #19
0
 def getSpouseSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["ssdec"])
     else:
         return mkName(rawRecord["surname of deceased"])
Example #20
0
 def getMotherSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["ssmother"])
     else:
         return mkName(rawRecord["mother's maiden surname"])
Example #21
0
 def getSurname(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["sschild"])
     else:
         return mkName(rawRecord["child's surname"])
Example #22
0
 def getSpouseName(rawRecord, useClean=False):
     return mkName(rawRecord["gfxn"])
Example #23
0
 def getSpouseName(rawRecord, useClean=False):
     if useClean:
         return mkName(rawRecord["sxfather"])
     else:
         return mkName(rawRecord["father's forename"])
Example #24
0
 def getName(rawRecord, useClean=False):
     return mkName(rawRecord["bfxn"])
 def getMotherName(rawRecord, useClean=False):
     return mkName(rawRecord["mother's forename"])