[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/ZPTPage - ZPTPage.py:1.1.2.2

Casey Duncan casey@zope.com
Fri, 29 Mar 2002 09:45:11 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/ZPTPage
In directory cvs.zope.org:/tmp/cvs-serv14614/ZPTPage

Modified Files:
      Tag: Zope-3x-branch
	ZPTPage.py 
Log Message:
Updated implementations to use mementos


=== Zope3/lib/python/Zope/App/OFS/Content/ZPTPage/ZPTPage.py 1.1.2.1 => 1.1.2.2 ===
 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):
@@ -44,8 +44,10 @@
 class ZPTPage(Persistent, ZPT):
     """ """
 
-    __implements__ = (IZPTPage,
-                      IAttributeRolePermissionManageable)
+    __implements__ = (
+        IZPTPage,
+        IAttributeMementoStorable,
+        )
 
     def __init__(self, text=''):
         """ """