summaryrefslogtreecommitdiff
path: root/docs/tutorials
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2016-02-13 21:08:58 -0600
committerMichael Merickel <michael@merickel.org>2016-02-13 21:08:58 -0600
commitbca6c996d9e879c21d8b207bb36bc10ebe1db256 (patch)
tree70cf042b8df087cb50ea903abaa6f7255e763adb /docs/tutorials
parent4c391c55057acbb36df28215f562c42d2b616872 (diff)
downloadpyramid-bca6c996d9e879c21d8b207bb36bc10ebe1db256.tar.gz
pyramid-bca6c996d9e879c21d8b207bb36bc10ebe1db256.tar.bz2
pyramid-bca6c996d9e879c21d8b207bb36bc10ebe1db256.zip
highlight more appropriate lines in views
Diffstat (limited to 'docs/tutorials')
-rw-r--r--docs/tutorials/wiki2/definingviews.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/tutorials/wiki2/definingviews.rst b/docs/tutorials/wiki2/definingviews.rst
index acaefe6e8..fea682628 100644
--- a/docs/tutorials/wiki2/definingviews.rst
+++ b/docs/tutorials/wiki2/definingviews.rst
@@ -345,7 +345,7 @@ Create ``tutorial/templates/view.jinja2`` and add the following content:
.. literalinclude:: src/views/tutorial/templates/view.jinja2
:linenos:
- :emphasize-lines: 1,4,6-8
+ :emphasize-lines: 1,3,6
:language: html
This template is used by ``view_page()`` for displaying a single wiki page.
@@ -402,6 +402,7 @@ This template is linked from the ``notfound_view`` defined in
.. literalinclude:: src/views/tutorial/views/notfound.py
:linenos:
+ :emphasize-lines: 6
:language: python
There are several important things to note about this configuration:
@@ -409,8 +410,8 @@ There are several important things to note about this configuration:
- The ``notfound_view`` in the above snippet is called an
:term:`exception view`. For more information see
:ref:`special_exceptions_in_callables`.
-- The ``notfound_view`` sets the response status to 404. It's possible to
- affect the response object used by the renderer via
+- The ``notfound_view`` sets the response status to 404. It's possible
+ to affect the response object used by the renderer via
:ref:`request_response_attr`.
- The ``notfound_view`` is registered as an exception view and will be invoked
**only** if ``pyramid.httpexceptions.HTTPNotFound`` is raised as an