[Zope3-checkins] CVS: Zope3/src/zope/app/index - configure.zcml:1.1.2.2 subscribers.py:1.1.2.3

Jim Fulton jim@zope.com
Tue, 24 Dec 2002 07:51:37 -0500


Update of /cvs-repository/Zope3/src/zope/app/index
In directory cvs.zope.org:/tmp/cvs-serv1158/src/zope/app/index

Modified Files:
      Tag: NameGeddon-branch
	configure.zcml subscribers.py 
Log Message:
Searched for and changed over 1200 references to Zope.something.

Most of these were either comments, doc strings, or permission ids.

Many were imports or ids in zcml.  (much zcml fixup is still needed.



=== Zope3/src/zope/app/index/configure.zcml 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/index/configure.zcml:1.1.2.1	Mon Dec 23 14:31:37 2002
+++ Zope3/src/zope/app/index/configure.zcml	Tue Dec 24 07:51:06 2002
@@ -8,11 +8,11 @@
 
   <content class="zope.app.index.subscribers.Registration">
     <require
-      permission="Zope.ManageServices"
+      permission="zope.ManageServices"
       interface="zope.app.indexzope.app.indexzope.app.index.subscribers.ISubscriptionControl"
       />
     <factory
-      id="Zope.App.indexzope.app.index.subscribers.Registration"
+      id="zope.app.indexzope.app.index.subscribers.Registration"
       permission="Zope.ManageServices"
       />
   </content>
@@ -20,7 +20,7 @@
   <browser:menuItem
     menu="add_component"
     for="zope.app.interfaces.container.IAdding"
-    action="Zope.App.indexzope.app.index.subscribers.Registration"
+    action="zope.app.indexzope.app.index.subscribers.Registration"
     title="Registration subscriber"
     description="An event subscriber that registers content with the objecthub"
     />
@@ -31,7 +31,7 @@
 
   <browser:view
     for="zope.app.indexzope.app.indexzope.app.index.subscribers.ISubscriptionControl"
-    permission="Zope.ManageServices"
+    permission="zope.ManageServices"
     name="control.html"
     template="subscription_control.pt" />
 


=== Zope3/src/zope/app/index/subscribers.py 1.1.2.2 => 1.1.2.3 ===
--- Zope3/src/zope/app/index/subscribers.py:1.1.2.2	Mon Dec 23 18:22:19 2002
+++ Zope3/src/zope/app/index/subscribers.py	Tue Dec 24 07:51:06 2002
@@ -38,7 +38,7 @@
 from zope.proxy.context import ContextMethod
 from zope.component import getService, queryAdapter
 
-from Zope.App.Traversing import traverse, traverseName, \
+from zope.app.traversing import traverse, traverseName, \
      getPhysicalPath, getPhysicalRoot
 from zope.app.interfaces.services.hub import ObjectHubError
 
@@ -136,7 +136,7 @@
     # the context can be done by getting the context and following the
     # chain back; there's a convenience class, ContainmentIterator to
     # do that.  Use the version of ContainmentIterator from
-    # Zope.Proxy, which is aware of the complications caused by
+    # zope.proxy, which is aware of the complications caused by
     # security proxies.
 
     # For now, we pick the first approach.