Log in or register to vote.

z3c.pt

An implementation of the TAL template language.

Overview
--------

The z3c.pt package provides an alternative implementation of the TAL
template language including i18n. It also provides a simple text
template class that allows expression interpolation.

Casual benchmarks pegs it 12x more performant than ``zope.pagetemplate``.

In a nutshell:

* Templates are bytecode-compiled
* Only Python-expressions are supported
* Depends only on lxml
* Adds support for expression interpolation
* Limited support for CSS, Javascript and other non-XML documents

See the README.txt inside the package for instructions on usage.

Note: The METAL macro language is not supported.

Template and expression language
--------------------------------

The template and expression language is based loosely on the TAL ...

0