summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-11-02 16:04:34 -0400
committerChris McDonough <chrism@plope.com>2010-11-02 16:04:34 -0400
commit2f980d55c9fd8e74696f6aa0ef6e23ef1e697776 (patch)
tree2e974d10dd22487c072313597fe6b6cfb2367126 /docs/glossary.rst
parent28d9639facb0dc255ab803a70b4f456bab3262c1 (diff)
downloadpyramid-2f980d55c9fd8e74696f6aa0ef6e23ef1e697776.tar.gz
pyramid-2f980d55c9fd8e74696f6aa0ef6e23ef1e697776.tar.bz2
pyramid-2f980d55c9fd8e74696f6aa0ef6e23ef1e697776.zip
tweak handlers chapter
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index c9d37101d..a20213459 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -819,3 +819,10 @@ Glossary
`Mako <http://www.makotemplates.org/>`_ is a template language language
which refines the familiar ideas of componentized layout and inheritance
using Python with Python scoping and calling semantics.
+
+ View handler
+ A view handler ties together
+ :meth:`pyramid.configuration.Configurator.add_route` and
+ :meth:`pyramid.configuration.Configurator.add_view` to make it more
+ convenient to register a collection of views as a single class when
+ using :term:`url dispatch`. See also :ref:`handlers_chapter`.