* configure.in: set for 2.1.1

* src/GrampsDb/_ReadXML.py: call name support
	* src/GrampsDb/_WriteXML.py: call name support


svn: r6576
This commit is contained in:
Don Allingham
2006-05-08 03:41:57 +00:00
parent c024f9f84b
commit fa8cebe03b
4 changed files with 11 additions and 3 deletions

View File

@ -397,6 +397,7 @@ class GrampsParser:
"rel" : (self.start_rel, None),
"father" : (self.start_father, None),
"first" : (None, self.stop_first),
"call" : (None, self.stop_call),
"gender" : (None, self.stop_gender),
"header" : (None, None),
"last" : (self.start_last, self.stop_last),
@ -1502,6 +1503,9 @@ class GrampsParser:
def stop_first(self,tag):
self.name.set_first_name(tag)
def stop_call(self,tag):
self.name.set_call_name(tag)
def stop_families(self,*tag):
self.family = None