summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-09-05 23:48:27 -0400
committerChris McDonough <chrism@plope.com>2013-09-05 23:48:27 -0400
commitef5596c5e3de01afd1405e87f06de1f9867b4c86 (patch)
tree31fbc643e633bc7490eac913eed43fbd7962b10b /docs/narr
parent13b1871878932091e56b01bb27eef7033521a83f (diff)
parentf6f1d1685f09f1ecd3717c90e687a6e3652b4fdc (diff)
downloadpyramid-ef5596c5e3de01afd1405e87f06de1f9867b4c86.tar.gz
pyramid-ef5596c5e3de01afd1405e87f06de1f9867b4c86.tar.bz2
pyramid-ef5596c5e3de01afd1405e87f06de1f9867b4c86.zip
Merge branch 'fix.remove-deprecated-request-attrs'
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/renderers.rst34
1 files changed, 0 insertions, 34 deletions
diff --git a/docs/narr/renderers.rst b/docs/narr/renderers.rst
index a2811dbae..9132606b3 100644
--- a/docs/narr/renderers.rst
+++ b/docs/narr/renderers.rst
@@ -556,40 +556,6 @@ For more information on attributes of the request, see the API documentation
in :ref:`request_module`. For more information on the API of
``request.response``, see :attr:`pyramid.request.Request.response`.
-.. _response_prefixed_attrs:
-
-Deprecated Mechanism to Vary Attributes of Rendered Responses
--------------------------------------------------------------
-
-In previous releases of Pyramid (1.0 and before), the ``request.response``
-attribute did not exist. Instead, Pyramid required users to set special
-``response_`` -prefixed attributes of the request to influence response
-behavior. As of Pyramid 1.1, those request attributes are deprecated and
-their use will cause a deprecation warning to be issued when used. Until
-their existence is removed completely, we document them below, for benefit of
-people with older code bases.
-
-``response_content_type``
- Defines the content-type of the resulting response,
- e.g. ``text/xml``.
-
-``response_headerlist``
- A sequence of tuples describing header values that should be set in the
- response, e.g. ``[('Set-Cookie', 'abc=123'), ('X-My-Header', 'foo')]``.
-
-``response_status``
- A WSGI-style status code (e.g. ``200 OK``) describing the status of the
- response.
-
-``response_charset``
- The character set (e.g. ``UTF-8``) of the response.
-
-``response_cache_for``
- A value in seconds which will influence ``Cache-Control`` and ``Expires``
- headers in the returned response. The same can also be achieved by
- returning various values in the ``response_headerlist``, this is purely a
- convenience.
-
.. _adding_and_overriding_renderers:
Adding and Changing Renderers