# HG changeset patch # User paulb # Date 1142618721 0 # Node ID b9beddebc10e1189ee985b4feb8774ffd0488332 # Parent ba9286b2bc1bf64b95832ea477a819948b970fa9 [project @ 2006-03-17 18:05:19 by paulb] Updated release information. diff -r ba9286b2bc1b -r b9beddebc10e PKG-INFO --- a/PKG-INFO Sat Jun 21 01:40:08 2008 +0200 +++ b/PKG-INFO Fri Mar 17 18:05:21 2006 +0000 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: XSLTools -Version: 0.4 +Version: 0.4.1 Author: Paul Boddie Author-email: paul at boddie org uk Maintainer: Paul Boddie Maintainer-email: paul at boddie org uk Home-page: http://www.boddie.org.uk/python/XSLTools.html -Download-url: http://www.boddie.org.uk/python/downloads/XSLTools-0.4.tar.gz +Download-url: http://www.boddie.org.uk/python/downloads/XSLTools-0.4.1.tar.gz Summary: Modules and packages for the development of XML/XSL-based applications License: LGPL Description: XSLTools is a distribution providing modules and packages for the development diff -r ba9286b2bc1b -r b9beddebc10e README.txt --- a/README.txt Sat Jun 21 01:40:08 2008 +0200 +++ b/README.txt Fri Mar 17 18:05:21 2006 +0000 @@ -43,6 +43,15 @@ The example Web applications require WebStack (release 1.1.2 or later). The example PyQt applications have been tested with PyQt 3.15. +New in XSLTools 0.4.1 (Changes since XSLTools 0.4) +-------------------------------------------------- + + * Made translations specified using the template:i18n annotation take + priority over template:value annotations. + * Added expression-based template:i18n annotations, and provided fallback + output for such translations based on the value of the evaluated + expression. + New in XSLTools 0.4 (Changes since XSLTools 0.3.1) -------------------------------------------------- diff -r ba9286b2bc1b -r b9beddebc10e XSLForms/__init__.py --- a/XSLForms/__init__.py Sat Jun 21 01:40:08 2008 +0200 +++ b/XSLForms/__init__.py Fri Mar 17 18:05:21 2006 +0000 @@ -3,7 +3,7 @@ """ XML/XSL-based forms generation and interpretation. -Copyright (C) 2005 Paul Boddie +Copyright (C) 2005, 2006 Paul Boddie This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,6 +20,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA """ -__version__ = "0.4" +__version__ = "0.4.1" # vim: tabstop=4 expandtab shiftwidth=4