Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
normalize zodb tut design doc with text from sqla design doc
  • Loading branch information
mcdonc committed Mar 17, 2012
1 parent 0070533 commit 2f2c481
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/tutorials/wiki/design.rst
Expand Up @@ -43,13 +43,19 @@ will handle the login and logout tasks related to security.
Security
--------

We'll eventually be adding security to our application. The components we'll
use to do this are below.

- USERS, a dictionary mapping users names to their
corresponding passwords.

- GROUPS, a dictionary mapping user names to a
list of groups they belong to.

- *groupfinder*, an *authorization callback* that looks up
USERS and GROUPS. It will be provided in a new
*security.py* file.

- An :term:`ACL` is attached to the root resource. Each
row below details an :term:`ACE`:

Expand All @@ -61,7 +67,8 @@ Security
| Allow | group:editors | Edit |
+----------+----------------+----------------+

- Permission declarations for the views.
- Permission declarations are added to the views to assert the security
policies as each request is handled.


Summary
Expand Down

0 comments on commit 2f2c481

Please sign in to comment.