Changes between Version 22 and Version 23 of S3/S3AAA
- Timestamp:
- 01/17/11 11:19:40 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3/S3AAA
v22 v23 89 89 90 90 ACLs can be defined for controllers, or for particular functions inside controllers.[[BR]] 91 ACLs can additionally be defined for database tables.91 ACLs can additionally be defined for individual database tables. 92 92 93 The controller ACLs are a pplied when the respective controller is setto {{{restricted=True}}} in {{{deployment_settings.modules}}} ({{{000_config.py}}}):93 The controller ACLs are activated by setting the respective controller to {{{restricted=True}}} in {{{deployment_settings.modules}}} ({{{000_config.py}}}): 94 94 95 95 {{{ … … 106 106 ), 107 107 }}} 108 109 If {{{restricted}}} is {{{False}}} or not defined, then the controller falls back to simple authorization. 108 110 109 111 The Controller ACL can be defined for all functions in a controller, or a particular function inside a controller, where the function-specific ACL overrides the general controller ACL. That means, you can define a general ACL for the {{{pr}}} controller, and a different one for the {{{pr/person}}} function.