aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide
AgeCommit message (Collapse)Author
2014-11-17Docs for advanced default argument usage. Closes #1945Tom Christie
2014-11-10Bring UniqueValidator implementation in line with other uniquness validators.Tom Christie
2014-11-10Uniqueness constraints imply a forced 'required=True'. Refs #1945Tom Christie
2014-11-06minor spelling tweaksBrett Koonce
2014-11-05Add docs on request.accepted_renderer and .accepted_media_typeTom Christie
2014-11-05Stronger calling out of 'DjangoObjectPermissionsFilter'. Closes #1934.Tom Christie
2014-11-03Add notes re view-level and instance-level permissions checks. Closes #1819.Tom Christie
2014-11-03Add docs on Meta inheritance. Closes #1926.Tom Christie
2014-11-03Added NON_FIELD_ERRORS_KEY to serializer docs. Closes #1971.Tom Christie
2014-11-03PUT as create docs, and move mixin out to external gistTom Christie
2014-10-31Merge branch 'master' into version-3.0Tom Christie
2014-10-31Merge masterTom Christie
2014-10-31Fix up validators docsTom Christie
2014-10-31Validator documentation and tweaksTom Christie
2014-10-29Update authentication.mdAndrew 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-16Add djoser to authentication docs.konradhalas
2014-10-09TypoTom Christie
2014-10-09Document the Metadata APITom Christie
2014-10-03Minor: fix spelling and grammar, mostly in 3.0 announcementCraig de Stigter
2014-09-26Merge masterTom Christie
2014-09-23remove patterns and strings from urls #1898Collin Anderson
2014-09-19Merge branch 'master' into version-3.0Tom Christie
2014-09-17Fixed code formattingMatthew J Morrison
2014-09-17Clarify "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-12DecimalField documentationTom Christie
2014-09-12Updating docsTom Christie
2014-09-11Throttles now use Retry-After header and no longer support the custom styleTom Christie
2014-09-11Merge masterTom Christie
2014-09-10add django rest pandasS. Andrew Sheppard
2014-09-07Fixing quotes in filtering.mdDarren Maki
Incorrect quotes used in examples.
2014-08-29Remove `allow_empty`.Tom Christie
Closes #1774.
2014-08-29Docs whitespace fix.Tom Christie
2014-08-29Merge pull request #1784 from tomchristie/remove-model-attributeTom Christie
Deprecate `.model` attribute on views
2014-08-27Update generic-views.mdNathan Hubbell
Small grammar changes.
2014-08-26Update generic-views.mdNathan Hubbell
2014-08-26Merge pull request #1789 from nemesisdesign/patch-5Carlton Gibson
docs: added drf-hstore to third party fields
2014-08-25docs: added HStoreSerializer to third party serializersFederico Capoano
added a reference to django-rest-framework-hstore in docs/api-guide/serializers.md
2014-08-25docs: added drf-hstore to third party fieldsFederico Capoano
added a reference to django-rest-framework-hstore in docs/api-guide/fields.md
2014-08-21Add .model deprecation to release notesTom Christie
2014-08-20Deprecate .model in related routers/permissionsTom Christie
2014-08-19Release notesTom Christie
2014-08-19Merge masterTom Christie
2014-08-18Merge pull request #1654 from carltongibson/1559-take-2Tom Christie
Allow use of native migrations in 1.7 — Take 2
2014-08-18Improve wording.Carlton Gibson
2014-08-18Alter other reference to migrations.Carlton Gibson
2014-08-18Updated docs for South v1.0Carlton Gibson
2014-08-18Merge pull request #1711 from kdazzle/ModelViewSet-queryset-static-propertyTom Christie
Issue #1707: Add documentation to api-docs.viewsets
2014-08-18Link to Django docs on widgets. Closes #1760.Tom Christie
2014-08-09Merge pull request #1745 from nemesisdesign/patch-4Tom Christie
docs: add reference to gis serializer
2014-08-08docs: added reference to gis serializerFederico Capoano
added reference to GeoFeatureModelSerializer of django-rest-framework-gis