summaryrefslogtreecommitdiff
path: root/django/http/__init__.py
AgeCommit message (Expand)Author
2012-10-21Cleaned up the the http module. Moved all of the code from __init__.py to req...Alex Gaynor
2012-10-20Fixed #7581 -- Added streaming responses.Aymeric Augustin
2012-10-20Fixed #5611 -- Restricted accepted content types in parsing POST dataClaude Paroz
2012-10-17Fixed a security issue related to password resetsPreston Holmes
2012-09-07Fixed #18916 -- Allowed non-ASCII headers.Aymeric Augustin
2012-08-30Replaced some smart_xxx by force_xxx equivalentClaude Paroz
2012-08-29Replaced many smart_bytes by force_bytesClaude Paroz
2012-08-23Fixed #18678 -- HttpResponse init arguments allowed for subclassesClaude Paroz
2012-08-22Fixed #11340 -- Prevented HttpResponseNotModified to have content/content-typeClaude Paroz
2012-08-22Used the decorator syntax for properties in django.httpClaude Paroz
2012-08-19[py3] Fixed another regression from 2892cb0ec4.Aymeric Augustin
2012-08-19[py3] Fixed regression introduced in 536b030363.Aymeric Augustin
2012-08-19[py3] Supported integers in HttpResponseAymeric Augustin
2012-08-15[py3] Fixed HTTP header serializationClaude Paroz
2012-08-14[py3] Fixed HttpResponse when initialized with bytesClaude Paroz
2012-08-14[py3] Ported django.http according to PEP 3333.Aymeric Augustin
2012-08-13[py3] Fixed contrib.formtools testsClaude Paroz
2012-08-13[py3] Fixed iterlists usage in QueryDictClaude Paroz
2012-08-11[py3] Used smart_str to prevent regressions in http handlingClaude Paroz
2012-08-11[py3] Fixed Python 3 compatibility of http handlingClaude Paroz
2012-08-09[py3] Renamed `next` to `__next__` in iterators.Aymeric Augustin
2012-08-08[py3] Fixed 'iterable but non string' detectionClaude Paroz
2012-08-07[py3] Made a small fix in django.http.Aymeric Augustin
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