summaryrefslogtreecommitdiff
path: root/docs/whatsnew-1.3.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-09-14 13:19:06 +0000
committerChris McDonough <chrism@agendaless.com>2010-09-14 13:19:06 +0000
commitf415835cbdec33b3da3dd60162f80434f50f1161 (patch)
tree5d929bd7464040f66743b4189cacc33733c981a8 /docs/whatsnew-1.3.rst
parent6a32bb4831686a3da3a8277a3b08107dfa6fc6ac (diff)
downloadpyramid-f415835cbdec33b3da3dd60162f80434f50f1161.tar.gz
pyramid-f415835cbdec33b3da3dd60162f80434f50f1161.tar.bz2
pyramid-f415835cbdec33b3da3dd60162f80434f50f1161.zip
gardening
Diffstat (limited to 'docs/whatsnew-1.3.rst')
-rw-r--r--docs/whatsnew-1.3.rst17
1 files changed, 6 insertions, 11 deletions
diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst
index 0d75375f9..63f0355fd 100644
--- a/docs/whatsnew-1.3.rst
+++ b/docs/whatsnew-1.3.rst
@@ -233,8 +233,8 @@ Minor Feature Additions
- New API class:
:class:`repoze.bfg.view.AppendSlashNotFoundViewFactory`.
- There can only be one :term:`Not Found view` in any :mod:`repoze.bfg
- application. Even if you use
+ There can only be one :term:`Not Found view` in any
+ :mod:`repoze.bfg` application. Even if you use
:func:`repoze.bfg.view.append_slash_notfound_view` as the Not Found
view, :mod:`repoze.bfg` still must generate a ``404 Not Found``
response when it cannot redirect to a slash-appended URL; this not
@@ -290,9 +290,9 @@ Minor Feature Additions
specification` string into an absolute version.
- A new :meth:`repoze.bfg.request.Request.add_response_callback` API
- has been added. This method is documented in the new
- :mod:`repoze.bfg.request` API chapter. It can be used to influence
- response values before a concrete response object has been created.
+ has been added. It can be used to influence response values before
+ a concrete response object has been created. See the
+ :ref:`using_response_callbacks` for more information.
- The :class:`repoze.bfg.interfaces.INewResponse` interface now
includes a ``request`` attribute; as a result, a handler for
@@ -368,7 +368,7 @@ Minor Feature Additions
These APIs are in support of that:
- A new constructor argument was added to
- :mod:`repoze.bfg.configuration.Configurator`:
+ :class:`repoze.bfg.configuration.Configurator`:
``default_permission``.
- A new method was added:
@@ -525,11 +525,6 @@ Backwards Incompatibilities
circumstances, a routing match which your application inadvertently
depended upon may no longer happen.
-- The :class:`repoze.bfg.interfaces.INewResponse` event is now not
- sent to listeners if the response returned by view code (or a
- renderer) is not a "real" response (e.g. if it does not have
- ``.status``, ``.headerlist`` and ``.app_iter`` attribtues).
-
- The router no longer sets the value ``wsgiorg.routing_args`` into
the environ when a route matches. The value used to be something
like ``((), matchdict)``. This functionality was only ever