59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
{
|
|
"translatorID":"f203db7f-7b7b-4dc4-b018-115b7885fe3b",
|
|
"translatorType":4,
|
|
"label":"Oxford Music and Art Online",
|
|
"creator":"Michael Berkowitz",
|
|
"target":"http://[^/]*www.oxford(music|art)online.com[^/]*/",
|
|
"minVersion":"1.0.0b4.r5",
|
|
"maxVersion":"",
|
|
"priority":100,
|
|
"inRepository":true,
|
|
"lastUpdated":"2008-07-10 06:15:00"
|
|
}
|
|
|
|
function detectWeb(doc, url) {
|
|
if (url.match(/search_results/)) {
|
|
return "multiple";
|
|
} else if (url.match(/\/article\//)) {
|
|
return "journalArticle";
|
|
}
|
|
}
|
|
|
|
function doWeb(doc, url) {
|
|
var host = doc.location.host;
|
|
var site = host.match(/oxford(.*)online/)[1];
|
|
var ids = new Array();
|
|
if (detectWeb(doc, url) == "multiple") {
|
|
var items = new Object();
|
|
var links = doc.evaluate('//ul[@class="search_result_list"]/li/p/a', doc, null, XPathResult.ANY_TYPE, null);
|
|
var link;
|
|
while (link = links.iterateNext()) {
|
|
items[link.href] = link.textContent;
|
|
}
|
|
items = Zotero.selectItems(items);
|
|
for (var i in items) {
|
|
ids.push(i.match(/(music|art)\/([^?]+)/)[2]);
|
|
}
|
|
} else {
|
|
ids = [url.match(/(music|art)\/([^?]+)/)[2]];
|
|
}
|
|
Zotero.debug(ids);
|
|
for each (var id in ids) {
|
|
var get = 'http://' + host + '/subscriber/article_export_citation/grove/' + site + '/' + id;
|
|
Zotero.Utilities.HTTP.doGet(get, function(text) {
|
|
var translator = Zotero.loadTranslator("import");
|
|
translator.setTranslator("32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7");
|
|
translator.setString(text);
|
|
translator.setHandler("itemDone", function(obj, item) {
|
|
var authors = new Array();
|
|
for (var i in item.creators) {
|
|
names = item.creators[i].lastName.match(/(.*)\s([^\s]+)$/);
|
|
authors.push({firstName:names[1], lastName:names[2], creatorType:"author"});
|
|
}
|
|
item.creators = authors;
|
|
item.complete();
|
|
});
|
|
translator.translate();
|
|
});
|
|
}
|
|
} |