diff options
author | Guido van Rossum <guido@python.org> | 1999-11-16 19:04:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-11-16 19:04:32 (GMT) |
commit | d7b147b040140b0c901c15c795ea1172b3c2a546 (patch) | |
tree | 2dab29a785a4c26d1d9001f33387f2e3859bb27f /Lib/SimpleHTTPServer.py | |
parent | ed7f9e2425403060b04c8bcb3c58f37527a4ee46 (diff) | |
download | cpython-d7b147b040140b0c901c15c795ea1172b3c2a546.zip cpython-d7b147b040140b0c901c15c795ea1172b3c2a546.tar.gz cpython-d7b147b040140b0c901c15c795ea1172b3c2a546.tar.bz2 |
Moshe Zadka writes: When deploying SimpleHTTPServer, I noticed a
problem: it does not encode/decode the urls, which is wrong.
Diffstat (limited to 'Lib/SimpleHTTPServer.py')
-rw-r--r-- | Lib/SimpleHTTPServer.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/SimpleHTTPServer.py b/Lib/SimpleHTTPServer.py index fc1824c..a4517dc 100644 --- a/Lib/SimpleHTTPServer.py +++ b/Lib/SimpleHTTPServer.py @@ -13,6 +13,7 @@ import os import string import posixpath import BaseHTTPServer +import urllib class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler): @@ -77,7 +78,7 @@ class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler): probably be diagnosed.) """ - path = posixpath.normpath(path) + path = posixpath.normpath(urllib.unquote(path)) words = string.splitfields(path, '/') words = filter(None, words) path = os.getcwd() |