aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-10-15Added tests for TextFieldJens Alm
2012-10-15Added TextField to recognized fieldsJens Alm
2012-10-14Merge branch 'restframework2' of ↵Tom Christie
https://github.com/tomchristie/django-rest-framework into restframework2
2012-10-14Documentation for parsersTom Christie
2012-10-14Work on docsTom Christie
2012-10-13Fix typoTom Christie
2012-10-13Docs tweaksTom Christie
2012-10-13Fix typoTom Christie
2012-10-13Merge pull request #293 from tomchristie/request-documentationTom Christie
Improve documentation for Requests
2012-10-13Improve documentation for RequestsTom Christie
2012-10-13Merge pull request #291 from tomchristie/drop-coverageTom Christie
Drop coverage in travis tests
2012-10-12Merge pull request #292 from j4mie/patch-1Tom Christie
Fix tiny typo
2012-10-12Fix tiny typoJamie Matthews
2012-10-11Change django-filter to version that supports Django 1.3.Ben Konrath
2012-10-11Use Decimal (properly) everywhere.Ben Konrath
2012-10-11Add PYTHONPATH in travis configTom Christie
2012-10-11Don't bother to setup.py test, just test directlyTom Christie
2012-10-11Drop coverage in travis testsTom Christie
2012-10-11Explicitly use Decimal for creating filter test data.Ben Konrath
This fixes a Travis build failures on python 2.6: https://travis-ci.org/#!/tomchristie/django-rest-framework/builds/2746628
2012-10-11Sanitise JSON error messagesTom Christie
2012-10-11Sanitise JSON error messagesTom Christie
2012-10-11Define 'page' query field name in one place.Ben Konrath
2012-10-11Make query filters work with pagination.Ben Konrath
2012-10-11Fix small PEP8 problem.Ben Konrath
2012-10-11Check for 200 status when unknown filter requested.Ben Konrath
This changes the test from the failing checking for status 400. See discussion here: https://github.com/tomchristie/django-rest-framework/pull/169#issuecomment-9240480
2012-10-11First attempt at adding filter support.Ben Konrath
The filter support uses django-filter to work its magic.
2012-10-10Don't fail when no data providedTom Christie
2012-10-10Fix session authTom Christie
2012-10-10Fix yaml renderingTom Christie
2012-10-10Tidy up APISettings object to not rely on module stateTom Christie
2012-10-10Fix key ordering in json. (sort if it's a sorted dictc representation, or ↵Tom Christie
not otherwise)
2012-10-10Make sure JSON output in Browseable API is nicely indentedTom Christie
2012-10-10Permissions and throttles no longer have a view attribute on self. ↵Tom Christie
Explicitly passed to .has_permissions(request, view, obj=None) / .allow_request(request, view)
2012-10-10api_key -> auth_token to avoid TastyPie conflictTom Christie
2012-10-10Remove 'tut 6 - resources' from the docs, since it doesn't exist yetTom Christie
2012-10-09Add 'to_many' flag in get_related_fieldTom Christie
2012-10-09Add flag in get_related_fieldTom Christie
2012-10-09Fixed couple of incorrect imports in the docsTom Christie
2012-10-09Docs tweaksTom Christie
2012-10-09Rename HTMLTemplateRenderer -> HTMLRenderer, DocuemntingHTMLRenderer -> ↵Tom Christie
BrowseableAPIRenderer
2012-10-09Tweak static files with docsTom Christie
2012-10-09Flesh out quickstart guide and make some style tweaksTom Christie
2012-10-09Fix browseable API form display error for authenticated permissionsTom Christie
2012-10-09Tweak settings in quickstart guideTom Christie
2012-10-09Added quickstart guideTom Christie
2012-10-09Remove Field handling relations/relationship managers - use ↵Tom Christie
RelatedField/ManyRelatedField instead
2012-10-09Tweak authtokenTom Christie
2012-10-09Function based views get proper naming in browseable APITom Christie
2012-10-08Fix issue where required fields were not being properly validated. Also ↵Tom Christie
make model fields with a default value be not required
2012-10-08Fix fiddly content-overloading bugTom Christie