summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-08-13 01:00:39 -0400
committerChris McDonough <chrism@plope.com>2011-08-13 01:00:39 -0400
commit391402e63c1257ede0069f220ed5a1cca1b94a9b (patch)
tree014d867eff43e5f18b1723ce7d846c87c1c2e202 /docs/glossary.rst
parentdd25a5afd44d3fdc89782d232dfe818245e496cd (diff)
downloadpyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.tar.gz
pyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.tar.bz2
pyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.zip
- 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/).
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst18
1 files changed, 13 insertions, 5 deletions
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 <http://pythonpaste.org/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.
+