aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-03-13Version 2.2.42.2.4Tom Christie
2013-03-13Merge branch 'master' of https://github.com/tomchristie/django-rest-frameworkTom Christie
2013-03-13Use django-filter 0.6a1 and add database query count tests for paginated, ↵Tom Christie
filtered lists.
2013-03-13Fix duplicated database queries for paginated lists.Tom Christie
Closes #713.
2013-03-13Merge branch 'num-query-checking' of ↵Tom Christie
https://github.com/mjtamlyn/django-rest-framework
2013-03-12Merge pull request #723 from mjumbewu/multitable-inheritanceTom Christie
Use parent's primary key when model is derived via multitable inheritance
2013-03-12Added @kuhnza for work on #695. Thanks!Tom Christie
2013-03-12Update release notes.Tom Christie
2013-03-12Only honor X-HTTP-Method-Override for POST requests.Tom Christie
2013-03-12Merge pull request #695 from kuhnza/masterTom Christie
Support for X-HTTP-Method-Override Header
2013-03-12TweakTom Christie
2013-03-12Update release notesTom Christie
2013-03-12Merge pull request #709 from tomchristie/oauthTom Christie
OAuth support
2013-03-12Clean up TokenHasReadWriteScope slightlyTom Christie
2013-03-12Merge masterTom Christie
2013-03-12Merge pull request #721 from dulaccc/token-scope-permissionTom Christie
Token scope permission class
2013-03-12Documentation for X-HTTP-Method-OverrideDave Kuhn
2013-03-12Added test for X-HTTP-Method-Override headerDave Kuhn
2013-03-11Further group model inheritance testsMjumbe Wawatu Ukweli
2013-03-11Group the model-inheritance-related tests togetherMjumbe Wawatu Ukweli
2013-03-11Simplify inherited child check to not use isinstanceMjumbe Wawatu Ukweli
2013-03-11Use parent's primary key when model is derived via multitable inheritanceMjumbe Wawatu Ukweli
2013-03-10Update release notesTom Christie
2013-03-10Added @bouke for bug fix #722. Thanks!Tom Christie
2013-03-10Merge pull request #722 from Bouke/patch-1Tom Christie
PrimaryKeyRelatedField with OneToOneField serializes wrong object's id
2013-03-10Fixed #720Bouke Haarsma
2013-03-10Failing test to show problem of #720Bouke Haarsma
2013-03-10Add the implementation for TokenHasReadWriteScope permissions w/ oauth 1Pierre Dulac
2013-03-10Add TokenHasReadWriteScope class for permissions based on scopesPierre Dulac
2013-03-09Serializers support bulk create.Tom Christie
2013-03-09Docs polishing.Tom Christie
2013-03-08Update release notes.Tom Christie
2013-03-08Neater override hooks and more docs for DjangoModelPermissions.Tom Christie
Refs #702.
2013-03-08Fix crazy typo.Tom Christie
2013-03-08MergeTom Christie
2013-03-08Fixes for auth header checking.Tom Christie
2013-03-08Update release notesTom Christie
2013-03-08Merge pull request #716 from tomchristie/list-deserializationTom Christie
List deserialization
2013-03-08Py3k fixes.Tom Christie
2013-03-08Added @bitmonkey. Thanks!Tom Christie
For work on handling errors when deserializing lists of objects.
2013-03-08Tweak implementation, and use FormSet style errorsTom Christie
2013-03-08Merge branch 'master' of https://github.com/bitmonkey/django-rest-framework ↵Tom Christie
into list-deserialization
2013-03-08authtoken abstract if not installed.Tom Christie
Fixes #705.
2013-03-08Docs on per-object filteringTom Christie
2013-03-08Added @dulaccc.Tom Christie
For the awesome OAuth 2 support in #693.
2013-03-08More bits of cleanupTom Christie
2013-03-08Add some simple numQueries tests.Marc Tamlyn
2013-03-08Correcy typo.Marc Tamlyn
2013-03-08Merge pull request #711 from toranb/masterTom Christie
GenericAPIView now applies filter_backend for list and retrieve api views
2013-03-08GenericAPIView now applies filter_backend for list and retrieve api viewstoran billups
Before this commit only the MultipleObjectAPIView would apply a filter_backend, leaving the SingleObjectAPIView to return objects you might otherwise expect to have been filtered out. It's worth mentioning that when a SingleObjectAPIView makes a request for an object that should be excluded, a 404 is the expected result.