summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-02-01 21:47:50 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-02-01 21:48:44 +0100
commit56a7d112376006937b424eb8262b902c42d17353 (patch)
tree141eb47d00ff38c6e58aae8dfea43465c9ab40d7 /docs
parent11f6295551fbcedae50df0efcae5eb34555a46dd (diff)
[1.5.x] Fix rst syntax error.
Thanks Chris Rebert for the report. Backport of d75a54c.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/request-response.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt
index e30d26a5a8..faf8708cd7 100644
--- a/docs/ref/request-response.txt
+++ b/docs/ref/request-response.txt
@@ -55,12 +55,12 @@ All attributes should be considered read-only, unless stated otherwise below.
.. attribute:: HttpRequest.path_info
- Under some Web server configurations, the portion of the URL after the host
- name is split up into a script prefix portion and a path info portion.
- The ``path_info`` attribute always contains the path info portion of the
- path, no matter what Web server is being used. Using this instead of
- attr:`~HttpRequest.path` can make your code much easier to move between test
- and deployment servers.
+ Under some Web server configurations, the portion of the URL after the
+ host name is split up into a script prefix portion and a path info
+ portion. The ``path_info`` attribute always contains the path info portion
+ of the path, no matter what Web server is being used. Using this instead
+ of :attr:`~HttpRequest.path` can make your code easier to move between
+ test and deployment servers.
For example, if the ``WSGIScriptAlias`` for your application is set to
``"/minfo"``, then ``path`` might be ``"/minfo/music/bands/the_beatles/"``