| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-11-05 | Stronger calling out of 'DjangoObjectPermissionsFilter'. Closes #1934. | Tom Christie | |
| 2014-11-03 | Add notes re view-level and instance-level permissions checks. Closes #1819. | Tom Christie | |
| 2014-11-03 | Add docs on Meta inheritance. Closes #1926. | Tom Christie | |
| 2014-11-03 | Added NON_FIELD_ERRORS_KEY to serializer docs. Closes #1971. | Tom Christie | |
| 2014-11-03 | PUT as create docs, and move mixin out to external gist | Tom Christie | |
| 2014-10-31 | Merge branch 'master' into version-3.0 | Tom Christie | |
| 2014-10-31 | Merge master | Tom Christie | |
| 2014-10-31 | Fix up validators docs | Tom Christie | |
| 2014-10-31 | Validator documentation and tweaks | Tom Christie | |
| 2014-10-29 | Update authentication.md | Andrew Conti | |
| Based on the [new documentation](https://docs.djangoproject.com/en/dev/topics/auth/customizing/#django.contrib.auth.get_user_model) for Django 1.7 we should now use: ```python @receiver(post_save, sender=settings.AUTH_USER_MODEL) ``` instead of: ```python @receiver(post_save, sender=get_user_model()) ``` because `get_user_model()` only works once Django has imported all models. Otherwise you'll get: ```python django.core.exceptions.AppRegistryNotReady: Models aren't loaded yet. ``` When trying to start your sever after adding token authentication. From the Docs, ( linked above as well ) : >New in Django 1.7: >When connecting to signals sent by the User model, you should specify the custom model using the AUTH_USER_MODEL setting. | |||
| 2014-10-16 | Add djoser to authentication docs. | konradhalas | |
| 2014-10-09 | Typo | Tom Christie | |
| 2014-10-09 | Document the Metadata API | Tom Christie | |
| 2014-10-03 | Minor: fix spelling and grammar, mostly in 3.0 announcement | Craig de Stigter | |
| 2014-09-26 | Merge master | Tom Christie | |
| 2014-09-23 | remove patterns and strings from urls #1898 | Collin Anderson | |
| 2014-09-19 | Merge branch 'master' into version-3.0 | Tom Christie | |
| 2014-09-17 | Fixed code formatting | Matthew J Morrison | |
| 2014-09-17 | Clarify "raised inside REST framework" | Matthew J Morrison | |
| I ran into an issue today where I was not seeing the rest_framework.views.exception_handler do what I thought it should be doing. It turned out that I had imported View from rest_framework.views rather than importing APIView from rest_framework.views. The phrase "raised inside REST framework" was confusing as I was debugging this issue. I was unsure if that meant that I could raise those exceptions in my code or if it had to originate from within framework code. I'm not sure if the proposed wording is ideal, I just wanted to point out what I found to be confusing. | |||
| 2014-09-12 | DecimalField documentation | Tom Christie | |
| 2014-09-12 | Updating docs | Tom Christie | |
| 2014-09-11 | Throttles now use Retry-After header and no longer support the custom style | Tom Christie | |
| 2014-09-11 | Merge master | Tom Christie | |
| 2014-09-10 | add django rest pandas | S. Andrew Sheppard | |
| 2014-09-07 | Fixing quotes in filtering.md | Darren Maki | |
| Incorrect quotes used in examples. | |||
| 2014-08-29 | Remove `allow_empty`. | Tom Christie | |
| Closes #1774. | |||
| 2014-08-29 | Docs whitespace fix. | Tom Christie | |
| 2014-08-29 | Merge pull request #1784 from tomchristie/remove-model-attribute | Tom Christie | |
| Deprecate `.model` attribute on views | |||
| 2014-08-27 | Update generic-views.md | Nathan Hubbell | |
| Small grammar changes. | |||
| 2014-08-26 | Update generic-views.md | Nathan Hubbell | |
| 2014-08-26 | Merge pull request #1789 from nemesisdesign/patch-5 | Carlton Gibson | |
| docs: added drf-hstore to third party fields | |||
| 2014-08-25 | docs: added HStoreSerializer to third party serializers | Federico Capoano | |
| added a reference to django-rest-framework-hstore in docs/api-guide/serializers.md | |||
| 2014-08-25 | docs: added drf-hstore to third party fields | Federico Capoano | |
| added a reference to django-rest-framework-hstore in docs/api-guide/fields.md | |||
| 2014-08-21 | Add .model deprecation to release notes | Tom Christie | |
| 2014-08-20 | Deprecate .model in related routers/permissions | Tom Christie | |
| 2014-08-19 | Release notes | Tom Christie | |
| 2014-08-19 | Merge master | Tom Christie | |
| 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 | Improve wording. | Carlton Gibson | |
| 2014-08-18 | Alter other reference to migrations. | Carlton Gibson | |
| 2014-08-18 | Updated docs for South v1.0 | Carlton Gibson | |
| 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 | Link to Django docs on widgets. Closes #1760. | Tom Christie | |
| 2014-08-09 | Merge pull request #1745 from nemesisdesign/patch-4 | Tom Christie | |
| docs: add reference to gis serializer | |||
| 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-06 | minor doc fix, @api_view() needs an iterable | Rob Terhaar | |
| 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-30 | Add django-rest-framework-mongoengine link. Closes #1722 Closes #1562 Closes ↵ | Tom Christie | |
| #1545 | |||
| 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. | |||
