Mercurial > genshi > genshi-test
annotate ChangeLog @ 285:408879d805fb
Updated change log.
author | cmlenz |
---|---|
date | Thu, 12 Oct 2006 12:43:46 +0000 |
parents | e68705cb462e |
children | dcd0e8918098 |
rev | line source |
---|---|
276 | 1 Version 0.4 |
2 http://svn.edgewall.org/repos/genshi/tags/0.4.0/ | |
3 (?, from branches/stable/0.4.x) | |
4 | |
5 * New example applications for CherryPy and web.py. | |
6 * The template loader now uses a LRU cache to limit the number of cached | |
7 templates to a configurable maximum. Also, a race condition in the template | |
8 loader was fixed by adding locking. | |
9 * A new filter (genshi.filters.HTMLFormFiller) was added, which can populate | |
10 HTML forms based on a dictionary of values. | |
277
c9fd81953169
The `HTMLSanitizer` now lets you override the default set of tag and attribute names that are considered safe.
cmlenz
parents:
276
diff
changeset
|
11 * The set of permitted tag and attribute names for the HTMLSanitizer can now |
c9fd81953169
The `HTMLSanitizer` now lets you override the default set of tag and attribute names that are considered safe.
cmlenz
parents:
276
diff
changeset
|
12 be configured per instance. |
285 | 13 |
14 | |
15 Version 0.3.2 | |
16 http://svn.edgewall.org/repos/genshi/tags/0.3.2/ | |
17 (Oct 12 2006, from branches/stable/0.3.x) | |
18 | |
19 * Exceptions from templates now contain the absolute path to the template file | |
20 when a search path is used. This enables tracebacks to display the line in | |
21 question. | |
22 * The template engine plugin now provides three different types: "genshi" and | |
23 "genshi-markup" map to markup templates, while "genshi-text" maps to text | |
24 templates. | |
278
8de2620504b9
Fix the handling of namespace context for match templates.
cmlenz
parents:
277
diff
changeset
|
25 * Fixed the namespace context used by XPath patterns in py:match templates. |
8de2620504b9
Fix the handling of namespace context for match templates.
cmlenz
parents:
277
diff
changeset
|
26 The were erroneously using the namespace context of the elements being |
8de2620504b9
Fix the handling of namespace context for match templates.
cmlenz
parents:
277
diff
changeset
|
27 matched, where they should rather use the context in which they were |
8de2620504b9
Fix the handling of namespace context for match templates.
cmlenz
parents:
277
diff
changeset
|
28 defined. |
285 | 29 * The contents of `<script>` and `<style>` elements are no longer escaped when |
280
e68705cb462e
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
|
30 serializing to HTML but declaring the XHTML namespace in the template. |
285 | 31 * Improved error message raised when using the `py:for` directive on an object |
32 that is not iterable (ticket #60). | |
33 * Fixed the XPath function `starts-with()` which was always returning true | |
34 (ticket #61). | |
276 | 35 |
36 | |
260 | 37 Version 0.3.1 |
38 http://svn.edgewall.org/repos/genshi/tags/0.3.1/ | |
262 | 39 (Sep 22 2006, from branches/stable/0.3.x) |
260 | 40 |
41 * Includes and user-defined filters were not getting the correct context data | |
42 when used inside a match template (ticket #56). | |
43 * XPath patterns using the union operator (`|`) were returning only partial | |
44 results in some cases. | |
45 | |
46 | |
192
cda3bdfc19ed
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
47 Version 0.3 |
230 | 48 http://svn.edgewall.org/repos/genshi/tags/0.3.0/ |
252 | 49 (Sep 17 2006, from branches/stable/0.3.x) |
192
cda3bdfc19ed
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
50 |
234 | 51 * The project name was changed from "Markup" to "Genshi". See UPGRADE.txt |
52 for upgrade instructions. | |
192
cda3bdfc19ed
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
53 * Expression evaluation now differentiates between undefined variables and |
cda3bdfc19ed
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
54 variables that are defined but set to `None`. This also means that local |
cda3bdfc19ed
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
55 variables can override built-ins even if the local variable are set to |
cda3bdfc19ed
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
56 `None` (ticket #36). |
199
58284b6b0009
* Removed storage of substream in `MatchDirective`, because it's already being stored in the match templates (related to #39).
cmlenz
parents:
192
diff
changeset
|
57 * The plugin implementation now makes more functions available for use inside |
58284b6b0009
* Removed storage of substream in `MatchDirective`, because it's already being stored in the match templates (related to #39).
cmlenz
parents:
192
diff
changeset
|
58 templates: XML(), HTML(), defined(), and value-of(). These are mostly for |
58284b6b0009
* Removed storage of substream in `MatchDirective`, because it's already being stored in the match templates (related to #39).
cmlenz
parents:
192
diff
changeset
|
59 migration from Kid. |
192
cda3bdfc19ed
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
60 * The parsing of `py:with` directives has been improved: you can now assign |
cda3bdfc19ed
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
61 to multiple names, and semicolons inside string literals are treated as |
cda3bdfc19ed
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
62 expected. |
199
58284b6b0009
* Removed storage of substream in `MatchDirective`, because it's already being stored in the match templates (related to #39).
cmlenz
parents:
192
diff
changeset
|
63 * Generator expressions can now be used in template expressions (ticket #16). |
200
50eab0469148
Add serialization to plain text, based on cboos' patch. Closes #41.
cmlenz
parents:
199
diff
changeset
|
64 * Added serialization to plain text (ticket #41). |
218 | 65 * Calling functions from template expressions with *args and/or **kwargs |
66 now works correctly (ticket #42). | |
67 * The `TemplateLoader` class and the `Template` instances that it manages are | |
68 now thread-safe, as they no longer keep any state related to the current | |
69 processing context. | |
70 * Stream filters and serializers can now be applied using the "pipe" (bitwise | |
71 or) operator "|". | |
72 * The execution of named template functions (`py:def`) no longer silently | |
73 swallows TypeError exceptions (ticket #44). | |
74 * The XML Parser now correctly handles unicode input (ticket #43). | |
75 * HTML entities can now be used in templates without having to declare an HTML | |
76 document type. | |
77 * Error reporting on undefined entities has been fixed. | |
78 * Fix traversal of substreams by XPath expressions. For example, the path | |
79 '*/*' no longer matches non-immediate child elements, and '@*' no longer | |
80 matches the attributes of descendants. | |
81 * Fixes for `py:match` which would get confused when it should be applied | |
82 to multiple elements (ticket #49). | |
224
e4dad1145f84
Implement support for namespace prefixes in XPath expressions.
cmlenz
parents:
218
diff
changeset
|
83 * Using namespace prefixes in XPath expressions is now supported. |
227
98b8e1a92df8
Use list comprehension instead of `map()` in the AST transformer.
cmlenz
parents:
224
diff
changeset
|
84 * Expressions now correctly handle slices (ticket #51). |
234 | 85 * A simple text-based template language is now included for generating |
86 plain text output (ticket #47). | |
192
cda3bdfc19ed
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
87 |
cda3bdfc19ed
Expression evaluation now differentiates between undefined variables and variables that are defined but set to `None`.
cmlenz
parents:
185
diff
changeset
|
88 |
148
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
89 Version 0.2 |
230 | 90 http://svn.edgewall.org/repos/genshi/tags/0.2.0/ |
184
e27a48802987
Interpolate multiline expressions in templates. Thanks to Christian Boos for reporting the problem and providing the fix.
cmlenz
parents:
181
diff
changeset
|
91 (Aug 22 2006, from branches/stable/0.2.x) |
148
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
92 |
153 | 93 * XPath syntax errors now contain position info (ticket #20). |
148
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
94 * Errors in expression evaluation now contain the correct line number in the |
153 | 95 template (ticket #22). |
148
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
96 * <script> and <style> element contents are no longer escaped when using HTML |
153 | 97 serialization (ticket #24). |
98 * In some cases expressions in templates did not get interpolated (ticket | |
99 #26). | |
148
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
100 * CDATA sections are now passed through the pipeline and serialized correctly. |
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
101 That allows using <script> or <style> elements in XHTML output that is still |
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
102 compatible with HTML user agents. |
159 | 103 * The XHTML serializer now correctly handles elements in foreign namespaces |
104 (such as SVG or MathML). | |
153 | 105 * Fixed relative includes in templates on Windows (ticket #27). |
160 | 106 * Output can be encoded using legacy codecs such as ISO-8859-1. Any character |
148
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
107 not representable in the chosen encoding gets replaced by the corresponding |
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
108 XML character reference. |
156 | 109 * String literals in XPath expressions that contain spaces are now parsed |
110 as expected. | |
111 * Added support for the XPath functions boolean(), ceiling(), concat(), | |
162
f767cf98e3e3
Implement the XPath relational operators and the `round()` function.
cmlenz
parents:
160
diff
changeset
|
112 contains(), false(), floor(), normalize-space(), number(), round(), |
f767cf98e3e3
Implement the XPath relational operators and the `round()` function.
cmlenz
parents:
160
diff
changeset
|
113 starts-with(), string-length(), substring(), substring-after(), |
f767cf98e3e3
Implement the XPath relational operators and the `round()` function.
cmlenz
parents:
160
diff
changeset
|
114 substring-before(), translate(), and true(). |
168 | 115 * Non-ASCII characters in expressions should now be handled correctly (ticket |
116 #29). | |
117 * Default values for arguments of template functions now also work with | |
118 constants and complex expressions (they only worked for string or number | |
119 literals before). | |
181
d07ce6c1dbbe
Some error message improvements for template directives. Thanks to Christian Boos for the patch!
cmlenz
parents:
169
diff
changeset
|
120 * XPath expressions in now support XPath variables ($var) in predicates |
d07ce6c1dbbe
Some error message improvements for template directives. Thanks to Christian Boos for the patch!
cmlenz
parents:
169
diff
changeset
|
121 (ticket #31). |
184
e27a48802987
Interpolate multiline expressions in templates. Thanks to Christian Boos for reporting the problem and providing the fix.
cmlenz
parents:
181
diff
changeset
|
122 * Expressions in templates can now span multiple lines if they are enclosed |
e27a48802987
Interpolate multiline expressions in templates. Thanks to Christian Boos for reporting the problem and providing the fix.
cmlenz
parents:
181
diff
changeset
|
123 in curly braces. |
185
8e5a3048b359
Fix for #34: `py:def` macros can now be invoked from within expressions in attribute values.
cmlenz
parents:
184
diff
changeset
|
124 * py:def macros can now be invoked from within expressions inside attribute |
8e5a3048b359
Fix for #34: `py:def` macros can now be invoked from within expressions in attribute values.
cmlenz
parents:
184
diff
changeset
|
125 values (ticket #34). |
148
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
126 |
169 | 127 |
148
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
128 Version 0.1 |
230 | 129 http://svn.edgewall.org/repos/genshi/tags/0.1.0/ |
148
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
130 (Aug 3 2006, from branches/stable/0.1.x) |
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
131 |
a0a52cf4e4de
Added changelog file, plus some README and setup tweaks.
cmlenz
parents:
diff
changeset
|
132 * First public release |