Chris McDonough
2011-07-12 f9896b60700ea4334f3df0a83f9b291e167b322d
reviewed
2 files modified
7 ■■■■ changed files
TODO.txt 3 ●●●●● patch | view | raw | blame | history
docs/narr/hooks.rst 4 ●●●● patch | view | raw | blame | history
TODO.txt
@@ -10,9 +10,6 @@
  (DBSession.rollback()/transaction.abort() in scaffold vs. "pass" in
  tutorial)
- deprecate request.add_response_callback (or at least review docs, in light
  of request.response property).
Should-Have
-----------
docs/narr/hooks.rst
@@ -284,8 +284,8 @@
Unlike many other web frameworks, :app:`Pyramid` does not eagerly create a
global response object.  Adding a :term:`response callback` allows an
application to register an action to be performed against a response object
once it is created, usually in order to mutate it.
application to register an action to be performed against whatever response
object is returned by a view, usually in order to mutate the response.
The :meth:`pyramid.request.Request.add_response_callback` method is used to
register a response callback.