summaryrefslogtreecommitdiff
path: root/docs/topics/auth
AgeCommit message (Collapse)Author
2015-09-28[1.8.x] Documented auth's login/logout function parameters.Tim Graham
Backport of c14b6b52ff131db263bf06a02f903a73390975da from master
2015-08-08[1.8.x] Updated Wikipedia links to use httpsClaude Paroz
Backport of 64982cc2fb from master.
2015-08-05[1.8.x] Fixed #25229 -- Clarified how an iterable works with ↵Tim Graham
@permission_required Backport of 16a8d01308f8ca4a7b4673424059424ba3fe36c8 from master
2015-08-04[1.8.x] Fixed password_reset signature in docsAlasdair Nicol
Backport of 6d7a9d96fe57597719bc40491e3d428f01757ef3 from master
2015-07-27[1.8.x] Fixed #25159 -- Removed brackets from class/function/method ↵Tim Graham
signatures in docs. Thanks hellbeast for the initial patch. Backport of 87d55081ea398c65b2503d22ed3907a9175ec729 from master
2015-07-25[1.8.x] Fixed #25166 -- Clarified how auth permissions are created.Tim Graham
Thanks Baptiste Mispelon for report and review. Backport of 217f173be025d2cce6484c760ea6ec77436f26a1 from master
2015-07-21[1.8.x] Normalized indentation and line lengths in docs/topics/auth/default.txt.Tim Graham
Backport of 5fd83db255500507484c5fedbd98763460a59656 from master
2015-07-10[1.8.x] Fixed #25083 -- Added SessionAuthenticationMiddleware to auth ↵Nick Sweeting
installation docs Backport of f0857c09fb51b21afb3e55da53bce962466af6d3 from master
2015-06-23[1.8.x] Renamed RemovedInDjango20Warning to RemovedInDjango110Warning.Tim Graham
2015-06-17[1.8.x] Removed usage of string-based url() in auth docs.Tim Graham
Backport of 58665dded006a4bbb9789e92cd280265a4f3dee8 from master
2015-05-27[1.8.x] Removed unused import in example code in docs/topics/auth/default.txtKevin Marsh
Backport of 10945ebeb84157a284ad96f453ee13305a9d8a94 from master
2015-05-22[1.8.x] Fixed typo in docs/topics/auth/default.txtTim Graham
Backport of 00d763a4fbc1c1a0b3729afad1d0109b6ea90e13 from master
2015-05-21[1.8.x] Enhanced registration/login.html example template.Laurent Peuch
Backport of 1369da676f3bd83d694ca5f00c5012f16b007acb from master
2015-05-13[1.8.x] Fixed #24789 -- Fixed wrong positional args order in doc exampleCharles Dee Rice
Arguments shown in example code (signal, sender, instance) appeared to be the incorrect positional arguments for a post_save signal (which might start as: sender, instance, created), as documented: ​https://docs.djangoproject.com/en/1.8/ref/signals/#post-save Backport of 4f3c44424187de20d7f75fdde6624b9f683a9cf2 from master.
2015-05-11[1.8.x] Fixed #24780 -- Removed outdated discussion of signals and custom users.Tim Graham
Backport of 8e86d9d3dfd68bebbfd1dd5006e0c25696855269 from master
2015-04-07[1.8.x] Fixed #24429 -- Doc'ed that Django 1.8 doesn't require an integer PK ↵Tim Graham
for custom user models. Backport of 981e3b9394022810bd536474344e2f91c190b858 from master
2015-04-06[1.8.x] Added admonition about reusable apps and AUTH_USER_PROFILE.Thomas Güttler
Backport of 566c9362363f4b65cc64a35f907c2d6c39d0289e from master
2015-04-03[1.8.x] Fixed #24556 -- Added reminder about HTTPS to passwords docs.Sam Thursfield
Backport of 1119063c69eb4fc091c212e59462f3ec3d5676a4 from master
2015-03-28[1.8.x] Fixed syntax highlighting in docs/topics/auth/default.txtTim Graham
Backport of 3e132406e3a95b3fe54e75129013e10bf3e9e86a from master
2015-03-24[1.8.x] Fixed #24501 -- Improved auth.decorators.user_passes_test() example.Matt Seymour
Backport of fca14cd3f27a01f7ba1fe32ea9587fa75b85713a from master
2015-03-13[1.8.x] Refs #23559 -- warned about consequences of letting users edit User ↵Remco Kranenburg
model in admin. Backport of f6b09a7f85c3b67b2011553838b079788c413432 from master
2015-03-08[1.8.x] Fixed #21661 -- Expanded authentication views documentationRik
Backport of eb9b7abb833a6d317e355265552d47e0d8f24af8 from master.
2015-03-05[1.8.x] Stressed authentication should be successful before logging in a user.Marten Kenbeek
Backport of 8e744fa1507b6d425860c54e7673e603279367eb from master
2015-01-01Removed doc note about PasswordResetForm requiring an integer PK.Tim Graham
This limitation was lifted in refs #14881.
2014-12-28Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin
2014-12-05Fixed #23957 -- Started deprecation toward requiring session verification.Tim Graham
Thanks Carl Meyer for review.
2014-11-27Fixed #23847 -- Improved the email_check example in the auth documentation.Berker Peksag
2014-11-15Fixed #23793 -- Clarified password reset behavior in auth docsYigit Guler
2014-10-27Fixed documentation of make_password kwargs.Ilya Baryshev
2014-08-31Removed sentence from docs about migrate prompting to add a superuser.Michael Angeletti
2014-08-23Fixed #21648 -- Deprecated is_admin_site option to auth.views.password_reset().Tim Graham
2014-08-19Removed unnecessary code-block directives.areski
2014-08-19Fixed #23314 -- Tempered recommendation of storing profile data on custom user.Tim Graham
Thanks gavinwahl for the report.
2014-08-13Refs #23276 -- Added missing url() in some places.Collin Anderson
2014-07-30Fixed #23067 -- Updated docs to use django-adminChristoph Heer
2014-07-30Fixed #23132 -- Removed confusing clause in auth docs.Tim Graham
2014-07-21Replaced instances of 'his/her' with 'their'.Iain Dawson
2014-07-08Fixed #21832 -- Updated prompt, tests, and docs to show that USERNAME_FIELD ↵Anubhav Joshi
supports FK after 9bc2d76. Also added get_input_data() hook in createsuperuser. Thanks Chris Jerdonek and Tim Graham for review.
2014-07-03Fixed #21755 -- Added ForeignKey support to REQUIRED_FIELDS.Anubhav Joshi
This allows specifying ForeignKeys in REQUIRED_FIELDS when using a custom User model. Thanks cjerdonek and bmispelon for suggestion and timgraham for review.
2014-07-01Fixed #22932: Documented circular dependency issues with swappable userAndrew Godwin
2014-06-19Fixed #22874: Document that AUTH_USER_MODEL must be in first migrationAndrew Godwin
2014-06-17Fixed #22853: Swapped models are now ignored for migration operations.Andrew Godwin
2014-06-10Fixed #22770 -- Removed create_superuser from post_migrate signals.Tim Graham
Moved logic to syncdb command for backwards compatibility.
2014-06-10Fixed #17431 -- Added send_mail() method to PasswordResetForm.Jorge C. Leitão
Credits for the initial patch go to ejucovy; big thanks to Tim Graham for the review.
2014-06-10Corrected some indentation in docs/topics/auth/default.txt.Tim Graham
2014-05-17Fixed #22647 -- Documented redirect_field_name keyword argument for ↵Víðir Valberg Guðmundsson
user_passes_test.
2014-05-16Fixed #15716 - Authentication backends can short-circuit authorization.Jorge C. Leitão
Authorization backends can now raise PermissionDenied in "has_perm" and "has_module_perms" to short-circuit authorization process.
2014-04-22Updated grammar in description of django.contrib.auth.Ray Ashman
2014-04-17Stray parenAlex Gaynor
2014-04-17Include an 'extra_requires' for bcryptAlex Gaynor