[Checkins] SVN: z3c.pt/trunk/ Preparing release.

Malthe Borch mborch at gmail.com
Sat Feb 23 12:03:22 EST 2008


Log message for revision 84196:
  Preparing release.

Changed:
  A   z3c.pt/trunk/AUTHOR.txt
  U   z3c.pt/trunk/README.txt
  U   z3c.pt/trunk/docs/HISTORY.txt
  U   z3c.pt/trunk/setup.py

-=-
Added: z3c.pt/trunk/AUTHOR.txt
===================================================================
--- z3c.pt/trunk/AUTHOR.txt	                        (rev 0)
+++ z3c.pt/trunk/AUTHOR.txt	2008-02-23 17:03:22 UTC (rev 84196)
@@ -0,0 +1 @@
+Malthe Borch <mborch at gmail.com>

Modified: z3c.pt/trunk/README.txt
===================================================================
--- z3c.pt/trunk/README.txt	2008-02-23 16:54:31 UTC (rev 84195)
+++ z3c.pt/trunk/README.txt	2008-02-23 17:03:22 UTC (rev 84196)
@@ -4,12 +4,15 @@
 The z3c.pt package provides an alternative implementation of the TAL
 template language including i18n.
 
+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
+  
 The METAL macro language is not supported.
 
 Template and expression language
@@ -40,7 +43,13 @@
 
 5. Expressions that return a callable are called.
 
+6. Expression interpolation is allowed:
 
+       <a href="mailto:${context/email}">${context/email}</a>
+
+7. Attribute-values are always escaped; document expressions are
+   never.
+   
 *) http://wiki.zope.org/ZPT/TALSpecification14
 
 Development

Modified: z3c.pt/trunk/docs/HISTORY.txt
===================================================================
--- z3c.pt/trunk/docs/HISTORY.txt	2008-02-23 16:54:31 UTC (rev 84195)
+++ z3c.pt/trunk/docs/HISTORY.txt	2008-02-23 17:03:22 UTC (rev 84196)
@@ -1,6 +1,11 @@
 Changelog
 ---------
 
+Version 0.5 - February 23, 2008
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+- Expression interpolation implemented.
+
 Version 0.4 - February 22, 2008
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 

Modified: z3c.pt/trunk/setup.py
===================================================================
--- z3c.pt/trunk/setup.py	2008-02-23 16:54:31 UTC (rev 84195)
+++ z3c.pt/trunk/setup.py	2008-02-23 17:03:22 UTC (rev 84196)
@@ -1,6 +1,6 @@
 from setuptools import setup, find_packages
 
-version = '0.5dev'
+version = '0.5'
 
 setup(name='z3c.pt',
       version=version,



More information about the Checkins mailing list