[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/http/put.py Converted XXX to TODO.

Stephan Richter srichter at cosmos.phy.tufts.edu
Fri Jul 9 11:45:23 EDT 2004


Log message for revision 26309:

Converted XXX to TODO.




-=-
Modified: Zope3/trunk/src/zope/app/http/put.py
===================================================================
--- Zope3/trunk/src/zope/app/http/put.py	2004-07-09 15:45:21 UTC (rev 26308)
+++ Zope3/trunk/src/zope/app/http/put.py	2004-07-09 15:45:23 UTC (rev 26309)
@@ -72,7 +72,7 @@
         if factory is None:
             factory = IFileFactory(container)
 
-        # XXX Need to add support for large files
+        # TODO: Need to add support for large files
         data = body.read()
 
         newfile = factory(name, request.getHeader('content-type', ''), data)
@@ -104,7 +104,7 @@
         file = self.context
         adapter = IWriteFile(file)
 
-        # XXX Need to add support for large files
+        # TODO: Need to add support for large files
         data = body.read()
 
         adapter.write(data)



More information about the Zope3-Checkins mailing list