| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-09-03 | Version 2.4.22.4.2 | Tom Christie | |
| 2014-09-03 | remove rogue print | Michał Jaworski | |
| 2014-09-03 | Use explicit many=True for object_serializer instantiation in ↵ | Michał Jaworski | |
| PaginationSerializer and add catch dummy 'many' kwarg on DefaultObjectSerializer | |||
| 2014-09-01 | Merge pull request #1816 from carltongibson/regression-login-template | Carlton Gibson | |
| Regression for #1810: Test login view renders | |||
| 2014-09-01 | Version 2.4.12.4.1 | Tom Christie | |
| 2014-09-01 | Regression for #1810: Test login view renders | Carlton Gibson | |
| 2014-08-30 | Restore body block to base template. | Daniel Roseman | |
| 2014-08-29 | 2.4 Release notes2.4.0 | Tom Christie | |
| 2014-08-29 | Merge pull request #1784 from tomchristie/remove-model-attribute | Tom Christie | |
| Deprecate `.model` attribute on views | |||
| 2014-08-28 | Validation errors in the rendered HTML fixed | Cezar Pendarovski | |
| 2014-08-27 | Put all TextNodes (method names) back to same line with parent element | Cezar Pendarovski | |
| 2014-08-25 | Merge remote-tracking branch 'upstream/master' into fix-1719 | Cezar Pendarovski | |
| Conflicts: rest_framework/templates/rest_framework/base.html | |||
| 2014-08-22 | Made all color declarations in bootstrap-tweaks.css consistent | Cezar Pendarovski | |
| 2014-08-22 | Fixed the issue with the non-draggable horizontal scrollbar | Cezar Pendarovski | |
| 2014-08-20 | Deprecate .model in related routers/permissions | Tom Christie | |
| 2014-08-20 | Merge branch 'master' into set-retry-after | Dmitry Mukhin | |
| Conflicts: tests/test_throttling.py | |||
| 2014-08-20 | Deprecate .model attribute on views | Tom Christie | |
| 2014-08-20 | Fix cache_throttle typo | Tom Christie | |
| 2014-08-19 | Drop six from compat. 1.4.2 is now the lowest supported version. | Tom Christie | |
| 2014-08-19 | Merge pull request #1778 from linovia/bugfix/1398 | Tom Christie | |
| Bugfix/1398 | |||
| 2014-08-19 | Resolve python3 linting issue | Tom Christie | |
| 2014-08-19 | Resolve linting issues | Tom Christie | |
| 2014-08-19 | Code linting and added runtests.py | Tom Christie | |
| 2014-08-19 | Merged #1398 against 2.4 branch. | Xavier Ordoquy | |
| 2014-08-19 | Merge master | Tom Christie | |
| 2014-08-18 | Only set .action attribute in override_method if it already existed on the view | Tom Christie | |
| 2014-08-18 | Merge pull request #1763 from fongandrew/patch-1 | Tom Christie | |
| override_method should substitute action | |||
| 2014-08-18 | Merge pull request #1505 from ticosax/test.client.logout | Tom Christie | |
| reset stored credentials when call client.logout() | |||
| 2014-08-18 | Merge pull request #1641 from javins/login-title | Tom Christie | |
| Refactor login template to extend base. | |||
| 2014-08-18 | Merge pull request #1726 from ikame/master | Tom Christie | |
| Leave status responsibility to parent class | |||
| 2014-08-18 | Merge pull request #1654 from carltongibson/1559-take-2 | Tom Christie | |
| Allow use of native migrations in 1.7 — Take 2 | |||
| 2014-08-18 | Merge pull request #1772 from tomchristie/fix-1583 | Tom Christie | |
| Copy filter_backends class attribute before returning it. | |||
| 2014-08-18 | Copy filter_backends class attribute before returning it. | Tom Christie | |
| 2014-08-18 | Always uppercase X-Http-Method-Override methods. Closes #1718. | Tom Christie | |
| 2014-08-18 | Merge pull request #1711 from kdazzle/ModelViewSet-queryset-static-property | Tom Christie | |
| Issue #1707: Add documentation to api-docs.viewsets | |||
| 2014-08-18 | Merge pull request #1739 from kevinlondon/patch-3 | Tom Christie | |
| Updated documentation for urls.py | |||
| 2014-08-16 | Fixed action_map being pulled from wrong object | Andrew Fong | |
| 2014-08-16 | override_method should substitute action | Andrew Fong | |
| A view's action is dependent on the request method. When overriding the method (e.g. to generate a form for a POST request on a GET call to the browseable API), the action should be updated as well. Otherwise, viewset functions may be in a weird limbo state where a 'list' action has a POST method. | |||
| 2014-08-16 | Add test for SerializerMethodField | Aymeric Derbois | |
| 2014-08-13 | ModelSerializer.restore_object - errors as list | John Whitlock | |
| When a ValueError is raised in ModelSerializer.restore_object, the error is set to a one-element list, rather than a bare string. | |||
| 2014-08-11 | Refactor JSONRenderer slightly for easier overriding | Tom Christie | |
| 2014-08-07 | Updated documentation for urls.py | Kevin London | |
| I made a small change in the order of the documentation for urls.py. I feel it helps make it clear which lines you should add to the root settings. | |||
| 2014-08-06 | Update description of OrderingFilter | Kevin London | |
| I added a brief description of how you could specify a different query parameter for the OrderingFilter. | |||
| 2014-08-05 | Remove duplicate class attributes | Jason Alan Palmer | |
| These duplicate attributes are ignored by at least Firefox and Chrome, so this change has no effect on the style | |||
| 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 | |
| 2014-07-28 | Issue #1707 - Add documentation about the caching of `GenericAPIView.queryset` | Kyle | |
| to the `queryset` property, `get_queryset()`, and do generic-views.md; remove changes to the viewsets.md documentation from my last commit. | |||
| 2014-07-28 | Merge remote-tracking branch 'reference/master' | Xavier Ordoquy | |
