[Zope-Checkins] SVN: Zope/trunk/src/OFS/interfaces.py - IContainmentRoot is now IRoot

Yvo Schubbe y.2010 at wcm-solutions.de
Fri Jun 18 05:26:01 EDT 2010


Log message for revision 113612:
  - IContainmentRoot is now IRoot

Changed:
  U   Zope/trunk/src/OFS/interfaces.py

-=-
Modified: Zope/trunk/src/OFS/interfaces.py
===================================================================
--- Zope/trunk/src/OFS/interfaces.py	2010-06-18 09:24:59 UTC (rev 113611)
+++ Zope/trunk/src/OFS/interfaces.py	2010-06-18 09:26:01 UTC (rev 113612)
@@ -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 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 @@
 # 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"""
 



More information about the Zope-Checkins mailing list