summaryrefslogtreecommitdiff
path: root/docs/ref/settings.txt
AgeCommit message (Collapse)Author
2016-07-14Reverted "Fixed #25388 -- Added an option to allow disabling of migrations ↵Tim Graham
during test database creation" This reverts commit 157d7f1f1de4705daddebb77f21bd7097a74513d since it disables migrations all the time, not just during tests.
2016-06-24Refs #17209 -- Added LoginView and LogoutView class-based viewsClaude Paroz
Thanks Tim Graham for the review.
2016-06-22Fixed #25920 -- Added support for non-uniform NUMBER_GROUPING.jasisz
2016-06-20Refs #26666 -- Added ALLOWED_HOSTS validation when running tests.Tobias McNulty
Also used ALLOWED_HOSTS to check for external hosts in assertRedirects().
2016-06-04Fixed #12666 -- Added EMAIL_USE_LOCALTIME setting.Anton I. Sipos
When EMAIL_USE_LOCALTIME=True, send emails with a Date header in the local time zone.
2016-05-20Removed versionadded/changed annotations for 1.9.Tim Graham
2016-05-17Refs #26601 -- Deprecated old-style middleware.Tim Graham
2016-05-17Fixed #26601 -- Improved middleware per DEP 0005.Florian Apolloner
Thanks Tim Graham for polishing the patch, updating the tests, and writing documentation. Thanks Carl Meyer for shepherding the DEP.
2016-05-12Fixed #21231 -- Enforced a max size for GET/POST values read into memory.Andre Cruz
Thanks Tom Christie for review.
2016-05-08Fixed #26483 -- Updated docs.python.org links to use Intersphinx.Tim Graham
2016-04-07Fixed #26037 -- Documented precedence of USE_X_FORWARDED_HOST/PORT settings.Arnaud Limbourg
2016-04-04Fixed #26419 -- Added a link in ALLOWED_HOSTS docs.Joshua Pereyda
2016-03-31Removed some docs that should have been removed along with PROFANITIES_LIST.Tim Graham
2016-03-23Fixed #25388 -- Added an option to allow disabling of migrations during test ↵Berker Peksag
database creation
2016-03-08Fixed #26033 -- Added Argon2 password hasher.Bas Westerbaan
2016-03-03Fixed #26309 -- Documented that login URL settings no longer support dotted ↵Alasdair Nicol
paths.
2016-02-22Fixed #26187 -- Removed weak password hashers from PASSWORD_HASHERS.Tim Graham
2016-02-04Fixed #12405 -- Added LOGOUT_REDIRECT_URL setting.Hugo Osvaldo Barrera
After a user logs out via auth.views.logout(), they're redirected to LOGOUT_REDIRECT_URL if no `next_page` argument is provided.
2016-02-02Made identation of default setting docs more consistenct.Tim Graham
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
2016-01-29Made formatting of docs for settings defaults more consistent.Tim Graham
2016-01-14Fixed #23868 -- Added support for non-unique django-admin-options in docs.Tim Graham
Also documented missing short command line options to fix #24134. This bumps the minimum sphinx version required to build the docs to 1.3.4. Thanks Simon Charette for review.
2016-01-11Refs #25755 -- Unified a couple more spellings of 'website'.pp
2016-01-07Fixed #25928 -- Clarified precendence of USE_THOUSAND_SEPARATOR and locale ↵wingston sharon
formats.
2016-01-06Refs #25878 -- Added the expected return type of CSRF_FAILURE_VIEW.Tim Graham
2015-12-11Fixed #25918 -- Removed unused LOGOUT_URL setting.Tim Graham
Thanks hop for the report and patch.
2015-12-01Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
2015-11-17Fixed #25695 -- Added template_name parameter to csrf_failure() view.Raphael Michel
2015-11-17Fixed #25710 -- Clarified the docs about what INTERNAL_IPS does.Alex Morozov
2015-10-29Fixed #25489 -- Documented that SESSION_SAVE_EVERY_REQUEST doesn't create ↵Tim Graham
empty sessions.
2015-10-29Fixed #16734 -- Set script prefix even outside of requestsClaude Paroz
Thanks Tim Graham for the review.
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-23Removed deprecated TEMPLATE_* settings per deprecation timeline.Tim Graham
2015-09-23Refs #23957 -- Required session verification per deprecation timeline.Tim Graham
2015-09-23Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham
2015-09-16Fixed #24496 -- Added CSRF Referer checking against CSRF_COOKIE_DOMAIN.Matt Robenolt
Thanks Seth Gottlieb for help with the documentation and Carl Meyer and Joshua Kehn for reviews.
2015-09-12Refs #25386 -- Added links to the OPTIONS of the built-in template backends.Tim Graham
2015-09-12Cleaned up surrounding documentationMarkus Holtermann
2015-09-12Fixed #24919 -- Allowed disabling of migrations on a per app basisMarkus Holtermann
2015-09-11Fixed #25351 -- Added example for database test settings to docs.Jose Carlos Menezes
2015-09-07Fixed #25356 -- Removed default_app_config from startapp template.Tim Graham
Also discouraged its use outside the intended use case.
2015-09-05Fixed #25334 -- Provided a way to allow cross-origin unsafe requests over HTTPS.Joshua Kehn
Added the CSRF_TRUSTED_ORIGINS setting which contains a list of other domains that are included during the CSRF Referer header verification for secure (HTTPS) requests.
2015-08-28Fixed #25318 -- Made SILENCED_SYSTEM_CHECKS suppress all messages.Tim Graham
Previously, messages of ERROR level or higher were printed to the console.
2015-08-25Fixed #25309 -- Corrected that ATOMIC_REQUESTS applies per view not per request.Tim Graham
2015-08-08Updated Wikipedia links to use httpsClaude Paroz
2015-08-07Fixed #25175 -- Renamed the postgresql_psycopg2 database backend to postgresql.Caio Ariede
2015-08-04Fixed #25211 -- Added HttpRequest.get_port() and USE_X_FORWARDED_PORT setting.Matt Robenolt
2015-07-17Fixed #25125 -- Updated docs on cookie naming conventions.Konrad Świat
Thanks Tim Graham for the review and kezabelle for the report.
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-06-20Fixed #25010 -- Documented APP_DIRS default in startproject's settings.pyTim Graham