Trans: Correction to all-caps journal names in SIRSI
This commit is contained in:
parent
c64f56d31b
commit
ca57ca5857
1 changed files with 4 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue