changeset 156:4792730ebb20 trunk

Updated !ChangeLog to reflect [197].
author cmlenz
date Wed, 16 Aug 2006 18:20:07 +0000
parents 9a5aedda1099
children 47433aa69169
files ChangeLog markup/path.py
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,12 @@
  * Output can be encoded using legacy codecs such as ISO-8859-1, any character
    not representable in the chosen encoding gets replaced by the corresponding
    XML character reference.
+ * String literals in XPath expressions that contain spaces are now parsed
+   as expected.
+ * Added support for the XPath functions boolean(), ceiling(), concat(),
+   contains(), false(), floor(), normalize-space(), number(), starts-with(),
+   string-length(), substring(), substring-after(), substring-before(),
+   translate(), and true().
 
 
 Version 0.1
--- a/markup/path.py
+++ b/markup/path.py
@@ -756,7 +756,6 @@
     def __repr__(self):
         return 'true()'
 
-
 _function_map = {'boolean': BooleanFunction, 'ceiling': CeilingFunction,
                  'concat': ConcatFunction, 'contains': ContainsFunction,
                  'false': FalseFunction, 'floor': FloorFunction,
Copyright (C) 2012-2017 Edgewall Software