summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki
diff options
context:
space:
mode:
authorPatricio Paez <pp@pp.com.mx>2012-03-12 15:49:58 -0700
committerPatricio Paez <pp@pp.com.mx>2012-03-12 15:49:58 -0700
commit218ad474c5e8db6925ed6a5f4067ae3db69f68c8 (patch)
tree1f5a5e5bc340adf27eaa993f6d5ba129d3a8d5d3 /docs/tutorials/wiki
parentbb754144b1c0d3c75156385ea8c6e20ddda6d430 (diff)
downloadpyramid-218ad474c5e8db6925ed6a5f4067ae3db69f68c8.tar.gz
pyramid-218ad474c5e8db6925ed6a5f4067ae3db69f68c8.tar.bz2
pyramid-218ad474c5e8db6925ed6a5f4067ae3db69f68c8.zip
Added links to Starting the Application
- Sections 'Viewing the Application in a Browser' in the 'Defining the Domain Model' and 'Defining the Views' chapters now offer a quick link in both wiki tutorials, as suggested by Paulo.
Diffstat (limited to 'docs/tutorials/wiki')
-rw-r--r--docs/tutorials/wiki/definingmodels.rst3
-rw-r--r--docs/tutorials/wiki/definingviews.rst4
-rw-r--r--docs/tutorials/wiki/installation.rst2
3 files changed, 6 insertions, 3 deletions
diff --git a/docs/tutorials/wiki/definingmodels.rst b/docs/tutorials/wiki/definingmodels.rst
index cdf3b6092..982d6ea74 100644
--- a/docs/tutorials/wiki/definingmodels.rst
+++ b/docs/tutorials/wiki/definingmodels.rst
@@ -88,7 +88,8 @@ View the Application in a Browser
We can't. At this point, our system is in a "non-runnable" state; we'll need
to change view-related files in the next chapter to be able to start the
-application successfully. If you try to start the application, you'll wind
+application successfully. If you try to start the application (See
+:ref:`wiki-start-the-application`), you'll wind
up with a Python traceback on your console that ends with this exception:
.. code-block:: text
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst
index 371cae8eb..53e60fda3 100644
--- a/docs/tutorials/wiki/definingviews.rst
+++ b/docs/tutorials/wiki/definingviews.rst
@@ -301,8 +301,8 @@ subdirectories) and are just referred to by URL.
Viewing the Application in a Browser
====================================
-We can finally examine our application in a
-browser. The views we'll try are as follows:
+We can finally examine our application in a browser (See
+:ref:`wiki-start-the-application`). The views we'll try are as follows:
- Visiting ``http://localhost:6543/`` in a browser invokes the ``view_wiki``
view. This always redirects to the ``view_page`` view of the ``FrontPage``
diff --git a/docs/tutorials/wiki/installation.rst b/docs/tutorials/wiki/installation.rst
index 330b17c86..63b30da5a 100644
--- a/docs/tutorials/wiki/installation.rst
+++ b/docs/tutorials/wiki/installation.rst
@@ -228,6 +228,8 @@ Looks like the code in the ``zodb`` scaffold for ZODB projects is
missing some test coverage, particularly in the file named
``models.py``.
+.. _wiki-start-the-application:
+
Start the Application
=====================