summaryrefslogtreecommitdiff
path: root/Lib/CGIHTTPServer.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 86195 via svnmerge fromBrian Curtin2010-11-051-0/+2
* Merged revisions 85202 via svnmerge fromSenthil Kumaran2010-10-031-4/+5
* Fixing the NameError on Windows - issue1235Senthil Kumaran2009-11-111-5/+5
* CGIHTTPRequestHandler.run_cgi() to use subprocess for Non Unix platforms. FixSenthil Kumaran2009-11-111-54/+23
* docstring update.Gregory P. Smith2009-05-031-0/+3
* - Issue #2254: Fix CGIHTTPServer information disclosure. Relative paths areGregory P. Smith2009-04-061-19/+52
* #3345: fix docstring.Georg Brandl2008-07-161-4/+5
* Patch #1481079: Support of HTTP_REFERER in CGIHTTPServer.pyCollin Winter2007-03-091-1/+4
* Whitespace normalization.Tim Peters2007-01-301-1/+1
* [Bug #737202; fix from Titus Brown] Make CGIHTTPServer work for scripts in su...Andrew M. Kuchling2006-12-221-0/+19
* SF patch #1055159 via Titus Brown: Document redirect limitation.Jeremy Hylton2004-12-221-0/+2
* Patch #727483: Add AUTH_TYPE and REMOTE_USER.Martin v. Löwis2004-08-291-2/+15
* Fix for SF 777848.Guido van Rossum2004-03-201-6/+5
* SF patch 508730 CGIHTTPServer execfile should save cwdTim Peters2004-03-201-1/+3
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-7/+7
* SF bug #770601: CGIHTTPServer and environment variables (bug + solution)Raymond Hettinger2003-07-141-1/+1
* SF bug #430160: CGIHTTPServer.py POST bug using IERaymond Hettinger2003-06-291-2/+4
* Fix bug 427345 [related to IE's additional input on POST request].Steve Holden2003-01-081-0/+7
* Must catch TypeError from int(length).Guido van Rossum2002-10-171-1/+1
* Typo repair. Please include in any backports.Guido van Rossum2002-08-201-1/+1
* SF patch 595846 by Brett Cannon: Update environ for CGIHTTPServer.pyGuido van Rossum2002-08-201-2/+1
* Fix for SF bug 570678 (can't flush read-only file on Mac OS X).Guido van Rossum2002-08-011-1/+0
* Replaced obsolete stat module constants with equivalent attributesRaymond Hettinger2002-06-011-1/+1
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-071-1/+1
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-041-2/+2
* tighten up except - int() only raises ValueErrorSkip Montanaro2002-03-231-1/+1
* Wesley Chun's SF patch 511380: add CGIHTTPServer error supt for Win32Guido van Rossum2002-02-011-4/+18
* Fix two typos, one noted by Noah Spurrier in SF bug #475166, theGuido van Rossum2001-10-261-2/+2
* SF patch #467430.Guido van Rossum2001-10-171-3/+4
* Apply two small changes to the Windows code, according to SF bugGuido van Rossum2001-08-071-2/+2
* Eliminate use of string.whitespace and a string import with it.Eric S. Raymond2001-02-091-2/+1
* String method conversion.Eric S. Raymond2001-02-091-7/+7
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+1
* An honest attempt to make this work on Unix, Windows, and evenGuido van Rossum2000-09-191-81/+173
* Now that StreamRequestHandler defaults rfile to buffered, make itGuido van Rossum2000-09-011-0/+4
* os.fork raises AttributeError, not NameError, if fork() isn'tFred Drake1999-10-181-1/+1
* Based on comments from Paul Prescod:Fred Drake1999-10-161-2/+11
* No need to import sys, time, or socket. (Andrew Dalke & kjpylint)Guido van Rossum1999-05-031-3/+0
* Two changes suggested by Jan Pieter Riegel:Guido van Rossum1999-04-281-1/+4
* Patch by Jeff Rush:Guido van Rossum1998-12-071-1/+1
* From: conrad@cgl.ucsf.edu (Conrad Huang %CGL)Guido van Rossum1998-05-131-1/+4
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-122/+122
* Use string.replace instead of regsub.[g]sub.Guido van Rossum1997-12-241-2/+1
* Remove some bogus code that would cause a NameError if a -r option was passed.Guido van Rossum1997-02-191-5/+0
* real test for executable scriptGuido van Rossum1996-01-251-1/+1
* changed some commas into percent signsGuido van Rossum1995-08-291-4/+4
* Initial revisionGuido van Rossum1995-08-041-0/+203