Author: jezdez
Date: 2010-02-26 11:06:09 -0600 (Fri, 26 Feb 2010)
New Revision: 12612

Modified:
   django/trunk/docs/ref/settings.txt
   django/trunk/docs/ref/templates/api.txt
Log:
Fixed #12968 - Added missing versionadded/-changed doc markers for r12466. 
Thanks, Karen and Ramiro.

Modified: django/trunk/docs/ref/settings.txt
===================================================================
--- django/trunk/docs/ref/settings.txt  2010-02-26 17:05:52 UTC (rev 12611)
+++ django/trunk/docs/ref/settings.txt  2010-02-26 17:06:09 UTC (rev 12612)
@@ -1412,6 +1412,11 @@
    default.  For more information, see the :ref:`messages documentation
    <ref-contrib-messages>`.
 
+.. versionchanged:: 1.2
+    The auth context processor was moved in this release from its old location
+    ``django.core.context_processors.auth`` to
+    ``django.contrib.auth.context_processors.auth``.
+
 .. setting:: TEMPLATE_DEBUG
 
 TEMPLATE_DEBUG

Modified: django/trunk/docs/ref/templates/api.txt
===================================================================
--- django/trunk/docs/ref/templates/api.txt     2010-02-26 17:05:52 UTC (rev 
12611)
+++ django/trunk/docs/ref/templates/api.txt     2010-02-26 17:06:09 UTC (rev 
12612)
@@ -325,6 +325,11 @@
    The ``'messages'`` context processor was added.  For more information, see
    the :ref:`messages documentation <ref-contrib-messages>`.
 
+.. versionchanged:: 1.2
+    The auth context processor was moved in this release from its old location
+    ``django.core.context_processors.auth`` to
+    ``django.contrib.auth.context_processors.auth``.
+
 Each processor is applied in order. That means, if one processor adds a
 variable to the context and a second processor adds a variable with the same
 name, the second will override the first. The default processors are explained
@@ -378,6 +383,10 @@
       permissions that the currently logged-in user has.
 
 .. versionchanged:: 1.2
+    This context processor was moved in this release from
+    ``django.core.context_processors.auth`` to its current location.
+
+.. versionchanged:: 1.2
    Prior to version 1.2, the ``messages`` variable was a lazy accessor for
    ``user.get_and_delete_messages()``. It has been changed to include any
    messages added via the :ref:`messages framework <ref-contrib-messages>`.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to