SimpleTAL API: simpleTAL Module

Documentation on how to use the simpleTAL Module.

simpleTAL

Two helper functions are provided for convenience, one for compiling HTML templates, and one for compiling XML templates.  If an error is encountered during compilation (for example mismatched TAL tags or bad syntax) an TemplateParseException will be thrown.

compileHTMLTemplate (template, inputEncoding="ISO-8859-1")

Compiles the passed in HTML template into an instance of the 'Template' class.  The template object should be either a string containing the template, or a file-like object.  The inputEncoding specifies the encoding that the template was written using and deafults to iso-8859-1.  See below for details of how to use the Template class.

compileXMLTemplate (template)

Compiles the passed in XML template into an instance of the 'Template' class.  The template object should be either a string containing the template, or a file-like object.  The XML template must be a well formed XML document.  The character set will be determined from the prolog of the template or be assumed to be utf-8.  See below for details of how to use the Template class.

compileDOMTemplate (dom)

Compiles an XML template that is stored as a DOM tree.  This requires PyXML to be installed to function. 

Template Instances

The compiled templates contain all of the logic required to be able to expand themselves for a given context.  They can be kept around and reused as often as required, there is no need or benefit to re-compiling them unless the underlying template changes.  They have one method of interest as part of the external API:


def expand (self, context, outputFile[,outputEncoding] [,docType][,suppressXMLDeclaration])

This method will expand the template, using the simpleTALES.Context object provided, and write the output into the given file-like object.  If the template is a HTML template then the result will, by default, be encoded in iso-8859-1.  If no outputEncoding is specified and the template is an XML template then it will default to utf-8.

The docType and suppressXMLDeclaration variables apply only to XML Templates. 

Python's support for XML does not currently extend to the LexicalHandler API, which is required for an application to be able to read an XML documents DOCTYPE.  If pyXML is installed SimpleTAL will make use of it to determine the XML DOCTYPE, otherwise the doctype must be passed as a named variable to the expand method.

For example to produce a valid strict XHTML document without pyXML use:


template.expand (context, outputFile, docType='<!DOCTYPE html  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">')

If the suppressXMLDeclaration is set to true then the XML Declaration will not be included in the output (required for XHTML in IE6).

Back to SimpleTAL API

Last Modified: Sun, 01 Feb 2015 10:59:33 CET

Made with PubTal 3.5

Copyright 2021 Colin Stewart

Email: colin at owlfish.com