relaton-w3c 1.9.1 → 1.9.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +2 -0
  3. data/README.adoc +68 -70
  4. data/grammars/isodoc.rng +2106 -0
  5. data/grammars/reqt.rng +194 -0
  6. data/lib/relaton_w3c/data_fethcer.rb +4 -0
  7. data/lib/relaton_w3c/data_parser.rb +1 -1
  8. data/lib/relaton_w3c/hit_collection.rb +1 -1
  9. data/lib/relaton_w3c/version.rb +1 -1
  10. data/lib/relaton_w3c/w3c_bibliography.rb +19 -6
  11. data/relaton_w3c.gemspec +1 -1
  12. data/withdrawn/reference.W3C.CR-rdf-schema.xml +16 -0
  13. data/withdrawn/reference.W3C.DSig-label.xml +32 -0
  14. data/withdrawn/reference.W3C.P3P-rdfschema.xml +26 -0
  15. data/withdrawn/reference.W3C.P3P.xml +38 -0
  16. data/withdrawn/reference.W3C.PICS-labels.xml +43 -0
  17. data/withdrawn/reference.W3C.PICS-rules.xml +38 -0
  18. data/withdrawn/reference.W3C.PICS-services.xml +37 -0
  19. data/withdrawn/reference.W3C.REC-RUBY.xml +22 -0
  20. data/withdrawn/reference.W3C.REC-XHTML.xml +12 -0
  21. data/withdrawn/reference.W3C.REC-rdf-syntax.xml +31 -0
  22. data/withdrawn/reference.W3C.REC-xml-1998.xml +20 -0
  23. data/withdrawn/reference.W3C.REC-xml-names.xml +28 -0
  24. data/withdrawn/reference.W3C.REC-xml.xml +35 -0
  25. data/withdrawn/reference.W3C.REC-xmlenc-core.xml +23 -0
  26. data/withdrawn/reference.W3C.REC-xmlschema-1.xml +23 -0
  27. data/withdrawn/reference.W3C.REC-xmlschema-2.xml +17 -0
  28. data/withdrawn/reference.W3C.daml-oil-reference.xml +39 -0
  29. data/withdrawn/reference.W3C.soap11.xml +56 -0
  30. data/withdrawn/reference.W3C.soap12-part1.xml +38 -0
  31. data/withdrawn/reference.W3C.soap12-part2.xml +38 -0
  32. data/withdrawn/reference.W3C.xkms.xml +50 -0
  33. data/withdrawn/reference.W3C.xml-c14n.xml +15 -0
  34. data/withdrawn/reference.W3C.xmldsig-core.xml +26 -0
  35. data/withdrawn/reference.W3C.xmlenc-core.xml +20 -0
  36. data/withdrawn/reference.W3C.xpath.xml +22 -0
  37. metadata +31 -4
data/grammars/reqt.rng ADDED
@@ -0,0 +1,194 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
3
+ <!--
4
+ Presupposes isodoc.rnc, is included in it
5
+ include "isodoc.rnc" { }
6
+ -->
7
+ <define name="requirement">
8
+ <element name="requirement">
9
+ <ref name="RequirementType"/>
10
+ </element>
11
+ </define>
12
+ <define name="recommendation">
13
+ <element name="recommendation">
14
+ <ref name="RequirementType"/>
15
+ </element>
16
+ </define>
17
+ <define name="permission">
18
+ <element name="permission">
19
+ <ref name="RequirementType"/>
20
+ </element>
21
+ </define>
22
+ <define name="RequirementType">
23
+ <optional>
24
+ <attribute name="obligation">
25
+ <ref name="ObligationType"/>
26
+ </attribute>
27
+ </optional>
28
+ <optional>
29
+ <attribute name="unnumbered">
30
+ <data type="boolean"/>
31
+ </attribute>
32
+ </optional>
33
+ <optional>
34
+ <attribute name="number"/>
35
+ </optional>
36
+ <optional>
37
+ <attribute name="subsequence"/>
38
+ </optional>
39
+ <optional>
40
+ <attribute name="keep-with-next">
41
+ <data type="boolean"/>
42
+ </attribute>
43
+ </optional>
44
+ <optional>
45
+ <attribute name="keep-lines-together">
46
+ <data type="boolean"/>
47
+ </attribute>
48
+ </optional>
49
+ <attribute name="id">
50
+ <data type="ID"/>
51
+ </attribute>
52
+ <optional>
53
+ <attribute name="filename"/>
54
+ </optional>
55
+ <optional>
56
+ <attribute name="model"/>
57
+ </optional>
58
+ <optional>
59
+ <attribute name="type"/>
60
+ </optional>
61
+ <optional>
62
+ <ref name="reqtitle"/>
63
+ </optional>
64
+ <optional>
65
+ <ref name="label"/>
66
+ </optional>
67
+ <optional>
68
+ <ref name="subject"/>
69
+ </optional>
70
+ <zeroOrMore>
71
+ <ref name="reqinherit"/>
72
+ </zeroOrMore>
73
+ <zeroOrMore>
74
+ <ref name="classification"/>
75
+ </zeroOrMore>
76
+ <zeroOrMore>
77
+ <choice>
78
+ <ref name="measurementtarget"/>
79
+ <ref name="specification"/>
80
+ <ref name="verification"/>
81
+ <ref name="import"/>
82
+ <ref name="description"/>
83
+ </choice>
84
+ </zeroOrMore>
85
+ <optional>
86
+ <ref name="reqt_references"/>
87
+ </optional>
88
+ <zeroOrMore>
89
+ <choice>
90
+ <ref name="requirement"/>
91
+ <ref name="recommendation"/>
92
+ <ref name="permission"/>
93
+ </choice>
94
+ </zeroOrMore>
95
+ </define>
96
+ <define name="reqtitle">
97
+ <element name="title">
98
+ <ref name="FormattedString"/>
99
+ </element>
100
+ </define>
101
+ <define name="label">
102
+ <element name="label">
103
+ <text/>
104
+ </element>
105
+ </define>
106
+ <define name="subject">
107
+ <element name="subject">
108
+ <text/>
109
+ </element>
110
+ </define>
111
+ <define name="reqinherit">
112
+ <element name="inherit">
113
+ <text/>
114
+ </element>
115
+ </define>
116
+ <define name="measurementtarget">
117
+ <element name="measurement-target">
118
+ <ref name="RequirementSubpart"/>
119
+ </element>
120
+ </define>
121
+ <define name="specification">
122
+ <element name="specification">
123
+ <ref name="RequirementSubpart"/>
124
+ </element>
125
+ </define>
126
+ <define name="verification">
127
+ <element name="verification">
128
+ <ref name="RequirementSubpart"/>
129
+ </element>
130
+ </define>
131
+ <define name="import">
132
+ <element name="import">
133
+ <ref name="RequirementSubpart"/>
134
+ </element>
135
+ </define>
136
+ <define name="description">
137
+ <element name="description">
138
+ <ref name="RequirementSubpart"/>
139
+ </element>
140
+ </define>
141
+ <define name="reqt_references">
142
+ <element name="references">
143
+ <oneOrMore>
144
+ <ref name="bibitem"/>
145
+ </oneOrMore>
146
+ </element>
147
+ </define>
148
+ <define name="RequirementSubpart">
149
+ <optional>
150
+ <attribute name="type"/>
151
+ </optional>
152
+ <optional>
153
+ <attribute name="exclude">
154
+ <data type="boolean"/>
155
+ </attribute>
156
+ </optional>
157
+ <optional>
158
+ <attribute name="keep-with-next">
159
+ <data type="boolean"/>
160
+ </attribute>
161
+ </optional>
162
+ <optional>
163
+ <attribute name="keep-lines-together">
164
+ <data type="boolean"/>
165
+ </attribute>
166
+ </optional>
167
+ <oneOrMore>
168
+ <ref name="BasicBlock"/>
169
+ </oneOrMore>
170
+ </define>
171
+ <define name="ObligationType">
172
+ <choice>
173
+ <value>requirement</value>
174
+ <value>recommendation</value>
175
+ <value>permission</value>
176
+ </choice>
177
+ </define>
178
+ <define name="classification">
179
+ <element name="classification">
180
+ <ref name="classification_tag"/>
181
+ <ref name="classification_value"/>
182
+ </element>
183
+ </define>
184
+ <define name="classification_tag">
185
+ <element name="tag">
186
+ <text/>
187
+ </element>
188
+ </define>
189
+ <define name="classification_value">
190
+ <element name="value">
191
+ <text/>
192
+ </element>
193
+ </define>
194
+ </grammar>
@@ -47,6 +47,10 @@ module RelatonW3c
47
47
  #
48
48
  def fetch
49
49
  query.each { |sl| save_doc DataParser.parse(sl, self) }
50
+ Dir[File.expand_path("../../withdrawn/*", __dir__)].each do |file|
51
+ xml = File.read file, encoding: "UTF-8"
52
+ save_doc RelatonBib::BibXMLParser.parse(xml)
53
+ end
50
54
  end
51
55
 
52
56
  #
@@ -55,7 +55,7 @@ module RelatonW3c
55
55
  # @return [RelatonBib::TypedTitleStringCollection] title
56
56
  #
57
57
  def parse_title
58
- t = RelatonBib::TypedTitleString.new title: @sol.title.to_s
58
+ t = RelatonBib::TypedTitleString.new content: @sol.title.to_s
59
59
  RelatonBib::TypedTitleStringCollection.new [t]
60
60
  end
61
61
 
@@ -60,7 +60,7 @@ module RelatonW3c
60
60
  # @param date [String]
61
61
  # @return [TrueClass, FalseClass]
62
62
  def type_date_filter(hit, type, date) # rubocop:disable Metrics/AbcSize
63
- if type && hit["type"] != short_type(type) || date && hit["date"] != date
63
+ if (type && hit["type"] != short_type(type)) || (date && hit["date"] != date)
64
64
  history = get_history hit, type, date
65
65
  return false unless history.any?
66
66
 
@@ -1,3 +1,3 @@
1
1
  module RelatonW3c
2
- VERSION = "1.9.1".freeze
2
+ VERSION = "1.9.5".freeze
3
3
  end
@@ -5,11 +5,21 @@ require "net/http"
5
5
  module RelatonW3c
6
6
  # Class methods for search W3C standards.
7
7
  class W3cBibliography
8
+ SOURCE = "https://raw.githubusercontent.com/relaton/relaton-data-w3c/main/data/"
9
+
8
10
  class << self
9
11
  # @param text [String]
10
12
  # @return [RelatonW3c::HitCollection]
11
- def search(text)
12
- HitCollection.new text
13
+ def search(text) # rubocop:disable Metrics/MethodLength
14
+ # HitCollection.new text
15
+ file = text.sub(/^W3C\s/, "").gsub(/[\s,:\/]/, "_").squeeze("_").upcase
16
+ url = "#{SOURCE}#{file}.yaml"
17
+ resp = Net::HTTP.get_response(URI.parse(url))
18
+ return unless resp.code == "200"
19
+
20
+ hash = YAML.safe_load resp.body
21
+ item_hash = ::RelatonW3c::HashConverter.hash_to_bib(hash)
22
+ ::RelatonW3c::W3cBibliographicItem.new(**item_hash)
13
23
  rescue SocketError, Timeout::Error, Errno::EINVAL, Errno::ECONNRESET,
14
24
  EOFError, Net::HTTPBadResponse, Net::HTTPHeaderSyntaxError,
15
25
  Net::ProtocolError, Errno::ETIMEDOUT
@@ -24,11 +34,14 @@ module RelatonW3c
24
34
  def get(ref, _year = nil, _opts = {})
25
35
  warn "[relaton-w3c] (\"#{ref}\") fetching..."
26
36
  result = search(ref)
27
- return unless result.any?
37
+ unless result
38
+ warn "[relaton-w3c] (\"#{ref}\") not found."
39
+ return
40
+ end
28
41
 
29
- ret = result.first.fetch
30
- warn "[relaton-w3c] (\"#{ref}\") found #{ret.title.first.title.content}"
31
- ret
42
+ # ret = result.first.fetch
43
+ warn "[relaton-w3c] (\"#{ref}\") found #{result.title.first.title.content}"
44
+ result
32
45
  end
33
46
  end
34
47
  end
data/relaton_w3c.gemspec CHANGED
@@ -40,6 +40,6 @@ Gem::Specification.new do |spec|
40
40
  spec.add_dependency "linkeddata", "~> 3.1.0"
41
41
  spec.add_dependency "mechanize", "~> 2.8.0"
42
42
  spec.add_dependency "rdf", "~> 3.1.0"
43
- spec.add_dependency "relaton-bib", ">= 1.9.0"
43
+ spec.add_dependency "relaton-bib", ">= 1.9.19"
44
44
  spec.add_dependency "sparql", "~> 3.1.0"
45
45
  end
@@ -0,0 +1,16 @@
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
+
@@ -0,0 +1,32 @@
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 Recommendation" value="REC-DSig-label"/>
32
+ </reference>
@@ -0,0 +1,26 @@
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 Note" value="P3P-rdfschema"/>
26
+ </reference>
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0" encoding='UTF-8'?>
2
+ <reference anchor="W3C.P3P" taret="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 Recommendation" value="REC-PICS-services"/>
38
+ </reference>
@@ -0,0 +1,43 @@
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 Recommendation" value="REC-PICS-labels"/>
43
+ </reference>
@@ -0,0 +1,38 @@
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 Recommendation" value="REC-PICSRules"/>
38
+ </reference>
@@ -0,0 +1,37 @@
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 Recommendation" value="REC-PICS-services"/>
37
+ </reference>
@@ -0,0 +1,22 @@
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>
@@ -0,0 +1,12 @@
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>
@@ -0,0 +1,31 @@
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
+
@@ -0,0 +1,20 @@
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>
@@ -0,0 +1,28 @@
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
+