summaryrefslogtreecommitdiff
path: root/docs/narr/extending.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-01-16 17:41:10 -0500
committerChris McDonough <chrism@plope.com>2011-01-16 17:41:10 -0500
commit2fa5764cb1fd001550ae7c985333718667b86b1c (patch)
treec9dab598b54ff97c8f900c0d3b3e1b4106863c72 /docs/narr/extending.rst
parente333c2c2236cbfd11809ee393aa71be1b4846d88 (diff)
downloadpyramid-2fa5764cb1fd001550ae7c985333718667b86b1c.tar.gz
pyramid-2fa5764cb1fd001550ae7c985333718667b86b1c.tar.bz2
pyramid-2fa5764cb1fd001550ae7c985333718667b86b1c.zip
- The ``pylons_minimal``, ``pylons_basic`` and ``pylons_sqla`` paster
templates were removed. Use ``pyramid_sqla`` (available from PyPI) as a generic replacement for Pylons-esque development. - All references to ``add_handler`` and the ``handler`` ZCML directive have been removed from the docs, and stubs which point to ``pylons_handlers`` package have replaced them.
Diffstat (limited to 'docs/narr/extending.rst')
-rw-r--r--docs/narr/extending.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/extending.rst b/docs/narr/extending.rst
index 524dcb2ac..eb7f0b24e 100644
--- a/docs/narr/extending.rst
+++ b/docs/narr/extending.rst
@@ -121,9 +121,9 @@ ZCML ``<route>`` directive). Views are declarations made using the
directive). Assets are files that are accessed by :app:`Pyramid` using the
:term:`pkg_resources` API such as static files and templates via a
:term:`asset specification`. Other directives and configurator methods also
-deal in routes, views, and assets. For example,
-:meth:`pyramid.config.Configurator.add_handler` adds a single route, and some
-number of views.
+deal in routes, views, and assets. For example, ``add_handler`` directive of
+the ``pyramid_handlers`` package adds a single route, and some number of
+views.
.. index::
single: extending an existing application