Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/conf/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Refs #23957 -- Required session verification per ↵Tim Graham2015-09-241-12/+0
| | | | deprecation timeline.
* Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham2015-09-241-1/+0
|
* Refs #24121 -- Added repr() to LazySettings, Settings, ↵Keryn Knight2015-08-311-0/+19
| | | | and UserSettingsHolder.
* Sorted imports in __init__.py files.Tim Graham2015-06-271-1/+1
|
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-3/+3
| | | | | Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
* Fixed #24149 -- Normalized tuple settings to lists.darkryder2015-02-031-3/+2
|
* Fixed #23957 -- Started deprecation toward requiring ↵Tim Graham2014-12-051-0/+12
| | | | | | session verification. Thanks Carl Meyer for review.
* Normalized check that ALLOWED_INCLUDE_ROOTS is a tuple.Aymeric Augustin2014-11-171-4/+6
|
* Fixed #23495 -- Stopped swallowing real settings import ↵Claude Paroz2014-09-171-8/+1
| | | | | | error Thanks papaloizouc for the report.
* Revert "Fixed #23384 -- Allowed overriding part of a ↵Claude Paroz2014-09-051-6/+1
| | | | | | | | | dictionary-type setting" This reverts commit 66757fee7e921ad4c35e0b3f80c25e026100b31c. Discussions have led to think that this functionality does not bring significant benefits to justify the added complexity. Read also discussions on ticket #22734.
* Limited lines to 119 characters in django/Tim Graham2014-09-051-1/+2
| | | | refs #23395.
* Fixed #23384 -- Allowed overriding part of a ↵Claude Paroz2014-08-301-1/+6
| | | | | | | | dictionary-type setting This change is needed for upcoming changes where settings might be grouped in a parent dictionary. Thanks Tim Graham for the review.
* 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
| | | | Refs #20032, #18824. Thanks ztorstri at gmail.com for the report.
* Fixes #21833 -- Fix UserSettingsHolder.is_overridden() ↵Carl Meyer2014-01-211-5/+4
| | | | and add tests.
* Fixed #16905 -- Added extensible checks (nee validation) ↵Russell Keith-Magee2014-01-201-1/+11
| | | | | | | | | | | framework This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844.
* Fixed #21714 -- Moved logging configuration to global ↵Claude Paroz2013-12-311-27/+0
| | | | | | setup() Thanks Aymeric Augustin for the report and the review.
* Removed an obsolete unicity check.Aymeric Augustin2013-12-311-5/+0
| | | | | | It doesn't account for app configs. Refs #21679.
* Simplied some code in django.conf.__init__.Ondrej Sika2013-12-191-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
| | | | We have always been at war with trailing backslashes.
* Fixed test failures on Python 3 - refs #12288Tim Graham2013-08-091-2/+4
|
* Fixed #12288 -- Added unique validation for INSTALLED_APPSSusanTan2013-08-091-0/+3
|
* Deprecated django.utils.importlibClaude Paroz2013-07-291-1/+1
| | | | This was a shim for pre-Python 2.7 support.
* Removed some conditional code only needed under Python 2.6.Aymeric Augustin2013-07-011-8/+4
|
* Report wrongly-typed settings and abort, as originally ↵Ramiro Morales2013-06-291-0/+8
| | | | | | planned. Thanks Claude for the heads up. Refs #12493 and commit 5e08b792.
* Stop auto-correcting string INSTALLED_APPS, ↵Ramiro Morales2013-06-291-10/+0
| | | | TEMPLATE_DIRS settings, as per deprecation TL.
* Fixed #20443 -- Import errors in settings cause ↵Erik Romijn2013-05-251-1/+4
| | | | confusing error messages
* Fixed #18985 -- ensure module level deprecations are ↵Preston Holmes2013-03-251-8/+10
| | | | | | | displayed Also don't compete with -W CLI option. Thanks to Aymeric Augustin for the catch, and Claude Paroz for the patch.
* Fixed #17061 -- Factored out importing object from a ↵Claude Paroz2013-02-041-3/+2
| | | | | | dotted path Thanks Carl Meyer for the report.
* Advanced pending deprecation warnings.Aymeric Augustin2012-12-291-1/+1
| | | | Also added stacklevel argument, fixed #18127.
* Removed backwards-compatibility shim for #16288.Aymeric Augustin2012-12-291-38/+1
| | | | Also unit-tested django.utils.log.RequireDebugTrue for consistency.
* Fixed #19291 -- Completed deprecation of ADMIN_MEDIA_PREFIX.Aymeric Augustin2012-11-171-3/+0
|
* Fixed #18985 -- made DeprecationWarnings loudPreston Holmes2012-11-171-0/+10
| | | | | | | Capture warnings in Python >= 2.7 and route through console handler, which is subject to DEBUG==True Thanks to dstufft for the idea, and claudep for initial patch
* Fixed #14264 -- Ensured settings.configure configures ↵Claude Paroz2012-11-101-0/+1
| | | | | | logging Thanks Matt McDonald for the patch.
* Fixed #19164 -- Fixed diffsettings command broken in fix ↵Carl Meyer2012-10-231-3/+4
| | | | | | for #18545. Thanks Mario César for the report and draft patch.
* Combined Django DEFAULT_LOGGING with user LOGGING configClaude Paroz2012-09-291-4/+8
| | | | Refs #18993.
* Fixed #14861 -- Moved logging config outside of ↵Claude Paroz2012-09-241-14/+16
| | | | | | | Settings.__init__ Thanks donspaulding for the report and simonpercivall for the initial patch.
* Remove a couple unused imports.Carl Meyer2012-09-081-1/+0
|
* Fixed #18545 -- Make the 'no DJANGO_SETTINGS_MODULE' ↵Carl Meyer2012-09-081-4/+13
| | | | error message more useful.Thanks Nick Coghlan for the report, and Malcolm Tredinnick for review.
* Fixed #18824 -- Allow deleting a setting from overriden ↵Claude Paroz2012-09-041-0/+11
| | | | settings
* Removed obsolete __members__ definitionsClaude Paroz2012-08-211-3/+0
| | | | This was useful for pre-Python 2.6 support. See commit c6e8e5d9.
* remove a bunch of unnescesarry iterkeys() callsAlex Gaynor2012-08-081-1/+1
|
* [py3] Fixed access to dict keys/values/items.Aymeric Augustin2012-08-071-1/+1
|
* [py3] Replaced basestring by six.string_types.Aymeric Augustin2012-07-221-2/+3
|
* Fixed #12493 -- Deprecated auto-correction of TEMPLATE_DIRSClaude Paroz2012-06-301-0/+3
|
* Fixed #18042 -- Advanced deprecation warnings.Aymeric Augustin2012-05-031-1/+1
| | | | Thanks Ramiro for the patch.
* Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz2012-04-291-1/+1
| | | | | Thanks Clueless for the initial patch. Note that unittest has been purposely left out (external package only used by Python 2.6).
* Required that the MEDIA_URL and STATIC_URL settings end ↵Aymeric Augustin2012-03-311-2/+1
| | | | | | with a slash, per the deprecation timeline. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17845 bcc190cf-cafb-0310-a4f2-bffc1f526a37