From c2d8da7555e3fef30c43f3ffe2e8963ca1f9fdd5 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 18 Dec 2014 11:34:11 -0500 Subject: [PATCH] [1.7.x] Corrected indentation in docs to prevent inadvertent blockquote. --- docs/ref/request-response.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index 55afcd7c30..d67aae62e0 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -308,11 +308,11 @@ Methods .. method:: HttpRequest.is_ajax() - Returns ``True`` if the request was made via an ``XMLHttpRequest``, by - checking the ``HTTP_X_REQUESTED_WITH`` header for the string - ``'XMLHttpRequest'``. Most modern JavaScript libraries send this header. - If you write your own XMLHttpRequest call (on the browser side), you'll - have to set this header manually if you want ``is_ajax()`` to work. + Returns ``True`` if the request was made via an ``XMLHttpRequest``, by + checking the ``HTTP_X_REQUESTED_WITH`` header for the string + ``'XMLHttpRequest'``. Most modern JavaScript libraries send this header. + If you write your own XMLHttpRequest call (on the browser side), you'll + have to set this header manually if you want ``is_ajax()`` to work. If a response varies on whether or not it's requested via AJAX and you are using some form of caching like Django's :mod:`cache middleware