Edgewall Software

Changes between Version 48 and Version 49 of WikiStart


Ignore:
Timestamp:
Aug 29, 2007, 1:44:28 AM (17 years ago)
Author:
cmlenz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v48 v49  
    2323 * 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.
    25  * [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).
     25 * [wiki:Documentation/streams.html#serialization Independence from 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 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.
     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, in combination with [wiki:Documentation/xml-templates.html#id10 XInclude] support, 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].