cmlenz@276: Version 0.4 cmlenz@276: http://svn.edgewall.org/repos/genshi/tags/0.4.0/ cmlenz@276: (?, from branches/stable/0.4.x) cmlenz@276: cmlenz@276: * New example applications for CherryPy and web.py. cmlenz@276: * Exceptions from templates now contain the absolute path to the template file cmlenz@276: when a search path is used. This enables tracebacks to display the line in cmlenz@276: question. cmlenz@276: * The template engine plugin now provides three different types: "genshi" and cmlenz@276: "genshi-markup" map to markup templates, while "genshi-text" maps to text cmlenz@276: templates. cmlenz@276: * The template loader now uses a LRU cache to limit the number of cached cmlenz@276: templates to a configurable maximum. Also, a race condition in the template cmlenz@276: loader was fixed by adding locking. cmlenz@276: * A new filter (genshi.filters.HTMLFormFiller) was added, which can populate cmlenz@276: HTML forms based on a dictionary of values. cmlenz@277: * The set of permitted tag and attribute names for the HTMLSanitizer can now cmlenz@277: be configured per instance. cmlenz@278: * Fixed the namespace context used by XPath patterns in py:match templates. cmlenz@278: The were erroneously using the namespace context of the elements being cmlenz@278: matched, where they should rather use the context in which they were cmlenz@278: defined. cmlenz@276: cmlenz@276: cmlenz@260: Version 0.3.1 cmlenz@260: http://svn.edgewall.org/repos/genshi/tags/0.3.1/ cmlenz@262: (Sep 22 2006, from branches/stable/0.3.x) cmlenz@260: cmlenz@260: * Includes and user-defined filters were not getting the correct context data cmlenz@260: when used inside a match template (ticket #56). cmlenz@260: * XPath patterns using the union operator (`|`) were returning only partial cmlenz@260: results in some cases. cmlenz@260: cmlenz@260: cmlenz@192: Version 0.3 cmlenz@230: http://svn.edgewall.org/repos/genshi/tags/0.3.0/ cmlenz@252: (Sep 17 2006, from branches/stable/0.3.x) cmlenz@192: cmlenz@234: * The project name was changed from "Markup" to "Genshi". See UPGRADE.txt cmlenz@234: for upgrade instructions. cmlenz@192: * Expression evaluation now differentiates between undefined variables and cmlenz@192: variables that are defined but set to `None`. This also means that local cmlenz@192: variables can override built-ins even if the local variable are set to cmlenz@192: `None` (ticket #36). cmlenz@199: * The plugin implementation now makes more functions available for use inside cmlenz@199: templates: XML(), HTML(), defined(), and value-of(). These are mostly for cmlenz@199: migration from Kid. cmlenz@192: * The parsing of `py:with` directives has been improved: you can now assign cmlenz@192: to multiple names, and semicolons inside string literals are treated as cmlenz@192: expected. cmlenz@199: * Generator expressions can now be used in template expressions (ticket #16). cmlenz@200: * Added serialization to plain text (ticket #41). cmlenz@218: * Calling functions from template expressions with *args and/or **kwargs cmlenz@218: now works correctly (ticket #42). cmlenz@218: * The `TemplateLoader` class and the `Template` instances that it manages are cmlenz@218: now thread-safe, as they no longer keep any state related to the current cmlenz@218: processing context. cmlenz@218: * Stream filters and serializers can now be applied using the "pipe" (bitwise cmlenz@218: or) operator "|". cmlenz@218: * The execution of named template functions (`py:def`) no longer silently cmlenz@218: swallows TypeError exceptions (ticket #44). cmlenz@218: * The XML Parser now correctly handles unicode input (ticket #43). cmlenz@218: * HTML entities can now be used in templates without having to declare an HTML cmlenz@218: document type. cmlenz@218: * Error reporting on undefined entities has been fixed. cmlenz@218: * Fix traversal of substreams by XPath expressions. For example, the path cmlenz@218: '*/*' no longer matches non-immediate child elements, and '@*' no longer cmlenz@218: matches the attributes of descendants. cmlenz@218: * Fixes for `py:match` which would get confused when it should be applied cmlenz@218: to multiple elements (ticket #49). cmlenz@224: * Using namespace prefixes in XPath expressions is now supported. cmlenz@227: * Expressions now correctly handle slices (ticket #51). cmlenz@234: * A simple text-based template language is now included for generating cmlenz@234: plain text output (ticket #47). cmlenz@192: cmlenz@192: cmlenz@148: Version 0.2 cmlenz@230: http://svn.edgewall.org/repos/genshi/tags/0.2.0/ cmlenz@184: (Aug 22 2006, from branches/stable/0.2.x) cmlenz@148: cmlenz@153: * XPath syntax errors now contain position info (ticket #20). cmlenz@148: * Errors in expression evaluation now contain the correct line number in the cmlenz@153: template (ticket #22). cmlenz@148: *