-
Notifications
You must be signed in to change notification settings - Fork 1
/
BIBSYS.js
109 lines (106 loc) · 3.41 KB
/
BIBSYS.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
{
"translatorID": "ab961e61-2a8a-4be1-b8a3-044f20d52d78",
"label": "BIBSYS",
"creator": "Ramesh Srigiriraju",
"target": "^https?://ask\\.bibsys\\.no/ask/action",
"minVersion": "1.0.0b4.r1",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsbv",
"lastUpdated": "2014-04-04 10:08:22"
}
function detectWeb(doc, url) {
var multireg=new RegExp("^https?://ask\.bibsys\.no/ask/action/result");
if(multireg.test(url))
return "multiple";
var singlereg=new RegExp("^https?://ask\.bibsys\.no/ask/action/show");
if(singlereg.test(url))
return "book";
}
function doWeb(doc, url) {
var multireg=new RegExp("https?://ask\.bibsys\.no/ask/action/result");
if(multireg.test(url)) {
var titlpath='//tr/td[@width="49%"][@align="left"][@valign="top"]/a/text()';
var titles=doc.evaluate(titlpath, doc, null, XPathResult.ANY_TYPE, null);
var codepath='//tr/td/input[@type="checkbox"][@name="valg"]/@value';
var codes=doc.evaluate(codepath, doc, null, XPathResult.ANY_TYPE, null);
var items=new Array();
var title;
titles.iterateNext();
while(title=titles.iterateNext())
items[codes.iterateNext().nodeValue]=title.nodeValue;
items=Zotero.selectItems(items);
var string="http://ask.bibsys.no/ask/action/result?control=ctr_top";
for(var codes in items)
string+="&valg="+codes;
string+="&control=ctr_bottom&eksportFormat=refmanager&eksportEpostAdresse=&eksportEpostFormat=fortekst&cmd=sendtil";
Zotero.Utilities.HTTP.doGet(string, function(text) {
var trans=Zotero.loadTranslator("import");
trans.setTranslator("32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7");
trans.setString(text);
trans.setHandler("itemDone", function(obj, item) {
item.title = item.title.replace(/\s\s+/, " ").replace(/\s:/, ":");
item.complete();
});
trans.translate();
});
}
var singlereg=new RegExp("http://ask\.bibsys\.no/ask/action/show");
if(singlereg.test(url)) {
var urlstring="http://ask.bibsys.no/ask/action/show";
var data="visningsformat=ris&eksportFormat=refmanager&eksportEpostAdresse=&eksportEpostFormat=fortekst&cmd=sendtil";
Zotero.Utilities.HTTP.doPost(urlstring, data, function(text) {
//Z.debug(text)
var trans=Zotero.loadTranslator("import");
trans.setTranslator("32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7");
trans.setString(text);
trans.setHandler("itemDone", function(obj, item) {
item.title = item.title.replace(/\s\s+/, " ").replace(/\s:/, ":");
item.complete();
});
trans.translate();
});
}
}/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://ask.bibsys.no/ask/action/result?cmd=&kilde=biblio&q=thelen",
"items": "multiple"
},
{
"type": "web",
"url": "http://ask.bibsys.no/ask/action/show?pid=042152526&kid=biblio",
"items": [
{
"itemType": "book",
"creators": [
{
"lastName": "Thelen",
"firstName": "Kathleen A.",
"creatorType": "author"
}
],
"notes": [
{
"note": "<p>Bibliografi: s. 297-322</p>"
}
],
"tags": [],
"seeAlso": [],
"attachments": [],
"title": "How institutions evolve: the political economy of skills in Germany, Britain, the United States, and Japan",
"date": "2004",
"numPages": "XV, 333 s.",
"publisher": "Cambridge University Press",
"place": "Cambridge",
"ISBN": "0-521-83768-5",
"libraryCatalog": "BIBSYS",
"shortTitle": "How institutions evolve"
}
]
}
]
/** END TEST CASES **/