relaton-w3c 1.12.0 → 1.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3bac445b656e3c97ea5e550a1c0d93f41e31a50adb5e04071e95076f139ba35d
4
- data.tar.gz: bc122a2538c95e1b613f7939de6b6c7e33d98c8b0d1facf48ce94d9fd0dece06
3
+ metadata.gz: c028e302ee03cbb9e084fa668bca72b261ccabeac8b7a28f6f3f1ec561e92231
4
+ data.tar.gz: 44ac6f835a1ba3a610e52e7623e0ce6d55a16bf45555effacf24ce79efc4e7b6
5
5
  SHA512:
6
- metadata.gz: b2055507b27e70a521e725368d48e063ca3cc2f4d86c84d1476dcac6cda71f06af4ad67c70f466c0b205864d90c704a8084e617054cee1bc4f419a0745d22e1d
7
- data.tar.gz: 9d7268f28268075c41af992ad40e7769c7a77fb0591e6950f1dee981dc3f1fcaff76821c9cc0d5a8a2508a7390ee8f03b5e61ed8fee77ccc7485717b534d1d88
6
+ metadata.gz: 40aaa5788e9e3ff60d01d4e572e36eba5f2f381d19638ce47942d6bf423184270856803d953be305761f23a8043518f1bd058411c9dbeaf0acdf134b0ac7119d
7
+ data.tar.gz: 9a0a1d61668dce5b5718d476ba66f6422bfb2ce446ba1a6f9e2677d6fe1fbdb44d67160a5fdd3285b30ba70bf72bd6228902e3d21925fcff8d2e6bc53be34249
data/README.adoc CHANGED
@@ -151,14 +151,17 @@ RelatonW3c::W3cBibliographicItem.new **bib_hash
151
151
 
152
152
  === Fetch data
153
153
 
154
- There is a W3C dataset http://www.w3.org/2002/01/tr-automation/tr.rdf which can be converted into RelatonXML/BibXML/BibYAML formats. The static files from the `path_to_gem/withdrawn` directory are added to output during fetching data.
155
-
156
- The method `RelatonW3c::DataFetcher.fetch(output: "data", format: "yaml")` converts all the documents from the dataset and save them to the `./data` folder in YAML format.
154
+ The method `RelatonW3c::DataFetcher.fetch(source, output: "data", format: "yaml")` converts all the documents from the dataset and save them to the `./data` folder in YAML format.
157
155
  Arguments:
158
156
 
157
+ - `source` - name of dataset (`w3c-rdf` or `w3c-tr-archive`)
159
158
  - `output` - folder to save documents (default './data').
160
159
  - `format` - format in which the documents are saved. Possible formats are: `yaml`, `xml`, `bibxml` (default `yaml`).
161
160
 
161
+ The available datasets are:
162
+ - `w3c-rdf` - The dataset is fetched from http://www.w3.org/2002/01/tr-automation/tr.rdf. The static files from the `path_to_gem/withdrawn` directory are added to output during fetching data.
163
+ - `w3c-tr-archive` - The archive dataset files should be downloaded from https://github.com/relaton/w3c-tr-archive repository and placed into `w3c-tr-archive` folder.
164
+
162
165
  [source,ruby]
163
166
  ----
164
167
  RelatonW3c::DataFetcher.fetch
@@ -20,22 +20,21 @@ module RelatonW3c
20
20
  @ext = format.sub(/^bib/, "")
21
21
  dir = File.dirname(File.expand_path(__FILE__))
22
22
  @group_names = YAML.load_file(File.join(dir, "workgroups.yaml"))
23
- @data = RDF::Repository.load("http://www.w3.org/2002/01/tr-automation/tr.rdf")
24
- @files = []
25
23
  @index = DataIndex.new
26
24
  end
27
25
 
28
26
  #
29
27
  # Initialize fetcher and run fetch
30
28
  #
29
+ # @param [String] source source name "w3c-tr-archive" or "w3c-rdf"
31
30
  # @param [Strin] output directory to save files, default: "data"
32
31
  # @param [Strin] format format of output files (xml, yaml, bibxml), default: yaml
33
32
  #
34
- def self.fetch(output: "data", format: "yaml")
33
+ def self.fetch(source, output: "data", format: "yaml")
35
34
  t1 = Time.now
36
35
  puts "Started at: #{t1}"
37
- FileUtils.mkdir_p output unless Dir.exist? output
38
- new(output, format).fetch
36
+ FileUtils.mkdir_p output
37
+ new(output, format).fetch source
39
38
  t2 = Time.now
40
39
  puts "Stopped at: #{t2}"
41
40
  puts "Done in: #{(t2 - t1).round} sec."
@@ -44,19 +43,89 @@ module RelatonW3c
44
43
  #
45
44
  # Parse documents
46
45
  #
47
- def fetch # rubocop:disable Metrics/AbcSize, Metrics/MethodLength, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
48
- query_versioned_docs.each do |sl|
49
- save_doc DataParser.parse(sl, self)
50
- rescue StandardError => e
51
- warn "Error: document #{sl.link} #{e.message}"
52
- warn e.backtrace.join("\n")
46
+ # @param [String] source source name "w3c-tr-archive" or "w3c-rdf"
47
+ #
48
+ def fetch(source) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
49
+ each_dataset(source) do |rdf|
50
+ %i[versioned unversioned].each do |type|
51
+ send("query_#{type}_docs", rdf).each do |sl|
52
+ bib = DataParser.parse(rdf, sl, self)
53
+ add_has_edition_relation(bib) if type == :unversioned
54
+ save_doc bib
55
+ rescue StandardError => e
56
+ link = sl.respond_to?(:link) ? sl.link : sl.version_of
57
+ warn "Error: document #{link} #{e.message}"
58
+ warn e.backtrace.join("\n")
59
+ end
60
+ end
53
61
  end
54
- query_unversioned_docs.each do |sl|
55
- save_doc DataParser.parse(sl, self)
56
- rescue StandardError => e
57
- warn "Error: document #{sl.version_of} #{e.message}"
58
- warn e.backtrace.join("\n")
62
+ @index.sort!.save
63
+ end
64
+
65
+ #
66
+ # Add hasEdition relations form previous parsed document
67
+ #
68
+ # @param [RelatonW3c::W3cBibliographicItem] bib bibligraphic item
69
+ #
70
+ def add_has_edition_relation(bib) # rubocop:disable Metrics/MethodLength, Metrics/AbcSize, Metrics/CyclomaticComplexity
71
+ file = file_name bib.docnumber
72
+ return unless File.exist? file
73
+
74
+ b = case @format
75
+ when "xml" then XMLParser.from_xml(File.read(file, encoding: "UTF-8"))
76
+ when "yaml"
77
+ hash = YAML.load_file(file)
78
+ W3cBibliographicItem.from_hash(hash)
79
+ when "bibxml" then BibXMLParser.parse File.read(file, encoding: "UTF-8")
80
+ end
81
+ b.relation.each do |r|
82
+ same_edition = bib.relation.detect { |r2| same_edition?(r, r2) }
83
+ bib.relation << r unless same_edition
84
+ end
85
+ end
86
+
87
+ #
88
+ # Compare two relations
89
+ #
90
+ # @param [RelatonW3c::W3cBibliographicItem] rel1 relation 1
91
+ # @param [RelatonW3c::W3cBibliographicItem] rel2 relation 2
92
+ #
93
+ # @return [Boolean] true if relations are same
94
+ #
95
+ def same_edition?(rel1, rel2)
96
+ return false unless rel1.type == "hasEdition" && rel1.type == rel2.type
97
+
98
+ ids1 = rel1.bibitem.docidentifier.map(&:id)
99
+ ids2 = rel2.bibitem.docidentifier.map(&:id)
100
+ (ids1 & ids2).any?
101
+ end
102
+
103
+ #
104
+ # Yield fetching for each dataset
105
+ #
106
+ # @param [String] source source name "w3c-tr-archive" or "w3c-rdf"
107
+ #
108
+ # @yield [RDF::Repository] RDF repository
109
+ #
110
+ def each_dataset(source, &_block) # rubocop:disable Metrics/MethodLength
111
+ case source
112
+ when "w3c-tr-archive"
113
+ Dir["w3c-tr-archive/*.rdf"].map do |f|
114
+ @files = []
115
+ yield RDF::Repository.load(f)
116
+ end
117
+ when "w3c-rdf"
118
+ @files = []
119
+ rdf = RDF::Repository.load("http://www.w3.org/2002/01/tr-automation/tr.rdf")
120
+ yield rdf
121
+ parse_static_dataset
59
122
  end
123
+ end
124
+
125
+ #
126
+ # Parse static dataset
127
+ #
128
+ def parse_static_dataset
60
129
  Dir[File.expand_path("../../data/*", __dir__)].each do |file|
61
130
  xml = File.read file, encoding: "UTF-8"
62
131
  save_doc BibXMLParser.parse(xml), warn_duplicate: false
@@ -64,7 +133,6 @@ module RelatonW3c
64
133
  warn "Error: document #{file} #{e.message}"
65
134
  warn e.backtrace.join("\n")
66
135
  end
67
- @index.sort!.save
68
136
  end
69
137
 
70
138
  #
@@ -72,19 +140,16 @@ module RelatonW3c
72
140
  #
73
141
  # @return [RDF::Query::Solutions] query results
74
142
  #
75
- def query_versioned_docs # rubocop:disable Metrics/MethodLength
143
+ def query_versioned_docs(rdf)
76
144
  sse = SPARQL.parse(%(
77
145
  PREFIX : <http://www.w3.org/2001/02pd/rec54#>
78
146
  PREFIX dc: <http://purl.org/dc/elements/1.1/>
79
147
  PREFIX doc: <http://www.w3.org/2000/10/swap/pim/doc#>
80
- # PREFIX mat: <http://www.w3.org/2002/05/matrix/vocab#>
81
148
  PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
82
- SELECT ?link ?title ?date ?version_of
83
- WHERE {
84
- ?link dc:title ?title ; dc:date ?date ; doc:versionOf ?version_of .
85
- }
149
+ SELECT ?link ?title ?date
150
+ WHERE { ?link dc:title ?title ; dc:date ?date . }
86
151
  ))
87
- data.query sse
152
+ rdf.query sse
88
153
  end
89
154
 
90
155
  #
@@ -92,13 +157,16 @@ module RelatonW3c
92
157
  #
93
158
  # @return [Array<RDF::Query::Solution>] query results
94
159
  #
95
- def query_unversioned_docs
160
+ def query_unversioned_docs(rdf)
96
161
  sse = SPARQL.parse(%(
97
162
  PREFIX doc: <http://www.w3.org/2000/10/swap/pim/doc#>
98
163
  SELECT ?version_of
99
- WHERE { ?x doc:versionOf ?version_of . }
164
+ WHERE {
165
+ ?link doc:versionOf ?version_of .
166
+ FILTER ( isURI(?link) && isURI(?version_of) && ?link != ?version_of )
167
+ }
100
168
  ))
101
- data.query(sse).uniq &:version_of
169
+ rdf.query(sse).uniq { |s| s.version_of.to_s.sub(/^https?:\/\//, "").sub(/\/$/, "") }
102
170
  end
103
171
 
104
172
  #
@@ -14,15 +14,24 @@ module RelatonW3c
14
14
  end
15
15
 
16
16
  #
17
- # Add document to index
17
+ # Add document to index or update it if already exists
18
18
  #
19
19
  # @param [String] docnumber document number
20
20
  # @param [String] file path to document file
21
21
  #
22
- def add(docnumber, file)
22
+ def add(docnumber, file) # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity, Metrics/MethodLength
23
23
  dnparts = self.class.docnumber_to_parts docnumber
24
- dnparts[:file] = file
25
- @index << dnparts
24
+ rec = @index.detect { |i| i[:file] == file }
25
+ if rec
26
+ rec[:code] = dnparts[:code]
27
+ dnparts[:stage] ? rec[:stage] = dnparts[:stage] : rec.delete(:stage)
28
+ dnparts[:type] ? rec[:type] = dnparts[:type] : rec.delete(:type)
29
+ dnparts[:date] ? rec[:date] = dnparts[:date] : rec.delete(:date)
30
+ dnparts[:suff] ? rec[:suff] = dnparts[:suff] : rec.delete(:suff)
31
+ else
32
+ dnparts[:file] = file
33
+ @index << dnparts
34
+ end
26
35
  end
27
36
 
28
37
  #
@@ -111,18 +120,24 @@ module RelatonW3c
111
120
  #
112
121
  # @return [RelatonW3c::DataIndex] data index
113
122
  #
114
- def create_from_repo # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
115
- resp = Zip::InputStream.new URI("#{W3cBibliography::SOURCE}index-w3c.zip").open
123
+ def create_from_repo
124
+ uri = URI("#{W3cBibliography::SOURCE}index-w3c.zip").open
125
+ resp = Zip::InputStream.new uri
116
126
  zip = resp.get_next_entry
127
+ index = RelatonBib.parse_yaml(zip.get_input_stream.read, [Symbol])
128
+ new index: index
129
+ end
117
130
 
118
- # Newer versions of Psych uses the `permitted_classes:` parameter
119
- index = if YAML.method(:safe_load).parameters.collect(&:last).index(:permitted_classes)
120
- YAML.safe_load(zip.get_input_stream.read, permitted_classes: [Symbol])
121
- else
122
- YAML.safe_load(zip.get_input_stream.read, [Symbol])
123
- end
124
-
125
- DataIndex.new index: index
131
+ #
132
+ # Create index from a file
133
+ #
134
+ # @param [String] index_file path to index file
135
+ #
136
+ # @return [RelatonW3c::DataIndex] data index
137
+ #
138
+ def create_from_file(index_file = "index-w3c.yaml")
139
+ index = RelatonBib.parse_yaml(File.read(index_file), [Symbol])
140
+ new index_file: index_file, index: index
126
141
  end
127
142
 
128
143
  #
@@ -25,7 +25,8 @@ module RelatonW3c
25
25
  # @param [RDF::Query::Solution] sol entry from the SPARQL query
26
26
  # @param [RelatonW3c::DataFetcher] fetcher data fetcher
27
27
  #
28
- def initialize(sol, fetcher)
28
+ def initialize(rdf, sol, fetcher)
29
+ @rdf = rdf
29
30
  @sol = sol
30
31
  @fetcher = fetcher
31
32
  end
@@ -38,8 +39,8 @@ module RelatonW3c
38
39
  #
39
40
  # @return [RelatonW3c:W3cBibliographicItem, nil] bibliographic item
40
41
  #
41
- def self.parse(sol, fetcher)
42
- new(sol, fetcher).parse
42
+ def self.parse(rdf, sol, fetcher)
43
+ new(rdf, sol, fetcher).parse
43
44
  end
44
45
 
45
46
  #
@@ -100,7 +101,7 @@ module RelatonW3c
100
101
  #
101
102
  def parse_link
102
103
  link = @sol.respond_to?(:link) ? @sol.link : @sol.version_of
103
- [RelatonBib::TypedUri.new(type: "src", content: link.to_s)]
104
+ [RelatonBib::TypedUri.new(type: "src", content: link.to_s.strip)]
104
105
  end
105
106
 
106
107
  #
@@ -131,7 +132,7 @@ module RelatonW3c
131
132
  #
132
133
  def identifier(link = nil)
133
134
  url = link || (@sol.respond_to?(:link) ? @sol.link : @sol.version_of)
134
- self.class.parse_identifier(url.to_s)
135
+ self.class.parse_identifier(url.to_s.strip)
135
136
  end
136
137
 
137
138
  #
@@ -142,7 +143,7 @@ module RelatonW3c
142
143
  # @return [String] identifier
143
144
  #
144
145
  def self.parse_identifier(url)
145
- if /.+\/(\w+(?:-[\w.]+)+(?:\/\w+)?)/ =~ url.to_s
146
+ if /.+\/(\w+(?:[-+][\w.]+)+(?:\/\w+)?)/ =~ url.to_s
146
147
  $1.to_s
147
148
  else url.to_s.split("/").last
148
149
  end
@@ -184,10 +185,10 @@ module RelatonW3c
184
185
  PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
185
186
  SELECT ?type
186
187
  WHERE {
187
- { <#{@sol.link}> rdf:type ?type }
188
+ { <#{@sol.link.to_s.strip}> rdf:type ?type }
188
189
  }
189
190
  ))
190
- @fetcher.data.query(sse).map { |s| s.type.to_s.split("#").last }
191
+ @rdf.query(sse).map { |s| s.type.to_s.split("#").last }
191
192
  end
192
193
  end
193
194
 
@@ -220,7 +221,7 @@ module RelatonW3c
220
221
  if @sol.respond_to?(:link)
221
222
  relations + editor_drafts
222
223
  else
223
- document_versions.map { |r| create_relation(r.link.to_s, "hasEdition") }
224
+ document_versions.map { |r| create_relation(r.link.to_s.strip, "hasEdition") }
224
225
  end
225
226
  end
226
227
 
@@ -253,9 +254,9 @@ module RelatonW3c
253
254
  PREFIX : <http://www.w3.org/2001/02pd/rec54#>
254
255
  PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
255
256
  SELECT ?rel
256
- WHERE { <#{@sol.link}> :ED ?rel . }
257
+ WHERE { <#{@sol.link.to_s.strip}> :ED ?rel . }
257
258
  ))
258
- @fetcher.data.query(sse).map do |s|
259
+ @rdf.query(sse).map do |s|
259
260
  create_relation(s.rel.to_s, "hasDraft", "Editor's draft")
260
261
  end
261
262
  end
@@ -273,30 +274,53 @@ module RelatonW3c
273
274
  PREFIX doc: <http://www.w3.org/2000/10/swap/pim/doc#>
274
275
  PREFIX mat: <http://www.w3.org/2002/05/matrix/vocab#>
275
276
  SELECT ?rel
276
- WHERE { <#{@sol.link}> #{predicate} ?rel . }
277
+ WHERE { <#{@sol.link.to_s.strip}> #{predicate} ?rel . }
277
278
  ))
278
- @fetcher.data.query(sse).order_by(:rel)
279
+ @rdf.query(sse).order_by(:rel)
279
280
  end
280
281
 
281
282
  #
282
283
  # Query document versions relations
283
284
  #
284
- # @return [RDF::Query::Solutions] query results
285
+ # @return [Array<RDF::Query::Solution>] query results
285
286
  #
286
287
  def document_versions # rubocop:disable Metrics/MethodLength
287
- @document_versions ||= begin
288
+ @document_versions ||= version_of.each_with_object([]) do |s, acc|
288
289
  sse = SPARQL.parse(%(
289
290
  PREFIX : <http://www.w3.org/2001/02pd/rec54#>
290
291
  PREFIX dc: <http://purl.org/dc/elements/1.1/>
291
292
  PREFIX doc: <http://www.w3.org/2000/10/swap/pim/doc#>
292
293
  PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
293
294
  SELECT ?link ?title ?date
294
- WHERE { ?link doc:versionOf <#{@sol.version_of}> ; dc:title ?title ; dc:date ?date }
295
+ WHERE {
296
+ ?link doc:versionOf <#{s.version_of}> ;
297
+ dc:title ?title ;
298
+ dc:date ?date .
299
+ }
295
300
  ))
296
- @fetcher.data.query(sse)
301
+ @rdf.query(sse).each { |r| acc << r }
297
302
  end
298
303
  end
299
304
 
305
+ #
306
+ # Query for document versions
307
+ #
308
+ # @return [RDF::Query::Solutions] query results
309
+ #
310
+ def version_of
311
+ return [@sol] unless @sol.respond_to?(:link)
312
+
313
+ sse = SPARQL.parse(%(
314
+ PREFIX doc: <http://www.w3.org/2000/10/swap/pim/doc#>
315
+ SELECT ?version_of
316
+ WHERE {
317
+ <#{@sol.link.to_s.strip}> doc:versionOf ?version_of .
318
+ FILTER ( isURI(?version_of) && <#{@sol.link.to_s.strip}> != str(?version_of) )
319
+ }
320
+ ))
321
+ @rdf.query(sse)
322
+ end
323
+
300
324
  #
301
325
  # Create relation
302
326
  #
@@ -339,10 +363,10 @@ module RelatonW3c
339
363
  PREFIX contact: <http://www.w3.org/2000/10/swap/pim/contact#>
340
364
  SELECT ?full_name
341
365
  WHERE {
342
- <#{@sol.link}> :editor/contact:fullName ?full_name
366
+ <#{@sol.link.to_s.strip}> :editor/contact:fullName ?full_name
343
367
  }
344
368
  ))
345
- @fetcher.data.query(sse).order_by(:full_name).map do |ed|
369
+ @rdf.query(sse).order_by(:full_name).map do |ed|
346
370
  cn = RelatonBib::LocalizedString.new(ed.full_name.to_s, "en", "Latn")
347
371
  n = RelatonBib::FullName.new completename: cn
348
372
  p = RelatonBib::Person.new name: n
@@ -363,12 +387,13 @@ module RelatonW3c
363
387
  PREFIX contact: <http://www.w3.org/2000/10/swap/pim/contact#>
364
388
  SELECT ?home_page
365
389
  WHERE {
366
- <#{@sol.link}> org:deliveredBy/contact:homePage ?home_page
390
+ <#{@sol.link.to_s.strip}> org:deliveredBy/contact:homePage ?home_page
367
391
  }
368
392
  ))
369
- res = @fetcher.data.query(sse).order_by(:home_page)
393
+ res = @rdf.query(sse).order_by(:home_page)
370
394
  tc = res.each_with_object([]) do |edg, obj|
371
- wg = @fetcher.group_names[edg.home_page.to_s.sub(/\/$/, "")]
395
+ group_path = edg.home_page.to_s.sub(/^https?:\/\//, "").sub(/\/$/, "")
396
+ wg = @fetcher.group_names[group_path]
372
397
  if wg
373
398
  rwg = RelatonBib::WorkGroup.new name: wg["name"]
374
399
  obj << RelatonBib::TechnicalCommittee.new(rwg)
@@ -9,7 +9,7 @@ module RelatonW3c
9
9
  @prefix = "W3C"
10
10
  @defaultprefix = %r{^W3C\s}
11
11
  @idtype = "W3C"
12
- @datasets = %w[w3c-rdf]
12
+ @datasets = %w[w3c-rdf w3c-tr-archive]
13
13
  end
14
14
 
15
15
  # @param code [String]
@@ -28,8 +28,8 @@ module RelatonW3c
28
28
  # @option opts [String] :output directory to output documents
29
29
  # @option opts [String] :format
30
30
  #
31
- def fetch_data(_source, opts)
32
- DataFetcher.fetch(**opts)
31
+ def fetch_data(source, opts)
32
+ DataFetcher.fetch(source, **opts)
33
33
  end
34
34
 
35
35
  # @param xml [String]
@@ -1,3 +1,3 @@
1
1
  module RelatonW3c
2
- VERSION = "1.12.0".freeze
2
+ VERSION = "1.12.1".freeze
3
3
  end
@@ -1,348 +1,485 @@
1
- 'https://www.w3.org/DOM/Group':
1
+ 'www.w3.org/DOM/Group':
2
2
  name: Web Hypertext Application Technology Working Group
3
3
  abbrev: WHATWG
4
- 'https://www.w3.org/2002/mmi':
4
+ 'www.w3.org/2002/mmi':
5
5
  name: Multimodal Interaction Working Group
6
- 'https://www.w3.org/Math':
6
+ 'www.w3.org/Math':
7
7
  name: Math Working Group
8
- 'https://www.w3.org/html/wg':
8
+ 'www.w3.org/html/wg':
9
9
  name: HTML Working Group
10
10
  abbrev: HTMLWG
11
- 'https://www.w3.org/groups/wg/htmlwg':
11
+ 'www.w3.org/groups/wg/htmlwg':
12
12
  name: HTML Working Group
13
13
  abbrev: HTMLWG
14
- 'https://www.w3.org/XML/EXI':
14
+ 'www.w3.org/XML/EXI':
15
15
  name: Efficient Extensible Interchange Working Group
16
16
  abbrev: EXIWG
17
- 'https://www.w3.org/2007/OWL':
17
+ 'www.w3.org/2007/OWL':
18
18
  name: OWL Working Group
19
19
  abbrev: OWLWG
20
- 'https://www.w3.org/2001/sw/BestPractices':
20
+ 'www.w3.org/2001/sw/BestPractices':
21
21
  name: Semantic Web Best Practices and Deployment Working Group
22
22
  abbrev: SWBPD
23
- 'https://www.w3.org/2000/xp/Group':
23
+ 'www.w3.org/2000/xp/Group':
24
24
  name: XML Protocol Working Group
25
- 'https://www.w3.org/2011/audio':
25
+ 'www.w3.org/2011/audio':
26
26
  name: Audio Working Group
27
- 'https://www.w3.org/2001/12/URI':
27
+ 'www.w3.org/2001/12/URI':
28
28
  name: URI Interest Group
29
- 'https://www.w3.org/2005/MWI/BPWG':
29
+ 'www.w3.org/2005/MWI/BPWG':
30
30
  name: Mobile Web Best Practices Working Group
31
31
  abbrev: BPWG
32
- 'https://www.w3.org/WAI/EO':
32
+ 'www.w3.org/WAI/EO':
33
33
  name: Education and Outreach Working Group
34
34
  abbrev: EOWG
35
- 'https://www.w3.org/WAI/about/groups/eowg':
35
+ 'www.w3.org/WAI/about/groups/eowg':
36
36
  name: Education and Outreach Working Group
37
37
  abbrev: EOWG
38
- 'https://www.w3.org/2001/sw/WebOnt':
38
+ 'www.w3.org/2001/sw/WebOnt':
39
39
  name: Web-Ontology Working Group
40
- 'http://www.w3.org/MarkUp/Forms':
40
+ 'www.w3.org/MarkUp/Forms':
41
41
  name: Forms Working Group
42
- 'https://www.w3.org/Style/CSS':
42
+ 'www.w3.org/Style/CSS':
43
43
  name: Cascading Style Sheets Working Group
44
44
  abbrev: CSSWG
45
- 'https://www.w3.org/2001/tag':
45
+ 'www.w3.org/2001/tag':
46
46
  name: Technical Architecture Group
47
47
  abbrev: TAG
48
- 'https://www.w3.org/2002/ws/policy':
48
+ 'www.w3.org/2002/ws/policy':
49
49
  name: Web Services Policy Working Group
50
- 'https://www.w3.org/2008/xmlsec':
50
+ 'www.w3.org/2008/xmlsec':
51
51
  name: XML Security Working Group
52
- 'https://www.w3.org/2011/prov':
52
+ 'www.w3.org/2011/prov':
53
53
  name: Provenance Working Group
54
- 'https://www.w3.org/2019/webapps':
54
+ 'www.w3.org/2019/webapps':
55
55
  name: Web Applications Working Group
56
- 'https://www.w3.org/WebPlatform/WG':
56
+ 'www.w3.org/WebPlatform/WG':
57
57
  name: Web Applications Working Group
58
- 'https://www.w3.org/2008/webapps':
58
+ 'www.w3.org/2008/webapps':
59
59
  name: Web Applications Working Group
60
- 'https://www.w3.org/groups/wg/webapps':
60
+ 'www.w3.org/groups/wg/webapps':
61
61
  name: Web Applications Working Group
62
- 'https://www.w3.org/das':
62
+ 'www.w3.org/das':
63
63
  name: Devices and Sensors Working Group
64
64
  abbrev: DAS WG
65
- 'https://www.w3.org/2007/uwa':
65
+ 'www.w3.org/2007/uwa':
66
66
  name: Ubiquitous Web Applications Working Group
67
67
  abbrev: UWA
68
- 'https://www.w3.org/Style/XSL':
68
+ 'www.w3.org/Style/XSL':
69
69
  name: Extensible Stylesheet Language Family
70
- 'https://www.w3.org/XML/Query':
70
+ 'www.w3.org/XML/Query':
71
71
  name: XML Query Working Group
72
- 'https://www.w3.org/immersive-web':
72
+ 'www.w3.org/immersive-web':
73
73
  name: Immersive Web Working Group
74
- 'https://www.w3.org/2002/ws/addr':
74
+ 'www.w3.org/2002/ws/addr':
75
75
  name: Web Services Addressing Working Group
76
- 'https://www.w3.org/WAI/GL':
76
+ 'www.w3.org/WAI/GL':
77
77
  name: Accessibility Guidelines Working Group
78
78
  abbrev: AG WG
79
- 'https://www.w3.org/WAI/APA':
79
+ 'www.w3.org/WAI/APA':
80
80
  name: Accessible Platform Architectures
81
81
  abbrev: APA WG
82
- 'https://www.w3.org/2011/rdf-wg':
82
+ 'www.w3.org/2011/rdf-wg':
83
83
  name: RDF Working Group
84
- 'https://www.w3.org/Voice':
84
+ 'www.w3.org/Voice':
85
85
  name: Voice Browser Working Group
86
- 'https://www.w3.org/webperf':
86
+ 'www.w3.org/webperf':
87
87
  name: Web Performance Working Group
88
- 'https://www.w3.org/Graphics/SVG/WG':
88
+ 'www.w3.org/Graphics/SVG/WG':
89
89
  name: SVG Working Group
90
- 'https://www.w3.org/International/core':
90
+ 'www.w3.org/International/core':
91
91
  name: Internationalization Working Group
92
- 'https://www.w3.org/WebCommerce/IG':
92
+ 'www.w3.org/WebCommerce/IG':
93
93
  name: Web Commerce Interest Group
94
94
  abbrev: WCIG
95
- 'https://www.w3.org/AudioVideo/TT':
95
+ 'www.w3.org/AudioVideo/TT':
96
96
  name: Timed Text Working Group
97
97
  abbrev: TTWG
98
- 'https://www.w3.org/2002/ws/desc':
98
+ 'www.w3.org/2002/ws/desc':
99
99
  name: Web Services Description Working Group
100
- 'https://www.w3.org/2001/sw/RDFCore':
100
+ 'www.w3.org/2001/sw/RDFCore':
101
101
  name: RDFCore Working Group
102
- 'https://www.w3.org/2002/ws/arch':
102
+ 'www.w3.org/2002/ws/arch':
103
103
  name: Web Services Architecture Working Group
104
- 'https://www.w3.org/2011/webappsec':
104
+ 'www.w3.org/2011/webappsec':
105
105
  name: Web Application Security Working Group
106
- 'https://www.w3.org/groups/wg/webappsec':
106
+ 'www.w3.org/groups/wg/webappsec':
107
107
  name: Web Application Security Working Group
108
- 'https://www.w3.org/Social/WG':
108
+ 'www.w3.org/Social/WG':
109
109
  name: Social Web Working Group
110
- 'https://www.w3.org/XML/Core':
110
+ 'www.w3.org/XML/Core':
111
111
  name: XML Core Working Group
112
- 'https://www.w3.org/2006/07/SWD':
112
+ 'www.w3.org/2006/07/SWD':
113
113
  name: Semantic Web Deployment Working Group
114
114
  abbrew: SWD
115
- 'https://www.w3.org/WAI/PF':
115
+ 'www.w3.org/WAI/PF':
116
116
  name: Protocols and Formats Working Group
117
117
  abbrev: PFWG
118
- 'https://www.w3.org/XML/Group/Binary':
118
+ 'www.w3.org/XML/Group/Binary':
119
119
  name: XML Binary Characterization Working Group
120
- 'https://www.w3.org/2012/sysapps':
120
+ 'www.w3.org/2012/sysapps':
121
121
  name: System Applications Working Group
122
- 'https://www.w3.org/2017/vc':
122
+ 'www.w3.org/2017/vc':
123
123
  name: Verifiable Credentials Working Group
124
124
  abbrev: VCWG
125
- 'https://www.w3.org/sw':
125
+ 'www.w3.org/sw':
126
126
  name: Service Workers Working Group
127
- 'https://www.w3.org/XML/SML':
127
+ 'www.w3.org/XML/SML':
128
128
  name: Service Modeling Language
129
129
  abbrev: SML WG
130
- 'https://www.w3.org/WoT/WG':
130
+ 'www.w3.org/WoT/WG':
131
131
  name: Web of Things Working Group
132
132
  abbrev: WoT WG
133
- 'https://www.w3.org/2017/dxwg':
133
+ 'www.w3.org/2017/dxwg':
134
134
  name: Dataset Exchange Working Group
135
135
  abbrev: DXWG
136
- 'https://www.w3.org/groups/wg/webmachinelearning':
136
+ 'www.w3.org/groups/wg/webmachinelearning':
137
137
  name: Web Machine Learning Working Group
138
- 'https://www.w3.org/2008/WebVideo/Annotations':
138
+ 'www.w3.org/2008/WebVideo/Annotations':
139
139
  name: Media Annotations Working Group
140
140
  abbrev: MAWG
141
- 'https://www.w3.org/2001/sw/DataAccess':
141
+ 'www.w3.org/2001/sw/DataAccess':
142
142
  name: SPARQL Working Group
143
- 'https://www.w3.org/publishing/groups/publ-wg':
143
+ 'www.w3.org/publishing/groups/publ-wg':
144
144
  name: Audiobooks Working Group
145
- 'https://www.w3.org/2013/csvw':
145
+ 'www.w3.org/2013/csvw':
146
146
  name: CSV on the Web Working Group
147
- 'https://www.w3.org/AudioVideo':
147
+ 'www.w3.org/AudioVideo':
148
148
  name: Synchronized Multimedia Working Group
149
149
  abbrev: SYMM WG
150
- 'https://www.w3.org/2001/sw/grddl-wg':
150
+ 'www.w3.org/2001/sw/grddl-wg':
151
151
  name: GRDDL Working Group
152
- 'https://www.w3.org/XML/Schema':
152
+ 'www.w3.org/XML/Schema':
153
153
  name: XML Schema Working Group
154
- 'https://www.w3.org/2012/ldp':
154
+ 'www.w3.org/2012/ldp':
155
155
  name: Linked Data Platform Working Group
156
156
  abbrev: LDP WG
157
- 'https://www.w3.org/2006/appformats':
157
+ 'www.w3.org/2006/appformats':
158
158
  name: Web Application Formats Working Group
159
159
  abbrev: WAF WG
160
- 'https://www.w3.org/2007/powder':
160
+ 'www.w3.org/2007/powder':
161
161
  name: Protocol for Web Description Resources Working Group
162
162
  abbrev: POWDER WG
163
- 'https://www.w3.org/2010/02/rdfa':
163
+ 'www.w3.org/2010/02/rdfa':
164
164
  name: RDFa Working Group
165
- 'https://www.w3.org/2021/sdw':
165
+ 'www.w3.org/2021/sdw':
166
166
  name: Spatial Data on the Web Working Group
167
- abbrev: SDW WG
168
- 'https://www.w3.org/groups/wg/webrtc':
167
+ abbrev: SDWWG
168
+ 'www.w3.org/groups/wg/webrtc':
169
169
  name: Web Real-Time Communications Working Group
170
- 'https://www.w3.org/2001/di/Group':
170
+ 'www.w3.org/2001/di/Group':
171
171
  name: Device Independence Working Group
172
172
  abbrev: DIWG
173
- 'https://www.w3.org/2001/sw/interest':
173
+ 'www.w3.org/2001/sw/interest':
174
174
  name: Semantic Web Interest Group
175
175
  abbrev: SWIG
176
- 'https://www.w3.org/2016/poe':
176
+ 'www.w3.org/2016/poe':
177
177
  name: Permissions and Obligations Expression Working Group
178
178
  abbrev: POE WG
179
- 'https://www.w3.org/WoT/IG':
179
+ 'www.w3.org/WoT/IG':
180
180
  name: WoT Interest Group
181
- 'https://www.w3.org/Payments/WG':
181
+ 'www.w3.org/Payments/WG':
182
182
  name: Web Payments Working Group
183
- 'https://www.w3.org/dpub/IG':
183
+ 'www.w3.org/dpub/IG':
184
184
  name: Digital Publishing Interest Group
185
- 'https://www.w3.org/2008/geolocation':
185
+ 'www.w3.org/2008/geolocation':
186
186
  name: Geolocation Working Group
187
- 'https://www.w3.org/2005/MWI/DDWG':
187
+ 'www.w3.org/2005/MWI/DDWG':
188
188
  name: Mobile Web Initiative Device Description Working Group
189
- 'https://www.w3.org/2005/rules/wg.html':
189
+ 'www.w3.org/2005/rules/wg.html':
190
190
  name: RIF Working Group
191
- 'https://www.w3.org/groups/wg/distributed-tracing':
191
+ 'www.w3.org/groups/wg/distributed-tracing':
192
192
  name: Distributed Tracing Working Group
193
- 'https://www.w3.org/publishing/groups/epub-wg':
193
+ 'www.w3.org/publishing/groups/epub-wg':
194
194
  name: EPUB 3 Working Group
195
- 'https://www.w3.org/2010/POI':
195
+ 'www.w3.org/2010/POI':
196
196
  name: Points of Interest Working Group
197
197
  abbrev: POI WG
198
- 'https://www.w3.org/MarkUp':
198
+ 'www.w3.org/MarkUp':
199
199
  name: XHTML2 Working Group
200
- 'https://www.w3.org/2011/gld':
200
+ 'www.w3.org/2011/gld':
201
201
  name: Government Linked Data Working Group
202
202
  abbrev: GLD WG
203
- 'https://www.w3.org/2014/secondscreen':
203
+ 'www.w3.org/2014/secondscreen':
204
204
  name: Second Screen Working Group
205
- 'https://www.w3.org/securepay':
205
+ 'www.w3.org/securepay':
206
206
  name: Web Payment Security Interest Group
207
207
  abbrev: WPSIG
208
- 'https://www.w3.org/2008/WebVideo/Fragments':
208
+ 'www.w3.org/2008/WebVideo/Fragments':
209
209
  name: Media Fragments Working Group
210
- 'https://www.w3.org/2011/mbui':
210
+ 'www.w3.org/2011/mbui':
211
211
  name: Model-Based User Interfaces Working Group
212
212
  abbrev: MBUI WG
213
- 'https://www.w3.org/International/its':
213
+ 'www.w3.org/International/its':
214
214
  name: ITS Working Group
215
- 'https://www.w3.org/QA/WG':
215
+ 'www.w3.org/QA/WG':
216
216
  name: Quality Assurance Working Group
217
217
  abbrev: QAWG
218
- 'https://www.w3.org/P3P/Group/Specification':
218
+ 'www.w3.org/P3P/Group/Specification':
219
219
  name: P3P Specification Working Group
220
- 'https://www.w3.org/2011/webtv':
220
+ 'www.w3.org/2011/webtv':
221
221
  name: Media and Entertainment Interest Group
222
- 'https://www.w3.org/2001/sw/hcls':
222
+ 'www.w3.org/2001/sw/hcls':
223
223
  name: Semantic Web Health Care and Life Sciences Interest Group
224
224
  abbrev: HCLS IG
225
- 'https://www.w3.org/2002/ws/chor':
225
+ 'www.w3.org/2002/ws/chor':
226
226
  name: Web Services Choreography Working Group
227
- 'https://www.w3.org/2005/MWI/Tests':
227
+ 'www.w3.org/2005/MWI/Tests':
228
228
  name: Mobile Web Test Suites Working Group
229
- 'https://www.w3.org/XML/Group/Linking':
229
+ 'www.w3.org/XML/Group/Linking':
230
230
  name: XML Linking Working Group
231
- 'https://www.w3.org/WAI/ARIA':
231
+ 'www.w3.org/WAI/ARIA':
232
232
  name: Accessible Rich Internet Applications Working Group
233
233
  abbrev: ARIA WG
234
- 'https://www.w3.org/wasm':
234
+ 'www.w3.org/wasm':
235
235
  name: WebAssembly Working Group
236
- 'https://www.w3.org/groups/wg/wasm':
236
+ 'www.w3.org/groups/wg/wasm':
237
237
  name: WebAssembly Working Group
238
- 'https://www.w3.org/groups/wg/webediting':
238
+ 'www.w3.org/groups/wg/webediting':
239
239
  name: Web Editing Working Group
240
- 'https://www.w3.org/2014/data-shapes':
240
+ 'www.w3.org/2014/data-shapes':
241
241
  name: RDF Data Shapes Working Group
242
- 'https://www.w3.org/Mobile/IG':
242
+ 'www.w3.org/Mobile/IG':
243
243
  name: Web and Mobile Interest Group
244
- 'https://www.w3.org/2019/did-wg':
244
+ 'www.w3.org/2019/did-wg':
245
245
  name: Decentralized Identifier Working Group
246
246
  abbrev: DID WG
247
- 'https://www.w3.org/egov/IG':
247
+ 'www.w3.org/egov/IG':
248
248
  name: eGovernment Interest Group
249
- 'https://www.w3.org/WAI/ER':
249
+ abbrev: EGOV IG
250
+ 'www.w3.org/WAI/ER':
250
251
  name: Evaluation and Repair Tools Working Group
251
252
  abbrev: ERT WG
252
- 'https://www.w3.org/2002/ws/soapjms':
253
+ 'www.w3.org/2002/ws/soapjms':
253
254
  name: SOAP-JMS Binding Working Group
254
- 'https://www.w3.org/media-wg':
255
+ 'www.w3.org/media-wg':
255
256
  name: Media Working Group
256
- 'https://www.w3.org/2018/json-ld-wg':
257
+ 'www.w3.org/2018/json-ld-wg':
257
258
  name: JSON-LD Working Group
258
- 'https://www.w3.org/2020/gpu':
259
+ 'www.w3.org/2020/gpu':
259
260
  name: GPU for the Web Working Group
260
- 'https://www.w3.org/Fonts/WG':
261
+ 'www.w3.org/Fonts/WG':
261
262
  name: Web Fonts Working Group
262
- 'https://www.w3.org/groups/wg/auto':
263
+ 'www.w3.org/groups/wg/auto':
263
264
  name: Automotive Working Group
264
- 'https://www.w3.org/2001/sw/rdb2rdf':
265
+ 'www.w3.org/2001/sw/rdb2rdf':
265
266
  name: RDB2RDF Working Group
266
- 'https://www.w3.org/2006/WSC':
267
+ 'www.w3.org/2006/WSC':
267
268
  name: Web Security Context Working Group
268
- 'https://www.w3.org/Graphics/WebCGM/WG':
269
+ 'www.w3.org/Graphics/WebCGM/WG':
269
270
  name: WebCGM Working Group
270
- 'https://www.w3.org/XML/Processing':
271
+ 'www.w3.org/XML/Processing':
271
272
  name: XML Processing Model Working Group
272
- 'https://www.w3.org/testing/browser':
273
+ 'www.w3.org/testing/browser':
273
274
  name: Browser Testing and Tools Working Group
274
- 'https://www.w3.org/2004/CDF':
275
+ 'www.w3.org/2004/CDF':
275
276
  name: Compound Document Formats Working Group
276
277
  abbrev: CDF WG
277
- 'https://www.w3.org/2012/webcrypto':
278
+ 'www.w3.org/2012/webcrypto':
278
279
  name: Web Cryptography Working Group
279
- 'https://www.w3.org/2002/ws/ra':
280
+ 'www.w3.org/2002/ws/ra':
280
281
  name: Web Services Resource Access Working Group
281
- 'https://www.w3.org/2010/webevents':
282
+ 'www.w3.org/2010/webevents':
282
283
  name: Web Events Working Group
283
- 'https://www.w3.org/WAI/UA':
284
+ 'www.w3.org/WAI/UA':
284
285
  name: User Agent Accessibility Guidelines Working Group
285
286
  abbrev: UAWG
286
- 'https://www.w3.org/groups/wg/pointer-events':
287
+ 'www.w3.org/groups/wg/pointer-events':
287
288
  name: Pointer Events Working Group
288
- 'https://www.w3.org/International/multilingualweb/lt':
289
+ 'www.w3.org/International/multilingualweb/lt':
289
290
  name: MultilingualWeb-LT Working Group
290
- 'https://www.w3.org/2017/sdwig':
291
+ 'www.w3.org/2017/sdwig':
291
292
  name: Spatial Data on the Web Interest Group
292
293
  abbrev: SDWIG
293
- 'https://www.w3.org/Privacy':
294
+ 'www.w3.org/Privacy':
294
295
  name: Privacy Interest Group
295
296
  abbrev: PING
296
- 'https://www.w3.org/Mobile/CCPP/Group':
297
+ 'www.w3.org/Mobile/CCPP/Group':
297
298
  name: Composite Capability/Preference Profiles Working Group
298
299
  abbrev: CC/PP WG
299
- 'https://www.w3.org/2008/MW4D':
300
+ 'www.w3.org/2008/MW4D':
300
301
  name: MW4D Interest Group
301
302
  abbrev: MW4D IG
302
- 'https://www.w3.org/2011/tracking-protection':
303
+ 'www.w3.org/2011/tracking-protection':
303
304
  name: Tracking Protection Working Group
304
- 'https://www.w3.org/annotation':
305
+ 'www.w3.org/annotation':
305
306
  name: Annotation Working Group
306
- 'https://www.w3.org/WAI/AU':
307
+ 'www.w3.org/WAI/AU':
307
308
  name: Authoring Tool Accessibility Guidelines Working Group
308
309
  abbrev: ATAG WG
309
- 'https://www.w3.org/MarkUp/CoordGroup':
310
+ 'www.w3.org/MarkUp/CoordGroup':
310
311
  name: Hypertext Coordination Group
311
312
  abbrev: HCG
312
- 'https://www.w3.org/2021/miniapps':
313
+ 'www.w3.org/2021/miniapps':
313
314
  name: MiniApps Working Group
314
- 'https://www.w3.org/webauthn':
315
+ 'www.w3.org/webauthn':
315
316
  name: Web Authentication Working Group
316
317
  abbrev: WebAuthn WG
317
- 'https://www.w3.org/2002/ws/sawsdl':
318
+ 'www.w3.org/2002/ws/sawsdl':
318
319
  name: Semantic Annotations for WSDL Working Group
319
320
  abbrev: SAWSDL WG
320
- 'https://www.w3.org/2010/web-notifications':
321
+ 'www.w3.org/2010/web-notifications':
321
322
  name: Web Notification Working Group
322
- 'https://www.w3.org/2006/webapi':
323
+ 'www.w3.org/2006/webapi':
323
324
  name: Web API Working Group
324
- 'https://www.w3.org/webtransport':
325
+ 'www.w3.org/webtransport':
325
326
  name: WebTransport Working Group
326
- 'https://www.w3.org/WAI/RD':
327
+ 'www.w3.org/WAI/RD':
327
328
  name: Research and Development Working Group
328
329
  abbrev: RDWG
329
- 'https://www.w3.org/XML/XPPL':
330
+ 'www.w3.org/XML/XPPL':
330
331
  name: XML Print and Page Layout Working Group
331
332
  abbrev: XPPL WG
332
- 'https://www.w3.org/2007/xmlsec':
333
+ 'www.w3.org/2007/xmlsec':
333
334
  name: XML Security Specifications Maintenance Working Group
334
- 'https://www.w3.org/2013/dwbp':
335
+ 'www.w3.org/2013/dwbp':
335
336
  name: Data on the Web Best Practices Working Group
336
337
  abbrev: DWBP WG
337
- 'https://www.w3.org/2012/nfc':
338
+ 'www.w3.org/2012/nfc':
338
339
  name: Near Field Communications Working Group
339
340
  abbrev: NFC WG
340
- 'https://www.w3.org/2002/ws/databinding':
341
+ 'www.w3.org/2002/ws/databinding':
341
342
  name: XML Schema Patterns for Databinding Working Group
342
- 'https://www.w3.org/2018/chinese-web-ig':
343
+ 'www.w3.org/2018/chinese-web-ig':
343
344
  name: Chinese Web Interest Group
344
- 'https://www.w3.org/2016/tvcontrol':
345
+ 'www.w3.org/2016/tvcontrol':
345
346
  name: TV Control Working Group
346
- 'https://www.w3.org/WAI/IndieUI':
347
+ 'www.w3.org/WAI/IndieUI':
347
348
  name: Independent User Interface Working Group
348
- abbrev: Indie UI WG
349
+ abbrev: Indie UI WG
350
+ 'www.w3.org/WCA/Group':
351
+ name: Web Characterization Activity Working Group
352
+ abbrev: WCA WG
353
+ 'www.w3.org/Style/Group':
354
+ name: Cascading Style Sheets Working Group
355
+ abbrev: CSS WG
356
+ 'www.w3.org/XML/Group/Core':
357
+ name: XML Core Working Group
358
+ 'www.w3.org/Math/Group':
359
+ name: Math Working Group
360
+ 'www.w3.org/XML/Group/Fragments':
361
+ name: XML Fragment Working Group
362
+ 'www.w3.org/MarkUp/Group':
363
+ name: XHTML2 Working Group
364
+ 'www.w3.org/AudioVideo/Group':
365
+ name: Synchronized Multimedia Working Group
366
+ abbrev: SYMM WG
367
+ 'www.w3.org/Protocols/HTTP-NG/Group/PDG':
368
+ name: HTTP-NG Protocol Design Group
369
+ 'www.w3.org/Graphics/SVG/Group':
370
+ name: SVG Working Group
371
+ 'www.w3.org/Style/XSL/Group':
372
+ name: Extensible Stylesheet Language Family
373
+ 'www.w3.org/International/Group':
374
+ name: Internationalization Working Group
375
+ 'www.w3.org/AudioVideo/Group/SymmIG':
376
+ name: Synchronized Multimedia Interest Group
377
+ abbrev: SYMM IG
378
+ 'www.w3.org/TV/TVWeb':
379
+ name: TVWeb Interest Group
380
+ 'www.w3.org/Protocols/HTTP-NG':
381
+ name: HTTP-NG Working Group
382
+ 'www.w3.org/Mobile/Group/IG':
383
+ name: Web and Mobile Interest Group
384
+ 'www.w3.org/XML/Group/Syntax':
385
+ name: XML Syntax Working Group
386
+ 'www.w3.org/XML/Group/Infoset':
387
+ name: XML Information Set Working Group
388
+ 'www.w3.org/XML/Group/Schema':
389
+ name: XML Schema Working Group
390
+ 'www.w3.org/ECommerce/Micropayments/Group/MarkupWG':
391
+ name: Micropayment Markup Working Group
392
+ 'www.w3.org/Voice/Group':
393
+ name: Voice Browser Working Group
394
+ 'www.w3.org/Signature':
395
+ name: XML Signature WG
396
+ 'www.w3.org/2000/10/URI':
397
+ name: URI Planning Interest Group
398
+ 'www.w3.org/XML/Group/Schemas':
399
+ name: XML Schema Working Group
400
+ 'www.w3.org/XML/Group/Query':
401
+ name: XML Query Working Group
402
+ 'www.w3.org/PICS/Group':
403
+ name: Platform for Internet Content Selection Working Group
404
+ abbrev: PICS WG
405
+ 'www.w3.org/PICS/Rules/Group':
406
+ name: PICSRules Working Group
407
+ 'www.w3.org/RDF/Group/Syntax':
408
+ name: RDF Working Group
409
+ 'www.w3.org/MarkUp/Forms/Group':
410
+ name: Forms Working Group
411
+ 'www.w3.org/2002/mmi/Group':
412
+ name: Multimodal Interaction Working Group
413
+ 'www.w3.org/Encryption/2001':
414
+ name: XML Encryption WG
415
+ 'www.w3.org/WAI/PF/Group':
416
+ name: Protocols and Formats Working Group
417
+ abbrev: PFWG
418
+ 'www.w3.org/2001/XKMS':
419
+ name: XML Key Management Working Group
420
+ 'www.w3.org/DSig/Group':
421
+ name: XML Signature WG
422
+ 'www.w3.org/QA/IG':
423
+ name: Quality Assurance Interest Group
424
+ abbrev: QA IG
425
+ 'www.w3.org/AudioVideo/TT/Group':
426
+ name: Timed Text Working Group
427
+ abbrev: TTWG
428
+ 'www.w3.org/2004/CDF/Group':
429
+ name: Compound Document Formats Working Group
430
+ abbrev: CDF WG
431
+ 'www.w3.org/International/geo':
432
+ name: Internationalization GEO Working Group
433
+ 'www.w3.org/2005/MWI/BPWG/Group':
434
+ name: Mobile Web Best Practices Working Group
435
+ abbrev: BPWG
436
+ 'www.w3.org/2005/MWI/DDWG/Group':
437
+ name: Mobile Web Initiative Device Description Working Group
438
+ 'www.w3.org/2005/Incubator/wcl':
439
+ name: Content Label Incubator Group
440
+ abbrev: WCL-XG
441
+ 'www.w3.org/XML/Group/EXI':
442
+ name: Efficient Extensible Interchange Working Group
443
+ abbrev: EXIWG
444
+ 'www.w3.org/2005/rules/wg':
445
+ name: RIF Working Group
446
+ 'www.w3.org/Style/CSS/members':
447
+ name: Cascading Style Sheets Working Group
448
+ 'www.w3.org/2001/sw/sweo':
449
+ name: Semantic Web Education and Outreach Interest Group
450
+ abbrev: SWEO IG
451
+ 'www.w3.org/Graphics/SVG':
452
+ name: SVG Working Group
453
+ 'www.w3.org/2009/dap':
454
+ name: Devices and Sensors Working Group
455
+ abbrev: DAS WG
456
+ 'www.w3.org/2007/eGov/IG':
457
+ name: eGovernment Interest Group
458
+ abbrev: EGOV IG
459
+ 'www.w3.org/2010/webperf':
460
+ name: Web Performance Working Group
461
+ 'www.w3.org/2011/04/webrtc':
462
+ name: Web Real-Time Communications Working Group
463
+ 'www.w3.org/2012/pointerevents':
464
+ name: Pointer Events Working Group
465
+ 'www.w3.org/community/webpayments':
466
+ name: Web Payments Community Group
467
+ 'www.w3.org/MarkUp/Forms/2009/charter2010.html':
468
+ name: Forms Working Group Charter
469
+ 'www.w3.org/2014/automotive':
470
+ name: Automotive Working Group
471
+ 'www.w3.org/Payments/IG':
472
+ name: Web Commerce Interest Group
473
+ abbrev: WCIG
474
+ 'www.w3.org/2015/spatial':
475
+ name: Spatial Data on the Web Working Group
476
+ abbrev: SDWWG
477
+ 'www.w3.org/auto/wg':
478
+ name: Automotive Working Group
479
+ 'www.w3.org/2018/distributed-tracing':
480
+ name: Distributed Tracing Working Group
481
+ 'www.w3.org/2019/html':
482
+ name: HTML Working Group
483
+ abbrev: HTMLWG
484
+ 'www.w3.org/groups/wg/audio':
485
+ name: Audio Working Group
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-w3c
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-06-25 00:00:00.000000000 Z
11
+ date: 2022-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: equivalent-xml