- Timestamp:
- 08/05/10 18:37:06 (22 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
plone4bio.biosql/trunk/src/plone4bio/biosql/content/database.py
r112 r153 10 10 from Products.CMFCore.interfaces import IFolderish 11 11 from zope.app.container.interfaces import IContainer 12 from Products.CMFCore.interfaces import IDynamicType 12 13 from plone.app.content.container import Container 13 14 … … 36 37 class BioSQLDatabase(BaseProxy, DynamicType, Container): 37 38 """ BioSQLDatabase ... """ 38 __implements__ = (DynamicType.__implements__) 39 implements(IBioSQLDatabase, IContainer, IFolderish) 39 implements(IBioSQLDatabase, IContainer, IFolderish, IDynamicType) 40 40 adapts(IBatch) 41 41 meta_type = "BioSQLDatabase" … … 45 45 _v_database = None 46 46 _v_keys = None 47 48 # TODO: define wf 49 _Review_portal_content_Permission = '' 50 _Request_review_Permission = '' 51 47 52 #_v_root = None 48 53
