summaryrefslogtreecommitdiff
path: root/django/conf
AgeCommit message (Collapse)Author
2017-01-17Refs #26601 -- Removed support for old-style middleware using ↵Tim Graham
settings.MIDDLEWARE_CLASSES.
2017-01-17Refs #21927 -- Removed include()'s app_name argument per deprecation timeline.Tim Graham
Also removed support for passing a 3-tuple to include() and support for setting an instance namespace without an application namespace. Thanks Marten Kenbeek for completing the patch.
2016-12-29Fixed #27653 -- Added Ukrainian locale formats.Illia Volochii
2016-12-27Fixed #15667 -- Added template-based widget rendering.Preston Timmons
Thanks Carl Meyer and Tim Graham for contributing to the patch.
2016-12-23Fixed #27625 -- Made LazySettings cache attributes in __dict__.Adam Chainz
2016-12-23Fixed #27626 -- Moved MEDIA_URL/STATIC_URL validation to a system check.Adam Chainz
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-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-10-10Fixed #26447 -- Deprecated settings.USE_ETAGS in favor of ↵Denis Cornehl
ConditionalGetMiddleware.
2016-10-06Fixed #27244 -- Changed Greek's thousand separator from space to dot.kappataumu
2016-09-30Updated translations from TransifexClaude Paroz
Forward port of bfc9c727256ded75dd9438167d6549b195361a0d from stable/1.10.x.
2016-09-19Removed invalid year character from datetime format in Azerbaijani locale.Emin Mastizada
Azerbaijani switched to Latin letters after Soviets and doesn't add il when writing date time formats.
2016-09-12Fixed #27206 -- Corrected MONTH_DAY/DATE_FORMAT for et locale.Merike Sell
2016-09-09Normalized spelling of ETag.Tim Graham
2016-09-03Fixed #27171 -- Added unicode_literals and coding preamble to all files in ↵Ivan
startapp template on Python 2.
2016-08-10Fixed #26947 -- Added an option to enable the HSTS header preload directive.Ed Morley
2016-08-01Pulled core Django translations from TransifexClaude Paroz
Forward port 760f076786bc67e86540c95d93fd762a75c65ed9 from stable/1.10.x
2016-07-24Fixed #26945 -- Ensured that i18n_patterns returns a listAlex Hill
2016-06-29Added Upper/Lower Sorbian translationsClaude Paroz
2016-06-29Added Upper/Lower Sorbian languagesClaude Paroz
2016-06-15Fixed broken links in docs and comments.Ville Skyttä
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-17Updated translation catalogsClaude Paroz
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-04-30Pulled translations from TransifexClaude Paroz
2016-04-23Fixed #26427 -- Ensured deleted setting doesn't appear in dir(settings)Claude Paroz
2016-04-13Refs #26484 -- Avoided masking useful exceptions in manage.py's ImportError.Tim Graham
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-03-29Raised a more helpful ImportError message in manage.py template.Ben Welsh
2016-03-08Fixed #26033 -- Added Argon2 password hasher.Bas Westerbaan
2016-03-08Fixed #25933 -- Allowed an unprefixed default language in i18n_patterns().Krzysztof Urbaniak
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-01-25Fixed #26125 -- Fixed E731 flake warnings.userimack
2016-01-25Fixed #25968 -- Changed project/app templates to use a "py-tpl" suffix.Chris Lamb
Debian packages unconditionally byte-compile .py files on installation and do not silence errors by design. Therefore, we need a way of shipping these invalid .py files without a .py extension but ensuring that when we template them, they end up as .py. We don't special-case .py files so that the all the TemplateCommand command-line options (eg. extra_files and extensions) still work entirely as expected and it may even be useful for other formats too.
2016-01-20Corrected English name of nb language.Petter Reinholdtsen
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
Thanks to Tim Graham for the review.
2015-12-31Updated translations from TransifexClaude Paroz
Forward port of 59f3590ca7 from stable/1.9.x.
2015-12-12Fixed #25909 -- Added unicode_literals import to apps.py generated by startapp.Tim Graham
2015-12-12Fixed #25717 -- Corrected Slovak local nameClaude Paroz
2015-12-11Fixed #25918 -- Removed unused LOGOUT_URL setting.Tim Graham
Thanks hop for the report and patch.
2015-12-09Fixed #25711 -- Updated the project template's include() example.Tim Graham
Referencing URLs by dotted path is a stronger convention than importing the URLs.
2015-12-01Pulled core Django translations from TransifexClaude Paroz
Forward port of 3039d76bd6f from stable/1.9.x
2015-11-27Added Scottish Gaelic as new available languageClaude Paroz
Refs #25815. Thanks gunchleoc <fios@foramnagaidhlog.net> for the Scottish Gaelic formats.py.
2015-11-27Added Colombian Spanish as new available languageClaude Paroz
Refs #25815.
2015-10-09Updated translation catalogsClaude Paroz
Forward port of f717cb2ab4 from stable/1.9.x.
2015-10-07Fixed #25525 -- Added instructions about importing include() in urls.pyBaptiste Mispelon
2015-09-23Removed deprecated TEMPLATE_* settings per deprecation timeline.Tim Graham
2015-09-23Refs #23957 -- Required session verification per deprecation timeline.Tim Graham