summaryrefslogtreecommitdiff
path: root/django/http
AgeCommit message (Expand)Author
2008-02-27Removed an unnecessary default argument in one __deepcopy__() method and fixedMalcolm Tredinnick
2007-12-17Fixed #5956 -- Added a better error description for non-ASCII HTTP headers. ...Malcolm Tredinnick
2007-12-05Fixed #6063 -- Caught one place in HttpResponse that was not returning a strMalcolm Tredinnick
2007-12-01Small docstring edit in django/http/utils.py from [6662]Adrian Holovaty
2007-11-11Fixed #5898 -- Changed a few response processing paths to make things harder ...Malcolm Tredinnick
2007-10-20Fixed #5562 -- Changed settings of Expires heading when expiring a cookie toMalcolm Tredinnick
2007-10-20Fixed #4969 -- Changed content retrieval in HttpResponse to be more robust inMalcolm Tredinnick
2007-10-20Changed the way we handle HTTP headers internally so that they appearMalcolm Tredinnick
2007-10-20Changed HttpResponse.get() to lower case the header value before looking it u...Malcolm Tredinnick
2007-10-03Fixed #4986 -- Fixed a logic bug from [6166].Malcolm Tredinnick
2007-09-15Added a get_host() method to HttpRequest. There is still an http.get_host() v...Malcolm Tredinnick
2007-09-14Added more dict-like methods to HttpResponse as part of the response.headers ...Jacob Kaplan-Moss
2007-09-14Backwards-incompatible change: renamed HttpResponse.headers to HttpResponse._...Jacob Kaplan-Moss
2007-09-14Fixed the breakage in [6164] in a different, better way: HttpResponse now imp...Jacob Kaplan-Moss
2007-09-14Fixed #2970: made HttpResponse headers case-insensitive. Thanks to SmileyChri...Jacob Kaplan-Moss
2007-09-14Fixed #5445: added some compatibility code for the lack of __iter__ in Jython...Jacob Kaplan-Moss
2007-09-14Fixed a typo from [6164].Malcolm Tredinnick
2007-09-14Fixed #4986 -- Improved get_host() host detection. Thanks, SmileyChris.Malcolm Tredinnick
2007-09-14Fixed #987 -- Convert relative URI portions into absolute URIs in HTTP Locati...Malcolm Tredinnick
2007-09-11Refs #5138 -- Refactored implementation of __contains__ in HttpRequest introd...Russell Keith-Magee
2007-09-11Fixed #5318 -- Added __contains__ method to HttpRequest, mirroring existing h...Russell Keith-Magee
2007-08-12Fixed #4947 -- Avoid displaying uploaded file contents in the debug web page....Malcolm Tredinnick
2007-08-12Clarified the reasoning in a comment.Malcolm Tredinnick
2007-08-11Fixed #3526 -- Added content_type as an alias for mimetype to the HttpRespons...Malcolm Tredinnick
2007-07-11Fixed #4815 -- Fixed decoding of request parameters when the input encoding isMalcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-27Added a parameter to HttpResponse's constructor to enable explicit status codeMalcolm Tredinnick
2007-06-22Backed out the changes in [5482] for a bit whilst some more investigation intoMalcolm Tredinnick
2007-06-17Fixed #4565 -- Changed template rendering to use iterators, rather thanMalcolm Tredinnick
2007-05-19Fixed #4337 -- Added pop() method to QueryDict. Thanks, Gary Wilson.Malcolm Tredinnick
2007-05-11Fixed #4270 -- Don't permit deleting of items from an immutable QueryDict.Malcolm Tredinnick
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2007-03-30Fixed #3875 -- Added HttpResponseBadRequest. Thanks, Scott Barr.Malcolm Tredinnick
2007-03-30Refactored the HttpResponse sub-classes so that adding a subclass that onlyMalcolm Tredinnick
2007-02-26Fixed another Python 2.3 bug (this one on django.http.parse_file_upload). I t...Jacob Kaplan-Moss
2007-02-11Revert [4485] in order to fix accidental mod_python breakage. Refs #2920.Malcolm Tredinnick
2007-02-11Refs #2920 -- Replaced implicit uses of _() with explicit imports or calls to...Russell Keith-Magee
2007-02-10Fixed #3437 -- Fixed incorrect logic in django.http.HttpResponse calculation ...Adrian Holovaty
2006-11-29Fixed #3080 -- Fixed bug in delete_cookie() method. Thanks, nowell striteAdrian Holovaty
2006-09-22Fixed #2560 -- Add close() support to HttpResponse iterators. Thanks, IvanMalcolm Tredinnick
2006-08-09Fixed #2503 -- Fixed HttpResponse.delete_cookie() to work properly. It now ta...Adrian Holovaty
2006-07-21Fixed #2092: added a "is_secure()" method to HttpRequest which correctly hand...Jacob Kaplan-Moss
2006-06-20Fixed #2078 -- Improved HttpResponseRedirect and HttpResponsePermanentRedirec...Adrian Holovaty
2006-06-20Added 'method' attribute to HttpRequest objectsAdrian Holovaty
2006-06-19Fixed #1646 -- Added HttpResponseNotAllowed, as suggested by Ian Holsman.Malcolm Tredinnick
2006-05-02MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty