summaryrefslogtreecommitdiff
path: root/docs/narr/urldispatch.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2013-03-12 14:07:44 -0700
committerMichael Merickel <michael@merickel.org>2013-03-12 14:07:44 -0700
commitd3aba32a0a78d367c7ab81a54d86c71330441d7a (patch)
tree55e60ef82f0eca4620fcf57d83e84bd9d61a7389 /docs/narr/urldispatch.rst
parentf88ab0e8787d2bc9bba72b47ffbb83b09f0d1a5e (diff)
parentcec2b05e74b3296ab8b54b9644223e08f269808b (diff)
downloadpyramid-d3aba32a0a78d367c7ab81a54d86c71330441d7a.tar.gz
pyramid-d3aba32a0a78d367c7ab81a54d86c71330441d7a.tar.bz2
pyramid-d3aba32a0a78d367c7ab81a54d86c71330441d7a.zip
Merge pull request #896 from tshepang/consistency
consistency fixes
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 864257a33..a327e937b 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