forked from mrBliss/cpl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbibliography.js
177 lines (177 loc) · 6.57 KB
/
bibliography.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
var entries = [
new Book('Flanagan', {
authors: [['Flanagan', 'David']],
title: 'JavaScript: The Definitive Guide',
year: 2011,
edition: 6,
publisher: "O'Reilly Media",
address: 'Sebastopol, CA'
}),
new Book('Crockford', {
authors: [['Crockford', 'Douglas']],
title: 'JavaScript: The Good Parts',
year: 2008,
edition: 1,
publisher: "O'Reilly Media",
address: 'Sebastopol, CA'
}),
new Book('SICP', {
authors: [['Abelson', 'Harold'], ['Sussman', 'Gerald', 'Jay']],
title: 'Structure and Interpretation of Computer Programs',
year: 1984,
edition: 1,
publisher: 'MIT Press',
address: 'Cambridge, MA'
}),
new Wikipedia('JSHistory', {
title: 'JavaScript History',
retrieved: 'November 3, 2012',
url: 'http://en.wikipedia.org/wiki/JavaScript#History'
}),
new Wikipedia('ECMAScript', {
title: 'ECMAScript',
retrieved: 'November 3, 2012',
url: 'http://en.wikipedia.org/wiki/ECMAScript'
}),
new Wikipedia('ECMAScriptSyntax', {
title: 'ECMAScript Syntax',
retrieved: 'November 3, 2012',
url: 'http://en.wikipedia.org/wiki/ECMAScript_syntax'
}),
new Wikipedia('PrototypeBProg', {
title: 'Prototype-based programming',
retrieved: 'November 1, 2012',
url: 'http://en.wikipedia.org/wiki/Prototype-based_programming'
}),
new Website('JSUses', {
siteName: 'Dev.Opera',
year: 2009,
title: 'What can you do with JavaScript?',
retrieved: 'November 3, 2012',
url: 'http://dev.opera.com/articles/view/javascript-uses/'
}),
new Website('JSUsage', {
siteName: 'Dev.Opera',
year: 2008,
title: 'MAMA: Key findings',
retrieved: 'November 3, 2012',
url: 'http://dev.opera.com/articles/view/mama-key-findings/'
}),
new Website('BriefHistoryJS', {
siteName: 'About.com',
year: null,
title: 'A Brief History of Javascript',
retrieved: 'November 3, 2012',
url: 'http://javascript.about.com/od/reference/a/history.htm'
}),
new Website('JavaScriptAndJScript', {
siteName: 'About.com',
year: null,
title: 'JavaScript and JScript: What\'s the Difference?',
retrieved: 'November 3, 2012',
url: 'http://javascript.about.com/od/reference/a/jscript.htm'
}),
new Blog('Misunderstood', {
authors: [['Crockford', 'Douglas']],
published: '2001',
title: 'JavaScript: The World\'s Most Misunderstood Programming Language',
url: 'http://javascript.crockford.com/javascript.html'
}),
new Blog('Closures', {
authors: [['Cornford', 'Richard']],
published: 'March, 2004',
title: 'Javascript Closures',
url: 'http://jibbering.com/faq/notes/closures/'
}),
new Blog('5UsefulFunctions', {
authors: [['De Rosa', 'Aurelio']],
published: 'October 15, 2012',
title: 'Five Useful Functions Missing in JavaScript',
url: 'http://jspro.com/raw-javascript/5-useful-functions-missing-in-javascript/'
}),
new Blog('CustomEvents', {
authors: [['Buckler', 'Craig']],
published: 'October 10, 2012',
title: 'How to Create Custom Events in JavaScript',
url: 'http://jspro.com/raw-javascript/how-to-create-custom-events-in-javascript/'
}),
new Blog('ModularDesign', {
authors: [['Edwards', 'James']],
published: 'October 15, 2012',
title: 'Modular Design Patterns: Private, Privileged, and Protected Members in JavaScript',
url: 'http://jspro.com/raw-javascript/modular-design-patterns-in-javascript/'
}),
new Website('JSSemantics', {
siteName: 'WebScanNotes.com',
year: 2012,
title: 'Javascript Semantics for Computer Scientists',
retrieved: 'November 3, 2012',
url: 'http://webscannotes.com/2012/06/19/javascript-semantics-for-computer-scientists-part-1-variables-and-scope/'
}),
new Blog('FakeOperatorOverloading', {
authors: [['Rauschmayer', 'Axel']],
published: 'December 17, 2011',
title: 'Fake operator overloading in JavaScript',
url: 'http://www.2ality.com/2011/12/fake-operator-overloading.html'
}),
new Blog('LittleJSer', {
authors: [['Crockford', 'Douglas']],
published: null,
title: 'The Little JavaScripter',
url: 'http://crockford.com/javascript/little.html'
}),
new Blog('JSHistory2', {
authors: [['Wilton-Jones', 'Mark']],
published: null,
title: 'JavaScript History',
url: 'http://www.howtocreate.co.uk/jshistory.html'
}),
new Website('JSON', {
siteName: 'JSON',
year: null,
title: 'Introducing JSON',
url: 'http://www.json.org'
}),
new Blog('ArgsJSOddity', {
authors: [['Tetlaw', 'Andrew']],
published: 'November 11, 2008',
title: 'arguments: A JavaScript Oddity',
url: 'http://www.sitepoint.com/arguments-a-javascript-oddity/'
}),
new Blog('JSExecutionBrowserLimits', {
authors: [['Buckler', 'Craig']],
published: 'December 1, 2010',
title: 'JavaScript Execution and Browser Limits',
url: 'http://www.sitepoint.com/javascript-execution-browser-limits/'
}),
new Blog('Popularity', {
authors: [['Eich', 'Brendan']],
published: 'April 3, 2008',
title: 'Popularity',
url: 'https://brendaneich.com/2008/04/popularity/'
}),
new Blog('BriefHistory', {
authors: [['Eich', 'Brendan']],
published: 'July 21, 2010',
title: 'A Brief History of JavaScript',
url: 'https://brendaneich.com/2010/07/a-brief-history-of-javascript/'
}),
new Blog('JSTutorial', {
authors: [['Willison', 'Simon']],
published: 'March 7, 2006',
title: 'A re-introduction to JavaScript (JS Tutorial)',
url: 'https://developer.mozilla.org/en-US/docs/JavaScript/A_re-introduction_to_JavaScript'
}),
new Website('Arguments', {
siteName: 'Mozilla Developer Network',
year: 2012,
title: 'JavaScript - Reference - Functions and function scope - arguments',
retrieved: 'November 3, 2012',
url: 'https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Functions_and_function_scope/arguments'
}),
new Website('V8Intro', {
siteName: 'Google Developers',
year: 2012,
title: 'V8 Introduction',
url: 'https://developers.google.com/v8/intro'
})];