summaryrefslogtreecommitdiff
path: root/django/conf
AgeCommit message (Collapse)Author
2016-06-15[1.10.x] Fixed broken links in docs and comments.Ville Skyttä
Backport of 96f97691ad5e1483263cea3bb4e4021b4c8dcc41 from master
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
2015-09-23Refs #22384 -- Removed the ability to reverse URLs by dotted path per ↵Tim Graham
deprecation timeline.
2015-09-23Refs #23276 -- Removed passing views as strings to url() per deprecation ↵Tim Graham
timeline.
2015-09-23Refs #22218 -- Removed conf.urls.patterns() per deprecation timeline.Tim Graham
2015-09-23Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham
2015-09-07Fixed #25356 -- Removed default_app_config from startapp template.Tim Graham
Also discouraged its use outside the intended use case.
2015-09-05Fixed #25334 -- Provided a way to allow cross-origin unsafe requests over HTTPS.Joshua Kehn
Added the CSRF_TRUSTED_ORIGINS setting which contains a list of other domains that are included during the CSRF Referer header verification for secure (HTTPS) requests.
2015-08-31Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant
2015-08-31Refs #24121 -- Added repr() to LazySettings, Settings, and UserSettingsHolder.Keryn Knight
2015-08-08Updated Wikipedia links to use httpsClaude Paroz
2015-08-04Fixed #25211 -- Added HttpRequest.get_port() and USE_X_FORWARDED_PORT setting.Matt Robenolt
2015-08-03Fixed #25194 -- Fixed Korean YEAR_MONTH_FORMAT and MONTH_DAY_FORMAT.Donggi Jung
'F' translates a month to a Korean name with a month number so, for example, 'F 월' becomes '10 월월' for October. This should be either 'F' or 'n월', and I followed conventions in other languages like Japanese and Chinese.
2015-07-16Fixed #25120 -- Deprecated egg template loader.Tim Graham
2015-06-27Sorted imports in __init__.py files.Tim Graham
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-06-16Fixed #24971 -- Made startapp generate an apps.pyMounir Messelmeni
2015-06-11Fixed #24950 -- Added unicode_literals to models.py in app templateMarkus Holtermann
Thanks Tim Graham for the patch
2015-06-08Fixed #21927 -- Made application and instance namespaces more distinct.Marten Kenbeek
Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces.
2015-06-08Fixed #24796 -- Added a hint on placement of SecurityMiddleware in ↵Marissa Zhou
MIDDLEWARE_CLASSES. Also moved it in the project template.
2015-06-07Fixed #16860 -- Added password validation to django.contrib.auth.Erik Romijn
2015-04-30Updated translations from TransifexClaude Paroz
Updates for languages: Indonesian, Belarusian, Persian, and Dutch. Forward port of cb370f8510 from stable/1.8.x
2015-04-14Fixed #24635 -- Updated deprecated urls.py examples in default project template.Andrew Pinkham