[ python-Bugs-1394565 ] SimpleHTTPServer doesn't understand query arguments

SourceForge.net noreply at sourceforge.net
Fri Jan 13 18:08:55 CET 2006


Bugs item #1394565, was opened at 2005-12-31 22:46
Message generated for change (Settings changed) made by birkenfeld
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1394565&group_id=5470

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Python Library
Group: Python 2.4
>Status: Closed
>Resolution: Fixed
Priority: 5
Submitted By: Aaron Swartz (aaronsw)
Assigned to: Nobody/Anonymous (nobody)
Summary: SimpleHTTPServer doesn't understand query arguments

Initial Comment:
If you set the SimpleHTTPServer to serve files and visit /filename it works 
but if you visit /filename?f=1 it returns a 404. It should strip off the query 
argument and visit /filename

----------------------------------------------------------------------

>Comment By: Georg Brandl (birkenfeld)
Date: 2006-01-13 18:08

Message:
Logged In: YES 
user_id=1188172

Committed patch in revisions 42030,42031.

----------------------------------------------------------------------

Comment By: Peter van Kampen (pterk)
Date: 2006-01-13 02:01

Message:
Logged In: YES 
user_id=174455

See patch 1404374
http://sourceforge.net/tracker/index.php?func=detail&aid=1404374&group_id=5470&atid=305470

(uses urlparse to cover (i.e. ignore) params as well)

----------------------------------------------------------------------

Comment By: Aaron Swartz (aaronsw)
Date: 2006-01-05 16:45

Message:
Logged In: YES 
user_id=122141

The patch is to add this line to the top of SimpleHTTPServer.py's translate_path 
function:

        path = path.split('?')[0]


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1394565&group_id=5470


More information about the Python-bugs-list mailing list