blob: 8c1f6443113a45851eb4e739d2fb0faf7ee3d419 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
'# Execute the date dimension MAQL script' Comment.Single
'\n' Text
'ExecuteMaql' Name.Function
'(' Punctuation
'maqlFile' Name.Variable
'=' Operator
'"' Literal.String
'examples/quotes/quote_date.maql' Literal.String
'"' Literal.String
')' Punctuation
';' Punctuation
'\n\n' Text
'# load the stock quotes data file' Comment.Single
'\n' Text
'# the data file config has been generated' Comment.Single
'\n' Text
'LoadCsv' Name.Function
'(' Punctuation
'csvDataFile' Name.Variable
'=' Operator
'"' Literal.String
'examples/quotes/quotes.csv' Literal.String
'"' Literal.String
',' Punctuation
'\n' Text
'\t' Text
'header' Name.Variable
'=' Operator
'"' Literal.String
'true' Literal.String
'"' Literal.String
',' Punctuation
'\n' Text
'\t' Text
'configFile' Name.Variable
'=' Operator
'"' Literal.String
'examples/quotes/quotes.config.xml' Literal.String
'"' Literal.String
')' Punctuation
';' Punctuation
'\n\n' Text
'# transfer the stock quotes data' Comment.Single
'\n' Text
'TransferLastSnapshot' Name.Function
'(' Punctuation
')' Punctuation
';' Punctuation
'\n\n' Text
'LoadGoogleAnalytics' Name.Function
'(' Punctuation
'configFile' Name.Variable
'=' Operator
'"' Literal.String
'examples/ga/ga.config.xml' Literal.String
'"' Literal.String
',' Punctuation
'username' Name.Variable
'=' Operator
'"' Literal.String
'example@gmail.com' Literal.String
'"' Literal.String
',' Punctuation
'password' Name.Variable
'=' Operator
'"' Literal.String
'******' Literal.String
'"' Literal.String
',' Punctuation
'profileId' Name.Variable
'=' Operator
'"' Literal.String
'ga:7468896' Literal.String
'"' Literal.String
',' Punctuation
'dimensions' Name.Variable
'=' Operator
'"' Literal.String
'ga:date|ga:browser|ga:browserVersion|ga:country|ga:isMobile' Literal.String
'"' Literal.String
',' Punctuation
'metrics' Name.Variable
'=' Operator
'"' Literal.String
'ga:bounces|ga:newVisits|ga:pageViews|ga:visits' Literal.String
'"' Literal.String
',' Punctuation
'startDate' Name.Variable
'=' Operator
'"' Literal.String
'2008-01-01' Literal.String
'"' Literal.String
',' Punctuation
'endDate' Name.Variable
'=' Operator
'"' Literal.String
'2010-06-15' Literal.String
'"' Literal.String
')' Punctuation
';' Punctuation
'\n' Text
|