rdf-vocab 3.2.6 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 71b1a5caf06164d762b6bcb69a1a27ec8f8487bdcd932e95203352e80db38c81
4
- data.tar.gz: cfd8f470db07e6db7cb4a211825d63e36adef0267120eaaaf46a6db447fc3320
3
+ metadata.gz: 186b8f21aa52e6826624564d0962167892eeccc40fe33c33b28ca2b5e0bfa6de
4
+ data.tar.gz: b58fc4961f50b42cb89609fe7d798e5094d892ce50f386dfb47e9e7d8e91ef40
5
5
  SHA512:
6
- metadata.gz: bb4b90e3c64578027952b72aea7394fd895ebc64b61cc2f722da4c867953ccd37d949f8b96bf361db55130513313cf6e357d3bed108df4e981d09b84a3b9a2e0
7
- data.tar.gz: ddf02aa89be6512bbf58ff893a11cb84f564dde064232563fa5582503b033efe3eb65172fec1783db293625189801065d7150195cf304035c9c104d13a0b2a69
6
+ metadata.gz: 91fbe316f08fd3c11332995a9c153a4df1c7f6a40b72ca49d50ceea5e31e3fe244f2681d0d8da8b5c236bd0c39a966a11ffddac4245dd6c0193cf7ddd2d8f52c
7
+ data.tar.gz: dd2919b9ff4bd2a518756d15a1bafcb777355c60b4667d15d436080cd9ce86dbb08af41ef094d971fb76814c0f87e6198b2e9668604ccaf7cfe85b60d4387428
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.2.6
1
+ 3.3.0
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/elements/1.1/title": "Basic Access Control ontology"
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 also HTTP's header Link: foo.meta ;rel=meta can be used for this.",
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 if 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 Authentication which has that directory as its acl:default applies to the\n resource. (The highest directory must have an ACL file.)\n",
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 craeted\n something but can be changed.",
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"