From 222c17abac7b592deeae665d98e116c19645c3e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mitzi=20L=C3=A1szl=C3=B3?= Date: Thu, 3 Oct 2019 13:11:10 +0200 Subject: [PATCH 1/3] Create LICENSE.md --- LICENSE.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..9eefe80 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,6 @@ +Copyright 2019 - present + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. From 2c37befa6245acf51eb7b6ebe2d7f51f768900c2 Mon Sep 17 00:00:00 2001 From: Tim Berners-Lee Date: Tue, 21 Sep 2021 16:15:07 +0100 Subject: [PATCH 2/3] Use 'public' not 'listed' in comments. Implement bollean range for . --- solid-terms.ttl | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/solid-terms.ttl b/solid-terms.ttl index 4b5f323..75daae7 100644 --- a/solid-terms.ttl +++ b/solid-terms.ttl @@ -112,16 +112,25 @@ :privateTypeIndex a rdf:Property ; - rdfs:comment "Points to an unlisted type index resource."@en ; - rdfs:range <#UnlistedDocument> ; + rdfs:comment + """The object is to a private (unlisted) type index resource.. + The subject is the user's webid. + The triple in found in the private preferences file. + (which itself is pointed to from the public profile by space:preferencesFile) + """@en ; + rdfs:range :UnlistedDocument ; rdfs:isDefinedBy <> ; rdfs:label "private type index"@en . :publicTypeIndex a rdf:Property ; rdfs:subPropertyOf :typeIndex ; - rdfs:comment "Points to a listed type index resource."@en ; - rdfs:range <#ListedDocument> ; + rdfs:comment """The object is to a pubic ("listed") type index resource.. + The subject is the user's webid. + The triple in found in the private preferences file. + (which itself is pointed to from the public profile by space:preferencesFile) + """@en ; + rdfs:range :ListedDocument ; rdfs:isDefinedBy <> ; rdfs:label "public type index"@en . @@ -130,6 +139,7 @@ rdfs:comment "Indicates if a message has been read or not. This property should have a boolean datatype."@en ; rdfs:isDefinedBy <> ; rdfs:domain ; + rdfs:range xsd:boolean; rdfs:label "read"@en . :typeIndex From c4ce9717be21b00aec0737f2caf17dd66212f0ba Mon Sep 17 00:00:00 2001 From: Tim Berners-Lee Date: Fri, 1 Oct 2021 19:50:25 +0100 Subject: [PATCH 3/3] Makefile for publishing --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..78f4a19 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ + + +alcs: + cp acl.n3 ../../../www.w3.org/ns/auth + +space: + cp space.n3 ../../../www.w3.org/ns/pim/ + (cd ../../../www.w3.org/ns/pim/; make space.*)