Skip to content

Commit c9cf096

Browse files
committed
[CSL JSON] Don't break when invoking doImport without detectImport
1 parent dc92175 commit c9cf096

File tree

1 file changed

+21
-13
lines changed

1 file changed

+21
-13
lines changed

CSL JSON.js

+21-13
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,12 @@
99
"inRepository": true,
1010
"translatorType": 3,
1111
"browserSupport": "gcs",
12-
"lastUpdated": "2011-09-25 20:49:56"
12+
"lastUpdated": "2013-10-24 05:03:52"
1313
}
1414

1515
var parsedData;
16-
function detectImport() {
17-
const CSL_TYPES = {"article":true, "article-journal":true, "article-magazine":true,
18-
"article-newspaper":true, "bill":true, "book":true, "broadcast":true,
19-
"chapter":true, "dataset":true, "entry":true, "entry-dictionary":true,
20-
"entry-encyclopedia":true, "figure":true, "graphic":true, "interview":true,
21-
"legal_case":true, "legislation":true, "manuscript":true, "map":true,
22-
"motion_picture":true, "musical_score":true, "pamphlet":true,
23-
"paper-conference":true, "patent":true, "personal_communication":true,
24-
"post":true, "post-weblog":true, "report":true, "review":true, "review-book":true,
25-
"song":true, "speech":true, "thesis":true, "treaty":true, "webpage":true};
26-
16+
17+
function parseInput() {
2718
var str, json = "";
2819

2920
// Read in the whole file at once, since we can't easily parse a JSON stream. The
@@ -35,8 +26,22 @@ function detectImport() {
3526
parsedData = JSON.parse(json);
3627
} catch(e) {
3728
Zotero.debug(e);
38-
return false;
3929
}
30+
}
31+
32+
function detectImport() {
33+
const CSL_TYPES = {"article":true, "article-journal":true, "article-magazine":true,
34+
"article-newspaper":true, "bill":true, "book":true, "broadcast":true,
35+
"chapter":true, "dataset":true, "entry":true, "entry-dictionary":true,
36+
"entry-encyclopedia":true, "figure":true, "graphic":true, "interview":true,
37+
"legal_case":true, "legislation":true, "manuscript":true, "map":true,
38+
"motion_picture":true, "musical_score":true, "pamphlet":true,
39+
"paper-conference":true, "patent":true, "personal_communication":true,
40+
"post":true, "post-weblog":true, "report":true, "review":true, "review-book":true,
41+
"song":true, "speech":true, "thesis":true, "treaty":true, "webpage":true};
42+
43+
parseInput();
44+
if(!parsedData) return false;
4045

4146
if(typeof parsedData !== "object") return false;
4247
if(!(parsedData instanceof Array)) parsedData = [parsedData];
@@ -51,6 +56,9 @@ function detectImport() {
5156
}
5257

5358
function doImport() {
59+
if(!parsedData) parseInput();
60+
if(!parsedData) return;
61+
5462
for(var i=0; i<parsedData.length; i++) {
5563
var item = new Z.Item();
5664
ZU.itemFromCSLJSON(item, parsedData[i]);

0 commit comments

Comments
 (0)