aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-09-08`error_data` -> `errors`Marko Tibold
Prefill form for instance view.
2012-09-08Fields are showing up again. Still WIP.Marko Tibold
2012-09-07Merge pull request #251 from mjumbewu/1.3-supportTom Christie
Fix Django 1.3 compatibility
2012-09-07Fix the tests on 1.3 and HEADMjumbe Wawatu Poe
In the latest Django master code, RequestFactory.put behaves fundamentally differently than it did pre-1.5. By default, it expects an octet string as opposed to a dictionary that it will encode like a multipart form. So, for 1.5 and on, we have to be explicit about the multipart type and pre-encode the data. However, pre-1.5 Django expects a dictionary if the content type is multipart. So, the cleanest thing to do is explicitly handle the versions independently.
2012-09-07Fix Django master support.Mjumbe Wawatu Poe
- Explicitly encode PUT data as multipart, as Django 1.5 no longer does so by default in the test client
2012-09-07Merge pull request #253 from droptype/rf2-docfixesTom Christie
Fixes for the documentation styles
2012-09-07Merge pull request #252 from markotibold/docs-fixesTom Christie
Some minor docs fixes
2012-09-07Fix Django 1.3 compatibilityMjumbe Wawatu Poe
2012-09-07Add some missing imports.Marko Tibold
Fix some typos. Fix some indentation errors.
2012-09-07Merge pull request #249 from mjumbewu/restframework2Tom Christie
Implement simple token authentication
2012-09-07Get rid of the BaseToken abstract modelMjumbe Wawatu Poe
2012-09-07Move TokenAuthentication class into djangorestframework.authenticationMjumbe Wawatu Poe
2012-09-07Fix renderer tests.Mjumbe Wawatu Poe
- All MockViews return Response objects - Only one urlpatterns attribute in the module - Renamed `RendererIntegrationTests` to `RendererEndToEndTests`, as the former wasn't being run locally (but it was on Travis...dunno).
2012-09-07[docs] Fix typo, add link to Tom's Twitter profileAlec Perkins
2012-09-07Rename the default token class to "BasicToken"Mjumbe Wawatu Poe
2012-09-07Update docs for tokenauthMjumbe Wawatu Poe
2012-09-07[docs] Update jQuery to 1.8.1Alec Perkins
2012-09-07Use "Token" as the scheme for token authMjumbe Wawatu Poe
2012-09-07[docs] Add 'img' to static file processing.Alec Perkins
2012-09-07[docs] Spacing tweaks when getting responsive.Alec Perkins
2012-09-07Create a key by default if none is specifiedMjumbe Wawatu Poe
2012-09-07[docs] Move styles to own file. Fix table-of-contents positioning when ↵Alec Perkins
viewed on <767px screens. The fixed positioning of the ToC needs to be overridden with static, so that the ToC falls back into the flow of content and is sized correctly. Also, this prevents the actual page content from riding up behind the ToC and being obscured.
2012-09-07[docs] Add bootstrap-collapse plugin, fixing collapsing navbar.Alec Perkins
2012-09-07[docs] Update Bootstrap to 2.1.1Alec Perkins
2012-09-07Add a TokenAuthentication class in a sub-applicationMjumbe Wawatu Poe
2012-09-07Add basic serializer testsTom Christie
2012-09-07Add note re. browseable API and @api_view decoratorTom Christie
2012-09-07Remove dumbass meaningless testTom Christie
2012-09-07Add coverage to travis configTom Christie
2012-09-07Add travis configTom Christie
2012-09-07Basic support for format suffixesTom Christie
2012-09-07Fix method overloadingTom Christie
2012-09-07Fixing up browseable API for rest framework 2Tom Christie
2012-09-07Optional login/logout tags so browseable API will work without requiring ↵Tom Christie
auth views
2012-09-07Tidy upTom Christie
2012-09-07Filling out docs a bit moreTom Christie
2012-09-07Bits of cleanupTom Christie
2012-09-06TODO notes in docsTom Christie
2012-09-06Move settings stuff actually into settingsTom Christie
2012-09-06Move generic views into seperate moduleTom Christie
2012-09-06Add more settings to settings.pyTom Christie
2012-09-06Settings suppport importpathsTom Christie
2012-09-06Add support for request.authTom Christie
2012-09-06Refactoring some basicsTom Christie
2012-09-05Correct media type for jsonpTom Christie
2012-09-05Tidying up docsTom Christie
2012-09-05Flesh out authentication docsTom Christie
2012-09-05Make index consistentTom Christie
2012-09-05Fix up index suffixesTom Christie
2012-09-05Fix permission issuesTom Christie