aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/utils
AgeCommit message (Collapse)Author
2015-02-17Fixes for latest pep8 updates. Refs #2563.Tom Christie
2015-01-30Merge masterTom Christie
2015-01-23Support assignment in ClassLookupDictTom Christie
2015-01-23Merge masterTom Christie
2015-01-23Work around meta API differencesTom Christie
2015-01-21Make ReturnDict cachable. Closes #2360.Tom Christie
2015-01-21Merge masterTom Christie
2015-01-21Allow missing fields option for inherited serializers. Closes #2388.Tom Christie
2015-01-19Merge masterTom Christie
2015-01-19ReturnDict and ReturnList repr as standard dict/list. Closes #2421.Tom Christie
2015-01-19Handle UUID objects in JSONEncoder. Closes #2433.Tom Christie
2015-01-19Fix timedelta JSON serialization on Python 2.6.Fabien Bochu
2015-01-16Fix compat issuesTom Christie
2015-01-14Include paragraph around view description in browable APITom Christie
2015-01-14Include paragraph around view description in browable APITom Christie
2015-01-05Merge branch 'master' into version-3.1Tom Christie
2015-01-05Ensure no invalid min_length/min_value/max_value arguments. Closes #2369.Tom Christie
2014-12-29First pass at refactoring get_field_info in utils.model_metaKyle Valade
2014-12-28Only pass max_length for CharField. Closes #2317.Tom Christie
2014-12-22fix the way to use textarea rather than input with models.TextFieldRemi Paulmier
2014-12-19Final bits of docs for ModelSerializer fields APImodel-serializer-apiTom Christie
2014-12-18YAML encoder fix for 3.0 serializers.Tom Christie
2014-12-15Merge masterTom Christie
2014-12-15Remove erronous printTom Christie
2014-12-15Use unicode internally everywhere for 'repr'Tom Christie
2014-12-15Merge branch 'jpadilla-exception-handler-context' into version-3.1Tom Christie
2014-12-15First pass at serializer repr bugTom Christie
2014-12-12Merge masterTom Christie
2014-12-09Copy model field validators, don't reuse the same list.Tom Christie
2014-12-09Add allow_blank for ChoiceField #2184José Padilla
This makes a ChoiceField optional in HTML if model field has `blank=True` set.
2014-12-04Removed custom StringIO, force_text, smart_text compatTymur Maryokhin
2014-12-04Removed custom python_2_unicode_compatible. Closes #2183Tymur Maryokhin
2014-12-02BindingDict inherits from collections.MutableMapping. Closes #2135.Tom Christie
2014-11-29Remove YAML support from coreJosé Padilla
2014-11-28Use ImproperlyConfigured when model meta lookup failsTom Christie
2014-11-18Ensure `_resolve_model` does not return `None`Doug Beck
2014-11-13required=False for nullable relationshipsTom Christie
2014-11-13Merge branch 'master' of https://github.com/tomchristie/django-rest-frameworkTom Christie
2014-11-13Model fields with .blank or .null now map to required=False. Closes #2017. ↵Tom Christie
Closes #2021.
2014-11-12Update html.pyTom Christie
2014-11-12Update html.pyTom Christie
2014-11-07.copy() for serializer .data and .errors dictionariesTom Christie
2014-11-07Minor tweaksTom Christie
2014-11-07Serializer cleanupTom Christie
2014-11-06Tests & fixes for list serializationTom Christie
2014-11-06Drop usage of SortedDict. Closes #2027.Tom Christie
2014-10-31Lazy loading of fields and validators. Closes #1963.Tom Christie
2014-10-09Merge pull request #1920 from thedrow/topic/encoder-improvementsTom Christie
The JSON encoder now uses tuples instead of lists
2014-10-08More gradual deprecationTom Christie
2014-10-07Enforce uniqueness validation for relational fieldsTom Christie