1. 11 Kas, 2009 2 kayıt (commit)
  2. 16 Tem, 2008 1 kayıt (commit)
  3. 09 Mar, 2007 1 kayıt (commit)
  4. 30 Ock, 2007 1 kayıt (commit)
  5. 22 Ara, 2006 1 kayıt (commit)
  6. 22 Ara, 2004 1 kayıt (commit)
  7. 29 Agu, 2004 1 kayıt (commit)
  8. 20 Mar, 2004 2 kayıt (commit)
    • Guido van Rossum's avatar
      Fix for SF 777848. · 70ec0b42
      Guido van Rossum yazdı
      I've been bitten by this myself in the past half year.
      I hope this fix is right.
      I'll backport this to 2.3.
      70ec0b42
    • Tim Peters's avatar
      SF patch 508730 CGIHTTPServer execfile should save cwd · 27f49610
      Tim Peters yazdı
      UNTESTED!!!
      
      This simple two-line patch has been sitting on SF for more than 2 years.
      I'm guessing it's because nobody knows how to test it -- I sure don't.
      It doesn't look like you can get to this part of the code on Unixish
      or Windows systems, so the "how to test it?" puzzle has more than one
      part.  OTOH, if this is dead code, it doesn't matter either if I just
      broke it <wink>.
      27f49610
  9. 12 Şub, 2004 1 kayıt (commit)
  10. 14 Tem, 2003 1 kayıt (commit)
  11. 29 Haz, 2003 1 kayıt (commit)
  12. 08 Ock, 2003 1 kayıt (commit)
  13. 17 Eki, 2002 1 kayıt (commit)
  14. 20 Agu, 2002 2 kayıt (commit)
  15. 01 Agu, 2002 1 kayıt (commit)
  16. 01 Haz, 2002 1 kayıt (commit)
  17. 07 Nis, 2002 1 kayıt (commit)
  18. 04 Nis, 2002 1 kayıt (commit)
  19. 23 Mar, 2002 1 kayıt (commit)
  20. 01 Şub, 2002 1 kayıt (commit)
  21. 26 Eki, 2001 1 kayıt (commit)
  22. 17 Eki, 2001 1 kayıt (commit)
    • Guido van Rossum's avatar
      SF patch #467430. · bcbdc95e
      Guido van Rossum yazdı
      - replace some log_error() calls with log_message()
      
      - flush self.rfile before forking too (hope this works on Windows)
      bcbdc95e
  23. 07 Agu, 2001 1 kayıt (commit)
  24. 09 Şub, 2001 2 kayıt (commit)
  25. 20 Ock, 2001 1 kayıt (commit)
    • Skip Montanaro's avatar
      added __all__ lists to a number of Python modules · e99d5ea2
      Skip Montanaro yazdı
      added test script and expected output file as well
      this closes patch 103297.
      __all__ attributes will be added to other modules without first submitting
      a patch, just adding the necessary line to the test script to verify
      more-or-less correct implementation.
      e99d5ea2
  26. 19 Eyl, 2000 1 kayıt (commit)
  27. 01 Eyl, 2000 1 kayıt (commit)
  28. 18 Eki, 1999 1 kayıt (commit)
  29. 16 Eki, 1999 1 kayıt (commit)
  30. 03 May, 1999 1 kayıt (commit)
  31. 28 Nis, 1999 1 kayıt (commit)
    • Guido van Rossum's avatar
      Two changes suggested by Jan Pieter Riegel: · 630b8116
      Guido van Rossum yazdı
      (1) Fix reference to pwd.error to be KeyError -- there is no pwd.error
      and pwd.getpwnam() raises KeyError on failure.
      
      (2) Add cookie support, by placing the 'Cookie:' header, if present,
      in the HTTP_COOKIE environment variable.
      630b8116
  32. 07 Ara, 1998 1 kayıt (commit)
    • Guido van Rossum's avatar
      Patch by Jeff Rush: · 9228cbd0
      Guido van Rossum yazdı
      In CGIHTTPServer.py, the list of acceptable formats is -split-
      on spaces but -joined- on commas, resulting in double commas
      in the joined text.  It appears harmless to my browser but
      ought to be fixed anyway.
      
          'A, B, C' -> 'A,', 'B,', 'C,' -> 'A,,B,,C'
      9228cbd0
  33. 13 May, 1998 1 kayıt (commit)
    • Guido van Rossum's avatar
      From: conrad@cgl.ucsf.edu (Conrad Huang %CGL) · 01fc65d9
      Guido van Rossum yazdı
      To: python-list@cwi.nl
      Date: 13 May 98 18:33:11 GMT
      
      I think I found a bug in CGIHTTPServer.py.  (Does anyone care? :-)
      I was trying to use it as the web server for uploading files.
      Python CGI scripts (using the CGI module) that worked for other
      servers (e.g., Netscape Enterprise server) hang when run from
      CGIHTTPServer.  The problem is that the content type parameters,
      in particular the boundary parameter, were not passed through to
      the CGI scripts, thus making the MIME parsing code choke.
      
      My simple-minded fix is:
      
      	% diff CGIHTTPServer.py /usr/local/lib/python1.5/CGIHTTPServer.py
      	137,140c136
      	<           if self.headers.typeheader is None:
      	<               env['CONTENT_TYPE'] = self.headers.type
      	<           else:
      	<               env['CONTENT_TYPE'] = self.headers.typeheader
      	---
      	>           env['CONTENT_TYPE'] = self.headers.type
      
      Conrad
      01fc65d9
  34. 26 Mar, 1998 1 kayıt (commit)
  35. 24 Ara, 1997 1 kayıt (commit)
  36. 19 Şub, 1997 1 kayıt (commit)