Skip to content

Commit 562df68

Browse files
committed
Fixes - Louver multiples, MIT weird attachment data.
Tests: MIT, Matbugat, MPI for History of Science, MetaPress, Louvre
1 parent 594a530 commit 562df68

5 files changed

+303
-80
lines changed

MIT Press Journals.js

+22-14
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"translatorID": "2e43f4a9-d2e2-4112-a6ef-b3528b39b4d2",
33
"label": "MIT Press Journals",
44
"creator": "Michael Berkowitz",
5-
"target": "http://www.mitpressjournals.org/",
5+
"target": "^https?://www\\.mitpressjournals\\.org/(action|toc|doi)/",
66
"minVersion": "1.0.0b4.r5",
77
"maxVersion": "",
88
"priority": 100,
9-
"browserSupport": "gcs",
109
"inRepository": true,
1110
"translatorType": 4,
12-
"lastUpdated": "2011-08-22 22:31:06"
11+
"browserSupport": "gcs",
12+
"lastUpdated": "2011-11-09 00:03:05"
1313
}
1414

1515
function detectWeb(doc, url) {
@@ -51,14 +51,12 @@ function doWeb(doc, url) {
5151
Zotero.Utilities.HTTP.doGet(risurl, function(text) {
5252
var translator = Zotero.loadTranslator("import");
5353
translator.setTranslator("32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7");
54+
//Zotero.debug(text)
5455
translator.setString(text);
5556
translator.setHandler("itemDone", function(obj, item) {
56-
if (item.notes[0]['note'].match(/doi:/)) {
57-
item.DOI = item.notes[0]['note'].substr(5);
58-
item.notes = new Array();
59-
}
60-
item.attachments[0].title= item.publicationTitle + " Snapshot";
61-
item.attachments[0].mimeType = "text/html";
57+
//picks up some weird attachments from the RIS - delete
58+
item.attachments= [];
59+
item.attachments.push({url:doc.location.href, title:item.publicationTitle + " Snapshot", mimeType:"text/html"})
6260
item.attachments.push({url:pdfurl, title:item.publicationTitle + " Full Text PDF", mimeType:"application/pdf"});
6361
if (abs) item.abstractNote = abs;
6462
item.complete();
@@ -89,24 +87,28 @@ var testCases = [
8987
"creatorType": "author"
9088
}
9189
],
92-
"notes": [],
90+
"notes": [
91+
{
92+
"note": "<p>doi: 10.1162/afar.2010.43.4.60</p>"
93+
}
94+
],
9395
"tags": [],
9496
"seeAlso": [],
9597
"attachments": [
9698
{
97-
"url": false,
99+
"url": "http://www.mitpressjournals.org/doi/abs/10.1162/afar.2010.43.4.60",
98100
"title": "African Arts Snapshot",
99101
"mimeType": "text/html"
100102
},
101103
{
102-
"url": false,
104+
"url": "http://www.mitpressjournals.org/doi/pdf/10.1162/afar.2010.43.4.60",
103105
"title": "African Arts Full Text PDF",
104106
"mimeType": "application/pdf"
105107
}
106108
],
107109
"title": "Removable Hair Caps of Karamoja (Uganda)",
108-
"date": "2011/07/13 2010",
109-
"DOI": "i: 10.1162/afar.2010.43.4.60</p>",
110+
"date": "2010",
111+
"DOI": "10.1162/afar.2010.43.4.60",
110112
"publicationTitle": "African Arts",
111113
"pages": "60-71",
112114
"volume": "43",
@@ -115,9 +117,15 @@ var testCases = [
115117
"ISBN": "0001-9933",
116118
"ISSN": "0001-9933",
117119
"url": "http://dx.doi.org/10.1162/afar.2010.43.4.60",
120+
"accessDate": "2011/11/08",
118121
"libraryCatalog": "MIT Press Journals"
119122
}
120123
]
124+
},
125+
{
126+
"type": "web",
127+
"url": "http://www.mitpressjournals.org.turing.library.northwestern.edu/action/doSearch?type=simple&target=simple&filter=multiple&searchText=test&x=0&y=0&history=&categoryId=all",
128+
"items": "multiple"
121129
}
122130
]
123131
/** END TEST CASES **/

Matbugat.ru.js

+70-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Max Planck Institute for the History of Science Virtual Laboratory Library.js

+46-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
2-
"translatorID":"66928fe3-1e93-45a7-8e11-9df6de0a11b3",
3-
"translatorType":4,
4-
"label":"Max Planck Institute for the History of Science: Virtual Laboratory Library",
5-
"creator":"Sean Takats",
6-
"target":"http://vlp.mpiwg-berlin.mpg.de/library/",
7-
"minVersion":"1.0.0b3.r1",
8-
"maxVersion":"",
9-
"priority":100,
10-
"inRepository":true,
11-
"lastUpdated":"2011-01-11 04:31:00"
2+
"translatorID": "66928fe3-1e93-45a7-8e11-9df6de0a11b3",
3+
"label": "Max Planck Institute for the History of Science: Virtual Laboratory Library",
4+
"creator": "Sean Takats",
5+
"target": "^https?://vlp\\.mpiwg-berlin\\.mpg\\.de/library/",
6+
"minVersion": "1.0.0b3.r1",
7+
"maxVersion": "",
8+
"priority": 100,
9+
"inRepository": true,
10+
"translatorType": 4,
11+
"browserSupport": "g",
12+
"lastUpdated": "2011-11-08 21:18:11"
1213
}
1314

1415
function detectWeb(doc, url){
@@ -72,4 +73,38 @@ function doWeb(doc, url){
7273
translator.translate();
7374
}, function() {Zotero.done();}, null);
7475
Zotero.wait();
75-
}
76+
}/** BEGIN TEST CASES **/
77+
var testCases = [
78+
{
79+
"type": "web",
80+
"url": "http://vlp.mpiwg-berlin.mpg.de/library/search?-format=search&-op_referencetype=eq&referencetype=&-op_author=all&author=&-op_title=all&title=test&-op_secondarytitle=all&secondarytitle=&-op_sql_year=numerical&sql_year=&-op_fullreference=all&fullreference=&-op_online=numerical&-op_transcription=eq&-op_id=numerical&id=&-op_volumeid_search=ct&volumeid_search=&-op_project=eq&project=&-max=25&-display=short&-sort=author%2Csql_year&-find=+Start+Search+",
81+
"items": "multiple"
82+
},
83+
{
84+
"type": "web",
85+
"url": "http://vlp.mpiwg-berlin.mpg.de/library/data/lit38593?",
86+
"items": [
87+
{
88+
"itemType": "book",
89+
"creators": [
90+
{
91+
"firstName": "The Cambridge Scientific Instrument",
92+
"lastName": "Company",
93+
"creatorType": "author"
94+
}
95+
],
96+
"notes": [],
97+
"tags": [],
98+
"seeAlso": [],
99+
"attachments": [],
100+
"date": "1887",
101+
"title": "A descriptive list of anthropometric apparatus, consisting of instruments for measuring and testing the chief physical characteristics of the human body. Designed under the direction of Mr. Francis Galton",
102+
"place": "Cambridge",
103+
"url": "http://vlp.mpiwg-berlin.mpg.de/references?id=lit38593",
104+
"libraryCatalog": "Max Planck Institute for the History of Science: Virtual Laboratory Library",
105+
"accessDate": "CURRENT_TIMESTAMP"
106+
}
107+
]
108+
}
109+
]
110+
/** END TEST CASES **/

0 commit comments

Comments
 (0)