aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
AgeCommit message (Collapse)Author
2014-02-26Demonstrate problem post/put'ing serialized data that contains 'None'Dustin Farris
2014-02-18Tweak comment wrapping.Tom Christie
2014-02-18Remove unnecessary elseIan Foote
2014-02-18Refactor UpdateModelMixin.updateIan Foote
Reduce nesting, return early in error cases.
2014-02-18Merge remote-tracking branch 'reference/master' into feature/django_1_7Xavier Ordoquy
2014-02-18Moved the python_2_unicode_compatible into compat module.Xavier Ordoquy
2014-02-13Merge pull request #1397 from amezhenin/issue_1386Tom Christie
update regex for matching URLs, fixes issue #1386
2014-02-13wrapper for smart_urlquote, issue #1386Artem Mezhenin
2014-02-13(I hope) tests are fixed, issue #1386Artem Mezhenin
2014-02-13change regex back, issue #1386Artem Mezhenin
2014-02-11Test and fix for #1210. World's lowest hanging fruit.Carlton Gibson
2014-02-11Test and quick fix for #1257Carlton Gibson
2014-02-10Replace 'detail' with 'default_detail' in Exceptions guide and APIException ↵Hassan Shamim
class docstring.
2014-02-09issue #1386Artem Mezhenin
* regex for matching URLs was rewritten * added unittests
2014-02-09update regex for matching URLs, fixes issue #1386Artem Mezhenin
2014-02-04Generate random token directlyMatthew King
2014-02-04Fixes typo (Implicit instead of Implict).juroe
2014-01-31Merge pull request #1377 from Ian-Foote/force_bytesTom Christie
Import force_bytes on django >= 1.5
2014-01-31Moving models back to test_serializer.Xavier Ordoquy
2014-01-31Use bytes BOUNDARY on django < 1.5Ian Foote
Django's encode_multipart was updated in django 1.5 to work internally with unicode and convert to bytes. In django >= 1.5 we therefore need to pass the BOUNDARY as unicode. In django < 1.5 we still need to pass it as bytes.
2014-01-30Only add 'Vary: Accept' header when there is more than one possible renderer.Tom Christie
2014-01-30Remove TODO note, since it hasn't been TODONE.Tom Christie
2014-01-30Fixed the object representation in order to pass the tests.Xavier Ordoquy
2014-01-30Refactoring due to the previous commit.Xavier Ordoquy
2014-01-30Make factory.get work with Django 1.7Xavier Ordoquy
2014-01-28Define the upload_to for file fields.Xavier Ordoquy
2014-01-28wsgi_request is now added to the response so we have to remove it before ↵Xavier Ordoquy
pickling the response.
2014-01-28Django 1.7 has new 404 and 403 body messages.Xavier Ordoquy
2014-01-28Mock updated as Django’s get_template now has two arguments.Xavier Ordoquy
2014-01-28Don’t rely on Django’s get as it breaks for 1.7Xavier Ordoquy
2014-01-28Moved all the reused models to the models files to avoid conflicts with the ↵Xavier Ordoquy
refactored apps.
2014-01-28Add file upload test for APIRequestFactoryIan Foote
Remove test_compat
2014-01-28Import force_bytes on django >= 1.5Ian Foote
2014-01-28Don’t forget to setup django for 1.7+ as it’s not a regular django command.Xavier Ordoquy
2014-01-25Fix typo in docstring for post_delete hook.Rodolfo Henrique Carvalho
2014-01-17Merge pull request #1361 from ross/x_method_overrideTom Christie
always obey X-HTTP-METHOD-OVERRIDE header
2014-01-17always obey X-HTTP-METHOD-OVERRIDE headerRoss McFarland
required to support old flash/flex clients that need to do everything as GET requests (apparently to allow for any error handlings)
2014-01-17Encode django QuerySets to lists and not dicts in JSONEncoderMathieu Pillard
2014-01-15Security update to OrderingFilter2.3.12Tom Christie
2014-01-15Nicer write_only fields implementation. Closes #1355Tom Christie
2014-01-14Merge branch 'master' of git://github.com/sprymak/django-rest-framework into ↵Tom Christie
sprymak-master
2014-01-14Use api_settings.URL_FIELD_NAMETom Christie
2014-01-14Test for customizable HyperlinkedModelSerializer url field nameS.Prymak
2014-01-14Version 2.3.112.3.11Tom Christie
2014-01-14Added write_only and write_only_fields. Refs #1306Tom Christie
2014-01-14Override HyperlinkedModelSerializerOptions url field name with ↵S.Prymak
URL_FIELD_NAME setting
2014-01-13Minor tweaksTom Christie
2014-01-13Merge branch 'testing-nested-serializers' of ↵Tom Christie
git://github.com/dustinfarris/django-rest-framework into dustinfarris-testing-nested-serializers
2014-01-13Minor cleanupTom Christie
2014-01-13Move ImportingModelSerializerTests and add comments.Dustin Farris