[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/ZPTPage - ZPTPage.py:1.1.2.4
Casey Duncan
casey@zope.com
Fri, 29 Mar 2002 09:34:23 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/ZPTPage
In directory cvs.zope.org:/tmp/cvs-serv3119/lib/python/Zope/App/OFS/ZPTPage
Modified Files:
Tag: Zope-3x-branch
ZPTPage.py
Log Message:
Updated implementations to utilize mementos
=== Zope3/lib/python/Zope/App/OFS/ZPTPage/ZPTPage.py 1.1.2.3 => 1.1.2.4 ===
from Persistence import Persistent
from Zope.PageTemplate.ZPT import ZPT
-from Zope.App.Security.IAttributeRolePermissionManageable \
- import IAttributeRolePermissionManageable
+from Zope.App.OFS.Memento.IAttributeMementoStorable \
+ import IAttributeMementoStorable
class IZPTPage(Interface):
@@ -34,7 +34,10 @@
class ZPTPage(Persistent, ZPT):
""" """
- __implements__ = IZPTPage
+ __implements__ = (
+ IZPTPage,
+ IAttributeMementoStorable,
+ )
def __init__(self, text=''):