Edgewall Software

Changes between Version 47 and Version 48 of WikiStart


Ignore:
Timestamp:
Aug 28, 2007, 6:57:56 PM (17 years ago)
Author:
cmlenz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v47 v48  
    2020'''Genshi''' is a Python library that provides an integrated set of components for parsing, generating, and processing HTML, XML or other textual content for output generation on the web.
    2121
    22 The main feature is a [wiki:Documentation/xml-templates.html template language] that is smart about markup: unlike conventional template language that only deal with bytes and (if you're lucky) characters, Genshi knows the difference between tags, attributes, and actual text nodes, and uses that knowledge to your advantage. For example:
    23  * Intelligent automatic escaping greatly reduces the risk of opening your site to [http://ha.ckers.org/cross-site-scripting.html cross-site scripting] attacks (XSS).
     22The main feature is a [wiki:Documentation/xml-templates.html template language] that is smart about markup: unlike conventional template languages that only deal with bytes and (if you're lucky) characters, Genshi knows the difference between tags, attributes, and actual text nodes, and uses that knowledge to your advantage. For example:
     23 * Intelligent automatic escaping greatly reduces the risk of opening up your site to [http://ha.ckers.org/cross-site-scripting.html cross-site scripting] attacks (XSS).
    2424 * [wiki:Documentation/xml-templates.html#template-directives Template directives] are often less verbose than those in most other template languages, as they can be attached directly to the elements they act upon.
    2525 * [wiki:Documentation/streams.html#serialization Independence of a specific serialization format] lets you instantly switch between generating well-formed HTML 4.01 and XHTML 1.0 (or other formats).
    2626 * [wiki:Documentation/filters.html Stream-based filtering] allows you to apply various transformations as a template is being processed, without having to parse and serialize the output again.
    27  * [wiki:Documentation/xml-templates.html#id5 Match templates] let you enforce a common structure (and more) on template output. This is used instead of the more rigid inheritance feature commonly found in other template languages.
     27 * [wiki:Documentation/xml-templates.html#id5 Match templates] let you enforce a common structure on template output, and [wiki:GenshiRecipes/HtmlTransform#UsingMatchTemplates more]. This is used instead of the more rigid inheritance feature commonly found in other template languages.
    2828
    2929For those cases where you don't want to generate markup, Genshi also provides a simple [wiki:Documentation/text-templates.html text-based template language].