aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-11-04Updated book link in HATEOAS pageSumana Harihareswara
Per http://www.crummy.com/2013/10/03/0 , the new book is *RESTful Web APIs* and the old book, *RESTful Web Services*, is obsolete.
2014-11-03Merge pull request #2015 from tdavis/patch-1Xavier Ordoquy
Fix typo
2014-11-03Fix typoTom Davis
That's all.
2014-11-03Call out 'get_value' and 'get_attribute'Tom Christie
2014-11-03Tweaks to validation notesTom 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-03Add note about 3.0 being merged to masterTom Christie
2014-11-03Merge pull request #1800 from tomchristie/version-3.0Tom Christie
Version 3.0
2014-11-03Merge branch 'version-3.0' of ↵Tom Christie
https://github.com/tomchristie/django-rest-framework into version-3.0
2014-11-03Py2/3 compat for validation testTom Christie
2014-11-03Merge pull request #2011 from fusionbox/announcement_typosTom Christie
Fixed some typos in 3.0 release notes
2014-11-03Use invalid_data key for error message. Closes #2002.Tom Christie
2014-11-03Fixed some typos in 3.0 release notesRocky Meza
2014-11-03PUT as create docs, and move mixin out to external gistTom Christie
2014-11-03Merge masterTom Christie
2014-11-03Fix URL escaping2.4.4Tom Christie
2014-11-03Version 2.4.4Tom Christie
2014-11-03Merge branch 'version-3.0' of ↵Tom Christie
https://github.com/tomchristie/django-rest-framework into version-3.0
2014-11-03Merge branch 'master' into version-3.0Tom Christie
2014-11-03Properly escape URLs when replacing query parameterTom Christie
2014-11-03Proper escaping of URLs when replacing query parameterTom Christie
2014-11-01Merge pull request #2006 from andybak/patch-1Tom Christie
typo fix
2014-11-01typo fixAndy Baker
2014-10-31Merge masterTom Christie
2014-10-31Merge pull request #1963 from carljm/lazy-fieldsTom Christie
Set up serializer fields lazily on-demand.
2014-10-31Lazy loading of fields and validators. Closes #1963.Tom Christie
2014-10-31Merge branch 'master' into version-3.0Tom Christie
2014-10-31Merge pull request #1922 from JonesChi/fix_followTom Christie
Fix follow does not work on get of APIRequestFactory
2014-10-31Guard against malicious string inputs for numbers. Closes #1903.Tom Christie
2014-10-31Merge masterTom Christie
2014-10-31Merge pull request #1785 from gdoermann/masterTom Christie
Frameworks throws AssertionError saying you cannot set required=True and...
2014-10-31Merge branch 'master' into version-3.0Tom Christie
2014-10-31Merge masterTom Christie
2014-10-31Update to bootstrap 3. Closes #1085Tom Christie
2014-10-31Fix up validators docsTom Christie
2014-10-31Validator documentation and tweaksTom Christie
2014-10-30Ensure json.dumps(separators=...) works on both 2.x and 3.xTom Christie
2014-10-30Nested serializer testsTom Christie
2014-10-29Merge pull request #1997 from agconti/patch-1Xavier Ordoquy
docs(api-guide/authentication): updated to reflect new standards in Django 1.7
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-29Merge pull request #1993 from jpadilla/masterCarlton Gibson
Use PYTHONDONTWRITEBYTECODE=1 on tox environment
2014-10-28Use PYTHONDONTWRITEBYTECODE=1 on tox environmentJosé Padilla
This fixes bad marshal data errors after running tests with tox and later running tests manually via runtests.py. Fixes #1957
2014-10-28unique_for_date/unique_for_month/unique_for_yearTom Christie
2014-10-24Updated requirementsTom Christie
2014-10-22unique_for_month, unique_for_yearTom Christie
2014-10-22Merge pull request #1969 from erikcw/orderedTom Christie
Maintain order of views on router for api root view.
2014-10-22First pass at unique_for_date, unique_for_month, unique_for_yearTom Christie
2014-10-22.validate() can raise field errors or non-field errorsTom Christie