Commit 7081698a authored by 's avatar

- IContainmentRoot is now IRoot

parent b3248fba
......@@ -10,13 +10,15 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""OFS z3 interfaces.
"""OFS interfaces.
$Id$
"""
from zope.container.interfaces import IContainer
from zope.interface import Attribute
from zope.interface import Interface
from zope.location.interfaces import IPossibleSite
from zope.location.interfaces import IRoot
from zope.schema import Bool, BytesLine, Tuple
from AccessControl.interfaces import IOwned
......@@ -28,8 +30,6 @@ from persistent.interfaces import IPersistent
from webdav.interfaces import IDAVCollection
from webdav.interfaces import IDAVResource
from zope.traversing.interfaces import IContainmentRoot
from zope.location.interfaces import IPossibleSite
class IOrderedContainer(Interface):
......@@ -834,7 +834,7 @@ class IOrderedFolder(IOrderedContainer, IFolder):
# XXX: might contain non-API methods and outdated comments;
# not synced with ZopeBook API Reference;
# based on OFS.Application.Application
class IApplication(IFolder, IContainmentRoot):
class IApplication(IFolder, IRoot):
"""Top-level system object"""
......
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