aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/settings.py
AgeCommit message (Collapse)Author
2014-08-19Drop six from compat. 1.4.2 is now the lowest supported version.Tom Christie
2014-08-19Code linting and added runtests.pyTom Christie
2014-06-24Merge branch '2.4.0' of github.com:tomchristie/django-rest-framework into #1559Carlton Gibson
Conflicts: docs/topics/release-notes.md
2014-06-24Added (first pass) notes to docs & release notes. Backed out ↵Carlton Gibson
`SOUTH_MIGRATION_MODULES` setting from `rest_framework.settings`
2014-06-23Allow use of native migrations in 1.7Carlton Gibson
2014-04-13Merge remote-tracking branch 'origin/master' into 2.4.0Xavier Ordoquy
Conflicts: .travis.yml docs/api-guide/fields.md docs/api-guide/routers.md docs/topics/release-notes.md rest_framework/authentication.py rest_framework/serializers.py rest_framework/templatetags/rest_framework.py rest_framework/tests/test_authentication.py rest_framework/tests/test_filters.py rest_framework/tests/test_hyperlinkedserializers.py rest_framework/tests/test_serializer.py rest_framework/tests/test_testing.py rest_framework/utils/encoders.py tox.ini
2014-03-06Add SEARCH_PARAM and ORDERING_PARAM to settingsPeter Inglesby
Fixes #1434
2014-01-14Override HyperlinkedModelSerializerOptions url field name with ↵S.Prymak
URL_FIELD_NAME setting
2013-12-06Add get_ident method to pass new tests.kahnjw
2013-09-06Support customizable view EXCEPTION_HANDLERAndy Freeland
Add `api_settings.EXCEPTION_HANDLER` to support custom error responses. Fixes #907.
2013-08-27Merge branch 'max_paginate_by' of ↵Tom Christie
git://github.com/alexander-akhmetov/django-rest-framework into alexander-akhmetov-max_paginate_by
2013-08-27Move settings into more sensible orderingTom Christie
2013-08-26Added max_paginate_by parameterAlexander Akhmetov
2013-08-19Move view name/description functions into public spaceTom Christie
2013-08-16Settings now have default functionsChristopher Paolini
Updated the setting to have a default function.
2013-08-15Ability to override name/description of viewChristopher Paolini
Added settings and additions to formatting.py
2013-07-01Complete testing docsTom Christie
2013-05-18Added proper charset supportTom Christie
2013-05-18charset param gets now appended to response's Content-Type. Closes #807Karol Majta
2013-05-08Fix DATETIME_FORMAT, DATE_FORMAT, TIME_FORMAT settings. Closes #798Tom Christie
2013-05-07Support for multiple filter classesTom Christie
2013-03-06Clean ups to datetime formattingTom Christie
2013-03-01Add new ISO8601 setting + integrationStephan Groß
2013-03-01Add drf settings + output format + testcasesStephan Groß
2013-02-04Cleanup importsTom Christie
Mostly adding `from __future__ import unicode_literals` everywhere.
2013-02-013.2, 3.3 compatTom Christie
2013-02-01Merge branch 'p3k' of https://github.com/linovia/django-rest-framework into ↵Tom Christie
working Conflicts: rest_framework/authentication.py rest_framework/relations.py rest_framework/serializers.py rest_framework/settings.py rest_framework/tests/authentication.py rest_framework/tests/genericrelations.py rest_framework/tests/generics.py rest_framework/tests/relations_hyperlink.py rest_framework/tests/relations_nested.py rest_framework/tests/relations_pk.py rest_framework/tests/serializer.py
2013-01-07Introduced HTTP_HEADER_ENCODING.Xavier Ordoquy
2013-01-07Be more informative when reporting import errors.Marc Tamlyn
2013-01-03Move the various compat things to the compat module.Xavier Ordoquy
2012-11-22First passing test under p3k \o/Xavier Ordoquy
2012-11-16Polishing to page size query parameters & more docsTom Christie
2012-11-16Merge pull request #412 from minddust/custom_page_size_per_requestTom Christie
support for custom page size per request
2012-11-15updated script to just use page_size_kwargStephan Groß
2012-11-15added global and per resource on/off switch + updated docsStephan Groß
2012-11-14fixed some typosStephan Groß
2012-11-08Make default FILTER_BACKEND = NoneTom Christie
2012-11-07Make filtering optional, and pluggable.Tom Christie
2012-10-27Add AllowAny permissionTom Christie
2012-10-17Make settings consistent with corrosponding view attributesTom Christie
2012-10-15Tweak parsers to take parser_contextTom Christie
2012-10-10Tidy up APISettings object to not rely on module stateTom Christie
2012-10-09Rename HTMLTemplateRenderer -> HTMLRenderer, DocuemntingHTMLRenderer -> ↵Tom Christie
BrowseableAPIRenderer
2012-10-04HyperlinkedModelSerializer with working HyperlinkedIdentityField, but no ↵Tom Christie
hyperlinked relations
2012-10-02URL overrides in settings fixed up slightlyTom Christie
2012-09-30Pagination supportTom Christie
2012-09-26Fix @api_view decorator testsTom Christie
2012-09-26Add missing commaTom Christie
2012-09-26Bits of cleanupTom Christie
2012-09-20Clean up bits of templates etcTom Christie