[Checkins] SVN: z3c.pt/trunk/ Added documentation on default expression directive; bumped version.

Malthe Borch mborch at gmail.com
Sun Mar 16 14:44:01 EDT 2008


Log message for revision 84713:
  Added documentation on default expression directive; bumped version.

Changed:
  U   z3c.pt/trunk/README.txt
  U   z3c.pt/trunk/setup.py

-=-
Modified: z3c.pt/trunk/README.txt
===================================================================
--- z3c.pt/trunk/README.txt	2008-03-16 17:23:54 UTC (rev 84712)
+++ z3c.pt/trunk/README.txt	2008-03-16 18:43:59 UTC (rev 84713)
@@ -10,15 +10,15 @@
 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
+* Supports Python and Zope path traversal expressions
+* Introduces expression interpolation using the ${<expression>}-format
+* Non-XML friendly
 
 See the README.txt inside the package for instructions on usage.
 
 Note: The METAL macro language is not supported.
 
+
 Template and expression language
 --------------------------------
 
@@ -53,9 +53,14 @@
 
 7. Attribute-values are always escaped; document expressions are
    never.
+
+8. Default expression type can be set using ``tal:default-expression``.
+   This is an alternative to providing the expression type before each
+   expression.
    
 .. _TAL: http://wiki.zope.org/ZPT/TALSpecification14
 
+
 Development
 -----------
 
@@ -63,4 +68,3 @@
 ``z3c.pt==dev`` as your dependency.
 
 http://svn.zope.org/z3c.pt/trunk#egg=z3c.pt-dev
-

Modified: z3c.pt/trunk/setup.py
===================================================================
--- z3c.pt/trunk/setup.py	2008-03-16 17:23:54 UTC (rev 84712)
+++ z3c.pt/trunk/setup.py	2008-03-16 18:43:59 UTC (rev 84713)
@@ -1,6 +1,6 @@
 from setuptools import setup, find_packages
 
-version = '0.7'
+version = '0.8dev'
 
 setup(name='z3c.pt',
       version=version,
@@ -24,7 +24,10 @@
       install_requires=[
           'setuptools',
           'lxml<=1.3.6',
+          'zope.interface',
+          'zope.component',
           'zope.i18n',
+          'zope.traversing',
           # -*- Extra requirements: -*-
       ],
       entry_points="""



More information about the Checkins mailing list