summaryrefslogtreecommitdiff
path: root/docs/ref/request-response.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/request-response.txt')
-rw-r--r--docs/ref/request-response.txt10
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt
index d111e4c127..bf984f4fa8 100644
--- a/docs/ref/request-response.txt
+++ b/docs/ref/request-response.txt
@@ -1,5 +1,3 @@
-.. _ref-request-response:
-
============================
Request and response objects
============================
@@ -106,7 +104,7 @@ All attributes except ``session`` should be considered read-only.
* ``chunks(chunk_size=None)`` -- A generator that yields sequential
chunks of data.
- See :ref:`topics-files` for more information.
+ See :doc:`/topics/files` for more information.
Note that ``FILES`` will only contain data if the request method was POST
and the ``<form>`` that posted to the request had
@@ -165,14 +163,14 @@ All attributes except ``session`` should be considered read-only.
``user`` is only available if your Django installation has the
``AuthenticationMiddleware`` activated. For more, see
- :ref:`topics-auth`.
+ :doc:`/topics/auth`.
.. attribute:: HttpRequest.session
A readable-and-writable, dictionary-like object that represents the current
session. This is only available if your Django installation has session
- support activated. See the :ref:`session documentation
- <topics-http-sessions>` for full details.
+ support activated. See the :doc:`session documentation
+ </topics/http/sessions>` for full details.
.. attribute:: HttpRequest.raw_post_data