* 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 9212db19bc
commit b3a3019566
4 changed files with 11 additions and 3 deletions

View File

@ -1,4 +1,7 @@
2006-05-07 Don Allingham <don@gramps-project.org> 2006-05-07 Don Allingham <don@gramps-project.org>
* configure.in: set for 2.1.1
* src/GrampsDb/_ReadXML.py: call name support
* src/GrampsDb/_WriteXML.py: call name support
* src/DisplayState.py: include name and relationship on statusbar * src/DisplayState.py: include name and relationship on statusbar
* src/DataViews/_MediaView.py: tool tips * src/DataViews/_MediaView.py: tool tips
* src/DataViews/_RepositoryView.py: tool tips * src/DataViews/_RepositoryView.py: tool tips

View File

@ -4,15 +4,15 @@ dnl Process this file with autoconf to produce a configure script.
dnl May need to run automake && aclocal first dnl May need to run automake && aclocal first
AC_PREREQ(2.57) AC_PREREQ(2.57)
AC_INIT(gramps, 2.1.0, [gramps-bugs@lists.sourceforge.net]) AC_INIT(gramps, 2.1.1, [gramps-bugs@lists.sourceforge.net])
AC_CONFIG_SRCDIR(configure.in) AC_CONFIG_SRCDIR(configure.in)
AM_INIT_AUTOMAKE(1.6.3) AM_INIT_AUTOMAKE(1.6.3)
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
GNOME_DOC_INIT GNOME_DOC_INIT
RELEASE=0.SVN$(svnversion -n .) dnl RELEASE=0.SVN$(svnversion -n .)
dnl RELEASE=1 RELEASE=1
VERSIONSTRING=$VERSION VERSIONSTRING=$VERSION
if test x"$RELEASE" != "x" if test x"$RELEASE" != "x"

View File

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

View File

@ -769,6 +769,7 @@ class XmlWriter:
self.g.write(' display="%d"' % name.get_display_as()) self.g.write(' display="%d"' % name.get_display_as())
self.g.write('>\n') self.g.write('>\n')
self.write_line("first",name.get_first_name(),index+1) self.write_line("first",name.get_first_name(),index+1)
self.write_line("call",name.get_call_name(),index+1)
self.write_last(name,index+1) self.write_last(name,index+1)
self.write_line("suffix",name.get_suffix(),index+1) self.write_line("suffix",name.get_suffix(),index+1)
self.write_line("patronymic",name.get_patronymic(),index+1) self.write_line("patronymic",name.get_patronymic(),index+1)