Edgewall Software

Changes between Version 5 and Version 6 of GenshiRecipes/PyLayoutEquivalent


Ignore:
Timestamp:
Sep 12, 2006, 12:36:52 PM (18 years ago)
Author:
cmlenz
Comment:

s/Markup/Genshi

Legend:

Unmodified
Added
Removed
Modified
  • GenshiRecipes/PyLayoutEquivalent

    v5 v6  
    1 = [MarkupRecipes Markup Recipes]: Replacing `py:layout` with Includes =
     1= [GenshiRecipes Genshi Recipes]: Replacing `py:layout` with Includes =
    22
    3 As noted in MarkupVsKid, Markup does not support the `py:layout` directive for template reuse.
     3As noted in GenshiVsKid, Markup does not support the `py:layout` directive for template reuse.
    44
    5 This page shows how the [http://www.kid-templating.org/language.html#layout-templates-py-layout example] from the Kid language specification translates to a functionally equivalent setup in Markup.
     5This page shows how the [http://www.kid-templating.org/language.html#layout-templates-py-layout example] from the Kid language specification translates to a functionally equivalent setup in Genshi.
    66
    77Assume the following layout template, stored as `layout.html`:
     
    99{{{
    1010#!xml
    11 <html xmlns:py="http://markup.edgewall.org/" py:strip="">
     11<html xmlns:py="http://genshi.edgewall.org/" py:strip="">
    1212
    1313  <head>
     
    3333{{{
    3434#!xml
    35 <html xmlns:py="http://markup.edgewall.org/"
     35<html xmlns:py="http://genshi.edgewall.org/"
    3636      xmlns:xi="http://www.w3.org/2001/XInclude">
    3737
     
    8181
    8282----
    83 See also: MarkupRecipes/PyExtendsEquivalent, MarkupRecipes, MarkupVsKid, MarkupTemplates
     83See also: GenshiRecipes/PyExtendsEquivalent, GenshiRecipes, GenshiVsKid, [wiki:Documentation/xml-templates.html Genshi XML Template Language]