-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy path.acl
More file actions
42 lines (37 loc) · 996 Bytes
/
.acl
File metadata and controls
42 lines (37 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
# All permissions on /server/a
[
a acl:Authorization;
acl:accessTo </server/a/>;
acl:agent <https://ruben.verborgh.org/profile/#me>;
acl:mode acl:Read, acl:Write, acl:Control
].
# Only Read permissions on /server/a/r
[
a acl:Authorization;
acl:accessTo </server/a/r>;
acl:agent <https://ruben.verborgh.org/profile/#me>;
acl:mode acl:Read
].
# No Read permissions on /server/a/wc
[
a acl:Authorization;
acl:accessTo </server/a/wc>;
acl:agent <https://ruben.verborgh.org/profile/#me>;
acl:mode acl:Write, acl:Control
].
# Only Write permissions on /server/a/w
[
a acl:Authorization;
acl:accessTo </server/a/w>;
acl:agent <https://ruben.verborgh.org/profile/#me>;
acl:mode acl:Write
].
# Read-Write permissions on /server/a/rw
[
a acl:Authorization;
acl:accessTo </server/a/rw>;
acl:agent <https://ruben.verborgh.org/profile/#me>;
acl:mode acl:Read, acl:Write
].