summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/definingviews.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2015-11-13 02:30:32 -0800
committerSteve Piercy <web@stevepiercy.com>2015-11-13 02:30:32 -0800
commit3214690b08e3c495ab64170e1430ece240853110 (patch)
tree0fc5ec8aa0e9e6e23fe5690e76a8eda4164a7e71 /docs/tutorials/wiki2/definingviews.rst
parent414b67b45bab156b9738105e180908c4eee8600a (diff)
downloadpyramid-3214690b08e3c495ab64170e1430ece240853110.tar.gz
pyramid-3214690b08e3c495ab64170e1430ece240853110.tar.bz2
pyramid-3214690b08e3c495ab64170e1430ece240853110.zip
update wiki2/src/views and wiki2/definingviews.rst
Diffstat (limited to 'docs/tutorials/wiki2/definingviews.rst')
-rw-r--r--docs/tutorials/wiki2/definingviews.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/tutorials/wiki2/definingviews.rst b/docs/tutorials/wiki2/definingviews.rst
index 0b495445a..8a96e433c 100644
--- a/docs/tutorials/wiki2/definingviews.rst
+++ b/docs/tutorials/wiki2/definingviews.rst
@@ -14,7 +14,7 @@ and a user visits ``http://example.com/foo/bar``, our pattern would be matched
against ``/foo/bar`` and the ``matchdict`` would look like ``{'one':'foo',
'two':'bar'}``.
-Declaring Dependencies in Our ``setup.py`` File
+Declaring dependencies in our ``setup.py`` file
===============================================
The view code in our application will depend on a package which is not a
@@ -47,7 +47,7 @@ directory in which ``setup.py`` lives) and execute the following command.
On UNIX:
-.. code-block:: text
+.. code-block:: bash
$ cd tutorial
$ $VENV/bin/python setup.py develop
@@ -60,17 +60,17 @@ On Windows:
c:\pyramidtut\tutorial> %VENV%\Scripts\python setup.py develop
Success executing this command will end with a line to the console something
-like::
+like this::
Finished processing dependencies for tutorial==0.0
Adding view functions in ``views.py``
=====================================
-It's time for a major change. Open ``tutorial/tutorial/views.py`` and edit it
-to look like the following:
+It's time for a major change. Open ``tutorial/tutorial/views/default.py`` and
+edit it to look like the following:
-.. literalinclude:: src/views/tutorial/views.py
+.. literalinclude:: src/views/tutorial/views/default.py
:linenos:
:language: python
:emphasize-lines: 1-7,14,16-72