[Zope-Checkins] CVS: Zope/doc - CHANGES.txt:1.625.2.267
Sidnei da Silva
sidnei at awkly.org
Wed Dec 1 18:02:18 EST 2004
Update of /cvs-repository/Zope/doc
In directory cvs.zope.org:/tmp/cvs-serv30901/doc
Modified Files:
Tag: Zope-2_7-branch
CHANGES.txt
Log Message:
- webdav.NullResource: doing a PUT of a large file could
potentially bring your box to a halt, because the whole file
would be read into memory just to detect the
content-type. Added a 'large-file-threshold' directive to
control the boundary where a file gets read completely into
memory. The same directive controls the creation of a tmpfile
vs. reading the whole request into memory on ZServer as well.
- The 'connection-limit' directive was not taking effect as it
modified a module-level global that was already bound to the
functions that used it by the time the directive took
effect. Modified the functions so that they import the
variable in the function body instead of at the top of the
module.
=== Zope/doc/CHANGES.txt 1.625.2.266 => 1.625.2.267 ===
--- Zope/doc/CHANGES.txt:1.625.2.266 Wed Dec 1 15:44:40 2004
+++ Zope/doc/CHANGES.txt Wed Dec 1 18:01:48 2004
@@ -17,6 +17,21 @@
Bugs fixed
+ - webdav.NullResource: doing a PUT of a large file could
+ potentially bring your box to a halt, because the whole file
+ would be read into memory just to detect the
+ content-type. Added a 'large-file-threshold' directive to
+ control the boundary where a file gets read completely into
+ memory. The same directive controls the creation of a tmpfile
+ vs. reading the whole request into memory on ZServer as well.
+
+ - The 'connection-limit' directive was not taking effect as it
+ modified a module-level global that was already bound to the
+ functions that used it by the time the directive took
+ effect. Modified the functions so that they import the
+ variable in the function body instead of at the top of the
+ module.
+
- webdav.Resource: during COPY, manage_afterClone was called way
too early, thus the object wasn't bound to the database and
couldn't find a context. Changed to behave the same way as
More information about the Zope-Checkins
mailing list