[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/File - File.py:1.1.2.4
Casey Duncan
casey@zope.com
Fri, 29 Mar 2002 09:45:40 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/File
In directory cvs.zope.org:/tmp/cvs-serv14614/File
Modified Files:
Tag: Zope-3x-branch
File.py
Log Message:
Updated implementations to use mementos
=== Zope3/lib/python/Zope/App/OFS/Content/File/File.py 1.1.2.3 => 1.1.2.4 ===
from FileChunk import FileChunk
from IFile import IFile
-from Zope.App.Security.IAttributeRolePermissionManageable \
- import IAttributeRolePermissionManageable
+from Zope.App.OFS.Memento.IAttributeMementoStorable \
+ import IAttributeMementoStorable
# set the size of the chunks
MAXCHUNKSIZE = 1 << 16
@@ -31,7 +31,7 @@
__implements__ = (
IFile,
- IAttributeRolePermissionManageable,
+ IAttributeMementoStorable,
)