[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/ZPTPage - ZPTPage.py:1.1.2.3
Fred L. Drake, Jr.
fdrake@acm.org
Mon, 4 Feb 2002 11:28:16 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/ZPTPage
In directory cvs.zope.org:/tmp/cvs-serv14778
Modified Files:
Tag: Zope-3x-branch
ZPTPage.py
Log Message:
Derive ZPTPage from the Zope-specific PageTemplate class, not the general
PageTemplate class.
=== Zope3/lib/python/Zope/App/OFS/ZPTPage/ZPTPage.py 1.1.2.2 => 1.1.2.3 ===
from Interface import Interface
from Persistence import Persistent
-from Zope.PageTemplate.PageTemplate import PageTemplate
+from Zope.PageTemplate.ZPT import ZPT
from Zope.App.Security.IAttributeRolePermissionManageable \
import IAttributeRolePermissionManageable
@@ -31,7 +31,7 @@
-class ZPTPage(Persistent, PageTemplate):
+class ZPTPage(Persistent, ZPT):
""" """
__implements__ = IZPTPage