Changes between Version 10 and Version 11 of S3/S3AAA
- Timestamp:
- 01/17/11 09:44:37 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3/S3AAA
v10 v11 42 42 43 43 ||'''Bit'''||'''Value'''||'''Permission'''|| 44 ||auth.permission.CREATE||0x0 001||may create new records||45 ||auth.permission.READ||0x0 002||may read or list records||46 ||auth.permission.UPDATE||0x0 004||may update existing records||47 ||auth.permission.DELETE||0x0 008||may delete records||44 ||auth.permission.CREATE||0x01||may create new records|| 45 ||auth.permission.READ||0x02||may read or list records|| 46 ||auth.permission.UPDATE||0x04||may update existing records|| 47 ||auth.permission.DELETE||0x08||may delete records|| 48 48 49 ACLs are combinations of these bits (by logical OR), e.g. an ACL with the value 0x0 006 defines permissions to read and update records, while no permission to add or to delete any records.49 ACLs are combinations of these bits (by logical OR), e.g. an ACL with the value 0x06 defines permissions to read and update records, while no permission to add or to delete any records. 50 50 51 51 ACLs are stored per role and request destination in the {{{s3_permission}}} table, which is defined by the {{{S3Permission}}} class (in {{{modules/s3/s3aaa.py}}}).