summaryrefslogtreecommitdiff
path: root/django/http
AgeCommit message (Expand)Author
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-03Replaced some byte strings by str() callsClaude Paroz
2012-07-30Fixed a security issue in http redirects. Disclosure and new release forthcom...Florian Apolloner
2012-07-22[py3] Switched to Python 3-compatible imports.Aymeric Augustin
2012-07-22[py3] Updated urllib/urllib2/urlparse imports.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Used six.reraise wherever necessary.Aymeric Augustin
2012-07-17Fixed #18561 -- Made HttpResponse.tell() support non-ascii charsClaude Paroz
2012-07-14Cleaned up the QueryDict implementation.Alex Gaynor
2012-06-30Fixed #16519 -- Deprecated mimetype kwarg of HttpResponse __init__Claude Paroz
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-05-10Replaced foo.next() by next(foo).Claude Paroz
2012-05-05Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz
2012-05-03Fixed #18042 -- Advanced deprecation warnings.Aymeric Augustin
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-03-31Removed deprecated CompatCookie.Aymeric Augustin
2012-03-31Fixed #18029 -- Removed mod_python as of deprecation process. Thanks Aymeric ...Claude Paroz
2012-03-31Fixed #17965 -- Definitely dropped support for Python 2.5. Thanks jonash for ...Claude Paroz
2012-03-18Fixed #17931 -- Accepted aware datetimes to set cookies expiry dates. Thanks ...Aymeric Augustin
2012-03-17Fixed #17923 -- Added missing import in the MySQL and Oracle backends. Thanks...Aymeric Augustin
2012-02-10Fixed #17277 - Wrap IOErrors raised due to client disconnect in a specific IO...Carl Meyer
2011-12-17Negligible spacing fixes to comments in django/http/__init__.pyAdrian Holovaty
2011-12-17Fixed comma splice in DeprecationWarning for CompatCookieAdrian Holovaty
2011-12-16Fixed #17323 -- Renamed HttpRequest.raw_post_data to request.body. Thanks for...Adrian Holovaty
2011-12-16Fixed #14597 -- Added a SECURE_PROXY_SSL_HEADER setting for cases when you're...Adrian Holovaty
2011-12-11Fixed #15863 - SimpleCookies are not correctly serialized with the file or da...Luke Plant
2011-12-11Fixed #16632 -- Crash on responses without Content-Type with IE. Thanks juan ...Aymeric Augustin
2011-10-18Remove all relative imports. We have always been at war with relative imports.Alex Gaynor
2011-09-14Slight cleanup to r16829, thanks Alex Gaynor for the note.Paul McMillan
2011-09-14Fixed #16494 by normalizing HttpResponse behavior with non-string input. Http...Paul McMillan
2011-09-10Added protection against spoofing of X_FORWARDED_HOST headers. A security ann...Russell Keith-Magee
2011-09-09Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin vo...Jannis Leidel
2011-08-12Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl.Jannis Leidel
2011-07-08Fixed bug with our SimpleCookie regarding load/custom Morsel, and simplified ...Luke Plant
2011-06-29Fixed our SimpleCookie overriding and use to be compatible with a (potential)...Luke Plant
2011-06-28Fixed #15785 -- Stopped HttpRequest.read() from reading beyond the end of a w...Jannis Leidel
2011-06-25Fixed #15852 -- Modified cookie parsing so it can handle duplicate invalid co...Ramiro Morales
2011-06-16Fixed #14020 -- Made the `HttpResponse` class slightly more behave like a dic...Jannis Leidel
2011-06-10Fixed #16201 -- Ensure that requests with Content-Length=0 don't break the mu...Russell Keith-Magee
2011-06-09Fixed #16178 - Cleanup request classes' `__repr__()`Luke Plant
2011-06-09Fixed #16155 -- Removed Python 2.4 compatibility constructs from code and men...Ramiro Morales
2011-05-21Fixed #12417 -- Added signing functionality, including signing cookies. Many ...Jannis Leidel
2011-05-07Fixed #15496 -- Corrected handling of base64 file upload encoding. Thanks, ge...Jannis Leidel
2011-04-02Advanced deprecation on CompatCookie.Russell Keith-Magee
2011-03-28Fixed #15679 - regression in HttpRequest.POST and raw_post_data access.Luke Plant
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-03-26Fixed #15642 -- Removed redundant imports in http/__init__.py. Thanks, jammonAdrian Holovaty
2011-03-09Removed some dead code, and old/bad constructs from the HttpResponse classes.Alex Gaynor
2011-03-02Fixed #4992 -- Respect the GET request query string when creating cache keys....Jannis Leidel