xref: /dokuwiki/_test/conf/acl.auth.php (revision add8678f233ad74892a96444e3013e0465616200)
19c6354e5STobias Sarnowski# acl.auth.php
29c6354e5STobias Sarnowski# <?php exit()?>
39c6354e5STobias Sarnowski# Don't modify the lines above
49c6354e5STobias Sarnowski#
59c6354e5STobias Sarnowski# Access Control Lists
69c6354e5STobias Sarnowski#
79c6354e5STobias Sarnowski# Editing this file by hand shouldn't be necessary. Use the ACL
89c6354e5STobias Sarnowski# Manager interface instead.
99c6354e5STobias Sarnowski#
109c6354e5STobias Sarnowski# If your auth backend allows special char like spaces in groups
119c6354e5STobias Sarnowski# or user names you need to urlencode them (only chars <128, leave
129c6354e5STobias Sarnowski# UTF-8 multibyte chars as is)
139c6354e5STobias Sarnowski#
149c6354e5STobias Sarnowski# none   0
159c6354e5STobias Sarnowski# read   1
169c6354e5STobias Sarnowski# edit   2
179c6354e5STobias Sarnowski# create 4
189c6354e5STobias Sarnowski# upload 8
199c6354e5STobias Sarnowski# delete 16
209c6354e5STobias Sarnowski
219c6354e5STobias Sarnowski*               @ALL        8
22*add8678fSAndreas Gohrprivate:*       @ALL        0
2332e82180SAndreas Gohr
2432e82180SAndreas Gohr# for testing wildcards:
2532e82180SAndreas Gohrusers:*            @ALL         1
2632e82180SAndreas Gohrusers:%USER%:*     %USER%       16
2732e82180SAndreas Gohrgroups:*           @ALL         1
2832e82180SAndreas Gohrgroups:%GROUP%:*   %GROUP%      16
29