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: *