From 53901dbad3cc176c86d8ab570a2d18759fb01160 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 23 Dec 2010 18:53:08 -0500 Subject: fix references --- docs/glossary.rst | 6 ++++++ docs/tutorials/wiki/definingviews.rst | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/glossary.rst b/docs/glossary.rst index a3aacebce..ed96b8afe 100644 --- a/docs/glossary.rst +++ b/docs/glossary.rst @@ -845,4 +845,10 @@ Glossary `WebTest `_ is a package which can help you write functional tests for your WSGI application. + WebError + WSGI middleware which can display debuggable traceback information in + the browser when an exception is raised by a Pyramid application. See + http://pypi.python.org/pypi/WebError . + + diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst index 53f5ff994..c051d6db7 100644 --- a/docs/tutorials/wiki/definingviews.rst +++ b/docs/tutorials/wiki/definingviews.rst @@ -118,7 +118,7 @@ The ``add_page`` view function ------------------------------ The ``add_page`` function will be configured to respond when the context is a -Wiki and the :term:`view_name` is ``add_page``. We'll provide it with a +Wiki and the :term:`view name` is ``add_page``. We'll provide it with a ``@view_config`` decorator which names the string ``add_page`` as its :term:`view name` (via name=), the class ``tutorial.models.Wiki`` as its context, and the renderer named ``templates/edit.pt``. This means that when @@ -165,7 +165,7 @@ The ``edit_page`` view function ------------------------------- The ``edit_page`` function will be configured to respond when the context is -a Page and the :term:`view_name` is ``edit_page``. We'll provide it with a +a Page and the :term:`view name` is ``edit_page``. We'll provide it with a ``@view_config`` decorator which names the string ``edit_page`` as its :term:`view name` (via name=), the class ``tutorial.models.Page`` as its context, and the renderer named ``templates/edit.pt``. This means that when -- cgit v1.2.3