-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathlocal-biblio.js
121 lines (120 loc) · 3.7 KB
/
local-biblio.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
var conversions = [
["http://w3c.github.io/csvw/syntax/", "http://www.w3.org/TR/2015/REC-tabular-data-model-20151217/"],
["http://w3c.github.io/csvw/csv2rdf/", "http://www.w3.org/TR/2015/REC-csv2rdf-20151217/"],
["http://w3c.github.io/csvw/csv2json/", "http://www.w3.org/TR/2015/REC-csv2json-20151217/"],
["http://w3c.github.io/csvw/metadata/", "http://www.w3.org/TR/2015/REC-tabular-metadata-20151217/"],
["http://w3c.github.io/csvw/use-cases-and-requirements/", "http://www.w3.org/TR/2016/NOTE-csvw-ucr-20160225/"],
["http://w3c.github.io/csvw/primer/", "http://www.w3.org/TR/2016/NOTE-tabular-data-primer-20160225/"],
["http://w3c.github.io/csvw/html-note/", "http://www.w3.org/TR/2016/NOTE-csvw-html-20160225/"]
];
var localBibliography = {
"csvw-html": {
"authors": [
"Gregg Kellogg"
],
"title": "Embedding Tabular Metadata in HTML",
"href" : "http://www.w3.org/TR/2016/NOTE-csvw-html-20160225/",
"rawDate": "2016-02-25",
"status" : "NOTE",
"publisher": "W3C"
},
"tabular-data-primer": {
"authors": [
"Jeni Tennison"
],
"title": "CSV on the Web: A Primer",
"href" : "http://www.w3.org/TR/2016/NOTE-tabular-data-primer-20160225/",
"rawDate": "2016-02-25",
"status" : "NOTE",
"publisher": "W3C"
},
"tabular-data-model": {
"authors": [
"Jeni Tennison",
"Gregg Kellogg"
],
"title": "Model for Tabular Data and Metadata on the Web",
"href" : "http://www.w3.org/TR/2015/REC-tabular-data-model-20151217/",
"rawDate": "2015-12-17",
"status" : "REC",
"publisher": "W3C"
},
"tabular-metadata": {
"authors": [
"Jeni Tennison",
"Gregg Kellogg"
],
"title": "Metadata Vocabulary for Tabular Data",
"href" : "http://www.w3.org/TR/2015/REC-tabular-metadata-20151217/",
"rawDate": "2015-12-17",
"status" : "REC",
"publisher": "W3C"
},
"csv2json": {
"authors": [
"Jeremy Tandy",
"Ivan Herman"
],
"title": "Generating JSON from Tabular Data on the Web",
"href" : "http://www.w3.org/TR/2015/REC-csv2json-20151217/",
"rawDate": "2015-12-17",
"status" : "REC",
"publisher": "W3C"
},
"csv2rdf": {
"authors": [
"Jeremy Tandy",
"Ivan Herman",
"Gregg Kellogg"
],
"title": "Generating RDF from Tabular Data on the Web",
"href" : "http://www.w3.org/TR/2015/REC-csv2rdf-20151217/",
"rawDate": "2015-12-17",
"status" : "REC",
"publisher": "W3C"
},
"csvw-context": {
"authors": [
"Gregg Kellogg"
],
"title": "Metadata Vocabulary for Tabular Data",
"href" : "http://www.w3.org/ns/csvw",
"publisher": "W3C"
},
"csvw-tests": {
"authors": [
"Gregg Kellogg"
],
"title": "CSVW Test Suite",
"href" : "http://www.w3.org/ns/csvw",
"publisher": "W3C"
},
"EBNF-NOTATION" : {
"authors" : [
"Tim Bray",
"Jean Paoli",
"C. Michael Sperberg-McQueen",
"Eve Maler",
"François Yergau"
],
"title" : "EBNF Notation",
"rawDate" : "2008-11-26",
"status" : "REC",
"publisher" : "W3C",
"href" : "http://www.w3.org/TR/xml/#sec-notation"
},
"Knuth" : {
"author" : [
"Donald E. Knuth"
],
"title" : "The Art of Computer Programming Volume 1: Fundamental Algorithms (3rd ed.)",
"publisher" : "Addison-Wesley Professional",
"rawDate" : "1997-11-14"
},
"DOAP": {
"authors": ["Ed Dumbill"],
"title": "Description of a Project",
"status": "Community Specification",
"href": "https://github.com/edumbill/doap/wiki"
}
};