[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher - Publish.py:1.1.2.6

Shane Hathaway shane@digicool.com
Fri, 16 Nov 2001 22:35:09 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/Publisher
In directory cvs.zope.org:/tmp/cvs-serv1950

Modified Files:
      Tag: Zope-3x-branch
	Publish.py 
Log Message:
Removed comments.


=== Zope3/lib/python/Zope/Publisher/Publish.py 1.1.2.5 => 1.1.2.6 ===
     
         publication.beforeTraversal(request)
-        #if transactions_manager: transactions_manager.begin()
     
         object = publication.getApplication(request)
         path_str = request.get('PATH_INFO', '').strip()
@@ -27,20 +26,11 @@
         publication.afterTraversal(request, object)
 
         result = publication.callObject(request, object)
-##        if transactions_manager:
-##            transactions_manager.recordMetaData(object, request)
-    
-##        result=mapply(object, request.args, request,
-##                      call_object,1,
-##                      missing_name, 
-##                      dont_publish_class,
-##                      request, bind=1)
 
         if result is not response:
             response.setBody(result)
 
         publication.afterCall(request)
-##        if transactions_manager: transactions_manager.commit()
 
         return response
     except: