svn: r7846

This commit is contained in:
Don Allingham 2006-12-25 03:26:31 +00:00
parent 0707e975f3
commit 4ab17297c5
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,9 @@
Version 2.2.4 -- the "" release
* Bug fixes
* Improved handling of readonly files
* Enhanced parsing of longitute and latitude and mapping
(Benny Malengier/Zsolt Foldvari)
Version 2.2.3 -- the "My philosophy, like color television, is all there in black and white" release
* Per-database environment directories.
* Editor windows remember their size.

View File

@ -11,8 +11,8 @@ 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"

View File

@ -1386,8 +1386,7 @@ class GedcomWriter(UpdateCallback):
self.writeln("%d SOUR @%s@" % (level,src.get_gramps_id()))
if ref.get_page() != "":
page_text = self.cnvtxt(ref.get_page())
self.writeln('%d PAGE %s',
(level+1,page_text))
self.writeln('%d PAGE %s' % (level+1,page_text))
conf = ref.get_confidence_level()
# Cap the maximum level
conf = min(conf,RelLib.SourceRef.CONF_VERY_HIGH)