-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathSAILDART.js
364 lines (345 loc) · 8.28 KB
/
SAILDART.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
{
"translatorID": "78c29166-3326-4660-92e7-eb1fb1aacda0",
"label": "SAILDART",
"creator": "Abe Jellinek",
"target": "^https?://(www\\.)?saildart\\.org/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2021-07-26 17:34:38"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2021 Abe Jellinek
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
let taglineRe = /perm filename ([^[]+)\[([^,]+),([^\]]+)\](\d*).+filedate ([^\s]+)/;
function detectWeb(doc, _url) {
let viewFrame = doc.querySelector('frame[name="view"]');
if (viewFrame) {
doc = viewFrame.contentWindow.document;
}
if (taglineRe.test(text(doc, 'div#tagline'))) {
return "computerProgram";
}
return false;
}
function doWeb(doc, url) {
let viewFrame = doc.querySelector('frame[name="view"]');
if (viewFrame) {
doc = viewFrame.contentWindow.document;
}
let item = new Zotero.Item('computerProgram');
let meta = text(doc, 'div#tagline').match(taglineRe);
let [, title, project, owner, rev, date] = meta;
item.title = title;
item.seriesTitle = project;
item.creators.push(mapUsername(owner));
item.versionNumber = rev;
item.date = date; // already in ISO form
item.attachments.push({
title: 'Snapshot',
document: doc
});
item.url = url;
item.company = 'Stanford Artificial Intelligence Laboratory';
item.archive = 'SAILDART';
item.complete();
}
function mapUsername(username) {
let mapping = {
LCS: "Leland Smith",
JMC: "John McCarthy",
RWW: "Richard Weyhrauch",
CLT: "Carolyn Talcott",
DEK: "Don Knuth",
LCW: "Curt Widdoes",
LES: "Les Earnest",
JAM: "Andy Moorer",
TVR: "Tovar",
ZM: "Zohar Manna",
RFN: "Rosemary F. Napier",
HPM: "Hans Moravec",
REM: "Robert Maas",
FWH: "Friedrich VonHenke",
RPG: "Richard P. Gabriel",
JMG: "John Grey",
TOB: "Tom Binford",
MUS: "John M. Chowning",
ME: "Martin Frost",
GFS: "George Schnurle",
PN: "Peter Nye",
SEK: "Scott Kim",
ALS: "Arthur Samuel",
ARK: "Arthur Keller",
AVB: "Andy Bechtolsheim",
REF: "Bob Filman",
BGB: "Bruce Baumgart",
TW: "Terry Winograd",
MSM: "Shahid Mujtaba",
KRD: "Randy Davis",
PAM: "Paul Martin",
PW: "Paul Wieneke",
DEW: "David E. Wilkins",
GHB: "Garrett Bowles",
DCO: "Derek Oppen",
EJG: "Erik Gilbert",
ROD: "Rodney A. Brooks",
TED: "Ted Panofsky",
BLF: "Bill Faught",
DGL: "Garreth Loy",
MMM: "Mike McNabb",
YM: "Yonatan Malachi",
DRB: "David Barstow",
JK: "Jussi Ketonen",
REG: "Ralph Gorin",
RDG: "Russell Greiner",
WP: "Wolfgang Polak",
JBR: "Jeff Rubin",
JLS: "Juan Ludlow",
BPM: "Brian McCune",
PMF: "Mike Farmwald",
PHY: "Phyllis Winkler",
MUZ: "Loren Rush",
CG: "Chris Goad",
JP: "Jorge Phillips",
JJ: "Jerrold Ginsparg",
JOS: "Julius Smith",
DAV: "Dave Smith",
DCL: "David Luckham",
DPB: "Denny Brown",
ARG: "Ron Goldman",
RBA: "Rosemary Brock",
LYN: "Lynne Toribara",
JJC: "John J. Craig",
SUZ: "Nori Suzuki",
JJW: "Joe Weening",
AJT: "Arthur Thomas",
HHB: "Harlyn Baker",
JRA: "John Allen",
JED: "Jim Davidson",
DBL: "Doug Lenat",
SMG: "Steven German",
BH: "Brian Harvey",
KMC: "Ken Colby",
DLO: "David Lowe",
MJC: "Mike Clancy",
PDQ: "Lynn Quam",
RHT: "Russ Taylor",
RKN: "Ram Nevatia",
JB: "Juan Bulnes-Rozas",
JJM: "Jorge Morales",
RCB: "Bob Bolles",
WD: "Whit Diffie",
DON: "Don Woods",
MJH: "Jo Hannah",
BIS: "Barry Soroka",
DWP: "Dave Poole",
TAG: "Tom Gafford",
FC: "Frederick Chow",
DBG: "Don Gennery",
ND: "Nachum Dershowitz",
BRG: "John Berger",
BES: "Bruce Shimano",
RDA: "Dave Arnold",
ROB: "Robert Poor",
HYS: "Yung Shen",
FML: "Frank Liang",
EK: "Elaine Kant",
MFB: "Martin Brooks",
HJS: "Hanan Samet",
RAK: "Dick Karp",
MRC: "Mark Crispin",
NWD: "David Siegel",
DES: "David Shaw",
AH: "Annette Herskovits",
KIC: "Kicha Ganapathy",
MLM: "Mitch Model",
JJK: "Jonathan King",
RV: "Richard Vistnes",
H: "Jack Holloway",
EHS: "Bridge Stuart",
GIO: "Gio Wiederhold",
PB: "Peter Blicher",
RF: "Raphael Finkel",
DBA: "Bruce Anderson",
JWG: "John Gordon",
JRL: "Jim Low",
JC: "John Chowning",
NJM: "Neil Miller",
BLB: "Bruce Bullock",
GLB: "Gianluigi Bellin",
DRF: "David Fuchs",
AAM: "Allan A Miller",
RSF: "Ross Finlayson",
OK: "Oussama Khatib",
SJF: "Shel Finkelstein",
RWG: "Bill Gosper",
RPH: "Dick Helliwell",
SL: "Sidney Liebes",
KIP: "Kip Sheeline",
ML: "Michael R. Lowry",
WLS: "Bill Scherlis",
LIS: "Louis Steinberg",
JKS: "Ken Salisbury",
ROZ: "Martin Morf",
SGK: "Stan Kugell",
SJG: "Matthew Ginsberg",
SJW: "Stephen Westfold",
BIL: "Bill Schottstaedt",
JFS: "Joachim Schreiber",
JRD: "Jacques Desarmenie",
STT: "Steve Tappel",
BO: "Bo Eross",
DCS: "Dan Swinehart",
TM: "Tom McWilliams",
LTP: "Luis Trabb-Pardo",
HWC: "Hon Wah Chin",
DML: "David Levy",
PMP: "Phil Petit",
RCP: "Roger Parkison",
CJR: "Charles Rieger",
JMS: "John Strawn",
KS: "Ken Shoemake",
JDH: "John Hobby",
RXM: "Rick McWilliams",
UW: "Bill Menkin",
LEE: "Dan Lee",
JOE: "Joe Zingheim",
YYY: "Yoram Yakimovsky",
PAT: "Patte Wood",
TJW: "Todd Wagner",
RWF: "Robert W. Floyd",
CGN: "Greg Nelson",
RSC: "Corky Cartwright",
PAW: "Patte Wood",
MWK: "Mark Kahrs",
MA: "Martin Abadi",
PTZ: "Polle Zellweger",
HJL: "Howard Larsen",
MAS: "Marianne Siroker",
MLB: "Marc Lebrun",
VDS: "Vic Scheinman",
JEG: "Johannes Goebel",
JRM: "Jan Mattox",
IAZ: "Ignacio Zabala-Salelles",
LOU: "Lou Paul",
AB: "Avron Barr",
ELM: "Ed McGuire",
LGC: "Lewis Creary",
REP: "Richard Pattis",
NMG: "Neil Goldman",
CCG: "Cordell Green",
MFP: "Michael Plass",
CJS: "Connie Stanley",
RP: "Robert Poor",
JRG: "John C. Gilbert",
FRM: "Dick Moore",
BRP: "Bruce Pennycook",
GFF: "Geoff Goodfellow",
YOM: "Yoram O. Moses",
LMM: "Larry Masinter",
BG: "Bill Glassmire",
MAL: "Malcolm Newey",
KKP: "Karl Pingle",
RLD: "Robert Drysdale",
YAW: "Yorick Wilks",
DMC: "David M. Chelberg",
RJB: "Richard Beigel",
SM: "Scott McGregor"
};
let fullName = mapping[username];
if (fullName) {
return ZU.cleanAuthor(fullName, 'programmer');
}
else {
return {
lastName: username,
creatorType: 'programmer',
fieldMode: 1
};
}
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://www.saildart.org/ERRATA.TEX[TEX,DEK]33",
"items": [
{
"itemType": "computerProgram",
"title": "ERRATA.TEX",
"creators": [
{
"firstName": "Don",
"lastName": "Knuth",
"creatorType": "programmer"
}
],
"date": "1985-04-17",
"archive": "SAILDART",
"company": "Stanford Artificial Intelligence Laboratory",
"libraryCatalog": "SAILDART",
"seriesTitle": "TEX",
"url": "https://www.saildart.org/ERRATA.TEX[TEX,DEK]33",
"versionNumber": "33",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.saildart.org/CRAMM.SAI[PAT,LMM]",
"items": [
{
"itemType": "computerProgram",
"title": "CRAMM.SAI",
"creators": [
{
"firstName": "Larry",
"lastName": "Masinter",
"creatorType": "programmer"
}
],
"date": "1973-09-03",
"archive": "SAILDART",
"company": "Stanford Artificial Intelligence Laboratory",
"libraryCatalog": "SAILDART",
"seriesTitle": "PAT",
"url": "https://www.saildart.org/CRAMM.SAI[PAT,LMM]",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/