summaryrefslogtreecommitdiff
path: root/django/contrib/auth
AgeCommit message (Expand)Author
2008-08-01Added a login link to the password reset completion screen.Luke Plant
2008-07-31Fixed #7723 - implemented a secure password reset form that uses a token and ...Luke Plant
2008-07-31Fixed #8042 -- Modified the password reset form so that the email field lengt...Russell Keith-Magee
2008-07-22Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...Adrian Holovaty
2008-07-22Fixed #7304 -- Gave AnonymousUser a has_perms() method, which it was lackingAdrian Holovaty
2008-07-19Fixed #7741: django.newforms is now django.forms. This is obviously a backwar...Jacob Kaplan-Moss
2008-07-18Merged the newforms-admin branch into trunk.Brian Rosner
2008-07-02Fixed a long and complex line by breaking into a for loop, with the added ben...Gary Wilson Jr
2008-07-02Added docstring and other minor style fixes.Gary Wilson Jr
2008-06-30Refs #7521 -- Re-reverted [7716] (originally reverted in [7726]), now modifie...Russell Keith-Magee
2008-06-30Fixed #6089 -- Removed default ordering on the User class.Malcolm Tredinnick
2008-06-26Fixed #6306 -- redirect_to_login() helper function now quotes the URL argumen...Adrian Holovaty
2008-06-26Fixed #7274 -- Improved the django.contrib.auth password_reset() view not to ...Adrian Holovaty
2008-06-23Fixed #7521 -- Reverted [7716]. Fixed URLs in test case broke any application...Russell Keith-Magee
2008-06-20Added basic tests for auth.views.password_resetLuke Plant
2008-06-18Fixed #3393: login view no longer assumes that set_test_cookie has been calle...Jacob Kaplan-Moss
2008-06-08Fixed #7394: fixed bug with syncdb and createsuperuser introduced in [7590]. ...Jacob Kaplan-Moss
2008-06-08Fixed #7392 -- Corrected a typo in the backwards-compatibility layer to the n...Russell Keith-Magee
2008-06-08Fixed #5614: added 'manage.py createsuperuser'. Thanks, programmerq.Jacob Kaplan-Moss
2008-04-13Updated the inline help text for User.is_active.Malcolm Tredinnick
2008-03-08Fixed #5922 -- Turned `ModelBackend` authentication backend into a new-style ...Gary Wilson Jr
2008-02-25Fixed #5701 -- Fixed decorators to take the name, attributes, and docstring o...Gary Wilson Jr
2008-01-13Fixed #3165 -- Really allow underscores when making a superuser, thanks `Smil...Gary Wilson Jr
2007-12-11Fixed #6174 -- Made `AnonymousUser.is_active` False instead of True since `An...Gary Wilson Jr
2007-11-09Fixed bug in /admin/doc/views/ caused by [6658]Luke Plant
2007-11-07Fixed #4376 -- login_required now works with bound methods. Thanks, Steven B...Luke Plant
2007-10-27Fixed #5798 -- Added a missing translation marker. Thanks, maru.Malcolm Tredinnick
2007-09-30Fixed #5636 -- Added missing Set import for Python2.3 support. Thanks, wangch...Russell Keith-Magee
2007-09-19Fixed $5457 - the auth system now delegates permission checking to auth backe...Jacob Kaplan-Moss
2007-09-15Fixed #3604 -- django.contrib.auth password checking now uses hashlib if it's...Adrian Holovaty
2007-09-15Small change to modpython auth handler to support Apache 2.2Jacob Kaplan-Moss
2007-09-15Fixed #3032 -- Added some useful methods and attributes so that AnonymousUser...Malcolm Tredinnick
2007-09-14Fixed #5308 -- Redirect from pages that need login and have Unicode URL no lo...Adrian Holovaty
2007-09-14Fixed #5394 -- REDIRECT_FIELD_NAME is now configurable. Thanks, Petr Marhoun,...Adrian Holovaty
2007-08-25Fixed #5227 -- Made the redirect security check in django.contrib.auth.views....Adrian Holovaty
2007-08-20Refactored quote_name() to DatabaseOperations.quote_name(). Refs #5106Adrian Holovaty
2007-08-14Fixed bug in [5885]Adrian Holovaty
2007-08-14Changed django.contrib.auth.views.login to use RequestSite if the sites frame...Adrian Holovaty
2007-08-05Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `For...Gary Wilson Jr
2007-07-28After discussing with Malcolm, added set_unusable_password() and has_usable_p...Simon Willison
2007-07-13Fixed #3505 -- Added handling for the error raised when the user forgets the ...Russell Keith-Magee
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-07-03Fixed #4751 -- Fixed that AnonymousUser.__str__ to always return a stringMalcolm Tredinnick
2007-06-25Removed unneeded import.Malcolm Tredinnick
2007-06-23Fixed #4607 -- Tweaked checks for features missing in Python 2.3 to not assumeMalcolm Tredinnick
2007-06-19Fixed behaviour of contrib.auth.forms.PasswordResetForm when more thanLuke Plant
2007-06-15Fixed #4015 -- Changed login() and logout() messages to update request.user ifMalcolm Tredinnick
2007-04-25Fixed #3379 -- Changed login() so that we update last_login when a userMalcolm Tredinnick
2007-04-25Fixed #3316 -- Added support for crypt hashing of passwords, mostly to supportMalcolm Tredinnick
2007-04-25Fixed #3185 -- Made values for login, logout and post-login redirect URLsMalcolm Tredinnick