summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
diff options
context:
space:
mode:
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.
+