summaryrefslogtreecommitdiff
path: root/docs/tutorials
diff options
context:
space:
mode:
authorCarlos de la Guardia <cguardia@yahoo.com>2009-06-02 05:57:27 +0000
committerCarlos de la Guardia <cguardia@yahoo.com>2009-06-02 05:57:27 +0000
commit2e5713a6fa20eab7c64001c7ab1cbf1192bc8b70 (patch)
treec1c53e1ed01e9ca0584520eb70ac87ace726bf33 /docs/tutorials
parent8441d57b36a7522a4c4bbe0936774829bfa0e742 (diff)
downloadpyramid-2e5713a6fa20eab7c64001c7ab1cbf1192bc8b70.tar.gz
pyramid-2e5713a6fa20eab7c64001c7ab1cbf1192bc8b70.tar.bz2
pyramid-2e5713a6fa20eab7c64001c7ab1cbf1192bc8b70.zip
use the same name for the FrontPage object when describing the views in the browser
Diffstat (limited to 'docs/tutorials')
-rw-r--r--docs/tutorials/bfgwiki2/authorization.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/tutorials/bfgwiki2/authorization.rst b/docs/tutorials/bfgwiki2/authorization.rst
index 94bff565e..53d4cfb63 100644
--- a/docs/tutorials/bfgwiki2/authorization.rst
+++ b/docs/tutorials/bfgwiki2/authorization.rst
@@ -195,23 +195,23 @@ our application in a browser. The views we'll try are as follows:
- Visiting `http://localhost:6543/FrontPage/
<http://localhost:6543/FrontPage/>`_ in a browser invokes the
- ``view_page`` view of the front page page object.
+ ``view_page`` view of the FrontPage page object.
- Visiting `http://localhost:6543/FrontPage/edit_page
<http://localhost:6543/FrontPage/edit_page>`_ in a browser invokes
- the edit view for the front page object. It is executable by only
+ the edit view for the FrontPage object. It is executable by only
the ``editor`` user. If a different user (or the anonymous user)
invokes it, a login form will be displayed. Supplying the
credentials with the username ``editor``, password ``editor`` will
- show the edit page form being displayed.
+ display the edit page form.
- Visiting `http://localhost:6543/add_page/SomePageName
<http://localhost:6543/add_page/SomePageName>`_ in a browser invokes
the add view for a page. It is executable by only the ``editor``
user. If a different user (or the anonymous user) invokes it, a
login form will be displayed. Supplying the credentials with the
- username ``editor``, password ``editor`` will show the edit page
- form being displayed.
+ username ``editor``, password ``editor`` will display the edit page
+ form.
Seeing Our Changes To ``views.py`` and our Templates
----------------------------------------------------