Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zope-container
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
zope-container
Commits
03bc90c3
Commit
03bc90c3
authored
Dec 02, 2008
by
Dan Korostelev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove long-time deprecated IContentContainer class
parent
de2c9041
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
13 deletions
+1
-13
CHANGES.txt
CHANGES.txt
+1
-1
setup.py
setup.py
+0
-1
src/zope/app/container/interfaces.py
src/zope/app/container/interfaces.py
+0
-11
No files found.
CHANGES.txt
View file @
03bc90c3
...
...
@@ -5,7 +5,7 @@ CHANGES
3.7.0 (unreleased)
------------------
-
..
.
-
Remove long-time deprecated IContentContainer class
.
3.6.2 (2008-10-21)
------------------
...
...
setup.py
View file @
03bc90c3
...
...
@@ -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'
,
...
...
src/zope/app/container/interfaces.py
View file @
03bc90c3
...
...
@@ -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."""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment