Skip to content

RWWCrew acl

Melvin Carvalho edited this page May 10, 2018 · 9 revisions
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.

# The owner has all permissions
<#owner>
    a acl:Authorization;
    acl:agent <../profile/card#me>;   # PUT YOUR OWN WEBID HERE
    acl:accessTo <./>;
    acl:defaultForNew <./>;
    acl:mode acl:Read, acl:Write, acl:Control.

# The public has read permissions
<#public>
    a acl:Authorization;
    acl:agentClass foaf:Agent;
    acl:accessTo <./>;
    acl:defaultForNew <./>;
    acl:mode acl:Read.

# The RWWCrew has read/write permissions
<#RWWCrew>
    a acl:Authorization;
    acl:agent
        # Jürgen Jakobitsch
        <https://ldp.turnguard.com/turnguard#me>,
        # Tim Berners-Lee
        <https://www.w3.org/People/Berners-Lee/card#i>,
        # Melvin Carvalho
        <https://melvincarvalho.com/#me>,
        <https://melvin.solid.live/#me>,
        # Ruben Verborgh
        <https://ruben.verborgh.org/profile/#me>,
        <https://ruben-just-works.solid.community/profile/card#me>,
        # Kingsley Idehen
        <https://kingsley.idehen.net/public_home/kidehen/profile.ttl#i>,
        <https://kidehen5.solid.openlinksw.com:8444/profile/card#me>,
        <https://kidehen6.solid.openlinksw.com:8443/profile/card#me>,
        <https://kidehen7.solid.openlinksw.com:8444/profile/card#me>,
        <https://id.myopenlink.net/DAV/home/KingsleyUyiIdehen/Public/kingsley.ttl#this>,
        <https://id.myopenlink.net/DAV/home/KingsleyUyiIdehen/Public/software-agent.ttl#i>,
        # Sergey Malinin
        <http://id.myopenlink.net/DAV/home/smalinin/YouID/Sergey_Malinin_Fb/profile.ttl#identity>,
        # Sarven Capadisli
        <http://csarven.ca/#i>;
    acl:accessTo <./>;
    acl:defaultForNew <./>;
    acl:mode acl:Read, acl:Write.