summaryrefslogtreecommitdiff
path: root/docs/ref/settings.txt
AgeCommit message (Collapse)Author
2019-03-29[2.2.x] Removed unnecessary /static from links to PostgreSQL docs.Nick Pope
Backport of 198a2a9381a415f76c3170753270f5087ce4475a from master.
2019-03-28[2.2.x] Used extlinks for Django's source code.Tim Graham
Backport of a68c029e224cebe540da7447dbbd27993b4aa793 from master.
2019-03-28[2.2.x] Refs #1660 -- Doc'd the LANGUAGES_BIDI setting.Nick Pope
Backport of 07daa487aeb7d41d69d7d1cf9d4b3648e299e4ac from master
2019-03-27[2.2.x] Updated spelling and RFCs in HttpOnly cookie flag docs.Nick Pope
Backport of 398afba084679f1055926f6f91bd33fe124a92c5 from master.
2019-02-05[2.2.x] Simplified and corrected LOGIN_URL, LOGIN_REDIRECT_URL, and ↵Tim Graham
LOGOUT_REDIRECT_URL docs. Backport of b709d701303b3877387020c1558a590713b09853 from master.
2019-01-30[2.2.x] Fixed #30091 -- Doc'd middleware ordering requirements with ↵Carlton Gibson
CSRF_USE_SESSIONS. Backport of bae66e759faee8513da4b11d3fd16b044b415bdb from master.
2018-12-05Reverted "Fixed #25251 -- Made data migrations available in ↵Tim Graham
TransactionTestCase when using --keepdb." This reverts commits b3b1d3d45fc066367f4fcacf0b06f72fcd00a9c6 and 9fa0d3786febf36c87ef059a39115aa1ce3326e8 due to reverse build failures for which a solution isn't forthcoming.
2018-11-13Fixed #29788 -- Added support for Oracle Managed File (OMF) tablespaces.Mariusz Felisiak
2018-11-06Fixed #25251 -- Made data migrations available in TransactionTestCase when ↵romgar
using --keepdb. Data loaded in migrations were restored at the beginning of each TransactionTestCase and all the tables are truncated at the end of these test cases. If there was a TransactionTestCase at the end of the test suite, the migrated data weren't restored in the database (especially unexpected when using --keepdb). Now data is restored at the end of each TransactionTestCase.
2018-10-25Fixed #29879 -- Added CSRF_COOKIE_HTTPONLY to CSRF AJAX docs.Mayank Singhal
2018-10-15Fixed #29817 -- Deprecated settings.FILE_CHARSET.Jon Dufresne
2018-10-04Improved tone in docs/ref/settings.txt.Kate Berry
2018-09-26Refs #29784 -- Switched to https:// links where available.Jon Dufresne
2018-09-25Normalized spelling of "lowercase" and "lowercased".Jon Dufresne
2018-06-10Prevented unexpected link in settings docsClaude Paroz
2018-05-26Reverted "Fixed #29324 -- Made Settings raise ImproperlyConfigured if ↵Tim Graham
SECRET_KEY is accessed and not set." This reverts commit b3cffde5559c4fa97625512d7ec41a674be26076 due to a regression and performance concerns.
2018-05-17Removed versionadded/changed annotations for 2.0.Tim Graham
2018-04-17Fixed #29324 -- Made Settings raise ImproperlyConfigured if SECRET_KEY is ↵Jon Dufresne
accessed and not set.
2018-04-13Fixed #27863 -- Added support for the SameSite cookie flag.Alex Gaynor
Thanks Alex Gaynor for contributing to the patch.
2018-02-26Fixed #29161 -- Removed BCryptPasswordHasher from PASSWORD_HASHERS.Tim Graham
2018-01-24Fixed #28403 -- Added missing formats in FORMAT_MODULE_PATH docs.Ashaba
2017-11-21Clarified who the AdminEmailHandler emails.Frédéric Massart
2017-11-06Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов
2017-11-01Fixed #28741 -- Removed unnecessary leading dot from cross-domain cookie ↵Tim Graham
examples.
2017-10-12Refs #28248 -- Clarified the precision of PASSWORD_RESET_TIMEOUT_DAYS.Tim Graham
2017-09-28Fixed #28625 -- Distinguished DATABASES['TIME_ZONE'] from settings.TIME_ZONE.Jon Ribbens
2017-09-22Removed versionadded/changed annotations for 1.11.Tim Graham
2017-09-22Refs #26447 -- Removed the USE_ETAGS setting per deprecation timeline.Tim Graham
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