2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2003-05-21 02:01:16 +05:30
|
|
|
# Copyright (C) 2000-2003 Donald N. Allingham
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
|
|
|
"Export to GEDCOM"
|
|
|
|
|
2002-12-30 06:12:47 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Standard Python Modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
import os
|
|
|
|
import string
|
|
|
|
import time
|
|
|
|
import re
|
|
|
|
|
2002-12-30 06:12:47 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GNOME/GTK modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
|
|
|
|
2002-12-30 06:12:47 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-01-15 10:55:50 +05:30
|
|
|
import RelLib
|
2002-12-30 06:12:47 +05:30
|
|
|
import GenericFilter
|
|
|
|
import const
|
|
|
|
import Utils
|
|
|
|
import Date
|
2003-01-08 10:28:00 +05:30
|
|
|
import Calendar
|
2003-01-10 10:51:32 +05:30
|
|
|
import Julian
|
|
|
|
import Hebrew
|
|
|
|
import FrenchRepublic
|
2003-01-15 10:55:50 +05:30
|
|
|
import GedcomInfo
|
2003-06-18 08:20:30 +05:30
|
|
|
import Errors
|
2003-01-19 11:55:20 +05:30
|
|
|
import ansel_utf8
|
2003-01-10 10:51:32 +05:30
|
|
|
|
2002-12-30 06:12:47 +05:30
|
|
|
from intl import gettext as _
|
2003-03-21 09:55:55 +05:30
|
|
|
from QuestionDialog import ErrorDialog
|
2002-12-30 06:12:47 +05:30
|
|
|
|
2003-07-16 00:47:17 +05:30
|
|
|
_title_string = _("Export to GEDCOM")
|
|
|
|
|
2003-01-19 11:55:20 +05:30
|
|
|
def keep_utf8(s):
|
|
|
|
return s
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-06-25 04:37:14 +05:30
|
|
|
def iso8859(s):
|
|
|
|
return s.encode('iso-8859-1')
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Calendar month names
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
_hmonth = [
|
2003-01-15 10:55:50 +05:30
|
|
|
"", "ELUL", "TSH", "CSH", "KSL", "TVT", "SHV", "ADR",
|
2002-10-20 19:55:16 +05:30
|
|
|
"ADS", "NSN", "IYR", "SVN", "TMZ", "AAV", "ELL" ]
|
|
|
|
|
|
|
|
_fmonth = [
|
|
|
|
"", "VEND", "BRUM", "FRIM", "NIVO", "PLUV", "VENT",
|
|
|
|
"GERM", "FLOR", "PRAI", "MESS", "THER", "FRUC", "COMP"]
|
|
|
|
|
|
|
|
_month = [
|
|
|
|
"", "JAN", "FEB", "MAR", "APR", "MAY", "JUN",
|
|
|
|
"JUL", "AUG", "SEP", "OCT", "NOV", "DEC" ]
|
|
|
|
|
|
|
|
_calmap = {
|
2003-01-10 10:51:32 +05:30
|
|
|
Hebrew.Hebrew.NAME : (_hmonth, '@#HEBREW@'),
|
|
|
|
FrenchRepublic.FrenchRepublic.NAME : (_fmonth, '@#FRENCH R@'),
|
|
|
|
Julian.Julian.NAME : (_month, '@#JULIAN@'),
|
2002-10-20 19:55:16 +05:30
|
|
|
}
|
|
|
|
|
2002-12-29 11:14:35 +05:30
|
|
|
_caldef = {
|
2003-01-08 10:28:00 +05:30
|
|
|
Calendar.ABOUT : "ABT",
|
|
|
|
Calendar.BEFORE : "BEF",
|
|
|
|
Calendar.AFTER : "AFT",
|
2002-12-29 11:14:35 +05:30
|
|
|
}
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-12-30 06:12:47 +05:30
|
|
|
_get_int = re.compile('([0-9]+)')
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def add_familys_sources(family,slist,private):
|
|
|
|
for event in family.getEventList():
|
|
|
|
if private and event.getPrivacy():
|
|
|
|
continue
|
|
|
|
for source_ref in event.getSourceRefList():
|
|
|
|
sbase = source_ref.getBase()
|
2002-12-30 06:12:47 +05:30
|
|
|
if sbase != None and not slist.has_key(sbase.getId()):
|
2002-10-20 19:55:16 +05:30
|
|
|
slist[sbase.getId()] = 1
|
|
|
|
for attr in family.getAttributeList():
|
|
|
|
if private and attr.getPrivacy():
|
|
|
|
continue
|
|
|
|
for source_ref in attr.getSourceRefList():
|
|
|
|
sbase = source_ref.getBase()
|
|
|
|
if sbase != None and not slist.has_key(sbase.getId()):
|
|
|
|
slist[sbase.getId()] = 1
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def add_persons_sources(person,slist,private):
|
|
|
|
elist = person.getEventList()[:]
|
|
|
|
|
|
|
|
elist.append(person.getBirth())
|
|
|
|
elist.append(person.getDeath())
|
|
|
|
for event in elist:
|
|
|
|
if private and event.getPrivacy():
|
|
|
|
continue
|
|
|
|
for source_ref in event.getSourceRefList():
|
|
|
|
sbase = source_ref.getBase()
|
|
|
|
if sbase != None and not slist.has_key(sbase.getId()):
|
|
|
|
slist[sbase.getId()] = 1
|
|
|
|
|
|
|
|
for event in person.getAddressList():
|
|
|
|
if private and event.getPrivacy():
|
|
|
|
continue
|
|
|
|
for source_ref in event.getSourceRefList():
|
|
|
|
sbase = source_ref.getBase()
|
|
|
|
if sbase != None and not slist.has_key(sbase.getId()):
|
|
|
|
slist[sbase.getId()] = 1
|
|
|
|
|
|
|
|
for event in person.getAttributeList():
|
|
|
|
if private and event.getPrivacy():
|
|
|
|
continue
|
|
|
|
for source_ref in event.getSourceRefList():
|
|
|
|
sbase = source_ref.getBase()
|
|
|
|
if sbase != None and not slist.has_key(sbase.getId()):
|
|
|
|
slist[sbase.getId()] = 1
|
|
|
|
|
|
|
|
for name in person.getAlternateNames() + [person.getPrimaryName()]:
|
|
|
|
if private and name.getPrivacy():
|
|
|
|
continue
|
|
|
|
for source_ref in name.getSourceRefList():
|
|
|
|
sbase = source_ref.getBase()
|
|
|
|
if sbase != None and not slist.has_key(sbase.getId()):
|
|
|
|
slist[sbase.getId()] = 1
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def addr_append(text,data):
|
|
|
|
if data:
|
|
|
|
return "%s, %s" % (text,data)
|
|
|
|
else:
|
|
|
|
return text
|
2003-01-08 10:28:00 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def sortById(first,second):
|
|
|
|
fid = first.getId()
|
|
|
|
sid = second.getId()
|
|
|
|
|
|
|
|
if fid == sid:
|
|
|
|
return 0
|
|
|
|
elif fid < sid:
|
|
|
|
return -1
|
|
|
|
else:
|
|
|
|
return 1
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2002-12-29 11:14:35 +05:30
|
|
|
def make_date(subdate):
|
2002-10-20 19:55:16 +05:30
|
|
|
retval = ""
|
|
|
|
day = subdate.getDay()
|
|
|
|
mon = subdate.getMonth()
|
|
|
|
year = subdate.getYear()
|
|
|
|
mode = subdate.getModeVal()
|
|
|
|
day_valid = subdate.getDayValid()
|
|
|
|
mon_valid = subdate.getMonthValid()
|
|
|
|
year_valid = subdate.getYearValid()
|
|
|
|
|
2003-01-10 10:51:32 +05:30
|
|
|
if _calmap.has_key(subdate.calendar.NAME):
|
|
|
|
(mmap,prefix) = _calmap[subdate.calendar.NAME]
|
2002-12-29 11:14:35 +05:30
|
|
|
else:
|
|
|
|
mmap = _month
|
|
|
|
prefix = ""
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
if not day_valid:
|
|
|
|
try:
|
|
|
|
if not mon_valid:
|
2002-12-30 06:12:47 +05:30
|
|
|
retval = '%d' % year
|
2002-10-20 19:55:16 +05:30
|
|
|
elif not year_valid:
|
2002-12-29 11:14:35 +05:30
|
|
|
retval = '(%s)' % mmap[mon]
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2002-12-30 06:12:47 +05:30
|
|
|
retval = "%s %d" % (mmap[mon],year)
|
2002-10-20 19:55:16 +05:30
|
|
|
except IndexError:
|
|
|
|
print "Month index error - %d" % mon
|
2002-12-30 06:12:47 +05:30
|
|
|
retval = '%d' % year
|
2002-10-20 19:55:16 +05:30
|
|
|
elif not mon_valid:
|
2002-12-30 06:12:47 +05:30
|
|
|
retval = '%d' % year
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
try:
|
|
|
|
month = mmap[mon]
|
|
|
|
if not year_valid:
|
2002-12-29 11:14:35 +05:30
|
|
|
retval = "(%d %s)" % (day,month)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
retval = "%d %s %d" % (day,month,year)
|
|
|
|
except IndexError:
|
|
|
|
print "Month index error - %d" % mon
|
|
|
|
retval = str(year)
|
2002-12-29 11:14:35 +05:30
|
|
|
|
|
|
|
if prefix:
|
|
|
|
retval = "%s %s" % (prefix, retval)
|
|
|
|
|
|
|
|
if _caldef.has_key(mode):
|
|
|
|
retval = "%s %s" % (_caldef[mode],retval)
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
return retval
|
|
|
|
|
2002-12-30 06:12:47 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-06-28 23:05:00 +05:30
|
|
|
def fmtline(text,limit,level,endl):
|
2002-10-20 19:55:16 +05:30
|
|
|
new_text = []
|
|
|
|
while len(text) > limit:
|
|
|
|
new_text.append(text[0:limit-1])
|
|
|
|
text = text[limit:]
|
|
|
|
if len(text) > 0:
|
|
|
|
new_text.append(text)
|
2003-06-28 23:05:00 +05:30
|
|
|
app = "%s%d CONC " % (endl,level+1)
|
2002-10-20 19:55:16 +05:30
|
|
|
return string.join(new_text,app)
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def gedcom_date(date):
|
|
|
|
if date.range == 1:
|
|
|
|
s1 = ged_subdate(date.get_start_date())
|
|
|
|
s2 = ged_subdate(date.get_stop_date())
|
|
|
|
return "BET %s AND %s" % (s1,s2)
|
|
|
|
elif date.range == -1:
|
|
|
|
return "(%s)" % date.text
|
|
|
|
else:
|
|
|
|
return ged_subdate(date.start)
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def ged_subdate(date):
|
|
|
|
|
|
|
|
if not date.getValid():
|
|
|
|
return ""
|
|
|
|
elif not date.getDayValid():
|
|
|
|
try:
|
|
|
|
if not date.getMonthValid():
|
|
|
|
retval = str(date.year)
|
|
|
|
elif not date.getYearValid():
|
|
|
|
retval = "(%s)" % Date.SingleDate.emname[date.month]
|
|
|
|
else:
|
|
|
|
retval = "%s %d" % (Date.SingleDate.emname[date.month],date.year)
|
|
|
|
except IndexError:
|
|
|
|
print "Month index error - %d" % date.month
|
|
|
|
retval = str(date.year)
|
|
|
|
elif not date.getMonthValid():
|
|
|
|
retval = str(date.year)
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
month = Date.SingleDate.emname[date.month]
|
|
|
|
if not date.getYearValid():
|
|
|
|
retval = "(%d %s)" % (date.day,month)
|
|
|
|
else:
|
|
|
|
retval = "%d %s %d" % (date.day,month,date.year)
|
|
|
|
except IndexError:
|
|
|
|
print "Month index error - %d" % date.month
|
|
|
|
retval = str(date.year)
|
|
|
|
|
|
|
|
if date.mode == Date.SingleDate.about:
|
|
|
|
retval = "ABT %s" % retval
|
|
|
|
|
|
|
|
if date.mode == Date.SingleDate.before:
|
|
|
|
retval = "BEF %s" % retval
|
|
|
|
elif date.mode == Date.SingleDate.after:
|
|
|
|
retval = "AFT %s" % retval
|
|
|
|
|
|
|
|
return retval
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def writeData(database,person):
|
|
|
|
try:
|
|
|
|
GedcomWriter(database,person)
|
|
|
|
except:
|
|
|
|
import DisplayTrace
|
|
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class GedcomWriter:
|
|
|
|
"""Writes a GEDCOM file from the passed database"""
|
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
def __init__(self,db,person,cl=0,name=""):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.db = db
|
|
|
|
self.person = person
|
|
|
|
self.restrict = 1
|
|
|
|
self.private = 1
|
2003-01-19 11:55:20 +05:30
|
|
|
self.cnvtxt = ansel_utf8.utf8_to_ansel
|
2002-10-20 19:55:16 +05:30
|
|
|
self.plist = {}
|
|
|
|
self.slist = {}
|
|
|
|
self.flist = {}
|
2003-01-15 10:55:50 +05:30
|
|
|
self.adopt = GedcomInfo.ADOPT_EVENT
|
2002-10-20 19:55:16 +05:30
|
|
|
self.fidval = 0
|
|
|
|
self.fidmap = {}
|
|
|
|
self.pidval = 0
|
|
|
|
self.pidmap = {}
|
|
|
|
self.sidval = 0
|
|
|
|
self.sidmap = {}
|
2003-05-21 02:01:16 +05:30
|
|
|
self.cl = cl
|
|
|
|
self.name = name
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
if self.cl:
|
|
|
|
self.cl_setup()
|
|
|
|
else:
|
|
|
|
glade_file = "%s/gedcomexport.glade" % os.path.dirname(__file__)
|
|
|
|
|
|
|
|
self.topDialog = gtk.glade.XML(glade_file,"gedcomExport")
|
|
|
|
self.topDialog.signal_autoconnect({
|
|
|
|
"destroy_passed_object" : Utils.destroy_passed_object,
|
|
|
|
"gnu_free" : self.gnu_free,
|
|
|
|
"standard_copyright" : self.standard_copyright,
|
|
|
|
"no_copyright" : self.no_copyright,
|
2003-07-22 15:44:49 +05:30
|
|
|
"on_restrict_toggled": self.on_restrict_toggled,
|
2003-05-21 02:01:16 +05:30
|
|
|
"on_ok_clicked" : self.on_ok_clicked
|
|
|
|
})
|
|
|
|
|
|
|
|
Utils.set_titles(self.topDialog.get_widget('gedcomExport'),
|
|
|
|
self.topDialog.get_widget('title'),
|
|
|
|
_('GEDCOM export'))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
filter_obj = self.topDialog.get_widget("filter")
|
|
|
|
self.copy = 0
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
all = GenericFilter.GenericFilter()
|
|
|
|
all.set_name(_("Entire Database"))
|
|
|
|
all.add_rule(GenericFilter.Everyone([]))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
des = GenericFilter.GenericFilter()
|
|
|
|
des.set_name(_("Descendants of %s") % person.getPrimaryName().getName())
|
|
|
|
des.add_rule(GenericFilter.IsDescendantOf([person.getId()]))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
ans = GenericFilter.GenericFilter()
|
|
|
|
ans.set_name(_("Ancestors of %s") % person.getPrimaryName().getName())
|
|
|
|
ans.add_rule(GenericFilter.IsAncestorOf([person.getId()]))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
com = GenericFilter.GenericFilter()
|
|
|
|
com.set_name(_("People with common ancestor with %s") %
|
|
|
|
person.getPrimaryName().getName())
|
|
|
|
com.add_rule(GenericFilter.HasCommonAncestorWith([person.getId()]))
|
2003-01-08 10:28:00 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
self.filter_menu = GenericFilter.build_filter_menu([all,des,ans,com])
|
|
|
|
filter_obj.set_menu(self.filter_menu)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
gedmap = GedcomInfo.GedcomInfoDB()
|
2003-06-28 23:05:00 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
target_obj = self.topDialog.get_widget("target")
|
|
|
|
myMenu = gtk.Menu()
|
|
|
|
for name in gedmap.get_name_list():
|
|
|
|
menuitem = gtk.MenuItem(name)
|
|
|
|
myMenu.append(menuitem)
|
|
|
|
data = gedmap.get_description(name)
|
|
|
|
menuitem.set_data("data",data)
|
|
|
|
menuitem.show()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
target_obj.set_menu(myMenu)
|
|
|
|
self.target_menu = myMenu
|
2002-11-12 09:42:18 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
pathname = "%s.ged" % os.path.dirname(db.getSavePath())
|
2002-11-12 09:42:18 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
filetgt = self.topDialog.get_widget('fileentry1')
|
|
|
|
filetgt.set_filename(pathname)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
self.topDialog.get_widget("gedcomExport").show()
|
|
|
|
|
2003-02-12 09:55:27 +05:30
|
|
|
def gnu_free(self,obj):
|
|
|
|
self.copy = 1
|
|
|
|
|
|
|
|
def standard_copyright(self,obj):
|
|
|
|
self.copy = 0
|
|
|
|
|
|
|
|
def no_copyright(self,obj):
|
|
|
|
self.copy = 2
|
2003-07-22 15:44:49 +05:30
|
|
|
|
|
|
|
def on_restrict_toggled(self,restrict):
|
2003-07-23 19:45:34 +05:30
|
|
|
active = restrict.get_active ()
|
|
|
|
map (lambda x: x.set_sensitive (active),
|
|
|
|
[self.topDialog.get_widget("living"),
|
|
|
|
self.topDialog.get_widget("notes"),
|
|
|
|
self.topDialog.get_widget("sources")])
|
2003-07-22 15:44:49 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def on_ok_clicked(self,obj):
|
|
|
|
|
|
|
|
self.restrict = self.topDialog.get_widget("restrict").get_active()
|
2003-07-22 15:44:49 +05:30
|
|
|
self.living = (self.restrict and
|
|
|
|
self.topDialog.get_widget("living").get_active())
|
2003-07-23 19:45:34 +05:30
|
|
|
self.exclnotes = (self.restrict and
|
|
|
|
self.topDialog.get_widget("notes").get_active())
|
|
|
|
self.exclsrcs = (self.restrict and
|
|
|
|
self.topDialog.get_widget("sources").get_active())
|
2002-10-20 19:55:16 +05:30
|
|
|
self.private = self.topDialog.get_widget("private").get_active()
|
|
|
|
|
|
|
|
cfilter = self.filter_menu.get_active().get_data("filter")
|
|
|
|
act_tgt = self.target_menu.get_active()
|
|
|
|
|
|
|
|
self.target_ged = act_tgt.get_data("data")
|
|
|
|
|
|
|
|
self.dest = self.target_ged.get_dest()
|
|
|
|
self.adopt = self.target_ged.get_adopt()
|
|
|
|
self.conc = self.target_ged.get_conc()
|
|
|
|
self.altname = self.target_ged.get_alt_name()
|
|
|
|
self.cal = self.target_ged.get_alt_calendar()
|
|
|
|
self.obje = self.target_ged.get_obje()
|
|
|
|
self.resi = self.target_ged.get_resi()
|
2002-12-04 10:28:07 +05:30
|
|
|
self.prefix = self.target_ged.get_prefix()
|
2003-01-03 08:49:50 +05:30
|
|
|
self.source_refs = self.target_ged.get_source_refs()
|
2002-12-04 10:28:07 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
if self.topDialog.get_widget("ansel").get_active():
|
2003-01-19 11:55:20 +05:30
|
|
|
self.cnvtxt = ansel_utf8.utf8_to_ansel
|
2003-06-25 04:37:14 +05:30
|
|
|
elif self.topDialog.get_widget("ansi").get_active():
|
|
|
|
self.cnvtxt = iso8859
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2003-01-19 11:55:20 +05:30
|
|
|
self.cnvtxt = keep_utf8
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-06-29 02:51:13 +05:30
|
|
|
self.nl = self.cnvtxt(self.target_ged.get_endl())
|
2002-10-20 19:55:16 +05:30
|
|
|
name = self.topDialog.get_widget("filename").get_text()
|
|
|
|
|
|
|
|
if cfilter == None:
|
|
|
|
for p in self.db.getPersonKeys():
|
|
|
|
self.plist[p] = 1
|
|
|
|
else:
|
2003-06-18 08:20:30 +05:30
|
|
|
try:
|
|
|
|
for p in cfilter.apply(self.db, self.db.getPersonMap().values()):
|
|
|
|
self.plist[p.getId()] = 1
|
|
|
|
except Errors.FilterError, msg:
|
|
|
|
(m1,m2) = msg.messages()
|
|
|
|
ErrorDialog(m1,m2)
|
|
|
|
return
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.flist = {}
|
|
|
|
self.slist = {}
|
|
|
|
for key in self.plist.keys():
|
|
|
|
p = self.db.getPerson(key)
|
|
|
|
add_persons_sources(p,self.slist,self.private)
|
|
|
|
for family in p.getFamilyList():
|
|
|
|
add_familys_sources(family,self.slist,self.private)
|
|
|
|
self.flist[family.getId()] = 1
|
|
|
|
|
|
|
|
Utils.destroy_passed_object(obj)
|
|
|
|
|
|
|
|
glade_file = "%s/gedcomexport.glade" % os.path.dirname(__file__)
|
|
|
|
|
|
|
|
self.exprogress = gtk.glade.XML(glade_file,"exportprogress")
|
|
|
|
self.exprogress.signal_autoconnect({
|
|
|
|
"on_close_clicked" : Utils.destroy_passed_object
|
|
|
|
})
|
|
|
|
|
2003-03-21 09:55:55 +05:30
|
|
|
Utils.set_titles(self.exprogress.get_widget('exportprogress'),
|
|
|
|
self.exprogress.get_widget('title'),
|
2003-03-17 10:51:40 +05:30
|
|
|
_('GEDCOM export'))
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.fbar = self.exprogress.get_widget("fbar")
|
|
|
|
self.pbar = self.exprogress.get_widget("pbar")
|
|
|
|
self.sbar = self.exprogress.get_widget("sbar")
|
|
|
|
self.progress = self.exprogress.get_widget('exportprogress')
|
|
|
|
|
|
|
|
closebtn = self.exprogress.get_widget("close")
|
|
|
|
closebtn.connect("clicked",Utils.destroy_passed_object)
|
|
|
|
closebtn.set_sensitive(0)
|
|
|
|
|
|
|
|
self.export_data(name)
|
|
|
|
closebtn.set_sensitive(1)
|
|
|
|
|
2003-05-21 02:01:16 +05:30
|
|
|
def cl_setup(self):
|
|
|
|
self.restrict = 0
|
|
|
|
self.private = 0
|
|
|
|
self.copy = 0
|
|
|
|
|
|
|
|
for p in self.db.getPersonKeys():
|
|
|
|
self.plist[p] = 1
|
|
|
|
|
|
|
|
gedmap = GedcomInfo.GedcomInfoDB()
|
|
|
|
self.target_ged = gedmap.standard
|
|
|
|
|
|
|
|
self.dest = self.target_ged.get_dest()
|
|
|
|
self.adopt = self.target_ged.get_adopt()
|
|
|
|
self.conc = self.target_ged.get_conc()
|
|
|
|
self.altname = self.target_ged.get_alt_name()
|
|
|
|
self.cal = self.target_ged.get_alt_calendar()
|
|
|
|
self.obje = self.target_ged.get_obje()
|
|
|
|
self.resi = self.target_ged.get_resi()
|
|
|
|
self.prefix = self.target_ged.get_prefix()
|
|
|
|
self.source_refs = self.target_ged.get_source_refs()
|
|
|
|
|
|
|
|
self.cnvtxt = keep_utf8
|
|
|
|
|
|
|
|
self.flist = {}
|
|
|
|
self.slist = {}
|
|
|
|
|
|
|
|
for key in self.plist.keys():
|
|
|
|
p = self.db.getPerson(key)
|
|
|
|
add_persons_sources(p,self.slist,self.private)
|
|
|
|
for family in p.getFamilyList():
|
|
|
|
add_familys_sources(family,self.slist,self.private)
|
|
|
|
self.flist[family.getId()] = 1
|
|
|
|
|
|
|
|
self.export_data(self.name)
|
|
|
|
|
2003-06-28 23:05:00 +05:30
|
|
|
def writeln(self,text):
|
|
|
|
self.g.write('%s%s' % (text,self.nl))
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def export_data(self,filename):
|
|
|
|
try:
|
|
|
|
self.g = open(filename,"w")
|
|
|
|
except IOError,msg:
|
2003-03-21 09:55:55 +05:30
|
|
|
msg2 = _("Could not create %s") % filename
|
|
|
|
ErrorDialog(msg2,str(msg))
|
2002-10-20 19:55:16 +05:30
|
|
|
self.progress.destroy()
|
|
|
|
return
|
|
|
|
except:
|
2003-03-21 09:55:55 +05:30
|
|
|
ErrorDialog(_("Could not create %s") % filename)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.progress.destroy()
|
|
|
|
return
|
|
|
|
|
|
|
|
date = string.split(time.ctime(time.time()))
|
|
|
|
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("0 HEAD")
|
|
|
|
self.writeln("1 SOUR GRAMPS")
|
|
|
|
self.writeln("2 VERS %s" % const.version)
|
|
|
|
self.writeln("2 NAME GRAMPS")
|
2002-10-20 19:55:16 +05:30
|
|
|
if self.dest:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 DEST %s" % self.dest)
|
|
|
|
self.writeln("1 DATE %s %s %s" % (date[2],string.upper(date[1]),date[4]))
|
2003-01-19 11:55:20 +05:30
|
|
|
if self.cnvtxt == ansel_utf8.utf8_to_ansel:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 CHAR ANSEL")
|
2003-06-25 04:37:14 +05:30
|
|
|
elif self.cnvtxt == iso8859:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 CHAR ANSI")
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 CHAR UTF-8")
|
|
|
|
self.writeln("1 SUBM @SUBM@")
|
|
|
|
self.writeln("1 FILE %s" % filename)
|
2003-02-12 09:55:27 +05:30
|
|
|
self.write_copy()
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 GEDC")
|
|
|
|
self.writeln("2 VERS 5.5")
|
|
|
|
self.writeln('2 FORM LINEAGE-LINKED')
|
2003-02-12 09:55:27 +05:30
|
|
|
self.gnu_fdl()
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("0 @SUBM@ SUBM")
|
2002-10-20 19:55:16 +05:30
|
|
|
owner = self.db.getResearcher()
|
2002-12-30 06:12:47 +05:30
|
|
|
if owner.getName():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 NAME %s" % self.cnvtxt(owner.getName()))
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('1 NAME Not Provided')
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2002-12-30 06:12:47 +05:30
|
|
|
if owner.getAddress():
|
2002-10-20 19:55:16 +05:30
|
|
|
cnt = 0
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 ADDR %s" % self.cnvtxt(owner.getAddress()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if owner.getCity():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 CONT %s" % self.cnvtxt(owner.getCity()))
|
2002-10-20 19:55:16 +05:30
|
|
|
cnt = 1
|
2002-12-30 06:12:47 +05:30
|
|
|
if owner.getState():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 CONT %s" % self.cnvtxt(owner.getState()))
|
2002-10-20 19:55:16 +05:30
|
|
|
cnt = 1
|
2002-12-30 06:12:47 +05:30
|
|
|
if owner.getPostalCode():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 CONT %s" % self.cnvtxt(owner.getPostalCode()))
|
2002-10-20 19:55:16 +05:30
|
|
|
cnt = 1
|
2002-12-30 06:12:47 +05:30
|
|
|
if owner.getCountry():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 CONT %s" % self.cnvtxt(owner.getCountry()))
|
2002-10-20 19:55:16 +05:30
|
|
|
cnt = 1
|
2002-12-30 06:12:47 +05:30
|
|
|
if owner.getPhone():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 PHON %s" % self.cnvtxt(owner.getPhone()))
|
2002-10-20 19:55:16 +05:30
|
|
|
cnt = 1
|
|
|
|
if cnt == 0:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('2 CONT Not Provided')
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('1 ADDR Not Provided')
|
|
|
|
self.writeln('2 CONT Not Provided')
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
pkeys = self.plist.keys()
|
|
|
|
pkeys.sort()
|
|
|
|
nump = float(len(self.plist))
|
|
|
|
index = 0.0
|
|
|
|
for key in pkeys:
|
|
|
|
self.write_person(self.db.getPerson(key))
|
|
|
|
index = index + 1
|
2003-05-21 02:01:16 +05:30
|
|
|
if index%100 == 0 and not self.cl:
|
2002-12-30 06:12:47 +05:30
|
|
|
self.pbar.set_fraction(index/nump)
|
2002-10-20 19:55:16 +05:30
|
|
|
while(gtk.events_pending()):
|
|
|
|
gtk.mainiteration()
|
2003-05-21 02:01:16 +05:30
|
|
|
if not self.cl:
|
|
|
|
self.pbar.set_fraction(1.0)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.write_families()
|
2003-01-03 08:49:50 +05:30
|
|
|
if self.source_refs:
|
|
|
|
self.write_sources()
|
|
|
|
else:
|
2003-05-21 02:01:16 +05:30
|
|
|
if not self.cl:
|
|
|
|
self.sbar.set_fraction(1.0)
|
2003-01-08 10:28:00 +05:30
|
|
|
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("0 TRLR")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.g.close()
|
|
|
|
|
2003-02-12 09:55:27 +05:30
|
|
|
def write_copy(self):
|
|
|
|
import time
|
|
|
|
|
|
|
|
t = time.localtime(time.time())
|
|
|
|
y = t[0]
|
|
|
|
|
|
|
|
if self.copy == 0:
|
|
|
|
o = self.db.getResearcher().getName()
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('1 COPR Copyright (c) %d %s.' % (y,o))
|
2003-02-12 09:55:27 +05:30
|
|
|
elif self.copy == 1:
|
|
|
|
o = self.db.getResearcher().getName()
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('1 COPR Copyright (c) %d %s. See additional copyright NOTE below.' % (y,o))
|
2003-02-12 09:55:27 +05:30
|
|
|
|
|
|
|
def gnu_fdl(self):
|
|
|
|
import time
|
|
|
|
|
|
|
|
if self.copy != 1:
|
|
|
|
return
|
|
|
|
|
|
|
|
t = time.localtime(time.time())
|
|
|
|
y = t[0]
|
|
|
|
o = self.db.getResearcher().getName()
|
|
|
|
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('1 NOTE Copyright (c) %d %s.' % (y,o))
|
2003-02-12 09:55:27 +05:30
|
|
|
try:
|
|
|
|
f = open(const.fdl,"r")
|
|
|
|
for line in f.readlines():
|
|
|
|
self.g.write('2 CONT %s' % line)
|
|
|
|
f.close()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def write_families(self):
|
|
|
|
nump = float(len(self.flist))
|
|
|
|
index = 0.0
|
|
|
|
for key in self.flist.keys():
|
|
|
|
family = self.db.getFamily(key)
|
|
|
|
father_alive = mother_alive = 0
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("0 @%s@ FAM" % self.fid(family.getId()))
|
2002-10-20 19:55:16 +05:30
|
|
|
self.prefn(family)
|
|
|
|
person = family.getFather()
|
|
|
|
if person != None and self.plist.has_key(person.getId()):
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 HUSB @%s@" % self.pid(person.getId()))
|
2002-10-20 19:55:16 +05:30
|
|
|
father_alive = person.probablyAlive()
|
|
|
|
|
|
|
|
person = family.getMother()
|
|
|
|
if person != None and self.plist.has_key(person.getId()):
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 WIFE @%s@" % self.pid(person.getId()))
|
2002-10-20 19:55:16 +05:30
|
|
|
mother_alive = person.probablyAlive()
|
|
|
|
|
|
|
|
if not self.restrict or ( not father_alive and not mother_alive ):
|
|
|
|
self.write_ord("SLGS",family.getLdsSeal(),1,const.lds_ssealing)
|
|
|
|
|
|
|
|
for event in family.getEventList():
|
|
|
|
if self.private and event.getPrivacy():
|
|
|
|
continue
|
|
|
|
name = event.getName()
|
|
|
|
val = ""
|
|
|
|
if const.familyConstantEvents.has_key(name):
|
|
|
|
val = const.familyConstantEvents[name]
|
|
|
|
if val == "":
|
|
|
|
val = self.target_ged.gramps2tag(name)
|
|
|
|
|
2002-12-30 06:12:47 +05:30
|
|
|
if val:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 %s %s" % (self.cnvtxt(val),
|
|
|
|
self.cnvtxt(event.getDescription())))
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 EVEN %s" % self.cnvtxt(event.getDescription()))
|
|
|
|
self.writeln("2 TYPE %s" % self.cnvtxt(name))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.dump_event_stats(event)
|
|
|
|
|
|
|
|
for person in family.getChildList():
|
|
|
|
if not self.plist.has_key(person.getId()):
|
|
|
|
continue
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 CHIL @%s@" % self.pid(person.getId()))
|
2003-01-15 10:55:50 +05:30
|
|
|
if self.adopt == GedcomInfo.ADOPT_FTW:
|
2002-10-20 19:55:16 +05:30
|
|
|
if person.getMainParents() == family:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('2 _FREL Natural')
|
|
|
|
self.writeln('2 _MREL Natural')
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
for f in person.getParentList():
|
|
|
|
if f[0] == family:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('2 _FREL %s' % f[2])
|
|
|
|
self.writeln('2 _MREL %s' % f[1])
|
2002-10-20 19:55:16 +05:30
|
|
|
break
|
2003-01-15 10:55:50 +05:30
|
|
|
if self.adopt == GedcomInfo.ADOPT_LEGACY:
|
2002-10-20 19:55:16 +05:30
|
|
|
for f in person.getAltParentList():
|
|
|
|
if f[0] == family:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('2 _STAT %s' % f[2])
|
2002-10-20 19:55:16 +05:30
|
|
|
break
|
|
|
|
|
|
|
|
index = index + 1
|
2003-05-21 02:01:16 +05:30
|
|
|
if index % 100 == 0 and not self.cl:
|
2002-12-30 06:12:47 +05:30
|
|
|
self.fbar.set_fraction(index/nump)
|
2002-10-20 19:55:16 +05:30
|
|
|
while(gtk.events_pending()):
|
|
|
|
gtk.mainiteration()
|
2003-05-21 02:01:16 +05:30
|
|
|
if not self.cl:
|
|
|
|
self.fbar.set_fraction(1.0)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_sources(self):
|
|
|
|
nump = float(len(self.slist))
|
|
|
|
index = 0.0
|
|
|
|
for key in self.slist.keys():
|
|
|
|
source = self.db.getSource(key)
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("0 @%s@ SOUR" % self.sid(source.getId()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if source.getTitle():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 TITL %s" % fmtline(self.cnvtxt(source.getTitle()),248,1,self.nl))
|
2002-12-30 06:12:47 +05:30
|
|
|
if source.getAuthor():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 AUTH %s" % self.cnvtxt(source.getAuthor()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if source.getPubInfo():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 PUBL %s" % self.cnvtxt(source.getPubInfo()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if source.getTitle():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 ABBR %s" % self.cnvtxt(source.getTitle()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if source.getCallNumber():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 CALN %s" % self.cnvtxt(source.getCallNumber()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if source.getNote():
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_long_text("NOTE",1,self.cnvtxt(source.getNote()))
|
|
|
|
index = index + 1
|
2003-05-21 02:01:16 +05:30
|
|
|
if index % 100 == 0 and not self.cl:
|
2002-12-30 06:12:47 +05:30
|
|
|
self.sbar.set_fraction(index/nump)
|
2002-10-20 19:55:16 +05:30
|
|
|
while(gtk.events_pending()):
|
|
|
|
gtk.mainiteration()
|
2003-05-21 02:01:16 +05:30
|
|
|
if not self.cl:
|
|
|
|
self.sbar.set_fraction(1.0)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_person(self,person):
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("0 @%s@ INDI" % self.pid(person.getId()))
|
2003-07-22 15:44:49 +05:30
|
|
|
restricted = self.restrict and person.probablyAlive ()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.prefn(person)
|
2003-07-22 15:44:49 +05:30
|
|
|
primaryname = person.getPrimaryName ()
|
|
|
|
if restricted and self.living:
|
|
|
|
primaryname = RelLib.Name (primaryname)
|
|
|
|
primaryname.setFirstName ("Living")
|
|
|
|
nickname = ""
|
|
|
|
else:
|
|
|
|
primaryname = person.getPrimaryName ()
|
|
|
|
nickname = person.getNickName ()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-07-23 19:45:34 +05:30
|
|
|
if restricted and self.exclnotes:
|
|
|
|
primaryname = RelLib.Name (primaryname)
|
|
|
|
primaryname.setNote ('')
|
|
|
|
|
|
|
|
if restricted and self.exclsrcs:
|
|
|
|
primaryname = RelLib.Name (primaryname)
|
|
|
|
primaryname.setSourceRefList ([])
|
|
|
|
|
2003-07-22 15:44:49 +05:30
|
|
|
self.write_person_name(primaryname, nickname)
|
|
|
|
|
|
|
|
if (self.altname == GedcomInfo.ALT_NAME_STD and
|
|
|
|
not (restricted and self.living)):
|
2002-10-20 19:55:16 +05:30
|
|
|
for name in person.getAlternateNames():
|
|
|
|
self.write_person_name(name,"")
|
|
|
|
|
2003-01-15 10:55:50 +05:30
|
|
|
if person.getGender() == RelLib.Person.male:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 SEX M")
|
2003-01-15 10:55:50 +05:30
|
|
|
elif person.getGender() == RelLib.Person.female:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 SEX F")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-07-22 15:44:49 +05:30
|
|
|
if not restricted:
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
birth = person.getBirth()
|
|
|
|
if not (self.private and birth.getPrivacy()):
|
2002-12-30 06:12:47 +05:30
|
|
|
if not birth.getDateObj().isEmpty() or birth.getPlaceName():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 BIRT")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.dump_event_stats(birth)
|
|
|
|
|
|
|
|
death = person.getDeath()
|
|
|
|
if not (self.private and death.getPrivacy()):
|
2002-12-30 06:12:47 +05:30
|
|
|
if not death.getDateObj().isEmpty() or death.getPlaceName():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 DEAT")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.dump_event_stats(death)
|
|
|
|
|
|
|
|
uid = person.getPafUid()
|
2002-12-30 06:12:47 +05:30
|
|
|
if uid:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 _UID %s" % uid)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
ad = 0
|
|
|
|
|
|
|
|
self.write_ord("BAPL",person.getLdsBaptism(),1,const.lds_baptism)
|
|
|
|
self.write_ord("ENDL",person.getLdsEndowment(),1,const.lds_baptism)
|
|
|
|
self.write_ord("SLGC",person.getLdsSeal(),1,const.lds_csealing)
|
|
|
|
|
|
|
|
for event in person.getEventList():
|
|
|
|
if self.private and event.getPrivacy():
|
|
|
|
continue
|
|
|
|
name = event.getName()
|
|
|
|
val = ""
|
|
|
|
if const.personalConstantEvents.has_key(name):
|
|
|
|
val = const.personalConstantEvents[name]
|
|
|
|
if val == "":
|
|
|
|
val = self.target_ged.gramps2tag(name)
|
|
|
|
|
2003-01-15 10:55:50 +05:30
|
|
|
if self.adopt == GedcomInfo.ADOPT_EVENT and val == "ADOP":
|
2002-10-20 19:55:16 +05:30
|
|
|
ad = 1
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('1 ADOP')
|
2002-10-20 19:55:16 +05:30
|
|
|
fam = None
|
|
|
|
for f in person.getParentList():
|
|
|
|
mrel = string.lower(f[1])
|
|
|
|
frel = string.lower(f[2])
|
2002-10-28 19:06:39 +05:30
|
|
|
if mrel=="adopted" or frel=="adopted":
|
2002-10-20 19:55:16 +05:30
|
|
|
fam = f[0]
|
|
|
|
break
|
|
|
|
if fam:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('2 FAMC @%s@' % self.fid(fam.getId()))
|
2002-10-20 19:55:16 +05:30
|
|
|
if mrel == frel:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('3 ADOP BOTH')
|
2002-10-20 19:55:16 +05:30
|
|
|
elif mrel == "adopted":
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('3 ADOP WIFE')
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('3 ADOP HUSB')
|
2002-12-30 06:12:47 +05:30
|
|
|
elif val :
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 %s %s" % (self.cnvtxt(val),\
|
|
|
|
self.cnvtxt(event.getDescription())))
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 EVEN %s" % self.cnvtxt(event.getDescription()))
|
|
|
|
self.writeln("2 TYPE %s" % self.cnvtxt(event.getName()))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.dump_event_stats(event)
|
|
|
|
|
2003-01-15 10:55:50 +05:30
|
|
|
if self.adopt == GedcomInfo.ADOPT_EVENT and ad == 0 and len(person.getParentList()) != 0:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('1 ADOP')
|
2002-10-20 19:55:16 +05:30
|
|
|
fam = None
|
|
|
|
for f in person.getParentList():
|
|
|
|
mrel = string.lower(f[1])
|
|
|
|
frel = string.lower(f[2])
|
2002-10-28 19:06:39 +05:30
|
|
|
if mrel=="adopted" or frel=="adopted":
|
2002-10-20 19:55:16 +05:30
|
|
|
fam = f[0]
|
|
|
|
break
|
|
|
|
if fam:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('2 FAMC @%s@' % self.fid(fam.getId()))
|
2002-10-20 19:55:16 +05:30
|
|
|
if mrel == frel:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('3 ADOP BOTH')
|
2002-10-20 19:55:16 +05:30
|
|
|
elif mrel == "adopted":
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('3 ADOP WIFE')
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('3 ADOP HUSB')
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
for attr in person.getAttributeList():
|
|
|
|
if self.private and attr.getPrivacy():
|
|
|
|
continue
|
|
|
|
name = attr.getType()
|
|
|
|
if const.personalConstantAttributes.has_key(name):
|
|
|
|
val = const.personalConstantAttributes[name]
|
|
|
|
else:
|
|
|
|
val = ""
|
2002-12-30 06:12:47 +05:30
|
|
|
if val :
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 %s" % val)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 EVEN")
|
|
|
|
self.writeln("2 TYPE %s" % self.cnvtxt(name))
|
|
|
|
self.writeln("2 PLAC %s" % string.replace(self.cnvtxt(attr.getValue()),'\r',' '))
|
2002-12-30 06:12:47 +05:30
|
|
|
if attr.getNote():
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_long_text("NOTE",2,self.cnvtxt(attr.getNote()))
|
|
|
|
for srcref in attr.getSourceRefList():
|
|
|
|
self.write_source_ref(2,srcref)
|
|
|
|
|
|
|
|
for addr in person.getAddressList():
|
|
|
|
if self.private and addr.getPrivacy():
|
|
|
|
continue
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 RESI")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.print_date("2 DATE",addr.getDateObj())
|
|
|
|
if self.resi == 0:
|
2003-01-26 10:41:35 +05:30
|
|
|
self.write_long_text("ADDR",2,self.cnvtxt(addr.getStreet()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if addr.getCity():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("3 CITY %s" % self.cnvtxt(addr.getCity()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if addr.getState():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("3 STAE %s" % self.cnvtxt(addr.getState()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if addr.getPostal():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("3 POST %s" % self.cnvtxt(addr.getPostal()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if addr.getCountry():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("3 CTRY %s" % self.cnvtxt(addr.getCountry()))
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
text = addr.getStreet()
|
|
|
|
text = addr_append(text,addr.getCity())
|
|
|
|
text = addr_append(text,addr.getState())
|
|
|
|
text = addr_append(text,addr.getPostal())
|
|
|
|
text = addr_append(text,addr.getCountry())
|
|
|
|
if text:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 PLAC %s" % string.replace(self.cnvtxt(text),'\r',' '))
|
2002-12-30 06:12:47 +05:30
|
|
|
if addr.getNote():
|
2003-05-21 03:28:07 +05:30
|
|
|
self.write_long_text("NOTE",2,self.cnvtxt(addr.getNote()))
|
2002-10-20 19:55:16 +05:30
|
|
|
for srcref in addr.getSourceRefList():
|
2003-05-21 03:28:07 +05:30
|
|
|
self.write_source_ref(2,srcref)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
for family in person.getParentList():
|
|
|
|
if self.flist.has_key(family[0].getId()):
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 FAMC @%s@" % self.fid(family[0].getId()))
|
2003-01-15 10:55:50 +05:30
|
|
|
if self.adopt == GedcomInfo.ADOPT_PEDI:
|
2002-10-20 19:55:16 +05:30
|
|
|
if string.lower(family[1]) == "adopted":
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 PEDI Adopted")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
for family in person.getFamilyList():
|
|
|
|
if family != None and self.flist.has_key(family.getId()):
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 FAMS @%s@" % self.fid(family.getId()))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-07-22 15:44:49 +05:30
|
|
|
if not restricted:
|
|
|
|
if self.obje:
|
|
|
|
for url in person.getUrlList():
|
|
|
|
self.writeln('1 OBJE')
|
|
|
|
self.writeln('2 FORM URL')
|
|
|
|
if url.get_description():
|
|
|
|
self.writeln('2 TITL %s' % url.get_description())
|
|
|
|
if url.get_path():
|
|
|
|
self.writeln('2 FILE %s' % url.get_path())
|
|
|
|
|
2003-07-23 19:45:34 +05:30
|
|
|
if not restricted or not self.exclnotes:
|
2003-07-22 15:44:49 +05:30
|
|
|
if person.getNote():
|
|
|
|
self.write_long_text("NOTE",1,self.cnvtxt(person.getNote()))
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def write_long_text(self,tag,level,note):
|
2003-01-15 10:55:50 +05:30
|
|
|
if self.conc == GedcomInfo.CONC_OK:
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_conc_ok(tag,level,note)
|
|
|
|
else:
|
|
|
|
self.write_conc_broken(tag,level,note)
|
|
|
|
|
|
|
|
def write_conc_ok(self,tag,level,note):
|
|
|
|
prefix = "%d %s" % (level,tag)
|
|
|
|
textlines = string.split(note,'\n')
|
|
|
|
if len(note) == 0:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln(prefix)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
for line in textlines:
|
|
|
|
ll = len(line)
|
|
|
|
while ll > 0:
|
|
|
|
brkpt = 70
|
|
|
|
if ll > brkpt:
|
|
|
|
while (ll > brkpt and line[brkpt] in string.whitespace):
|
|
|
|
brkpt = brkpt+1
|
|
|
|
if ll == brkpt:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("%s %s" % (prefix,line))
|
2002-10-20 19:55:16 +05:30
|
|
|
line = ''
|
|
|
|
break
|
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("%s %s" % (prefix,line[0:brkpt+1]))
|
2002-10-20 19:55:16 +05:30
|
|
|
line = line[brkpt+1:]
|
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("%s %s" % (prefix,line))
|
2002-10-20 19:55:16 +05:30
|
|
|
line = ""
|
|
|
|
if len(line) > 0:
|
|
|
|
prefix = "%d CONC" % (level+1)
|
|
|
|
else:
|
|
|
|
prefix = "%d CONT" % (level+1)
|
|
|
|
ll = len(line)
|
|
|
|
|
|
|
|
def write_conc_broken(self,tag,level,note):
|
|
|
|
prefix = "%d %s" % (level,tag)
|
|
|
|
textlines = string.split(note,'\n')
|
|
|
|
if len(note) == 0:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln(prefix)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
for line in textlines:
|
|
|
|
ll = len(line)
|
|
|
|
while ll > 0:
|
|
|
|
brkpt = 70
|
|
|
|
if ll > brkpt:
|
|
|
|
while (ll > brkpt and line[brkpt] not in string.whitespace):
|
|
|
|
brkpt = brkpt+1
|
|
|
|
if ll == brkpt:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("%s %s" % (prefix,line))
|
2002-10-20 19:55:16 +05:30
|
|
|
line = ''
|
|
|
|
break
|
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("%s %s" % (prefix,line[0:brkpt+1]))
|
2002-10-20 19:55:16 +05:30
|
|
|
line = line[brkpt+1:]
|
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("%s %s" % (prefix,line))
|
2002-10-20 19:55:16 +05:30
|
|
|
line = ""
|
|
|
|
if len(line) > 0:
|
|
|
|
prefix = "%d CONC" % (level+1)
|
|
|
|
else:
|
|
|
|
prefix = "%d CONT" % (level+1)
|
|
|
|
ll = len(line)
|
|
|
|
|
|
|
|
def dump_event_stats(self,event):
|
|
|
|
dateobj = event.getDateObj()
|
|
|
|
self.print_date("2 DATE",dateobj)
|
2002-12-30 06:12:47 +05:30
|
|
|
if event.getPlaceName():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 PLAC %s" % string.replace(self.cnvtxt(event.getPlaceName()),'\r',' '))
|
2002-12-30 06:12:47 +05:30
|
|
|
if event.getCause():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 CAUS %s" % self.cnvtxt(event.getCause()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if event.getNote():
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_long_text("NOTE",2,self.cnvtxt(event.getNote()))
|
|
|
|
for srcref in event.getSourceRefList():
|
|
|
|
self.write_source_ref(2,srcref)
|
|
|
|
|
|
|
|
def write_ord(self,name,ord,index,statlist):
|
|
|
|
if ord == None:
|
|
|
|
return
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('%d %s' % (index,name))
|
2002-10-20 19:55:16 +05:30
|
|
|
self.print_date("%d DATE" % (index + 1), ord.getDateObj())
|
|
|
|
if ord.getFamily():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('%d FAMC @%s@' % (index+1,self.fid(ord.getFamily().getId())))
|
2002-12-30 06:12:47 +05:30
|
|
|
if ord.getTemple():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('%d TEMP %s' % (index+1,ord.getTemple()))
|
2002-12-30 06:12:47 +05:30
|
|
|
if ord.getPlaceName():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 PLAC %s" % string.replace(self.cnvtxt(ord.getPlaceName()),'\r',' '))
|
2002-10-20 19:55:16 +05:30
|
|
|
if ord.getStatus() != 0:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 STAT %s" % self.cnvtxt(statlist[ord.getStatus()]))
|
2002-12-30 06:12:47 +05:30
|
|
|
if ord.getNote():
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_long_text("NOTE",index+1,self.cnvtxt(ord.getNote()))
|
|
|
|
for srcref in ord.getSourceRefList():
|
|
|
|
self.write_source_ref(index+1,srcref)
|
|
|
|
|
|
|
|
def print_date(self,prefix,date):
|
|
|
|
start = date.get_start_date()
|
2003-07-07 16:27:11 +05:30
|
|
|
val = date.getText()
|
|
|
|
if val:
|
|
|
|
self.writeln("%s %s" % (prefix,self.cnvtxt(val)))
|
|
|
|
elif not date.isEmpty ():
|
2002-10-20 19:55:16 +05:30
|
|
|
if date.isRange():
|
2002-12-29 11:14:35 +05:30
|
|
|
val = "FROM %s TO %s" % (make_date(start),
|
|
|
|
make_date(date.get_stop_date()))
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2002-12-30 06:12:47 +05:30
|
|
|
val = make_date(start)
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("%s %s" % (prefix,val))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_person_name(self,name,nick):
|
|
|
|
firstName = self.cnvtxt(name.getFirstName())
|
|
|
|
surName = self.cnvtxt(name.getSurname())
|
2003-07-07 16:09:05 +05:30
|
|
|
surName = surName.replace('/','?')
|
2002-12-04 10:28:07 +05:30
|
|
|
surPref = self.cnvtxt(name.getSurnamePrefix())
|
2003-07-07 16:09:05 +05:30
|
|
|
surPref = surPref.replace('/','?')
|
2002-10-20 19:55:16 +05:30
|
|
|
suffix = self.cnvtxt(name.getSuffix())
|
|
|
|
title = self.cnvtxt(name.getTitle())
|
|
|
|
if suffix == "":
|
2002-12-30 06:12:47 +05:30
|
|
|
if not surPref:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 NAME %s /%s/" % (firstName,surName))
|
2002-12-04 10:28:07 +05:30
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 NAME %s /%s %s/" % (firstName,surPref,surName))
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2002-12-30 06:12:47 +05:30
|
|
|
if not surPref:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 NAME %s /%s %s/, %s" % (firstName,surPref,surName,suffix))
|
2002-12-04 10:28:07 +05:30
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("1 NAME %s /%s/, %s" % (firstName,surName,suffix))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2002-12-30 06:12:47 +05:30
|
|
|
if name.getFirstName():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 GIVN %s" % firstName)
|
2002-12-04 10:28:07 +05:30
|
|
|
if self.prefix:
|
|
|
|
if surPref:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('2 SPFX %s' % surPref)
|
2002-12-30 06:12:47 +05:30
|
|
|
if surName:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 SURN %s" % surName)
|
2002-12-04 10:28:07 +05:30
|
|
|
else:
|
|
|
|
if surPref:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 SURN %s %s" % (surPref,surName))
|
2002-12-14 10:37:09 +05:30
|
|
|
elif surName:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 SURN %s" % surName)
|
2002-12-04 10:28:07 +05:30
|
|
|
|
2002-12-30 06:12:47 +05:30
|
|
|
if name.getSuffix():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 NSFX %s" % suffix)
|
2002-12-30 06:12:47 +05:30
|
|
|
if name.getTitle():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("2 NPFX %s" % title)
|
2002-12-30 06:12:47 +05:30
|
|
|
if nick:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('2 NICK %s' % nick)
|
2002-12-30 06:12:47 +05:30
|
|
|
if name.getNote():
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_long_text("NOTE",2,self.cnvtxt(name.getNote()))
|
|
|
|
for srcref in name.getSourceRefList():
|
|
|
|
self.write_source_ref(2,srcref)
|
|
|
|
|
|
|
|
def write_source_ref(self,level,ref):
|
|
|
|
if ref.getBase() == None:
|
|
|
|
return
|
2003-01-03 08:49:50 +05:30
|
|
|
|
|
|
|
if self.source_refs:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("%d SOUR @%s@" %
|
2003-01-03 08:49:50 +05:30
|
|
|
(level,self.sid(ref.getBase().getId())))
|
|
|
|
if ref.getPage() != "":
|
2003-07-21 05:39:12 +05:30
|
|
|
self.write_long_text("PAGE",level+1,self.cnvtxt(ref.getPage()))
|
2003-01-03 08:49:50 +05:30
|
|
|
|
|
|
|
ref_text = ref.getText()
|
|
|
|
if ref_text != "" or not ref.getDate().isEmpty():
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('%d DATA' % (level+1))
|
2003-01-03 08:49:50 +05:30
|
|
|
if ref_text != "":
|
2003-01-26 10:41:35 +05:30
|
|
|
self.write_long_text("TEXT",level+2,self.cnvtxt(ref_text))
|
2003-01-03 08:49:50 +05:30
|
|
|
pfx = "%d DATE" % (level+2)
|
|
|
|
self.print_date(pfx,ref.getDate())
|
|
|
|
else:
|
|
|
|
# We put title, page, and date on the SOUR line.
|
2003-01-08 10:28:00 +05:30
|
|
|
# Not using CONC and CONT because GeneWeb does not support these.
|
2003-01-03 08:49:50 +05:30
|
|
|
# TEXT and NOTE will be ignored by GeneWeb, but we can't
|
2003-01-08 10:28:00 +05:30
|
|
|
# output paragaphs in SOUR without CONT.
|
2003-01-03 08:49:50 +05:30
|
|
|
sbase = ref.getBase()
|
|
|
|
if sbase and sbase.getTitle():
|
|
|
|
txt = sbase.getTitle() + ". "
|
|
|
|
else:
|
|
|
|
txt = ""
|
|
|
|
if ref.getPage():
|
|
|
|
txt = txt + ref.getPage() + ". "
|
|
|
|
self.g.write("%d SOUR %s" % (level,self.cnvtxt(txt)))
|
|
|
|
if not ref.getDate().isEmpty():
|
|
|
|
self.print_date("", ref.getDate())
|
|
|
|
else:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln("")
|
2003-01-03 08:49:50 +05:30
|
|
|
if ref.getText():
|
2003-01-26 10:41:35 +05:30
|
|
|
self.write_long_text("TEXT",level+1,self.cnvtxt(ref_text))
|
2003-01-03 08:49:50 +05:30
|
|
|
|
2002-12-30 06:12:47 +05:30
|
|
|
if ref.getComments():
|
2003-01-26 10:41:35 +05:30
|
|
|
self.write_long_text("NOTE",level+1,self.cnvtxt(ref.getComments()))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def fid(self,id):
|
|
|
|
return id
|
|
|
|
|
|
|
|
def prefn(self,person):
|
2002-12-30 06:12:47 +05:30
|
|
|
match = _get_int.search(person.getId())
|
2002-10-20 19:55:16 +05:30
|
|
|
if match:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('1 REFN %d' % int(match.groups()[0]))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def frefn(self,family):
|
2002-12-30 06:12:47 +05:30
|
|
|
match = _get_int.search(family.getId())
|
2002-10-20 19:55:16 +05:30
|
|
|
if match:
|
2003-06-28 23:05:00 +05:30
|
|
|
self.writeln('1 REFN %d' % int(match.groups()[0]))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def pid(self,id):
|
|
|
|
return id
|
|
|
|
|
|
|
|
def sid(self,id):
|
|
|
|
if self.sidmap.has_key(id):
|
|
|
|
return self.sidmap[id]
|
|
|
|
else:
|
|
|
|
val = "S%05d" % self.sidval
|
|
|
|
self.sidval = self.sidval + 1
|
|
|
|
self.sidmap[id] = val
|
|
|
|
return val
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
from Plugins import register_export
|
|
|
|
|
2003-07-16 02:59:38 +05:30
|
|
|
register_export(writeData,_title_string)
|