Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/contrib/auth
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #20846 -- Increased User.username max_length to ↵Tim Graham2015-10-292-2/+34
| | | | | | 254 characters. Thanks Collin Anderson and Nick Sandford for work on the patch.
* Fixed #25596 -- Fixed regression in password change view ↵Tim Graham2015-10-271-2/+3
| | | | | | | with custom user model. The reverse() added in 50aa1a790ca66c2a93e0a52e00c53375b269ff49 crashed on a custom user model.
* Pluralized translatable strings in password_validation.pyClaude Paroz2015-10-102-15/+29
| | | | Forward port of 86dc4889f from master.
* Updated translation catalogsClaude Paroz2015-10-091-73/+114
| | | | Forward port of f717cb2ab4 from stable/1.9.x.
* Fixed #25490 -- Made the logout() view send "no-cache" ↵Kaleb Elwert2015-10-021-0/+1
| | | | headers.
* Refs #16860 -- Fixed password help text when there ↵Antoine Catton2015-09-281-1/+1
| | | | | | aren't any validators. This avoids creating an empty list which is invalid HTML 4.
* Fixed #25457 -- Improved formatting of password ↵Tzu-ping Chung2015-09-252-2/+2
| | | | validation errors in management command output.
* Increased the default PBKDF2 iterations for the 1.10 ↵Tim Graham2015-09-241-1/+1
| | | | release cycle.
* Refs #23957 -- Required session verification per ↵Tim Graham2015-09-243-9/+5
| | | | deprecation timeline.
* Refs #21648 -- Removed is_admin_site option from ↵Tim Graham2015-09-241-12/+2
| | | | | | password_reset() view. Per deprecation timeline.
* Fixed #24944 -- Added extra_email_context parameter to ↵sujayskumar2015-09-192-3/+7
| | | | password_reset() view.
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-123-8/+47
|
* Fixed #25350 -- Added alias --no-input for --noinput to ↵Raphael Michel2015-09-081-1/+2
| | | | management commands.
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-311-1/+0
|
* Fixed #25324 -- Registered ModelAdmin instances with ↵Y3K2015-08-311-3/+2
| | | | @admin.register decorator
* Fixed #25089 -- Added password validation to ↵Alex Becker2015-08-022-3/+33
| | | | createsuperuser/changepassword.
* Removed unnecessary if statement in createsuperuser command.Tim Graham2015-08-021-7/+7
|
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-282-2/+11
| | | | on_delete for ForeignKey/OneToOneField
* Fixed #25142 -- Added ↵Akis Kesoglou2015-07-271-2/+8
| | | | PermissionRequiredMixin.has_permission() to allow customization.
* Fixed #24126 -- Deprecated current_app parameter to auth ↵lukasz.wojcik2015-07-211-35/+43
| | | | views.
* Reworded contrib.auth forms' password confirmation ↵Wim Feijen2015-07-201-2/+2
| | | | | | | | help_text. "As above" refers to a spatial orientation, which might not be present, for example when the two password fields are shown next to each other.
* Fixed #25052; refs #16860 -- Added password validation ↵Tim Graham2015-07-201-0/+2
| | | | to UserCreationForm.
* Refs #16860 -- Moved password_changed() logic to ↵Tim Graham2015-07-202-2/+16
| | | | | | AbstractBaseUser. Thanks Carl Meyer for review.
* Refs #25073 -- Copied recently added verbose_names to ↵Tim Graham2015-07-171-1/+1
| | | | migrations.
* Explicitly passed rounds as rounds to bcrypt.gensalt()Curtis Maloney2015-07-131-1/+1
|
* Fixed #25073 -- Added verbose_name to contrib's model ↵Szilveszter Farkas2015-07-121-1/+1
| | | | fields that were missing it.
* Fixed #25029 -- Added PersistentRemoteUserMiddleware for ↵Jan Pazdziora2015-07-021-1/+15
| | | | login-page-only external authentication.
* Sorted imports in __init__.py files.Tim Graham2015-06-271-1/+1
|
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-242-5/+5
| | | | | Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
* Fixed #25009 -- Allowed ↵Francisco Albarran2015-06-221-9/+14
| | | | User.objects.create_user(...,is_staff=True) to work.
* Fixed #24914 -- Added authentication mixins for CBVsMarkus Holtermann2015-06-171-0/+110
| | | | | | | | | | | | | | 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.
* Refs #16860 -- Fixed a resource and deprecation warning ↵Tim Graham2015-06-161-1/+3
| | | | in password validation.
* Corrected to not erroneously mention email as being ↵elena2015-06-151-1/+1
| | | | | | required. Email field isn't required.
* Refs #16860 -- Minor edits and fixes to password validation.Tim Graham2015-06-101-7/+23
|
* Fixed #24929 -- Allowed permission_required decorator to ↵Raphael Michel2015-06-081-1/+2
| | | | take any iterable
* Fixed #16860 -- Added password validation to ↵Erik Romijn2015-06-073-4/+188
| | | | django.contrib.auth.
* Fixed #24910 -- Added createsuperuser support for ↵Alasdair Nicol2015-06-061-8/+8
| | | | | | | non-unique USERNAME_FIELDs Clarified docs to say that a non-unique USERNAME_FIELD is permissable as long as the custom auth backend can support it.
* Added contrib.auth migration for refs #13147.Tim Graham2015-05-281-0/+32
|
* Removed unnecessary arguments in .get method callsPiotr Jakimiak2015-05-132-2/+2
|
* Improved formatting of auth model fields.Edvinas Jurevicius2015-05-051-27/+56
|
* Fixed #24564 -- Moved AbstractBaseUser and ↵Dan Watson2015-05-052-107/+115
| | | | BaseUserManager so they can be used without auth in INSTALLED_APPS
* Fixed #24737 -- Removed unnecesary kwargs in ↵Luis Del Giudice2015-05-031-4/+2
| | | | UserManager._create_user()
* Updated translations from TransifexClaude Paroz2015-04-302-16/+23
| | | | | Updates for languages: Indonesian, Belarusian, Persian, and Dutch. Forward port of cb370f8510 from stable/1.8.x
* Refactored PasswordResetTokenGenerator to be a bit more ↵Matt Robenolt2015-04-201-6/+13
| | | | extensible.
* Fixed #22993 -- Deprecated skipIfCustomUser decoratorChristopher Luc2015-04-071-0/+6
|
* Fetched updated contrib translations from TransifexClaude Paroz2015-04-01166-8603/+1837
| | | | Forward port of 5483c66f85 from stable/1.8.x
* Fixed #24115 -- Allowed bcrypt hashers to upgrade ↵Tim Graham2015-03-311-0/+4
| | | | | | passwords on rounds change. Thanks Florian Apolloner for the review.
* Refs #15779 -- Fixed UserChangeForm regression ↵Claude Paroz2015-03-281-1/+1
| | | | | | introduced by 1791a7e75 Thanks Tim Graham for reporting the regression.
* Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen2015-03-252-5/+10
| | | | | | | | Field.rel is now deprecated. Rel objects have now also remote_field attribute. This means that self == self.remote_field.remote_field. In addition, made the Rel objects a bit more like Field objects. Still, marked ManyToManyFields as null=True.
* Updated translation catalogsClaude Paroz2015-03-181-64/+63
| | | | | Strings are frozen in anticipation of the Django 1.8 release. Forward port of 1cd2584c980 from stable/1.8.x