summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-09-12 12:45:07 +0000
committerChris McDonough <chrism@agendaless.com>2010-09-12 12:45:07 +0000
commit8f45bee662176e1b2a850a4a9fe25d26b03093a6 (patch)
tree852a99ba184e1c1b24fb09197df2801372200541 /docs/narr
parent887a0c78919e6c3d1acfe1f9cc16a3aaf054a514 (diff)
downloadpyramid-8f45bee662176e1b2a850a4a9fe25d26b03093a6.tar.gz
pyramid-8f45bee662176e1b2a850a4a9fe25d26b03093a6.tar.bz2
pyramid-8f45bee662176e1b2a850a4a9fe25d26b03093a6.zip
- The BFG router now emits an additional event unconditionally at the
end of request processing: ``repoze.bfg.interfaces.IFinishedRequest``. This event is meant to be used when it is necessary to perform unconditional cleanup after request processing. See the ``repoze.bfg.events.FinishedRequest`` class documentation for more information. - The ``repoze.bfg.interfaces.IWSGIApplicationCreatedEvent`` event interface was renamed to ``repoze.bfg.interfaces.IApplicationCreated``. Likewise, the ``repoze.bfg.events.WSGIApplicationCreatedEvent`` class was renamed to ``repoze.bfg.events.ApplicationCreated``. The older aliases will continue to work indefinitely. - The ``repoze.bfg.interfaces.IAfterTraversal`` event interface was renamed to ``repoze.bfg.interfaces.IContextFound``. Likewise, the ``repoze.bfg.events.AfterTraveral`` class was renamed to ``repoze.bfg.events.ContextFound``. The older aliases will continue to work indefinitely.
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/router.rst2
-rw-r--r--docs/narr/startup.rst4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/router.rst b/docs/narr/router.rst
index 025d70157..af8f057b0 100644
--- a/docs/narr/router.rst
+++ b/docs/narr/router.rst
@@ -67,7 +67,7 @@ processing?
they can be accessed via e.g. ``request.context`` within
:term:`view` code.
-#. A :class:`repoze.bfg.interfaces.IAfterTraversal` :term:`event` is
+#. A :class:`repoze.bfg.interfaces.IContextFound` :term:`event` is
sent to any subscribers.
#. :mod:`repoze.bfg` looks up a :term:`view` callable using the
diff --git a/docs/narr/startup.rst b/docs/narr/startup.rst
index c3850fb4e..5b4365229 100644
--- a/docs/narr/startup.rst
+++ b/docs/narr/startup.rst
@@ -127,8 +127,8 @@ press ``return`` after running ``paster serve MyProject.ini``.
by the configurator previously populated by ZCML. The router is a
WSGI application.
-#. A :class:`repoze.bfg.interfaces.WSGIApplicationCreatedEvent` event
- is emitted (see :ref:`events_chapter` for more information about
+#. A :class:`repoze.bfg.interfaces.IApplicationCreated` event is
+ emitted (see :ref:`events_chapter` for more information about
events).
#. Assuming there were no errors, the ``app`` function in