rdf-vocab 3.2.6 → 3.2.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/rdf/vocab/acl.rb +5 -4
- data/lib/rdf/vocab/rdau.rb +209 -207
- data/lib/rdf/vocab/schema.rb +25 -7
- data/lib/rdf/vocab/schemas.rb +25 -7
- data/lib/rdf/vocab/xhtml.rb +0 -1
- data/lib/rdf/vocab.rb +5 -14
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b46e39993050c6dab2198109b8451e20cdf64bd07738596d79cd42ed53b59421
|
4
|
+
data.tar.gz: b0fcae48184820eb9f5fe34c1e1577620d77e49fdd6376a7c4ecb658258f9aac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 527637126c49f204ebe82777a087ad85f5babe8dd4eb3584667dd314a66811a29fb238d22ea2efdc5bd639619551e6dc81231810ec6ab498ab4b8853fee54c88
|
7
|
+
data.tar.gz: eba630f20c9df879dc84461e66e99e237b3a56f706ddfbed3b65474ce82d131f097b235574b782605f469a3050d19bd28cd435ff30e74a75157d4fc4d47d7a0b
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.2.
|
1
|
+
3.2.7
|
data/lib/rdf/vocab/acl.rb
CHANGED
@@ -10,7 +10,7 @@ module RDF::Vocab
|
|
10
10
|
# Ontology definition
|
11
11
|
ontology :"http://www.w3.org/ns/auth/acl#",
|
12
12
|
comment: "Defines the class Authorization and its essential properties,\n and also some classes of access such as read and write. ",
|
13
|
-
"http://purl.org/dc/
|
13
|
+
"http://purl.org/dc/terms/title": "Basic Access Control ontology"
|
14
14
|
|
15
15
|
# Class definitions
|
16
16
|
term :Access,
|
@@ -53,8 +53,9 @@ module RDF::Vocab
|
|
53
53
|
|
54
54
|
# Property definitions
|
55
55
|
property :accessControl,
|
56
|
-
comment: "The Access Control file for this information resource.\n This may of course be a virtual resource implemented by the access control system.\n Note
|
56
|
+
comment: "The Access Control file for this information resource.\n This may of course be a virtual resource implemented by the access control system.\n Note that HTTP header `Link: <foo.acl>; rel=\"acl\"` can also be used for this.",
|
57
57
|
domain: "http://www.w3.org/2006/gen/ont#InformationResource",
|
58
|
+
"http://www.w3.org/2000/01/rdf-schema#seeAlso": "https://solidproject.org/TR/wac#acl-link-relation",
|
58
59
|
label: "access control",
|
59
60
|
range: "http://www.w3.org/2006/gen/ont#InformationResource",
|
60
61
|
subPropertyOf: "http://www.w3.org/2000/01/rdf-schema#seeAlso",
|
@@ -90,7 +91,7 @@ module RDF::Vocab
|
|
90
91
|
range: "http://www.w3.org/2006/vcard/ns#Group",
|
91
92
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
92
93
|
property :default,
|
93
|
-
comment: "If a resource has no ACL file (it is 404),\n then access to the resource
|
94
|
+
comment: "If a resource has no ACL file (it is 404),\n then access to the resource is given by the ACL of the immediately\n containing directory, or failing that (404) the ACL of the recursively next\n containing directory which has an ACL file.\n Within that ACL file,\n any Authorization which has that directory as its acl:default applies to the\n resource. (The highest directory must have an ACL file.)\n",
|
94
95
|
domain: "http://www.w3.org/ns/auth/acl#Authorization",
|
95
96
|
label: "default access for things in this",
|
96
97
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
@@ -118,7 +119,7 @@ module RDF::Vocab
|
|
118
119
|
range: "http://www.w3.org/ns/auth/acl#Origin",
|
119
120
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|
120
121
|
property :owner,
|
121
|
-
comment: "The person or other agent which owns this.\n For example, the owner of a file in a filesystem.\n There is a sense of right to control. Typically defaults to the agent who
|
122
|
+
comment: "The person or other agent which owns this.\n For example, the owner of a file in a filesystem.\n There is a sense of \"right to control\". Typically defaults to the agent who created\n something, but can be changed.",
|
122
123
|
label: {en: "owner"},
|
123
124
|
range: "http://xmlns.com/foaf/0.1/Agent",
|
124
125
|
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
|