summaryrefslogtreecommitdiff
path: root/docs/narr/hooks.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-10-06 03:05:29 -0400
committerChris McDonough <chrism@plope.com>2011-10-06 03:05:29 -0400
commitcfb2b5596b8ef366aeef3bce5b61eafc7a2f175d (patch)
treeae20b3579631fff9f4e455fa4929d23420b9a65e /docs/narr/hooks.rst
parentd29151abecd85e844b170fb2880dc701b63d7f52 (diff)
downloadpyramid-cfb2b5596b8ef366aeef3bce5b61eafc7a2f175d.tar.gz
pyramid-cfb2b5596b8ef366aeef3bce5b61eafc7a2f175d.tar.bz2
pyramid-cfb2b5596b8ef366aeef3bce5b61eafc7a2f175d.zip
remove all reference to the paster command-line utility
Diffstat (limited to 'docs/narr/hooks.rst')
-rw-r--r--docs/narr/hooks.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/narr/hooks.rst b/docs/narr/hooks.rst
index 7db1eca73..3c6799afb 100644
--- a/docs/narr/hooks.rst
+++ b/docs/narr/hooks.rst
@@ -727,7 +727,7 @@ A user might make use of these framework components like so:
from pyramid.response import Response
from pyramid.config import Configurator
import pyramid_handlers
- from paste.httpserver import serve
+ from wsgiref.simple_server import make_server
class MyController(BaseController):
def index(self, id):
@@ -738,7 +738,8 @@ A user might make use of these framework components like so:
config.include(pyramid_handlers)
config.add_handler('one', '/{id}', MyController, action='index')
config.add_handler('two', '/{action}/{id}', MyController)
- serve(config.make_wsgi_app())
+ server.make_server('0.0.0.0', 8080, config.make_wsgi_app())
+ server.serve_forever()
The :meth:`pyramid.config.Configurator.set_view_mapper` method can be used to
set a *default* view mapper (overriding the superdefault view mapper used by
@@ -1012,7 +1013,7 @@ Effectively, ``under`` means "closer to the main Pyramid application than",
For example, the following call to
:meth:`~pyramid.config.Configurator.add_tween` will attempt to place the
tween factory represented by ``myapp.tween_factory`` directly 'above' (in
-``paster ptweens`` order) the main Pyramid request handler.
+``ptweens`` order) the main Pyramid request handler.
.. code-block:: python
:linenos:
@@ -1136,6 +1137,6 @@ time.
Displaying Tween Ordering
~~~~~~~~~~~~~~~~~~~~~~~~~
-The ``paster ptweens`` command-line utility can be used to report the current
+The ``ptweens`` command-line utility can be used to report the current
implict and explicit tween chains used by an application. See
:ref:`displaying_tweens`.