aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
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-24Updated requirementsTom Christie
2014-10-22.validate() can raise field errors or non-field errorsTom Christie
2014-10-17Add docs regarding linking third party packagesJosé Padilla
2014-10-17Use serializers.ValidationErrorTom Christie
2014-10-16Update release notesTom Christie
2014-10-16Add to main 3rd party resources list.konradhalas
2014-10-16Add djoser to authentication docs.konradhalas
2014-10-14Update 3.0-announcement.mdwolfe
Swap order of custom field API changes so the two "and" clauses are in the same order.
2014-10-10TweaksTom Christie
2014-10-10exceptions.ValidationFailed, not Django's ValidationErrorTom Christie
2014-10-09First pass on nested serializers in HTMLTom Christie
2014-10-09TypoTom Christie
2014-10-09Document the Metadata APITom Christie
2014-10-09Update tutorial for 3.0Tom Christie
2014-10-08TweaksTom Christie
2014-10-08More gradual deprecationTom Christie
2014-10-08Tweak pre/post save hooks. Return instance in .update().Tom Christie
2014-10-04Update links in 2.4-announcement.mdKevin London
The links to Django Rest Framework pages were 404ing because the URLs include a slash.
2014-10-03Serializer.save() takes keyword arguments, not 'extras' argumentTom Christie
2014-10-03More spelling tweaksCraig de Stigter
2014-10-03Minor: fix spelling and grammar, mostly in 3.0 announcementCraig de Stigter
2014-10-01Fixed documentation typo.Omer Katz
2014-09-30Update 3.0-announcement.mdTom Christie
2014-09-29Update release notesTom Christie
2014-09-29Update index.mdTom Christie
2014-09-29Latest release notesTom Christie
2014-09-29Update release notesTom Christie
2014-09-26Update release notesTom Christie
2014-09-26Merge masterTom Christie
2014-09-26Prepend some pre-release notesTom Christie
2014-09-26Release notesTom Christie
2014-09-26Release notesTom Christie
2014-09-26Allow many, partial and context in BaseSerializerTom Christie
2014-09-26Release notesTom Christie
2014-09-26Release notesTom Christie
2014-09-26Release notesTom Christie
2014-09-26Release notesTom Christie
2014-09-26request.data attributeTom Christie
2014-09-24Merge branch 'master' into version-3.0Tom Christie
2014-09-23remove patterns and strings from urls #1898Collin Anderson
2014-09-19Add BaseSerializer headingTom Christie
2014-09-19Drop 'No major point releases are currently planned.', cos they are.Tom Christie
2014-09-19Version 2.4.32.4.3Tom Christie
2014-09-19Merge branch 'master' into version-3.0Tom Christie
2014-09-19Initial release notesTom 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.