aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
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-28Updated the django-filter version and added tests against Django 1.7a1Xavier Ordoquy
2014-01-26Merge pull request #1373 from rhcarvalho/patch-1Tom Christie
Fix typo in docstring for post_delete hook.
2014-01-25Fix typo in docstring for post_delete hook.Rodolfo Henrique Carvalho
2014-01-19Drop django-rest-framework-bulk API descriptionsTom Christie
2014-01-19Merge pull request #1363 from miki725/masterTom Christie
Added docs for bulk views from django-rest-framework-bulk.
2014-01-19Merge pull request #1364 from jpadilla/patch-1Tom Christie
Include the djangorestframework-jwt package
2014-01-18Include the djangorestframework-jwt packageJosé Padilla
2014-01-18Added docs for bulk views from django-rest-framework-bulk.Miroslav Shubernetskiy
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-17Merge pull request #1360 from diox/fix-querysets-json-encodingTom Christie
Encode django QuerySets to lists and not dicts in JSONEncoder
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 https://github.com/tomchristie/django-rest-frameworkTom 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-14More HyperlinkedModelSerializer docsTom Christie
2014-01-14Use a local virtualenv, not in the users homedir.Tom Christie
2014-01-14Tweak html for hidden h1 on homepageTom Christie
2014-01-14Merge pull request #1354 from JakeSidSmith/docs-seoTom Christie
Added h1 and alt to logo to improve SEO
2014-01-14Added h1 and alt to logo to improve SEOJakeSidSmith
Added title attribution to logo
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
2014-01-13Merge branch 'master' of git://github.com/cguethle/django-rest-framework ↵Tom Christie
into cguethle-master
2014-01-13Move models.resolve_model to serializers._resolve_modelDustin Farris
2014-01-13Minor tweaks to 'lookup_value_regex' workTom Christie
2014-01-13Merge pull request #1333 from bodylabs/2.4.0+lookup_regexTom Christie
Let viewsets specify their regex
2014-01-13Make HyperlinkedModelSerializer `url` field name customizableS.Prymak
2014-01-13Track changes that need noting in 2.4 announcementTom Christie
2014-01-13Merge pull request #1343 from linovia/hotfix/1129Tom Christie
Fix for #1129
2014-01-12Add a sanity check to avoid running into unresolved related models.Dustin Farris
2014-01-12Merge pull request #1348 from yprez/none-to-empty-string_2.4Tom Christie
Coerce None to empty string
2014-01-12Check the modelfield's class insteadYuri Prezument
2014-01-12Test for setting allow_none=True for nullable CharFieldsYuri Prezument