From ca57ca58571eb01911cc4b9542fe6ca8ba99c45f Mon Sep 17 00:00:00 2001 From: Avram Lyon Date: Sun, 3 Apr 2011 19:44:25 +0000 Subject: [PATCH] Trans: Correction to all-caps journal names in SIRSI --- translators/ISI Web of Knowledge.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/translators/ISI Web of Knowledge.js b/translators/ISI Web of Knowledge.js index aaaadc8ab..736b360c6 100644 --- a/translators/ISI Web of Knowledge.js +++ b/translators/ISI Web of Knowledge.js @@ -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(); } -} \ No newline at end of file +}