[Zope3-checkins] CVS: Zope3/src/zope/app/browser/utilities - configure.zcml:1.12 content.py:1.5

Philipp von Weitershausen philikon at philikon.de
Wed Mar 3 05:39:09 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/browser/utilities
In directory cvs.zope.org:/tmp/cvs-serv7814/browser/utilities

Modified Files:
	configure.zcml content.py 
Log Message:
Moved container interfaces from zope.app.interfaces.container to
zope.app.container.interfaces.


=== Zope3/src/zope/app/browser/utilities/configure.zcml 1.11 => 1.12 ===
--- Zope3/src/zope/app/browser/utilities/configure.zcml:1.11	Tue Mar  2 09:25:36 2004
+++ Zope3/src/zope/app/browser/utilities/configure.zcml	Wed Mar  3 05:38:38 2004
@@ -157,7 +157,7 @@
 
   <!-- Menu entry for "add component" menu -->
   <menuItem
-      for="zope.app.interfaces.container.IAdding"
+      for="zope.app.container.interfaces.IAdding"
       menu="add_component"
       action="utility.ContentComponentDefinition"
       title="Content Component Definition"
@@ -210,7 +210,7 @@
 
   <page
       name="AddContentComponent"
-      for="zope.app.interfaces.container.IAdding"
+      for="zope.app.container.interfaces.IAdding"
       permission="zope.ManageContent"
       class=".content.AddContentComponentInstanceView"
       attribute="generated_form" />


=== Zope3/src/zope/app/browser/utilities/content.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/browser/utilities/content.py:1.4	Mon Aug 18 14:55:29 2003
+++ Zope3/src/zope/app/browser/utilities/content.py	Wed Mar  3 05:38:38 2004
@@ -102,7 +102,7 @@
         self.request = request
 
     def publishTraverse(self, request, name):
-        """See zope.app.interfaces.container.IAdding"""
+        """See zope.app.container.interfaces.IAdding"""
         if '=' in name:
             type_name, content_name = name.split("=", 1)
             self.context.contentName = content_name




More information about the Zope3-Checkins mailing list