Add zope-zpt 1.4.0 - Zope Page Templates (ZPT) may be used to separate
design and logic elements in Zope applications.
This commit is contained in:
parent
7fb9451c41
commit
5163137087
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=46316
7 changed files with 350 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
SUBDIR += zope-zpt
|
||||
SUBDIR += zope-zwiki
|
||||
|
||||
SUBDIR += Mosaic # requires Motif
|
||||
|
|
68
www/zope-zpt/Makefile
Normal file
68
www/zope-zpt/Makefile
Normal file
|
@ -0,0 +1,68 @@
|
|||
# New ports collection makefile for: zope-zpt
|
||||
# Date created: 15 August 2001
|
||||
# Whom: Johann Visagie <wjv@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= zpt
|
||||
PORTVERSION= 1.4.0
|
||||
CATEGORIES= www zope
|
||||
MASTER_SITES= http://www.zope.org/Members/4am/ZPT/
|
||||
PKGNAMEPREFIX= zope-
|
||||
DISTFILES= PageTemplates-${PORTVERSION}.tar.gz \
|
||||
TAL-${TALVERSION}.tar.gz \
|
||||
ZTUtils-${ZTUVERSION}.tar.gz
|
||||
|
||||
MAINTAINER= wjv@FreeBSD.org
|
||||
|
||||
RUN_DEPENDS= ${LOCALBASE}/${SZOPEBASEDIR}/z2.py:${PORTSDIR}/www/zope
|
||||
|
||||
USE_PYTHON= yes
|
||||
DIST_SUBDIR= zope
|
||||
|
||||
TALVERSION= 1.4.0
|
||||
ZTUVERSION= 1.1.1
|
||||
|
||||
# You can change this in the environment if you like.
|
||||
SZOPEBASEDIR?= www/Zope
|
||||
|
||||
# Don't change these
|
||||
ZOPEBASEDIR= ${PREFIX}/${SZOPEBASEDIR}
|
||||
ZOPEPRODUCTNAME= PageTemplates
|
||||
ZOPEPYTHONDIR= lib/python
|
||||
ZOPEPRODUCTDIR= ${ZOPEPYTHONDIR}/Products
|
||||
ZOPEPRODUCTS= PageTemplates TAL ZTUtils
|
||||
|
||||
PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR}
|
||||
WRKSRC= ${WRKDIR}/${ZOPEPRODUCTNAME}
|
||||
CPIO= cpio --quiet -pdum -R
|
||||
|
||||
do-build:
|
||||
.for product in ${ZOPEPRODUCTS}
|
||||
@ ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKDIR}/${product}
|
||||
.endfor
|
||||
|
||||
do-install:
|
||||
.for product in ${ZOPEPRODUCTS}
|
||||
@ ${CHMOD} -R og+rX ${WRKDIR}/${product}
|
||||
.endfor
|
||||
.for product in TAL ZTUtils
|
||||
@ ${MKDIR} ${ZOPEBASEDIR}/${ZOPEPYTHONDIR}/${product}
|
||||
@ cd ${WRKDIR}/${product} && find * \
|
||||
| ${CPIO} ${BINOWN}:${BINGRP} \
|
||||
${ZOPEBASEDIR}/${ZOPEPYTHONDIR}/${product}/
|
||||
.endfor
|
||||
@ ${MKDIR} ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/${ZOPEPRODUCTNAME}
|
||||
@ cd ${WRKSRC} && find * \( -name examples -a -prune \) -o -print \
|
||||
| ${CPIO} ${BINOWN}:${BINGRP} \
|
||||
${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/${ZOPEPRODUCTNAME}
|
||||
@ ${INSTALL_DATA} ${WRKSRC}/examples/zpt_examples.zexp \
|
||||
${ZOPEBASEDIR}/import
|
||||
|
||||
post-install:
|
||||
.if !defined(BATCH)
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
3
www/zope-zpt/distinfo
Normal file
3
www/zope-zpt/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (zope/PageTemplates-1.4.0.tar.gz) = 2289e62e9fd3bde4932f2798be3ee162
|
||||
MD5 (zope/TAL-1.4.0.tar.gz) = 8979a66516ca9cbfb75921b8b74941e2
|
||||
MD5 (zope/ZTUtils-1.1.1.tar.gz) = 14b643e50eeda298ac53644347386a6f
|
1
www/zope-zpt/pkg-comment
Normal file
1
www/zope-zpt/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Zope Page Templates separate design and logic in Zope applications
|
24
www/zope-zpt/pkg-descr
Normal file
24
www/zope-zpt/pkg-descr
Normal file
|
@ -0,0 +1,24 @@
|
|||
From the website:
|
||||
|
||||
This product seeks to establish website production harmony
|
||||
through the seamless integration of the three separate domains:
|
||||
Presentation, Content and Logic.
|
||||
|
||||
Zope Page Templates comprise a trio of Zope products which allow the complete
|
||||
conceptual separation of design (presentation) elements from business logic
|
||||
elements in a Zope-driven web application. In essence this allows web
|
||||
designers to work on design templates for a Zope-based site using their
|
||||
favourite WYSIWYG web design tools.
|
||||
|
||||
The ZPT implementation includes the Template Attribute Language (TAL), a web
|
||||
templating language (i.e. analogous to, say, PHP or Zope's own DTML). TAL is
|
||||
an intentionally simple language, since in the ZPT paradigm all business
|
||||
logic should be implemented externally to the page templates in Python (or
|
||||
Perl) Script objects.
|
||||
|
||||
See also: http://www.zope.org/Documentation/Articles/ZPT{1,2}
|
||||
|
||||
Author: Evan Simpson <evan@digicool.com>
|
||||
WWW: http://www.zope.org/Members/4am/ZPT
|
||||
|
||||
-- Johann Visagie <wjv@FreeBSD.org>
|
7
www/zope-zpt/pkg-message
Normal file
7
www/zope-zpt/pkg-message
Normal file
|
@ -0,0 +1,7 @@
|
|||
===> Zope Page Templates post-port installation instructions:
|
||||
To complete the installation of this port, you need to estart Zope. This
|
||||
may be done from the Zope Control Panel in the Zope management interface.
|
||||
|
||||
A trio of example Page Templates have been placed in your Zope import
|
||||
directory as: "zpt_examples.zexp". You may optionally import these
|
||||
examples to any Zope folder.
|
246
www/zope-zpt/pkg-plist
Normal file
246
www/zope-zpt/pkg-plist
Normal file
|
@ -0,0 +1,246 @@
|
|||
%%ZOPEBASEDIR%%/import/zpt_examples.zexp
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/CHANGES.txt
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/Expressions.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/Expressions.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/HISTORY.txt
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PageTemplate.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PageTemplate.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PageTemplateFile.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PageTemplateFile.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PythonExpr.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/PythonExpr.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/README.txt
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/TALES.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/TALES.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/ZPythonExpr.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/ZPythonExpr.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/ZRPythonExpr.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/ZRPythonExpr.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/ZopePageTemplate.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/ZopePageTemplate.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/__init__.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/__init__.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/__init__.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/__init__.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/batch.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/batch.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/framework.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/framework.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckNotExpression.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckNothing.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckPathAlt.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckPathNothing.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/CheckWithXMLHeader.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/DTML1.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/DTML3.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/GlobalsShadowLocals.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/Loop1.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/StringExpression.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/TeeShop1.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/TeeShop2.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input/TeeShopLAF.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckNotExpression.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckNothing.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckPathAlt.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckPathNothing.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/CheckWithXMLHeader.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/DTML1a.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/DTML1b.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/DTML3.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/GlobalsShadowLocals.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/Loop1.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/StringExpression.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/TeeShop1.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/TeeShop2.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output/TeeShopLAF.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/run.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/run.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testDTMLTests.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testDTMLTests.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testExpressions.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testExpressions.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testHTMLTests.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testHTMLTests.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testTALES.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/testTALES.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/util.py
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/util.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/version.txt
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/www/default.html
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/www/ptAdd.zpt
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/www/ptEdit.zpt
|
||||
%%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/www/zpt.gif
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/CHANGES.txt
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/DummyEngine.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/DummyEngine.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/HISTORY.txt
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/HTMLParser.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/HTMLParser.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/HTMLTALParser.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/HTMLTALParser.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/README.txt
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/TALDefs.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/TALDefs.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/TALGenerator.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/TALGenerator.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/TALInterpreter.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/TALInterpreter.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/TALParser.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/TALParser.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/XMLParser.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/XMLParser.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/__init__.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/__init__.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml01.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml02.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml03.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml04.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml05.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml06.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml07.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml08.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml09.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml10.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml11.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/dtml12.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal01.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal02.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal03.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal04.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal05.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal06.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal07.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal08.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal09.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal10.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal11.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/benchmark/tal12.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/driver.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/driver.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/markbench.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/markbench.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/ndiff.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/ndiff.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/runtest.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/runtest.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/setpath.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/setpath.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/__init__.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/__init__.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test01.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test01.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test02.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test02.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test03.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test03.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test04.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test04.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test05.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test05.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test06.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test06.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test07.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test07.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test08.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test08.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test09.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test09.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test10.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test11.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test11.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test12.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test13.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test14.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test14.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test15.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test16.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test17.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test17.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test18.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test18.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal1.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal2.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/input/test_metal3.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test01.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test01.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test02.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test02.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test03.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test03.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test04.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test04.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test05.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test05.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test06.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test06.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test07.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test07.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test08.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test08.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test09.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test09.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test10.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test11.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test11.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test12.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test13.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test14.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test14.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test15.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test16.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test17.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test17.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test18.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test18.xml
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal1.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal2.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/output/test_metal3.html
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/run.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/run.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_files.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_files.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmlparser.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmlparser.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmltalparser.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_htmltalparser.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_talinterpreter.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_talinterpreter.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_xmlparser.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/test_xmlparser.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/utils.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/tests/utils.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/timer.py
|
||||
%%ZOPEBASEDIR%%/lib/python/TAL/timer.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/Batch.py
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/Batch.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/CHANGES.txt
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/Iterator.py
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/Iterator.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/SimpleTree.py
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/SimpleTree.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/Tree.py
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/Tree.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/Zope.py
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/Zope.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/__init__.py
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/__init__.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/framework.py
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/framework.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/run.py
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/run.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testBatch.py
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testBatch.pyc
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testIterator.py
|
||||
%%ZOPEBASEDIR%%/lib/python/ZTUtils/tests/testIterator.pyc
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/ZTUtils/tests
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/ZTUtils
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/TAL/tests/output
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/TAL/tests/input
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/TAL/tests
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/TAL/benchmark
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/TAL
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/www
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/output
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests/input
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/tests
|
||||
@dirrm %%ZOPEBASEDIR%%/lib/python/Products/PageTemplates/
|
Loading…
Reference in a new issue