Fixed OpenOfficeDoc formating problem (cnv not defined)
svn: r698
This commit is contained in:
parent
90c420c556
commit
4d12dcd254
@ -54,10 +54,10 @@ from intl import gettext
|
|||||||
_ = gettext
|
_ = gettext
|
||||||
|
|
||||||
_surname_styles = [
|
_surname_styles = [
|
||||||
_("North American (Father's surname)"),
|
_("Father's surname"),
|
||||||
_("None"),
|
_("None"),
|
||||||
_("Latin American (Combination of mother's and father's surname)"),
|
_("Latin American style (Combination of mother's and father's surname)"),
|
||||||
_("Icelandic (Father's surname with son/daughter indicator"),
|
_("Icelandic style (Father's surname with son/daughter indicator)"),
|
||||||
]
|
]
|
||||||
|
|
||||||
_date_format_list = [
|
_date_format_list = [
|
||||||
|
@ -233,7 +233,7 @@ class EditPerson:
|
|||||||
self.window.editable_enters(self.dplace);
|
self.window.editable_enters(self.dplace);
|
||||||
|
|
||||||
if Config.autocomp:
|
if Config.autocomp:
|
||||||
AutoComp.AutoComp(self.surname_field,const.surnames)
|
self.comp = AutoComp.AutoComp(self.surname_field,const.surnames)
|
||||||
|
|
||||||
self.gid.set_text(person.getId())
|
self.gid.set_text(person.getId())
|
||||||
self.gid.set_editable(Config.id_edit)
|
self.gid.set_editable(Config.id_edit)
|
||||||
|
@ -58,7 +58,7 @@ class Find:
|
|||||||
self.nlist.append(n.getPrimaryName().getName())
|
self.nlist.append(n.getPrimaryName().getName())
|
||||||
|
|
||||||
if Config.autocomp:
|
if Config.autocomp:
|
||||||
AutoComp.AutoComp(self.entry,self.nlist)
|
self.comp = AutoComp.AutoComp(self.entry,self.nlist)
|
||||||
|
|
||||||
self.next = self.xml.get_widget("next")
|
self.next = self.xml.get_widget("next")
|
||||||
self.top.editable_enters(self.entry)
|
self.top.editable_enters(self.entry)
|
||||||
|
@ -122,7 +122,7 @@ class OpenOfficeDoc(TextDoc):
|
|||||||
self.f.write(style_name + '.' + str(chr(ord('A')+col)) +'" ')
|
self.f.write(style_name + '.' + str(chr(ord('A')+col)) +'" ')
|
||||||
self.f.write('style:family="table-column">')
|
self.f.write('style:family="table-column">')
|
||||||
width = table_width * float(style.get_column_width(col)/100.0)
|
width = table_width * float(style.get_column_width(col)/100.0)
|
||||||
width_str = cnv("%.4f",width)
|
width_str = "%.4f" % width
|
||||||
self.f.write('<style:properties ')
|
self.f.write('<style:properties ')
|
||||||
self.f.write('style:column-width="%scm"/>' % width_str)
|
self.f.write('style:column-width="%scm"/>' % width_str)
|
||||||
self.f.write('</style:style>\n')
|
self.f.write('</style:style>\n')
|
||||||
@ -132,8 +132,7 @@ class OpenOfficeDoc(TextDoc):
|
|||||||
self.f.write(cell)
|
self.f.write(cell)
|
||||||
self.f.write('" style:family="table-cell">\n')
|
self.f.write('" style:family="table-cell">\n')
|
||||||
self.f.write('<style:properties')
|
self.f.write('<style:properties')
|
||||||
self.f.write(' fo:padding="%scm"' % \
|
self.f.write(' fo:padding="%.3fcm"' % cell_style.get_padding())
|
||||||
cnv("%.3f",cell_style.get_padding()))
|
|
||||||
if cell_style.get_top_border():
|
if cell_style.get_top_border():
|
||||||
self.f.write(' fo:border-top="0.002cm solid #000000"')
|
self.f.write(' fo:border-top="0.002cm solid #000000"')
|
||||||
else:
|
else:
|
||||||
@ -253,8 +252,8 @@ class OpenOfficeDoc(TextDoc):
|
|||||||
self.f.write('draw:name="')
|
self.f.write('draw:name="')
|
||||||
self.f.write(tag)
|
self.f.write(tag)
|
||||||
self.f.write('" text:anchor-type="paragraph" ')
|
self.f.write('" text:anchor-type="paragraph" ')
|
||||||
self.f.write('svg:width="%scm" ' % cnv("%.3f",x_cm*scale))
|
self.f.write('svg:width="%.3fcm" ' % x_cm*scale)
|
||||||
self.f.write('svg:height="%scm" ' % cnv("%.3f",y_cm*scale))
|
self.f.write('svg:height="%.3fcm" ' y_cm*scale)
|
||||||
self.f.write('draw:z-index="0" ')
|
self.f.write('draw:z-index="0" ')
|
||||||
self.f.write('xlink:href="#Pictures/')
|
self.f.write('xlink:href="#Pictures/')
|
||||||
self.f.write(base)
|
self.f.write(base)
|
||||||
@ -378,8 +377,7 @@ class OpenOfficeDoc(TextDoc):
|
|||||||
self.f.write('<style:properties ')
|
self.f.write('<style:properties ')
|
||||||
|
|
||||||
if style.get_padding() != 0.0:
|
if style.get_padding() != 0.0:
|
||||||
self.f.write('fo:padding="%scm" ' % \
|
self.f.write('fo:padding="%.3fcm" ' % style.get_padding())
|
||||||
cnv("%.3f",style.get_padding()))
|
|
||||||
|
|
||||||
align = style.get_alignment()
|
align = style.get_alignment()
|
||||||
if align == PARA_ALIGN_LEFT:
|
if align == PARA_ALIGN_LEFT:
|
||||||
@ -407,12 +405,9 @@ class OpenOfficeDoc(TextDoc):
|
|||||||
if font.get_underline():
|
if font.get_underline():
|
||||||
self.f.write('style:text-underline="single" ')
|
self.f.write('style:text-underline="single" ')
|
||||||
self.f.write('style:text-underline-color="font-color" ')
|
self.f.write('style:text-underline-color="font-color" ')
|
||||||
self.f.write('fo:text-indent="%scm" ' % \
|
self.f.write('fo:text-indent="%.2fcm" ' % style.get_first_indent())
|
||||||
cnv("%.2f",style.get_first_indent()))
|
self.f.write('fo:margin-right="%.2fcm" ' % style.get_right_margin())
|
||||||
self.f.write('fo:margin-right="%scm" ' % \
|
self.f.write('fo:margin-left="%.2fcm" ' % style.get_left_margin())
|
||||||
cnv("%.2f",style.get_right_margin()))
|
|
||||||
self.f.write('fo:margin-left="%scm" ' % \
|
|
||||||
cnv("%.2f",style.get_left_margin()))
|
|
||||||
self.f.write('fo:margin-top="0cm" ')
|
self.f.write('fo:margin-top="0cm" ')
|
||||||
self.f.write('fo:margin-bottom="0.212cm"')
|
self.f.write('fo:margin-bottom="0.212cm"')
|
||||||
self.f.write('/>\n')
|
self.f.write('/>\n')
|
||||||
@ -436,19 +431,17 @@ class OpenOfficeDoc(TextDoc):
|
|||||||
self.f.write('</office:styles>\n')
|
self.f.write('</office:styles>\n')
|
||||||
self.f.write('<office:automatic-styles>\n')
|
self.f.write('<office:automatic-styles>\n')
|
||||||
self.f.write('<style:page-master style:name="pm1">\n')
|
self.f.write('<style:page-master style:name="pm1">\n')
|
||||||
self.f.write('<style:properties fo:page-width="%scm" ' % \
|
self.f.write('<style:properties fo:page-width="%.3fcm" ' % self.width)
|
||||||
cnv("%.3f",self.width))
|
self.f.write('fo:page-height="%.3fcm" ' % self.height)
|
||||||
self.f.write('fo:page-height="%scm" ' % \
|
|
||||||
cnv("%.3f",self.height))
|
|
||||||
self.f.write('style:num-format="1" ')
|
self.f.write('style:num-format="1" ')
|
||||||
if self.orientation == PAPER_PORTRAIT:
|
if self.orientation == PAPER_PORTRAIT:
|
||||||
self.f.write('style:print-orientation="portrait" ')
|
self.f.write('style:print-orientation="portrait" ')
|
||||||
else:
|
else:
|
||||||
self.f.write('style:print-orientation="landscape" ')
|
self.f.write('style:print-orientation="landscape" ')
|
||||||
self.f.write('fo:margin-top="%scm" ' % cnv("%.2f",self.tmargin))
|
self.f.write('fo:margin-top="%.2fcm" ' % self.tmargin)
|
||||||
self.f.write('fo:margin-bottom="%scm" ' % cnv("%.2f",self.bmargin))
|
self.f.write('fo:margin-bottom="%.2fcm" ' % self.bmargin)
|
||||||
self.f.write('fo:margin-left="%scm" ' % cnv("%.2f",self.lmargin))
|
self.f.write('fo:margin-left="%.2fcm" ' % self.lmargin)
|
||||||
self.f.write('fo:margin-right="%scm" ' % cnv("%.2f",self.rmargin))
|
self.f.write('fo:margin-right="%.2fcm" ' % self.rmargin)
|
||||||
self.f.write('style:footnote-max-height="0cm">\n')
|
self.f.write('style:footnote-max-height="0cm">\n')
|
||||||
self.f.write('<style:footnote-sep style:width="0.018cm" ')
|
self.f.write('<style:footnote-sep style:width="0.018cm" ')
|
||||||
self.f.write('style:distance-before-sep="0.101cm" ')
|
self.f.write('style:distance-before-sep="0.101cm" ')
|
||||||
|
@ -157,7 +157,7 @@ def mk_thumb(source,dest,size):
|
|||||||
return
|
return
|
||||||
|
|
||||||
if not os.path.exists(source):
|
if not os.path.exists(source):
|
||||||
GnomeErrorDialog(_("Could not create a thumbnail for %s\nThe file has been moved or deleted") % filename)
|
GnomeErrorDialog(_("Could not create a thumbnail for %s\nThe file has been moved or deleted") % source)
|
||||||
|
|
||||||
if no_pil:
|
if no_pil:
|
||||||
cmd = "%s -geometry %dx%d '%s' '%s'" % (const.convert,size,size,source,dest)
|
cmd = "%s -geometry %dx%d '%s' '%s'" % (const.convert,size,size,source,dest)
|
||||||
|
@ -45,7 +45,13 @@ import sort
|
|||||||
import utils
|
import utils
|
||||||
import Config
|
import Config
|
||||||
import string
|
import string
|
||||||
|
import AutoComp
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# SelectChild
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
class SelectChild:
|
class SelectChild:
|
||||||
|
|
||||||
def __init__(self,db,family,person,redraw):
|
def __init__(self,db,family,person,redraw):
|
||||||
@ -235,9 +241,10 @@ class NewChild:
|
|||||||
self.mrel = self.xml.get_widget("mrel")
|
self.mrel = self.xml.get_widget("mrel")
|
||||||
self.frel = self.xml.get_widget("frel")
|
self.frel = self.xml.get_widget("frel")
|
||||||
self.top = self.xml.get_widget("addChild")
|
self.top = self.xml.get_widget("addChild")
|
||||||
self.surname = self.xml.get_widget("childSurname")
|
self.surname = self.xml.get_widget("surname")
|
||||||
self.given = self.xml.get_widget("childGiven")
|
self.given = self.xml.get_widget("childGiven")
|
||||||
utils.attach_surnames(self.xml.get_widget("surname_combo"))
|
if Config.autocomp:
|
||||||
|
self.comp = AutoComp.AutoComp(self.surname,const.surnames)
|
||||||
|
|
||||||
self.surname.set_text(self.update_surname(2))
|
self.surname.set_text(self.update_surname(2))
|
||||||
|
|
||||||
|
@ -519,114 +519,221 @@ familyRelations = initialize_family_relation_list()
|
|||||||
places = []
|
places = []
|
||||||
surnames = []
|
surnames = []
|
||||||
|
|
||||||
|
#
|
||||||
|
#Updated LDS Temple Codes from:
|
||||||
|
#http://www.geocities.com/rgpassey/temple/abclist.htm
|
||||||
|
#Confirmed against Temple Codes list recieved from Raliegh Temple
|
||||||
|
#Last update: 1/12/02
|
||||||
|
#
|
||||||
|
|
||||||
lds_temple_codes = {
|
lds_temple_codes = {
|
||||||
"Cardston, Alberta" : "ALBER",
|
"Aba, Nigeria" : "ABA", #1 Added
|
||||||
"Apia, Samoa" : "APIA",
|
"Accra, Ghana" : "ACCRA", #2 Added
|
||||||
"Mesa, Arizona" : "ARIZO",
|
"Adelaide, Australia" : "ADELA", #3 Added
|
||||||
"Atlanta Georgia" : "ATLAN",
|
"Albuquerque, New Mexico" : "ALBUQ", #4 Added
|
||||||
"Bogota Columbia" : "BOGOT",
|
"Anchorage, Alaska" : "ANCHO", #6 Added
|
||||||
"Boise Idaho" : "BOISE",
|
"Apia, Samoa" : "APIA", #7
|
||||||
"Bountiful Utah" : "BOUNT",
|
"Asuncion, Paraguay" : "ASUNC", #8 Added
|
||||||
"Buenos Aires, Argentina" : "BAIRE",
|
"Atlanta, Georgia" : "ATLAN", #9
|
||||||
"Chicago, Illinois" : "CHICA",
|
"Baton Rouge, Louisiana" : "BROUG", #10 Added
|
||||||
"Cochabamba, Boliva" : "COCHA",
|
"Bern, Switzerland" : "SWISS", #11
|
||||||
"Dallas, Texas" : "DALLA",
|
"Billings, Montana" : "BILLI", #12 Added
|
||||||
"Denver, Colorado" : "DENVE",
|
"Birmingham, Alabama" : "BIRMI", #13 Added
|
||||||
"Endowment House" : "EHOUS",
|
"Bismarck, North Dakota" : "BISMA", #14 Added
|
||||||
"Frankfurt, Germany" : "FRANK",
|
"Bogota, Columbia" : "BOGOT", #15
|
||||||
"Freiberg, Germany" : "FREIB",
|
"Boise, Idaho" : "BOISE", #16
|
||||||
"Guatamala City, Guatamala": "GUATE",
|
"Boston, Massachusetts" : "BOSTO", #17 Added
|
||||||
"Guayaquil, Ecuador" : "GUAYA",
|
"Bountiful, Utah" : "BOUNT", #18
|
||||||
"Hartford, Connecticut" : "HARTF",
|
"Brisban, Australia" : "BRISB", #19 Added
|
||||||
"Laie, Hawaii" : "HAWAI",
|
"Buenos Aires, Argentina" : "BAIRE", #20
|
||||||
"Hong Kong, China" : "HKONG",
|
"Campinas, Brazil" : "CAMPI", #21 Added
|
||||||
"Idaho Falls, Idaho" : "IFALL",
|
"Caracas, Venezuela" : "CARAC", #22 Added
|
||||||
"Johannesburg, South Africa" : "JOHAN",
|
"Cardston, Alberta" : "ALBER", #23
|
||||||
"Sourth Jordan, Utah" : "JRIVE",
|
"Chicago, Illinois" : "CHICA", #24
|
||||||
"Las Vegas, Nevada" : "LVEGA",
|
"Ciudad Juarez, Chihuahua" : "CIUJU", #25 Added
|
||||||
"Lima, Peru" : "LIMA" ,
|
"Cochabamba, Boliva" : "COCHA", #26
|
||||||
"Logan, Utah" : "LOGAN",
|
"Colonia Juarez, Chihuahua" : "COLJU", #27 Added
|
||||||
"London, England" : "LONDO",
|
"Columbia, South Carolina" : "COLSC", #28 Added
|
||||||
"Los Angeles, California" : "LANGE",
|
"Columbia River, Washington" : "CRIVE", #121 Added
|
||||||
"Madrid, Spain" : "MADRI",
|
"Columbus, Ohio" : "COLUM", #29 Added
|
||||||
"Manila, Philippines" : "MANIL",
|
"Copenhagen, Denmark" : "COPEN", #30 Added
|
||||||
"Manti, Utah" : "MANTI",
|
"Dallas, Texas" : "DALLA", #31
|
||||||
"Mexico City, Mexico" : "MEXIC",
|
"Denver, Colorado" : "DENVE", #32
|
||||||
"American Fork, Utah" : "MTIMP",
|
"Detroit, Michigan" : "DETRO", #33 Added
|
||||||
"Nashville, Tennessee" : "NASHV",
|
"Edmonton, Alberta" : "EDMON", #34 Added
|
||||||
"Nauvoo, Illinois" : "NAUVO",
|
"Frankfurt, Germany" : "FRANK", #35
|
||||||
"Hamilton, New Zealand" : "NZEAL",
|
"Fresno, California" : "FRESN", #36 Added
|
||||||
"Nuku'alofa, Tonga" : "NUKUA",
|
"Freiberg, Germany" : "FREIB", #37
|
||||||
"Oakland, California" : "OAKLA",
|
"Fukuoka, Japan" : "FUKUO", #38 Added
|
||||||
"Ogden, Utah" : "OGDEN",
|
"Guadalajara, Jalisco" : "GUADA", #39 Added
|
||||||
"Orlando, Florida" : "ORLAN",
|
"Guatamala City, Guatamala" : "GUATE", #40
|
||||||
"Papeete, Tahiti" : "PAPEE",
|
"Guayaquil, Ecuador" : "GUAYA", #41
|
||||||
"Portland, Oregon" : "PORTL",
|
"Halifax, Noca Scotia" : "HALIF", #42 Added
|
||||||
"President's Office" : "POFFI",
|
"Hamilton, New Zealand" : "NZEAL", #43
|
||||||
"Preston, England" : "PREST",
|
"Harrison, New York" : "NYORK", #44 Added
|
||||||
"Provo, Utah" : "PROVO",
|
"Hartford, Connecticut" : "HARTF", #Can not find in list used. ?
|
||||||
"Recife, Brazil" : "RECIF",
|
"Helsinki, Finland" : "HELSI", #45 Added
|
||||||
"Salt Lake City, Utah" : "SLAKE",
|
"Hermosillo, Sonora" : "HERMO", #46 Added
|
||||||
"San Diego, California" : "SDIEG",
|
"Hong Kong, China" : "HKONG", #47
|
||||||
"Santiago, Chile" : "SANTI",
|
"Houston, Texas" : "HOUST", #48 Added
|
||||||
"Santo Domingo, Dominican Republic" : "SDOMI",
|
"Idaho Falls, Idaho" : "IFALL", #49
|
||||||
"Sao Paulo, Brazil" : "SPAUL",
|
"Johannesburg, South Africa" : "JOHAN", #50
|
||||||
"Seattle, Washington" : "SEATT",
|
"Jordan River (South Jordan), Utah" : "JRIVE", #111
|
||||||
"Seoul, South Korea" : "SEOUL",
|
"Kialua Kona, Hawaii" : "KONA", #51 Added
|
||||||
"St. George, Utah" : "SGEOR",
|
"Kiev, Ukraine" : "KIEV", #52 Added
|
||||||
"St. Louis, Missouri" : "SLOUI",
|
"Laie, Hawaii" : "HAWAI", #54
|
||||||
"Stockholm, Sweden" : "STOCK",
|
"Las Vegas, Nevada" : "LVEGA", #55
|
||||||
"Bern, Switzerland" : "SWISS",
|
"Lima, Peru" : "LIMA" , #56
|
||||||
"Sydney, Australia" : "SYDNE",
|
"Logan, Utah" : "LOGAN", #57
|
||||||
"Taipei, Taiwan" : "TAIPE",
|
"London, England" : "LONDO", #58
|
||||||
"Tokyo, Japan" : "TOKYO",
|
"Los Angeles, California" : "LANGE", #59
|
||||||
"Toronto, Ontario" : "TORNO",
|
"Louisville, Kentucky" : "LOUIS", #60 Added
|
||||||
"Vernal, Utah" : "VERNA",
|
"Lubbock, Texas" : "LUBBO", #61 Added
|
||||||
"Washington, D.C." : "WASHI",
|
"Madrid, Spain" : "MADRI", #62
|
||||||
|
"Manila, Philippines" : "MANIL", #63
|
||||||
|
"Manti, Utah" : "MANTI", #64
|
||||||
|
"Medford, Oregon" : "MEDFO", #65 Added
|
||||||
|
"Melbourne, Australia" : "MELBO", #66 Added
|
||||||
|
"Melphis, Tennessee" : "MEMPH", #67 Added
|
||||||
|
"Merida, Yucatan" : "MERID", #68 Added
|
||||||
|
"Mesa, Arizona" : "ARIZO", #69
|
||||||
|
"Mexico City, Mexico" : "MEXIC", #70
|
||||||
|
"Monterrey, Nuevo Leon" : "MONTE", #71 Added
|
||||||
|
"Montevideo, Uruguay" : "MNTVD", #72
|
||||||
|
"Monticello, Utah" : "MONTI", #73 Added
|
||||||
|
"Montreal, Quebec" : "MONTR", #74 Added
|
||||||
|
"Mt. Timpanogos (American Fork), Utah" : "MTIMP", #5
|
||||||
|
"Nashville, Tennessee" : "NASHV", #75
|
||||||
|
"Nauvoo, Illinois" : "NAUVO", #76
|
||||||
|
"Nauvoo, Illinois (New)" : "NAUV2", #Rebuilt Added
|
||||||
|
"Newport Beach, California" : "NBEAC", #77 Added
|
||||||
|
"Nuku'alofa, Tonga" : "NUKUA", #78
|
||||||
|
"Oakland, California" : "OAKLA", #79
|
||||||
|
"Oaxaca, Oaxaca" : "OAKAC", #80 Added
|
||||||
|
"Ogden, Utah" : "OGDEN", #81
|
||||||
|
"Oklahoma City, Oklahoma" : "OKLAH", #82 Added
|
||||||
|
"Orlando, Florida" : "ORLAN", #84
|
||||||
|
"Palmayra, New York" : "PALMY", #85 Added
|
||||||
|
"Papeete, Tahiti" : "PAPEE", #86
|
||||||
|
"Perth, Australia" : "PERTH", #87 Added
|
||||||
|
"Portland, Oregon" : "PORTL", #88
|
||||||
|
"Porto Alegre, Brazil" : "PALEG", #89 Added
|
||||||
|
"Preston, England" : "PREST", #90
|
||||||
|
"Provo, Utah" : "PROVO", #91
|
||||||
|
"Raleigh, North Carolina" : "RALEI", #92 Added
|
||||||
|
"Recife, Brazil" : "RECIF", #93
|
||||||
|
"Redlands, California" : "REDLA", #94 Added
|
||||||
|
"Regina, Saskatchewan" : "REGIN", #95 Added
|
||||||
|
"Reno, Nevada" : "RENO", #96 Added
|
||||||
|
"Sacramento, California" : "SACRA", #97 Added
|
||||||
|
"St. George, Utah" : "SGEOR", #98
|
||||||
|
"St. Louis, Missouri" : "SLOUI", #99
|
||||||
|
"St. Paul, Minnesota" : "SPMIN", #100 Added
|
||||||
|
"Salt Lake City, Utah" : "SLAKE", #101
|
||||||
|
"San Diego, California" : "SDIEG", #102
|
||||||
|
"San Antonio, Texas" : "ANTON", #103 Added
|
||||||
|
"San Jose, Costa Rica" : "SJOSE", #104 Added
|
||||||
|
"Santiago, Chile" : "SANTI", #105
|
||||||
|
"Santo Domingo, Dominican Republic" : "SDOMI", #106
|
||||||
|
"Sao Paulo, Brazil" : "SPAUL", #107
|
||||||
|
"Seattle, Washington" : "SEATT", #108
|
||||||
|
"Seoul, South Korea" : "SEOUL", #109
|
||||||
|
"Snowflake, Arizona" : "SNOWF", #110 Added
|
||||||
|
"Spokane, Washington" : "SPOKA", #112
|
||||||
|
"Stockholm, Sweden" : "STOCK", #113
|
||||||
|
"Suva, Fiji" : "SUVA", #114 Added
|
||||||
|
"Sydney, Australia" : "SYDNE", #115
|
||||||
|
"Taipei, Taiwan" : "TAIPE", #116
|
||||||
|
"Tampico, Tamaulipas" : "TAMPI", #117 Added
|
||||||
|
"The Hague, Netherlands" : "HAGUE", #118 Added
|
||||||
|
"Tokyo, Japan" : "TOKYO", #119
|
||||||
|
"Toronto, Ontario" : "TORNO", #120
|
||||||
|
"Tuxtla Gutierrez, Chiapas" : "TGUTI", #122 Added
|
||||||
|
"Vera Cruz, Vera Cruz" : "VERAC", #123 Added
|
||||||
|
"Vernal, Utah" : "VERNA", #124
|
||||||
|
"Villahermosa, Tabasco" : "VILLA", #125 Added
|
||||||
|
"Washington, D.C." : "WASHI", #126
|
||||||
|
"Winter Quarters (Omaha), Nebraska" : "WINTE", #83 Added
|
||||||
|
#Other Places
|
||||||
|
"Endowment House" : "EHOUS", #Not a temple per se
|
||||||
|
"President's Office" : "POFFI", #Not a temple per se
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
lds_temple_to_abrev = {
|
lds_temple_to_abrev = {
|
||||||
"ALBER": "Cardston, Alberta",
|
"ABA" : "Aba, Nigeria",
|
||||||
|
"ACCRA": "Accra, Ghana",
|
||||||
|
"ADELA": "Adelaide, Australia",
|
||||||
|
"ALBUQ": "Albuquerque, New Mexico",
|
||||||
|
"ANCHO": "Anchorage, Alaska",
|
||||||
"APIA" : "Apia, Samoa",
|
"APIA" : "Apia, Samoa",
|
||||||
"AP" : "Apia, Samoa",
|
"AP" : "Apia, Samoa",
|
||||||
"ARIZO": "Mesa, Arizona",
|
"ASUNC": "Asuncion, Paraguay",
|
||||||
"AZ" : "Mesa, Arizona",
|
|
||||||
"ATLAN": "Atlanta, Georgia",
|
"ATLAN": "Atlanta, Georgia",
|
||||||
"AT" : "Atlanta, Georgia",
|
"AT" : "Atlanta, Georgia",
|
||||||
|
"BROUG": "Baton Rouge, Louisiana",
|
||||||
|
"SWISS": "Bern, Switzerland",
|
||||||
|
"SW" : "Bern, Switzerland",
|
||||||
|
"BILLI": "Billings, Montana",
|
||||||
|
"BIRMI": "Birmingham, Alabama",
|
||||||
|
"BISMA": "Bismarck, North Dakota",
|
||||||
"BOGOT": "Bogota, Columbia",
|
"BOGOT": "Bogota, Columbia",
|
||||||
"BG" : "Bogota, Columbia",
|
"BG" : "Bogota, Columbia",
|
||||||
"BOISE": "Boise Idaho",
|
"BOISE": "Boise Idaho",
|
||||||
"BO" : "Boise Idaho",
|
"BO" : "Boise Idaho",
|
||||||
|
"BOSTO": "Boston, Massachusetts",
|
||||||
"BOUNT": "Bountiful, Utah",
|
"BOUNT": "Bountiful, Utah",
|
||||||
|
"BRISB": "Brisban, Australia",
|
||||||
"BAIRE": "Buenos Aires, Argentina",
|
"BAIRE": "Buenos Aires, Argentina",
|
||||||
"BA" : "Buenos Aires, Argentina",
|
"BA" : "Buenos Aires, Argentina",
|
||||||
|
"CAMPI": "Campinas, Brazil",
|
||||||
|
"CARAC": "Caracas, Venezuela",
|
||||||
|
"ALBER": "Cardston, Alberta",
|
||||||
"CHICA": "Chicago, Illinois",
|
"CHICA": "Chicago, Illinois",
|
||||||
"CH" : "Chicago, Illinois",
|
"CH" : "Chicago, Illinois",
|
||||||
|
"CIUJU": "Ciudad Juarez, Chihuahua",
|
||||||
"COCHA": "Cochabamba, Boliva",
|
"COCHA": "Cochabamba, Boliva",
|
||||||
|
"COLJU": "Colonia Juarez, Chihuahua",
|
||||||
|
"COLSC": "Columbia, South Carolina",
|
||||||
|
"CRIVE": "Columbia River, Washington",
|
||||||
|
"COLUM": "Columbus, Ohio",
|
||||||
|
"COPEN": "Copenhagen, Denmark",
|
||||||
"DALLA": "Dallas, Texas",
|
"DALLA": "Dallas, Texas",
|
||||||
"DA" : "Dallas, Texas",
|
"DA" : "Dallas, Texas",
|
||||||
"DENVE": "Denver, Colorado",
|
"DENVE": "Denver, Colorado",
|
||||||
"DV" : "Denver, Colorado",
|
"DV" : "Denver, Colorado",
|
||||||
"EHOUS": "Endowment House",
|
"DETRO": "Detroit, Michigan",
|
||||||
"EH" : "Endowment House",
|
"EDMON": "Edmonton, Alberta",
|
||||||
"FRANK": "Frankfurt, Germany",
|
"FRANK": "Frankfurt, Germany",
|
||||||
"FR" : "Frankfurt, Germany",
|
"FR" : "Frankfurt, Germany",
|
||||||
|
"FRESN": "Fresno, California",
|
||||||
"FREIB": "Freiberg, Germany",
|
"FREIB": "Freiberg, Germany",
|
||||||
"FD" : "Freiberg, Germany",
|
"FD" : "Freiberg, Germany",
|
||||||
|
"FUKUO": "Fukuoka, Japan",
|
||||||
|
"GUADA": "Guadalajara, Jalisco",
|
||||||
"GUATE": "Guatamala City, Guatamala",
|
"GUATE": "Guatamala City, Guatamala",
|
||||||
"GA" : "Guatamala City, Guatamala",
|
"GA" : "Guatamala City, Guatamala",
|
||||||
"GUAYA": "Guayaquil, Ecuador",
|
"GUAYA": "Guayaquil, Ecuador",
|
||||||
"GY" : "Guayaquil, Ecuador",
|
"GY" : "Guayaquil, Ecuador",
|
||||||
|
"HALIF": "Halifax, Noca Scotia",
|
||||||
|
"NZEAL": "Hamilton, New Zealand",
|
||||||
|
"NZ" : "Hamilton, New Zealand",
|
||||||
|
"NYORK": "Harrison, New York",
|
||||||
"HARTF": "Hartford, Connecticut",
|
"HARTF": "Hartford, Connecticut",
|
||||||
"HAWAI": "Laie, Hawaii",
|
"HELSI": "Helsinki, Finland",
|
||||||
"HA" : "Laie, Hawaii",
|
"HERMO": "Hermosillo, Sonora",
|
||||||
"HKONG": "Hong Kong, China",
|
"HKONG": "Hong Kong, China",
|
||||||
|
"HOUST": "Houston, Texas",
|
||||||
"IFALL": "Idaho Falls, Idaho",
|
"IFALL": "Idaho Falls, Idaho",
|
||||||
"IF" : "Idaho Falls, Idaho",
|
|
||||||
"JOHAN": "Johannesburg, South Africa",
|
"JOHAN": "Johannesburg, South Africa",
|
||||||
"JO" : "Johannesburg, South Africa",
|
"JO" : "Johannesburg, South Africa",
|
||||||
"JRIVE": "South Jordan, Utah",
|
"JRIVE": "Jordan River (South Jordan), Utah",
|
||||||
"JR" : "South Jorhan, Utah",
|
"JR" : "Jordan River (South Jorhan), Utah",
|
||||||
|
"KONA" : "Kialua Kona, Hawaii",
|
||||||
|
"KIEV" : "Kiev, Ukraine",
|
||||||
|
"HAWAI": "Laie, Hawaii",
|
||||||
|
"HA" : "Laie, Hawaii",
|
||||||
"LVEGA": "Las Vegas, Nevada",
|
"LVEGA": "Las Vegas, Nevada",
|
||||||
"LV" : "Las Vegas, Nevada",
|
"LV" : "Las Vegas, Nevada",
|
||||||
"LIMA" : "Lima, Peru",
|
"LIMA" : "Lima, Peru",
|
||||||
@ -637,38 +744,65 @@ lds_temple_to_abrev = {
|
|||||||
"LD" : "London, England",
|
"LD" : "London, England",
|
||||||
"LANGE": "Los Angeles, California",
|
"LANGE": "Los Angeles, California",
|
||||||
"LA" : "Los Angeles, California",
|
"LA" : "Los Angeles, California",
|
||||||
|
"LOUIS": "Louisville, Kentucky",
|
||||||
|
"LUBBO": "Lubbock, Texas",
|
||||||
"MADRI": "Madrid, Spain",
|
"MADRI": "Madrid, Spain",
|
||||||
"MANIL": "Manila, Philippines",
|
"MANIL": "Manila, Philippines",
|
||||||
"MA" : "Manila, Philippines",
|
"MA" : "Manila, Philippines",
|
||||||
"MANTI": "Manti, Utah",
|
"MANTI": "Manti, Utah",
|
||||||
"MT" : "Manti, Utah",
|
"MT" : "Manti, Utah",
|
||||||
|
"MEDFO": "Medford, Oregon",
|
||||||
|
"MELBO": "Melbourne, Australia",
|
||||||
|
"MEMPH": "Melphis, Tennessee",
|
||||||
|
"MERID": "Merida, Yucatan",
|
||||||
|
"ARIZO": "Mesa, Arizona",
|
||||||
|
"AZ" : "Mesa, Arizona",
|
||||||
"MEXIC": "Mexico City, Mexico",
|
"MEXIC": "Mexico City, Mexico",
|
||||||
"MX" : "Mexico City, Mexico",
|
"MX" : "Mexico City, Mexico",
|
||||||
"MTIMP": "American Fork, Utah",
|
"MONTE": "Monterrey, Nuevo Leon, Mexico",
|
||||||
|
"MNTVD": "Montevideo, Uruguay",
|
||||||
|
"MONTI": "Monticello, Utah",
|
||||||
|
"MONTR": "Montreal, Quebec",
|
||||||
|
"MTIMP": "Mt. Timpanogos (American Fork), Utah",
|
||||||
"NASHV": "Nashville, Tennessee",
|
"NASHV": "Nashville, Tennessee",
|
||||||
"NAUVO": "Nauvoo, Illinois",
|
"NAUVO": "Nauvoo, Illinois",
|
||||||
"NZEAL": "Hamilton, New Zealand",
|
"NAUV2": "Nauvoo, Illinois (New)",
|
||||||
"NZ" : "Hamilton, New Zealand",
|
"NBEAC": "Newport Beach, California",
|
||||||
"NUKUA": "Nuku'alofa, Tonga",
|
"NUKUA": "Nuku'alofa, Tonga",
|
||||||
"TG" : "Nuku'alofa, Tonga",
|
"TG" : "Nuku'alofa, Tonga",
|
||||||
"OAKLA": "Oakland, California",
|
"OAKLA": "Oakland, California",
|
||||||
"OK" : "Oakland, California",
|
"OK" : "Oakland, California",
|
||||||
|
"OAKAC": "Oaxaca, Oaxaca",
|
||||||
"OGDEN": "Ogden, Utah",
|
"OGDEN": "Ogden, Utah",
|
||||||
"OG" : "Ogden, Utah",
|
"OG" : "Ogden, Utah",
|
||||||
|
"OKLAH": "Oklahoma City, Oklahoma",
|
||||||
"ORLAN": "Orlando, Florida",
|
"ORLAN": "Orlando, Florida",
|
||||||
|
"PALMY": "Palmayra, New York",
|
||||||
"PAPEE": "Papeete, Tahiti",
|
"PAPEE": "Papeete, Tahiti",
|
||||||
"TA" : "Papeete, Tahiti",
|
"TA" : "Papeete, Tahiti",
|
||||||
|
"PERTH": "Perth, Australia",
|
||||||
"PORTL": "Portland, Oregon",
|
"PORTL": "Portland, Oregon",
|
||||||
"PT" : "Portland, Oregon",
|
"PT" : "Portland, Oregon",
|
||||||
"POFFI": "President's Office",
|
"PALEG": "Porto Alegre, Brazil",
|
||||||
"PREST": "Preston, England",
|
"PREST": "Preston, England",
|
||||||
"PROVO": "Provo, Utah",
|
"PROVO": "Provo, Utah",
|
||||||
"PV" : "Provo, Utah",
|
"PV" : "Provo, Utah",
|
||||||
|
"RALEI": "Raleigh, North Carolina",
|
||||||
"RECIF": "Recife, Brazil",
|
"RECIF": "Recife, Brazil",
|
||||||
|
"REDLA": "Redlands, California",
|
||||||
|
"REGIN": "Regina, Saskatchewan",
|
||||||
|
"RENO" : "Reno, Nevada",
|
||||||
|
"SACRA": "Sacramento, California",
|
||||||
|
"SGEOR": "St. George, Utah",
|
||||||
|
"SG" : "St. George, Utah",
|
||||||
|
"SLOUI": "St. Louis, Missouri",
|
||||||
|
"SPMIN": "St. Paul, Minnesota",
|
||||||
"SLAKE": "Salt Lake City, Utah",
|
"SLAKE": "Salt Lake City, Utah",
|
||||||
"SL" : "Salt Lake City, Utah",
|
"SL" : "Salt Lake City, Utah",
|
||||||
"SDIEG": "San Diego, California",
|
"SDIEG": "San Diego, California",
|
||||||
"SA" : "San Diego, California",
|
"SA" : "San Diego, California",
|
||||||
|
"ANTON": "San Antonio, Texas",
|
||||||
|
"SJOSE": "San Jose, Costa Rica",
|
||||||
"SANTI": "Santiago, Chile",
|
"SANTI": "Santiago, Chile",
|
||||||
"SN" : "Santiago, Chile",
|
"SN" : "Santiago, Chile",
|
||||||
"SDOMI": "Santo Domingo, Dominican Republic",
|
"SDOMI": "Santo Domingo, Dominican Republic",
|
||||||
@ -678,24 +812,32 @@ lds_temple_to_abrev = {
|
|||||||
"SE" : "Seattle, Washington",
|
"SE" : "Seattle, Washington",
|
||||||
"SEOUL": "Seoul, South Korea",
|
"SEOUL": "Seoul, South Korea",
|
||||||
"SO" : "Seoul, South Korea",
|
"SO" : "Seoul, South Korea",
|
||||||
"SGEOR": "St. George, Utah",
|
"SNOWF": "Snowflake, Arizona",
|
||||||
"SG" : "St. George, Utah",
|
"SPOKA": "Spokane, Washington",
|
||||||
"SLOUI": "St. Louis, Missouri",
|
|
||||||
"STOCK": "Stockholm, Sweden",
|
"STOCK": "Stockholm, Sweden",
|
||||||
"ST" : "Stockholm, Sweden",
|
"ST" : "Stockholm, Sweden",
|
||||||
"SWISS": "Bern, Switzerland",
|
"SUVA" : "Suva, Fiji",
|
||||||
"SW" : "Bern, Switzerland",
|
|
||||||
"SYDNE": "Sydney, Australia",
|
"SYDNE": "Sydney, Australia",
|
||||||
"SD" : "Sydney, Australia",
|
"SD" : "Sydney, Australia",
|
||||||
"TAIPE": "Taipei, Taiwan",
|
"TAIPE": "Taipei, Taiwan",
|
||||||
"TP" : "Taipei, Taiwan",
|
"TP" : "Taipei, Taiwan",
|
||||||
|
"TAMPI": "Tampico, Tamaulipas",
|
||||||
|
"HAGUE": "The Hague, Netherlands",
|
||||||
"TOKYO": "Tokyo, Japan",
|
"TOKYO": "Tokyo, Japan",
|
||||||
"TK" : "Tokyo, Japan",
|
"TK" : "Tokyo, Japan",
|
||||||
"TORNO": "Toronto, Ontario",
|
"TORNO": "Toronto, Ontario",
|
||||||
"TR" : "Toronto, Ontario",
|
"TR" : "Toronto, Ontario",
|
||||||
|
"TGUTI": "Tuxtla Gutierrez, Chiapas",
|
||||||
|
"VERAC": "Vera Cruz, Vera Cruz",
|
||||||
"VERNA": "Vernal, Utah",
|
"VERNA": "Vernal, Utah",
|
||||||
|
"VILLA": "Villahermosa, Tabasco",
|
||||||
"WASHI": "Washington, D.C.",
|
"WASHI": "Washington, D.C.",
|
||||||
"WA" : "Washington, D.C.",
|
"WA" : "Washington, D.C.",
|
||||||
|
"WINTE": "Winter Quarters (Omaha), Nebraska",
|
||||||
|
#Other Places
|
||||||
|
"EHOUS": "Endowment House",
|
||||||
|
"EH" : "Endowment House",
|
||||||
|
"POFFI": "President's Office",
|
||||||
}
|
}
|
||||||
|
|
||||||
lds_status = {
|
lds_status = {
|
||||||
|
@ -6663,7 +6663,7 @@ Unknown
|
|||||||
<object>mcombo</object>
|
<object>mcombo</object>
|
||||||
<last_modification_time>Thu, 18 Oct 2001 01:59:11 GMT</last_modification_time>
|
<last_modification_time>Thu, 18 Oct 2001 01:59:11 GMT</last_modification_time>
|
||||||
</signal>
|
</signal>
|
||||||
<editable>True</editable>
|
<editable>False</editable>
|
||||||
<text_visible>True</text_visible>
|
<text_visible>True</text_visible>
|
||||||
<text_max_length>0</text_max_length>
|
<text_max_length>0</text_max_length>
|
||||||
<text>Birth</text>
|
<text>Birth</text>
|
||||||
@ -6763,7 +6763,7 @@ Unknown
|
|||||||
<object>fcombo</object>
|
<object>fcombo</object>
|
||||||
<last_modification_time>Thu, 18 Oct 2001 01:59:26 GMT</last_modification_time>
|
<last_modification_time>Thu, 18 Oct 2001 01:59:26 GMT</last_modification_time>
|
||||||
</signal>
|
</signal>
|
||||||
<editable>True</editable>
|
<editable>False</editable>
|
||||||
<text_visible>True</text_visible>
|
<text_visible>True</text_visible>
|
||||||
<text_max_length>0</text_max_length>
|
<text_max_length>0</text_max_length>
|
||||||
<text>Birth</text>
|
<text>Birth</text>
|
||||||
@ -6771,14 +6771,13 @@ Unknown
|
|||||||
</widget>
|
</widget>
|
||||||
|
|
||||||
<widget>
|
<widget>
|
||||||
<class>GtkCombo</class>
|
<class>GtkEntry</class>
|
||||||
<name>surname_combo</name>
|
<name>surname</name>
|
||||||
<value_in_list>False</value_in_list>
|
<can_focus>True</can_focus>
|
||||||
<ok_if_empty>True</ok_if_empty>
|
<editable>True</editable>
|
||||||
<case_sensitive>False</case_sensitive>
|
<text_visible>True</text_visible>
|
||||||
<use_arrows>True</use_arrows>
|
<text_max_length>0</text_max_length>
|
||||||
<use_arrows_always>False</use_arrows_always>
|
<text></text>
|
||||||
<items></items>
|
|
||||||
<child>
|
<child>
|
||||||
<left_attach>1</left_attach>
|
<left_attach>1</left_attach>
|
||||||
<right_attach>2</right_attach>
|
<right_attach>2</right_attach>
|
||||||
@ -6793,23 +6792,6 @@ Unknown
|
|||||||
<xfill>True</xfill>
|
<xfill>True</xfill>
|
||||||
<yfill>False</yfill>
|
<yfill>False</yfill>
|
||||||
</child>
|
</child>
|
||||||
|
|
||||||
<widget>
|
|
||||||
<class>GtkEntry</class>
|
|
||||||
<child_name>GtkCombo:entry</child_name>
|
|
||||||
<name>childSurname</name>
|
|
||||||
<can_focus>True</can_focus>
|
|
||||||
<signal>
|
|
||||||
<name>insert_text</name>
|
|
||||||
<handler>on_combo_insert_text</handler>
|
|
||||||
<object>surname_combo</object>
|
|
||||||
<last_modification_time>Thu, 01 Nov 2001 02:12:35 GMT</last_modification_time>
|
|
||||||
</signal>
|
|
||||||
<editable>True</editable>
|
|
||||||
<text_visible>True</text_visible>
|
|
||||||
<text_max_length>0</text_max_length>
|
|
||||||
<text></text>
|
|
||||||
</widget>
|
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
|
Loading…
Reference in New Issue
Block a user