relaton-w3c 1.9.2 → 1.9.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +2 -0
  3. data/README.adoc +70 -72
  4. data/data/reference.W3C.CR-rdf-schema.xml +16 -0
  5. data/data/reference.W3C.DSig-label.xml +32 -0
  6. data/data/reference.W3C.P3P-rdfschema.xml +26 -0
  7. data/data/reference.W3C.P3P.xml +38 -0
  8. data/data/reference.W3C.PICS-labels.xml +43 -0
  9. data/data/reference.W3C.PICS-rules.xml +38 -0
  10. data/data/reference.W3C.PICS-services.xml +37 -0
  11. data/data/reference.W3C.REC-RUBY.xml +22 -0
  12. data/data/reference.W3C.REC-XHTML.xml +12 -0
  13. data/data/reference.W3C.REC-rdf-syntax.xml +31 -0
  14. data/data/reference.W3C.REC-xml-1998.xml +20 -0
  15. data/data/reference.W3C.REC-xml-names.xml +28 -0
  16. data/data/reference.W3C.REC-xml.xml +35 -0
  17. data/data/reference.W3C.REC-xmlenc-core.xml +23 -0
  18. data/data/reference.W3C.REC-xmlschema-1.xml +23 -0
  19. data/data/reference.W3C.REC-xmlschema-2.xml +17 -0
  20. data/data/reference.W3C.daml-oil-reference.xml +39 -0
  21. data/data/reference.W3C.soap11.xml +56 -0
  22. data/data/reference.W3C.soap12-part1.xml +38 -0
  23. data/data/reference.W3C.soap12-part2.xml +38 -0
  24. data/data/reference.W3C.xkms.xml +50 -0
  25. data/data/reference.W3C.xml-c14n.xml +15 -0
  26. data/data/reference.W3C.xmldsig-core.xml +26 -0
  27. data/data/reference.W3C.xmlenc-core.xml +20 -0
  28. data/data/reference.W3C.xpath.xml +22 -0
  29. data/grammars/isodoc.rng +2106 -0
  30. data/grammars/reqt.rng +194 -0
  31. data/lib/relaton_w3c/data_fethcer.rb +4 -0
  32. data/lib/relaton_w3c/hit_collection.rb +1 -1
  33. data/lib/relaton_w3c/version.rb +1 -1
  34. data/lib/relaton_w3c/w3c_bibliography.rb +19 -6
  35. data/relaton_w3c.gemspec +1 -1
  36. metadata +31 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '002659ed1af14b978e668f455efd5ed00e2b8c9c40924fccf4b1974cdc05c760'
4
- data.tar.gz: 2ad63f43fb3d37340dcd37bd4eb86d1a27ed6929887a2adfa27e982f23dca28e
3
+ metadata.gz: db2d2cf6329e829e43950fbf7ecee8086f7568797fea42040e3a0cefd5e3029a
4
+ data.tar.gz: 2c28c079df6d7d84deeb38abfb8aff9dc358786caa6b07f0a06bd39e46be0ad1
5
5
  SHA512:
6
- metadata.gz: 798ee1910a31ef612c6cac99a3f8e248e222144d4453dd30ee31a1fd67a210574b09df63a7574950c72b2dad53f9d90bd184217ffbcf4c3ac435ebee06f5933d
7
- data.tar.gz: 0dac6e4edce276118c767dfa64310d7468377bee4d8d0208fbe702c6dc0efe4813631e4b9e9413b09215257c8d3911cabd951ddce7dde6eb7367d3026f60ae76
6
+ metadata.gz: dfdf8eea72bfbbe5e02309d7cc86e4b1d392d3d636797faaf9550d1e293bad3dee26c162a1f180f1f6815f87643198e2a3a26fced9e32786f948b10b06ea782c
7
+ data.tar.gz: fc0d81a938cc8dda2a20779504a37e26b326a4889b31be42de788f773291f75686c67a13b644c092b03b00de7a57fb9032945d9c8e00a5d127689e4d584fe3f7
data/.rubocop.yml CHANGED
@@ -2,6 +2,8 @@
2
2
  # https://github.com/riboseinc/oss-guides
3
3
  # All project-specific additions and overrides should be specified in this file.
4
4
 
5
+ require: rubocop-rails
6
+
5
7
  inherit_from:
6
8
  - https://raw.githubusercontent.com/riboseinc/oss-guides/master/ci/rubocop.yml
7
9
  AllCops:
data/README.adoc CHANGED
@@ -30,11 +30,10 @@ Or install it yourself as:
30
30
  require 'relaton_w3c'
31
31
  => true
32
32
 
33
- hits = RelatonW3c::W3cBibliography.search("W3C JSON-LD 1.1")
34
- => <RelatonW3c::HitCollection:0x007f93b5e4ff48 @ref=W3C JSON-LD 1.1 @fetched=false>
35
-
36
- item = hits[0].fetch
37
- => #<RelatonW3c::W3cBibliographicItem:0x007f93a58a0670
33
+ item = RelatonW3c::W3cBibliography.get "W3C REC-json-ld11-20200716"
34
+ [relaton-w3c] ("W3C REC-json-ld11-20200716") fetching...
35
+ [relaton-w3c] ("W3C REC-json-ld11-20200716") found JSON-LD 1.1
36
+ => #<RelatonW3c::W3cBibliographicItem:0x00007fc4ea03c6c0
38
37
  ...
39
38
  ----
40
39
 
@@ -43,16 +42,51 @@ item = hits[0].fetch
43
42
  [source,ruby]
44
43
  ----
45
44
  item.to_xml
46
- => "<bibitem id="CR-json-ld11-20200316" type="standard">
47
- <fetched>2020-04-07</fetched>
48
- <title type="main" format="text/plain" language="en" script="Latn">JSON-LD 1.1</title>
49
- <title format="text/plain" language="en" script="Latn">A JSON-based Serialization for Linked Data</title>
50
- <uri type="src">https://www.w3.org/TR/2020/CR-json-ld11-20200316/</uri>
51
- <date type="published">
52
- <on>2020</on>
53
- </date>
54
- ...
55
- </bibitem>"
45
+ => "<bibitem id="W3CREC-json-ld11-20200716" type="standard">
46
+ <fetched>2021-11-20</fetched>
47
+ <title format="text/plain">JSON-LD 1.1</title>
48
+ <uri type="src">https://www.w3.org/TR/2020/REC-json-ld11-20200716/</uri>
49
+ <docidentifier type="W3C">W3C REC-json-ld11-20200716</docidentifier>
50
+ <docnumber>REC-json-ld11-20200716</docnumber>
51
+ <date type="published">
52
+ <on>2020-07-16</on>
53
+ </date>
54
+ <contributor>
55
+ <role type="editor"/>
56
+ <person>
57
+ <name>
58
+ <completename language="en" script="Latn">Dave Longley</completename>
59
+ </name>
60
+ </person>
61
+ </contributor>
62
+ <contributor>
63
+ <role type="editor"/>
64
+ <person>
65
+ <name>
66
+ <completename language="en" script="Latn">Gregg Kellogg</completename>
67
+ </name>
68
+ </person>
69
+ </contributor>
70
+ <contributor>
71
+ <role type="editor"/>
72
+ <person>
73
+ <name>
74
+ <completename language="en" script="Latn">Pierre-Antoine Champin</completename>
75
+ </name>
76
+ </person>
77
+ </contributor>
78
+ <language>en</language>
79
+ <script>Latn</script>
80
+ <relation type="obsoletes">
81
+ <bibitem>
82
+ <formattedref format="text/plain">W3C PR-json-ld11-20200507</formattedref>
83
+ </bibitem>
84
+ </relation>
85
+ <series>
86
+ <title format="text/plain">W3C REC</title>
87
+ <number>REC-json-ld11-20200716</number>
88
+ </series>
89
+ </bibitem>"
56
90
  ----
57
91
 
58
92
  With argument `bibdata: true` it ouputs XML wrapped by `bibdata` element and adds flavour `ext` element.
@@ -61,58 +95,19 @@ With argument `bibdata: true` it ouputs XML wrapped by `bibdata` element and add
61
95
  ----
62
96
  item.to_xml bibdata: true
63
97
  => "<bibdata type="standard">
64
- <fetched>2020-04-07</fetched>
65
- <title type="main" format="text/plain" language="en" script="Latn">JSON-LD 1.1</title>
66
- <title format="text/plain" language="en" script="Latn">A JSON-based Serialization for Linked Data</title>
67
- <uri type="src">https://www.w3.org/TR/2020/CR-json-ld11-20200316/</uri>
68
- <date type="published">
69
- <on>2020</on>
70
- </date>
71
- ...
72
- <ext>
73
- <doctype>candidateRecommendation</doctype>
74
- </ext>
75
- </bibdata>"
76
- ----
77
-
78
- === Get document by title
79
- [source,ruby]
80
- ----
81
- RelatonW3c::W3cBibliography.get "W3C JSON-LD 1.1"
82
- [relaton-w3c] ("W3C JSON-LD 1.1") fetching...
83
- [relaton-w3c] ("W3C JSON-LD 1.1") found JSON-LD 1.1
84
- => #<RelatonW3c::W3cBibliographicItem:0x007f93b655bb48
85
- ...
86
- ----
87
-
88
- === Get document by title and type
89
- [source,ruby]
90
- ----
91
- RelatonW3c::W3cBibliography.get "W3C Candidate Recommendation JSON-LD 1.1"
92
- [relaton-w3c] ("W3C Candidate Recommendation JSON-LD 1.1") fetching...
93
- [relaton-w3c] ("W3C Candidate Recommendation JSON-LD 1.1") found JSON-LD 1.1
94
- => #<RelatonW3c::W3cBibliographicItem:0x007f9357199b90
95
- ...
96
- ----
97
-
98
- === Get document by title and short type
99
- [source,ruby]
100
- ----
101
- RelatonW3c::W3cBibliography.get "W3C CR JSON-LD 1.1"
102
- [relaton-w3c] ("W3C CR JSON-LD 1.1") fetching...
103
- [relaton-w3c] ("W3C CR JSON-LD 1.1") found JSON-LD 1.1
104
- => #<RelatonW3c::W3cBibliographicItem:0x007f93b6d37dd0
105
- ...
106
- ----
107
-
108
- === Get document by title, type, and date
109
- [source,ruby]
110
- ----
111
- RelatonW3c::W3cBibliography.get "W3C WD JSON-LD 1.1 2019-10-18"
112
- [relaton-w3c] ("W3C WD JSON-LD 1.1 2019-10-18") fetching...
113
- [relaton-w3c] ("W3C WD JSON-LD 1.1 2019-10-18") found JSON-LD 1.1
114
- => #<RelatonW3c::W3cBibliographicItem:0x007f9345a198b8
115
- ...
98
+ <fetched>2021-11-20</fetched>
99
+ <title format="text/plain">JSON-LD 1.1</title>
100
+ <uri type="src">https://www.w3.org/TR/2020/REC-json-ld11-20200716/</uri>
101
+ <docidentifier type="W3C">W3C REC-json-ld11-20200716</docidentifier>
102
+ <docnumber>REC-json-ld11-20200716</docnumber>
103
+ ...
104
+ <ext>
105
+ <doctype>recommendation</doctype>
106
+ <editorialgroup>
107
+ <technical-committee>JSON-LD Working Group</technical-committee>
108
+ </editorialgroup>
109
+ </ext>
110
+ </bibdata>"
116
111
  ----
117
112
 
118
113
  === Typed links
@@ -121,8 +116,11 @@ Each W3C document has `src` type link.
121
116
 
122
117
  [source,ruby]
123
118
  ----
124
- item.link
125
- => [#<RelatonBib::TypedUri:0x00007fc533ed4040 @content=#<Addressable::URI:0xcc22c URI:https://www.w3.org/TR/2020/REC-json-ld11-20200716/>, @type="src">]
119
+ item.link.first.type
120
+ => "src"
121
+
122
+ item.link.first.content
123
+ => #<Addressable::URI:0x75634 URI:https://www.w3.org/TR/2020/REC-json-ld11-20200716/>
126
124
  ----
127
125
 
128
126
  === Create bibliographic item from XML
@@ -146,20 +144,20 @@ bib_hash = RelatonW3c::HashConverter.hash_to_bib hash
146
144
  [{:type=>"main", :content=>"JSON-LD 1.1", :language=>"en", :script=>"Latn", :format=>"text/plain"},
147
145
  ...
148
146
 
149
- RelatonW3c::W3cBibliographicItem.new bib_hash
147
+ RelatonW3c::W3cBibliographicItem.new **bib_hash
150
148
  => #<RelatonW3c::W3cBibliographicItem:0x007f9381ec6a00
151
149
  ...
152
150
  ----
153
151
 
154
152
  === Fetch data
155
153
 
156
- There is a W3C dataset http://www.w3.org/2002/01/tr-automation/tr.rdf which can be converted into RelatonXML/BibXML/BibYAML formats.
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.
157
155
 
158
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.
159
157
  Arguments:
160
158
 
161
159
  - `output` - folder to save documents (default './data').
162
- - `format` - format in which the documents are saved. Possimle formats are: `yaml`, `xml`, `bibxml` (default `yaml`).
160
+ - `format` - format in which the documents are saved. Possible formats are: `yaml`, `xml`, `bibxml` (default `yaml`).
163
161
 
164
162
  [source,ruby]
165
163
  ----
@@ -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
+
@@ -0,0 +1,35 @@
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
+
@@ -0,0 +1,23 @@
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
+