-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding settings dir with typeIndexes and preferencesFile moving inbox into /storage/
- Loading branch information
Showing
5 changed files
with
53 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# ACL resource for the /settings/ container | ||
@prefix acl: <http://www.w3.org/ns/auth/acl#>. | ||
@prefix foaf: <http://xmlns.com/foaf/0.1/>. | ||
|
||
<#public> | ||
a acl:Authorization; | ||
acl:agentClass foaf:Agent; | ||
acl:accessTo <./publicTypeIndex.ttl>; | ||
acl:mode | ||
acl:Read. | ||
|
||
<#owner> | ||
a acl:Authorization; | ||
|
||
acl:agent | ||
<https://localhost/profile/card#me>; | ||
|
||
# Set the access to the root storage folder itself | ||
acl:accessTo <./>; | ||
|
||
# All settings resources will be private, by default, unless overridden | ||
acl:default <./>; | ||
|
||
# The owner has all of the access modes allowed | ||
acl:mode | ||
acl:Read, acl:Write, acl:Control. | ||
|
||
# Private, no public access modes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@prefix : <#>. | ||
@prefix dct: <http://purl.org/dc/terms/>. | ||
@prefix c: </profile/card#>. | ||
@prefix terms: <http://www.w3.org/ns/solid/terms#>. | ||
@prefix n0: <http://xmlns.com/foaf/0.1/>. | ||
@prefix sp: <http://www.w3.org/ns/pim/space#>. | ||
|
||
c:me | ||
a terms:Developer; | ||
terms:privateTypeIndex <privateTypeIndex.ttl>; | ||
terms:publicTypeIndex <publicTypeIndex.ttl>; | ||
<> a sp:ConfigurationFile; dct:title "Preferences file". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@prefix solid: <http://www.w3.org/ns/solid/terms#>. | ||
<> | ||
a solid:TypeIndex ; | ||
a solid:UnlistedDocument. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@prefix : <#>. | ||
@prefix solid: <http://www.w3.org/ns/solid/terms#>. | ||
@prefix schem: <http://schema.org/>. | ||
|
||
<> a solid:ListedDocument, solid:TypeIndex. |