summaryrefslogtreecommitdiff
path: root/docs/narr/renderers.rst
diff options
context:
space:
mode:
authorKarl O. Pinc <kop@meme.com>2013-10-05 00:37:09 -0500
committerKarl O. Pinc <kop@meme.com>2013-10-05 00:37:09 -0500
commit1f7a00346411033d935bf931c206b585353f8be4 (patch)
treed54dfcf6870ee086e5dee1a470650d7a7a69abc8 /docs/narr/renderers.rst
parent9951556030aeed07978472f59b7843273bcb84a8 (diff)
downloadpyramid-1f7a00346411033d935bf931c206b585353f8be4.tar.gz
pyramid-1f7a00346411033d935bf931c206b585353f8be4.tar.bz2
pyramid-1f7a00346411033d935bf931c206b585353f8be4.zip
Docs: Link from renderer narrative docs to example render_to_response call, and index the example.
More fully explain the 2 examples, one with render_to_response call and one without.
Diffstat (limited to 'docs/narr/renderers.rst')
-rw-r--r--docs/narr/renderers.rst10
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/narr/renderers.rst b/docs/narr/renderers.rst
index 4046c67fa..b86f7298b 100644
--- a/docs/narr/renderers.rst
+++ b/docs/narr/renderers.rst
@@ -56,10 +56,12 @@ serialization techniques. In practice, renderers obtain application data
values from Python dictionaries so, in practice, view callables which use
renderers return Python dictionaries.
-View configuration can vary the renderer associated with a view callable via
-the ``renderer`` attribute. For example, this call to
-:meth:`~pyramid.config.Configurator.add_view` associates the ``json`` renderer
-with a view callable:
+View callables can :ref:`explicitly call
+<example_render_to_response_call>` renderers but, typically, view
+configuration declares the renderer used to render a view callable's
+results. This is done with the ``renderer`` attribute. For example,
+this call to :meth:`~pyramid.config.Configurator.add_view` associates
+the ``json`` renderer with a view callable:
.. code-block:: python