Commit 03bc90c3 authored by Dan Korostelev's avatar Dan Korostelev

Remove long-time deprecated IContentContainer class

parent de2c9041
......@@ -5,7 +5,7 @@ CHANGES
3.7.0 (unreleased)
------------------
- ...
- Remove long-time deprecated IContentContainer class.
3.6.2 (2008-10-21)
------------------
......
......@@ -64,7 +64,6 @@ setup(name='zope.app.container',
'zope.app.file']),
install_requires=['setuptools',
'zope.interface',
'zope.deprecation',
'zope.app.publisher',
'zope.cachedescriptors',
'zope.dottedname',
......
......@@ -17,8 +17,6 @@ $Id$
"""
__docformat__ = 'restructuredtext'
from zope.deprecation import deprecated
from zope.interface import Interface, Attribute, Invalid
from zope.component.interfaces import IView, IObjectEvent
from zope.interface.common.mapping import IItemMapping
......@@ -26,11 +24,6 @@ from zope.interface.common.mapping import IReadMapping, IEnumerableMapping
from zope.location.interfaces import ILocation
from zope.lifecycleevent.interfaces import IObjectModifiedEvent
deprecated('IContentContainer',
'This interface has been deprecated. '
'Check the "containerViews" zcml directive. '
'The reference will be gone in 3.3')
class DuplicateIDError(KeyError):
pass
......@@ -129,10 +122,6 @@ class IItemWriteContainer(IWriteContainer, IItemContainer):
"""A write container that also supports minimal reads."""
class IContentContainer(IWriteContainer):
"""Containers (like folders) that contain ordinary content."""
class IContainer(IReadContainer, IWriteContainer):
"""Readable and writable content container."""
......
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