aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
AgeCommit message (Collapse)Author
2012-10-03Tweak styling of browseable APITom Christie
2012-10-03M2M fields supportedTom Christie
2012-10-03Improve commentsTom Christie
2012-10-03Fix for empty form fieldsTom Christie
2012-10-03Fix for empty form fieldsTom Christie
2012-10-03Use either PrimaryKeyRelatedField or ManyPrimaryKeyRelatedField as ↵Tom Christie
appropriate (fixes test)
2012-10-03Split out PrimaryKeyRelatedField and ManyPrimaryKeyRelatedFieldTom Christie
2012-10-03Added failing test for m2m dataTom Christie
2012-10-03Add m2m update testTom Christie
2012-10-03Add Serializer.save() to clean up differences between serializer.object ↵Tom Christie
being either a DeserializedObject or a model instance
2012-10-03Many2Many testTom Christie
2012-10-03Merge branch 'restframework2' of ↵Tom Christie
https://github.com/tomchristie/django-rest-framework into restframework2
2012-10-03Stopgap fix for model fields rendering in browseable APITom Christie
2012-10-03Rename generic viewsTom Christie
2012-10-02Update view docs slightlyTom Christie
2012-10-02Added model form field -> serializer form field mappingTom Christie
2012-10-02Add test to ensure that pk is readonly in PUT requestsTom Christie
2012-10-02Fix bug where pk could be set in post dataTom Christie
2012-10-02URL overrides in settings fixed up slightlyTom Christie
2012-10-02Make 'results_field' attribute of BasePaginationSerializer public.Tom Christie
2012-10-01Expand pagination support, add docsTom Christie
2012-09-30Pagination supportTom Christie
2012-09-30Docs tweakingTom Christie
2012-09-28Drop oauth tests for now - may pull same test module back in if end up using ↵Tom Christie
django-oauth-plus, but since we've not pulled it in right now...
2012-09-28Add more tests for generic viewsTom Christie
2012-09-28Add more tests for generic viewsTom Christie
2012-09-28Clean up reverse testsTom Christie
2012-09-28Fix coverage to not include migrationsTom Christie
2012-09-28Fix broken bits of generic viewsTom Christie
2012-09-28Fix serialization issue with Django 1.3Tom Christie
2012-09-28Remove unused test fileTom Christie
2012-09-28Get test-only models properly workingTom Christie
2012-09-28Remove support for doctestsTom Christie
2012-09-28Fix failing testsTom Christie
2012-09-27Only display forms when user has permissions. #159Tom Christie
2012-09-27head method on views for Django 1.3. Fixes #228Tom Christie
2012-09-27Remove parse_qs from compat, now py2.5 support is droppedTom Christie
2012-09-27Remove RequestFactory from compat (Now 1.2 is not supported)Tom Christie
2012-09-27Add test for request.POSTTom Christie
2012-09-27Remove braindead testTom Christie
2012-09-26Fix @api_view decorator testsTom Christie
2012-09-26Merge pull request #261 from j4mie/improved-view-decoratorsTom Christie
First stab at new function-based view decorators
2012-09-26No need to use setattrJamie Matthews
2012-09-26Fix broken importTom Christie
2012-09-26Update to new rest_framework package name, simplify implementationJamie Matthews
2012-09-26Merge branch 'restframework2' of ↵Jamie Matthews
git://github.com/tomchristie/django-rest-framework into improved-view-decorators * 'restframework2' of git://github.com/tomchristie/django-rest-framework: Add missing comma
2012-09-26Add missing commaTom Christie
2012-09-26Merge branch 'restframework2' of ↵Jamie Matthews
git://github.com/tomchristie/django-rest-framework into improved-view-decorators * 'restframework2' of git://github.com/tomchristie/django-rest-framework: (56 commits) Bits of cleanup Add request.QUERY_PARAMS Add readonly 'id' field Tweak browseable API Don't display readonly fields Fix some bits of serialization Add csrf note Fix incorrect bit of tutorial Added tox.ini Tweak media_type -> accepted_media_type. Need to document, but marginally less confusing Tweak media_type -> accepted_media_type. Need to document, but marginally less confusing Tweak media_type -> accepted_media_type. Need to document, but marginally less confusing Clean up bits of templates etc Hack out bunch of unneccesary private methods on View class Clean up template tags Remove dumbass __all__ variables Remove old 'djangorestframework directories Change package name: djangorestframework -> rest_framework Dont strip final '/' Use get_script_prefix to play nicely if not installed at the root. ... Conflicts: rest_framework/decorators.py
2012-09-26Bits of cleanupTom Christie
2012-09-26Add request.QUERY_PARAMSTom Christie