| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-31 | _closable_objects as an empty list, not deletedempty_closable_objects | Tom Christie | |
| 2015-01-23 | More sensible response caching. | Tom Christie | |
| 2014-10-08 | Reverted 59d0a0387d907260ef8f91bbbca618831abd75a3 and fixed the tests | Xavier Ordoquy | |
| 2014-08-19 | Drop six from compat. 1.4.2 is now the lowest supported version. | Tom Christie | |
| 2014-08-19 | Code linting and added runtests.py | Tom Christie | |
| 2014-08-01 | Leave status responsibility to parent class | Anler Hp | |
| Django's `HttpResponse` class checks for the `status` param when it's initialized, if it's `None` it uses the class attribute `status_code` and thanks to that we can do things like: ``` class BadRequest(HttpResponse): status_code = 400 ``` Now, that doesn't work when inheriting from rest-framework's `Response`: ``` class BadRequest(rest_framework.response.Response): status_code = 400 # Bad, it's always ignored ``` Because a default status of `200` is being specified in `rest_framework.response.Response`. I think is more Django-friendly to just leave that status default value to `None` and leave the responsibility of choosing its value to the parent class: `HttpResponse`. | |||
| 2014-07-29 | Better fix for the Django 1.3 compat | Xavier Ordoquy | |
| 2014-07-29 | Fixed the Django 1.3 compat | Xavier Ordoquy | |
| 2014-07-29 | Fixed the cache issue with Django 1.7 rc* | Xavier Ordoquy | |
| 2013-12-03 | Remove Content-Type header from empty responses. Fixes #1196 | Tom Christie | |
| 2013-06-02 | fix doc typo | Menghan | |
| 2013-05-28 | Fixed typos | Pascal Borreli | |
| 2013-05-20 | content type may be set explicitly on the response | Tom Christie | |
| 2013-05-20 | Fix charset issues | Tom Christie | |
| 2013-05-18 | Added proper charset support | Tom Christie | |
| 2013-05-18 | charset param gets now appended to response's Content-Type. Closes #807 | Karol Majta | |
| 2013-04-25 | Cleanup docstrings | Tom Christie | |
| 2013-02-04 | Cleanup imports | Tom Christie | |
| Mostly adding `from __future__ import unicode_literals` everywhere. | |||
| 2013-01-03 | Move the various compat things to the compat module. | Xavier Ordoquy | |
| 2012-11-24 | Every (base) test should now pass with python3. | Xavier Ordoquy | |
| 2012-11-14 | Merge pull request #407 from ludwigkraatz/location_header | Tom Christie | |
| Location header when Creating a Resource with HyperlinkedIdentityField | |||
| 2012-11-14 | fixed some typos | Stephan Groß | |
| 2012-11-13 | changed buggy response + code ploishing | Ludwig Kraatz | |
| reponse didnt handle any headers at all. Accepts now a dict of headers and sets those properly | |||
| 2012-11-06 | Support for HTML error templates. Fixes #319. | Tom Christie | |
| 2012-11-04 | Remove attributes that are not needed when caching | Jacob Magnusson | |
| the Response object. This fixes #346 | |||
| 2012-10-10 | Make sure JSON output in Browseable API is nicely indented | Tom Christie | |
| 2012-10-05 | Docs for template responses | Tom Christie | |
| 2012-10-05 | HTMLTemplateRenderer working | Tom Christie | |
| 2012-10-05 | Accepted media type uses most specific of client/renderer media types. | Tom Christie | |
| 2012-09-30 | Docs tweaking | Tom Christie | |
| 2012-09-21 | Tweak media_type -> accepted_media_type. Need to document, but marginally ↵ | Tom Christie | |
| less confusing | |||
| 2012-09-21 | Tweak media_type -> accepted_media_type. Need to document, but marginally ↵ | Tom Christie | |
| less confusing | |||
| 2012-09-21 | Tweak media_type -> accepted_media_type. Need to document, but marginally ↵ | Tom Christie | |
| less confusing | |||
| 2012-09-20 | Clean up bits of templates etc | Tom Christie | |
| 2012-09-20 | Change package name: djangorestframework -> rest_framework | Tom Christie | |
