Edgewall Software

source: tags/0.3.2/ChangeLog

Last change on this file was 352, checked in by cmlenz, 17 years ago

Updated change log on 0.3.x branch.

  • Property svn:eol-style set to native
File size: 5.5 KB
Line 
1Version 0.3.2
2http://svn.edgewall.org/repos/genshi/tags/0.3.2/
3(Oct 12 2006, from branches/stable/0.3.x)
4
5 * Exceptions from templates now contain the absolute path to the template file
6   when a search path is used. This enables tracebacks to display the line in
7   question.
8 * The template engine plugin now provides three different types: "genshi" and
9   "genshi-markup" map to markup templates, while "genshi-text" maps to text
10   templates.
11 * Fixed the namespace context used by XPath patterns in py:match templates.
12   The were erroneously using the namespace context of the elements being
13   matched, where they should rather use the context in which they were
14   defined.
15 * The contents of `<script>` and `<style>` elements are no longer escaped when
16   serializing to HTML but declaring the XHTML namespace in the template.
17 * Improved error message raised when using the `py:for` directive on an object
18   that is not iterable (ticket #60).
19 * Fixed the XPath function `starts-with()` which was always returning true
20   (ticket #61).
21
22
23Version 0.3.1
24http://svn.edgewall.org/repos/genshi/tags/0.3.1/
25(Sep 22 2006, from branches/stable/0.3.x)
26
27 * Includes and user-defined filters were not getting the correct context data
28   when used inside a match template (ticket #56).
29 * XPath patterns using the union operator (`|`) were returning only partial
30   results in some cases.
31
32
33Version 0.3
34http://svn.edgewall.org/repos/genshi/tags/0.3.0/
35(Sep 17 2006, from branches/stable/0.3.x)
36
37 * The project name was changed from "Markup" to "Genshi". See UPGRADE.txt
38   for upgrade instructions.
39 * Expression evaluation now differentiates between undefined variables and
40   variables that are defined but set to `None`. This also means that local
41   variables can override built-ins even if the local variable are set to
42   `None` (ticket #36).
43 * The plugin implementation now makes more functions available for use inside
44   templates: XML(), HTML(), defined(), and value-of(). These are mostly for
45   migration from Kid.
46 * The parsing of `py:with` directives has been improved: you can now assign
47   to multiple names, and semicolons inside string literals are treated as
48   expected.
49 * Generator expressions can now be used in template expressions (ticket #16).
50 * Added serialization to plain text (ticket #41).
51 * Calling functions from template expressions with *args and/or **kwargs
52   now works correctly (ticket #42).
53 * The `TemplateLoader` class and the `Template` instances that it manages are
54   now thread-safe, as they no longer keep any state related to the current
55   processing context.
56 * Stream filters and serializers can now be applied using the "pipe" (bitwise
57   or) operator "|".
58 * The execution of named template functions (`py:def`) no longer silently
59   swallows TypeError exceptions (ticket #44).
60 * The XML Parser now correctly handles unicode input (ticket #43).
61 * HTML entities can now be used in templates without having to declare an HTML
62   document type.
63 * Error reporting on undefined entities has been fixed.
64 * Fix traversal of substreams by XPath expressions. For example, the path
65   '*/*' no longer matches non-immediate child elements, and '@*' no longer
66   matches the attributes of descendants.
67 * Fixes for `py:match` which would get confused when it should be applied
68   to multiple elements (ticket #49).
69 * Using namespace prefixes in XPath expressions is now supported.
70 * Expressions now correctly handle slices (ticket #51).
71 * A simple text-based template language is now included for generating
72   plain text output (ticket #47).
73
74
75Version 0.2
76http://svn.edgewall.org/repos/genshi/tags/0.2.0/
77(Aug 22 2006, from branches/stable/0.2.x)
78
79 * XPath syntax errors now contain position info (ticket #20).
80 * Errors in expression evaluation now contain the correct line number in the
81   template (ticket #22).
82 * <script> and <style> element contents are no longer escaped when using HTML
83   serialization (ticket #24).
84 * In some cases expressions in templates did not get interpolated (ticket
85   #26).
86 * CDATA sections are now passed through the pipeline and serialized correctly.
87   That allows using <script> or <style> elements in XHTML output that is still
88   compatible with HTML user agents.
89 * The XHTML serializer now correctly handles elements in foreign namespaces
90   (such as SVG or MathML).
91 * Fixed relative includes in templates on Windows (ticket #27).
92 * Output can be encoded using legacy codecs such as ISO-8859-1. Any character
93   not representable in the chosen encoding gets replaced by the corresponding
94   XML character reference.
95 * String literals in XPath expressions that contain spaces are now parsed
96   as expected.
97 * Added support for the XPath functions boolean(), ceiling(), concat(),
98   contains(), false(), floor(), normalize-space(), number(), round(),
99   starts-with(), string-length(), substring(), substring-after(),
100   substring-before(), translate(), and true().
101 * Non-ASCII characters in expressions should now be handled correctly (ticket
102   #29).
103 * Default values for arguments of template functions now also work with
104   constants and complex expressions (they only worked for string or number
105   literals before).
106 * XPath expressions in now support XPath variables ($var) in predicates
107   (ticket #31).
108 * Expressions in templates can now span multiple lines if they are enclosed
109   in curly braces.
110 * py:def macros can now be invoked from within expressions inside attribute
111   values (ticket #34).
112
113
114Version 0.1
115http://svn.edgewall.org/repos/genshi/tags/0.1.0/
116(Aug 3 2006, from branches/stable/0.1.x)
117
118 * First public release
Note: See TracBrowser for help on using the repository browser.