1. 04 Nov, 2004 1 commit
    • Sidnei da Silva's avatar
      · 920fffcf
      Sidnei da Silva authored
            - Added a ZConfig directive 'large-file-threshold' to control
              the request content-size threshold at which a temporary file
              gets created. Use the same value for deciding between reading
              the whole request in memory or just a chunk inside
              webdav.NullResource.PUT().
      
            - Stitch newly-created object into it's container *before*
              calling it's PUT() method. This fixes an issue with
              OFS.File/OFS.Image that would result into reading the whole
              file in memory and wrapping it into a *single* Pdata object.
      
            - Import ZServer.CONNECTION_LIMIT variable *inside* the method
              that uses it. Before this, the variable was imported at the
              module level, thus binding it too early which would cause the
              ZConfig handler to have no real effect.
      920fffcf
  2. 03 Nov, 2004 4 commits
  3. 02 Nov, 2004 3 commits
    • Sidnei da Silva's avatar
      1bb6f655
    • Sidnei da Silva's avatar
      · 45e5350a
      Sidnei da Silva authored
            - Always unescape element contents on webdav.xmltools
      
            - Use saxutils to escape/unescape values for/from
              PROPFIND/PROPPATCH.
      
            - Make OFS.PropertySheet use the escaping function from
              webdav.xmltools.
      
            - Escape/unescape " and '
      
            - Set a default value of '' for the new 'alt' property as not to
              break existing content.
      45e5350a
    • 's avatar
      fixed typo · df259636
      authored
      df259636
  4. 31 Oct, 2004 1 commit
    • Andreas Jung's avatar
      · e4679cb4
      Andreas Jung authored
            - Collector #1443: Applied patch by Simon Eisenmann that reimplements 
              the XML parser used in WebDAV fixing a memory leak.
      e4679cb4
  5. 30 Oct, 2004 8 commits
  6. 29 Oct, 2004 6 commits
  7. 18 Oct, 2004 1 commit
    • Tim Peters's avatar
      Collector 1542: Python 2.4/Zope 2.8 unittest failure in asyncore.py · b11eabb7
      Tim Peters authored
      Forward port form 2.7 branch.
      
      medusa's class monitor_server derives from asyncore.dispatcher, but
      never called the latter's constructor.  As a result, the ._map attribute
      set by 2.4's asyncore.dispatcher.__init__() never gets set, and calling
      asyncore methods later dies with an AttributeError on ._map.  The fix
      is a 1-liner, adding a call to the base-class constructor.
      b11eabb7
  8. 17 Oct, 2004 1 commit
  9. 15 Oct, 2004 4 commits
  10. 14 Oct, 2004 2 commits
  11. 13 Oct, 2004 1 commit
  12. 12 Oct, 2004 4 commits
  13. 11 Oct, 2004 1 commit
  14. 10 Oct, 2004 1 commit
  15. 09 Oct, 2004 1 commit
  16. 08 Oct, 2004 1 commit
    • Tim Peters's avatar
      Gentler treatment for issue #1350. · 3f0db85b
      Tim Peters authored
      The Python fatal errors occur only in a debug build now.
      
      In a release build, unghostify() raises a Python SystemError
      exception if it detects insanity, and ghostify() ignores the
      problem (as ZODB 3.2 did, although it looks like 3.2 ignored
      the problem by mistake).  This isn't *good*, because the
      system is insane.  But it can become insane only by breaking
      absolute threading rules, and that "should never happen".
      Unfortunately, hundreds of things can go wrong if it does
      happen, and we can't detect most of them.
      3f0db85b