summaryrefslogtreecommitdiff
path: root/django/conf/__init__.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #31842 -- Removed DEFAULT_HASHING_ALGORITHM transitional setting.Mariusz Felisiak2021-01-141-13/+0
* Refs #28622 -- Removed settings.PASSWORD_RESET_TIMEOUT_DAYS per deprecation t...Mariusz Felisiak2021-01-141-33/+0
* Fixed #32304 -- Fixed prefixing STATIC_URL and MEDIA_URL by SCRIPT_NAME for a...Mariusz Felisiak2020-12-311-10/+3
* Fixed #31842 -- Added DEFAULT_HASHING_ALGORITHM transitional setting.Mariusz Felisiak2020-08-041-0/+11
* Fixed #29324 -- Made SECRET_KEY validation lazy (on first access).Florian Apolloner2020-07-291-3/+2
* Improved performance of STATIC_URL and MEDIA_URL setting access.Florian Apolloner2020-07-281-8/+6
* Fixed #25598 -- Added SCRIPT_NAME prefix to STATIC_URL and MEDIA_URL set to r...Oleg Kainov2019-09-251-1/+30
* Fixed #28622 -- Allowed specifying password reset link expiration in seconds ...Hasan Ramezani2019-09-201-0/+35
* Refs #29817 -- Removed settings.FILE_CHARSET per deprecation timeline.Mariusz Felisiak2019-09-101-28/+0
* Fixed #30234 -- Disallowed non-upper settings in settings.configure().orlnub1232019-03-051-1/+3
* Refs #27829 -- Removed settings.DEFAULT_CONTENT_TYPE per deprecation timeline.Tim Graham2019-01-171-23/+2
* Moved django.db.migrations.writer.SettingsReference to django.conf.Tim Graham2019-01-111-0/+12
* Fixed #29817 -- Deprecated settings.FILE_CHARSET.Jon Dufresne2018-10-151-1/+25
* Refs #27829 -- Added warning for settings.DEFAULT_CONTENT_TYPE usage outside ...Jon Dufresne2018-10-151-2/+20
* Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev2018-09-281-1/+1
* Reverted "Fixed #29324 -- Made Settings raise ImproperlyConfigured if SECRET_...Tim Graham2018-05-261-8/+3
* Ref #23919 -- Replaced some os.path usage with pathlib.Path.Tom2018-04-191-3/+4
* Fixed #29324 -- Made Settings raise ImproperlyConfigured if SECRET_KEY is acc...Jon Dufresne2018-04-171-3/+8
* Removed unnecessary parens in various code.Mariusz Felisiak2017-09-131-1/+1
* Refs #27656 -- Updated remaining docstring verbs according to PEP 257.Anton Samarchyan2017-03-041-17/+9
* Fixed #27829 -- Deprecated settings.DEFAULT_CONTENT_TYPE.Tim Graham2017-02-161-0/+7
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-4/+4
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-2/+2
* Fixed #27625 -- Made LazySettings cache attributes in __dict__.Adam Chainz2016-12-231-1/+24
* Fixed #27626 -- Moved MEDIA_URL/STATIC_URL validation to a system check.Adam Chainz2016-12-231-12/+2
* Fixed E305 flake8 warnings.Ramin Farajpour Cami2016-11-141-0/+1
* Fixed #26427 -- Ensured deleted setting doesn't appear in dir(settings)Claude Paroz2016-04-231-1/+4
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-2/+1
* Refs #23957 -- Required session verification per deprecation timeline.Tim Graham2015-09-231-12/+0
* Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham2015-09-231-1/+0
* Refs #24121 -- Added repr() to LazySettings, Settings, and UserSettingsHolder.Keryn Knight2015-08-311-0/+19
* Sorted imports in __init__.py files.Tim Graham2015-06-271-1/+1
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-3/+3
* Fixed #24149 -- Normalized tuple settings to lists.darkryder2015-02-031-3/+2
* Fixed #23957 -- Started deprecation toward requiring session verification.Tim Graham2014-12-051-0/+12
* Normalized check that ALLOWED_INCLUDE_ROOTS is a tuple.Aymeric Augustin2014-11-171-4/+6
* Fixed #23495 -- Stopped swallowing real settings import errorClaude Paroz2014-09-171-8/+1
* Revert "Fixed #23384 -- Allowed overriding part of a dictionary-type setting"Claude Paroz2014-09-051-6/+1
* Limited lines to 119 characters in django/Tim Graham2014-09-051-1/+2
* Fixed #23384 -- Allowed overriding part of a dictionary-type settingClaude Paroz2014-08-301-1/+6
* Fixed #22780 -- Checked that LOCALE_PATHS is really a tupleTim Schaffer2014-06-101-1/+1
* Also allowed a non-overridden setting to be deletedClaude Paroz2014-04-121-2/+3
* Fixes #21833 -- Fix UserSettingsHolder.is_overridden() and add tests.Carl Meyer2014-01-201-5/+4
* Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee2014-01-201-1/+11
* Fixed #21714 -- Moved logging configuration to global setup()Claude Paroz2013-12-311-27/+0
* Removed an obsolete unicity check.Aymeric Augustin2013-12-311-5/+0
* Simplied some code in django.conf.__init__.Ondrej Sika2013-12-181-5/+2
* Use str.isupper() to test if a string is uppercased.Baptiste Mispelon2013-11-261-2/+2
* Fixed all E261 warningscoagulant2013-11-021-1/+1
* Removed a few trailing backslashes.Aymeric Augustin2013-09-221-2/+2