linkeddata / ldphp

Linked Data server for PHP
MIT License
38 stars 12 forks source link

WAC editor: replace the resource in the .meta graph with a new one. #4

Open deiu opened 11 years ago

deiu commented 11 years ago

As it is, using the WAC editor only appends triples to the graph. This means that you cannot remove an existing triple. Example:

For a given WAC rule:

<#dir>
    <acl#accessTo> <dir> ;
    <acl#agent> <webid#1>, <webid#2> ;
    <acl#mode> <acl#Read>, <acl#Write> .

Currently, removing the Write mode from rule <#dir> means doing an HTTP POST with the following turtle data:

<#dir>
    <acl#accessTo> <dir> ;
    <acl#agent> <webid#1>, <webid#2> ;
    <acl#mode> <acl#Read> .

However, since POST only performs an append, the triple <#dir> <acl#mode> <acl#Write> will not be removed.