summaryrefslogtreecommitdiff
path: root/docs/topics/auth
AgeCommit message (Collapse)Author
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-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-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-01Unified some doc links to OneToOneField and ManyToManyField.Tim Graham
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
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-07Fixed #24855 -- Allowed using contrib.auth.login() without credentials.Paulo Poiati
Added an optional `backend` argument to login().
2015-12-08Fixed user_passes_test() signature in docs.Gavin Wahl
2015-12-08Fixed #25895 -- Used a consistent style for UserAdmin overrides.Tim Graham
Thanks Justin Abrahms for the report.
2015-12-05Removed deprecated usage of url tag from auth docs.Florian Apolloner
2015-12-03Fixed many spelling mistakes in code, comments, and docs.Josh Soref
2015-12-02Updated link to 1000 common passwords.Eliezer Kanal
xato.net is dead; replaced with link to archive.org.
2015-11-16Fixed #25755 -- Unified spelling of "website".Agnieszka Lasyk
2015-11-12Fixed #25744 -- Corrected reference to User object in auth docs.Anderson Resende
2015-11-12Fixed #25169 -- Documented stacking of permission_required and login_required.Bryan Marty
2015-11-03Fixed typo in docs/topics/auth/default.txt.japrogramer
2015-10-27Fixed #25550 -- Deprecated direct assignment to the reverse side of a ↵Tim Graham
related set.
2015-09-28Documented auth's login/logout function parameters.Tim Graham
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-23Refs #23957 -- Required session verification per deprecation timeline.Tim Graham
2015-09-23Refs #21648 -- Removed is_admin_site option from password_reset() view.Tim Graham
Per deprecation timeline.
2015-09-22Refs #24115 -- Added docs for password updates on bcrypt rounds change.Tim Graham
2015-09-18Fixed #24944 -- Added extra_email_context parameter to password_reset() view.sujayskumar
2015-08-20Refs #24914 -- Added docs for more auth mixin methods.Tim Graham
2015-08-08Updated Wikipedia links to use httpsClaude Paroz
2015-08-05Fixed #25229 -- Clarified how an iterable works with @permission_requiredTim Graham
2015-08-04Fixed password_reset signature in docsAlasdair Nicol
2015-07-31Fixed #25202 -- Fixed typo in docs/topics/auth/customizing.txtTim Graham
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ↵Flavio Curella
ForeignKey/OneToOneField
2015-07-27Fixed #25159 -- Removed brackets from class/function/method signatures in docs.Tim Graham
Thanks hellbeast for the initial patch.
2015-07-27Fixed #25142 -- Added PermissionRequiredMixin.has_permission() to allow ↵Akis Kesoglou
customization.
2015-07-25Fixed #25166 -- Clarified how auth permissions are created.Tim Graham
Thanks Baptiste Mispelon for report and review.
2015-07-25Fixed malformed Sphinx directives.Tim Graham
2015-07-24Converted tabs to spaces in topics/auth/default.txtTim Graham
2015-07-21Fixed #24126 -- Deprecated current_app parameter to auth views.lukasz.wojcik
2015-07-21Normalized indentation and line lengths in docs/topics/auth/default.txt.Tim Graham
2015-07-20Refs #16860 -- Moved password_changed() logic to AbstractBaseUser.Tim Graham
Thanks Carl Meyer for review.
2015-07-10Fixed #25083 -- Added SessionAuthenticationMiddleware to auth installation docsNick Sweeting
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-06-17Fixed #24914 -- Added authentication mixins for CBVsMarkus Holtermann
Added the mixins LoginRequiredMixin, PermissionRequiredMixin and UserPassesTestMixin to contrib.auth as counterparts to the respective view decorators. The authentication mixins UserPassesTestMixin, LoginRequiredMixin and PermissionRequiredMixin have been inspired by django-braces <https://github.com/brack3t/django-braces/> Thanks Raphael Michel for the initial patch, tests and docs on the PR and Ana Balica, Kenneth Love, Marc Tamlyn, and Tim Graham for the review.
2015-06-17Removed usage of string-based url() in auth docs.Tim Graham
2015-06-10Refs #16860 -- Minor edits and fixes to password validation.Tim Graham
2015-06-08Fixed #24929 -- Allowed permission_required decorator to take any iterableRaphael Michel
2015-06-07Fixed #16860 -- Added password validation to django.contrib.auth.Erik Romijn
2015-06-06Fixed #24910 -- Added createsuperuser support for non-unique USERNAME_FIELDsAlasdair Nicol
Clarified docs to say that a non-unique USERNAME_FIELD is permissable as long as the custom auth backend can support it.
2015-05-27Removed unused import in example code in docs/topics/auth/default.txtKevin Marsh