.. -*- mode: rst; encoding: utf-8 -*- ========================== Kid Language Specification ========================== :Author: `Ryan Tomayko`_ :Contact: rtomayko@gmail.com :Revision: 5 :Date: $Date: 2006-12-20 03:11:36 -0500 (Wed, 20 Dec 2006) $ :Copyright: 2005, Ryan Tomayko :Other Formats: Text__ .. __: language.txt .. _Ryan Tomayko: http://naeblis.cx/rtomayko/ Kid is a simple XML based template language that uses embedded Python_ to do cool stuff. The syntax was inspired by a number of existing template languages, namely XSLT_, TAL_, and PHP_. .. _python: http://www.python.org/ .. _xslt: http://www.w3.org/TR/xslt .. _tal: http://www.zope.org/Wikis/DevSite/Projects/ZPT/TAL .. _php: http://www.php.net/ This document describes the template language and will be most useful as reference to those developing Kid templates. For information about using templates from Python, the command line, or in web environments, see the `User's Guide`__. .. __: guide.html .. contents:: Contents :depth: 2 .. sectnum:: Synopsis ======== :: This is replaced.

These are some of my favorite fruits:

Good for you!

Yields something like this:: A Kid Test Document

These are some of my favorite fruits:

Good for you!

The Kid Namespace ================= All attributes described in this document must belong to the following namespace:: http://purl.org/kid/ns# The namespace prefix ``py`` is used throughout this document to indicate that an item belongs to the Kid/Python namespace. Embedding Code Blocks (````) ====================================== The ```` processing instruction (PI) contains Python code and **may** occur anywhere that is legal for processing instructions to occur in an XML document. The rules for executing code found in a ```` PI is as follows: 1. ```` PIs located outside of the document element (e.g. root element) contain *Document Level* code. This code **should** be executed in a global, shared scope for the document. The code **should** be executed once when the template is loaded and shared between multiple invocations of the template. 2. ```` PIs located within the document element contain *Local Level* code. This code is executed each time the document is processed with a local scope specific to the invocation and the shared document level global scope. *Document Level* and *Local Level* code work exactly like *Module Level* and *Function Level* code in normal Python modules. For example, the following Kid template::

May be considered equivalent to the following Python module:: x = 0 y = 0 def expand(handler): handler.startDocument() handler.startElement('html') x = 1 if x == 1: x = 10 handler.element('p', content=x) # output p element with x as value global y y = 30 handler.element('p', content=y) # output p element with value of y handler.endElement('html') handler.endDocument() ```` PIs may contain any legal Python language construct including functions, classes, lamda forms, etc. :: Single line ```` PIs are okay too:: .. _Content Producing Construct: Content Producing Constructs ============================ There are multiple methods of generating content output from a template: ``py:content``, ``py:replace``, ``py:attrs``, and ``${}`` substitution. Each of these syntaxes have the same rules for what types of objects may result from the Python expression they contain. ``str``, ``unicode`` The string is inserted as XML CDATA. That is, it is non-parsable character data that does not contain markup. The following characters are encoded as XML entities when serialized: '<', '&'. Attribute values containing content also encode the quote character: '"'. ``kid.Element`` When an ``kid.Element`` is referenced from a content producing construct, the item is inserted into the document literally, i.e. it is not encoded as text, but becomes part of the output structure. The ``XML()`` and ``document()`` functions can be used to turn a string into structured content and to retrieve an XML document from a URL, respectively. Note that attribute values **must not** reference structured content. This applies to ``py:attrs`` and using ``${}`` substitution in attribute values. *sequence* If a sequence type (``list``, ``tuple``, or other iterable) is referenced, the rules are applied to each of the items in the sequence. For example, you could reference a list containing an ``Element`` and a string. Other If the result of evaluating the expression is any other type, an attempt is made to coerce the value to unicode as if by calling ``unicode(expr)`` and processing continues as if the object were a string or unicode object initially. .. _Python Expression Substitution: Python Expression Substitution (``${expr}``) ============================================ Attributes not belonging to the Kid namespace and text content **may** embed Python expressions by enclosing the expression within a dollar sign followed by curly braces: ``${expr}``. The result of evaluating the expression(s) is substituted with the rest of the attribute value or text content following rules defined for `Content Producing Constructs`_. :: ... ... would result in:: ... If an attribute value consists purely of substitution expressions and all expressions evaluate to ``None``, the attribute is removed. This can be avoided by using ``expr or ''`` to force a zero length string to be returned instead of ``None``. For example:: ... ... would result in:: ... However, this:: ... ... results in:: ... Identifier Shortcut (``$name``) ------------------------------- For simple expressions consisting entirely variable names and object access operators (.), the curly braces may be omitted:: Dots are allowed too: $object.another.attribute However, it is good practice to use the curly brace form as it sets the substitution off from the other text a bit more providing a stronger visual clue as to what's going on. Escaping (``$$``) ----------------- ``$$`` is an escape. ``$${bla}`` will output ``${bla}``. Default Imports =============== All templates have a few default imports for convenience. ``XML()`` function ------------------ `Python Expression substitution`_, `py:content`_, and `py:replace`_ encode strings as text. That is, text is encoded according to the rules of the XML specification, which includes, among other things, replacing the literal characters ``<`` and ``&`` with their encoded counterparts (``<`` ``&``). If you have XML stored as a string and want it to be output as XML and not encoded text, you need to pass the string to the ``XML`` function. For example, let's say there is a function, ``hello``, that returns XML data that should be embedded in template output (let's say it returns ``world``). Consider the following::

${hello()}

The result would be::

<hello>world<hello>

Calling the ``XML`` function would have given us the result we intended::

${XML(hello())}

::

world

The ``xmlns`` keyword parameter can be used to set the default XML namespace for the top-level elements in the supplied content::

${XML(hello(), xmlns="cid:hello_example")}

::

world

This is especially useful when including XHTML content that lacks an XML namespace declaration. ``document()`` function ------------------------ The ``document`` function loads an XML document from a file or URL allowing it to be embedded in template output::
The document function resolves paths relative to the current template file (if the template location is available). ``defined(name) and value_of(name, default)`` functions ------------------------------------------------------- ``defined`` returns True if the name exists in the Kid namespace. value_of returns either the named value or the optional default value if that name doesn't exist in the namespace. These two simple convenience functions may be more intuitive to many than hasattr(self, name) and getattr(self, name, default) which are exactly equivalent. Attribute Language ================== .. _`py:for`: Repetition/Iteration (``py:for``) --------------------------------- :: Works exactly like the `Python for statement`__. __ http://www.python.org/dev/doc/devel/ref/for.html The ``py:for`` attribute **may** appear on any element to signify that the element should be processed multiple times, once for each value in the sequence specified::

X bottles of beer on the wall, X bottles of beer on the wall, take one down, pass it around, X - 1 bottles of beer on the wall.

The ``py:for`` attribute is the first attribute to be processed if present. All other ``py:`` attributes are processed for each iteration of the loop. .. _`py:if`: Conditionals (``py:if``) ------------------------ :: The ``py:if`` attribute may appear on any element to signify that the element and its decendant items should be output only if the boolean expression specified evaluates to true in Python::

Python seems to be handling multiplication okay.

The ``py:if`` attribute is processed after the ``py:for`` attribute and is evaluated for each iteration. If the result of evaluating ``expr`` as a boolean expression is false in Python, no further ``py:`` attributes are processed for the current iteration or, if not in a ``py:for``, at all. .. note:: Evaluated as a boolean expression in Python, ``None``, ``False``, ``[]``, ``()``, ``{}``, ``0``, and ``''`` are all considered to be false. .. _`py:content`: Dynamic Content (``py:content``) -------------------------------- :: This attribute **may** appear on any element to signify that the decendant items of the element are to be replaced with the result of evaluating ``expr``. ::

The Time

... results in::

Tues, Jun 26, 2004 02:03:53 AM

``py:content`` is a `Content Producing Construct`_ and can output both character and structured data. If ``expr`` evaluates to ``None`` the element will be output as an empty element. ::

i go away

... results in::

.. _`py:replace`: Replacing Content (``py:replace``) ---------------------------------- :: ``py:replace`` is shorthand for specifying a ``py:content`` and a ``py:strip="True"`` on the same element::

...

... results in::

10

... and is equivelant to specifying::

...

The ``py:replace`` attribute is processed after the ``py:for`` and ``py:if`` attributes. ``py:strip`` and ``py:content`` attributes are not processed and are discarded. ``py:replace`` is a `Content Producing Construct`_ and can output both character and structured data. If ``expr`` evaluates to ``None`` the element will be output as an empty element. ::

i go away

... results in:: .. _`py:strip`: Stripping Tags (``py:strip``) ----------------------------- :: The ``py:strip`` attribute may apppear on any element to signify that the containing element should not be output. If the attribute value is blank (no ``expr`` at all) or if the result ``expr`` is a boolean expression that evaluates to true, the element is not output, but all descendant elements are processed normally. If ``expr`` is not blank and the result of evaluating ``expr`` as a boolean expression is false, processing continues as if the attribute did not exist. The ``py:strip`` attribute **may** appear on an element with any other kid attribute. However, if both a ``py:replace`` and a ``py:strip`` exist on the same element, the ``py:strip`` attribute is ignored and discarded. The ``py:strip`` attribute is processed after the ``py:for`` and ``py:if`` attributes. If omission is eminent, the ``py:content`` attribute is processed normally but attribute interpolation does not occur. .. _`py:attrs`: Dynamic Attributes (``py:attrs``) --------------------------------- :: The ``py:attrs`` attribute may appear on any element to specify a set of attributes that should be set on the element when it is processed. The expression specified **must** evaluate to one of the following types of values: dict A dictionary with keys specifying attribute names and values specifying attribute values. These are added to the attributes of the current element by calling ``element.attrib.update(mapping)``, where ``element`` is a kid.Element type object and ``mapping`` is the dictionary returned from the expression. Outer curly braces are not necessary to write down. list A list of tuples of the form ``(name, value)`` is also acceptable. Each item of the list is added to the current set of attributes by iterating over the list and calling ``element.set(name, value)``. keyword arguments The attributes can also be specified as comma separated keyword arguments of the form ``name=value``. The following lines:: will all produce the same output:: Note that attributes whose values are ``None`` will be removed. If a blank attribute is desired, an empty string should be used. If the expression specified is an empty dictionary or an empty list, the attributes are not modified in any way. ``py:attrs`` is a `Content Producing Construct`_, but can output only character data. .. _`py:def`: .. _`Named Template Functions`: Named Template Functions (``py:def``) ---------------------------------------- :: The ``py:def`` attribute may appear on any element to create a "Named Template Function". Markup contained within an ``py:def`` element is not output during normal template expansion but can be referenced from other `Content Producing Constructs`_ to insert the markup at the point referenced. Like normal Python functions, Named Template Functions have an optional argument list that may use all of the jazzy features of Python argument lists like variable and keyword arguments. Named Template Functions are invoked exactly like normal Python functions. They are generally invoked from `Content Producing Constructs`_ like ``py:content`` or ``${}`` substitution. Here we will define two Named Template Functions: ``display_list`` and ``display_dict``. The first function takes a sequence and the second a mapping. We can invoke these functions from the same template by invoking them from a content producing construct::
Key Value
${display_list(['apple', 'orange', 'kiwi'])}
Key/Value Table replaces this text
Serialized as XML this becomes something like::
  • apple
  • orange
  • kiwi
Key Value
x y
p q
.. _`py:match`: .. _Match Templates: Match Templates (``py:match``) ------------------------------ :: The ``py:match`` attribute may appear on any element to create a "Match Template". Markup contained within a Match Template element is not output during normal template expansion. Instead, these constructs set up filters for expansion output that are capable of transforming content as it is generated. Match Templates are generally used to insert content dynamically based on patterns in template expansion or to provide "custom tag" functionality similar to that found in JSP taglibs or XSLT. A Match Template has two parts: the match expression part (``expr``) and the body part (the element and it's descendants). Match Templates are processed as follows: 1. Each element that is output from a template goes through the Match Template Filter. 2. The Match Template Filter visits each of the Match Templates defined in the current template and the templates the current template `extends`_ in the order that they are defined and evaluates the associated match expression. 3. If the match expression returns true as a boolean expression, the match template's body is expanded and replaces the original element and all of its descendants. In both the match expression and in the match template's body, the ``item`` name is bound to the Element that is being output. However, there are some limitations to what can be accessed at each phase: 1. During match expression evaluation, only the ``item`` Element and none of its descendants are available. This means that match expressions are limited to testing matches based on the immediate Element's tag and attributes [#]_. 2. During match template expansion (that is, when the match expression is true), the element's descendants *are* available and may be referenced from `Content Producing Constructs`_ to output bits and pieces of the matched items structure. When matching the item.tag you need to keep your namespaces in mind. A common problem is to use the expression ``item.tag == 'body'`` when the document has a default namespace declared. When the default namespace is declared the XML parser will rename the tags using `clark notation`_. So the correct expression would be something like ``item.tag == '{http://www.w3.org/1999/xhtml}body'``. .. [#] This is due to the streaming nature of the Kid processor. During normal template expansion, the entire tree is never fully retained in memory. .. _clark notation: http://www.jclark.com/xml/xmlns.htm Example ~~~~~~~ The following simple example shows how to create a custom tag ```` that outputs one of two provided values based on the time of day the template is expanded:: Time of day demo

Good

An important thing to note is that the ``py:match`` expression and the match template body have access to the ```` element via the variable ``item``. The ``item.get(timeofday())`` bit retrieves the value of the ``am`` attribute or the ``pm`` attribute based on what is returned from the ``timeofday`` function. At 9:00 AM, output from this template would look like this:: Time of day demo

Good Morning!

The obvious question at this point is how to reuse Match Templates? The example above demonstrates the use of a Match Template from the same main template but it is often desirable to have "libraries" of Match Templates that could be used by multiple individual templates. The answer is to have the main template extend_ a common template containing the Match Templates needed. We can rewrite the above example as two separate templates: ``main.kid`` and ``common.kid``. The common template would look like this:: And the main template would look like this:: Time of day demo

Good

When a template extends_ another template (or set of templates), all of the Match Templates and `Named Template Functions`_ of the extended templates are available as if they were defined locally. .. _`py:extends`: .. _`extends`: .. _`extend`: .. _`Template Reuse`: Template Reuse (``py:extends``) -------------------------------- :: The ``py:extends`` attribute may appear on the root element to specify that the template should inherit the `Named Template Functions`_ and `Match Templates`_ defined in another template (or set of templates). If a ``py:extends`` attribute is specified, it **must** be on the root element of the document. The ``py:extends`` may contain a list of Python expressions separated by commas that reference templates. The rules for what types of values may be specified are: string The name of a template file, relative to the current template file. Example:: module or Template class The ``py:extends`` variable references a module or a Template class. If a module is referenced, an attempt is made to find a class named ``Template`` belonging to the that module. Example:: `` elements to ```` elements with uppercase content::
The functions and match templates may be imported into another template by referencing them with ``py:extends``:: Errors

The following errors were found:

${ display_errors(["Field is required", "Must be phone number.."]) } The ``errors`` item is transformed to ``ERRORS`` and the error list is displayed. Both the match template and the named template function are available in the derived template as if they were defined locally. .. _`py:layout`: .. _`layout`: .. _`layout template`: .. _`Layout Templates`: Layout Templates (``py:layout``) -------------------------------- :: The ``py:layout`` attribute may appear on the root element to specify that a content template should use the referenced template as a `layout template`. This allows separation of individual page content from site-wide layout elements such as headers, menus, footers, etc. `Match Templates`, `Named Template Functions`, and `layout parameters` defined in a content template will be applied to the `layout template`. If a ``py:layout`` attribute is specified, it **must** be on the root element of the document. The ``py:layout`` attribute may contain a single Python expression that references a layout template. The rules for what types of values may be specified are: string The name of a template file, relative to the current template file. Example:: module or Template class The ``py:layout`` variable references a module or a Template class. If a module is referenced, an attempt is made to find a class named ``Template`` belonging to the that module. Example:: App Name - ${page_title} ${page_specific_css()}

Now viewing: ${page_title} of App Name

Default content Note how some sections were left to be filled in by the content template. Page-specific functions, match templates, and layout parameters may be defined in a separate template and then applied to the base template with ``py:layout``::
  • Content Item 1
  • Content Item 2
  • Content Item 3
Both the match template and the named template function are applied to the base layout template when the content template is rendered. Also note how the ``page_title`` is inserted into the ``layout_params`` dict. Items placed in ``layout_params`` are passed to the base layout template along with template keyword arguments. The ``layout_params`` dict can only be modified in the outer python block before the root element in the page. .. _`order`: Processing Order ================ The order that ``py:`` attributes are processed is as follows: 1. ``py:def`` 2. ``py:match`` 3. ``py:for`` 4. ``py:if`` 5. ``py:replace`` 6. ``py:strip`` 7. ``py:attrs`` 8. ``py:content`` Attribute substitution occurs after all other attributes are processed and **must not** be processed for ``py:`` attributes. XML Comments ============ Kid templates may contain XML comments. The comments will appear in the serialized output of a template, but will not be processed by the `Python Expression Substitution`_ rules. :: Sometimes it is useful to have comments in a template that will not appear when the template is serialized. To do this simply prefix the comment text with a ``!`` character:: Another exception is that for comments starting with ``[`` or `` Revision History ================ See the `Release Notes`_ for a list of changes between versions. .. _Release Notes: notes.html