Commit 9c890930 authored by Michel Pelletier's avatar Michel Pelletier

removed interfaces

parent 55f5a9f8
...@@ -87,9 +87,9 @@ ...@@ -87,9 +87,9 @@
Folders are the basic container objects and are analogous to directories. Folders are the basic container objects and are analogous to directories.
$Id: Folder.py,v 1.85 2000/03/13 21:36:02 michel Exp $""" $Id: Folder.py,v 1.86 2000/03/28 16:58:55 michel Exp $"""
__version__='$Revision: 1.85 $'[11:-2] __version__='$Revision: 1.86 $'[11:-2]
import Globals, SimpleItem import Globals, SimpleItem
from ObjectManager import ObjectManager from ObjectManager import ObjectManager
...@@ -99,8 +99,6 @@ from webdav.Collection import Collection ...@@ -99,8 +99,6 @@ from webdav.Collection import Collection
from FindSupport import FindSupport from FindSupport import FindSupport
from Globals import HTMLFile from Globals import HTMLFile
from FolderInterface import FolderInterface
manage_addFolderForm=HTMLFile('folderAdd', globals()) manage_addFolderForm=HTMLFile('folderAdd', globals())
...@@ -148,8 +146,6 @@ class Folder(ObjectManager, PropertyManager, RoleManager, Collection, ...@@ -148,8 +146,6 @@ class Folder(ObjectManager, PropertyManager, RoleManager, Collection,
""" """
meta_type='Folder' meta_type='Folder'
__implements__=(FolderInterface,)
_properties=({'id':'title', 'type': 'string'},) _properties=({'id':'title', 'type': 'string'},)
manage_options=( manage_options=(
......
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
############################################################################## ##############################################################################
"""Image object""" """Image object"""
__version__='$Revision: 1.98 $'[11:-2] __version__='$Revision: 1.99 $'[11:-2]
import Globals, string, struct, content_types import Globals, string, struct, content_types
from OFS.content_types import guess_content_type from OFS.content_types import guess_content_type
...@@ -98,8 +98,6 @@ from Globals import Persistent ...@@ -98,8 +98,6 @@ from Globals import Persistent
from Acquisition import Implicit from Acquisition import Implicit
from DateTime import DateTime from DateTime import DateTime
from FileInterface import FileInterface
from ImageInterface import ImageInterface
StringType=type('') StringType=type('')
...@@ -131,7 +129,6 @@ class File(Persistent,Implicit,PropertyManager, ...@@ -131,7 +129,6 @@ class File(Persistent,Implicit,PropertyManager,
meta_type='File' meta_type='File'
__implements__=(FileInterface,)
precondition='' precondition=''
size=None size=None
...@@ -414,7 +411,6 @@ class Image(File): ...@@ -414,7 +411,6 @@ class Image(File):
""" """
meta_type='Image' meta_type='Image'
__implements__=(ImageInterface,)
height='' height=''
width='' width=''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment