summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/definingviews.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-10-25 23:09:02 -0400
committerChris McDonough <chrism@plope.com>2010-10-25 23:09:02 -0400
commit2e6905e15221691e645e5ff4ba0378a6d9438c29 (patch)
treeda97f7555bc11dc7369ad12beb1c04c91c713049 /docs/tutorials/wiki/definingviews.rst
parent0d1f2ff01465689a472b10bbded2fa4e7a895569 (diff)
downloadpyramid-2e6905e15221691e645e5ff4ba0378a6d9438c29.tar.gz
pyramid-2e6905e15221691e645e5ff4ba0378a6d9438c29.tar.bz2
pyramid-2e6905e15221691e645e5ff4ba0378a6d9438c29.zip
add httpexceptions docs
Diffstat (limited to 'docs/tutorials/wiki/definingviews.rst')
-rw-r--r--docs/tutorials/wiki/definingviews.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst
index f4d92371a..41a9ad373 100644
--- a/docs/tutorials/wiki/definingviews.rst
+++ b/docs/tutorials/wiki/definingviews.rst
@@ -54,11 +54,11 @@ The ``view_wiki`` view function
The ``view_wiki`` function will be configured to respond as the
default view of a ``Wiki`` model object. It always redirects to the
``Page`` object named "FrontPage". It returns an instance of the
-:class:`webob.exc.HTTPFound` class (instances of which implement the
-WebOb :term:`response` interface), and the
-:func:`pyramid.url.model_url` API.
-:func:`pyramid.url.model_url` constructs a URL to the ``FrontPage``
-page (e.g. ``http://localhost:6543/FrontPage``), and uses it as the
+:class:`pyramid.httpexceptions.HTTPFound` class (instances of which
+implement the WebOb :term:`response` interface), and the
+:func:`pyramid.url.model_url` API. :func:`pyramid.url.model_url`
+constructs a URL to the ``FrontPage`` page
+(e.g. ``http://localhost:6543/FrontPage``), and uses it as the
"location" of the HTTPFound response, forming an HTTP redirect.
The ``view_page`` view function