summaryrefslogtreecommitdiff
path: root/django/http
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2007-09-14 20:34:29 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2007-09-14 20:34:29 +0000
commit3da4c0ab9292e8e3378b7314174f0bbcc4e692d1 (patch)
treeda5782a0bc46066cbe262161cfca5d1ab4d6a2e0 /django/http
parentad077ccbc03f11c3db3951aab110ec98c5907729 (diff)
Fixed #2970: made HttpResponse headers case-insensitive. Thanks to SmileyChris for the original patch and PhiR for the final one.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6212 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/http')
-rw-r--r--django/http/__init__.py14
1 files changed, 5 insertions, 9 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py
index 102094b95d..1bb1621d77 100644
--- a/django/http/__init__.py
+++ b/django/http/__init__.py
@@ -246,7 +246,7 @@ class HttpResponse(object):
else:
self._container = [content]
self._is_string = True
- self.headers = {'Content-Type': content_type}
+ self.headers = {'content-type': content_type}
self.cookies = SimpleCookie()
if status:
self.status_code = status
@@ -258,24 +258,20 @@ class HttpResponse(object):
+ '\n\n' + self.content
def __setitem__(self, header, value):
- self.headers[header] = value
+ self.headers[header.lower()] = value
def __delitem__(self, header):
try:
- del self.headers[header]
+ del self.headers[header.lower()]
except KeyError:
pass
def __getitem__(self, header):
- return self.headers[header]
+ return self.headers[header.lower()]
def has_header(self, header):
"Case-insensitive check for a header"
- header = header.lower()
- for key in self.headers.keys():
- if key.lower() == header:
- return True
- return False
+ return self.headers.has_key(header.lower())
def set_cookie(self, key, value='', max_age=None, expires=None, path='/', domain=None, secure=None):
self.cookies[key] = value