- 11 Kas, 2009 2 kayıt (commit)
-
-
Senthil Kumaran yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76212 | senthil.kumaran | 2009-11-11 22:52:35 +0530 (Wed, 11 Nov 2009) | 3 lines Fixing the NameError on Windows - issue1235 ........
-
Senthil Kumaran yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76208 | senthil.kumaran | 2009-11-11 07:04:44 +0530 (Wed, 11 Nov 2009) | 3 lines CGIHTTPRequestHandler.run_cgi() to use subprocess for Non Unix platforms. Fix based on Issue1235. ........
-
- 16 Tem, 2008 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 09 Mar, 2007 1 kayıt (commit)
-
-
Collin Winter yazdı
-
- 30 Ock, 2007 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 22 Ara, 2006 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 22 Ara, 2004 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
Bug fix candidate.
-
- 29 Agu, 2004 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 20 Mar, 2004 2 kayıt (commit)
-
-
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.
-
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>.
-
- 12 Şub, 2004 1 kayıt (commit)
-
-
Walter Dörwald yazdı
From SF patch #852334.
-
- 14 Tem, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
(contributed by Vincent Delft.) The script updated os.environ but failed to pass the whole environment to the child process (the CGI script).
-
- 29 Haz, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
Minor improvement to previous bugfix. Eating the remaining characters would lead to an endless loop without a termination test.
-
- 08 Ock, 2003 1 kayıt (commit)
-
-
Steve Holden yazdı
-
- 17 Eki, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 20 Agu, 2002 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
This patch causes CGIHTTPServer to update os.environ regardless of how it tries to handle calls (fork, popen*, etc.). Backport bugfix candidate.
-
- 01 Agu, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 01 Haz, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 07 Nis, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Nis, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 23 Mar, 2002 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 01 Şub, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This uses os.popen3 (if it exists) to ensure that errors from a non-Python CGI script are logged. Bugfix candidate.
-
- 26 Eki, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
second noted after a second's thought about what the next line should do. :-(
-
- 17 Eki, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
- replace some log_error() calls with log_message() - flush self.rfile before forking too (hope this works on Windows)
-
- 07 Agu, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
#427345. These are supposed to support binary data and avoid buffering problems on Windows.
-
- 09 Şub, 2001 2 kayıt (commit)
-
-
Eric S. Raymond yazdı
Some of the characters (form feed, vertical tab) are not legal continuation characters anyway, so this was wrong as well as annoying.
-
Eric S. Raymond yazdı
-
- 20 Ock, 2001 1 kayıt (commit)
-
-
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.
-
- 19 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Macintosh (the latter untested). This closes Bug #110839.
-
- 01 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
unbuffered (by setting the class variable rbufsize to 0), because we (may) need to pass the file descriptor to the subprocess running the CGI script positioned after the headers.
-
- 18 Eki, 1999 1 kayıt (commit)
-
-
Fred Drake yazdı
supported. Pointed out by Moshe Zadka <moshez@math.huji.ac.il>.
-
- 16 Eki, 1999 1 kayıt (commit)
-
-
Fred Drake yazdı
If os.fork() doesn't exist, raise SystemError with an explanation at the top of the module. Added a note to the module docstring.
-
- 03 May, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 28 Nis, 1999 1 kayıt (commit)
-
-
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.
-
- 07 Ara, 1998 1 kayıt (commit)
-
-
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'
-
- 13 May, 1998 1 kayıt (commit)
-
-
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
-
- 26 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 24 Ara, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 19 Şub, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-