aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
AgeCommit message (Expand)Author
2014-12-03Escape \u2028 and \u2029 in JSON output.Tom Christie
2014-12-02BindingDict inherits from collections.MutableMapping. Closes #2135.Tom Christie
2014-12-02FileUploadParser. Raising StopFutureHandlers removes any handlers not yet run...Tom Christie
2014-12-02Minor tweaks for helpful message on Model.objects.create() failure.Tom Christie
2014-12-02Merge branch 'fixes/2013' of git://github.com/gregmuellegger/django-rest-fram...Tom Christie
2014-12-02Raise assertion error if calling .save() on a serializer with errors. Closes ...Tom Christie
2014-12-01Minor validtors tweak3.0.0Tom Christie
2014-12-01More descriptive docstring on ModelSerializerTom Christie
2014-12-01Support Django's core ValidationError for backwards compat. Refs #2145.Tom Christie
2014-11-28@api_view defaults to allowing GETTom Christie
2014-11-28Use ImproperlyConfigured when model meta lookup failsTom Christie
2014-11-28Merge pull request #2086 from beck/doug/blow-up-with-bad-modelsTom Christie
2014-11-28Merge pull request #2143 from linovia/bugfix/1850Tom Christie
2014-11-28Removed unused importTymur Maryokhin
2014-11-28Update token auth view. Closes #2151.Tymur Maryokhin
2014-11-28Merge branch '3.0-docs'Tom Christie
2014-11-28Moar docs. Amazing.Tom Christie
2014-11-27Drop Field.validateTom Christie
2014-11-27Drop transform_<field_name>Tom Christie
2014-11-27Fix for nested attribute lookups where one is a callableTom Christie
2014-11-27Support callable attributes in dotted source. Closes #2142.Tom Christie
2014-11-26Merge remote-tracking branch 'reference/master' into bugfix/1850Xavier Ordoquy
2014-11-26Tweak to 3.0 relationship docsTom Christie
2014-11-26Docstring for 'many_init'Tom Christie
2014-11-25request.DATA, request.FILES -> request.dataTom Christie
2014-11-25Don't use default_empty_html value for partial updates. Closes #2118.Tom Christie
2014-11-25Documentation in 'many_init' docstring. Refs #2120.Tom Christie
2014-11-25Style tweaks to login template.Tom Christie
2014-11-25Merge branch 'master' of https://github.com/tomchristie/django-rest-frameworkTom Christie
2014-11-25Lowercase HTML label tag. Refs #2121.Tom Christie
2014-11-21removed the whole footer sectionAndreas Bernacca
2014-11-21remove sponsored by dabappsAndreas Bernacca
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-20Add --- null option for selects. Closes #2096.Tom Christie
2014-11-20Fixes for defaulting empty HTML fields to '', None, or empty.Tom Christie
2014-11-20Make _force_text_recursive private.Tom Christie
2014-11-20Fix non-determanistic default bug. Closes #2099.Tom Christie
2014-11-19Fix non-determanistic unique constraint mapping. Refs #2092.Tom Christie
2014-11-19Minor fix for #2092.Tom Christie
2014-11-19Apply defaults and requiredness to unique_together fields. Closes #2092.Tom Christie
2014-11-19Use translatable error strings. Refs #2063.Tom Christie
2014-11-19Allow blank choices to render. Closes #2071.Tom Christie
2014-11-18List serializer no explicitly renders as 'not supported for HTML input'Tom Christie
2014-11-18Fix byte decode error rendering 'display_name' with OPTIONS. Closes #2084Tom 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-18Note removal of 'save_object' and fail loudly if it existsTom Christie
2014-11-18Ensure `_resolve_model` does not return `None`Doug Beck