Trans: Correction to all-caps journal names in SIRSI

This commit is contained in:
Avram Lyon 2011-04-03 19:44:25 +00:00
parent c64f56d31b
commit ca57ca5857

View file

@ -73,6 +73,9 @@ function doWeb(doc, url) {
} else if (field == "TI") {
item.title = content;
} else if (field == "SO") {
// People say ISI is bad about being all-caps; let's try this for now
// http://forums.zotero.org/discussion/17316
if (content.toUpperCase() == content) Zotero.Utilities.capitalizeTitle(content.toLowerCase(), true);
item.publicationTitle = content;
} else if (field == "SN") {
item.ISSN = content;
@ -110,4 +113,4 @@ function doWeb(doc, url) {
item.attachments = [{url:item.url, title:"ISI Web of Knowledge Snapshot", mimeType:"text/html"}];
item.complete();
}
}
}