Author: lukeplant Date: 2008-12-02 18:44:12 -0600 (Tue, 02 Dec 2008) New Revision: 9555
Modified: django/trunk/docs/ref/contrib/csrf.txt Log: Updated csrf docs with 'versionadded' info Modified: django/trunk/docs/ref/contrib/csrf.txt =================================================================== --- django/trunk/docs/ref/contrib/csrf.txt 2008-12-03 00:34:18 UTC (rev 9554) +++ django/trunk/docs/ref/contrib/csrf.txt 2008-12-03 00:44:12 UTC (rev 9555) @@ -32,6 +32,8 @@ Exceptions ---------- +.. versionadded:: 1.1 + To manually exclude a view function from being handled by the CsrfMiddleware, you can use the ``csrf_exempt`` decorator (found in the ``django.contrib.csrf.middleware`` module). @@ -82,6 +84,10 @@ respectively. This allows the individual components to be used and/or replaced instead of using ``CsrfMiddleware``. +.. versionchanged:: 1.1 + (previous versions of Django did not provide these two components + of ``CsrfMiddleware`` as described above) + .. _9.1.1 Safe Methods, HTTP 1.1, RFC 2616: http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html Limitations --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
