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

Casey Duncan casey@zope.com
Fri, 29 Mar 2002 10:27:55 -0500


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

Modified Files:
      Tag: Zope-3x-branch
	NaiveFile.py 
Log Message:
Updated NaiveFile to use memento storage


=== Zope3/lib/python/Zope/App/OFS/Content/File/NaiveFile.py 1.1.2.1 => 1.1.2.2 ===
 import Persistence
 from IFile import IFile
-from Zope.App.Security.IAttributeRolePermissionManageable \
-     import IAttributeRolePermissionManageable
+from Zope.App.OFS.Memento.IAttributeMementoStorable \
+     import IAttributeMementoStorable
 
 
 _RAISE_KEYERROR = []
@@ -33,7 +33,7 @@
 
     __implements__ = (
         IFile,
-        IAttributeRolePermissionManageable)
+        IAttributeMementoStorable)
 
 
     def __init__(self, data=None, contentType=None):