aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
AgeCommit message (Collapse)Author
2015-01-06Fix compatibility comment regarding OrderedDictRyan Gaffney
2015-01-05Pass init arguments through to serializer from pagination serializer.Tom Christie
Closes #2355. Normally a serializer won't need these arguments on __init__, but if a user has customized __init__ they may expect them to be available.
2015-01-05Udpate docstringTom Christie
2015-01-05required=False allows omission of value for output. Closes #2342Tom 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-28Update copryright for 2015. Closes #2247.Tom Christie
2014-12-28Support namespaced router URLs with DefaultRouter.Tom Christie
2014-12-28Only pass max_length for CharField. Closes #2317.Tom Christie
2014-12-26Paginated serializers should get context.Tom Christie
2014-12-24Merge pull request #2340 from shtouff/fix-htmlform-textareaTom Christie
Use textarea input for 'models.TextField'.
2014-12-23Remove ‘/‘ from inside variable block {{ }}Andrew Seier
manage.py compress —force causes a warning here.
2014-12-23Remove commented code (warning during compression)Andrew Seier
manage.py compress —force causes a warning here.
2014-12-22fix the way to use textarea rather than input with models.TextFieldRemi Paulmier
2014-12-20Merge pull request #2331 from ↵Tom Christie
tomchristie/use-custom-list-serializer-for-pagination Use custom ListSerializer for pagination if required.
2014-12-20Merge pull request #2330 from tomchristie/better-blank-html-behaviorTom Christie
Better behavior with null and '' for blank HTML fields.
2014-12-20Use custom ListSerializer for pagination if one is specified on the serializer.Tom Christie
2014-12-20Better behaviour with null and '' for blank HTML fields.Tom Christie
2014-12-19Merge pull request #2010 from tanwanirahul/masterTom Christie
Ability to customize method names without creating a custom router
2014-12-19depth should reduce by one on each nesting level. Closes #2287.Tom Christie
2014-12-19Change decorator attribute name to url_path per suggestionstanwanirahul
2014-12-18Assert fields in `exclude` are model fieldsTymur Maryokhin
2014-12-18YAML encoder fix for 3.0 serializers.Tom Christie
2014-12-18Fixes for behavior with empty HTML fields.Tom Christie
2014-12-17Merge pull request #2297 from tomchristie/version-3.0.23.0.2Tom Christie
Version 3.0.2
2014-12-17Version 3.0.2Tom Christie
2014-12-17Merge pull request #2294 from tomchristie/fix-empty-html-values-with-defaultTom Christie
Fix empty HTML values when a default is provided.
2014-12-17Fix empty HTML values when a default is provided.Tom Christie
2014-12-17Serializer API restrictions.Tom Christie
2014-12-17str() -> six.text_type(). Closes #2290.Tom Christie
2014-12-17Ensure request.auth is available to response middleware.Tom Christie
2014-12-17Merge pull request #2155 from martinmaillard/set-user-on-wrapped-requestTom Christie
Set authenticated user on wrapped request
2014-12-15Minor test cleanupTom Christie
2014-12-15Merge pull request #2279 from tomchristie/fix-serializer-repr-unicode-bugTom Christie
Use unicode internally everywhere for 'repr'.
2014-12-15Remove erronous printTom Christie
2014-12-15Use unicode internally everywhere for 'repr'Tom Christie
2014-12-15Better messaging for 'Field.to_representation'. Closes #2271.Tom Christie
2014-12-13Merge pull request #2267 from tomchristie/better-misconfigured-serializer-errorsTom Christie
Better errors when serializer has incorrectly named field.
2014-12-13Better errors when serializer has incorrectly named field.Tom Christie
2014-12-13Improve check for nested writesTom Christie
2014-12-12Client.logout() also clears any force_authenticateTom Christie
2014-12-12Update CharField default min_length message.Peter Schmidt
2014-12-11Merge pull request #2251 from linovia/version/3.0.13.0.1Tom Christie
Release notes & version 3.0.1
2014-12-11Version 3.0.1Xavier Ordoquy
2014-12-10Merge pull request #2242 from tomchristie/hyperlinked-pk-optimizationTom Christie
Hyperlinked PK optimization.
2014-12-10Move commentTom Christie
2014-12-10Drop get_iterable()Tom Christie
2014-12-10Optimizations play nicely with select_related, prefetch_relatedTom Christie
2014-12-10Merge pull request #2241 from IvanAlegre/patch-1Tom Christie
Update serializers.py
2014-12-10Improve field lookup behavior for dicts/mappings. Closes #2244. Closes #2243.Tom Christie