aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/renderers.py
AgeCommit message (Collapse)Author
2013-04-30Add get_breadcrumbs hook to BrowseableAPIRenderer. Closes #733.Tom Christie
2013-04-26Deal with List/Instance suffixes for viewsetsTom Christie
2013-04-04Factor view names/descriptions out of View classTom Christie
2013-02-22assert package requirements are met for YAMLRendererTom Christie
2013-02-22Py3/2 compat fixes for uncode view names/descriptionsTom Christie
2013-02-22XML cleanupTom Christie
2013-02-22Fix name fallback for BrowsableAPIRendererTom Christie
2013-02-22Fixed UnicodeDecodeError on get_name and get_description methodsMichael Elovskikh
2013-02-22Polishing touches to #663Tom Christie
2013-02-15Added tabs between object form and generic content form on PUT/PATCH formMichael Elovskikh
Some extra behaviour to `BrowsableAPIRenderer` to handle PATCH form. Added PATCH button on generic content PUT form. Tabs between object form and generic content form on PUT/PATCH form wich are both allways visible now. Fix #570 Refs #591
2013-02-12Tidy up internal view permission checking logic.Tom Christie
Also document correctly - these methods are now public and will fall under the deprecation policy from now on.
2013-02-12New style object-level permission checksTom Christie
2013-02-06Purge naked excepts.Marc Tamlyn
Most of these had obvious exceptions which would be thrown. Some I'm not sure about but they should at least catch only Exception so as not to ignore SystemExit and other inappropriate Error classes.
2013-02-04Merge branch 'py3k' into 2.2Tom Christie
Conflicts: rest_framework/relations.py rest_framework/serializers.py rest_framework/tests/relations_hyperlink.py rest_framework/tests/relations_slug.py
2013-02-04Use request.QUERY_PARAMS internallyTom Christie
(instead of request.GET)
2013-02-01Merge branch 'p3k' of https://github.com/linovia/django-rest-framework into ↵Tom Christie
working Conflicts: rest_framework/authentication.py rest_framework/relations.py rest_framework/serializers.py rest_framework/settings.py rest_framework/tests/authentication.py rest_framework/tests/genericrelations.py rest_framework/tests/generics.py rest_framework/tests/relations_hyperlink.py rest_framework/tests/relations_nested.py rest_framework/tests/relations_pk.py rest_framework/tests/serializer.py
2013-01-30Merge branch 'master' into many-fieldsTom Christie
Conflicts: rest_framework/relations.py
2013-01-30Use many=True style for pk relations.Tom Christie
2013-01-05deprecate simplejsonJuan Riaza
2013-01-02Merge remote-tracking branch 'reference/py3k' into p3kXavier Ordoquy
2012-12-17Fix bug with M2M in browseable APITom Christie
2012-12-04fixed #469 - RegexField <--> BrowsableAPI BugStephan Groß
2012-12-02Merge remote-tracking branch 'reference/master' into p3kXavier Ordoquy
2012-12-02Fixed a bug with type and python 2.x compat.Xavier Ordoquy
2012-12-02trunk bug.Xavier Ordoquy
2012-11-29Merge branch 'custom-serializer-form-class' of ↵Marko Tibold
https://github.com/ludwigkraatz/django-rest-framework into mergebranch#390 Conflicts: rest_framework/fields.py rest_framework/renderers.py Manually solved
2012-11-22First passing test under p3k \o/Xavier Ordoquy
2012-11-21Tweak to work with serializer performance improvementTom Christie
2012-11-21added RegexField to field_mapping in BrowsableAPIRendererStephan Groß
2012-11-19Merge pull request #429 from minddust/minor_fixesTom Christie
updated to buildin status codes
2012-11-19updated to buildin status codesStephan Groß
2012-11-15Merge commit '3b258d69c92e9d9293f7c5d1690f0ca434e677e3' into ↵Marko Tibold
file_and_image_fields
2012-11-14fixed some typosStephan Groß
2012-11-14Properly render file inputs in the Browsable api.Marko Tibold
2012-11-08Fields specify what FormFieldClass should be used by BrowsableApiRendererLudwig Kraatz
added SerializerField Attribute "form_field_class" and defaults for existing Fields
2012-11-08Allowing custom Serializer Fields to have different BrowsableApiRendered ↵Ludwig Kraatz
Form Fields than CharField moved field_mapping from local serializer_to_form_fields var to BrowsableAPIRenderer class attr
2012-11-08moved field_mapping to be BrowsableAPIRenderer attrLudwig Kraatz
from local serializer_to_form_fields var to BrowsableAPIRenderer class attr in order to - allow customization when subclassing
2012-11-06Support for HTML error templates. Fixes #319.Tom Christie
2012-11-04Fix for bug #363: ChoiceField missing in renderers.pyMichael Shepanski
2012-11-01Merge masterTom Christie
2012-11-01Relational field support in browseable API.Tom Christie
Add slug relational fields. Add quickstart.
2012-11-01return choices as unicode and not string,Pavel Savchenko
might as well have jsonp return unicode
2012-10-30Final docs tweaks for 2.0Tom Christie
2012-10-28readonly -> read_onlyTom Christie
2012-10-28TemplateHTMLRenderer, StaticHTMLRendererTom Christie
2012-10-26Object-level permissions respected by Browseable APITom Christie
2012-10-22Merge commit '95a670de41a246777bc1e448dca8cc576b7b86ea' into ↵Marko Tibold
BrowsableAPIRenderer Conflicts: rest_framework/renderers.py - manually resolved conflict
2012-10-21Refactoring BrowsableAPIRendererMarko Tibold
2012-10-21Remove redundant check if method=='DELETE'Marko Tibold
2012-10-21Remove `initial` kwarg, add `default`.Tom Christie