Doesn't well well for North Carolina Central University Online Catalog
http://nccu.sirsi.net/
Can't automatically capture lists of bibliographic information from the above NCCU Online Catalog.
Can't automatically capture lists of bibliographic information from the above NCCU Online Catalog.
This is an old discussion that has not been active in a long time. Instead of commenting here, you should start a new discussion. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
var xpath = '//td[@class="searchsum"]/table';
if(doc.evaluate(xpath, doc, nsResolver, XPathResult.ANY_TYPE, null).iterateNext()) {
Zotero.debug("SIRSI detectWeb: searchsum");
return "multiple";
}
var xpath = '//form[@name="hitlist"]/table/tbody/tr';
if(doc.evaluate(xpath, doc, nsResolver, XPathResult.ANY_TYPE, null).iterateNext()) {
Zotero.debug("SIRSI detectWeb: hitlist");
return "multiple";
}
those should work for search results, no? I didn't look closely, but by adjusting the xpath slightly I can get the folder icon to show up, even though the search fails.
Point being: fixing this might be pretty quick if someone from UNC or another SIRSI institution takes heart...