Mercurial > genshi > mirror
annotate ChangeLog @ 521:dc8646e2e918 stable-0.4.x
Ported [624] to 0.4.x branch.
author | cmlenz |
---|---|
date | Wed, 13 Jun 2007 12:39:10 +0000 |
parents | e57be40ff6c3 |
children | d3e5fe934d6e |
rev | line source |
---|---|
495 | 1 Version 0.4.2 |
2 http://svn.edgewall.org/repos/genshi/tags/0.4.2/ | |
3 (?, from branches/stable/0.4.x) | |
4 | |
5 * The `doctype` parameter of the markup serializers now also accepts the "name" | |
6 of the doctype as string, in addition to the `(name, pubid, sysid)` tuple. | |
7 * The I18n filter was not replacing the original attributes with the | |
8 translation, but instead adding a second attribute with the same name. | |
513 | 9 * `TextTemplate` can now handle unicode source (ticket #125). |
521 | 10 * A `<?python ?>` processing instruction containing trailing whitespace no |
11 longer causes a syntax error (ticket #127). | |
495 | 12 |
13 | |
457 | 14 Version 0.4.1 |
15 http://svn.edgewall.org/repos/genshi/tags/0.4.1/ | |
490 | 16 (May 21 2007, from branches/stable/0.4.x) |
457 | 17 |
18 * Fix incorrect reference to translation function in the I18N filter. | |
459 | 19 * The `ET()` function now correctly handles attributes with a namespace. |
461 | 20 * XML declarations are now processed internally, as well as written to the |
21 output when XML serialization is used (ticket #111). | |
463 | 22 * Added the functions `encode()` and `get_serializer()` to the `genshi.output` |
23 module, which provide a lower-level API to the functionality previously only | |
24 available through `Stream.render()` and `Stream.serialize()`. | |
465 | 25 * The `DocType` class now has a `get(name)` function that returns a `DOCTYPE` |
26 tuple for a given string. | |
27 * Added frameset variants to the `DocType` constants for HTML 4.01 and XHTML | |
28 1.0. | |
470 | 29 * Improved I18n extraction for pluralizable messages: for any translation |
30 function with multiple string arguments (such as ``ngettext``), a single | |
31 item with a tuple of strings is yielded, instead an item for each string | |
32 argument. | |
472 | 33 * The `HTMLFormFiller` stream filter no longer alters form elements for which |
34 the data element contains no corresponding item. | |
474 | 35 * Code in `<?python ?>` processing instructions no longer gets the special |
36 treatment as Python code in template expressions, i.e. item and attribute | |
37 access are no longer interchangeable (which was broken in a number of ways | |
38 anyway, see ticket #113). This change does not affect expressions. | |
39 * Numerous fixes for the execution of Python code in `<?python ?>` processing | |
40 instructions (tickets #113 and #114). | |
480 | 41 * The `py:def` (and `#def`) directive now supports "star args" (i.e. `*args` |
42 and `**kwargs`) in the function declaration (ticket #116). | |
457 | 43 |
44 | |
276 | 45 Version 0.4 |
46 http://svn.edgewall.org/repos/genshi/tags/0.4.0/ | |
452 | 47 (Apr 16 2007, from branches/stable/0.4.x) |
276 | 48 |
49 * New example applications for CherryPy and web.py. | |
50 * The template loader now uses a LRU cache to limit the number of cached | |
51 templates to a configurable maximum. Also, a race condition in the template | |
52 loader was fixed by adding locking. | |
53 * A new filter (genshi.filters.HTMLFormFiller) was added, which can populate | |
54 HTML forms based on a dictionary of values. | |
277
7e30bfa966ab
The `HTMLSanitizer` now lets you override the default set of tag and attribute names that are considered safe.
cmlenz
parents:
276
diff
changeset
|
55 * The set of permitted tag and attribute names for the HTMLSanitizer can now |
7e30bfa966ab
The `HTMLSanitizer` now lets you override the default set of tag and attribute names that are considered safe.
cmlenz
parents:
276
diff
changeset
|
56 be configured per instance. |
294 | 57 * The template engine plugin now supports a range of options for |
58 configuration, for example to set the default serialization method, the | |
59 default output encoding, or the default DOCTYPE. | |
302 | 60 * The ElementTree adaptation function `ET()` has moved into the `genshi.input` |
61 module. | |
62 * Allow `when` directives to omit the test expression as long as the | |
63 associated choose directive does have one. In that case, the when branch is | |
64 followed if the expression of the choose directive evaluates to a truth | |
65 value. | |
317
efa7870b63cb
Update change log, and some minor tweaks to keyword argument ordering for the new `encoding` parameter.
cmlenz
parents:
302
diff
changeset
|
66 * Unsuccessful attribute or item lookups now return `Undefined` objects for |
efa7870b63cb
Update change log, and some minor tweaks to keyword argument ordering for the new `encoding` parameter.
cmlenz
parents:
302
diff
changeset
|
67 nicer error messages. |
336
7763f7aec949
Refactoring: `genshi.template` is now a package, it was getting way to crowded in that file.
cmlenz
parents:
333
diff
changeset
|
68 * Split up the `genshi.template` module into multiple modules inside the new |
7763f7aec949
Refactoring: `genshi.template` is now a package, it was getting way to crowded in that file.
cmlenz
parents:
333
diff
changeset
|
69 `genshi.template` package. |
343
35189e960252
Remove automatic calling of expression evaluation results if they are callable. See [http://groups.google.com/group/genshi/browse_thread/thread/f515986760918d41 this mailing list thread].
cmlenz
parents:
336
diff
changeset
|
70 * Results of expression evaluation are no longer implicitly called if they |
35189e960252
Remove automatic calling of expression evaluation results if they are callable. See [http://groups.google.com/group/genshi/browse_thread/thread/f515986760918d41 this mailing list thread].
cmlenz
parents:
336
diff
changeset
|
71 are callable. |
345 | 72 * Instances of the `genshi.core.Attrs` class are now immutable (they are |
73 subclasses of `tuple` instead of `list`). | |
374
b146277eb54a
`MarkupTemplate`s can now be instantiated from markup streams, in addition to strings and file-like objects. Thanks to David Fraser for the patch. Closes #69.
cmlenz
parents:
371
diff
changeset
|
74 * `MarkupTemplate`s can now be instantiated from markup streams, in addition |
b146277eb54a
`MarkupTemplate`s can now be instantiated from markup streams, in addition to strings and file-like objects. Thanks to David Fraser for the patch. Closes #69.
cmlenz
parents:
371
diff
changeset
|
75 to strings and file-like objects (ticket #69). |
378
873ca2a7ec05
Improve handling of incorrectly nested tags in the HTML parser.
cmlenz
parents:
374
diff
changeset
|
76 * Improve handling of incorrectly nested tags in the HTML parser. |
399
f0b785d3d407
Rework parsing of expressions in template text, to be able to:
cmlenz
parents:
387
diff
changeset
|
77 * Template includes can now be nested inside fallback content. |
f0b785d3d407
Rework parsing of expressions in template text, to be able to:
cmlenz
parents:
387
diff
changeset
|
78 * Expressions can now contain dict literals (ticket #37). |
f0b785d3d407
Rework parsing of expressions in template text, to be able to:
cmlenz
parents:
387
diff
changeset
|
79 * It is now possible to have one or more escaped dollar signs in front of a |
f0b785d3d407
Rework parsing of expressions in template text, to be able to:
cmlenz
parents:
387
diff
changeset
|
80 full expression (ticket #92). |
401
68772732c896
Make the `Markup` class available by default in template expressions. Closes #67.
cmlenz
parents:
399
diff
changeset
|
81 * The `Markup` class is now available by default in template expressions |
68772732c896
Make the `Markup` class available by default in template expressions. Closes #67.
cmlenz
parents:
399
diff
changeset
|
82 (ticket #67). |
411 | 83 * The handling of namespace declarations in XML/XHTML output has been improved. |
84 * The `Attrs` class no longer automatically wraps all attribute names in | |
85 `QName` objects. This is now the responsibility of whoever is instantiating | |
86 `Attrs` objects (for example, stream filters and generators). | |
87 * Python code blocks are now supported using the `<?python ?>` processing | |
88 instruction (ticket #84). | |
442
97544725bb7f
Back out [510] and instead implement configurable error handling modes. The default is the old 0.3.x behaviour, but more strict error handling is available as an option.
cmlenz
parents:
437
diff
changeset
|
89 * The way errors in template expressions are handled can now be configured. The |
97544725bb7f
Back out [510] and instead implement configurable error handling modes. The default is the old 0.3.x behaviour, but more strict error handling is available as an option.
cmlenz
parents:
437
diff
changeset
|
90 option `LenientLookup` provides the same forgiving mode used in previous |
97544725bb7f
Back out [510] and instead implement configurable error handling modes. The default is the old 0.3.x behaviour, but more strict error handling is available as an option.
cmlenz
parents:
437
diff
changeset
|
91 Genshi versions, while `StrictLookup` raises exceptions when undefined |
97544725bb7f
Back out [510] and instead implement configurable error handling modes. The default is the old 0.3.x behaviour, but more strict error handling is available as an option.
cmlenz
parents:
437
diff
changeset
|
92 variables or members are accessed. The lenient mode is still the default in |
97544725bb7f
Back out [510] and instead implement configurable error handling modes. The default is the old 0.3.x behaviour, but more strict error handling is available as an option.
cmlenz
parents:
437
diff
changeset
|
93 this version, but that may change in the future. (ticket #88) |
97544725bb7f
Back out [510] and instead implement configurable error handling modes. The default is the old 0.3.x behaviour, but more strict error handling is available as an option.
cmlenz
parents:
437
diff
changeset
|
94 * If a variable is not necessarily defined at the top level of the template |
97544725bb7f
Back out [510] and instead implement configurable error handling modes. The default is the old 0.3.x behaviour, but more strict error handling is available as an option.
cmlenz
parents:
437
diff
changeset
|
95 data, the new built-in functions `defined(key)` and `value_of(key, default)` |
97544725bb7f
Back out [510] and instead implement configurable error handling modes. The default is the old 0.3.x behaviour, but more strict error handling is available as an option.
cmlenz
parents:
437
diff
changeset
|
96 can be used so that the template also works in strict lookup mode. These |
97544725bb7f
Back out [510] and instead implement configurable error handling modes. The default is the old 0.3.x behaviour, but more strict error handling is available as an option.
cmlenz
parents:
437
diff
changeset
|
97 functions were previously only available when using Genshi via the template |
97544725bb7f
Back out [510] and instead implement configurable error handling modes. The default is the old 0.3.x behaviour, but more strict error handling is available as an option.
cmlenz
parents:
437
diff
changeset
|
98 engine plugin (for compatibility with Kid). |
432 | 99 * `style` attributes are no longer allowed by the `HTMLSanitizer` by default. |
446
fd9c4f7a249a
Add basic I18n/L10n functionality, based on GenshiRecipes/Localization.
cmlenz
parents:
442
diff
changeset
|
100 If they are explicitly added to the set of safe attributes, any unicode |
fd9c4f7a249a
Add basic I18n/L10n functionality, based on GenshiRecipes/Localization.
cmlenz
parents:
442
diff
changeset
|
101 escapes in the attribute value are now handled properly. |
437 | 102 * Namespace declarations on conditional elements (for example using a `py:if` |
103 directive`) are no longer moved to the following element when the element | |
104 originally carrying the declaration is removed from the stream (ticket #107). | |
446
fd9c4f7a249a
Add basic I18n/L10n functionality, based on GenshiRecipes/Localization.
cmlenz
parents:
442
diff
changeset
|
105 * Added basic built-in support for internationalizing templates by providing |
fd9c4f7a249a
Add basic I18n/L10n functionality, based on GenshiRecipes/Localization.
cmlenz
parents:
442
diff
changeset
|
106 a new `Translator` class that can both extract localizable strings from a |
fd9c4f7a249a
Add basic I18n/L10n functionality, based on GenshiRecipes/Localization.
cmlenz
parents:
442
diff
changeset
|
107 stream, and replace those strings with their localizations at render time. |
fd9c4f7a249a
Add basic I18n/L10n functionality, based on GenshiRecipes/Localization.
cmlenz
parents:
442
diff
changeset
|
108 The code for this was largely taken from previous work done by Matt Good |
fd9c4f7a249a
Add basic I18n/L10n functionality, based on GenshiRecipes/Localization.
cmlenz
parents:
442
diff
changeset
|
109 and David Fraser. |
365
4f431931d64e
Fix for #62: preserve whitespace in front of directives.
cmlenz
parents:
346
diff
changeset
|
110 |
4f431931d64e
Fix for #62: preserve whitespace in front of directives.
cmlenz
parents:
346
diff
changeset
|
111 |
387 | 112 Version 0.3.6 |
113 http://svn.edgewall.org/repos/genshi/tags/0.3.6/ | |
114 (Dec 11 2006, from branches/stable/0.3.x) | |
115 | |
116 * The builder API now accepts streams as children of elements and fragments. | |
117 | |
118 | |
365
4f431931d64e
Fix for #62: preserve whitespace in front of directives.
cmlenz
parents:
346
diff
changeset
|
119 Version 0.3.5 |
387 | 120 http://svn.edgewall.org/repos/genshi/tags/0.3.5/ |
365
4f431931d64e
Fix for #62: preserve whitespace in front of directives.
cmlenz
parents:
346
diff
changeset
|
121 (Nov 22 2006, from branches/stable/0.3.x) |
4f431931d64e
Fix for #62: preserve whitespace in front of directives.
cmlenz
parents:
346
diff
changeset
|
122 |
371 | 123 * Fix XPath traversal in match templates. Previously, `div/p` would be treated |
124 the same as `div//p`, i.e. it would match all descendants and not just the | |
125 immediate children. | |
365
4f431931d64e
Fix for #62: preserve whitespace in front of directives.
cmlenz
parents:
346
diff
changeset
|
126 * Preserve whitespace in HTML `<pre>` elements also when they contain child |
4f431931d64e
Fix for #62: preserve whitespace in front of directives.
cmlenz
parents:
346
diff
changeset
|
127 elements. |
4f431931d64e
Fix for #62: preserve whitespace in front of directives.
cmlenz
parents:
346
diff
changeset
|
128 * Match templates no longer match their own output (ticket #77). |
4f431931d64e
Fix for #62: preserve whitespace in front of directives.
cmlenz
parents:
346
diff
changeset
|
129 * Blank lines before directives in text templates are now preserved as |
4f431931d64e
Fix for #62: preserve whitespace in front of directives.
cmlenz
parents:
346
diff
changeset
|
130 expected (ticket #62). |
346
96882a191686
Whitespace was not getting preserved in HTML `<pre>` elements that contained other HTML elements.
cmlenz
parents:
345
diff
changeset
|
131 |
317
efa7870b63cb
Update change log, and some minor tweaks to keyword argument ordering for the new `encoding` parameter.
cmlenz
parents:
302
diff
changeset
|
132 |
efa7870b63cb
Update change log, and some minor tweaks to keyword argument ordering for the new `encoding` parameter.
cmlenz
parents:
302
diff
changeset
|
133 Version 0.3.4 |
efa7870b63cb
Update change log, and some minor tweaks to keyword argument ordering for the new `encoding` parameter.
cmlenz
parents:
302
diff
changeset
|
134 http://svn.edgewall.org/repos/genshi/tags/0.3.4/ |
323 | 135 (Nov 2 2006, from branches/stable/0.3.x) |
317
efa7870b63cb
Update change log, and some minor tweaks to keyword argument ordering for the new `encoding` parameter.
cmlenz
parents:
302
diff
changeset
|
136 |
efa7870b63cb
Update change log, and some minor tweaks to keyword argument ordering for the new `encoding` parameter.
cmlenz
parents:
302
diff
changeset
|
137 * The encoding of HTML and XML files, as well as markup and text templates, |
efa7870b63cb
Update change log, and some minor tweaks to keyword argument ordering for the new `encoding` parameter.
cmlenz
parents:
302
diff
changeset
|
138 can now be specified. Also, the encoding specified in XML declarations is |
efa7870b63cb
Update change log, and some minor tweaks to keyword argument ordering for the new `encoding` parameter.
cmlenz
parents:
302
diff
changeset
|
139 now respected unless an expiclit encoding is requested. |
efa7870b63cb
Update change log, and some minor tweaks to keyword argument ordering for the new `encoding` parameter.
cmlenz
parents:
302
diff
changeset
|
140 * Expressions used as arguments for `py:with`, `py:def`, and `py:for` |
efa7870b63cb
Update change log, and some minor tweaks to keyword argument ordering for the new `encoding` parameter.
cmlenz
parents:
302
diff
changeset
|
141 directives can now contain non-ASCII strings. |
285 | 142 |
143 | |
288
e09c5b7a64ae
Fix bug introduced in [343], that broke the parsing of templates which declare the same namespace more than once in a nested fashion. Thanks to Graham Higgins for reporting the problem.
cmlenz
parents:
285
diff
changeset
|
144 Version 0.3.3 |
e09c5b7a64ae
Fix bug introduced in [343], that broke the parsing of templates which declare the same namespace more than once in a nested fashion. Thanks to Graham Higgins for reporting the problem.
cmlenz
parents:
285
diff
changeset
|
145 http://svn.edgewall.org/repos/genshi/tags/0.3.3/ |
302 | 146 (Oct 16 2006, from branches/stable/0.3.x) |
288
e09c5b7a64ae
Fix bug introduced in [343], that broke the parsing of templates which declare the same namespace more than once in a nested fashion. Thanks to Graham Higgins for reporting the problem.
cmlenz
parents:
285
diff
changeset
|
147 |
e09c5b7a64ae
Fix bug introduced in [343], that broke the parsing of templates which declare the same namespace more than once in a nested fashion. Thanks to Graham Higgins for reporting the problem.
cmlenz
parents:
285
diff
changeset
|
148 * Fixed bug introduced in 0.3.2 that broke the parsing of templates which |
e09c5b7a64ae
Fix bug introduced in [343], that broke the parsing of templates which declare the same namespace more than once in a nested fashion. Thanks to Graham Higgins for reporting the problem.
cmlenz
parents:
285
diff
changeset
|
149 declare the same namespace more than once in a nested fashion. |
294 | 150 * Fixed the parsing of HTML entity references inside attribute values, both |
151 in the `XMLParser` and the `HTMLParser` classes. | |
302 | 152 * Some changes to usage of absolute vs. relative template paths to ensure that |
153 the filenamed-keyed cache employed by the TemplateLoader doesn't mix up | |
154 templates with the same name, but from different subdirectories. | |
288
e09c5b7a64ae
Fix bug introduced in [343], that broke the parsing of templates which declare the same namespace more than once in a nested fashion. Thanks to Graham Higgins for reporting the problem.
cmlenz
parents:
285
diff
changeset
|
155 |
e09c5b7a64ae
Fix bug introduced in [343], that broke the parsing of templates which declare the same namespace more than once in a nested fashion. Thanks to Graham Higgins for reporting the problem.
cmlenz
parents:
285
diff
changeset
|
156 |
285 | 157 Version 0.3.2 |
158 http://svn.edgewall.org/repos/genshi/tags/0.3.2/ | |
159 (Oct 12 2006, from branches/stable/0.3.x) | |
160 | |
161 * Exceptions from templates now contain the absolute path to the template file | |
162 when a search path is used. This enables tracebacks to display the line in | |
163 question. | |
164 * The template engine plugin now provides three different types: "genshi" and | |
165 "genshi-markup" map to markup templates, while "genshi-text" maps to text | |
166 templates. | |
278
d6c58473a9d0
Fix the handling of namespace context for match templates.
cmlenz
parents:
277
diff
changeset
|
167 * Fixed the namespace context used by XPath patterns in py:match templates. |
d6c58473a9d0
Fix the handling of namespace context for match templates.
cmlenz
parents:
277
diff
changeset
|
168 The were erroneously using the namespace context of the elements being |
d6c58473a9d0
Fix the handling of namespace context for match templates.
cmlenz
parents:
277
diff
changeset
|
169 matched, where they should rather use the context in which they were |
d6c58473a9d0
Fix the handling of namespace context for match templates.
cmlenz
parents:
277
diff
changeset
|
170 defined. |
285 | 171 * The contents of `<script>` and `<style>` elements are no longer escaped when |
280
ce848f7c41f1
The content of `<script>` and `<style>` elements is no longer escaped when serializing to HTML but declaring the XHTML namespace in the template.
cmlenz
parents:
278
diff
changeset
|
172 serializing to HTML but declaring the XHTML namespace in the template. |
285 | 173 * Improved error message raised when using the `py:for` directive on an object |
174 that is not iterable (ticket #60). | |
175 * Fixed the XPath function `starts-with()` which was always returning true | |
176 (ticket #61). | |
276 | 177 |
178 | |
260 | 179 Version 0.3.1 |
180 http://svn.edgewall.org/repos/genshi/tags/0.3.1/ | |
262 | 181 (Sep 22 2006, from branches/stable/0.3.x) |
260 | 182 |
183 * Includes and user-defined filters were not getting the correct context data | |
184 when used inside a match template (ticket #56). | |
185 * XPath patterns using the union operator (`|`) were returning only partial | |
186 results in some cases. | |
187 | |
188 | |
192
b64e36bc1100
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
189 Version 0.3 |
230 | 190 http://svn.edgewall.org/repos/genshi/tags/0.3.0/ |
252 | 191 (Sep 17 2006, from branches/stable/0.3.x) |
192
b64e36bc1100
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
192 |
234 | 193 * The project name was changed from "Markup" to "Genshi". See UPGRADE.txt |
194 for upgrade instructions. | |
192
b64e36bc1100
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
195 * Expression evaluation now differentiates between undefined variables and |
b64e36bc1100
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
196 variables that are defined but set to `None`. This also means that local |
b64e36bc1100
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
197 variables can override built-ins even if the local variable are set to |
b64e36bc1100
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
198 `None` (ticket #36). |
199
71ce4b5335ba
* Removed storage of substream in `MatchDirective`, because it's already being stored in the match templates (related to #39).
cmlenz
parents:
192
diff
changeset
|
199 * The plugin implementation now makes more functions available for use inside |
71ce4b5335ba
* Removed storage of substream in `MatchDirective`, because it's already being stored in the match templates (related to #39).
cmlenz
parents:
192
diff
changeset
|
200 templates: XML(), HTML(), defined(), and value-of(). These are mostly for |
71ce4b5335ba
* Removed storage of substream in `MatchDirective`, because it's already being stored in the match templates (related to #39).
cmlenz
parents:
192
diff
changeset
|
201 migration from Kid. |
192
b64e36bc1100
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
202 * The parsing of `py:with` directives has been improved: you can now assign |
b64e36bc1100
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
203 to multiple names, and semicolons inside string literals are treated as |
b64e36bc1100
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
204 expected. |
199
71ce4b5335ba
* Removed storage of substream in `MatchDirective`, because it's already being stored in the match templates (related to #39).
cmlenz
parents:
192
diff
changeset
|
205 * Generator expressions can now be used in template expressions (ticket #16). |
200
5861f4446c26
Add serialization to plain text, based on cboos' patch. Closes #41.
cmlenz
parents:
199
diff
changeset
|
206 * Added serialization to plain text (ticket #41). |
218 | 207 * Calling functions from template expressions with *args and/or **kwargs |
208 now works correctly (ticket #42). | |
209 * The `TemplateLoader` class and the `Template` instances that it manages are | |
210 now thread-safe, as they no longer keep any state related to the current | |
211 processing context. | |
212 * Stream filters and serializers can now be applied using the "pipe" (bitwise | |
213 or) operator "|". | |
214 * The execution of named template functions (`py:def`) no longer silently | |
215 swallows TypeError exceptions (ticket #44). | |
216 * The XML Parser now correctly handles unicode input (ticket #43). | |
217 * HTML entities can now be used in templates without having to declare an HTML | |
218 document type. | |
219 * Error reporting on undefined entities has been fixed. | |
220 * Fix traversal of substreams by XPath expressions. For example, the path | |
221 '*/*' no longer matches non-immediate child elements, and '@*' no longer | |
222 matches the attributes of descendants. | |
223 * Fixes for `py:match` which would get confused when it should be applied | |
224 to multiple elements (ticket #49). | |
224
90d62225f411
Implement support for namespace prefixes in XPath expressions.
cmlenz
parents:
218
diff
changeset
|
225 * Using namespace prefixes in XPath expressions is now supported. |
227
96a7e5011c69
Use list comprehension instead of `map()` in the AST transformer.
cmlenz
parents:
224
diff
changeset
|
226 * Expressions now correctly handle slices (ticket #51). |
234 | 227 * A simple text-based template language is now included for generating |
228 plain text output (ticket #47). | |
192
b64e36bc1100
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
229 |
b64e36bc1100
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
230 |
148
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
231 Version 0.2 |
230 | 232 http://svn.edgewall.org/repos/genshi/tags/0.2.0/ |
184
181d292eafa2
Interpolate multiline expressions in templates. Thanks to Christian Boos for reporting the problem and providing the fix.
cmlenz
parents:
181
diff
changeset
|
233 (Aug 22 2006, from branches/stable/0.2.x) |
148
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
234 |
153 | 235 * XPath syntax errors now contain position info (ticket #20). |
148
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
236 * Errors in expression evaluation now contain the correct line number in the |
153 | 237 template (ticket #22). |
148
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
238 * <script> and <style> element contents are no longer escaped when using HTML |
153 | 239 serialization (ticket #24). |
240 * In some cases expressions in templates did not get interpolated (ticket | |
241 #26). | |
148
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
242 * CDATA sections are now passed through the pipeline and serialized correctly. |
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
243 That allows using <script> or <style> elements in XHTML output that is still |
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
244 compatible with HTML user agents. |
159 | 245 * The XHTML serializer now correctly handles elements in foreign namespaces |
246 (such as SVG or MathML). | |
153 | 247 * Fixed relative includes in templates on Windows (ticket #27). |
160 | 248 * Output can be encoded using legacy codecs such as ISO-8859-1. Any character |
148
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
249 not representable in the chosen encoding gets replaced by the corresponding |
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
250 XML character reference. |
156 | 251 * String literals in XPath expressions that contain spaces are now parsed |
252 as expected. | |
253 * Added support for the XPath functions boolean(), ceiling(), concat(), | |
162
456039594db9
Implement the XPath relational operators and the `round()` function.
cmlenz
parents:
160
diff
changeset
|
254 contains(), false(), floor(), normalize-space(), number(), round(), |
456039594db9
Implement the XPath relational operators and the `round()` function.
cmlenz
parents:
160
diff
changeset
|
255 starts-with(), string-length(), substring(), substring-after(), |
456039594db9
Implement the XPath relational operators and the `round()` function.
cmlenz
parents:
160
diff
changeset
|
256 substring-before(), translate(), and true(). |
168 | 257 * Non-ASCII characters in expressions should now be handled correctly (ticket |
258 #29). | |
259 * Default values for arguments of template functions now also work with | |
260 constants and complex expressions (they only worked for string or number | |
261 literals before). | |
181
e103b75a96ce
Some error message improvements for template directives. Thanks to Christian Boos for the patch!
cmlenz
parents:
169
diff
changeset
|
262 * XPath expressions in now support XPath variables ($var) in predicates |
e103b75a96ce
Some error message improvements for template directives. Thanks to Christian Boos for the patch!
cmlenz
parents:
169
diff
changeset
|
263 (ticket #31). |
184
181d292eafa2
Interpolate multiline expressions in templates. Thanks to Christian Boos for reporting the problem and providing the fix.
cmlenz
parents:
181
diff
changeset
|
264 * Expressions in templates can now span multiple lines if they are enclosed |
181d292eafa2
Interpolate multiline expressions in templates. Thanks to Christian Boos for reporting the problem and providing the fix.
cmlenz
parents:
181
diff
changeset
|
265 in curly braces. |
185
95c3813a00de
Fix for #34: `py:def` macros can now be invoked from within expressions in attribute values.
cmlenz
parents:
184
diff
changeset
|
266 * py:def macros can now be invoked from within expressions inside attribute |
95c3813a00de
Fix for #34: `py:def` macros can now be invoked from within expressions in attribute values.
cmlenz
parents:
184
diff
changeset
|
267 values (ticket #34). |
148
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
268 |
169 | 269 |
148
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
270 Version 0.1 |
230 | 271 http://svn.edgewall.org/repos/genshi/tags/0.1.0/ |
148
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
272 (Aug 3 2006, from branches/stable/0.1.x) |
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
273 |
dcc9dc25bc59
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
274 * First public release |