diff options
| author | Michael Merickel <michael@merickel.org> | 2013-03-12 14:07:44 -0700 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2013-03-12 14:07:44 -0700 |
| commit | d3aba32a0a78d367c7ab81a54d86c71330441d7a (patch) | |
| tree | 55e60ef82f0eca4620fcf57d83e84bd9d61a7389 /docs/narr/urldispatch.rst | |
| parent | f88ab0e8787d2bc9bba72b47ffbb83b09f0d1a5e (diff) | |
| parent | cec2b05e74b3296ab8b54b9644223e08f269808b (diff) | |
| download | pyramid-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.rst | 8 |
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 |
