diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2011-02-23 13:36:58 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2011-02-23 13:36:58 +0000 |
| commit | 7aa84917a4ae8ca380fea1ae1937706d367389ed (patch) | |
| tree | c9e1aa857e9ee1bea2b27be8854304e8ec910d41 /docs/ref/templates/api.txt | |
| parent | 6ce03dd888cba5fc63feac0b2535972c84ebc6e2 (diff) | |
Fixed #15299 -- Started the process of migrating the auth context processor support classes into the auth context processor module. Thanks to shailesh for the report, and v1v3kn for the draft patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15635 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/templates/api.txt')
| -rw-r--r-- | docs/ref/templates/api.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt index 71fcbd9f56..ba78f15e81 100644 --- a/docs/ref/templates/api.txt +++ b/docs/ref/templates/api.txt @@ -423,7 +423,7 @@ If :setting:`TEMPLATE_CONTEXT_PROCESSORS` contains this processor, every via the :doc:`messages framework </ref/contrib/messages>`. * ``perms`` -- An instance of - ``django.core.context_processors.PermWrapper``, representing the + ``django.contrib.auth.context_processors.PermWrapper``, representing the permissions that the currently logged-in user has. .. versionchanged:: 1.2 @@ -435,6 +435,11 @@ If :setting:`TEMPLATE_CONTEXT_PROCESSORS` contains this processor, every ``user.get_and_delete_messages()``. It has been changed to include any messages added via the :doc:`messages framework </ref/contrib/messages>`. +.. versionchanged:: 1.3 + Prior to version 1.3, ``PermWrapper`` was located in + ``django.contrib.auth.context_processors``. + + django.core.context_processors.debug ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
