aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-09-13Tweak copyTom Christie
2012-09-13Improve throttles and docsTom Christie
2012-09-13Tweak throttling/permissions/auth docsTom Christie
2012-09-12Tweaks to Token authTom Christie
2012-09-12GitHub link in toolbarTom Christie
2012-09-12Merge branch 'restframework2' of ↵Tom Christie
https://github.com/tomchristie/django-rest-framework into restframework2
2012-09-12Updating docsTom Christie
2012-09-11Merge pull request #259 from j4mie/rename-propertiesTom Christie
Better naming for properties on views, requests and responses
2012-09-11Better naming for properties on views, requests and responsesJamie Matthews
renderers is now renderer_classes parsers is now parser_classes authentication is now authentication_classes
2012-09-09Whoops, forgot to explain these.Alec Perkins
2012-09-09Reference-style links. Much cleaner.Alec Perkins
2012-09-09Browsable API doc topicAlec Perkins
2012-09-09Tweak the spacing of the form actions.Alec Perkins
2012-09-09Inverse, fixed navbar. Block for easily modifying navbar style.Alec Perkins
2012-09-09Add horizontal scrolling to pre blocks.Alec Perkins
2012-09-09Add prettify syntax highlighting to resource info.Alec Perkins
2012-09-09Styling of POST, PUT forms. Add add_class filter.Alec Perkins
2012-09-09Merge 'tomchristie/restframework2' into 'browsable-bootstrap'Alec Perkins
2012-09-09Compacting, moving GET button up to OPTIONSAlec Perkins
2012-09-09Collapsing menu, travis and github badges, horizontal scrolling code on overflowTom Christie
2012-09-08Hide toc overflowTom Christie
2012-09-08Merge branch 'restframework2' of ↵Tom Christie
https://github.com/tomchristie/django-rest-framework into restframework2
2012-09-08Move quote below title for consistencyTom Christie
2012-09-08Merge pull request #256 from markotibold/put-post-deleteTom Christie
Re-enable PUT/POST/DELETE in the browsable api
2012-09-08Links to source files in docsTom Christie
2012-09-08Fix failing test.Marko Tibold
2012-09-08Don't fill in the form after a DELETE.Marko Tibold
2012-09-08`error_data` -> `errors`Marko Tibold
Prefill form for instance view.
2012-09-08Add block around Bootstrap styles for easy theming.Alec Perkins
Instead of overriding the theme in the `extra_style` block, it can be replaced directly. This avoids having to load unnecessary styles.
2012-09-08Code highlighting in docsTom Christie
2012-09-08Whoops, forgot the extrabody block.Alec Perkins
2012-09-08Fields are showing up again. Still WIP.Marko Tibold
2012-09-08Disable non-functional methodsAlec Perkins
2012-09-08Minor style adjustmentAlec Perkins
2012-09-08Link to github accounts in creditsTom Christie
2012-09-08Added @alecperkins.Tom Christie
2012-09-07Merge pull request #251 from mjumbewu/1.3-supportTom Christie
Fix Django 1.3 compatibility
2012-09-08Disable OPTIONS if method isn't allowedAlec Perkins
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-07Add information about the request.Alec Perkins
Add link in footer for some visual balance. Tighten up styling.
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-07Missing status code in .txt version of APIAlec Perkins
2012-09-07Merge pull request #252 from markotibold/docs-fixesTom Christie
Some minor docs fixes
2012-09-07Add tooltips to other methodsAlec Perkins
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-07Apply Bootstrap to in-page request forms.Alec Perkins
Includes tooltips using the title attributes.
2012-09-07Applying Bootstrap to breadcrumbs, page headerAlec Perkins
2012-09-07Merge pull request #249 from mjumbewu/restframework2Tom Christie
Implement simple token authentication