aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
AgeCommit message (Collapse)Author
2013-08-15Ability to override name/description of viewChristopher Paolini
Added settings and additions to formatting.py
2013-08-14Update filters.pyChad Barrington
Fixed cut n pasted get_ordering docstring for ya bro.
2013-08-14Update filters.pyChad Barrington
Here's a little cleanup for ya, brah!
2013-08-14Merge pull request #1038 from jsatt/nontime_throttlingTom Christie
don't set X-Throttle-Wait-Second header if throttle wait is None
2013-08-13Fix for "No module named compat"JT
2013-08-13don't set X-Throttle-Wait-Second header if throttle wait is NoneJeremy Satterfield
2013-08-12Fix PATCH button title in templateYuri Prezument
2013-08-12Merge pull request #1030 from etos/patch-2Tom Christie
Spelling correction on read_only_fields err msg
2013-08-10Spelling correction on read_only_fields err msgDan Stephenson
just spotted extras
2013-08-10Spelling correction on read_only_fields err msgDan Stephenson
2013-07-26Fixed reversed arguments in assertionKevin Brown
2013-07-21Fixed testPavel Zinovkin
2013-07-21Updated EmailField error message. This one already available in django ↵Pavel Zinovkin
translations. https://github.com/django/django/blob/master/django/conf/locale/ru/LC_MESSAGES/django.po#L343
2013-07-15Only include APISimpleTestCase and APILiveServerTestCase from django 1.4 onwardsTom Christie
2013-07-15Added test case classesTom Christie
2013-07-09Use absolute import styleTom Christie
2013-07-09Add an ModelAdmin for easy management of TokensGertjan Oude Lohuis
2013-07-05Use 'force_text', not 'unicode', for compat across python versionTom Christie
2013-07-05Merge branch 'remove-hold-down-control-messages' of ↵Tom Christie
git://github.com/rouge8/django-rest-framework into rouge8-remove-hold-down-control-messages
2013-07-04Merge pull request #962 from tomchristie/test-clientTom Christie
APIClient and APIRequestFactory
2013-07-04Update parser docstrings. Closes #968.Tom Christie
2013-07-04Remove 'Hold down "Control" ...' message from help_textAndy Freeland
When getting the help_text from a field where `many=True`, Django appends 'Hold down "Control", or "Command" on a Mac, to select more than one.' to the help_text. This makes some sense in Django's ModelForms, but no sense in the API.
2013-07-01Complete testing docsTom Christie
2013-06-29Rename to force_authenticateTom Christie
2013-06-29Simplify APIClient implementationTom Christie
2013-06-29Added APIClient.authenticate()Tom Christie
2013-06-29Refactor SessionAuthentication slightlyTom Christie
2013-06-29Remove unneeded tests.utils, superseeded by APIRequestFactory, APIClientTom Christie
2013-06-29Addeded 'APITestClient.credentials()'Tom Christie
2013-06-28Added APIClientTom Christie
2013-06-28Added APIRequestFactoryTom Christie
2013-06-28Fix compat datetime import when oauth2 provide does not support timezone ↵Tom Christie
aware datetimes
2013-06-27Version 2.3.62.3.6Tom Christie
2013-06-27Merge branch 'master' of https://github.com/tomchristie/django-rest-frameworkTom Christie
2013-06-27Use imported views to expose python 2.6 bug. Refs #943Tom Christie
2013-06-26Merge pull request #953 from j4mie/prevent-duplicate-routingTom Christie
Prevent dynamically routing to a method that is already routed to.
2013-06-26Raise exception when attempting to dynamically route to a method that is ↵Jamie Matthews
already routed to. Fixes #940
2013-06-26Minor test cleanupTom Christie
2013-06-26Merge pull request #943 from trwired/utf8safedocsTom Christie
Make browsable API views play nice with utf-8
2013-06-26Use timezone aware datetimes with oauth2 provider, when supported. Closes #947.Tom Christie
2013-06-26Refactored get_view_description, moved appropriate tests to test_description.pyIgor Kalat
2013-06-26Use AUTH_USER_MODEL consistently between various Django versions. Closes #946Tom Christie
2013-06-22Make browsable API views play nice with utf-8Igor Kalat
2013-06-21Add support for StreamingHttpResponse. Closes #939Tom Christie
2013-06-21Merge pull request #941 from FreakyDug/masterTom Christie
Fixed a couple of small problems I found when using the action decorator.
2013-06-21Update assertion error to reference 'base_name' argument, not incorrect ↵Tom Christie
'name' argument. Closes #933
2013-06-21Ensure action kwargs properly handdled. Refs #940.Tom Christie
2013-06-21Allow uppercase methods in action decorator.Philip Douglas
Previously, using uppercase for the method argument would silently fail to route those methods.
2013-06-18Don't raise AttributeError on views with no model or queryset, when using ↵Tom Christie
DjangoModelPermissions
2013-06-17HyperlinkedModelSerializer supports overriding of 'url' field. Closes #936Tom Christie