~ubuntu-branches/ubuntu/saucy/nginx/saucy-updates

« back to all changes in this revision

Viewing changes to debian/modules/naxsi/contrib/naxsi-ui/js/themes/gray.js

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry, Cyril Lavier, Michael Lustfield, Kartik Mistry
  • Date: 2012-05-14 11:15:00 UTC
  • mfrom: (4.2.49 sid)
  • Revision ID: package-import@ubuntu.com-20120514111500-1y9ij7zulu9xnmry
Tags: 1.2.0-1
[Cyril Lavier]
* New upstream release. (Closes: #670306)
  + 1.2.x is stable release now.
* debian/modules/chunkin-nginx-module:
  + Updated chunkin-nginx-module to v0.23rc2-3-g85eca98.
* debian/modules/headers-more-module:
  + Updated headers-more-module to v0.17rc1-4-g33a82ed.
* debian/modules/nginx-development-kit:
  + Updated nginx-development-kit to v0.2.17-7-g24202b4.
* debian/modules/nginx-echo:
  + Updated nginx-echo to v0.38rc2-7-g080c0a1.
* debian/modules/nginx-lua:
  + Updated nginx-lua to v0.5.0rc25-5-g8d28785.
* debian/modules/nginx-upstream-fair:
  + Updated nginx-upstream-fair to a18b409.
* debian/modules/nginx-upload-progress:
  + Updated nginx-upload-progress to v0.9.0-0-ga788dea.
* debian/modules/naxsi:
  + Updated naxsi to 0.46
* debian/modules/README.Modules-versions:
  + Updated versions and URLs for modules.
* debian/naxsi-ui-extract, debian/naxsi-ui-intercept,
  debian/nginx-naxsi-ui.*, debian/naxsi-ui-extract.1,
  debian/naxsi-ui-intercept.1, debian/rules:
  + Added nginx-naxsi-ui package containing the learning daemon
    and the WebUI.
* debian/nginx-common.nginx.default, debian/nginx-common.nginx.init:
  + Renamed files to be compliant with the nginx-naxsi-ui package.
* debian/po:
  + Added needed files for using po-debconf.
  + Added French translation.
* debian/control:
  + Applied the modifications given after the review by Justin Rye.

[Michael Lustfield]
* debian/conf/uwsgi_params:
  + Added UWSGI_SCHEME to uwsgi_params. (Closes: #664878)
* debian/conf/sites-available/default:
  + Added allow directive for ipv6 localhost. (Closes: #664271)

[Kartik Mistry]
* debian/control:
  + wrap-and-sort.
* debian/copyright:
  + Added missing copyrights, minor formatting fixes.
* debian/nginx-common.nginx.init:
  + Added ulimit for restarts, Thanks to Daniel Roschka
    <danielroschka@phoenitydawn.de> for patch. (Closes: #673580)
* debian/conf/sites-available/default:
  + Added patch to fix deprecated "listen" directive, Thanks to
    Guillaume Plessis <gui@dotdeb.org> for patch. (Closes: #672632)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Gray theme for Highcharts JS
 
3
 * @author Torstein Hønsi
 
4
 */
 
5
 
 
6
Highcharts.theme = {
 
7
        colors: ["#DDDF0D", "#7798BF", "#55BF3B", "#DF5353", "#aaeeee", "#ff0066", "#eeaaee",
 
8
                "#55BF3B", "#DF5353", "#7798BF", "#aaeeee"],
 
9
        chart: {
 
10
                backgroundColor: {
 
11
                        linearGradient: [0, 0, 0, 400],
 
12
                        stops: [
 
13
                                [0, 'rgb(96, 96, 96)'],
 
14
                                [1, 'rgb(16, 16, 16)']
 
15
                        ]
 
16
                },
 
17
                borderWidth: 0,
 
18
                borderRadius: 15,
 
19
                plotBackgroundColor: null,
 
20
                plotShadow: false,
 
21
                plotBorderWidth: 0
 
22
        },
 
23
        title: {
 
24
                style: {
 
25
                        color: '#FFF',
 
26
                        font: '16px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif'
 
27
                }
 
28
        },
 
29
        subtitle: {
 
30
                style: {
 
31
                        color: '#DDD',
 
32
                        font: '12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif'
 
33
                }
 
34
        },
 
35
        xAxis: {
 
36
                gridLineWidth: 0,
 
37
                lineColor: '#999',
 
38
                tickColor: '#999',
 
39
                labels: {
 
40
                        style: {
 
41
                                color: '#999',
 
42
                                fontWeight: 'bold'
 
43
                        }
 
44
                },
 
45
                title: {
 
46
                        style: {
 
47
                                color: '#AAA',
 
48
                                font: 'bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif'
 
49
                        }
 
50
                }
 
51
        },
 
52
        yAxis: {
 
53
                alternateGridColor: null,
 
54
                minorTickInterval: null,
 
55
                gridLineColor: 'rgba(255, 255, 255, .1)',
 
56
                lineWidth: 0,
 
57
                tickWidth: 0,
 
58
                labels: {
 
59
                        style: {
 
60
                                color: '#999',
 
61
                                fontWeight: 'bold'
 
62
                        }
 
63
                },
 
64
                title: {
 
65
                        style: {
 
66
                                color: '#AAA',
 
67
                                font: 'bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif'
 
68
                        }
 
69
                }
 
70
        },
 
71
        legend: {
 
72
                itemStyle: {
 
73
                        color: '#CCC'
 
74
                },
 
75
                itemHoverStyle: {
 
76
                        color: '#FFF'
 
77
                },
 
78
                itemHiddenStyle: {
 
79
                        color: '#333'
 
80
                }
 
81
        },
 
82
        labels: {
 
83
                style: {
 
84
                        color: '#CCC'
 
85
                }
 
86
        },
 
87
        tooltip: {
 
88
                backgroundColor: {
 
89
                        linearGradient: [0, 0, 0, 50],
 
90
                        stops: [
 
91
                                [0, 'rgba(96, 96, 96, .8)'],
 
92
                                [1, 'rgba(16, 16, 16, .8)']
 
93
                        ]
 
94
                },
 
95
                borderWidth: 0,
 
96
                style: {
 
97
                        color: '#FFF'
 
98
                }
 
99
        },
 
100
 
 
101
 
 
102
        plotOptions: {
 
103
                line: {
 
104
                        dataLabels: {
 
105
                                color: '#CCC'
 
106
                        },
 
107
                        marker: {
 
108
                                lineColor: '#333'
 
109
                        }
 
110
                },
 
111
                spline: {
 
112
                        marker: {
 
113
                                lineColor: '#333'
 
114
                        }
 
115
                },
 
116
                scatter: {
 
117
                        marker: {
 
118
                                lineColor: '#333'
 
119
                        }
 
120
                },
 
121
                candlestick: {
 
122
                        lineColor: 'white'
 
123
                }
 
124
        },
 
125
 
 
126
        toolbar: {
 
127
                itemStyle: {
 
128
                        color: '#CCC'
 
129
                }
 
130
        },
 
131
 
 
132
        navigation: {
 
133
                buttonOptions: {
 
134
                        backgroundColor: {
 
135
                                linearGradient: [0, 0, 0, 20],
 
136
                                stops: [
 
137
                                        [0.4, '#606060'],
 
138
                                        [0.6, '#333333']
 
139
                                ]
 
140
                        },
 
141
                        borderColor: '#000000',
 
142
                        symbolStroke: '#C0C0C0',
 
143
                        hoverSymbolStroke: '#FFFFFF'
 
144
                }
 
145
        },
 
146
 
 
147
        exporting: {
 
148
                buttons: {
 
149
                        exportButton: {
 
150
                                symbolFill: '#55BE3B'
 
151
                        },
 
152
                        printButton: {
 
153
                                symbolFill: '#7797BE'
 
154
                        }
 
155
                }
 
156
        },
 
157
 
 
158
        // scroll charts
 
159
        rangeSelector: {
 
160
                buttonTheme: {
 
161
                        fill: {
 
162
                                linearGradient: [0, 0, 0, 20],
 
163
                                stops: [
 
164
                                        [0.4, '#888'],
 
165
                                        [0.6, '#555']
 
166
                                ]
 
167
                        },
 
168
                        stroke: '#000000',
 
169
                        style: {
 
170
                                color: '#CCC',
 
171
                                fontWeight: 'bold'
 
172
                        },
 
173
                        states: {
 
174
                                hover: {
 
175
                                        fill: {
 
176
                                                linearGradient: [0, 0, 0, 20],
 
177
                                                stops: [
 
178
                                                        [0.4, '#BBB'],
 
179
                                                        [0.6, '#888']
 
180
                                                ]
 
181
                                        },
 
182
                                        stroke: '#000000',
 
183
                                        style: {
 
184
                                                color: 'white'
 
185
                                        }
 
186
                                },
 
187
                                select: {
 
188
                                        fill: {
 
189
                                                linearGradient: [0, 0, 0, 20],
 
190
                                                stops: [
 
191
                                                        [0.1, '#000'],
 
192
                                                        [0.3, '#333']
 
193
                                                ]
 
194
                                        },
 
195
                                        stroke: '#000000',
 
196
                                        style: {
 
197
                                                color: 'yellow'
 
198
                                        }
 
199
                                }
 
200
                        }
 
201
                },
 
202
                inputStyle: {
 
203
                        backgroundColor: '#333',
 
204
                        color: 'silver'
 
205
                },
 
206
                labelStyle: {
 
207
                        color: 'silver'
 
208
                }
 
209
        },
 
210
 
 
211
        navigator: {
 
212
                handles: {
 
213
                        backgroundColor: '#666',
 
214
                        borderColor: '#AAA'
 
215
                },
 
216
                outlineColor: '#CCC',
 
217
                maskFill: 'rgba(16, 16, 16, 0.5)',
 
218
                series: {
 
219
                        color: '#7798BF',
 
220
                        lineColor: '#A6C7ED'
 
221
                }
 
222
        },
 
223
 
 
224
        scrollbar: {
 
225
                barBackgroundColor: {
 
226
                                linearGradient: [0, 0, 0, 20],
 
227
                                stops: [
 
228
                                        [0.4, '#888'],
 
229
                                        [0.6, '#555']
 
230
                                ]
 
231
                        },
 
232
                barBorderColor: '#CCC',
 
233
                buttonArrowColor: '#CCC',
 
234
                buttonBackgroundColor: {
 
235
                                linearGradient: [0, 0, 0, 20],
 
236
                                stops: [
 
237
                                        [0.4, '#888'],
 
238
                                        [0.6, '#555']
 
239
                                ]
 
240
                        },
 
241
                buttonBorderColor: '#CCC',
 
242
                rifleColor: '#FFF',
 
243
                trackBackgroundColor: {
 
244
                        linearGradient: [0, 0, 0, 10],
 
245
                        stops: [
 
246
                                [0, '#000'],
 
247
                                [1, '#333']
 
248
                        ]
 
249
                },
 
250
                trackBorderColor: '#666'
 
251
        },
 
252
 
 
253
        // special colors for some of the demo examples
 
254
        legendBackgroundColor: 'rgba(48, 48, 48, 0.8)',
 
255
        legendBackgroundColorSolid: 'rgb(70, 70, 70)',
 
256
        dataLabelsColor: '#444',
 
257
        textColor: '#E0E0E0',
 
258
        maskColor: 'rgba(255,255,255,0.3)'
 
259
};
 
260
 
 
261
// Apply the theme
 
262
var highchartsOptions = Highcharts.setOptions(Highcharts.theme);