summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/request_response.rst
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2013-09-16 02:18:11 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2013-09-16 02:18:11 +0200
commitd749bf4c987c4ab90bd5f89326e7d4059e4f47b3 (patch)
tree69a4e468a29a39ec90e8f6618073bc4eba250a28 /docs/quick_tutorial/request_response.rst
parentb0b28ede912c817a62a84b97c332e39eda02d166 (diff)
downloadpyramid-d749bf4c987c4ab90bd5f89326e7d4059e4f47b3.tar.gz
pyramid-d749bf4c987c4ab90bd5f89326e7d4059e4f47b3.tar.bz2
pyramid-d749bf4c987c4ab90bd5f89326e7d4059e4f47b3.zip
make example links clickable, for convenience
Diffstat (limited to 'docs/quick_tutorial/request_response.rst')
-rw-r--r--docs/quick_tutorial/request_response.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/quick_tutorial/request_response.rst b/docs/quick_tutorial/request_response.rst
index 2aebb5dc2..6a7e0f0c2 100644
--- a/docs/quick_tutorial/request_response.rst
+++ b/docs/quick_tutorial/request_response.rst
@@ -65,10 +65,10 @@ Steps
(venv)$ pserve development.ini --reload
-#. Open ``http://localhost:6543/`` in your browser. You will be
- redirected to ``http://localhost:6543/plain``
+#. Open http://localhost:6543/ in your browser. You will be
+ redirected to http://localhost:6543/plain
-#. Open ``http://localhost:6543/plain?name=alice`` in your browser.
+#. Open http://localhost:6543/plain?name=alice in your browser.
Analysis
========
@@ -79,7 +79,7 @@ leading to the second by an HTTP redirect. Pyramid can
special object from a view or raising a special exception.
In this Pyramid view, we get the URL being visited from ``request.url``.
-Also, if you visited ``http://localhost:6543/plain?name=alice``,
+Also, if you visited http://localhost:6543/plain?name=alice,
the name is included in the body of the response::
URL http://localhost:6543/plain?name=alice with name: alice