[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/ZopePublication/Browser - Publication.py:1.1.2.5

Stephan Richter srichter@cbu.edu
Wed, 27 Mar 2002 17:32:27 -0500


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

Modified Files:
      Tag: Zope-3x-branch
	Publication.py 
Log Message:
This is more of this bug fixing business. I basically started all over again. Atleast so far the tests pass.




=== Zope3/lib/python/Zope/App/ZopePublication/Browser/Publication.py 1.1.2.4 => 1.1.2.5 ===
 
         if IBrowserPublisher.isImplementedBy(ob):
-            r = ob.browserDefault(request)
+            r = ob.browser_default(request)
         else:
             adapter = getRequestView(ob, '_traverse', request , None)
-            print adapter
             if adapter is not None:
-                r = adapter.browserDefault(request)
+                r = adapter.browser_default(request)
             else:
                 return (ob, None)