django1/django/contrib/auth
Florian Apolloner 52a9e15794 Fixed a regression in the user admin page introduced in a92e7f37c4.
a92e7f37c4 switched most of the internal stuff
to format_html. Using format_html in the `render` method of
`ReadOnlyPasswordHashWidget` caused it to generate `SafeString` instances.
Later these safe strings where returned from `BoundField.__unicode__` which
caused force_unicode to loose the "safe" information. This commit fixes that by
ensuring that the render method returns `SafeUnicode` instead of `SafeString`.
2012-07-07 15:29:20 +02:00
..
fixtures Fixed #17944 -- Prevented an error in the user change page of the admin when the content of the password field doesn't match the expected format. Thanks saxix for the report and initial patch. 2012-03-22 08:10:19 +00:00
handlers Fixed #18029 -- Removed leftover mod_python files forgotten in r17835. 2012-03-31 14:50:54 +00:00
locale Pulled auth translations updates from Transifex. Refs #17822. 2012-03-23 02:48:24 +00:00
management Fixed #18269 -- Applied unicode_literals for Python 3 compatibility. 2012-06-07 18:08:47 +02:00
templates/registration Fixed #12202 -- Removed hardcoded password reset subject and added a subject_template_name parameter to the password_reset view. Thanks, Ramiro Morales, Claude Paroz and agabel. 2011-06-19 11:24:39 +00:00
tests Fixed #17966 -- Isolated ProfileTestCase from custom AUTH_PROFILE_MODULE 2012-06-25 20:26:17 +02:00
__init__.py Fixed #18013 -- Use the new 'as' syntax for exceptions. 2012-04-29 20:57:15 +02:00
admin.py Removed various unnecessary instances of mark_safe applied to URLs 2012-07-03 22:20:12 +01:00
backends.py Fixed #18269 -- Applied unicode_literals for Python 3 compatibility. 2012-06-07 18:08:47 +02:00
context_processors.py Cleaned up how ``request.user`` is set, this is a follow up to [16297]. Thanks for the review Luke. 2011-05-31 15:43:19 +00:00
create_superuser.py Fixed #7392 -- Corrected a typo in the backwards-compatibility layer to the new createsuperuser command. 2008-06-08 08:45:14 +00:00
decorators.py Fixed #4617 -- Added `raise_exception` option to `permission_required` decorator to be able to raise a PermissionDenied exception instead of redirecting to the login page. 2011-08-12 14:15:41 +00:00
forms.py Fixed a regression in the user admin page introduced in a92e7f37c4. 2012-07-07 15:29:20 +02:00
hashers.py Fixed #18269 -- Applied unicode_literals for Python 3 compatibility. 2012-06-07 18:08:47 +02:00
middleware.py Removed an unnecessary import 2011-06-06 12:11:48 +00:00
models.py Fixed #18269 -- Applied unicode_literals for Python 3 compatibility. 2012-06-07 18:08:47 +02:00
signals.py Fixed #5612 -- Added login and logout signals to contrib auth app. Thanks SmileyChris and pterk. 2010-11-26 13:33:27 +00:00
tokens.py Fixed a test that was broken at r16978. Refs #17055. 2011-10-16 09:46:01 +00:00
urls.py Fixed #16789 -- Added names to URLs in convenience contrib.auth urls.py. 2011-09-24 19:48:27 +00:00
views.py Fixed #15266 -- Applied login_required decorator to password_change_done view. Thanks, lasko. 2011-06-26 16:51:25 +00:00