[Zope3-checkins] CVS: Zope3/src/zope/app/publication - zopepublication.py:1.6

Stephan Richter srichter@cbu.edu
Thu, 2 Jan 2003 08:58:08 -0500


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

Modified Files:
	zopepublication.py 
Log Message:
Fixed FTP views by commenting out two lines that were too HTTP-specific in 
general code. I know SteveA is working on a fix for it as of now.

Again, this is an outcry that we should start utilizing functional tests!!
The Alpha's FTP support is broken just for these two little entries!


=== Zope3/src/zope/app/publication/zopepublication.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/publication/zopepublication.py:1.5	Mon Dec 30 22:35:08 2002
+++ Zope3/src/zope/app/publication/zopepublication.py	Thu Jan  2 08:57:36 2003
@@ -157,7 +157,8 @@
 
     def afterCall(self, request):
         txn = get_transaction()
-        txn.note(request["PATH_INFO"])
+        # XXX: Commented out this line, since it is HTTP-specific. 
+        # txn.note(request["PATH_INFO"])
         txn.setUser(getSecurityManager().getPrincipal())
         get_transaction().commit()