| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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-13 | Latest sponsor update | Tom Christie | |
| 2014-08-12 | Minor docs style change | Tom Christie | |
| 2014-08-12 | Added Cantemo | Tom Christie | |
| 2014-08-12 | Added Rob Spectre | Tom Christie | |
| 2014-08-12 | Merge branch 'master' of https://github.com/tomchristie/django-rest-framework | Tom Christie | |
| 2014-08-12 | Added OpenEye as a silver sponsor | Tom Christie | |
| 2014-08-11 | Merge pull request #1750 from tomchristie/json-renderer-refactor | Tom Christie | |
| Refactor JSONRenderer slightly for easier overriding | |||
| 2014-08-11 | Refactor JSONRenderer slightly for easier overriding | Tom Christie | |
| 2014-08-09 | Merge pull request #1745 from nemesisdesign/patch-4 | Tom Christie | |
| docs: add reference to gis serializer | |||
| 2014-08-09 | Merge pull request #1744 from nemesisdesign/patch-3 | Tom Christie | |
| docs: add reference to DRF-gis in fields | |||
| 2014-08-08 | docs: added reference to gis serializer | Federico Capoano | |
| added reference to GeoFeatureModelSerializer of django-rest-framework-gis | |||
| 2014-08-08 | docs: added reference to DRF-gis in fields | Federico Capoano | |
| added django-rest-framework-gis to third party packages section in /docs/api-guide/fields.md | |||
| 2014-08-08 | Merge pull request #1740 from kevinlondon/patch-4 | Tom Christie | |
| Updated links to Bootstrap components | |||
| 2014-08-07 | Updated links to Bootstrap components | Kevin London | |
| The previous links landed on the the main page and no longer directly linked to specific areas. | |||
| 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-07 | Merge pull request #1737 from kevinlondon/patch-2 | Tom Christie | |
| Include query parameter override instructions for OrderingFilter | |||
| 2014-08-07 | remove dep on python_2_unicode_compatible | Paul Oswald | |
| python_2_unicode_compatible is not available in all Django versions | |||
| 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-07 | Merge pull request #1736 from robbyt/patch-2 | Tom Christie | |
| minor doc fix, @api_view() needs an iterable | |||
| 2014-08-06 | minor doc fix, @api_view() needs an iterable | Rob Terhaar | |
| 2014-08-06 | Merge pull request #1733 from nimiq/patch-1 | Tom Christie | |
| Fix style for some text | |||
| 2014-08-06 | Fix style for some text | nimiq | |
| 2014-08-05 | Merge pull request #1732 from jalan/master | Tom Christie | |
| Remove duplicate class attributes | |||
| 2014-08-05 | Latest sponsor update | Tom Christie | |
| 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-04 | Latest sponsor update | Tom Christie | |
| 2014-08-02 | Update sponsorships | Tom Christie | |
| 2014-08-02 | Added pathwright | Tom Christie | |
| 2014-08-02 | Update Nephila sponsorship | Tom Christie | |
| 2014-08-02 | Sponsor updated | Tom Christie | |
| 2014-08-01 | Added ProReNata AB | Tom Christie | |
| 2014-08-01 | Fix LaterPay link | Tom Christie | |
| 2014-08-01 | Latest sponsor updates | Tom Christie | |
| 2014-08-01 | Latest sponsor updates | 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-31 | Merge branch 'master' of https://github.com/tomchristie/django-rest-framework | Tom Christie | |
| 2014-07-31 | Kickstarter sponsors | Tom Christie | |
| 2014-07-31 | Merge pull request #1724 from kevinlondon/patch-1 | Xavier Ordoquy | |
| Updated Permissions doc link to Django docs | |||
| 2014-07-31 | Updated Permissions doc link to Django docs | Kevin London | |
| The previous link went to version 1 docs so it was a dead link. | |||
| 2014-07-31 | Add platinum sponsors | Tom Christie | |
| 2014-07-30 | Add django-rest-framework-mongoengine link. Closes #1722 Closes #1562 Closes ↵ | Tom Christie | |
| #1545 | |||
| 2014-07-29 | Merge pull request #1720 from tomchristie/feature/django_guardian_cleanup | Xavier Ordoquy | |
| Django & Django guardian updates | |||
| 2014-07-29 | evaluate content at function start | Paul Oswald | |
| 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 info about queryset property caching to get_queryset() docs. | Kyle | |
| Add documentation to the get_queryset() method of generic-views.md regarding the caching of the queryset property. | |||
| 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 | Updated the tox file. | Xavier Ordoquy | |
