Fix for JSTOR translator, closes ticket #1715
This commit is contained in:
parent
99fba46ffc
commit
24ace7c733
1 changed files with 13 additions and 12 deletions
|
@ -1,15 +1,16 @@
|
||||||
{
|
{
|
||||||
"translatorID":"d921155f-0186-1684-615c-ca57682ced9b",
|
"translatorID":"d921155f-0186-1684-615c-ca57682ced9b",
|
||||||
"translatorType":4,
|
"label":"JSTOR",
|
||||||
"label":"JSTOR",
|
"creator":"Simon Kornblith, Sean Takats, Michael Berkowitz and Eli Osherovich",
|
||||||
"creator":"Simon Kornblith, Sean Takats, Michael Berkowitz and Eli Osherovich",
|
"target":"https?://[^/]*jstor\\.org[^/]*/(action/(showArticle|doBasicSearch|doAdvancedSearch|doLocatorSearch|doAdvancedResults|doBasicResults)|stable/|pss/)",
|
||||||
"target":"https?://[^/]*jstor\\.org[^/]*/(action/(showArticle|doBasicSearch|doAdvancedSearch|doLocatorSearch|doAdvancedResults|doBasicResults)|stable/|pss/)",
|
"minVersion":"1.0.0b4.r1",
|
||||||
"minVersion":"1.0.0b4.r1",
|
"maxVersion":"",
|
||||||
"maxVersion":"",
|
"priority":100,
|
||||||
"priority":100,
|
"inRepository":"1",
|
||||||
"inRepository":true,
|
"translatorType":4,
|
||||||
"lastUpdated":"2009-08-19 22:10:00"
|
"lastUpdated":"2010-08-22 08:01:40"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function detectWeb(doc, url) {
|
function detectWeb(doc, url) {
|
||||||
var namespace = doc.documentElement.namespaceURI;
|
var namespace = doc.documentElement.namespaceURI;
|
||||||
|
@ -70,7 +71,7 @@ function doWeb(doc, url) {
|
||||||
var xpath = '//a[@id="favorites"]';
|
var xpath = '//a[@id="favorites"]';
|
||||||
var elmt = doc.evaluate(xpath, doc, nsResolver, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
|
var elmt = doc.evaluate(xpath, doc, nsResolver, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
|
||||||
var allJids = new Array();
|
var allJids = new Array();
|
||||||
if (elmt && /jid=(\d+)/.test(elmt.href)) {
|
if (elmt && /jid=10\.2307%2F(\d+)/.test(elmt.href)) {
|
||||||
allJids.push(RegExp.$1);
|
allJids.push(RegExp.$1);
|
||||||
var jid = RegExp.$1;
|
var jid = RegExp.$1;
|
||||||
Zotero.debug("JID found 1 " + jid);
|
Zotero.debug("JID found 1 " + jid);
|
||||||
|
@ -88,7 +89,7 @@ function doWeb(doc, url) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
var allTitlesElmts = doc.evaluate('//li/ul/li/a[@class="title"]', resultsBlock, nsResolver, XPathResult.ANY_TYPE, null);
|
var allTitlesElmts = doc.evaluate('//ul/li//a[@class="title"]', resultsBlock, nsResolver, XPathResult.ANY_TYPE, null);
|
||||||
var currTitleElmt;
|
var currTitleElmt;
|
||||||
var availableItems = new Object();
|
var availableItems = new Object();
|
||||||
while (currTitleElmt = allTitlesElmts.iterateNext()) {
|
while (currTitleElmt = allTitlesElmts.iterateNext()) {
|
||||||
|
|
Loading…
Reference in a new issue