summaryrefslogtreecommitdiff
path: root/docs/ref/request-response.txt
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2010-08-19 19:27:44 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2010-08-19 19:27:44 +0000
commit728effcfbdc29d7962b56d794f8911f57a9a63df (patch)
tree5b31294216a5866b4364bedf9702d8e463a3330d /docs/ref/request-response.txt
parenta352154e42d7bcb63994c7deefc976a989dcb0cd (diff)
Fixed #14141: docs now use the :doc: construct for links between documents.
Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
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