summaryrefslogtreecommitdiffstats
path: root/Lib/SimpleHTTPServer.py
Commit message (Collapse)AuthorAgeFilesLines
* For this server to work on Windows, directories should use "/" as theGuido van Rossum2000-09-041-2/+3
| | | | | | | | separator in the href, not os.sep. Added a <title> tag to directory listings. Bumped version to 0.5.
* Using shutil's function to copy data between file objects insteadMoshe Zadka2000-07-291-6/+2
| | | | | | | | of rolling our own. Note: This is my first sourceforge checkin. If you see anything funny about this patch, please let me know.
* Changed list_directory() somewhat. It is now only called when thereGuido van Rossum2000-05-211-15/+34
| | | | | | | is no index.htm[l] file, and when it is called, it also spits out the headers. When an index.htm[l] file is present, the regular (file access) path is followed. Also, when the guessed content-type matches text/*, open the file in text mode; otherwise in binary mode.
* Add a simple directory listing function.Guido van Rossum2000-05-091-9/+38
|
* Moshe Zadka writes: When deploying SimpleHTTPServer, I noticed aGuido van Rossum1999-11-161-1/+2
| | | | problem: it does not encode/decode the urls, which is wrong.
* No need to import sys, time, socket or SocketServer. (Andrew Dalke & kjpylint)Guido van Rossum1999-05-031-4/+0
|
* Patch by Jeff Rush:Guido van Rossum1998-12-071-1/+1
| | | | | | | | | | | | In SimpleHTTPServer.py, the server specified in test() should be BaseHTTPServer.HTTPServer, in case the request handler should want to reference the two attributes added by BaseHTTPServer.server_bind: self.server_name = hostname self.server_port = port There was some Bobo CGI code that wanted access to those attributes.
* Open the file in binary mode -- so serving images from a Windows boxGuido van Rossum1998-12-071-1/+1
| | | | might actually work.
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-89/+89
|
* Get rid of nobody_uid() and import pwd -- not used here.Guido van Rossum1996-09-041-12/+0
|
* recognize a few more file typesGuido van Rossum1995-09-181-1/+8
|
* Initial revisionGuido van Rossum1995-08-041-0/+161