9
9
"inRepository" : true ,
10
10
"translatorType" : 3 ,
11
11
"browserSupport" : "gcs" ,
12
- "lastUpdated" : "2011-09-25 20:49:56 "
12
+ "lastUpdated" : "2013-10-24 05:03:52 "
13
13
}
14
14
15
15
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 ( ) {
27
18
var str , json = "" ;
28
19
29
20
// Read in the whole file at once, since we can't easily parse a JSON stream. The
@@ -35,8 +26,22 @@ function detectImport() {
35
26
parsedData = JSON . parse ( json ) ;
36
27
} catch ( e ) {
37
28
Zotero . debug ( e ) ;
38
- return false ;
39
29
}
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 ;
40
45
41
46
if ( typeof parsedData !== "object" ) return false ;
42
47
if ( ! ( parsedData instanceof Array ) ) parsedData = [ parsedData ] ;
@@ -51,6 +56,9 @@ function detectImport() {
51
56
}
52
57
53
58
function doImport ( ) {
59
+ if ( ! parsedData ) parseInput ( ) ;
60
+ if ( ! parsedData ) return ;
61
+
54
62
for ( var i = 0 ; i < parsedData . length ; i ++ ) {
55
63
var item = new Z . Item ( ) ;
56
64
ZU . itemFromCSLJSON ( item , parsedData [ i ] ) ;
0 commit comments