Commit 80476f7f authored by Evan Simpson's avatar Evan Simpson

Start 1.4.0

parent 4de3dfd5
......@@ -4,15 +4,9 @@ Page Template changes
Change information for previous versions can be found in the
file HISTORY.txt.
Version 1.3.3
Version 1.4.0
Features Added
- Allow any false value in tal:repeat to act as an empty sequence.
- manage_addPageTemplate accepts optional title and text
arguments, and returns the new object if REQUEST is None.
Bugs Fixed
- The various *Python modules failed to import CompilerError.
- Security machinery changes in Zope 2.4 broke ZRPythonExpr
......@@ -4,6 +4,19 @@ Page Template history
PageTemplates. Change information for the current release can be found
in the file CHANGES.txt.
Version 1.3.3
Features Added
- Allow any false value in tal:repeat to act as an empty sequence.
- manage_addPageTemplate accepts optional title and text
arguments, and returns the new object if REQUEST is None.
Bugs Fixed
- The various *Python modules failed to import CompilerError.
- Security machinery changes in Zope 2.4 broke ZRPythonExpr
Version 1.3.2
Features Added
......
......@@ -2,3 +2,6 @@ See <a href="http://dev.zope.org/Wikis/DevSite/Projects/ZPT">the
ZPT project Wiki</a> for more information about Page Templates, or
<a href="http://www.zope.org/Members/4am/ZPT">the download page</a>
for installation instructions and the most recent version of the software.
This Product requires the TAL and ZTUtils packages to be installed in
your Python path (not Products). See the links above for more information.
......@@ -87,7 +87,7 @@
Zope object encapsulating a Page Template.
"""
__version__='$Revision: 1.11 $'[11:-2]
__version__='$Revision: 1.12 $'[11:-2]
import os, AccessControl, Acquisition, sys
from Globals import DTMLFile, MessageDialog, package_home
......@@ -124,7 +124,7 @@ class ZopePageTemplate(Script, PageTemplate, Historical, Cacheable,
_default_bindings = {'name_subpath': 'traverse_subpath'}
_default_content_fn = os.path.join(package_home(globals()),
'dtml', 'default.html')
'www', 'default.html')
manage_options = (
{'label':'Edit', 'action':'pt_editForm'},
......
......@@ -4,14 +4,9 @@ TAL changes
Change information for previous versions can be found in the
file HISTORY.txt.
Version 1.3.3
Version 1.4.0
Features Added
Bugs Fixed
- tal:atributes was creating stray attributes in METAL
expansion, and there was no unit test for this behavior.
- tal:attributes parsing was not catching badly malformed
values, and used "print" instead of raising exceptions.
......@@ -4,6 +4,16 @@ TAL history
Change information for the current release can be found
in the file CHANGES.txt.
Version 1.3.3
Bugs Fixed
- tal:atributes was creating stray attributes in METAL
expansion, and there was no unit test for this behavior.
- tal:attributes parsing was not catching badly malformed
values, and used "print" instead of raising exceptions.
Version 1.3.2
Features Added
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment