aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
AgeCommit message (Collapse)Author
2014-11-06Tests & fixes for list serializationTom Christie
2014-11-06Drop usage of SortedDict. Closes #2027.Tom Christie
2014-11-06Fix exception style for py3Tom Christie
2014-11-06More precise assertion error for bulk updateTom Christie
2014-11-06Support for bulk create. Closes #1965.Tom Christie
2014-11-05ModelField should support max_length. Closes #2018.Tom Christie
2014-11-05Pass through kwargs to both Serializer and ListSerializerTom Christie
2014-11-05Minor cleanupTom Christie
2014-11-05Copy accepted_renderer and accepted_media_type when cloing a request. Closes ↵Tom Christie
#1950.
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-11-04add glyphicons font filesAron Jones
2014-11-03Use invalid_data key for error message. Closes #2002.Tom Christie
2014-11-03PUT as create docs, and move mixin out to external gistTom Christie
2014-11-03Merge masterTom Christie
2014-11-03Fix URL escaping2.4.4Tom Christie
2014-11-03Version 2.4.4Tom Christie
2014-11-03Merge branch 'master' into version-3.0Tom Christie
2014-11-03Properly escape URLs when replacing query parameterTom Christie
2014-10-31Merge pull request #1963 from carljm/lazy-fieldsTom Christie
Set up serializer fields lazily on-demand.
2014-10-31Lazy loading of fields and validators. Closes #1963.Tom Christie
2014-10-31Merge branch 'master' into version-3.0Tom Christie
2014-10-31Merge pull request #1922 from JonesChi/fix_followTom Christie
Fix follow does not work on get of APIRequestFactory
2014-10-31Guard against malicious string inputs for numbers. Closes #1903.Tom Christie
2014-10-31Merge pull request #1785 from gdoermann/masterTom Christie
Frameworks throws AssertionError saying you cannot set required=True and...
2014-10-31Merge masterTom Christie
2014-10-31Update to bootstrap 3. Closes #1085Tom Christie
2014-10-31Validator documentation and tweaksTom Christie
2014-10-30Ensure json.dumps(separators=...) works on both 2.x and 3.xTom Christie
2014-10-28unique_for_date/unique_for_month/unique_for_yearTom Christie
2014-10-22unique_for_month, unique_for_yearTom Christie
2014-10-22First pass at unique_for_date, unique_for_month, unique_for_yearTom Christie
2014-10-22.validate() can raise field errors or non-field errorsTom Christie
2014-10-20Used Django utils SortedDict instead of stdlib's OrderedDict forErik Wickstrom
wider compatability.
2014-10-19Maintain order of views on router for api root view.Erik Wickstrom
2014-10-17Set up serializer fields lazily on-demand.Carl Meyer
This avoids AppRegistryNotReady problems in Django 1.7 with nested serializers, which are instantiated at import time, possibly before Django's app registry is fully populated.
2014-10-17Use serializers.ValidationErrorTom Christie
2014-10-16TweakTom Christie
2014-10-16Performance for PK fieldsTom Christie
2014-10-16get_attribute method on fieldsTom Christie
2014-10-16Stricter checking for failure cases.Tom Christie
2014-10-15Add a keys method to BindingDictMarty Alchin
2014-10-15Support fields that reference a simple callableTom Christie
2014-10-15Moar form stylingTom Christie
2014-10-15Moar form stylingTom Christie
2014-10-15Reorganize to use template_pack in form renderingTom Christie
2014-10-15Drop template includesTom Christie
2014-10-15Merge branch 'version-3.0' of ↵Tom Christie
https://github.com/tomchristie/django-rest-framework into version-3.0
2014-10-15Fix 'lookup_field' on ModelSerializer. Closes #1944.Tom Christie
2014-10-12Rename `preform_update` to `perform_update`Andy Freeland