Skip to content

Instantly share code, notes, and snippets.

@melvincarvalho
Created July 5, 2015 13:30
Show Gist options
  • Save melvincarvalho/9dc09faa9c3668c72625 to your computer and use it in GitHub Desktop.
Save melvincarvalho/9dc09faa9c3668c72625 to your computer and use it in GitHub Desktop.
acl example
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
<#0>
a <http://www.w3.org/ns/auth/acl#Authorization> ;
<http://www.w3.org/ns/auth/acl#accessTo> <test> ;
<http://www.w3.org/ns/auth/acl#agentClass> <http://xmlns.com/foaf/0.1/Agent> ;
<http://www.w3.org/ns/auth/acl#mode> <http://www.w3.org/ns/auth/acl#Read> .
<#1>
a <http://www.w3.org/ns/auth/acl#Authorization> ;
<http://www.w3.org/ns/auth/acl#accessTo> <test>, <> ;
<http://www.w3.org/ns/auth/acl#agent> <http://melvincarvalho.com/#me> ;
<http://www.w3.org/ns/auth/acl#mode> <http://www.w3.org/ns/auth/acl#Control>, <http://www.w3.org/ns/auth/acl#Read>, <http://www.w3.org/ns/auth/acl#Write> .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment