Changes between Version 10 and Version 11 of S3/S3AAA


Ignore:
Timestamp:
01/17/11 09:44:37 (14 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S3/S3AAA

    v10 v11  
    4242
    4343  ||'''Bit'''||'''Value'''||'''Permission'''||
    44   ||auth.permission.CREATE||0x0001||may create new records||
    45   ||auth.permission.READ||0x0002||may read or list records||
    46   ||auth.permission.UPDATE||0x0004||may update existing records||
    47   ||auth.permission.DELETE||0x0008||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||
    4848
    49 ACLs are combinations of these bits (by logical OR), e.g. an ACL with the value 0x0006 defines permissions to read and update records, while no permission to add or to delete any records.
     49ACLs 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.
    5050
    5151ACLs are stored per role and request destination in the {{{s3_permission}}} table, which is defined by the {{{S3Permission}}} class (in {{{modules/s3/s3aaa.py}}}).