summaryrefslogtreecommitdiff
path: root/docs/topics/auth
AgeCommit message (Collapse)Author
2013-11-01[1.6.x] Fixed typo -- "a" user, not "an" userSylvain Bellemare
Backport of c7dabe49dd from master
2013-10-30[1.6.x] Fixed #21294 -- Clarified the logout next_page argument.Tim Graham
Thanks wim at go2people.nl for the report. Backport of 51e6575472 from master
2013-10-25[1.6.x] Fixed #21325 -- Added missing argument to permission_required decorator.Tim Graham
Backport of cc2049cdd7 from master
2013-10-21[1.6.x] Added docs for the hasher's iteration count changes.Tim Graham
Backport of 28b70425afb2fb8bcbec09d249e37fa786f8a155 from master.
2013-10-09[1.6.x] Fixed grammar/typos in auth customization docsClaude Paroz
Backport of 1b9c72fc4f from master.
2013-10-08[1.6.x] Fixed #21164 -- Added documentation for issue with test users.Russell Keith-Magee
The package renaming restores the older package names (which were also the documented package names). This doesn't affect test discovery because the module in question doesn't contain any tests. Thanks to Carl for the design discussion. Backport of ddb5385 from master.
2013-09-25[1.6.x] Fixed #21116 -- Made usage of manage.py in docs more consistent.Tim Graham
Thanks daniel.quattro at gmail.com for the report. d1c9802811 from master.
2013-09-06[1.6.x] Fixed #20646 -- Clarified the use of AbstractBaseUser.REQUIRED_FIELDSTim Graham
Thanks craigbruce. Backport of db3de52807 from master
2013-08-04[1.6.x] Fixed #20855 -- Added documentation of current_app and extra_context ↵Justin Michalicek
params to django.contrib.auth views refs #5298 and refs #8342 Backport of 61ecb5f48a from master
2013-07-18[1.6.x] Fixed #20762 -- Clarified that add_fieldsets is not a standard ↵Tim Graham
ModelAdmin attribute. Backport of dce8945ea6 from master
2013-07-14[1.6.x] Fixed grammatical error in auth docsDavid Binetti
Backport of 51b50c47c7 from master
2013-07-11[1.6.x] Fixed #20730 -- Fixed "Programmatically creating permissions" error.Tim Graham
Thanks glarrain for the report. Backport of 684a606a4e from master
2013-07-05[1.6.x] Fixed #20224 -- Update docs examples which mention __unicode__Claude Paroz
Thanks Marc Tamlyn and Tim Graham for the review. Backport of 7442eb1a24 from master.
2013-07-04[1.6.x] Fixed #20134 -- Correct list of fields that UserManager requires.Tim Graham
Thanks semenov and pegler. Backport of da5069f68f from master.
2013-06-26Fixed #14881 -- Modified password reset to work with a non-integer UserModel.pk.Tim Graham
uid is now base64 encoded in password reset URLs/views. A backwards compatible password_reset_confirm view/URL will allow password reset links generated before this change to continue to work. This view will be removed in Django 1.7. Thanks jonash for the initial patch and claudep for the review.
2013-06-19Fixed broken reference in documentation.Baptiste Mispelon
2013-06-18Fixed #20593 -- Allow blank passwords in check_password() and set_password()Erik Romijn
2013-05-29Don't hard-code class names when calling static methodsGavin Wahl
normalize_email should be called on the instance, not the class. This has the same effect normally but is more helpful to subclassers. When methods are called directly on the class, subclasses can't override them.
2013-05-19Fixed some line wrapping, refs #20233Tim Graham
2013-05-19refs #20233 - Full custom user model example isn't really fullpostrational
Addition and fix for custom user model example documentation. https://code.djangoproject.com/ticket/20233
2013-05-17Fixed #20426 -- Added some extra info to the auth forms.Florian Apolloner
Thanks to Joel Hansson for the suggestion and Curtis Maloney for the initial patch.
2013-05-13Recommend using the bcrypt library instead of py-bcryptDonald Stufft
* py-bcrypt has not been updated in some time * py-bcrypt does not support Python3 * py3k-bcrypt, a port of py-bcrypt to python3 is not compatible with Django * bcrypt is supported on all versions of Python that Django supports
2013-05-11Update customizing.txtzhongqi
The origin statement "which could be ... or whatever" **misguides** many newbies like me. In fact, the ``login`` function in ``contrib.auth`` stores ``user.pk`` in session, then ``get_user`` function in ``contrib.auth`` gets ``user.pk`` in session and then passes it to your custom ``get_user`` as ``user_id``. Which means, ``user_id`` prarameter in your custom ``get_user`` has to be the primary key of ``User`` object, too.
2013-05-09Fixed #19733 - deprecated ModelForms without 'fields' or 'exclude', and ↵Luke Plant
added '__all__' shortcut This also updates all dependent functionality, including modelform_factory and modelformset_factory, and the generic views `ModelFormMixin`, `CreateView` and `UpdateView` which gain a new `fields` attribute.
2013-04-20Adapted uses of versionchanged/versionadded to the new form.Juan Catalano
Refs #20104.
2013-03-26Fix a missing " character in the password documentationDonald Stufft
2013-03-26Fixed #20138 -- Added BCryptSHA256PasswordHasherDonald Stufft
BCryptSHA256PasswordHasher pre-hashes the users password using SHA256 to prevent the 72 byte truncation inherient in the BCrypt algorithm.
2013-03-23Fixed #20119 -- Fixed typo in auth docsClaude Paroz
Thanks vinyll for the report.
2013-03-22Added missing markup to docs.Tim Graham
2013-02-24Fixed #19394 --Added note about auth forms and custom user models.Ben Konrath
2013-02-23Fixed #19402 - Clarified purpose of CustomUser.REQUIRED_FIELDSTim Graham
Thanks pydanny for the report and ptone for the patch.
2013-02-23Fixed #19758 -- Avoided leaking email existence through the password reset form.Horst Gutmann
2013-02-20Fixed #19868 -- Clarified purpose of custom user examplePreston Holmes
2013-02-19Updated a couple admonitions to use the warning directive.Tim Graham
2013-02-16Refs #14881 -- Document that User models need to have an integer primary key.Russell Keith-Magee
Thanks to Kaloian Minkov for the reminder about this undocumented requirement.
2013-02-15Fixed #19822 -- Added validation for uniqueness on USERNAME_FIELD on custom ↵Russell Keith-Magee
User models. Thanks to Claude Peroz for the draft patch.
2013-02-06Fixed #19743 - Documented some limitations of contrib.auth.Tim Graham
Thanks Aymeric for the suggestion.
2013-02-03Fixed a typo in docs/topics/auth/customizing.txtTim Graham
2013-01-29Fixed typos in docs and commentsTim Graham
2013-01-18Fixed #19628 - Noted that app for custom user model must be in INSTALLED_APPSTim Graham
Thanks dpravdin and Jordan Messina.
2013-01-18Fixed #19632 -- Bug in code sample.Aymeric Augustin
Thanks grossmanandy at bfusa com and Simon Charette.
2013-01-15Fixed #19614 -- Missing request argument in render call.Aymeric Augustin
Thanks Dima Pravdin for the report.
2013-01-04Fixed #19562 -- cleaned up password storage docsPreston Holmes
2013-01-02Fixed #19516 - Fixed remaining broken links.Tim Graham
Added -n to sphinx builds to catch issues going forward.
2013-01-02Fixed #19549 - Typo in docs/topics/auth/default.txtTim Graham
2012-12-29Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin
2012-12-28Fixed #19498 -- refactored auth documentationPreston Holmes
The auth doc was a single page which had grown unwieldy. This refactor split and grouped the content into sub-topics. Additional corrections and cleanups were made along the way.