aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/renderers.py
AgeCommit message (Collapse)Author
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
2014-08-11Refactor JSONRenderer slightly for easier overridingTom Christie
2014-04-10Allow unicode YAML dump with UnicodeYAMLRendererMiro Hrončok
Fixes #1519
2014-03-04Update documentation of render methods (obj to data)David Larlet
2014-02-26Display the media type of the API response on the browsable APIKeats
2014-01-31Use bytes BOUNDARY on django < 1.5Ian Foote
Django's encode_multipart was updated in django 1.5 to work internally with unicode and convert to bytes. In django >= 1.5 we therefore need to pass the BOUNDARY as unicode. In django < 1.5 we still need to pass it as bytes.
2013-12-09Catch and mask ParseErrors that occur during rendering of the BrowsableAPI.Tom Christie
2013-10-02Fix rendering of forms and add error rendering on HTML formTom Christie
2013-10-02Serializers can now be rendered directly to HTMLTom Christie
2013-09-26Allow .template_name attribute specified on view. Closes #1000Tom Christie
2013-09-14Refs #1109 -- Update docs. Integrate changes from feedback.Tai Lee
2013-09-13Fixed #1105 -- Add hook for custom context in `BrowsableAPIRenderer`.Tai Lee
Replace hard coded response status check with `allow_form` context variable, so that it can be overridden in a custom renderer class.
2013-08-30Drop broken placeholder serializations.Tom Christie
2013-08-29Fix indenting on raw data formsTom Christie
2013-08-29Include serialized content in raw data form.Tom Christie
2013-08-29Add `override_method` context manager and cleanup.Tom Christie
2013-08-28Simplifying raw data renderering supportTom Christie
2013-08-27First hacky pass at displaying raw dataTom Christie
2013-08-23Extra docsTom Christie
2013-08-23Merge branch 'master' into html-form-rendererTom Christie
2013-08-23JSON responses should not include a charsetTom Christie
2013-08-23Adding standard renderer attributes and documentingTom Christie
2013-08-23Cleanup and dealing with empty form data.Tom Christie
2013-08-23First pass at HTMLFormRendererTom Christie
2013-08-17Improved view/description function settingChristopher Paolini
Now supports each View having its own name and description function and overriding the global default.
2013-06-29Added APIClient.authenticate()Tom Christie
2013-06-28Added APIRequestFactoryTom Christie
2013-06-05Remove ConfigurationError in favor of Django's ImproperlyConfiguredTom Christie
2013-05-24Version 2.3.42.3.4Tom Christie
2013-05-22Last bits of charset sorting-out-nessTom Christie
2013-05-21Merge and styling fixesTom Christie
2013-05-20Fix charset issuesTom Christie
2013-05-18Only use object permissions in browsable api form generation if an object existsTom Christie
2013-05-18Enforce object permissions check when rendering forms in browseable APITom Christie
2013-05-18Fix broken 'binary content' in browseable APITom Christie
2013-05-18Correct charset on UnicodeJSONRendererTom Christie
2013-05-18Merge branch 'master' of https://github.com/tomchristie/django-rest-frameworkTom Christie
2013-05-18Added proper charset supportTom Christie
2013-05-18Better checking if the content can be printable in the BrowsableAPIPablo Recio
2013-05-18Adds UnicodeJSONRenderer which doesn't ensure asciiPablo Recio
2013-05-18Adding a class attribute into JSONRenderer for ensuring ascii, and using it ↵Pablo Recio
consistently
2013-05-18charset param gets now appended to response's Content-Type. Closes #807Karol Majta
2013-05-18Turns out label and help_text are not always thereMarkus Törnqvist
2013-05-18Renderer uses form field's label and help, not attribute nameMarkus Törnqvist
2013-05-18Forms in Broseable API support dynamic serializers based on request methodTom Christie
2013-05-05Merge masterTom Christie
2013-05-01Example and spelling fixes. Change "browseable" to "browsable" for consistency.Victor Shih
2013-04-30Add get_breadcrumbs hook to BrowseableAPIRenderer. Closes #733.Tom Christie