summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/authorization.rst
diff options
context:
space:
mode:
authororangieboot <chris@affleck.eu>2015-06-11 21:56:31 +0100
committerSteve Piercy <web@stevepiercy.com>2015-06-11 16:20:02 -0700
commitb5096d71dc30839474f390b488440cc589da5879 (patch)
tree02d7b74d50a8d42d5ebe823773a51b5e7cbef4e7 /docs/tutorials/wiki2/authorization.rst
parent3d1aa9bc3addf72bc05107c79c5375d9e3020f1c (diff)
downloadpyramid-b5096d71dc30839474f390b488440cc589da5879.tar.gz
pyramid-b5096d71dc30839474f390b488440cc589da5879.tar.bz2
pyramid-b5096d71dc30839474f390b488440cc589da5879.zip
Update authorization.rst
Removed extra colons
Diffstat (limited to 'docs/tutorials/wiki2/authorization.rst')
-rw-r--r--docs/tutorials/wiki2/authorization.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/tutorials/wiki2/authorization.rst b/docs/tutorials/wiki2/authorization.rst
index d2ad7a9ca..1d810b05b 100644
--- a/docs/tutorials/wiki2/authorization.rst
+++ b/docs/tutorials/wiki2/authorization.rst
@@ -5,12 +5,12 @@ Adding authorization
====================
:app:`Pyramid` provides facilities for :term:`authentication` and
-::term:`authorization`. We'll make use of both features to provide security
-:to our application. Our application currently allows anyone with access to
-:the server to view, edit, and add pages to our wiki. We'll change that to
-:allow only people who are members of a *group* named ``group:editors`` to add
-:and edit wiki pages but we'll continue allowing anyone with access to the
-:server to view pages.
+:term:`authorization`. We'll make use of both features to provide security
+to our application. Our application currently allows anyone with access to
+the server to view, edit, and add pages to our wiki. We'll change that to
+allow only people who are members of a *group* named ``group:editors`` to add
+and edit wiki pages but we'll continue allowing anyone with access to the
+server to view pages.
We will also add a login page and a logout link on all the pages. The login
page will be shown when a user is denied access to any of the views that