summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/definingviews.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-09-08 04:44:50 -0400
committerChris McDonough <chrism@plope.com>2013-09-08 04:44:50 -0400
commit6a28ee15243fa1a3ae918d176cc6629c1cacfb7e (patch)
tree98576c6ad37cf7c6c0cfaf62b635723380cc2393 /docs/tutorials/wiki2/definingviews.rst
parentfc477b2e4b20ae2788e468e45b2831e774be8ced (diff)
parentbd5a7ff20d9bdeaf36ef4154cbb0322696a46e2b (diff)
downloadpyramid-6a28ee15243fa1a3ae918d176cc6629c1cacfb7e.tar.gz
pyramid-6a28ee15243fa1a3ae918d176cc6629c1cacfb7e.tar.bz2
pyramid-6a28ee15243fa1a3ae918d176cc6629c1cacfb7e.zip
fix merge conflict
Diffstat (limited to 'docs/tutorials/wiki2/definingviews.rst')
-rw-r--r--docs/tutorials/wiki2/definingviews.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/wiki2/definingviews.rst b/docs/tutorials/wiki2/definingviews.rst
index a1e2313f3..49dbed50f 100644
--- a/docs/tutorials/wiki2/definingviews.rst
+++ b/docs/tutorials/wiki2/definingviews.rst
@@ -30,7 +30,7 @@ Open ``tutorial/setup.py`` and edit it to look like the following:
.. literalinclude:: src/views/setup.py
:linenos:
:language: python
- :emphasize-lines: 19
+ :emphasize-lines: 20
(Only the highlighted line needs to be added.)
@@ -272,9 +272,9 @@ by the view (row 45). The view will use the ``body`` and
none of our tutorial views return in their dictionary.
``request`` is one of several
names that are available "by default" in a template when a template
- renderer is used. See :ref:`chameleon_template_renderers` for
+ renderer is used. See :ref:`renderer_system_values` for
information about other names that are available by default
- when a Chameleon template is used as a renderer.
+ when a template is used as a renderer.
Static Assets
-------------
@@ -335,7 +335,7 @@ something like:
.. literalinclude:: src/views/tutorial/__init__.py
:linenos:
:language: python
- :emphasize-lines: 18-21
+ :emphasize-lines: 19-22
(The highlighted lines are the ones that need to be added or edited.)