Commit 215de9af by Tom Christie

Tidy up

parent da5a6243
...@@ -25,6 +25,7 @@ DEFAULTS = { ...@@ -25,6 +25,7 @@ DEFAULTS = {
'DEFAULT_RENDERERS': ( 'DEFAULT_RENDERERS': (
'djangorestframework.renderers.JSONRenderer', 'djangorestframework.renderers.JSONRenderer',
'djangorestframework.renderers.JSONPRenderer', 'djangorestframework.renderers.JSONPRenderer',
'djangorestframework.renderers.DocumentingHTMLRenderer',
'djangorestframework.renderers.DocumentingPlainTextRenderer', 'djangorestframework.renderers.DocumentingPlainTextRenderer',
), ),
'DEFAULT_PARSERS': ( 'DEFAULT_PARSERS': (
...@@ -44,7 +45,9 @@ DEFAULTS = { ...@@ -44,7 +45,9 @@ DEFAULTS = {
'FORM_METHOD_OVERRIDE': '_method', 'FORM_METHOD_OVERRIDE': '_method',
'FORM_CONTENT_OVERRIDE': '_content', 'FORM_CONTENT_OVERRIDE': '_content',
'FORM_CONTENTTYPE_OVERRIDE': '_content_type', 'FORM_CONTENTTYPE_OVERRIDE': '_content_type',
'URL_ACCEPT_OVERRIDE': '_accept' 'URL_ACCEPT_OVERRIDE': '_accept',
'FORMAT_SUFFIX_KWARG': 'format'
} }
......
# Contributing to REST framework # Contributing to REST framework
## Accessing settings
**Describe api_settings**
## Managing compatibility issues ## Managing compatibility issues
**Describe compat module** **Describe compat module**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment