[Checkins] SVN: zope.app.container/trunk/ Adapt to the removal of deprecated interfaces from zope.component.interfaces.

Dan Korostelev nadako at gmail.com
Sun Mar 8 04:25:42 EDT 2009


Log message for revision 97649:
  Adapt to the removal of deprecated interfaces from zope.component.interfaces.

Changed:
  U   zope.app.container/trunk/CHANGES.txt
  U   zope.app.container/trunk/src/zope/app/container/interfaces.py

-=-
Modified: zope.app.container/trunk/CHANGES.txt
===================================================================
--- zope.app.container/trunk/CHANGES.txt	2009-03-08 08:24:24 UTC (rev 97648)
+++ zope.app.container/trunk/CHANGES.txt	2009-03-08 08:25:42 UTC (rev 97649)
@@ -10,6 +10,10 @@
 
 - Don't show the "Add" menu item if there's nothing to add.
 
+- Adapt to the removal of deprecated interfaces from
+  zope.component.interfaces. Now IAdding inherits from
+  zope.publisher.interfaces.browser.IBrowserView.
+
 3.7.1 (2009-02-05)
 -------------------
 

Modified: zope.app.container/trunk/src/zope/app/container/interfaces.py
===================================================================
--- zope.app.container/trunk/src/zope/app/container/interfaces.py	2009-03-08 08:24:24 UTC (rev 97648)
+++ zope.app.container/trunk/src/zope/app/container/interfaces.py	2009-03-08 08:25:42 UTC (rev 97649)
@@ -45,11 +45,11 @@
     IIdFindFilter
 )
 
-import zope.component.interfaces
+import zope.publisher.interfaces.browser
 import zope.interface
 
 
-class IAdding(zope.component.interfaces.IView):
+class IAdding(zope.publisher.interfaces.browser.IBrowserView):
     def add(content):
         """Add content object to container.
 



More information about the Checkins mailing list