aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/renderers.py
AgeCommit message (Collapse)Author
2015-03-22Make BrowsableAPIRenderer use serializer_class when presentmdoglio
2015-02-20Fixes HiddenField being rendered in HTMLFormRendererRubén Durá Tarí
2015-02-17Fixes for latest pep8 updates. Refs #2563.Tom Christie
2015-01-23Merge masterTom Christie
2015-01-21Do not render HTML output for hidden fields. Closes #2410.Tom Christie
2015-01-19Merge masterTom Christie
2015-01-19Drop trailing whitespace on indented JSON output. Closes #2429.Tom Christie
2015-01-19NotImplemented is not an exceptionAlexander Dutton
`NotImplemented` is a singleton object, not an exception. You should be raising `NotImplementedError` here instead.
2015-01-15Tweaks, and add pagination controls for offset/limit.Tom Christie
2015-01-14Include pagination control in browsable APITom Christie
2014-12-18Merge branch 'master' into version-3.1Tom Christie
2014-12-17Serializer API restrictions.Tom Christie
2014-12-12Merge masterTom Christie
2014-12-08Don't use 'instance' argument in rendering form for paginated data. Closes ↵Tom Christie
#2205.
2014-12-05Merge pull request #2200 from maryokhin/masterTom Christie
Clean up compat code
2014-12-05Merge pull request #2195 from tomchristie/tomchristie-escape-u2028-u2029-jsonTom Christie
Escape \u2028 and \u2029 in JSON output.
2014-12-05Removed unused imports, pep8 fixes, typo fixesTymur Maryokhin
2014-12-04Merge branch 'master' of github.com:tomchristie/django-rest-frameworkTymur Maryokhin
2014-12-04Merge pull request #2172 from kchange/masterTom Christie
Added missing default style for FileField
2014-12-04Removed custom StringIO, force_text, smart_text compatTymur Maryokhin
2014-12-03MergeTom Christie
2014-12-03MergeTom Christie
2014-12-03Escape \u2028 and \u2029 in JSON output.Tom Christie
Closes #2169.
2014-11-29Remove XML support from coreJosé Padilla
2014-11-29Remove JSONP support from coreJosé Padilla
2014-11-29Remove YAML support from coreJosé Padilla
2014-11-20Fix rendering HTML form when API error raised. Closes #2103.3.0-betaTom Christie
2014-11-20Py3 fix - .items is not a list.Tom Christie
2014-11-20Resolve PUT and POST buttons in browsable APITom Christie
2014-11-18Add comment ref #2089Tom Christie
2014-11-18Only pass instance to form for PUT and PATCH. Closes #2073.Tom Christie
2014-11-13Use select inputs for relationships. Closes #2058.Tom Christie
2014-11-12Added missing default style for FileFieldKevin Chang
2014-11-07Fix initial data on serializers to reflect writable fieldsTom Christie
2014-11-07Prevent re-running deserialization. Closes #1975.Tom Christie
2014-10-30Ensure json.dumps(separators=...) works on both 2.x and 3.xTom Christie
2014-10-16TweakTom Christie
2014-10-15Support fields that reference a simple callableTom Christie
2014-10-15Reorganize to use template_pack in form renderingTom Christie
2014-10-09First pass on nested serializers in HTMLTom Christie
2014-10-02First pass on incorperating the form rendering into the browsable APITom Christie
2014-10-01More forms supportTom Christie
2014-10-01First pass at HTML form renderingTom Christie
2014-09-26request.data attributeTom Christie
2014-09-12UNICODE_JSON and COMPACT_JSON settingsTom Christie
2014-09-02Add relations and get tests runningTom Christie
2014-08-29First passTom Christie
2014-08-19Drop six from compat. 1.4.2 is now the lowest supported version.Tom Christie
2014-08-19Resolve linting issuesTom Christie
2014-08-19Code linting and added runtests.pyTom Christie