forked from zotero/translators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Annual Reviews.js
282 lines (265 loc) · 9.18 KB
/
Annual Reviews.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
{
"translatorID": "5f22bd25-5b70-11e1-bb1d-c4f24aa18c1e",
"label": "Annual Reviews",
"creator": "Aurimas Vinckevicius and Abe Jellinek",
"target": "^https?://[^/]*annualreviews\\.org(:[\\d]+)?(?=/)[^?]*(/(toc|journal|doi)/|showMost(Read|Cited)Articles|doSearch)",
"minVersion": "3.0",
"maxVersion": "",
"priority": 150,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2021-09-14 18:37:45"
}
/**
Copyright (c) 2012-2021 Aurimas Vinckevicius and Abe Jellinek
This program 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.
This program 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 this program. If not, see
<http://www.gnu.org/licenses/>.
*/
// add using BibTex
function addByBibTex(doi, tags) {
var baseUrl = 'http://www.annualreviews.org';
var risRequest = baseUrl + '/action/downloadCitation';
var pdfUrl = baseUrl + '/doi/pdf/' + doi;
var postData = 'include=abs&direct=on&submit=Download+chapter+metadata&downloadFileName=citation'
+ '&format=bibtex' // bibtex
+ '&doi=' + encodeURIComponent(doi);
Zotero.Utilities.HTTP.doPost(risRequest, postData, function (text) {
var translator = Zotero.loadTranslator('import');
translator.setTranslator('9cb70025-a888-4a29-a210-93ec52da40d4'); // bibtex
translator.setString(text);
translator.setHandler('itemDone', function (obj, item) {
// title is sometimes in all caps
if (item.title == item.title.toUpperCase()) item.title = ZU.capitalizeTitle(item.title, true);
if (item.abstractNote) {
item.abstractNote = item.abstractNote.replace(/^...?Abstract/, "");
}
// add tags
if (tags) {
item.tags = tags;
}
// set PDF file
item.attachments = [{
url: pdfUrl,
title: 'Full Text PDF',
mimeType: 'application/pdf'
}];
item.complete();
});
translator.translate();
});
}
function detectWeb(doc, url) {
if (url.match(/\/doi\/(abs|full|pdf)\//)) {
return 'journalArticle';
}
else if (getSearchResults(doc, true)) {
return 'multiple';
}
return false;
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('.articleBoxWrapper');
if (!rows.length) rows = doc.querySelectorAll('.teaser');
for (let row of rows) {
let doi = attr(row, 'input[name="doi"]', 'value');
if (!doi) doi = ZU.cleanDOI(attr(row, 'h2 > a', 'href'));
let title = ZU.trimInternal(text(row, 'h2 > a'));
if (!doi || !title) continue;
if (checkOnly) return true;
found = true;
items[doi] = title;
}
return found ? items : false;
}
function doWeb(doc, url) {
if (detectWeb(doc, url) == "multiple") {
Zotero.selectItems(getSearchResults(doc, false), function (items) {
if (items) Object.keys(items).forEach(addByBibTex);
});
}
else {
scrape(doc, url);
}
}
function scrape(doc, url) {
var match = url.match(/\/(?:abs|full|pdf)\/([^?]+)/);
if (match) {
let tags = attr(doc, 'meta[name="dc.Subject"]', 'content')
.split('; ')
.map(tag => ({ tag }));
addByBibTex(match[1], tags);
}
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://www.annualreviews.org/action/doSearch?pageSize=20&sortBy=relevancy&text1=something&field1=AllField&logicalOpe1=and&text2=&field2=Abstract&logicalOpe2=and&text3=&field3=Title&filterByPub=all&publication=1449&AfterYear=&BeforeYear=",
"items": "multiple"
},
{
"type": "web",
"url": "http://www.annualreviews.org/journal/biophys",
"items": "multiple"
},
{
"type": "web",
"url": "http://www.annualreviews.org/toc/biophys/40/1",
"items": "multiple"
},
{
"type": "web",
"url": "http://www.annualreviews.org/action/showMostCitedArticles?topArticlesType=sinceInception&journalCode=biophys",
"items": "multiple"
},
{
"type": "web",
"url": "http://www.annualreviews.org/action/showMostReadArticles?topArticlesType=sinceInception&journalCode=biophys",
"items": "multiple"
},
{
"type": "web",
"url": "https://www.annualreviews.org/doi/abs/10.1146/annurev.biophys.29.1.545?prevSearch=&searchHistoryKey=",
"items": [
{
"itemType": "journalArticle",
"title": "Molecular Mechanisms Controlling Actin Filament Dynamics in Nonmuscle Cells",
"creators": [
{
"firstName": "Thomas D.",
"lastName": "Pollard",
"creatorType": "author"
},
{
"firstName": "Laurent",
"lastName": "Blanchoin",
"creatorType": "author"
},
{
"firstName": "R. Dyche",
"lastName": "Mullins",
"creatorType": "author"
}
],
"date": "2000",
"DOI": "10.1146/annurev.biophys.29.1.545",
"abstractNote": "We review how motile cells regulate actin filament assembly at their leading edge. Activation of cell surface receptors generates signals (including activated Rho family GTPases) that converge on integrating proteins of the WASp family (WASp, N-WASP, and Scar/WAVE). WASP family proteins stimulate Arp2/3 complex to nucleate actin filaments, which grow at a fixed 70° angle from the side of pre-existing actin filaments. These filaments push the membrane forward as they grow at their barbed ends. Arp2/3 complex is incorporated into the network, and new filaments are capped rapidly, so that activated Arp2/3 complex must be supplied continuously to keep the network growing. Hydrolysis of ATP bound to polymerized actin followed by phosphate dissociation marks older filaments for depolymerization by ADF/cofilins. Profilin catalyzes exchange of ADP for ATP, recycling actin back to a pool of unpolymerized monomers bound to profilin and thymosin-β4 that is poised for rapid elongation of new barbed ends.",
"extra": "PMID: 10940259",
"issue": "1",
"itemID": "doi:10.1146/annurev.biophys.29.1.545",
"libraryCatalog": "Annual Reviews",
"pages": "545-576",
"publicationTitle": "Annual Review of Biophysics and Biomolecular Structure",
"url": "https://doi.org/10.1146/annurev.biophys.29.1.545",
"volume": "29",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "ADF/cofilins"
},
{
"tag": "Arp2/3 complex"
},
{
"tag": "WASp"
},
{
"tag": "cell motility"
},
{
"tag": "profilin"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://www.annualreviews.org/toc/anchem/5/1",
"items": "multiple"
},
{
"type": "web",
"url": "https://www.annualreviews.org/toc/linguistics/current",
"items": "multiple"
},
{
"type": "web",
"url": "https://www.annualreviews.org/doi/abs/10.1146/annurev-linguistics-081720-111352",
"items": [
{
"itemType": "journalArticle",
"title": "Linguistics Then and Now: Some Personal Reflections",
"creators": [
{
"firstName": "Noam",
"lastName": "Chomsky",
"creatorType": "author"
}
],
"date": "2021",
"DOI": "10.1146/annurev-linguistics-081720-111352",
"abstractNote": "By mid-twentieth century, a working consensus had been reached in the linguistics community, based on the great achievements of preceding years. Synchronic linguistics had been established as a science, a “taxonomic” science, with sophisticated procedures of analysis of data. Taxonomic science has limits. It does not ask “why?” The time was ripe to seek explanatory theories, using insights provided by the theory of computation and studies of explanatory depth. That effort became the generative enterprise within the biolinguistics framework. Tensions quickly arose: The elements of explanatory theories (generative grammars) were far beyond the reach of taxonomic procedures. The structuralist principle that language is a matter of training and habit, extended by analogy, was unsustainable. More generally, the mood of “virtually everything is known” became “almost nothing is understood,” a familiar phenomenon in the history of science, opening a new and exciting era for a flourishing discipline.",
"issue": "1",
"itemID": "doi:10.1146/annurev-linguistics-081720-111352",
"libraryCatalog": "Annual Reviews",
"pages": "1-11",
"publicationTitle": "Annual Review of Linguistics",
"shortTitle": "Linguistics Then and Now",
"url": "https://doi.org/10.1146/annurev-linguistics-081720-111352",
"volume": "7",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "autobiography"
},
{
"tag": "biolinguistics program"
},
{
"tag": "explanatory linguistic theory"
},
{
"tag": "explanatory theories"
},
{
"tag": "generative enterprise"
},
{
"tag": "history of linguistics"
},
{
"tag": "history of science"
}
],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/