[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/ZopePublication - ZopePublication.py:1.1.2.6

Brian Lloyd brian@digicool.com
Mon, 19 Nov 2001 15:31:26 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/ZopePublication
In directory cvs.zope.org:/tmp/cvs-serv22558

Modified Files:
      Tag: Zope-3x-branch
	ZopePublication.py 
Log Message:
fixed typo


=== Zope3/lib/python/Zope/App/ZopePublication/ZopePublication.py 1.1.2.5 => 1.1.2.6 ===
 
     def traverseName(self, request, ob, name, check_auth=1):
-        if IBrowserPublisher.isImplementBy(ob):
+        if IBrowserPublisher.isImplementedBy(ob):
             return ob.browser_traverse(request, name)
             
         adapter = getPresentation(ob, '_traverse', IBrowserPublisher, None)
@@ -140,7 +140,7 @@
         raise NotFound(ob, name, request.getURL())
 
     def getDefaultTraversal(self, request, ob):
-        if IBrowserPublisher.isImplementBy(ob):
+        if IBrowserPublisher.isImplementedBy(ob):
             return ob.browser_default(request)
             
         adapter = getPresentation(ob, '_traverse', IBrowserPublisher, None)