summaryrefslogtreecommitdiffstats
path: root/Lib/urllib2.py
diff options
context:
space:
mode:
authorMoshe Zadka <moshez@math.huji.ac.il>2001-03-20 13:14:28 (GMT)
committerMoshe Zadka <moshez@math.huji.ac.il>2001-03-20 13:14:28 (GMT)
commitd3f193fe9d1edd99b69b829edb8e8e981c0d0fa6 (patch)
tree9196453531c8b49c63cabc91031a840701ae6563 /Lib/urllib2.py
parent6abce91a345be8ae4b35fb1d6be53178a747dea2 (diff)
downloadcpython-d3f193fe9d1edd99b69b829edb8e8e981c0d0fa6.zip
cpython-d3f193fe9d1edd99b69b829edb8e8e981c0d0fa6.tar.gz
cpython-d3f193fe9d1edd99b69b829edb8e8e981c0d0fa6.tar.bz2
* Fixing the password-proxy bug
* Not sending content-type and content-length twice
Diffstat (limited to 'Lib/urllib2.py')
-rw-r--r--Lib/urllib2.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/Lib/urllib2.py b/Lib/urllib2.py
index d03d8fb..80829b9 100644
--- a/Lib/urllib2.py
+++ b/Lib/urllib2.py
@@ -477,8 +477,8 @@ class ProxyHandler(BaseHandler):
host, XXX = splithost(r_type)
if '@' in host:
user_pass, host = host.split('@', 1)
- user_pass = base64.encode_string(unquote(user_passw)).strip()
- req.addheader('Proxy-Authorization', user_pass)
+ user_pass = base64.encodestring(unquote(user_pass)).strip()
+ req.add_header('Proxy-Authorization', 'Basic '+user_pass)
host = unquote(host)
req.set_proxy(host, type)
if orig_type == type:
@@ -781,7 +781,7 @@ def encode_digest(digest):
class AbstractHTTPHandler(BaseHandler):
def do_open(self, http_class, req):
- host = req.get_host()
+ host = urlparse.urlparse(req.get_full_url())[1]
if not host:
raise URLError('no host given')
@@ -790,15 +790,16 @@ class AbstractHTTPHandler(BaseHandler):
if req.has_data():
data = req.get_data()
h.putrequest('POST', req.get_selector())
- h.putheader('Content-type',
- 'application/x-www-form-urlencoded')
- h.putheader('Content-length', '%d' % len(data))
+ if not req.headers.has_key('Content-type'):
+ h.putheader('Content-type',
+ 'application/x-www-form-urlencoded')
+ if not req.headers.has_key('Content-length'):
+ h.putheader('Content-length', '%d' % len(data))
else:
h.putrequest('GET', req.get_selector())
except socket.error, err:
raise URLError(err)
- # XXX proxies would have different host here
h.putheader('Host', host)
for args in self.parent.addheaders:
h.putheader(*args)