summaryrefslogtreecommitdiff
path: root/docs/narr/urldispatch.rst
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2013-03-09 03:06:17 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2013-03-09 03:06:17 +0200
commit2f4bdefd18073c418ae95fe9e5a8c7b2a9d1130e (patch)
tree206665178df0f8968dea59af111a00933d18c368 /docs/narr/urldispatch.rst
parent9013ad1daba3ef62a94815e581e0710439ab6d38 (diff)
downloadpyramid-2f4bdefd18073c418ae95fe9e5a8c7b2a9d1130e.tar.gz
pyramid-2f4bdefd18073c418ae95fe9e5a8c7b2a9d1130e.tar.bz2
pyramid-2f4bdefd18073c418ae95fe9e5a8c7b2a9d1130e.zip
capitalize; add term role
Diffstat (limited to 'docs/narr/urldispatch.rst')
-rw-r--r--docs/narr/urldispatch.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst
index 2a7adea81..16af4d088 100644
--- a/docs/narr/urldispatch.rst
+++ b/docs/narr/urldispatch.rst
@@ -814,7 +814,7 @@ bro." body.
If a request enters the application with the ``PATH_INFO`` value of
``/has_slash/``, the second route will match. If a request enters the
application with the ``PATH_INFO`` value of ``/has_slash``, a route *will* be
-found by the slash-appending not found view. An HTTP redirect to
+found by the slash-appending :term:`Not Found View`. An HTTP redirect to
``/has_slash/`` will be returned to the user's browser. As a result, the
``notfound`` view will never actually be called.
@@ -849,12 +849,12 @@ exactly the same job:
.. warning::
You **should not** rely on this mechanism to redirect ``POST`` requests.
- The redirect of the slash-appending not found view will turn a ``POST``
- request into a ``GET``, losing any ``POST`` data in the original
+ The redirect of the slash-appending :term:`Not Found View` will turn a
+ ``POST`` request into a ``GET``, losing any ``POST`` data in the original
request.
See :ref:`view_module` and :ref:`changing_the_notfound_view` for a more
-general description of how to configure a view and/or a not found view.
+general description of how to configure a view and/or a :term:`Not Found View`.
.. index::
pair: debugging; route matching