Trans: Support DOI in DO field when reading EBSCO RIS

This commit is contained in:
Avram Lyon 2010-10-31 19:20:07 +00:00
parent ed40d92352
commit 42a1551e85

View file

@ -115,6 +115,9 @@ function downloadFunction(text) {
if (text.match("L3")) {
item.DOI = text.match(/L3\s+\-\s*(.*)/)[1];
}
if (text.match("DO")) {
item.DOI = text.match(/DO\s+\-\s*(.*)/)[1];
}
if (text.match("T1")) {
item.title = text.match(/T1\s+-\s*(.*)/)[1];
}
@ -181,4 +184,4 @@ function doWeb(doc, url) {
}
Zotero.wait();
}
}