Edgewall Software

source: tags/0.3.4/ChangeLog

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

Create tag for 0.3.4 release.

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