relaton-w3c 1.12.1 → 1.12.4

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.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/README.adoc +1 -1
  4. data/lib/relaton_w3c/data_fetcher.rb +55 -24
  5. data/lib/relaton_w3c/data_index.rb +4 -1
  6. data/lib/relaton_w3c/data_parser.rb +55 -18
  7. data/lib/relaton_w3c/version.rb +1 -1
  8. data/lib/relaton_w3c/w3c_bibliographic_item.rb +1 -1
  9. metadata +2 -27
  10. data/data/reference.W3C.CR-rdf-schema.xml +0 -16
  11. data/data/reference.W3C.DSig-label.xml +0 -32
  12. data/data/reference.W3C.P3P-rdfschema.xml +0 -26
  13. data/data/reference.W3C.P3P.xml +0 -38
  14. data/data/reference.W3C.PICS-labels.xml +0 -43
  15. data/data/reference.W3C.PICS-rules.xml +0 -38
  16. data/data/reference.W3C.PICS-services.xml +0 -37
  17. data/data/reference.W3C.REC-RUBY.xml +0 -22
  18. data/data/reference.W3C.REC-XHTML.xml +0 -12
  19. data/data/reference.W3C.REC-rdf-syntax.xml +0 -31
  20. data/data/reference.W3C.REC-xml-1998.xml +0 -20
  21. data/data/reference.W3C.REC-xml-names.xml +0 -28
  22. data/data/reference.W3C.REC-xml.xml +0 -35
  23. data/data/reference.W3C.REC-xmlenc-core.xml +0 -23
  24. data/data/reference.W3C.REC-xmlschema-1.xml +0 -23
  25. data/data/reference.W3C.REC-xmlschema-2.xml +0 -17
  26. data/data/reference.W3C.daml-oil-reference.xml +0 -39
  27. data/data/reference.W3C.soap11.xml +0 -56
  28. data/data/reference.W3C.soap12-part1.xml +0 -38
  29. data/data/reference.W3C.soap12-part2.xml +0 -38
  30. data/data/reference.W3C.xkms.xml +0 -50
  31. data/data/reference.W3C.xml-c14n.xml +0 -15
  32. data/data/reference.W3C.xmldsig-core.xml +0 -26
  33. data/data/reference.W3C.xmlenc-core.xml +0 -20
  34. data/data/reference.W3C.xpath.xml +0 -22
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c028e302ee03cbb9e084fa668bca72b261ccabeac8b7a28f6f3f1ec561e92231
4
- data.tar.gz: 44ac6f835a1ba3a610e52e7623e0ce6d55a16bf45555effacf24ce79efc4e7b6
3
+ metadata.gz: 99d8437c234f255a39c904f66b9a31a54bc8d96278cdf62be3097e53bc3f22d4
4
+ data.tar.gz: 42cb93c06794e8c72cbf81f43af3a7b3e4f5504f54215e2ac4872e61b84169bb
5
5
  SHA512:
6
- metadata.gz: 40aaa5788e9e3ff60d01d4e572e36eba5f2f381d19638ce47942d6bf423184270856803d953be305761f23a8043518f1bd058411c9dbeaf0acdf134b0ac7119d
7
- data.tar.gz: 9a0a1d61668dce5b5718d476ba66f6422bfb2ce446ba1a6f9e2677d6fe1fbdb44d67160a5fdd3285b30ba70bf72bd6228902e3d21925fcff8d2e6bc53be34249
6
+ metadata.gz: 3f970f7fbcdf0f3490ceea00f891877bfc235e5c1ac6a3e2dbf61845686088800281ae7c2d09ac98c8a51a5d6e8b4e9447e4aaa0ab14db52be141265ed4b2999
7
+ data.tar.gz: 57b934f34559e319b627c1747133a807f4befbf1a41f28523197c6fc66e51484bab2b43feaea90e92c02f7a15a3dedde55a20b9cf5f97c3c6410b85a2fa3acbe
data/.gitignore CHANGED
@@ -12,3 +12,4 @@
12
12
  Gemfile.lock
13
13
  .rubocop-https---raw-githubusercontent-com-riboseinc-oss-guides-master-ci-rubocop-yml
14
14
  .vscode/
15
+ tr.rdf
data/README.adoc CHANGED
@@ -159,7 +159,7 @@ Arguments:
159
159
  - `format` - format in which the documents are saved. Possible formats are: `yaml`, `xml`, `bibxml` (default `yaml`).
160
160
 
161
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.
162
+ - `w3c-rdf` - The dataset is fetched from http://www.w3.org/2002/01/tr-automation/tr.rdf.
163
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
164
 
165
165
  [source,ruby]
@@ -20,7 +20,7 @@ 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
- @index = DataIndex.new
23
+ @index = DataIndex.create_from_file
24
24
  end
25
25
 
26
26
  #
@@ -67,21 +67,52 @@ module RelatonW3c
67
67
  #
68
68
  # @param [RelatonW3c::W3cBibliographicItem] bib bibligraphic item
69
69
  #
70
- def add_has_edition_relation(bib) # rubocop:disable Metrics/MethodLength, Metrics/AbcSize, Metrics/CyclomaticComplexity
70
+ def add_has_edition_relation(bib) # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity, Metrics/MethodLength
71
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
72
+ if File.exist? file
73
+ item = send "read_#{@format}", file
74
+ item.relation.each do |r1|
75
+ r1.type = "hasEdition" if r1.type == "instance"
76
+ same_edition = bib.relation.detect { |r2| same_edition?(r1, r2) }
77
+ bib.relation << r1 unless same_edition
78
+ end
84
79
  end
80
+ bib.relation.select { |r| r.type == "hasEdition" }
81
+ .max_by { |r| r.bibitem.id.match(/(?<=-)\d{8}$/).to_s }&.type = "instance"
82
+ end
83
+
84
+ #
85
+ # Read XML file
86
+ #
87
+ # @param [String] file file name
88
+ #
89
+ # @return [RelatonW3c::W3cBibliographicItem] bibliographic item
90
+ #
91
+ def read_xml(file)
92
+ XMLParser.from_xml(File.read(file, encoding: "UTF-8"))
93
+ end
94
+
95
+ #
96
+ # Read YAML file
97
+ #
98
+ # @param [String] file file name
99
+ #
100
+ # @return [RelatonW3c::W3cBibliographicItem] bibliographic item
101
+ #
102
+ def read_yaml(file)
103
+ hash = YAML.load_file(file)
104
+ W3cBibliographicItem.from_hash(hash)
105
+ end
106
+
107
+ #
108
+ # Read BibXML file
109
+ #
110
+ # @param [String] file file name
111
+ #
112
+ # @return [RelatonW3c::W3cBibliographicItem] bibliographic item
113
+ #
114
+ def read_bibxml(file)
115
+ BibXMLParser.parse File.read(file, encoding: "UTF-8")
85
116
  end
86
117
 
87
118
  #
@@ -118,22 +149,22 @@ module RelatonW3c
118
149
  @files = []
119
150
  rdf = RDF::Repository.load("http://www.w3.org/2002/01/tr-automation/tr.rdf")
120
151
  yield rdf
121
- parse_static_dataset
152
+ # parse_static_dataset
122
153
  end
123
154
  end
124
155
 
125
156
  #
126
157
  # Parse static dataset
127
158
  #
128
- def parse_static_dataset
129
- Dir[File.expand_path("../../data/*", __dir__)].each do |file|
130
- xml = File.read file, encoding: "UTF-8"
131
- save_doc BibXMLParser.parse(xml), warn_duplicate: false
132
- rescue StandardError => e
133
- warn "Error: document #{file} #{e.message}"
134
- warn e.backtrace.join("\n")
135
- end
136
- end
159
+ # def parse_static_dataset
160
+ # Dir[File.expand_path("../../data/*", __dir__)].each do |file|
161
+ # xml = File.read file, encoding: "UTF-8"
162
+ # save_doc BibXMLParser.parse(xml), warn_duplicate: false
163
+ # rescue StandardError => e
164
+ # warn "Error: document #{file} #{e.message}"
165
+ # warn e.backtrace.join("\n")
166
+ # end
167
+ # end
137
168
 
138
169
  #
139
170
  # Query RDF source for versioned documents
@@ -136,7 +136,10 @@ module RelatonW3c
136
136
  # @return [RelatonW3c::DataIndex] data index
137
137
  #
138
138
  def create_from_file(index_file = "index-w3c.yaml")
139
- index = RelatonBib.parse_yaml(File.read(index_file), [Symbol])
139
+ index = if File.exist?(index_file)
140
+ RelatonBib.parse_yaml(File.read(index_file), [Symbol])
141
+ else []
142
+ end
140
143
  new index_file: index_file, index: index
141
144
  end
142
145
 
@@ -101,7 +101,7 @@ module RelatonW3c
101
101
  #
102
102
  def parse_link
103
103
  link = @sol.respond_to?(:link) ? @sol.link : @sol.version_of
104
- [RelatonBib::TypedUri.new(type: "src", content: link.to_s.strip)]
104
+ [RelatonBib::TypedUri.new(type: "src", content: link.to_s.strip)] + editor_drafts
105
105
  end
106
106
 
107
107
  #
@@ -176,29 +176,64 @@ module RelatonW3c
176
176
  #
177
177
  # @return [Array<String>] types and stages
178
178
  #
179
- def types_stages # rubocop:disable Metrics/MethodLength
180
- return unless @sol.respond_to?(:link)
181
-
179
+ def types_stages
182
180
  @types_stages ||= begin
183
- sse = SPARQL.parse(%(
184
- PREFIX : <http://www.w3.org/2001/02pd/rec54#>
185
- PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
186
- SELECT ?type
187
- WHERE {
188
- { <#{@sol.link.to_s.strip}> rdf:type ?type }
189
- }
190
- ))
181
+ sse = @sol.respond_to?(:link) ? versioned_types_stages : unversioned_types_stages
191
182
  @rdf.query(sse).map { |s| s.type.to_s.split("#").last }
192
183
  end
193
184
  end
194
185
 
186
+ #
187
+ # Create SPARQL query for versioned types and stages
188
+ #
189
+ # @return [SPARQL::Algebra::Operator::Prefix] SPARQL query
190
+ #
191
+ def versioned_types_stages
192
+ SPARQL.parse(%(
193
+ PREFIX : <http://www.w3.org/2001/02pd/rec54#>
194
+ PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
195
+ SELECT ?type
196
+ WHERE {
197
+ { <#{@sol.link.to_s.strip}> rdf:type ?type }
198
+ }
199
+ ))
200
+ end
201
+
202
+ #
203
+ # Create SPARQL query for unversioned types and stages
204
+ #
205
+ # @return [SPARQL::Algebra::Operator::Prefix] SPARQL query
206
+ #
207
+ def unversioned_types_stages
208
+ SPARQL.parse(%(
209
+ PREFIX : <http://www.w3.org/2001/02pd/rec54#>
210
+ PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
211
+ PREFIX doc: <http://www.w3.org/2000/10/swap/pim/doc#>
212
+ SELECT ?type
213
+ WHERE {
214
+ ?link doc:versionOf <#{@sol.version_of}>; rdf:type ?type .
215
+ FILTER ( isURI(?link) && STR(?link) != <#{@sol.version_of}> )
216
+ }
217
+ ))
218
+ end
219
+
195
220
  #
196
221
  # Parse doctype
197
222
  #
198
- # @return [Strinf] doctype
223
+ # @return [String, nil] doctype
199
224
  #
200
225
  def parse_doctype
201
- DOCTYPES[type] || "recommendation"
226
+ DOCTYPES[type] || DOCTYPES[type_from_link]
227
+ end
228
+
229
+ #
230
+ # Fetch type from link
231
+ #
232
+ # @return [String, nil] type
233
+ #
234
+ def type_from_link
235
+ link = @sol.respond_to?(:link) ? @sol.link : @sol.version_of
236
+ link.to_s.strip.match(/www\.w3\.org\/(TR)/)&.to_a&.fetch 1
202
237
  end
203
238
 
204
239
  #
@@ -219,7 +254,7 @@ module RelatonW3c
219
254
  #
220
255
  def parse_relation
221
256
  if @sol.respond_to?(:link)
222
- relations + editor_drafts
257
+ relations
223
258
  else
224
259
  document_versions.map { |r| create_relation(r.link.to_s.strip, "hasEdition") }
225
260
  end
@@ -250,14 +285,16 @@ module RelatonW3c
250
285
  # @return [Array<RelatonBib::DocumentRelation>] relation
251
286
  #
252
287
  def editor_drafts # rubocop:disable Metrics/MethodLength
288
+ return [] unless @sol.respond_to?(:link)
289
+
253
290
  sse = SPARQL.parse(%(
254
291
  PREFIX : <http://www.w3.org/2001/02pd/rec54#>
255
292
  PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
256
- SELECT ?rel
257
- WHERE { <#{@sol.link.to_s.strip}> :ED ?rel . }
293
+ SELECT ?latest
294
+ WHERE { <#{@sol.link.to_s.strip}> :ED ?latest . }
258
295
  ))
259
296
  @rdf.query(sse).map do |s|
260
- create_relation(s.rel.to_s, "hasDraft", "Editor's draft")
297
+ RelatonBib::TypedUri.new(type: "current", content: s.latest.to_s.strip)
261
298
  end
262
299
  end
263
300
 
@@ -1,3 +1,3 @@
1
1
  module RelatonW3c
2
- VERSION = "1.12.1".freeze
2
+ VERSION = "1.12.4".freeze
3
3
  end
@@ -2,7 +2,7 @@ module RelatonW3c
2
2
  class W3cBibliographicItem < RelatonBib::BibliographicItem
3
3
  TYPES = %w[
4
4
  candidateRecommendation groupNote proposedEditedRecommendation
5
- proposedRecommendation recommendation retired workingDraft
5
+ proposedRecommendation recommendation retired workingDraft technicalReport
6
6
  ].freeze
7
7
 
8
8
  # @param doctype [String]
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.1
4
+ version: 1.12.4
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-07-14 00:00:00.000000000 Z
11
+ date: 2022-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: equivalent-xml
@@ -212,31 +212,6 @@ files:
212
212
  - bin/console
213
213
  - bin/rspec
214
214
  - bin/setup
215
- - data/reference.W3C.CR-rdf-schema.xml
216
- - data/reference.W3C.DSig-label.xml
217
- - data/reference.W3C.P3P-rdfschema.xml
218
- - data/reference.W3C.P3P.xml
219
- - data/reference.W3C.PICS-labels.xml
220
- - data/reference.W3C.PICS-rules.xml
221
- - data/reference.W3C.PICS-services.xml
222
- - data/reference.W3C.REC-RUBY.xml
223
- - data/reference.W3C.REC-XHTML.xml
224
- - data/reference.W3C.REC-rdf-syntax.xml
225
- - data/reference.W3C.REC-xml-1998.xml
226
- - data/reference.W3C.REC-xml-names.xml
227
- - data/reference.W3C.REC-xml.xml
228
- - data/reference.W3C.REC-xmlenc-core.xml
229
- - data/reference.W3C.REC-xmlschema-1.xml
230
- - data/reference.W3C.REC-xmlschema-2.xml
231
- - data/reference.W3C.daml-oil-reference.xml
232
- - data/reference.W3C.soap11.xml
233
- - data/reference.W3C.soap12-part1.xml
234
- - data/reference.W3C.soap12-part2.xml
235
- - data/reference.W3C.xkms.xml
236
- - data/reference.W3C.xml-c14n.xml
237
- - data/reference.W3C.xmldsig-core.xml
238
- - data/reference.W3C.xmlenc-core.xml
239
- - data/reference.W3C.xpath.xml
240
215
  - grammars/basicdoc.rng
241
216
  - grammars/biblio.rng
242
217
  - grammars/isodoc.rng
@@ -1,16 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
-
3
- <reference anchor="W3C.CR-rdf-schema" target="http://www.w3.org/TR/2000/CR-rdf-schema-20000327">
4
- <front>
5
- <title>Resource Description Framework (RDF) Schema Specification 1.0</title>
6
- <author initials="D." surname="Brickley" fullname="Dan Brickley">
7
- <organization>University of Bristol</organization>
8
- </author>
9
- <author initials="R.V." surname="Guha" fullname="R.V. Guha">
10
- <organization>Epinions</organization>
11
- </author>
12
- <date day="27" month="March" year="2000"/>
13
- </front>
14
- <seriesInfo name="W3C" value="CR-rdf-schema"/>
15
- </reference>
16
-
@@ -1,32 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.DSig-label" target="http://www.w3.org/TR/REC-DSig-label">
3
- <front>
4
- <title>PICS Signed Labels (DSig) 1.0 Specification</title>
5
- <author initials="Y." surname="Chu " fullname="Yang-hua Chu">
6
- <organization>Carnegie Mellon University, Department of Computer Science</organization>
7
- <address>
8
- <email>yhchu@cs.cmu.edu</email>
9
- </address>
10
- </author>
11
- <author initials="P." surname="DesAutels" fullname="Philip DesAutels">
12
- <organization>MatchLogic, Inc.</organization>
13
- <address>
14
- <email>philipd@matchlogic.com</email>
15
- </address>
16
- </author>
17
- <author initials="B." surname="LaMacchia" fullname="Brian LaMacchia">
18
- <organization>Microsoft Corporation</organization>
19
- <address>
20
- <email>bal@microsoft.com</email>
21
- </address>
22
- </author>
23
- <author initials="P." surname="Lipp" fullname="Peter Lipp">
24
- <organization>IAIK, University of Technology, Graz</organization>
25
- <address>
26
- <email>plipp@iaik.tu-graz.ac.at</email>
27
- </address>
28
- </author>
29
- <date day="27" month="May" year="1998"/>
30
- </front>
31
- <seriesInfo name="W3C" value="REC-DSig-label"/>
32
- </reference>
@@ -1,26 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.P3P-rdfschema" target="http://www.w3.org/TR/P3P-rdfschema">
3
- <front>
4
- <title>An RDF Schema for P3P</title>
5
- <author initials="B." surname="McBride" fullname="Brian McBride">
6
- <organization abbrev="HP">Hewlett Packard</organization>
7
- <address>
8
- <email>brian_mcbride@hp.com</email>
9
- </address>
10
- </author>
11
- <author initials="R." surname="Wenning" fullname="Rigo Wenning">
12
- <organization>W3C</organization>
13
- <address>
14
- <email>rigo@w3.org</email>
15
- </address>
16
- </author>
17
- <author initials="L." surname="Cranor" fullname="Lorrie Cranor">
18
- <organization>AT&amp;T</organization>
19
- <address>
20
- <uri>http://lorrie.cranor.org/</uri>
21
- </address>
22
- </author>
23
- <date day="25" month="January" year="2002"/>
24
- </front>
25
- <seriesInfo name="W3C" value="NOTE-P3P-rdfschema"/>
26
- </reference>
@@ -1,38 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.P3P" target="http://www.w3.org/TR/P3P/">
3
- <front>
4
- <title>The Platform for Privacy Preferences 1.0 (P3P1.0) Specification</title>
5
- <author initials="M." surname="Marchiori" fullname="Massimo Marchiori">
6
- <organization abbrev="W3C">World Wide Web Consortium</organization>
7
- <address>
8
- <email>massimo@w3.or</email>
9
- </address>
10
- </author>
11
- <author initials="L." surname="Cranor" fullname="Lorrie Cranor">
12
- <organization>AT&amp;T</organization>
13
- <address>
14
- <url>http://lorrie.cranor.or/</url>
15
- </address>
16
- </author>
17
- <author initials="M." surname="Lanheinrich" fullname="Marc Langheinrich">
18
- <organization>ETH Zurich</organization>
19
- <address>
20
- <url>http://www.inf.ethz.ch/~lanhein/</url>
21
- </address>
22
- </author>
23
- <author initials="M." surname="Presler-Marshall" fullname="Martin Presler-Marshall">
24
- <organization>IBM</organization>
25
- <address>
26
- <email>mpresler@us.ibm.com</email>
27
- </address>
28
- </author>
29
- <author initials="J." surname="Reale" fullname="Joseph Reagle">
30
- <organization>W3C</organization>
31
- <address>
32
- <url>http://www.w3.or/People/Reagle/Overview.html</url>
33
- </address>
34
- </author>
35
- <date day="16" month="April" year="2002"/>
36
- </front>
37
- <seriesInfo name="W3C" value="REC-PICS-services"/>
38
- </reference>
@@ -1,43 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.PICS-labels" target="http://www.w3.org/TR/REC-PICS-labels">
3
- <front>
4
- <title>PICS Label Distribution Label Syntax and Communication Protocols</title>
5
- <author initials="J." surname="Miller" fullname="Jim Miller">
6
- <organization abbrev="W3C">World Wide Web Consortium</organization>
7
- <address>
8
- <postal>
9
- <street>MIT Laboratory for Computer Science</street>
10
- <street>545 Technology Square</street>
11
- <city>Cambridge</city>
12
- <region>MA</region>
13
- <code>02139</code>
14
- <country>US</country>
15
- </postal>
16
- <phone>+ 1 617 253 2613</phone>
17
- <facsimile>+ 1 617 258 5999</facsimile>
18
- <email>jmiller@w3.org</email>
19
- <uri>http://www.w3c.org</uri>
20
- </address>
21
- </author>
22
- <author initials="T." surname="Krauskopf" fullname="Tim Krauskopf">
23
- <organization>Spyglass</organization>
24
- <address>
25
- <email>timk@spyglass.com</email>
26
- </address>
27
- </author>
28
- <author initials="P." surname="Resnick" fullname="Paul Resnick">
29
- <organization>AT&amp;T</organization>
30
- <address>
31
- <email>presnick@research.att.com</email>
32
- </address>
33
- </author>
34
- <author initials="W." surname="Treese" fullname="Win Treese">
35
- <organization>OpenMarket</organization>
36
- <address>
37
- <email>treese@OpenMarket.com</email>
38
- </address>
39
- </author>
40
- <date day="31" month="October" year="1996"/>
41
- </front>
42
- <seriesInfo name="W3C" value="REC-PICS-labels"/>
43
- </reference>
@@ -1,38 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.PICS-rules" target="http://www.w3.org/TR/REC-PICSRules">
3
- <front>
4
- <title>PICSRules 1.1</title>
5
- <author initials="C." surname="Evans" fullname="Christopher Evans">
6
- <organization abbrev="W3C">Microsoft</organization>
7
- <address>
8
- <email>cevans@microsoft.com</email>
9
- </address>
10
- </author>
11
- <author initials="C.D.W." surname="Feather" fullname="Clive D.W. Feather">
12
- <organization abbrev="W3C">Demon Internet Ltd.</organization>
13
- <address>
14
- <email>clive@demon.net</email>
15
- </address>
16
- </author>
17
- <author initials="A." surname="Hopmann" fullname="Alex Hopmann">
18
- <organization>Microsoft</organization>
19
- <address>
20
- <email>alexhop@microsoft.com</email>
21
- </address>
22
- </author>
23
- <author initials="M." surname="Presler-Marshall" fullname="Martin Presler-Marshall">
24
- <organization>IBM</organization>
25
- <address>
26
- <email>mpresler@us.ibm.com</email>
27
- </address>
28
- </author>
29
- <author initials="P." surname="Resnick" fullname="Paul Resnick">
30
- <organization>AT&amp;T</organization>
31
- <address>
32
- <email>presnick@research.att.com</email>
33
- </address>
34
- </author>
35
- <date day="29" month="December" year="1997"/>
36
- </front>
37
- <seriesInfo name="W3C" value="REC-PICSRules"/>
38
- </reference>
@@ -1,37 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.PICS-services" target="http://www.w3.org/TR/REC-PICS-services">
3
- <front>
4
- <title>Platform for Internet Content Selection (PICS) Rating Services and Rating Systems</title>
5
- <author initials="J." surname="Miller" fullname="Jim Miller">
6
- <organization abbrev="W3C">World Wide Web Consortium</organization>
7
- <address>
8
- <postal>
9
- <street>MIT Laboratory for Computer Science</street>
10
- <street>545 Technology Square</street>
11
- <city>Cambridge</city>
12
- <region>MA</region>
13
- <code>02139</code>
14
- <country>US</country>
15
- </postal>
16
- <phone>+ 1 617 253 2613</phone>
17
- <facsimile>+ 1 617 258 5999</facsimile>
18
- <email>jmiller@w3.org</email>
19
- <uri>http://www.w3c.org</uri>
20
- </address>
21
- </author>
22
- <author initials="P." surname="Resnick" fullname="Paul Resnick">
23
- <organization>AT&amp;T</organization>
24
- <address>
25
- <email>presnick@research.att.com</email>
26
- </address>
27
- </author>
28
- <author initials="D." surname="Singer" fullname="David Singer">
29
- <organization>IBM</organization>
30
- <address>
31
- <email>singer@almaden.ibm.com</email>
32
- </address>
33
- </author>
34
- <date day="31" month="October" year="1996"/>
35
- </front>
36
- <seriesInfo name="W3C" value="REC-PICS-services"/>
37
- </reference>
@@ -1,22 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
-
3
- <reference anchor="W3C.REC-RUBY"
4
- target="http://www.w3.org/TR/ruby/">
5
- <front>
6
- <title>Ruby Annotation</title>
7
- <author initials="M." surname="Suignard" fullname="Michel Suignard">
8
- <organization>Microsoft</organization>
9
- </author>
10
- <author initials="M." surname="Ishikawa" fullname="Masayasu Ishikawa">
11
- <organization>W3C</organization>
12
- </author>
13
- <author initials="M." surname="Duerst" fullname="Martin Duerst">
14
- <organization>W3C</organization>
15
- </author>
16
- <author initials="T." surname="Texin" fullname="Tex Texin">
17
- <organization>Progress Software Corp.</organization>
18
- </author>
19
- <date year="2001" month="May" day="31"/>
20
- </front>
21
- <seriesInfo name="W3C" value="REC-RUBY"/>
22
- </reference>
@@ -1,12 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
- <reference anchor="W3C.REC-XHTML"
3
- target="http://www.w3.org/TR/xhtml1/">
4
- <front>
5
- <title>XHTML 1.0: The Extensible HyperText Markup Language</title>
6
- <author initials="S." surname="Pemberton" fullname="Steven Pemberton">
7
- <organization>CWI</organization>
8
- </author>
9
- <date year="2000" month="January" day="26"/>
10
- </front>
11
- <seriesInfo name="W3C" value="REC-XHTML"/>
12
- </reference>
@@ -1,31 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
-
3
- <reference anchor="W3C.REC-rdf-syntax" target="http://www.w3.org/TR/REC-rdf-syntax">
4
- <front>
5
- <title>Resource Description Framework (RDF) Model and Syntax Specification</title>
6
- <author initials="O." surname="Lassila" fullname="Ora Lassila">
7
- <organization>Nokia Research Centre</organization>
8
- <address>
9
- <email>ora.lassila@research.nokia.com</email>
10
- </address>
11
- </author>
12
- <author initials="R." surname="Swick" fullname="Ralph Swick">
13
- <organization abbrev="W3C">World Wide Web Consortium</organization>
14
- <address>
15
- <postal>
16
- <street>MIT Laboratory for Computer Science</street>
17
- <street>545 Technology Square</street>
18
- <city>Cambridge</city> <region>MA</region> <code>02139</code>
19
- <country>US</country>
20
- </postal>
21
- <phone>+ 1 617 253 2613</phone>
22
- <facsimile>+ 1 617 258 5999</facsimile>
23
- <email>swick@w3.org</email>
24
- <uri>http://www.w3c.org</uri>
25
- </address>
26
- </author>
27
- <date day="22" month="February" year="1999"/>
28
- </front>
29
- <seriesInfo name="W3C" value="REC-rdf-syntax"/>
30
- </reference>
31
-
@@ -1,20 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
-
3
- <reference anchor="W3C.REC-xml-1998"
4
- target="http://www.w3.org/TR/1998/REC-xml-19980210/">
5
- <front>
6
- <title>Extensible Markup Language (XML) 1.0</title>
7
- <author initials="T." surname="Bray" fullname="Tim Bray">
8
- <organization>Textuality and Netscape</organization>
9
- </author>
10
- <author initials="J." surname="Paoli" fullname="Jean Paoli">
11
- <organization>Microsoft</organization>
12
- </author>
13
- <author initials="C. M." surname="Sperberg-McQueen"
14
- fullname="C. M. Sperberg-McQueen">
15
- <organization>University of Illinois at Chicago</organization>
16
- </author>
17
- <date year="1998" month="February" day="10"/>
18
- </front>
19
- <seriesInfo name="W3C" value="REC-xml-1998"/>
20
- </reference>
@@ -1,28 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
-
3
- <reference anchor="W3C.REC-xml-names" target="http://www.w3.org/TR/REC-xml-names">
4
- <front>
5
- <title>Namespaces in XML</title>
6
- <author initials="T." surname="Bray" fullname="Tim Bray">
7
- <organization>Textuality</organization>
8
- <address>
9
- <email>tbray@textuality.com</email>
10
- </address>
11
- </author>
12
- <author initials="D." surname="Hollander" fullname="Dave Hollander">
13
- <organization>Hewlett-Packard Company</organization>
14
- <address>
15
- <email>dmh@corp.hp.com</email>
16
- </address>
17
- </author>
18
- <author initials="A." surname="Layman" fullname="Andrew Layman">
19
- <organization>Microsoft</organization>
20
- <address>
21
- <email>andrewl@microsoft.com</email>
22
- </address>
23
- </author>
24
- <date day="14" month="January" year="1999"/>
25
- </front>
26
- <seriesInfo name="W3C" value="REC-xml-names"/>
27
- </reference>
28
-
@@ -1,35 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
-
3
- <reference anchor="W3C.REC-xml" target="http://www.w3.org/TR/REC-xml">
4
- <front>
5
- <title>Extensible Markup Language (XML) 1.0 (2nd ed)</title>
6
- <author initials="T." surname="Bray" fullname="Tim Bray">
7
- <organization>Textuality and Netscape</organization>
8
- <address>
9
- <email>tbray@textuality.com</email>
10
- </address>
11
- </author>
12
- <author initials="J." surname="Paoli" fullname="Jean Paoli">
13
- <organization>Microsoft</organization>
14
- <address>
15
- <email>jeanpa@microsoft.com</email>
16
- </address>
17
- </author>
18
- <author initials="C.M." surname="Sperberg-McQueen" fullname="C. M. Sperberg-McQueen">
19
- <organization>University of Illinois at Chicago and Text Encoding Initiative</organization>
20
- <address>
21
- <email>cmsmcq@uic.edu</email>
22
- </address>
23
- </author>
24
- <author initials="E." surname="Maler" fullname="Eve Maler">
25
- <organization>Sun Microsystems</organization>
26
- <address>
27
- <email>eve.maler@east.sun.com</email>
28
- </address>
29
- </author>
30
- <date day="6" month="October" year="2000"/>
31
- </front>
32
- <seriesInfo name="W3C" value="REC-xml"/>
33
- </reference>
34
-
35
-
@@ -1,23 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
-
3
- <reference anchor="W3C.REC-xmlenc-core"
4
- target="http://www.w3.org/TR/xmlenc-core/">
5
- <front>
6
- <title>XML Encryption Syntax and Processing</title>
7
- <author initials="T." surname="Imamura" fullname="Takeshi Imamura">
8
- <organization>IBM</organization>
9
- </author>
10
- <author initials="B." surname="Dillaway" fullname="Blair Dillaway">
11
- <organization>Microsoft</organization>
12
- </author>
13
- <author initials="J." surname="Schaad" fullname="Jim Schaad">
14
- <organization>Soaring Hawk Consulting</organization>
15
- </author>
16
- <author initials="E." surname="Simon" fullname="Ed Simon">
17
- <organization></organization>
18
- </author>
19
- <date year="2001" month="October" day="18"/>
20
- </front>
21
- <seriesInfo name="W3C" value="REC-xmlenc-core"/>
22
- </reference>
23
-
@@ -1,23 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
-
3
- <reference anchor="W3C.REC-xmlschema-1"
4
- target="http://www.w3.org/TR/xmlschema-1/">
5
- <front>
6
- <title>XML Schema Part 1: Structures</title>
7
- <author initials="H." surname="Thompson" fullname="Henry S. Thompson">
8
- <organization>University of Edinburgh</organization>
9
- </author>
10
- <author initials="D." surname="Beech" fullname="David Beech">
11
- <organization>Oracle Corporation</organization>
12
- </author>
13
- <author initials="M." surname="Maloney" fullname="Murray Maloney">
14
- <organization>Commerce One</organization>
15
- </author>
16
- <author initials="N." surname="Mendelsohn" fullname="Noah Mendelsohn">
17
- <organization>Lotus Development Corporation</organization>
18
- </author>
19
- <date year="2001" month="May" day="2"/>
20
- </front>
21
- <seriesInfo name="W3C" value="REC-xmlschema-1"/>
22
- </reference>
23
-
@@ -1,17 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
-
3
- <reference anchor="W3C.REC-xmlschema-2"
4
- target="http://www.w3.org/TR/xmlschema-2/">
5
- <front>
6
- <title>XML Schema Part 2: Datatypes</title>
7
- <author initials="P." surname="Biron" fullname="Paul V. Biron">
8
- <organization>Kaiser Permanente</organization>
9
- </author>
10
- <author initials="A." surname="Malhotra" fullname="Ashok Malhotra">
11
- <organization>Microsoft</organization>
12
- </author>
13
- <date year="2001" month="May" day="2"/>
14
- </front>
15
- <seriesInfo name="W3C" value="REC-xmlschema-2"/>
16
- </reference>
17
-
@@ -1,39 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.daml+oil-reference" target="http://www.w3.org/TR/daml+oil-reference">
3
- <front>
4
- <title>DAML+OIL (March 2001) Reference Description</title>
5
-
6
- <author initials="D." surname="Connolly" fullname="Dan Connolly">
7
- <organization>W3C</organization>
8
- <address>
9
- </address>
10
- </author>
11
- <author initials="F." surname="van Harmelen" fullname="Frank van Harmelen">
12
- <organization></organization>
13
- <address>
14
- </address>
15
- </author>
16
- <author initials="I." surname="Horrocks" fullname="Ian Horrocks">
17
- <organization></organization>
18
- <address>
19
- </address>
20
- </author>
21
- <author initials="D.L." surname="McGuinness" fullname="Deborah L. McGuinness">
22
- <organization></organization>
23
- <address>
24
- </address>
25
- </author>
26
- <author initials="P.F." surname="Patel-Schneider" fullname="Peter F. Patel-Schneider">
27
- <organization></organization>
28
- <address>
29
- </address>
30
- </author>
31
- <author initials="L.A." surname="Stein" fullname="Lynn Andrea Stein">
32
- <organization></organization>
33
- <address>
34
- </address>
35
- </author>
36
- <date day="18" month="December" year="2001"/>
37
- </front>
38
- <seriesInfo value="NOTE-daml+oil-reference" name="W3C"/>
39
- </reference>
@@ -1,56 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.soap11" target="http://www.w3.org/TR/SOAP/">
3
- <front>
4
- <title>Simple Object Access Protocol (SOAP) 1.1</title>
5
- <author initials="D." surname="Box" fullname="Don Box">
6
- <organization>Developmentor</organization>
7
- <address>
8
- <email>dbox@develop.com</email>
9
- </address>
10
- </author>
11
- <author initials="D." surname="Ehnebuske" fullname="David Ehnebuske">
12
- <organization>IBM</organization>
13
- <address>
14
- <email>davide@us.ibm.com</email>
15
- </address>
16
- </author>
17
- <author initials="G." surname="Kakivaya" fullname="Gopal Kakivaya">
18
- <organization>Microsoft</organization>
19
- <address>
20
- <email>gopalk@microsoft.com</email>
21
- </address>
22
- </author>
23
- <author initials="A." surname="Layman" fullname="Andrew Layman">
24
- <organization>Microsoft</organization>
25
- <address>
26
- <email>andrewl@microsoft.com</email>
27
- </address>
28
- </author>
29
- <author initials="N." surname="Mendelsohn" fullname="Noah Mendelsohn">
30
- <organization>Lotus Development Corp.</organization>
31
- <address>
32
- <email>Noah_Mendelsohn@lotus.com</email>
33
- </address>
34
- </author>
35
- <author initials="H." surname="Nielsen" fullname="Henrik Frystyk Nielsen">
36
- <organization>Microsoft</organization>
37
- <address>
38
- <email>frystyk@microsoft.com</email>
39
- </address>
40
- </author>
41
- <author initials="S." surname="Thatte" fullname="Satish Thatte">
42
- <organization>Microsoft</organization>
43
- <address>
44
- <email>satisht@microsoft.com</email>
45
- </address>
46
- </author>
47
- <author initials="D." surname="Winer" fullname="Dave Winer">
48
- <organization>UserLand Software</organization>
49
- <address>
50
- <email>dave@userland.com</email>
51
- </address>
52
- </author>
53
- <date day="8" month="May" year="2000"/>
54
- </front>
55
- <seriesInfo value="NOTE-soap11" name="W3C"/>
56
- </reference>
@@ -1,38 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.soap12-part1" target="http://www.w3.org/TR/soap12-part1">
3
- <front>
4
- <title>SOAP Version 1.2 Part 1: Messaging Framework</title>
5
- <author initials="M." surname="Gudgin" fullname="Martin Gudgin">
6
- <organization>Developmentor</organization>
7
- <address>
8
- <email>marting@develop.com</email>
9
- </address>
10
- </author>
11
- <author initials="M." surname="Hadley" fullname="Marc Hadley">
12
- <organization>Sun Microsystems</organization>
13
- <address>
14
- <email>marc.hadley@sun.com</email>
15
- </address>
16
- </author>
17
- <author initials="N." surname="Mendelsohn" fullname="Noah Mendelsohn">
18
- <organization>IBM</organization>
19
- <address>
20
- <email>Noah_Mendelsohn@us.ibm.com</email>
21
- </address>
22
- </author>
23
- <author initials="J." surname="Moreau" fullname="Jean-Jacques Moreau">
24
- <organization>Canon</organization>
25
- <address>
26
- <email>moreau@crf.canon.fr</email>
27
- </address>
28
- </author>
29
- <author initials="H." surname="Nielsen" fullname="Henrik Frystyk Nielsen">
30
- <organization>Microsoft</organization>
31
- <address>
32
- <email>henrikn@microsoft.com</email>
33
- </address>
34
- </author>
35
- <date day="26" month="June" year="2002"/>
36
- </front>
37
- <seriesInfo value="WD-soap12-part1" name="W3C"/>
38
- </reference>
@@ -1,38 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.soap12-part2" target="http://www.w3.org/TR/soap12-part2">
3
- <front>
4
- <title>SOAP Version 1.2 Part 2: Adjuncts</title>
5
- <author initials="M." surname="Gudgin" fullname="Martin Gudgin">
6
- <organization>Developmentor</organization>
7
- <address>
8
- <email>marting@develop.com</email>
9
- </address>
10
- </author>
11
- <author initials="M." surname="Hadley" fullname="Marc Hadley">
12
- <organization>Sun Microsystems</organization>
13
- <address>
14
- <email>marc.hadley@sun.com</email>
15
- </address>
16
- </author>
17
- <author initials="N." surname="Mendelsohn" fullname="Noah Mendelsohn">
18
- <organization>IBM</organization>
19
- <address>
20
- <email>Noah_Mendelsohn@us.ibm.com</email>
21
- </address>
22
- </author>
23
- <author initials="J." surname="Moreau" fullname="Jean-Jacques Moreau">
24
- <organization>Canon</organization>
25
- <address>
26
- <email>moreau@crf.canon.fr</email>
27
- </address>
28
- </author>
29
- <author initials="H." surname="Nielsen" fullname="Henrik Frystyk Nielsen">
30
- <organization>Microsoft</organization>
31
- <address>
32
- <email>henrikn@microsoft.com</email>
33
- </address>
34
- </author>
35
- <date day="26" month="June" year="2002"/>
36
- </front>
37
- <seriesInfo value="WD-soap12-part2" name="W3C"/>
38
- </reference>
@@ -1,50 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.xkms" target="http://www.w3.org/TR/xkms/">
3
- <front>
4
- <title>XML Key Management Specification (XKMS)</title>
5
- <author initials="W." surname="Ford" fullname="Warwick Ford">
6
- <organization>VeriSign</organization>
7
- <address>
8
- <email>wford@verisign.com</email>
9
- </address>
10
- </author>
11
- <author initials="P." surname="Hallam-Baker" fullname="Phillip Hallam-Baker">
12
- <organization>VeriSign</organization>
13
- <address>
14
- <email>pbaker@verisign.com</email>
15
- </address>
16
- </author>
17
- <author initials="B." surname="Fox" fullname="Barbara Fox">
18
- <organization>Microsoft</organization>
19
- <address>
20
- <email>bfox@EXCHANGE.MICROSOFT.com</email>
21
- </address>
22
- </author>
23
- <author initials="B." surname="Dillaway" fullname="Blair Dillaway">
24
- <organization>Microsoft</organization>
25
- <address>
26
- <email>blaird@microsoft.com</email>
27
- </address>
28
- </author>
29
- <author initials="B." surname="LaMacchia" fullname="Brian LaMacchia">
30
- <organization>Microsoft</organization>
31
- <address>
32
- <email>bal@microsoft.com</email>
33
- </address>
34
- </author>
35
- <author initials="J." surname="Epstein" fullname="Jeremy Epstein">
36
- <organization>webMethods</organization>
37
- <address>
38
- <email>jepstein@webmethods.com</email>
39
- </address>
40
- </author>
41
- <author initials="J." surname="Lapp" fullname="Joe Lapp">
42
- <organization>webMethods</organization>
43
- <address>
44
- <email>jlapp@webmethods.com</email>
45
- </address>
46
- </author>
47
- <date day="30" month="March" year="2001"/>
48
- </front>
49
- <seriesInfo value="NOTE-xkms" name="W3C"/>
50
- </reference>
@@ -1,15 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.xml-c14n" target="http://www.w3.org/TR/xml-c14n">
3
- <front>
4
- <title>Canonical XML Version 1.0</title>
5
- <author initials="J." surname="Boyer" fullname="John Boyer">
6
- <organization>
7
- </organization>
8
- <address>
9
- <email>jboyer@PureEdge.com</email>
10
- </address>
11
- </author>
12
- <date day="15" month="March" year="2001"/>
13
- </front>
14
- <seriesInfo name="W3C" value="REC-xpath"/>
15
- </reference>
@@ -1,26 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.xmldsig-core" target="http://www.w3.org/TR/xmldsig-core/">
3
- <front>
4
- <title>XML-Signature Syntax and Processing</title>
5
- <author initials="D." surname="Eastlake" fullname="Donald Eastlake">
6
- <organization>Motorola</organization>
7
- <address>
8
- <email>dee3@torque.pothole.com</email>
9
- </address>
10
- </author>
11
- <author initials="J." surname="Reagle " fullname="Joseph Reagle ">
12
- <organization>W3C</organization>
13
- <address>
14
- <email>reagle@w3.org</email>
15
- </address>
16
- </author>
17
- <author initials="D." surname="Solo" fullname="David Solo">
18
- <organization>Citigroup</organization>
19
- <address>
20
- <email>dsolo@alum.mit.edu</email>
21
- </address>
22
- </author>
23
- <date day="6" month="October" year="2000"/>
24
- </front>
25
- <seriesInfo value="REC-xmldsig-core" name="W3C"/>
26
- </reference>
@@ -1,20 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.xmlenc-core" target="http://www.w3.org/TR/xmlenc-core/">
3
- <front>
4
- <title>XML Encryption Syntax and Processing</title>
5
- <author initials="D." surname="Eastlake" fullname="Donald Eastlake">
6
- <organization>Motorola</organization>
7
- <address>
8
- <email>dee3@torque.pothole.com</email>
9
- </address>
10
- </author>
11
- <author initials="J." surname="Reagle " fullname="Joseph Reagle ">
12
- <organization>W3C</organization>
13
- <address>
14
- <email>reagle@w3.org</email>
15
- </address>
16
- </author>
17
- <date day="2" month="August" year="2002"/>
18
- </front>
19
- <seriesInfo value="CR-xmlenc-core" name="W3C"/>
20
- </reference>
@@ -1,22 +0,0 @@
1
- <?xml version="1.0" encoding='UTF-8'?>
2
- <reference anchor="W3C.xpath" target="http://www.w3.org/TR/xpath">
3
- <front>
4
- <title>XML Path Language (XPath) Version 1.0</title>
5
- <author initials="J." surname="Clark" fullname="James Clark">
6
- <organization>
7
- </organization>
8
- <address>
9
- <email>jjc@jclark.com</email>
10
- </address>
11
- </author>
12
- <author initials="S." surname="DeRose" fullname="Steve DeRose">
13
- <organization>
14
- </organization>
15
- <address>
16
- <email>Steven_DeRose@Brown.edu</email>
17
- </address>
18
- </author>
19
- <date day="16" month="November" year="1999"/>
20
- </front>
21
- <seriesInfo name="W3C" value="REC-xpath"/>
22
- </reference>