summaryrefslogtreecommitdiff
path: root/django/http
diff options
context:
space:
mode:
authorJustin Bronn <jbronn@gmail.com>2008-08-05 17:15:33 +0000
committerJustin Bronn <jbronn@gmail.com>2008-08-05 17:15:33 +0000
commitaa239e3e5405933af6a29dac3cf587b59a099927 (patch)
treeea2cbd139c9a8cf84c09e0b2008bff70e05927ef /django/http
parent45b73c9a4685809236f84046cc7ffd32a50db958 (diff)
gis: Merged revisions 7981-8001,8003-8011,8013-8033,8035-8036,8038-8039,8041-8063,8065-8076,8078-8139,8141-8154,8156-8214 via svnmerge from trunk.archive/attic/gis
git-svn-id: http://code.djangoproject.com/svn/django/branches/gis@8215 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/http')
-rw-r--r--django/http/__init__.py13
-rw-r--r--django/http/multipartparser.py15
2 files changed, 4 insertions, 24 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py
index ef15479983..0124022478 100644
--- a/django/http/__init__.py
+++ b/django/http/__init__.py
@@ -31,6 +31,7 @@ class HttpRequest(object):
def __init__(self):
self.GET, self.POST, self.COOKIES, self.META, self.FILES = {}, {}, {}, {}, {}
self.path = ''
+ self.path_info = ''
self.method = None
def __repr__(self):
@@ -38,17 +39,6 @@ class HttpRequest(object):
(pformat(self.GET), pformat(self.POST), pformat(self.COOKIES),
pformat(self.META))
- def __getitem__(self, key):
- for d in (self.POST, self.GET):
- if key in d:
- return d[key]
- raise KeyError, "%s not found in either POST or GET" % key
-
- def has_key(self, key):
- return key in self.GET or key in self.POST
-
- __contains__ = has_key
-
def get_host(self):
"""Returns the HTTP host using the environment or request headers."""
# We try three options, in order of decreasing preference.
@@ -442,3 +432,4 @@ def str_to_unicode(s, encoding):
return unicode(s, encoding, 'replace')
else:
return s
+
diff --git a/django/http/multipartparser.py b/django/http/multipartparser.py
index fa1ae11968..2049289a0b 100644
--- a/django/http/multipartparser.py
+++ b/django/http/multipartparser.py
@@ -4,6 +4,7 @@ Multi-part parsing for file uploads.
Exposes one class, ``MultiPartParser``, which feeds chunks of uploaded data to
file upload handlers for processing.
"""
+
import cgi
from django.conf import settings
from django.core.exceptions import SuspiciousOperation
@@ -12,7 +13,7 @@ from django.utils.encoding import force_unicode
from django.utils.text import unescape_entities
from django.core.files.uploadhandler import StopUpload, SkipFile, StopFutureHandlers
-__all__ = ('MultiPartParser','MultiPartParserError','InputStreamExhausted')
+__all__ = ('MultiPartParser', 'MultiPartParserError', 'InputStreamExhausted')
class MultiPartParserError(Exception):
pass
@@ -162,7 +163,6 @@ class MultiPartParser(object):
force_unicode(data, encoding, errors='replace'))
elif item_type == FILE:
# This is a file, use the handler...
- file_successful = True
file_name = disposition.get('filename')
if not file_name:
continue
@@ -209,7 +209,6 @@ class MultiPartParser(object):
break
except SkipFile, e:
- file_successful = False
# Just use up the rest of this file...
exhaust(field_stream)
else:
@@ -515,21 +514,11 @@ class BoundaryIter(object):
else:
end = index
next = index + len(self._boundary)
- data_len = len(data) - 1
# backup over CRLF
if data[max(0,end-1)] == '\n':
end -= 1
if data[max(0,end-1)] == '\r':
end -= 1
- # skip over --CRLF
- #if data[min(data_len,next)] == '-':
- # next += 1
- #if data[min(data_len,next)] == '-':
- # next += 1
- #if data[min(data_len,next)] == '\r':
- # next += 1
- #if data[min(data_len,next)] == '\n':
- # next += 1
return end, next
def exhaust(stream_or_iterable):