[Zope3-checkins] CVS: Zope3/src/zope/app/traversing - configure.zcml:1.1.2.3 physicallocationadapters.py:1.1.2.3

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


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

Modified Files:
      Tag: NameGeddon-branch
	configure.zcml physicallocationadapters.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/traversing/configure.zcml 1.1.2.2 => 1.1.2.3 ===
--- Zope3/src/zope/app/traversing/configure.zcml:1.1.2.2	Mon Dec 23 18:22:21 2002
+++ Zope3/src/zope/app/traversing/configure.zcml	Tue Dec 24 07:51:22 2002
@@ -16,14 +16,14 @@
 <adapter
     factory="zope.app.traversing.objectname.ObjectName"
     provides="zope.app.traversing.objectname.IObjectName"
-    permission='Zope.Public'
+    permission='zope.Public'
     />
 
 <adapter
     factory="zope.app.traversing.objectname.SiteObjectName"
     provides="zope.app.traversing.objectname.IObjectName"
     for="zope.app.interfaces.content.folder.IRootFolder"
-    permission='Zope.Public'
+    permission='zope.Public'
     />
 
 <adapter 


=== Zope3/src/zope/app/traversing/physicallocationadapters.py 1.1.2.2 => 1.1.2.3 ===
--- Zope3/src/zope/app/traversing/physicallocationadapters.py:1.1.2.2	Mon Dec 23 18:52:36 2002
+++ Zope3/src/zope/app/traversing/physicallocationadapters.py	Tue Dec 24 07:51:22 2002
@@ -33,14 +33,14 @@
         self.context = context
 
     def getPhysicalRoot(self):
-        "See Zope.App.Traversing.IPhysicallyLocatable.IPhysicallyLocatable"
+        "See IPhysicallyLocatable"
         container = getWrapperContainer(self.context)
         if container is None:
             raise TypeError("Not enough context to determine location root")
         return getAdapter(container, IPhysicallyLocatable).getPhysicalRoot()
 
     def getPhysicalPath(self):
-        "See Zope.App.Traversing.IPhysicallyLocatable.IPhysicallyLocatable"
+        "See IPhysicallyLocatable"
         context = self.context
         container = getWrapperContainer(context)
         if container is None:
@@ -68,11 +68,11 @@
         self.context = context
 
     def getPhysicalPath(self):
-        "See Zope.App.Traversing.IPhysicallyLocatable.IPhysicallyLocatable"
+        "See IPhysicallyLocatable"
         return ('', )
 
     def getPhysicalRoot(self):
-        "See Zope.App.Traversing.IPhysicallyLocatable.IPhysicallyLocatable"
+        "See IPhysicallyLocatable"
         return self.context