[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/services - hub.py:1.1.2.4

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


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

Modified Files:
      Tag: NameGeddon-branch
	hub.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/interfaces/services/hub.py 1.1.2.3 => 1.1.2.4 ===
--- Zope3/src/zope/app/interfaces/services/hub.py:1.1.2.3	Mon Dec 23 17:38:45 2002
+++ Zope3/src/zope/app/interfaces/services/hub.py	Tue Dec 24 07:51:09 2002
@@ -127,19 +127,19 @@
         (u'',u'whatever',u'whatever2')
         u'/whatever/whatever2'
         
-        If there is no hub id, raise Zope.Exceptions.NotFoundError.
+        If there is no hub id, raise NotFoundError.
         """
         
     def getLocation(hubid):
         """Returns a location as a tuple of unicodes.
         
-        If there is no location, raise Zope.Exceptions.NotFoundError.
+        If there is no location, raise NotFoundError.
         """
         
     def getObject(hubid):
         """Returns an object for the given hub id.
         
-        If there is no such hub id, raise Zope.Exceptions.NotFoundError.
+        If there is no such hub id, raise NotFoundError.
         If there is no such object, passes through whatever error
         the traversal service raises.
         """
@@ -157,7 +157,7 @@
 
         It also emits a HubIdObjectUnregisteredEvent. 
         If the hub id or location wasn't registered a 
-        Zope.Exceptions.NotFoundError is raised.
+        NotFoundError is raised.
         """
 
     def numRegistrations():