-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use 'public' not 'listed' in comments. Implement Boolean range for . #57
base: main
Are you sure you want to change the base?
Changes from all commits
222c17a
2c37bef
bd0f4b8
185b2bc
c4ce971
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,6 @@ | ||||||
Copyright 2019 - present | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Making the following suggestion since we use it elsewhere for code/spec:
Suggested change
But may be worth questioning whether the CG should hold the copyright on the repo or another entity. We included some non-Solid-centric vocabs in this repo so to have open contributions and simplify the update process. |
||||||
|
||||||
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. |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,8 @@ | ||||||
|
||||||
|
||||||
alcs: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
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.*) |
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -193,27 +193,37 @@ solid:patches | |||||||||
|
||||||||||
solid:privateTypeIndex | ||||||||||
a rdf:Property ; | ||||||||||
dc:issued "2018-01-24"^^xsd:date ; | ||||||||||
rdfs:comment "Points to an unlisted type index resource."@en ; | ||||||||||
rdfs:comment | ||||||||||
"""The object is to a private (unlisted) type index resource. | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
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 solid:UnlistedDocument ; | ||||||||||
rdfs:isDefinedBy <http://www.w3.org/ns/solid/terms#> ; | ||||||||||
rdfs:label "private type index"@en . | ||||||||||
|
||||||||||
solid:publicTypeIndex | ||||||||||
a rdf:Property ; | ||||||||||
dc:issued "2018-01-24"^^xsd:date ; | ||||||||||
rdfs:subPropertyOf solid:typeIndex ; | ||||||||||
rdfs:comment "Points to a listed type index resource."@en ; | ||||||||||
rdfs:comment """The object is to a pubic ("listed") type index resource.. | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
The subject is the user's webid. | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
The triple in found in the private preferences file. | ||||||||||
(which itself is pointed to from the public profile by space:preferencesFile) | ||||||||||
Comment on lines
+211
to
+212
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
"""@en ; | ||||||||||
rdfs:range solid:ListedDocument ; | ||||||||||
rdfs:isDefinedBy <http://www.w3.org/ns/solid/terms#> ; | ||||||||||
rdfs:label "public type index"@en . | ||||||||||
rdfs:subPropertyOf solid:typeIndex ; | ||||||||||
dc:issued "2018-01-24"^^xsd:date ; | ||||||||||
rdfs:range solid:ListedDocument ; | ||||||||||
rdfs:isDefinedBy <http://www.w3.org/ns/solid/terms#> . | ||||||||||
|
||||||||||
solid:read | ||||||||||
a rdf:Property ; | ||||||||||
dc:issued "2015-12-18"^^xsd:date ; | ||||||||||
rdfs:comment "Indicates if a message has been read or not. This property should have a boolean datatype."@en ; | ||||||||||
rdfs:isDefinedBy <http://www.w3.org/ns/solid/terms#> ; | ||||||||||
rdfs:domain <http://rdfs.org/sioc/ns#Post> ; | ||||||||||
rdfs:range xsd:boolean; | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
That can be introduced in a separate PR about Aside: domain |
||||||||||
rdfs:label "read"@en . | ||||||||||
|
||||||||||
solid:storageQuota | ||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
present
is not valid in a copyright statement; specific year(s) must be listedThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Re entity URI, let's revisit this after resolving solid/specification#412 and if still applicable.