From 391402e63c1257ede0069f220ed5a1cca1b94a9b Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sat, 13 Aug 2011 01:00:39 -0400 Subject: - Projects created via a scaffold no longer depend on the ``WebError`` package at all; configuration in the ``production.ini`` file which used to require its ``error_catcher`` middleware has been removed. Configuring error catching / email sending is now the domain of the ``pyramid_exclog`` package (see https://docs.pylonsproject.org/projects/pyramid_exclog/dev/). --- docs/glossary.rst | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) (limited to 'docs/glossary.rst') diff --git a/docs/glossary.rst b/docs/glossary.rst index 75bbd2827..6e4ca4b70 100644 --- a/docs/glossary.rst +++ b/docs/glossary.rst @@ -845,11 +845,6 @@ 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 . - view mapper A view mapper is a class which implements the :class:`pyramid.interfaces.IViewMapperFactory` interface, which performs @@ -930,3 +925,16 @@ Glossary registry` as well as the Pyramid rendering machinery. See :ref:`registering_tweens`. + pyramid_debugtoolbar + A Pyramid add on which displays a helpful debug toolbar "on top of" HTML + pages rendered by your application, displaying request, routing, and + database information. ``pyramid_debugtoolbar`` is configured into the + ``development.ini`` of all applications which use a Pyramid + :term:`scaffold`. For more information, see + https://docs.pylonsproject.org/projects/pyramid_debugtoolbar/dev/ . + + scaffold + A project template that helps users get started writing a Pyramid + application quickly. Scaffolds are usually used via the ``paster + create`` command. + -- cgit v1.2.3