rdf-vocab 3.1.2 → 3.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +69 -45
  4. data/VERSION +1 -1
  5. data/lib/rdf/vocab.rb +60 -40
  6. data/lib/rdf/vocab/acl.rb +104 -61
  7. data/lib/rdf/vocab/as.rb +556 -91
  8. data/lib/rdf/vocab/bf2.rb +1791 -475
  9. data/lib/rdf/vocab/bibframe.rb +1 -2
  10. data/lib/rdf/vocab/bibo.rb +616 -124
  11. data/lib/rdf/vocab/cc.rb +125 -48
  12. data/lib/rdf/vocab/cert.rb +68 -1
  13. data/lib/rdf/vocab/cnt.rb +79 -1
  14. data/lib/rdf/vocab/crm.rb +1543 -776
  15. data/lib/rdf/vocab/datacite.rb +1 -1
  16. data/lib/rdf/vocab/dbo.rb +10463 -1
  17. data/lib/rdf/vocab/dc.rb +485 -99
  18. data/lib/rdf/vocab/dc11.rb +93 -31
  19. data/lib/rdf/vocab/dcat.rb +236 -88
  20. data/lib/rdf/vocab/dcmitype.rb +63 -13
  21. data/lib/rdf/vocab/disco.rb +286 -59
  22. data/lib/rdf/vocab/doap.rb +175 -1
  23. data/lib/rdf/vocab/dwc.rb +941 -189
  24. data/lib/rdf/vocab/earl.rb +324 -0
  25. data/lib/rdf/vocab/ebucore.rb +7255 -2184
  26. data/lib/rdf/vocab/edm.rb +202 -76
  27. data/lib/rdf/vocab/exif.rb +650 -1
  28. data/lib/rdf/vocab/extensions.rb +257 -203
  29. data/lib/rdf/vocab/fcrepo4.rb +398 -22
  30. data/lib/rdf/vocab/foaf.rb +380 -76
  31. data/lib/rdf/vocab/geo.rb +47 -110
  32. data/lib/rdf/vocab/geojson.rb +82 -17
  33. data/lib/rdf/vocab/geonames.rb +1508 -1351
  34. data/lib/rdf/vocab/gr.rb +861 -565
  35. data/lib/rdf/vocab/gs1.rb +1597 -1
  36. data/lib/rdf/vocab/ht.rb +204 -41
  37. data/lib/rdf/vocab/hydra.rb +335 -60
  38. data/lib/rdf/vocab/iana.rb +301 -114
  39. data/lib/rdf/vocab/ical.rb +534 -121
  40. data/lib/rdf/vocab/identifiers.rb +459 -499
  41. data/lib/rdf/vocab/iiif.rb +161 -26
  42. data/lib/rdf/vocab/jsonld.rb +179 -53
  43. data/lib/rdf/vocab/ldp.rb +130 -1
  44. data/lib/rdf/vocab/lrmi.rb +85 -17
  45. data/lib/rdf/vocab/ma.rb +460 -80
  46. data/lib/rdf/vocab/mads.rb +610 -22
  47. data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
  48. data/lib/rdf/vocab/mo.rb +1115 -540
  49. data/lib/rdf/vocab/mods.rb +635 -124
  50. data/lib/rdf/vocab/nfo.rb +1 -1
  51. data/lib/rdf/vocab/oa.rb +343 -73
  52. data/lib/rdf/vocab/og.rb +100 -1
  53. data/lib/rdf/vocab/ogc.rb +42 -9
  54. data/lib/rdf/vocab/ore.rb +69 -14
  55. data/lib/rdf/vocab/org.rb +235 -47
  56. data/lib/rdf/vocab/pcdm.rb +58 -34
  57. data/lib/rdf/vocab/pplan.rb +21 -136
  58. data/lib/rdf/vocab/premis.rb +1171 -779
  59. data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
  60. data/lib/rdf/vocab/prov.rb +700 -107
  61. data/lib/rdf/vocab/ptr.rb +172 -37
  62. data/lib/rdf/vocab/rightsstatements.rb +17 -13
  63. data/lib/rdf/vocab/rsa.rb +30 -1
  64. data/lib/rdf/vocab/rss.rb +52 -11
  65. data/lib/rdf/vocab/schema.rb +14970 -3993
  66. data/lib/rdf/vocab/schemas.rb +27066 -0
  67. data/lib/rdf/vocab/sd.rb +372 -0
  68. data/lib/rdf/vocab/sh.rb +919 -184
  69. data/lib/rdf/vocab/sioc.rb +498 -98
  70. data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
  71. data/lib/rdf/vocab/sioctypes.rb +434 -0
  72. data/lib/rdf/vocab/skos.rb +160 -44
  73. data/lib/rdf/vocab/skosxl.rb +40 -11
  74. data/lib/rdf/vocab/v.rb +323 -37
  75. data/lib/rdf/vocab/vcard.rb +625 -119
  76. data/lib/rdf/vocab/vmd.rb +323 -37
  77. data/lib/rdf/vocab/void.rb +147 -27
  78. data/lib/rdf/vocab/vs.rb +23 -5
  79. data/lib/rdf/vocab/wdrs.rb +112 -23
  80. data/lib/rdf/vocab/wot.rb +96 -19
  81. data/lib/rdf/vocab/xhtml.rb +2 -1
  82. data/lib/rdf/vocab/xhv.rb +422 -201
  83. data/lib/rdf/vocab/xkos.rb +156 -7
  84. data/spec/extensions_spec.rb +68 -0
  85. data/spec/vocab_spec.rb +10 -0
  86. metadata +20 -11
  87. data/lib/rdf/vocab/sioct.rb +0 -277
@@ -5,9 +5,86 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://xmlns.com/wot/0.1/>
8
+ # #
9
+ # # Web Of Trust vocabulary
10
+ # #
11
+ # # Web Of Trust (wot) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.
12
+ # # @see http://xmlns.com/foaf/0.1/
8
13
  # class WOT < RDF::StrictVocabulary
14
+ # # An encrypted document intended for a set of recipients.
15
+ # # @return [RDF::Vocabulary::Term]
16
+ # attr_reader :EncryptedDocument
17
+ #
18
+ # # An endorsement resource containing a detached ascii signature.
19
+ # # @return [RDF::Vocabulary::Term]
20
+ # attr_reader :Endorsement
21
+ #
22
+ # # A class used to represent a PGP/GPG public key for a user (an agent, person, group or organization).
23
+ # # @return [RDF::Vocabulary::Term]
24
+ # attr_reader :PubKey
25
+ #
26
+ # # An event describing the action of a public key being signed by some other public key.
27
+ # # @return [RDF::Vocabulary::Term]
28
+ # attr_reader :SigEvent
29
+ #
30
+ # # A user (agent, person, group or organization) of a PGP/GPG public key.
31
+ # # @return [RDF::Vocabulary::Term]
32
+ # attr_reader :User
33
+ #
34
+ # # A property linking a document to an endorsement resource containing a detached ascii signature.
35
+ # # @return [RDF::Vocabulary::Term]
36
+ # attr_reader :assurance
37
+ #
38
+ # # A property linking an encrypted document to a recipient.
39
+ # # @return [RDF::Vocabulary::Term]
40
+ # attr_reader :encryptedTo
41
+ #
42
+ # # A property linking an encrypted document to the public key that was used to encrypt it.
43
+ # # @return [RDF::Vocabulary::Term]
44
+ # attr_reader :encrypter
45
+ #
46
+ # # A public key hex fingerprint string (40 digits, white space insignificant).
47
+ # # @return [RDF::Vocabulary::Term]
48
+ # attr_reader :fingerprint
49
+ #
50
+ # # A property to link a PubKey from a User
51
+ # # @return [RDF::Vocabulary::Term]
52
+ # attr_reader :hasKey
53
+ #
54
+ # # A public key hex identifier string (8 digits).
55
+ # # @return [RDF::Vocabulary::Term]
56
+ # attr_reader :hex_id
57
+ #
58
+ # # A property linking a public key to the user of the key.
59
+ # # @return [RDF::Vocabulary::Term]
60
+ # attr_reader :identity
61
+ #
62
+ # # A numeric string representing the length, in bytes, of a public key.
63
+ # # @return [RDF::Vocabulary::Term]
64
+ # attr_reader :length
65
+ #
66
+ # # The location of an ascii version of a public key.
67
+ # # @return [RDF::Vocabulary::Term]
68
+ # attr_reader :pubkeyAddress
69
+ #
70
+ # # The date of a public key signature event.
71
+ # # @return [RDF::Vocabulary::Term]
72
+ # attr_reader :sigdate
73
+ #
74
+ # # A property linking a public key to a public key signature event.
75
+ # # @return [RDF::Vocabulary::Term]
76
+ # attr_reader :signed
77
+ #
78
+ # # A property linking a public key signature event to the public key that was used to sign.
79
+ # # @return [RDF::Vocabulary::Term]
80
+ # attr_reader :signer
81
+ #
82
+ # # The time (of day) of a public key signature event.
83
+ # # @return [RDF::Vocabulary::Term]
84
+ # attr_reader :sigtime
85
+ #
9
86
  # end
10
- class WOT < RDF::StrictVocabulary("http://xmlns.com/wot/0.1/")
87
+ WOT = Class.new(RDF::StrictVocabulary("http://xmlns.com/wot/0.1/")) do
11
88
 
12
89
  # Ontology definition
13
90
  ontology :"http://xmlns.com/wot/0.1/",
@@ -20,7 +97,7 @@ module RDF::Vocab
20
97
 
21
98
  # Class definitions
22
99
  term :EncryptedDocument,
23
- comment: %(An encrypted document intended for a set of recipients.).freeze,
100
+ comment: "An encrypted document intended for a set of recipients.".freeze,
24
101
  isDefinedBy: "wot:".freeze,
25
102
  label: "Encrypted Document".freeze,
26
103
  "owl:disjointWith": ["wot:Endorsement".freeze, "wot:PubKey".freeze, "wot:SigEvent".freeze, "wot:User".freeze],
@@ -28,7 +105,7 @@ module RDF::Vocab
28
105
  type: "owl:Class".freeze,
29
106
  "vs:term_status": "unstable".freeze
30
107
  term :Endorsement,
31
- comment: %(An endorsement resource containing a detached ascii signature.).freeze,
108
+ comment: "An endorsement resource containing a detached ascii signature.".freeze,
32
109
  isDefinedBy: "wot:".freeze,
33
110
  label: "Endorsement".freeze,
34
111
  "owl:disjointWith": ["wot:EncryptedDocument".freeze, "wot:PubKey".freeze, "wot:SigEvent".freeze, "wot:User".freeze],
@@ -36,7 +113,7 @@ module RDF::Vocab
36
113
  type: "owl:Class".freeze,
37
114
  "vs:term_status": "unstable".freeze
38
115
  term :PubKey,
39
- comment: %(A class used to represent a PGP/GPG public key for a user \(an agent, person, group or organization\).).freeze,
116
+ comment: "A class used to represent a PGP/GPG public key for a user (an agent, person, group or organization).".freeze,
40
117
  isDefinedBy: "wot:".freeze,
41
118
  label: "Public Key".freeze,
42
119
  "owl:disjointWith": ["wot:EncryptedDocument".freeze, "wot:Endorsement".freeze, "wot:SigEvent".freeze, "wot:User".freeze],
@@ -44,7 +121,7 @@ module RDF::Vocab
44
121
  type: "owl:Class".freeze,
45
122
  "vs:term_status": "stable".freeze
46
123
  term :SigEvent,
47
- comment: %(An event describing the action of a public key being signed by some other public key.).freeze,
124
+ comment: "An event describing the action of a public key being signed by some other public key.".freeze,
48
125
  isDefinedBy: "wot:".freeze,
49
126
  label: "Key Signing Event".freeze,
50
127
  "owl:disjointWith": ["wot:EncryptedDocument".freeze, "wot:Endorsement".freeze, "wot:PubKey".freeze, "wot:User".freeze],
@@ -52,7 +129,7 @@ module RDF::Vocab
52
129
  type: "owl:Class".freeze,
53
130
  "vs:term_status": "testing".freeze
54
131
  term :User,
55
- comment: %(A user \(agent, person, group or organization\) of a PGP/GPG public key.).freeze,
132
+ comment: "A user (agent, person, group or organization) of a PGP/GPG public key.".freeze,
56
133
  isDefinedBy: "wot:".freeze,
57
134
  label: "Key User".freeze,
58
135
  "owl:disjointWith": ["wot:EncryptedDocument".freeze, "wot:Endorsement".freeze, "wot:PubKey".freeze, "wot:SigEvent".freeze],
@@ -62,7 +139,7 @@ module RDF::Vocab
62
139
 
63
140
  # Property definitions
64
141
  property :assurance,
65
- comment: %(A property linking a document to an endorsement resource containing a detached ascii signature.).freeze,
142
+ comment: "A property linking a document to an endorsement resource containing a detached ascii signature.".freeze,
66
143
  domain: "foaf:Document".freeze,
67
144
  isDefinedBy: "wot:".freeze,
68
145
  label: "Assurance".freeze,
@@ -70,7 +147,7 @@ module RDF::Vocab
70
147
  type: "owl:ObjectProperty".freeze,
71
148
  "vs:term_status": "stable".freeze
72
149
  property :encryptedTo,
73
- comment: %(A property linking an encrypted document to a recipient.).freeze,
150
+ comment: "A property linking an encrypted document to a recipient.".freeze,
74
151
  domain: "wot:EncryptedDocument".freeze,
75
152
  isDefinedBy: "wot:".freeze,
76
153
  label: "Encrypted to".freeze,
@@ -78,7 +155,7 @@ module RDF::Vocab
78
155
  type: "owl:ObjectProperty".freeze,
79
156
  "vs:term_status": "unstable".freeze
80
157
  property :encrypter,
81
- comment: %(A property linking an encrypted document to the public key that was used to encrypt it.).freeze,
158
+ comment: "A property linking an encrypted document to the public key that was used to encrypt it.".freeze,
82
159
  domain: "wot:EncryptedDocument".freeze,
83
160
  isDefinedBy: "wot:".freeze,
84
161
  label: "Encrypted by".freeze,
@@ -86,7 +163,7 @@ module RDF::Vocab
86
163
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze],
87
164
  "vs:term_status": "unstable".freeze
88
165
  property :fingerprint,
89
- comment: %(A public key hex fingerprint string \(40 digits, white space insignificant\).).freeze,
166
+ comment: "A public key hex fingerprint string (40 digits, white space insignificant).".freeze,
90
167
  domain: "wot:PubKey".freeze,
91
168
  isDefinedBy: "wot:".freeze,
92
169
  label: "Fingerprint".freeze,
@@ -94,7 +171,7 @@ module RDF::Vocab
94
171
  type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze],
95
172
  "vs:term_status": "testing".freeze
96
173
  property :hasKey,
97
- comment: %(A property to link a PubKey from a User).freeze,
174
+ comment: "A property to link a PubKey from a User".freeze,
98
175
  domain: "wot:User".freeze,
99
176
  inverseOf: "wot:identity".freeze,
100
177
  isDefinedBy: "wot:".freeze,
@@ -103,7 +180,7 @@ module RDF::Vocab
103
180
  type: "owl:ObjectProperty".freeze,
104
181
  "vs:term_status": "testing".freeze
105
182
  property :hex_id,
106
- comment: %(A public key hex identifier string \(8 digits\).).freeze,
183
+ comment: "A public key hex identifier string (8 digits).".freeze,
107
184
  domain: "wot:PubKey".freeze,
108
185
  isDefinedBy: "wot:".freeze,
109
186
  label: "Hex identifier".freeze,
@@ -111,7 +188,7 @@ module RDF::Vocab
111
188
  type: "owl:DatatypeProperty".freeze,
112
189
  "vs:term_status": "stable".freeze
113
190
  property :identity,
114
- comment: %(A property linking a public key to the user of the key.).freeze,
191
+ comment: "A property linking a public key to the user of the key.".freeze,
115
192
  domain: "wot:PubKey".freeze,
116
193
  isDefinedBy: "wot:".freeze,
117
194
  label: "Identity".freeze,
@@ -119,7 +196,7 @@ module RDF::Vocab
119
196
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze],
120
197
  "vs:term_status": "testing".freeze
121
198
  property :length,
122
- comment: %(A numeric string representing the length, in bytes, of a public key.).freeze,
199
+ comment: "A numeric string representing the length, in bytes, of a public key.".freeze,
123
200
  domain: "wot:PubKey".freeze,
124
201
  isDefinedBy: "wot:".freeze,
125
202
  label: "Length".freeze,
@@ -127,7 +204,7 @@ module RDF::Vocab
127
204
  type: "owl:DatatypeProperty".freeze,
128
205
  "vs:term_status": "stable".freeze
129
206
  property :pubkeyAddress,
130
- comment: %(The location of an ascii version of a public key.).freeze,
207
+ comment: "The location of an ascii version of a public key.".freeze,
131
208
  domain: "wot:PubKey".freeze,
132
209
  isDefinedBy: "wot:".freeze,
133
210
  label: "Address".freeze,
@@ -135,7 +212,7 @@ module RDF::Vocab
135
212
  type: "owl:ObjectProperty".freeze,
136
213
  "vs:term_status": "testing".freeze
137
214
  property :sigdate,
138
- comment: %(The date of a public key signature event.).freeze,
215
+ comment: "The date of a public key signature event.".freeze,
139
216
  domain: "wot:SigEvent".freeze,
140
217
  isDefinedBy: "wot:".freeze,
141
218
  label: "Signature date".freeze,
@@ -143,7 +220,7 @@ module RDF::Vocab
143
220
  type: "owl:DatatypeProperty".freeze,
144
221
  "vs:term_status": "testing".freeze
145
222
  property :signed,
146
- comment: %(A property linking a public key to a public key signature event.).freeze,
223
+ comment: "A property linking a public key to a public key signature event.".freeze,
147
224
  domain: "wot:PubKey".freeze,
148
225
  isDefinedBy: "wot:".freeze,
149
226
  label: "Signed".freeze,
@@ -151,7 +228,7 @@ module RDF::Vocab
151
228
  type: "owl:ObjectProperty".freeze,
152
229
  "vs:term_status": "testing".freeze
153
230
  property :signer,
154
- comment: %(A property linking a public key signature event to the public key that was used to sign.).freeze,
231
+ comment: "A property linking a public key signature event to the public key that was used to sign.".freeze,
155
232
  domain: "wot:SigEvent".freeze,
156
233
  isDefinedBy: "wot:".freeze,
157
234
  label: "Signer".freeze,
@@ -159,7 +236,7 @@ module RDF::Vocab
159
236
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze],
160
237
  "vs:term_status": "unstable".freeze
161
238
  property :sigtime,
162
- comment: %(The time \(of day\) of a public key signature event.).freeze,
239
+ comment: "The time (of day) of a public key signature event.".freeze,
163
240
  domain: "wot:SigEvent".freeze,
164
241
  isDefinedBy: "wot:".freeze,
165
242
  label: "Signature time".freeze,
@@ -5,9 +5,10 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://www.w3.org/1999/xhtml#>
8
+ # #
8
9
  # class XHTML < RDF::Vocabulary
9
10
  # end
10
- class XHTML < RDF::Vocabulary("http://www.w3.org/1999/xhtml#")
11
+ XHTML = Class.new(RDF::Vocabulary("http://www.w3.org/1999/xhtml#")) do
11
12
 
12
13
  # Ontology definition
13
14
  ontology :"http://www.w3.org/1999/xhtml#",
@@ -5,9 +5,346 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://www.w3.org/1999/xhtml/vocab#>
8
+ # #
8
9
  # class XHV < RDF::Vocabulary
10
+ # # A message with important, and usually time-sensitive, information. Also see alertdialog and status.
11
+ # # @return [RDF::Vocabulary::Term]
12
+ # attr_reader :alert
13
+ #
14
+ # # A type of dialog that contains an alert message, where initial focus goes to the dialog or an element within it. Also see alert and dialog.
15
+ # # @return [RDF::Vocabulary::Term]
16
+ # attr_reader :alertdialog
17
+ #
18
+ # # alternate designates alternate versions for a resource.
19
+ # # @return [RDF::Vocabulary::Term]
20
+ # attr_reader :alternate
21
+ #
22
+ # # appendix refers to a resource serving as an appendix in a collection.
23
+ # # @return [RDF::Vocabulary::Term]
24
+ # attr_reader :appendix
25
+ #
26
+ # # A region declared as a web application, as opposed to a web document.
27
+ # # @return [RDF::Vocabulary::Term]
28
+ # attr_reader :application
29
+ #
30
+ # # A section of a page consisting of an independent part of a document, page, or site.
31
+ # # @return [RDF::Vocabulary::Term]
32
+ # attr_reader :article
33
+ #
34
+ # # banner contains the prime heading or internal title of a page.
35
+ # # @return [RDF::Vocabulary::Term]
36
+ # attr_reader :banner
37
+ #
38
+ # # bookmark refers to a bookmark - a link to a key entry point within an extended document.
39
+ # # @return [RDF::Vocabulary::Term]
40
+ # attr_reader :bookmark
41
+ #
42
+ # # An input that allows for user-triggered actions when clicked or pressed.
43
+ # # @return [RDF::Vocabulary::Term]
44
+ # attr_reader :button
45
+ #
46
+ # # chapter refers to a resource serving as a chapter in a collction.
47
+ # # @return [RDF::Vocabulary::Term]
48
+ # attr_reader :chapter
49
+ #
50
+ # # An checkable input that has three possible values: true, false, or mixed.
51
+ # # @return [RDF::Vocabulary::Term]
52
+ # attr_reader :checkbox
53
+ #
54
+ # # cite refers to a resource that defines a citation.
55
+ # # @return [RDF::Vocabulary::Term]
56
+ # attr_reader :cite
57
+ #
58
+ # # A cell containing header information for a column.
59
+ # # @return [RDF::Vocabulary::Term]
60
+ # attr_reader :columnheader
61
+ #
62
+ # # A presentation of a select; usually similar to a textbox where users can type ahead to select an option, or type to enter arbitrary text as a new item in the list.
63
+ # # @return [RDF::Vocabulary::Term]
64
+ # attr_reader :combobox
65
+ #
66
+ # # secondary indicates that the section supports but is separable from the main content of resource.
67
+ # # @return [RDF::Vocabulary::Term]
68
+ # attr_reader :complementary
69
+ #
70
+ # # contentinfo has meta information about the content on the page or the page as a whole.
71
+ # # @return [RDF::Vocabulary::Term]
72
+ # attr_reader :contentinfo
73
+ #
74
+ # # contents refers to a resource serving as a table of contents.
75
+ # # @return [RDF::Vocabulary::Term]
76
+ # attr_reader :contents
77
+ #
78
+ # # copyright refers to a copyright statement for the resource.
79
+ # # @return [RDF::Vocabulary::Term]
80
+ # attr_reader :copyright
81
+ #
82
+ # # definition indicates the definition of a term or concept.
83
+ # # @return [RDF::Vocabulary::Term]
84
+ # attr_reader :definition
85
+ #
86
+ # # A dialog is an application window that is designed to interrupt the current processing of an application in order to prompt the user to enter information or require a response. Also see alertdialog.
87
+ # # @return [RDF::Vocabulary::Term]
88
+ # attr_reader :dialog
89
+ #
90
+ # # A list of references to members of a group, such as a static table of contents.
91
+ # # @return [RDF::Vocabulary::Term]
92
+ # attr_reader :directory
93
+ #
94
+ # # A region containing related information that is declared as document content, as opposed to a web application.
95
+ # # @return [RDF::Vocabulary::Term]
96
+ # attr_reader :document
97
+ #
98
+ # # first refers the first item in a collection (see also start and top).
99
+ # # @return [RDF::Vocabulary::Term]
100
+ # attr_reader :first
101
+ #
102
+ # # glossary refers to a resource providing a glossary of terms.
103
+ # # @return [RDF::Vocabulary::Term]
104
+ # attr_reader :glossary
105
+ #
106
+ # # A grid contains cells of tabular data arranged in rows and columns, like a table.
107
+ # # @return [RDF::Vocabulary::Term]
108
+ # attr_reader :grid
109
+ #
110
+ # # A cell in a grid or treegrid.
111
+ # # @return [RDF::Vocabulary::Term]
112
+ # attr_reader :gridcell
113
+ #
114
+ # # A set of user interface objects which would not be included in a page summary or table of contents by an assistive technology.
115
+ # # @return [RDF::Vocabulary::Term]
116
+ # attr_reader :group
117
+ #
118
+ # # A heading for a section of the page.
119
+ # # @return [RDF::Vocabulary::Term]
120
+ # attr_reader :heading
121
+ #
122
+ # # help refers to a resource offering help.
123
+ # # @return [RDF::Vocabulary::Term]
124
+ # attr_reader :help
125
+ #
126
+ # # icon refers to a resource that represents an icon.
127
+ # # @return [RDF::Vocabulary::Term]
128
+ # attr_reader :icon
129
+ #
130
+ # # A container for a collection of elements that form an image.
131
+ # # @return [RDF::Vocabulary::Term]
132
+ # attr_reader :img
133
+ #
134
+ # # index refers to a resource providing an index.
135
+ # # @return [RDF::Vocabulary::Term]
136
+ # attr_reader :index
137
+ #
138
+ # # itsRules indicates that the designated resource is an [ITS] rule set.
139
+ # # @return [RDF::Vocabulary::Term]
140
+ # attr_reader :itsRules
141
+ #
142
+ # # last refers to the last resource in a collection of resources.
143
+ # # @return [RDF::Vocabulary::Term]
144
+ # attr_reader :last
145
+ #
146
+ # # license refers to a resource that defines the associated license.
147
+ # # @return [RDF::Vocabulary::Term]
148
+ # attr_reader :license
149
+ #
150
+ # # An interactive reference to an internal or external resource.
151
+ # # @return [RDF::Vocabulary::Term]
152
+ # attr_reader :link
153
+ #
154
+ # # A group of non-interactive list items.
155
+ # # @return [RDF::Vocabulary::Term]
156
+ # attr_reader :list
157
+ #
158
+ # # A widget that allows the user to select one or more items from a list of choices.
159
+ # # @return [RDF::Vocabulary::Term]
160
+ # attr_reader :listbox
161
+ #
162
+ # # A single item in a list, listbox, or directory.
163
+ # # @return [RDF::Vocabulary::Term]
164
+ # attr_reader :listitem
165
+ #
166
+ # # A type of live region where new information is added in meaningful order and old information may disappear. Also see marquee.
167
+ # # @return [RDF::Vocabulary::Term]
168
+ # attr_reader :log
169
+ #
170
+ # # main acts as the main content of the document.
171
+ # # @return [RDF::Vocabulary::Term]
172
+ # attr_reader :main
173
+ #
174
+ # # A type of live region where non-essential information changes frequently. Also see log.
175
+ # # @return [RDF::Vocabulary::Term]
176
+ # attr_reader :marquee
177
+ #
178
+ # # An element that represents a mathematical expression.
179
+ # # @return [RDF::Vocabulary::Term]
180
+ # attr_reader :math
181
+ #
182
+ # # A type of widget that offers a list of choices to the user.
183
+ # # @return [RDF::Vocabulary::Term]
184
+ # attr_reader :menu
185
+ #
186
+ # # A presentation of menu that usually remains visible and is usually presented horizontally.
187
+ # # @return [RDF::Vocabulary::Term]
188
+ # attr_reader :menubar
189
+ #
190
+ # # An option in a group of choices contained by a menu or menubar.
191
+ # # @return [RDF::Vocabulary::Term]
192
+ # attr_reader :menuitem
193
+ #
194
+ # # A checkable menuitem that has three possible values: true, false, or mixed.
195
+ # # @return [RDF::Vocabulary::Term]
196
+ # attr_reader :menuitemcheckbox
197
+ #
198
+ # # A checkable menuitem in a group of menuitemradio roles, only one of which can be checked at a time.
199
+ # # @return [RDF::Vocabulary::Term]
200
+ # attr_reader :menuitemradio
201
+ #
202
+ # # meta refers to a resource that provides metadata.
203
+ # # @return [RDF::Vocabulary::Term]
204
+ # attr_reader :meta
205
+ #
206
+ # # navigation indicates a collection of items suitable for navigating the document or related documents.
207
+ # # @return [RDF::Vocabulary::Term]
208
+ # attr_reader :navigation
209
+ #
210
+ # # next refers to the next resource (after the current one) in an ordered collection of resources.
211
+ # # @return [RDF::Vocabulary::Term]
212
+ # attr_reader :next
213
+ #
214
+ # # note indicates the content is parenthetic or ancillary to the main content of the resource.
215
+ # # @return [RDF::Vocabulary::Term]
216
+ # attr_reader :note
217
+ #
218
+ # # A selectable item in a select list.
219
+ # # @return [RDF::Vocabulary::Term]
220
+ # attr_reader :option
221
+ #
222
+ # # p3pv1 refers to a P3P Policy Reference File [P3P].
223
+ # # @return [RDF::Vocabulary::Term]
224
+ # attr_reader :p3pv1
225
+ #
226
+ # # An element whose role is presentational and does not need to be mapped to the accessibility API.
227
+ # # @return [RDF::Vocabulary::Term]
228
+ # attr_reader :presentation
229
+ #
230
+ # # prev refers to a previous resource (before the current one) in an ordered collection of resources.
231
+ # # @return [RDF::Vocabulary::Term]
232
+ # attr_reader :prev
233
+ #
234
+ # # An element that displays the progress status for tasks that take a long time.
235
+ # # @return [RDF::Vocabulary::Term]
236
+ # attr_reader :progressbar
237
+ #
238
+ # # A checkable input in a group of radio roles, only one of which can be checked at a time.
239
+ # # @return [RDF::Vocabulary::Term]
240
+ # attr_reader :radio
241
+ #
242
+ # # A group of radio buttons.
243
+ # # @return [RDF::Vocabulary::Term]
244
+ # attr_reader :radiogroup
245
+ #
246
+ # # A large perceivable section of a web page or document, that the author feels should be included in a summary of page features.
247
+ # # @return [RDF::Vocabulary::Term]
248
+ # attr_reader :region
249
+ #
250
+ # # role indicates the purpose of the resource. See the XHTML Role Vocabulary for roles in this vocabulary space, and XHTMLROLE for information on extending the collection of roles.
251
+ # # @return [RDF::Vocabulary::Term]
252
+ # attr_reader :role
253
+ #
254
+ # # A row of cells in a grid.
255
+ # # @return [RDF::Vocabulary::Term]
256
+ # attr_reader :row
257
+ #
258
+ # # A cell containing header information for a row in a grid.
259
+ # # @return [RDF::Vocabulary::Term]
260
+ # attr_reader :rowheader
261
+ #
262
+ # # search indicates that the section provides a search facility.
263
+ # # @return [RDF::Vocabulary::Term]
264
+ # attr_reader :search
265
+ #
266
+ # # section refers to a resource serving as a section in a collection.
267
+ # # @return [RDF::Vocabulary::Term]
268
+ # attr_reader :section
269
+ #
270
+ # # A divider that separates and distinguishes sections of content or groups of menuitems.
271
+ # # @return [RDF::Vocabulary::Term]
272
+ # attr_reader :separator
273
+ #
274
+ # # A user input where the user selects a value from within a given range.
275
+ # # @return [RDF::Vocabulary::Term]
276
+ # attr_reader :slider
277
+ #
278
+ # # A form of range that expects a user to select from amongst discrete choices.
279
+ # # @return [RDF::Vocabulary::Term]
280
+ # attr_reader :spinbutton
281
+ #
282
+ # # start refers to the first resource in a collection of resources.
283
+ # # @return [RDF::Vocabulary::Term]
284
+ # attr_reader :start
285
+ #
286
+ # # A container whose content is advisory information for the user but is not important enough to justify an alert. Also see alert.
287
+ # # @return [RDF::Vocabulary::Term]
288
+ # attr_reader :status
289
+ #
290
+ # # stylesheet refers to a resource serving as a stylesheet for a resource.
291
+ # # @return [RDF::Vocabulary::Term]
292
+ # attr_reader :stylesheet
293
+ #
294
+ # # subsection refers to a resource serving as a subsection in a collection.
295
+ # # @return [RDF::Vocabulary::Term]
296
+ # attr_reader :subsection
297
+ #
298
+ # # A header for a tabpanel.
299
+ # # @return [RDF::Vocabulary::Term]
300
+ # attr_reader :tab
301
+ #
302
+ # # A list of tab elements, which are references to tabpanel elements.
303
+ # # @return [RDF::Vocabulary::Term]
304
+ # attr_reader :tablist
305
+ #
306
+ # # A container for the resources associated with a tab.
307
+ # # @return [RDF::Vocabulary::Term]
308
+ # attr_reader :tabpanel
309
+ #
310
+ # # Input that allows free-form text as their value.
311
+ # # @return [RDF::Vocabulary::Term]
312
+ # attr_reader :textbox
313
+ #
314
+ # # A numerical counter which indicates an amount of elapsed time from a start point, or the time remaining until an end point.
315
+ # # @return [RDF::Vocabulary::Term]
316
+ # attr_reader :timer
317
+ #
318
+ # # A collection of commonly used function buttons represented in compact visual form.
319
+ # # @return [RDF::Vocabulary::Term]
320
+ # attr_reader :toolbar
321
+ #
322
+ # # A contextual popup that displays a description for an element in a mouse hover or keyboard focused state. Supplement to the normal tooltip processing of the user agent.
323
+ # # @return [RDF::Vocabulary::Term]
324
+ # attr_reader :tooltip
325
+ #
326
+ # # top is a synonym for start.
327
+ # # @return [RDF::Vocabulary::Term]
328
+ # attr_reader :top
329
+ #
330
+ # # A type of list that may contain sub-level nested groups that can be collapsed and expanded.
331
+ # # @return [RDF::Vocabulary::Term]
332
+ # attr_reader :tree
333
+ #
334
+ # # A grid whose rows can be expanded and collapsed in the same manner as for a tree.
335
+ # # @return [RDF::Vocabulary::Term]
336
+ # attr_reader :treegrid
337
+ #
338
+ # # An option item of a tree. This is an element within a tree that may be expanded or collapsed if it contains a sub-level group of treeitems.
339
+ # # @return [RDF::Vocabulary::Term]
340
+ # attr_reader :treeitem
341
+ #
342
+ # # up refers to a resource "above" in a hierarchically structured set.
343
+ # # @return [RDF::Vocabulary::Term]
344
+ # attr_reader :up
345
+ #
9
346
  # end
10
- class XHV < RDF::Vocabulary("http://www.w3.org/1999/xhtml/vocab#")
347
+ XHV = Class.new(RDF::Vocabulary("http://www.w3.org/1999/xhtml/vocab#")) do
11
348
 
12
349
  # Ontology definition
13
350
  ontology :"http://www.w3.org/1999/xhtml/vocab#",
@@ -15,405 +352,289 @@ module RDF::Vocab
15
352
 
16
353
  # Property definitions
17
354
  property :alert,
18
- comment: %(A message
19
- with important, and usually time-sensitive, information. Also see
20
- alertdialog and status.).freeze,
355
+ comment: "A message\n with important, and usually time-sensitive, information. Also see\n alertdialog and status.".freeze,
21
356
  type: "rdf:Property".freeze
22
357
  property :alertdialog,
23
- comment: %(A
24
- type of dialog that contains an alert message, where initial focus goes
25
- to the dialog or an element within it. Also see alert and dialog.).freeze,
358
+ comment: "A\n type of dialog that contains an alert message, where initial focus goes\n to the dialog or an element within it. Also see alert and dialog.".freeze,
26
359
  type: "rdf:Property".freeze
27
360
  property :alternate,
28
- comment: %(alternate designates alternate
29
- versions for a resource.).freeze,
361
+ comment: "alternate designates alternate\n versions for a resource.".freeze,
30
362
  "rdfs:member": "xhv:relrev-properties".freeze,
31
363
  type: "rdf:Property".freeze
32
364
  property :appendix,
33
- comment: %(appendix refers to a resource serving
34
- as an appendix in a collection. ).freeze,
365
+ comment: "appendix refers to a resource serving\n as an appendix in a collection. ".freeze,
35
366
  "rdfs:member": "xhv:relrev-properties".freeze,
36
367
  type: "rdf:Property".freeze
37
368
  property :application,
38
- comment: %(A
39
- region declared as a web application, as opposed to a web document.).freeze,
369
+ comment: "A\n region declared as a web application, as opposed to a web document.".freeze,
40
370
  type: "rdf:Property".freeze
41
371
  property :article,
42
- comment: %(A
43
- section of a page consisting of an independent part of a document, page,
44
- or site.).freeze,
372
+ comment: "A\n section of a page consisting of an independent part of a document, page,\n or site.".freeze,
45
373
  type: "rdf:Property".freeze
46
374
  property :banner,
47
- comment: %(banner contains the prime heading or
48
- internal title of a page. ).freeze,
375
+ comment: "banner contains the prime heading or\n internal title of a page. ".freeze,
49
376
  "rdfs:member": "xhv:role-properties".freeze,
50
377
  type: "rdf:Property".freeze
51
378
  property :bookmark,
52
- comment: %(bookmark refers to a bookmark - a link
53
- to a key entry point within an extended document. ).freeze,
379
+ comment: "bookmark refers to a bookmark - a link\n to a key entry point within an extended document. ".freeze,
54
380
  "rdfs:member": "xhv:relrev-properties".freeze,
55
381
  type: "rdf:Property".freeze
56
382
  property :button,
57
- comment: %(An input
58
- that allows for user-triggered actions when clicked or pressed.).freeze,
383
+ comment: "An input\n that allows for user-triggered actions when clicked or pressed.".freeze,
59
384
  type: "rdf:Property".freeze
60
385
  property :chapter,
61
- comment: %(chapter refers to a resource serving
62
- as a chapter in a collction. ).freeze,
386
+ comment: "chapter refers to a resource serving\n as a chapter in a collction. ".freeze,
63
387
  "rdfs:member": "xhv:relrev-properties".freeze,
64
388
  type: "rdf:Property".freeze
65
389
  property :checkbox,
66
- comment: %(An
67
- checkable input that has three possible values: true, false, or
68
- mixed.).freeze,
390
+ comment: "An\n checkable input that has three possible values: true, false, or\n mixed.".freeze,
69
391
  type: "rdf:Property".freeze
70
392
  property :cite,
71
- comment: %(cite refers to a resource that defines
72
- a citation. ).freeze,
393
+ comment: "cite refers to a resource that defines\n a citation. ".freeze,
73
394
  "rdfs:member": "xhv:relrev-properties".freeze,
74
395
  type: "rdf:Property".freeze
75
396
  property :columnheader,
76
- comment: %(A
77
- cell containing header information for a column.).freeze,
397
+ comment: "A\n cell containing header information for a column.".freeze,
78
398
  type: "rdf:Property".freeze
79
399
  property :combobox,
80
- comment: %(A
81
- presentation of a select; usually similar to a textbox where users can
82
- type ahead to select an option, or type to enter arbitrary text as a new
83
- item in the list.).freeze,
400
+ comment: "A\n presentation of a select; usually similar to a textbox where users can\n type ahead to select an option, or type to enter arbitrary text as a new\n item in the list.".freeze,
84
401
  type: "rdf:Property".freeze
85
402
  property :complementary,
86
- comment: %(secondary indicates that the section
87
- supports but is separable from the main content of resource.).freeze,
403
+ comment: "secondary indicates that the section\n supports but is separable from the main content of resource.".freeze,
88
404
  "rdfs:member": "xhv:role-properties".freeze,
89
405
  type: "rdf:Property".freeze
90
406
  property :contentinfo,
91
- comment: %(contentinfo has meta information about
92
- the content on the page or the page as a whole.).freeze,
407
+ comment: "contentinfo has meta information about\n the content on the page or the page as a whole.".freeze,
93
408
  "rdfs:member": "xhv:role-properties".freeze,
94
409
  type: "rdf:Property".freeze
95
410
  property :contents,
96
- comment: %(contents refers to a resource serving
97
- as a table of contents. ).freeze,
411
+ comment: "contents refers to a resource serving\n as a table of contents. ".freeze,
98
412
  "rdfs:member": "xhv:relrev-properties".freeze,
99
413
  type: "rdf:Property".freeze
100
414
  property :copyright,
101
- comment: %(copyright refers to a copyright
102
- statement for the resource. ).freeze,
415
+ comment: "copyright refers to a copyright\n statement for the resource. ".freeze,
103
416
  "rdfs:member": "xhv:relrev-properties".freeze,
104
417
  type: "rdf:Property".freeze
105
418
  property :definition,
106
- comment: %(definition indicates the definition of
107
- a term or concept.).freeze,
419
+ comment: "definition indicates the definition of\n a term or concept.".freeze,
108
420
  "rdfs:member": "xhv:role-properties".freeze,
109
421
  type: "rdf:Property".freeze
110
422
  property :dialog,
111
- comment: %(A dialog
112
- is an application window that is designed to interrupt the current
113
- processing of an application in order to prompt the user to enter
114
- information or require a response. Also see alertdialog.).freeze,
423
+ comment: "A dialog\n is an application window that is designed to interrupt the current\n processing of an application in order to prompt the user to enter\n information or require a response. Also see alertdialog.".freeze,
115
424
  type: "rdf:Property".freeze
116
425
  property :directory,
117
- comment: %(A list
118
- of references to members of a group, such as a static table of
119
- contents.).freeze,
426
+ comment: "A list\n of references to members of a group, such as a static table of\n contents.".freeze,
120
427
  type: "rdf:Property".freeze
121
428
  property :document,
122
- comment: %(A
123
- region containing related information that is declared as document
124
- content, as opposed to a web application.).freeze,
429
+ comment: "A\n region containing related information that is declared as document\n content, as opposed to a web application.".freeze,
125
430
  type: "rdf:Property".freeze
126
431
  property :first,
127
- comment: %(first refers the first item in a
128
- collection \(see also start and top\).).freeze,
432
+ comment: "first refers the first item in a\n collection (see also start and top).".freeze,
129
433
  "rdfs:member": "xhv:relrev-properties".freeze,
130
434
  type: "rdf:Property".freeze
131
435
  property :glossary,
132
- comment: %(glossary refers to a resource
133
- providing a glossary of terms. ).freeze,
436
+ comment: "glossary refers to a resource\n providing a glossary of terms. ".freeze,
134
437
  "rdfs:member": "xhv:relrev-properties".freeze,
135
438
  type: "rdf:Property".freeze
136
439
  property :grid,
137
- comment: %(A grid
138
- contains cells of tabular data arranged in rows and columns, like a
139
- table.).freeze,
440
+ comment: "A grid\n contains cells of tabular data arranged in rows and columns, like a\n table.".freeze,
140
441
  type: "rdf:Property".freeze
141
442
  property :gridcell,
142
- comment: %(A cell
143
- in a grid or treegrid.).freeze,
443
+ comment: "A cell\n in a grid or treegrid.".freeze,
144
444
  type: "rdf:Property".freeze
145
445
  property :group,
146
- comment: %(A set of
147
- user interface objects which would not be included in a page summary or
148
- table of contents by an assistive technology.).freeze,
446
+ comment: "A set of\n user interface objects which would not be included in a page summary or\n table of contents by an assistive technology.".freeze,
149
447
  type: "rdf:Property".freeze
150
448
  property :heading,
151
- comment: %(A
152
- heading for a section of the page.).freeze,
449
+ comment: "A\n heading for a section of the page.".freeze,
153
450
  type: "rdf:Property".freeze
154
451
  property :help,
155
- comment: %(help refers to a resource offering
156
- help. ).freeze,
452
+ comment: "help refers to a resource offering\n help. ".freeze,
157
453
  "rdfs:member": "xhv:relrev-properties".freeze,
158
454
  type: "rdf:Property".freeze
159
455
  property :icon,
160
- comment: %(icon refers to a resource that
161
- represents an icon. ).freeze,
456
+ comment: "icon refers to a resource that\n represents an icon. ".freeze,
162
457
  "rdfs:member": "xhv:relrev-properties".freeze,
163
458
  type: "rdf:Property".freeze
164
459
  property :img,
165
- comment: %(A container
166
- for a collection of elements that form an image.).freeze,
460
+ comment: "A container\n for a collection of elements that form an image.".freeze,
167
461
  type: "rdf:Property".freeze
168
462
  property :index,
169
- comment: %(index refers to a resource providing
170
- an index. ).freeze,
463
+ comment: "index refers to a resource providing\n an index. ".freeze,
171
464
  "rdfs:member": "xhv:relrev-properties".freeze,
172
465
  type: "rdf:Property".freeze
173
466
  property :itsRules,
174
- comment: %(itsRules indicates that the designated
175
- resource is an [ITS] rule set.).freeze,
467
+ comment: "itsRules indicates that the designated\n resource is an [ITS] rule set.".freeze,
176
468
  "rdfs:member": "xhv:relrev-properties".freeze,
177
469
  type: "rdf:Property".freeze
178
470
  property :last,
179
- comment: %(last refers to the last resource in a
180
- collection of resources. ).freeze,
471
+ comment: "last refers to the last resource in a\n collection of resources. ".freeze,
181
472
  "rdfs:member": "xhv:relrev-properties".freeze,
182
473
  type: "rdf:Property".freeze
183
474
  property :license,
184
- comment: %(license refers to a resource that
185
- defines the associated license. ).freeze,
475
+ comment: "license refers to a resource that\n defines the associated license. ".freeze,
186
476
  "rdfs:member": "xhv:relrev-properties".freeze,
187
477
  type: "rdf:Property".freeze
188
478
  property :link,
189
- comment: %(An
190
- interactive reference to an internal or external resource.).freeze,
479
+ comment: "An\n interactive reference to an internal or external resource.".freeze,
191
480
  type: "rdf:Property".freeze
192
481
  property :list,
193
- comment: %(A group of
194
- non-interactive list items.).freeze,
482
+ comment: "A group of\n non-interactive list items.".freeze,
195
483
  type: "rdf:Property".freeze
196
484
  property :listbox,
197
- comment: %(A widget
198
- that allows the user to select one or more items from a list of
199
- choices.).freeze,
485
+ comment: "A widget\n that allows the user to select one or more items from a list of\n choices.".freeze,
200
486
  type: "rdf:Property".freeze
201
487
  property :listitem,
202
- comment: %(A
203
- single item in a list, listbox, or directory.).freeze,
488
+ comment: "A\n single item in a list, listbox, or directory.".freeze,
204
489
  type: "rdf:Property".freeze
205
490
  property :log,
206
- comment: %(A type of
207
- live region where new information is added in meaningful order and old
208
- information may disappear. Also see marquee.).freeze,
491
+ comment: "A type of\n live region where new information is added in meaningful order and old\n information may disappear. Also see marquee.".freeze,
209
492
  type: "rdf:Property".freeze
210
493
  property :main,
211
- comment: %(main acts as the main content of the
212
- document. ).freeze,
494
+ comment: "main acts as the main content of the\n document. ".freeze,
213
495
  "rdfs:member": "xhv:role-properties".freeze,
214
496
  type: "rdf:Property".freeze
215
497
  property :marquee,
216
- comment: %(A type
217
- of live region where non-essential information changes frequently. Also
218
- see log.).freeze,
498
+ comment: "A type\n of live region where non-essential information changes frequently. Also\n see log.".freeze,
219
499
  type: "rdf:Property".freeze
220
500
  property :math,
221
- comment: %(An element
222
- that represents a mathematical expression.).freeze,
501
+ comment: "An element\n that represents a mathematical expression.".freeze,
223
502
  type: "rdf:Property".freeze
224
503
  property :menu,
225
- comment: %(A type of
226
- widget that offers a list of choices to the user.).freeze,
504
+ comment: "A type of\n widget that offers a list of choices to the user.".freeze,
227
505
  type: "rdf:Property".freeze
228
506
  property :menubar,
229
- comment: %(A
230
- presentation of menu that usually remains visible and is usually
231
- presented horizontally.).freeze,
507
+ comment: "A\n presentation of menu that usually remains visible and is usually\n presented horizontally.".freeze,
232
508
  type: "rdf:Property".freeze
233
509
  property :menuitem,
234
- comment: %(An
235
- option in a group of choices contained by a menu or menubar.).freeze,
510
+ comment: "An\n option in a group of choices contained by a menu or menubar.".freeze,
236
511
  type: "rdf:Property".freeze
237
512
  property :menuitemcheckbox,
238
- comment: %(A checkable menuitem that has three possible
239
- values: true, false, or mixed.).freeze,
513
+ comment: "A checkable menuitem that has three possible\n values: true, false, or mixed.".freeze,
240
514
  type: "rdf:Property".freeze
241
515
  property :menuitemradio,
242
- comment: %(A
243
- checkable menuitem in a group of menuitemradio roles, only one of which
244
- can be checked at a time.).freeze,
516
+ comment: "A\n checkable menuitem in a group of menuitemradio roles, only one of which\n can be checked at a time.".freeze,
245
517
  type: "rdf:Property".freeze
246
518
  property :meta,
247
- comment: %(meta refers to a resource that
248
- provides metadata. ).freeze,
519
+ comment: "meta refers to a resource that\n provides metadata. ".freeze,
249
520
  "rdfs:member": "xhv:relrev-properties".freeze,
250
521
  type: "rdf:Property".freeze
251
522
  property :navigation,
252
- comment: %(navigation indicates a collection of
253
- items suitable for navigating the document or related documents.).freeze,
523
+ comment: "navigation indicates a collection of\n items suitable for navigating the document or related documents.".freeze,
254
524
  "rdfs:member": "xhv:role-properties".freeze,
255
525
  type: "rdf:Property".freeze
256
526
  property :next,
257
- comment: %(next refers to the next resource
258
- \(after the current one\) in an ordered collection of resources. ).freeze,
527
+ comment: "next refers to the next resource\n (after the current one) in an ordered collection of resources. ".freeze,
259
528
  "rdfs:member": "xhv:relrev-properties".freeze,
260
529
  type: "rdf:Property".freeze
261
530
  property :note,
262
- comment: %(note indicates the content is
263
- parenthetic or ancillary to the main content of the resource. ).freeze,
531
+ comment: "note indicates the content is\n parenthetic or ancillary to the main content of the resource. ".freeze,
264
532
  "rdfs:member": "xhv:role-properties".freeze,
265
533
  type: "rdf:Property".freeze
266
534
  property :option,
267
- comment: %(A
268
- selectable item in a select list.).freeze,
535
+ comment: "A\n selectable item in a select list.".freeze,
269
536
  type: "rdf:Property".freeze
270
537
  property :p3pv1,
271
- comment: %(p3pv1 refers to a P3P Policy Reference
272
- File [P3P]. ).freeze,
538
+ comment: "p3pv1 refers to a P3P Policy Reference\n File [P3P]. ".freeze,
273
539
  "rdfs:member": "xhv:relrev-properties".freeze,
274
540
  type: "rdf:Property".freeze
275
541
  property :presentation,
276
- comment: %(An
277
- element whose role is presentational and does not need to be mapped to
278
- the accessibility API.).freeze,
542
+ comment: "An\n element whose role is presentational and does not need to be mapped to\n the accessibility API.".freeze,
279
543
  type: "rdf:Property".freeze
280
544
  property :prev,
281
- comment: %(prev refers to a previous resource
282
- \(before the current one\) in an ordered collection of resources. ).freeze,
545
+ comment: "prev refers to a previous resource\n (before the current one) in an ordered collection of resources. ".freeze,
283
546
  "rdfs:member": "xhv:relrev-properties".freeze,
284
547
  type: "rdf:Property".freeze
285
548
  property :progressbar,
286
- comment: %(An
287
- element that displays the progress status for tasks that take a long
288
- time.).freeze,
549
+ comment: "An\n element that displays the progress status for tasks that take a long\n time.".freeze,
289
550
  type: "rdf:Property".freeze
290
551
  property :radio,
291
- comment: %(A
292
- checkable input in a group of radio roles, only one of which can be
293
- checked at a time.).freeze,
552
+ comment: "A\n checkable input in a group of radio roles, only one of which can be\n checked at a time.".freeze,
294
553
  type: "rdf:Property".freeze
295
554
  property :radiogroup,
296
- comment: %(A
297
- group of radio buttons.).freeze,
555
+ comment: "A\n group of radio buttons.".freeze,
298
556
  type: "rdf:Property".freeze
299
557
  property :region,
300
- comment: %(A large
301
- perceivable section of a web page or document, that the author feels
302
- should be included in a summary of page features.).freeze,
558
+ comment: "A large\n perceivable section of a web page or document, that the author feels\n should be included in a summary of page features.".freeze,
303
559
  type: "rdf:Property".freeze
304
560
  property :role,
305
- comment: %(role indicates the purpose of the
306
- resource. See the XHTML Role
307
- Vocabulary for roles in this vocabulary space, and XHTMLROLE for information on extending the
308
- collection of roles. ).freeze,
561
+ comment: "role indicates the purpose of the\n resource. See the XHTML Role\n Vocabulary for roles in this vocabulary space, and XHTMLROLE for information on extending the\n collection of roles. ".freeze,
309
562
  "rdfs:member": "xhv:relrev-properties".freeze,
310
563
  type: ["rdf:Bag".freeze, "rdf:Property".freeze]
311
564
  property :row,
312
- comment: %(A row of
313
- cells in a grid.).freeze,
565
+ comment: "A row of\n cells in a grid.".freeze,
314
566
  type: "rdf:Property".freeze
315
567
  property :rowheader,
316
- comment: %(A cell
317
- containing header information for a row in a grid.).freeze,
568
+ comment: "A cell\n containing header information for a row in a grid.".freeze,
318
569
  type: "rdf:Property".freeze
319
570
  property :search,
320
- comment: %(search indicates that the section
321
- provides a search facility. ).freeze,
571
+ comment: "search indicates that the section\n provides a search facility. ".freeze,
322
572
  "rdfs:member": "xhv:role-properties".freeze,
323
573
  type: "rdf:Property".freeze
324
574
  property :section,
325
- comment: %(section refers to a resource serving
326
- as a section in a collection. ).freeze,
575
+ comment: "section refers to a resource serving\n as a section in a collection. ".freeze,
327
576
  "rdfs:member": "xhv:relrev-properties".freeze,
328
577
  type: "rdf:Property".freeze
329
578
  property :separator,
330
- comment: %(A
331
- divider that separates and distinguishes sections of content or groups of
332
- menuitems.).freeze,
579
+ comment: "A\n divider that separates and distinguishes sections of content or groups of\n menuitems.".freeze,
333
580
  type: "rdf:Property".freeze
334
581
  property :slider,
335
- comment: %(A user
336
- input where the user selects a value from within a given range.).freeze,
582
+ comment: "A user\n input where the user selects a value from within a given range.".freeze,
337
583
  type: "rdf:Property".freeze
338
584
  property :spinbutton,
339
- comment: %(A
340
- form of range that expects a user to select from amongst discrete
341
- choices.).freeze,
585
+ comment: "A\n form of range that expects a user to select from amongst discrete\n choices.".freeze,
342
586
  type: "rdf:Property".freeze
343
587
  property :start,
344
- comment: %(start refers to the first resource in
345
- a collection of resources. ).freeze,
588
+ comment: "start refers to the first resource in\n a collection of resources. ".freeze,
346
589
  "rdfs:member": "xhv:relrev-properties".freeze,
347
590
  type: "rdf:Property".freeze
348
591
  property :status,
349
- comment: %(A
350
- container whose content is advisory information for the user but is not
351
- important enough to justify an alert. Also see alert.).freeze,
592
+ comment: "A\n container whose content is advisory information for the user but is not\n important enough to justify an alert. Also see alert.".freeze,
352
593
  type: "rdf:Property".freeze
353
594
  property :stylesheet,
354
- comment: %(stylesheet refers to a resource
355
- serving as a stylesheet for a resource. ).freeze,
595
+ comment: "stylesheet refers to a resource\n serving as a stylesheet for a resource. ".freeze,
356
596
  "rdfs:member": "xhv:relrev-properties".freeze,
357
597
  type: "rdf:Property".freeze
358
598
  property :subsection,
359
- comment: %(subsection refers to a resource
360
- serving as a subsection in a collection. ).freeze,
599
+ comment: "subsection refers to a resource\n serving as a subsection in a collection. ".freeze,
361
600
  "rdfs:member": "xhv:relrev-properties".freeze,
362
601
  type: "rdf:Property".freeze
363
602
  property :tab,
364
- comment: %(A header for
365
- a tabpanel.).freeze,
603
+ comment: "A header for\n a tabpanel.".freeze,
366
604
  type: "rdf:Property".freeze
367
605
  property :tablist,
368
- comment: %(A list
369
- of tab elements, which are references to tabpanel elements.).freeze,
606
+ comment: "A list\n of tab elements, which are references to tabpanel elements.".freeze,
370
607
  type: "rdf:Property".freeze
371
608
  property :tabpanel,
372
- comment: %(A
373
- container for the resources associated with a tab.).freeze,
609
+ comment: "A\n container for the resources associated with a tab.".freeze,
374
610
  type: "rdf:Property".freeze
375
611
  property :textbox,
376
- comment: %(Input
377
- that allows free-form text as their value.).freeze,
612
+ comment: "Input\n that allows free-form text as their value.".freeze,
378
613
  type: "rdf:Property".freeze
379
614
  property :timer,
380
- comment: %(A
381
- numerical counter which indicates an amount of elapsed time from a start
382
- point, or the time remaining until an end point.).freeze,
615
+ comment: "A\n numerical counter which indicates an amount of elapsed time from a start\n point, or the time remaining until an end point.".freeze,
383
616
  type: "rdf:Property".freeze
384
617
  property :toolbar,
385
- comment: %(A
386
- collection of commonly used function buttons represented in compact
387
- visual form.).freeze,
618
+ comment: "A\n collection of commonly used function buttons represented in compact\n visual form.".freeze,
388
619
  type: "rdf:Property".freeze
389
620
  property :tooltip,
390
- comment: %(A
391
- contextual popup that displays a description for an element in a mouse
392
- hover or keyboard focused state. Supplement to the normal tooltip
393
- processing of the user agent.).freeze,
621
+ comment: "A\n contextual popup that displays a description for an element in a mouse\n hover or keyboard focused state. Supplement to the normal tooltip\n processing of the user agent.".freeze,
394
622
  type: "rdf:Property".freeze
395
623
  property :top,
396
- comment: %(top is a synonym for start. ).freeze,
624
+ comment: "top is a synonym for start. ".freeze,
397
625
  "rdfs:member": "xhv:relrev-properties".freeze,
398
626
  type: "rdf:Property".freeze
399
627
  property :tree,
400
- comment: %(A type of
401
- list that may contain sub-level nested groups that can be collapsed and
402
- expanded.).freeze,
628
+ comment: "A type of\n list that may contain sub-level nested groups that can be collapsed and\n expanded.".freeze,
403
629
  type: "rdf:Property".freeze
404
630
  property :treegrid,
405
- comment: %(A grid
406
- whose rows can be expanded and collapsed in the same manner as for a
407
- tree.).freeze,
631
+ comment: "A grid\n whose rows can be expanded and collapsed in the same manner as for a\n tree.".freeze,
408
632
  type: "rdf:Property".freeze
409
633
  property :treeitem,
410
- comment: %(An
411
- option item of a tree. This is an element within a tree that may be
412
- expanded or collapsed if it contains a sub-level group of treeitems.).freeze,
634
+ comment: "An\n option item of a tree. This is an element within a tree that may be\n expanded or collapsed if it contains a sub-level group of treeitems.".freeze,
413
635
  type: "rdf:Property".freeze
414
636
  property :up,
415
- comment: %(up refers to a resource "above" in a
416
- hierarchically structured set. ).freeze,
637
+ comment: "up refers to a resource \"above\" in a\n hierarchically structured set. ".freeze,
417
638
  "rdfs:member": "xhv:relrev-properties".freeze,
418
639
  type: "rdf:Property".freeze
419
640