summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
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-03-03Fixed #26295 -- Allowed using i18n_patterns() in any root URLconf.Simon Charette
Thanks Tim for the review.
2016-03-01Fixed CVE-2016-2513 -- Fixed user enumeration timing attack during login.Florian Apolloner
This is a security fix.
2016-02-25Corrected a run on sentence in doc/topics/db/models.txt.Tim Graham
2016-02-25Refs #26270 -- Reorganized TestCase docs.Tim Graham
2016-02-25Fixed #12233 -- Allowed redirecting authenticated users away from the login ↵Olivier Le Thanh Duong
view. contrib.auth.views.login() has a new parameter `redirect_authenticated_user` to automatically redirect authenticated users visiting the login page. Thanks to dmathieu and Alex Buchanan for the original code and to Carl Meyer for the help and review.
2016-02-24Fixed a function signature in docs/topics/auth/default.txt.Tim Graham
2016-02-24Removed docs of deprecated SimpleTestCase warnings behavior.Tim Graham
Removed in Django 1.7 (4f6be9a0c43050500af598527e1453d27c5c5b85).
2016-02-22Fixed #26187 -- Removed weak password hashers from PASSWORD_HASHERS.Tim Graham
2016-02-23Fixed spelling errorMarkus Holtermann
2016-02-22Fixed #26188 -- Documented how to wrap password hashers.Tim Graham
2016-02-22Fixed import location of check_password() in docs.Daniel Quinn
2016-02-19Refs #25735 -- Made @tag decorator importable from django.test.Tim Graham
2016-02-17Refs #19353 -- Added tests for using custom user models with built-in auth ↵Berker Peksag
forms. Also updated topics/auth/customizing.txt to reflect that subclasses of UserCreationForm and UserChangeForm can be used with custom user models. Thanks Baptiste Mispelon for the initial documentation.
2016-02-17Fixed #25735 -- Added support for test tags to DiscoverRunner.Jakub Paczkowski
Thanks Carl Meyer, Claude Paroz, and Simon Charette for review.
2016-02-13Fixed #11665 -- Made TestCase check deferrable constraints after each test.Jon Dufresne
2016-02-12Added import in docs/topics/email.txt example.Camilo Nova
2016-02-12Removed unneeded hint=None/obj=None in system check messages.Tim Graham
2016-02-12Fixed allow_migrate() signature in documentationMarkus Holtermann
2016-02-11Fixed #26111 -- Clarified that fixtures are loaded once per TestCase.Johannes Linke
2016-02-11Clarified "database column type" explanation.Becka R
2016-02-11Updated instructions for gettext on Windows.Tim Graham
2016-02-11Fixed #26206 -- Fixed docs comments causing empty code blocks.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-02-02Refs #26089 -- Removed obsolete docs about custom user model testing.Tim Graham
2016-02-01Fixed #26152 -- Documented how to avoid django.setup() deadlock in ↵Harry
standalone scripts.
2016-02-01Unified some doc links to OneToOneField and ManyToManyField.Tim Graham
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
2016-01-29Added a missing session setting in docs.Tim Graham
2016-01-28Fixed #25354 -- Added class/app_label interpolation for related_query_name.James Pulec
2016-01-27Fixed #26136 -- Removed URL reversing by dotted path from JavaScript catalog ↵Yoong Kang Lim
example.
2016-01-26Refs #26142 -- Documented that Formset's extra=0 doesn't prevent creating ↵Tim Graham
objects.
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-25Fixed Sphinx highlight warnings in docs.Tim Graham
2016-01-25Fixed #26132 -- Discouraged use of TransactionTestCase.fixtures.Tim Graham
2016-01-22Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus
2016-01-14Fixed #23868 -- Added support for non-unique django-admin-options in docs.Tim Graham
Also documented missing short command line options to fix #24134. This bumps the minimum sphinx version required to build the docs to 1.3.4. Thanks Simon Charette for review.
2016-01-14Fixed #25999 -- Removed promotion of RemovedInNextVersionWarning to loud by ↵Tim Graham
default.
2016-01-11Added missing period to "etc.".pp
2016-01-11Fixed #26048 -- Made admin selenium tests use implicitly_wait()Tim Graham
2016-01-11Fixed #25385 -- Allowed importing views.generic.View from views.View.Varun Sharma
2016-01-11Fixed #25684 -- Made runserver use logging for request/response output.Flavio Curella
Thanks andreif for the contributing to the patch.
2016-01-09Fixed a typo in a modelforms docs example.bmsleight
2016-01-09Added a missing bracket in a queries docs example.anabelensc
2016-01-07Fixed #24855 -- Allowed using contrib.auth.login() without credentials.Paulo Poiati
Added an optional `backend` argument to login().
2016-01-04Added missing step to transitioning squashed migrations.Jarek Glowacki
2015-12-31Removed British/Austrialian word: whilist.Tim Graham
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
Thanks to Tim Graham for the review.
2015-12-29Fixed #25985 -- Updated signature of ModelAdmin.formfield_for_* to make ↵Tim Graham
request a positional argument.