xref: /dokuwiki/_test/conf/acl.auth.php (revision 32e82180a785b09b1886cf44ecca5ed22ce37b9d)
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*32e82180SAndreas Gohr
23*32e82180SAndreas Gohr# for testing wildcards:
24*32e82180SAndreas Gohrusers:*            @ALL         1
25*32e82180SAndreas Gohrusers:%USER%:*     %USER%       16
26*32e82180SAndreas Gohrgroups:*           @ALL         1
27*32e82180SAndreas Gohrgroups:%GROUP%:*   %GROUP%      16
28