aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
AgeCommit message (Collapse)Author
2015-01-19Fix timedelta JSON serialization on Python 2.6.Fabien Bochu
2015-01-14Preserve ordering on relationship drop-down choices. Closes #2408.Tom Christie
2015-01-12Merge pull request #2399 from askholme/masterTom Christie
Fix for FileUploadParser with 3.x
2015-01-12Fix error when NUM_PROXIES is greater than oneJosé Padilla
2015-01-11Fix ident format when using HTTP_X_FORWARDED_FORJosé Padilla
If NUM_PROXIES setting is set to None, HTTP_X_FORWARDED_FOR might be used as is, which might contain spaces and cause errors on cache backends like memcached.
2015-01-10Make FileUploadParser work with standard django APIAsk Holme
Output from parsers ends up in a Django MergeDict and they exists elements to be dicts - not None
2015-01-08Merge remote-tracking branch 'origin/master' into release/3.0.3Xavier Ordoquy
2015-01-08Ammend docstring to use python2/3 compatible example.Tom Christie
2015-01-08Ensure urlparse is not publically exposed in compat.py - less chance of ↵Tom Christie
accidental conflict.
2015-01-07Bumped the version to 3.0.3.Xavier Ordoquy
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