Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
80476f7f
Commit
80476f7f
authored
Jul 18, 2001
by
Evan Simpson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start 1.4.0
parent
4de3dfd5
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
31 additions
and
16 deletions
+31
-16
lib/python/Products/PageTemplates/CHANGES.txt
lib/python/Products/PageTemplates/CHANGES.txt
+1
-7
lib/python/Products/PageTemplates/HISTORY.txt
lib/python/Products/PageTemplates/HISTORY.txt
+13
-0
lib/python/Products/PageTemplates/README.txt
lib/python/Products/PageTemplates/README.txt
+3
-0
lib/python/Products/PageTemplates/ZopePageTemplate.py
lib/python/Products/PageTemplates/ZopePageTemplate.py
+2
-2
lib/python/Products/PageTemplates/version.txt
lib/python/Products/PageTemplates/version.txt
+1
-1
lib/python/Products/PageTemplates/www/default.html
lib/python/Products/PageTemplates/www/default.html
+0
-0
lib/python/TAL/CHANGES.txt
lib/python/TAL/CHANGES.txt
+1
-6
lib/python/TAL/HISTORY.txt
lib/python/TAL/HISTORY.txt
+10
-0
No files found.
lib/python/Products/PageTemplates/CHANGES.txt
View file @
80476f7f
...
@@ -4,15 +4,9 @@ Page Template changes
...
@@ -4,15 +4,9 @@ Page Template changes
Change information for previous versions can be found in the
Change information for previous versions can be found in the
file HISTORY.txt.
file HISTORY.txt.
Version 1.
3.3
Version 1.
4.0
Features Added
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
Bugs Fixed
- The various *Python modules failed to import CompilerError.
- Security machinery changes in Zope 2.4 broke ZRPythonExpr
lib/python/Products/PageTemplates/HISTORY.txt
View file @
80476f7f
...
@@ -4,6 +4,19 @@ Page Template history
...
@@ -4,6 +4,19 @@ Page Template history
PageTemplates. Change information for the current release can be found
PageTemplates. Change information for the current release can be found
in the file CHANGES.txt.
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
Version 1.3.2
Features Added
Features Added
...
...
lib/python/Products/PageTemplates/README.txt
View file @
80476f7f
...
@@ -2,3 +2,6 @@ See <a href="http://dev.zope.org/Wikis/DevSite/Projects/ZPT">the
...
@@ -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
ZPT project Wiki</a> for more information about Page Templates, or
<a href="http://www.zope.org/Members/4am/ZPT">the download page</a>
<a href="http://www.zope.org/Members/4am/ZPT">the download page</a>
for installation instructions and the most recent version of the software.
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.
lib/python/Products/PageTemplates/ZopePageTemplate.py
View file @
80476f7f
...
@@ -87,7 +87,7 @@
...
@@ -87,7 +87,7 @@
Zope object encapsulating a Page Template.
Zope object encapsulating a Page Template.
"""
"""
__version__
=
'$Revision: 1.1
1
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.1
2
$'
[
11
:
-
2
]
import
os
,
AccessControl
,
Acquisition
,
sys
import
os
,
AccessControl
,
Acquisition
,
sys
from
Globals
import
DTMLFile
,
MessageDialog
,
package_home
from
Globals
import
DTMLFile
,
MessageDialog
,
package_home
...
@@ -124,7 +124,7 @@ class ZopePageTemplate(Script, PageTemplate, Historical, Cacheable,
...
@@ -124,7 +124,7 @@ class ZopePageTemplate(Script, PageTemplate, Historical, Cacheable,
_default_bindings
=
{
'name_subpath'
:
'traverse_subpath'
}
_default_bindings
=
{
'name_subpath'
:
'traverse_subpath'
}
_default_content_fn
=
os
.
path
.
join
(
package_home
(
globals
()),
_default_content_fn
=
os
.
path
.
join
(
package_home
(
globals
()),
'
dtml
'
,
'default.html'
)
'
www
'
,
'default.html'
)
manage_options
=
(
manage_options
=
(
{
'label'
:
'Edit'
,
'action'
:
'pt_editForm'
},
{
'label'
:
'Edit'
,
'action'
:
'pt_editForm'
},
...
...
lib/python/Products/PageTemplates/version.txt
View file @
80476f7f
PageTemplates-1-
3
-0
PageTemplates-1-
4
-0
lib/python/Products/PageTemplates/
dtml
/default.html
→
lib/python/Products/PageTemplates/
www
/default.html
View file @
80476f7f
File moved
lib/python/TAL/CHANGES.txt
View file @
80476f7f
...
@@ -4,14 +4,9 @@ TAL changes
...
@@ -4,14 +4,9 @@ TAL changes
Change information for previous versions can be found in the
Change information for previous versions can be found in the
file HISTORY.txt.
file HISTORY.txt.
Version 1.
3.3
Version 1.
4.0
Features Added
Features Added
Bugs Fixed
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.
lib/python/TAL/HISTORY.txt
View file @
80476f7f
...
@@ -4,6 +4,16 @@ TAL history
...
@@ -4,6 +4,16 @@ TAL history
Change information for the current release can be found
Change information for the current release can be found
in the file CHANGES.txt.
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
Version 1.3.2
Features Added
Features Added
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment