aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/fields.py
AgeCommit message (Collapse)Author
2015-01-30Merge masterTom Christie
2015-01-23Added DictField and support for HStoreField.Tom Christie
2015-01-23Added UUIDField.Tom Christie
2015-01-09Merge pull request #2373 from jakul/document-translations-3.1Tom Christie
Document how to translate DRF error messages (version 3.1)
2015-01-07swap backticks for double quotesCraig Blaszczyk
2015-01-07prefer single quotes in source and double quotes in user visible strings; ↵Craig Blaszczyk
add some missing full stops to user visible strings
2015-01-07use double quotes in user messagesCraig Blaszczyk
2015-01-07use double quotes for user visible strings; end user visible strings in full ↵Craig Blaszczyk
stops; add some missing translation tags
2015-01-05required=False allows omission of value for output. Closes #2342Tom Christie
2015-01-02update error messages for language and consistencyCraig Blaszczyk
2014-12-20Better behaviour with null and '' for blank HTML fields.Tom Christie
2014-12-18Fixes for behavior with empty HTML fields.Tom Christie
2014-12-17Fix empty HTML values when a default is provided.Tom Christie
2014-12-15Merge pull request #2279 from tomchristie/fix-serializer-repr-unicode-bugTom Christie
Use unicode internally everywhere for 'repr'.
2014-12-15Use unicode internally everywhere for 'repr'Tom Christie
2014-12-15Better messaging for 'Field.to_representation'. Closes #2271.Tom Christie
2014-12-13Better errors when serializer has incorrectly named field.Tom Christie
2014-12-12Update CharField default min_length message.Peter Schmidt
2014-12-10Improve field lookup behavior for dicts/mappings. Closes #2244. Closes #2243.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-08Added ListSerializer.validate(). Closes #2168.Tom Christie
2014-12-04Removed custom StringIO, force_text, smart_text compatTymur Maryokhin
2014-11-27Drop Field.validateTom 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-25Don't use default_empty_html value for partial updates. Closes #2118.Tom Christie
2014-11-20Fixes for defaulting empty HTML fields to '', None, or empty.Tom Christie
2014-11-19Allow blank choices to render. Closes #2071.Tom Christie
2014-11-17Docs for advanced default argument usage. Closes #1945Tom Christie
2014-11-10Update fields.pyTom Christie
2014-11-07ModelField fix. Closes #2018.Tom Christie
2014-11-06Fixed base_url duplication in FileField.use_urlTymur Maryokhin
Django already joins base_url when constructing FileField.url
2014-11-06Drop usage of SortedDict. Closes #2027.Tom Christie
2014-11-06Support for bulk create. Closes #1965.Tom Christie
2014-11-05ModelField should support max_length. Closes #2018.Tom Christie
2014-11-05Fix failing copy of fields when RegexValidator is used. Closes #1954.Tom Christie
2014-11-05Support None if initial part of dotted lookup returns None. Closes #1223.Tom Christie
2014-10-31Lazy loading of fields and validators. Closes #1963.Tom Christie
2014-10-31Guard against malicious string inputs for numbers. Closes #1903.Tom Christie
2014-10-28unique_for_date/unique_for_month/unique_for_yearTom Christie
2014-10-22First pass at unique_for_date, unique_for_month, unique_for_yearTom Christie
2014-10-17Use serializers.ValidationErrorTom Christie
2014-10-16get_attribute method on fieldsTom Christie
2014-10-15Support fields that reference a simple callableTom Christie
2014-10-10exceptions.ValidationFailed, not Django's ValidationErrorTom Christie
2014-10-09First pass on nested serializers in HTMLTom Christie
2014-10-08Limit blank string -> None to just be on relational fieldsTom Christie
2014-10-08Support empty file fieldsTom Christie
2014-10-08Tests for relational fieldsTom Christie
2014-10-07Enforce uniqueness validation for relational fieldsTom Christie