summaryrefslogtreecommitdiff
path: root/docs/ref/settings.txt
AgeCommit message (Collapse)Author
2017-11-21[2.0.x] Clarified who the AdminEmailHandler emails.Frédéric Massart
Backport of a5f1e5809f26d93ea0c6010bb44895b3d1992089 from master
2017-11-06[2.0.x] Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов
Backport of 6c0042430e3618ce5c276d195d92a6b884daa3a3 from master
2017-11-01[2.0.x] Fixed #28741 -- Removed unnecessary leading dot from cross-domain ↵Tim Graham
cookie examples. Backport of afd375fc343baa46e61036087bc43b3d096bb0ca from master
2017-09-28[2.0.x] Fixed #28625 -- Distinguished DATABASES['TIME_ZONE'] from ↵Jon Ribbens
settings.TIME_ZONE. Backport of 44f08422c872e32854216b2b30aab119ec3bb5d8 from master
2017-07-25Fixed #28435 -- Removed inaccurate warning about SECURE_HSTS_PRELOAD.Tim Graham
2017-06-27Fixed #28336 -- Fixed typo in docs/ref/settings.txt.Laura
2017-06-02Fixed #28260 -- Allowed customizing the test tablespace initial and ↵Mariusz Felisiak
autoextend size on Oracle. Thanks Tim Graham for the review.
2017-05-06Fixed #28062 -- Added a setting to disable server-side cursors on PostgreSQL.François Freitag
When a connection pooler is set up in transaction pooling mode, queries relying on server-side cursors fail. The DISABLE_SERVER_SIDE_CURSORS setting in DATABASES disables server-side cursors for this use case.
2017-03-20Removed extra characters in docs header underlines.Mariusz Felisiak
2017-03-09Described DEBUG_PROPAGATE_EXCEPTIONS behavior in more detail.Tim Graham
2017-02-16Fixed #27829 -- Deprecated settings.DEFAULT_CONTENT_TYPE.Tim Graham
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
Thanks Tim Graham for the review.
2017-01-17Removed versionadded/changed annotations for 1.10.Tim Graham
2017-01-17Refs #26601 -- Removed support for old-style middleware using ↵Tim Graham
settings.MIDDLEWARE_CLASSES.
2016-12-28Fixed #24994 -- Documented the expected type of settings.SECRET_KEY.Tim Graham
2016-12-27Fixed #15667 -- Added template-based widget rendering.Preston Timmons
Thanks Carl Meyer and Tim Graham for contributing to the patch.
2016-12-19Fixed #27611 -- Doc'd that CSRF_COOKIE_HTTPONLY setting offers no security.Tim Graham
2016-11-30Refs #16859 -- Allowed storing CSRF tokens in sessions.Raphael Michel
Major thanks to Shai for helping to refactor the tests, and to Shai, Tim, Florian, and others for extensive and helpful review.
2016-11-11Fixed typo in docs/ref/settings.txt.Ian Lee
2016-11-01Fixed CVE-2016-9014 -- Validated Host header when DEBUG=True.Tim Graham
This is a security fix.
2016-11-01Fixed CVE-2016-9013 -- Generated a random database user password when ↵Marti Raudsepp
running tests on Oracle. This is a security fix.
2016-10-31Fixed #27410 -- Clarified when static files is enabled in STATIC_ROOT docs.Tim Graham
2016-10-27Fixed #27327 -- Simplified time zone handling by requiring pytz.Tim Graham
2016-10-25Updated postgresql.org links to https and made them canonical.Marti Raudsepp
2016-10-10Fixed #26447 -- Deprecated settings.USE_ETAGS in favor of ↵Denis Cornehl
ConditionalGetMiddleware.
2016-09-30Updated links to the current version of MySQL docs.Tim Graham
2016-09-15Fixed typo in docs/ref/settings.txt.Tim Graham
2016-09-09Normalized spelling of ETag.Tim Graham
2016-08-31Made settings docs link to cache parameters more specific.Ed Morley
2016-08-23Fixed #27061 -- Added a TEST['TEMPLATE'] setting for PostgreSQL.Chris Jerdonek
2016-08-10Fixed #26947 -- Added an option to enable the HSTS header preload directive.Ed Morley
2016-08-08Fixed docs to refer to HSTS includeSubdomains as a directive.Ed Morley
The spec refers to it as a 'directive' rather than a 'tag': https://tools.ietf.org/html/rfc6797#section-6.1.2
2016-07-16Fixed #17209 -- Added password reset/change class-based viewsClaude Paroz
Thanks Tim Graham for the review.
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