* 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:
parent
c024f9f84b
commit
fa8cebe03b
@ -1,4 +1,7 @@
|
||||
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/DataViews/_MediaView.py: tool tips
|
||||
* src/DataViews/_RepositoryView.py: tool tips
|
||||
|
@ -4,15 +4,15 @@ dnl Process this file with autoconf to produce a configure script.
|
||||
dnl May need to run automake && aclocal first
|
||||
|
||||
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)
|
||||
AM_INIT_AUTOMAKE(1.6.3)
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
GNOME_DOC_INIT
|
||||
|
||||
RELEASE=0.SVN$(svnversion -n .)
|
||||
dnl RELEASE=1
|
||||
dnl RELEASE=0.SVN$(svnversion -n .)
|
||||
RELEASE=1
|
||||
|
||||
VERSIONSTRING=$VERSION
|
||||
if test x"$RELEASE" != "x"
|
||||
|
@ -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
|
||||
|
||||
|
@ -769,6 +769,7 @@ class XmlWriter:
|
||||
self.g.write(' display="%d"' % name.get_display_as())
|
||||
self.g.write('>\n')
|
||||
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_line("suffix",name.get_suffix(),index+1)
|
||||
self.write_line("patronymic",name.get_patronymic(),index+1)
|
||||
|
Loading…
Reference in New Issue
Block a user