Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/http/utils.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #23960 -- Removed http.fix_location_headerClaude Paroz2015-03-181-13/+0
| | | | Thanks Carl Meyer for the report and Tim Graham for the review.
* Fixed #23295 -- Removed unnecessary fix_location_header ↵Collin Anderson2014-08-151-1/+1
| | | | request.get_host() check.
* Dropped fix_IE_for_vary/attach.Aymeric Augustin2014-05-141-55/+0
| | | | This is a security fix. Disclosure following shortly.
* Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol2013-10-211-2/+2
|
* Fixed #20472: response.content should be bytes on both ↵Łukasz Langa2013-05-211-2/+2
| | | | Python 2 and 3
* Cleaned up the the http module. Moved all of the code ↵Alex Gaynor2012-10-211-1/+4
| | | | from __init__.py to request.py, response.py and utils.py
* Fixed #7581 -- Added streaming responses.Aymeric Augustin2012-10-201-3/+9
| | | | Thanks mrmachine and everyone else involved on this long-standing ticket.
* Fixed #16632 -- Crash on responses without Content-Type ↵Aymeric Augustin2011-12-111-1/+2
| | | | | | with IE. Thanks juan for the report and kenth for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17196 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15046 -- Added "CHROMEFRAME" as a user agent ↵Russell Keith-Magee2011-01-271-2/+4
| | | | | | alias for various MSIE fixes. Thanks to chrj for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15340 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #4148 -- Changed the way attachments are served to ↵Malcolm Tredinnick2008-07-071-0/+51
| | | | | | | | | | | | IE to avoid some caching and header-related bugs there. Only comes into play when Internet Explorer is the user-agent. Patch from Michael Axiak, with testing from Axis_of_Entropy and Karen Tracey. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7856 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Small docstring edit in django/http/utils.py from [6662]Adrian Holovaty2007-12-011-3/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@6793 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #5898 -- Changed a few response processing paths ↵Malcolm Tredinnick2007-11-111-0/+34
to make things harder to get wrong and easier to get right. Previous behaviour wasn't buggy, but it was harder to use than necessary. We now have automatic HEAD processing always (previously required ConditionalGetMiddleware), middleware benefits from the Location header rewrite, so they can use relative URLs as well, and responses with response codes 1xx, 204 or 304 will always have their content removed, in accordance with the HTTP spec (so it's much harder to indavertently deliver invalid responses). Based on a patch and diagnosis from regexbot@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6662 bcc190cf-cafb-0310-a4f2-bffc1f526a37