sensu-dashboard 0.9.9 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,8 @@
1
1
  Handlebars.registerHelper "selected", (selected) ->
2
2
  return if selected then "checked" else ""
3
+
4
+ Handlebars.registerHelper "truncate", (text, length) ->
5
+ truncated = text.substring(0, length)
6
+ if text.length > length
7
+ truncated = truncated + "..."
8
+ return truncated
@@ -5,7 +5,7 @@ namespace "SensuDashboard.Models", (exports) ->
5
5
  defaults:
6
6
  handlers: ["default"]
7
7
  standalone: false
8
- subscribers: ["all"]
8
+ subscribers: []
9
9
  interval: 60
10
10
 
11
11
  idAttribute: "name"
@@ -1,4 +1,4 @@
1
- <table id="checks_table" class="table table-bordered sensu-table">
1
+ <table id="generic" class="table table-bordered sensu-table">
2
2
  <thead>
3
3
  <tr>
4
4
  <th class="col_check_id">Check</th>
@@ -1,4 +1,4 @@
1
- <table id="clients_table" class="table table-bordered sensu-table">
1
+ <table id="generic" class="table table-bordered sensu-table">
2
2
  <thead>
3
3
  <tr>
4
4
  <th></th>
@@ -3,7 +3,7 @@
3
3
  <ul>
4
4
  <li><span class="label label-success">{{total}} total</span></li>
5
5
  <li><span class="label label-important">{{critical}} critical</span></li>
6
- <li><span class="label label-warning">{{unknown}} unknown</span></li>
7
- <li><span class="label label-unknown">{{warning}} warning</span></li>
6
+ <li><span class="label label-warning">{{warning}} warning</span></li>
7
+ <li><span class="label label-unknown">{{unknown}} unknown</span></li>
8
8
  </ul>
9
9
  </div>
@@ -15,4 +15,4 @@
15
15
  {{/if}}
16
16
  {{check}}
17
17
  </td>
18
- <td class="output">{{output}}</td>
18
+ <td class="output">{{truncate output 90}}</td>
@@ -7,19 +7,22 @@
7
7
  </div>
8
8
  <div class="modal-body">
9
9
  <h3 class="section_title">event data</h3>
10
+ <div class="well">
10
11
  {{#each event}}
11
- <div class="well">
12
- <h5>{{@key}}</h5>
13
- <span class="modal_value">{{#if this}}{{this}}{{else}}false/nil{{/if}}</span>
14
- </div>
12
+ {{#if this}}
13
+ <strong>{{@key}}</strong> <span class="modal_value">{{this}}</span><br/>
14
+ {{/if}}
15
15
  {{/each}}
16
+ </div>
17
+
16
18
  <h3 class="section_title">client data</h3>
19
+ <div class="well">
17
20
  {{#each client}}
18
- <div class="well">
19
- <h5>{{@key}}</h5>
20
- <span class="modal_value">{{#if this}}{{this}}{{else}}false/nil{{/if}}</span>
21
- </div>
21
+ {{#if this}}
22
+ <strong>{{@key}}</strong> <span class="modal_value">{{this}}</span><br />
23
+ {{/if}}
22
24
  {{/each}}
25
+ </div>
23
26
  </div>
24
27
  <div class="modal-footer">
25
28
  <button id="silence_client" class="btn btn-danger">
@@ -1,4 +1,4 @@
1
- <table id="stashes_table" class="table table-bordered sensu-table">
1
+ <table id="generic" class="table table-bordered sensu-table">
2
2
  <thead>
3
3
  <tr>
4
4
  <th></th>
@@ -289,12 +289,12 @@ table.table#events_table
289
289
 
290
290
  tr.unknown
291
291
  td
292
- background-color: #fee9cc
293
- color: #f89406
292
+ background-color: #eee
293
+ color: #999
294
294
 
295
295
  tr.unknown:hover
296
296
  td
297
- background-color: #f89406
297
+ background-color: #999
298
298
  color: #fff
299
299
 
300
300
  tr.critical
@@ -309,56 +309,27 @@ table.table#events_table
309
309
 
310
310
  tr.warning
311
311
  td
312
- background-color: #eee
313
- color: #999
312
+ background-color: #fee9cc
313
+ color: #f89406
314
314
 
315
315
 
316
316
  tr.warning:hover
317
317
  td
318
- background-color: #999
318
+ background-color: #f89406
319
319
  color: #fff
320
320
 
321
- table.table#stashes_table
321
+ table.table#generic
322
322
  tbody
323
323
  tr
324
- td
325
- color: #999
326
- background-color: #eee
324
+ color: #999
325
+ background-color: #eee
327
326
 
328
- td.path
329
- font-weight: bold
330
-
331
- td.keys
332
- white-space: normal
333
-
334
- table.table#clients_table
335
- tbody
336
- tr
337
327
  td
338
- color: #999
339
- background-color: #eee
340
-
341
- td.client_id
342
328
  font-weight: bold
343
- white-space: nowrap
344
329
 
345
- td.subscriptions
346
- white-space: normal
347
- word-break: break-all
348
-
349
- table.table#checks_table
350
- tbody
351
- tr
352
- td
353
- color: #999
354
- background-color: #eee
355
-
356
- td.check_id
357
- font-weight: bold
358
- white-space: nowrap
359
-
360
- td.command
361
- word-break: break-all
330
+ tr:hover
331
+ color: #eee
332
+ background-color: #999
362
333
 
363
334
  table.table#info_table
364
335
  width: 400px
@@ -1,7 +1,7 @@
1
1
  module Sensu
2
2
  module Dashboard
3
3
  unless defined?(Sensu::Dashboard::VERSION)
4
- VERSION = '0.9.9'
4
+ VERSION = '0.10.0'
5
5
  end
6
6
  end
7
7
  end
@@ -44,6 +44,6 @@ html(lang='en')
44
44
  a(href='http://www.sonian.com')
45
45
  ' Sonian, Inc.
46
46
  ' 2013
47
- a(href='https://github.com/sonian/sensu-dashboard/blob/master/MIT-LICENSE.txt') License (MIT)
47
+ a(href='https://github.com/sensu/sensu-dashboard/blob/master/MIT-LICENSE.txt') License (MIT)
48
48
 
49
49
  script(src='assets/app.js')
metadata CHANGED
@@ -1,343 +1,344 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: sensu-dashboard
3
- version: !ruby/object:Gem::Version
4
- version: 0.9.9
5
- prerelease:
3
+ version: !ruby/object:Gem::Version
4
+ hash: 55
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 10
9
+ - 0
10
+ version: 0.10.0
6
11
  platform: ruby
7
- authors:
12
+ authors:
8
13
  - Justin Kolberg
9
14
  - Sean Porter
10
15
  autorequire:
11
16
  bindir: bin
12
17
  cert_chain: []
13
- date: 2013-04-05 00:00:00.000000000 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
18
+
19
+ date: 2013-07-17 00:00:00 -07:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
16
23
  name: sensu
17
- requirement: !ruby/object:Gem::Requirement
18
- none: false
19
- requirements:
20
- - - ! '>='
21
- - !ruby/object:Gem::Version
22
- version: 0.9.12
23
- type: :runtime
24
24
  prerelease: false
25
- version_requirements: !ruby/object:Gem::Requirement
25
+ requirement: &id001 !ruby/object:Gem::Requirement
26
26
  none: false
27
- requirements:
28
- - - ! '>='
29
- - !ruby/object:Gem::Version
27
+ requirements:
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ hash: 35
31
+ segments:
32
+ - 0
33
+ - 9
34
+ - 12
30
35
  version: 0.9.12
31
- - !ruby/object:Gem::Dependency
32
- name: em-http-request
33
- requirement: !ruby/object:Gem::Requirement
34
- none: false
35
- requirements:
36
- - - ~>
37
- - !ruby/object:Gem::Version
38
- version: 1.0.1
39
36
  type: :runtime
37
+ version_requirements: *id001
38
+ - !ruby/object:Gem::Dependency
39
+ name: em-http-request
40
40
  prerelease: false
41
- version_requirements: !ruby/object:Gem::Requirement
41
+ requirement: &id002 !ruby/object:Gem::Requirement
42
42
  none: false
43
- requirements:
43
+ requirements:
44
44
  - - ~>
45
- - !ruby/object:Gem::Version
45
+ - !ruby/object:Gem::Version
46
+ hash: 21
47
+ segments:
48
+ - 1
49
+ - 0
50
+ - 1
46
51
  version: 1.0.1
47
- - !ruby/object:Gem::Dependency
48
- name: sass
49
- requirement: !ruby/object:Gem::Requirement
50
- none: false
51
- requirements:
52
- - - ! '>='
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
52
  type: :runtime
53
+ version_requirements: *id002
54
+ - !ruby/object:Gem::Dependency
55
+ name: sass
56
56
  prerelease: false
57
- version_requirements: !ruby/object:Gem::Requirement
58
- none: false
59
- requirements:
60
- - - ! '>='
61
- - !ruby/object:Gem::Version
62
- version: '0'
63
- - !ruby/object:Gem::Dependency
64
- name: slim
65
- requirement: !ruby/object:Gem::Requirement
57
+ requirement: &id003 !ruby/object:Gem::Requirement
66
58
  none: false
67
- requirements:
68
- - - ! '>='
69
- - !ruby/object:Gem::Version
70
- version: '0'
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ hash: 3
63
+ segments:
64
+ - 0
65
+ version: "0"
71
66
  type: :runtime
67
+ version_requirements: *id003
68
+ - !ruby/object:Gem::Dependency
69
+ name: slim
72
70
  prerelease: false
73
- version_requirements: !ruby/object:Gem::Requirement
74
- none: false
75
- requirements:
76
- - - ! '>='
77
- - !ruby/object:Gem::Version
78
- version: '0'
79
- - !ruby/object:Gem::Dependency
80
- name: sprockets
81
- requirement: !ruby/object:Gem::Requirement
71
+ requirement: &id004 !ruby/object:Gem::Requirement
82
72
  none: false
83
- requirements:
84
- - - ! '>='
85
- - !ruby/object:Gem::Version
86
- version: '0'
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ hash: 3
77
+ segments:
78
+ - 0
79
+ version: "0"
87
80
  type: :runtime
81
+ version_requirements: *id004
82
+ - !ruby/object:Gem::Dependency
83
+ name: sprockets
88
84
  prerelease: false
89
- version_requirements: !ruby/object:Gem::Requirement
85
+ requirement: &id005 !ruby/object:Gem::Requirement
90
86
  none: false
91
- requirements:
92
- - - ! '>='
93
- - !ruby/object:Gem::Version
94
- version: '0'
95
- - !ruby/object:Gem::Dependency
96
- name: yui-compressor
97
- requirement: !ruby/object:Gem::Requirement
98
- none: false
99
- requirements:
100
- - - ! '>='
101
- - !ruby/object:Gem::Version
102
- version: '0'
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ hash: 3
91
+ segments:
92
+ - 0
93
+ version: "0"
103
94
  type: :runtime
95
+ version_requirements: *id005
96
+ - !ruby/object:Gem::Dependency
97
+ name: yui-compressor
104
98
  prerelease: false
105
- version_requirements: !ruby/object:Gem::Requirement
99
+ requirement: &id006 !ruby/object:Gem::Requirement
106
100
  none: false
107
- requirements:
108
- - - ! '>='
109
- - !ruby/object:Gem::Version
110
- version: '0'
111
- - !ruby/object:Gem::Dependency
112
- name: coffee-script
113
- requirement: !ruby/object:Gem::Requirement
114
- none: false
115
- requirements:
116
- - - ! '>='
117
- - !ruby/object:Gem::Version
118
- version: '0'
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ hash: 3
105
+ segments:
106
+ - 0
107
+ version: "0"
119
108
  type: :runtime
109
+ version_requirements: *id006
110
+ - !ruby/object:Gem::Dependency
111
+ name: coffee-script
120
112
  prerelease: false
121
- version_requirements: !ruby/object:Gem::Requirement
113
+ requirement: &id007 !ruby/object:Gem::Requirement
122
114
  none: false
123
- requirements:
124
- - - ! '>='
125
- - !ruby/object:Gem::Version
126
- version: '0'
127
- - !ruby/object:Gem::Dependency
128
- name: handlebars_assets
129
- requirement: !ruby/object:Gem::Requirement
130
- none: false
131
- requirements:
132
- - - ! '>='
133
- - !ruby/object:Gem::Version
134
- version: '0'
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ hash: 3
119
+ segments:
120
+ - 0
121
+ version: "0"
135
122
  type: :runtime
123
+ version_requirements: *id007
124
+ - !ruby/object:Gem::Dependency
125
+ name: handlebars_assets
136
126
  prerelease: false
137
- version_requirements: !ruby/object:Gem::Requirement
127
+ requirement: &id008 !ruby/object:Gem::Requirement
138
128
  none: false
139
- requirements:
140
- - - ! '>='
141
- - !ruby/object:Gem::Version
142
- version: '0'
143
- - !ruby/object:Gem::Dependency
144
- name: therubyracer
145
- requirement: !ruby/object:Gem::Requirement
146
- none: false
147
- requirements:
148
- - - ! '>='
149
- - !ruby/object:Gem::Version
150
- version: '0'
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ hash: 3
133
+ segments:
134
+ - 0
135
+ version: "0"
151
136
  type: :runtime
137
+ version_requirements: *id008
138
+ - !ruby/object:Gem::Dependency
139
+ name: therubyracer
152
140
  prerelease: false
153
- version_requirements: !ruby/object:Gem::Requirement
141
+ requirement: &id009 !ruby/object:Gem::Requirement
154
142
  none: false
155
- requirements:
156
- - - ! '>='
157
- - !ruby/object:Gem::Version
158
- version: '0'
159
- - !ruby/object:Gem::Dependency
160
- name: less
161
- requirement: !ruby/object:Gem::Requirement
162
- none: false
163
- requirements:
164
- - - ! '>='
165
- - !ruby/object:Gem::Version
166
- version: '0'
143
+ requirements:
144
+ - - ">="
145
+ - !ruby/object:Gem::Version
146
+ hash: 3
147
+ segments:
148
+ - 0
149
+ version: "0"
167
150
  type: :runtime
151
+ version_requirements: *id009
152
+ - !ruby/object:Gem::Dependency
153
+ name: less
168
154
  prerelease: false
169
- version_requirements: !ruby/object:Gem::Requirement
170
- none: false
171
- requirements:
172
- - - ! '>='
173
- - !ruby/object:Gem::Version
174
- version: '0'
175
- - !ruby/object:Gem::Dependency
176
- name: sinatra
177
- requirement: !ruby/object:Gem::Requirement
155
+ requirement: &id010 !ruby/object:Gem::Requirement
178
156
  none: false
179
- requirements:
180
- - - '='
181
- - !ruby/object:Gem::Version
182
- version: 1.3.5
157
+ requirements:
158
+ - - ">="
159
+ - !ruby/object:Gem::Version
160
+ hash: 3
161
+ segments:
162
+ - 0
163
+ version: "0"
183
164
  type: :runtime
165
+ version_requirements: *id010
166
+ - !ruby/object:Gem::Dependency
167
+ name: sinatra
184
168
  prerelease: false
185
- version_requirements: !ruby/object:Gem::Requirement
169
+ requirement: &id011 !ruby/object:Gem::Requirement
186
170
  none: false
187
- requirements:
188
- - - '='
189
- - !ruby/object:Gem::Version
171
+ requirements:
172
+ - - "="
173
+ - !ruby/object:Gem::Version
174
+ hash: 17
175
+ segments:
176
+ - 1
177
+ - 3
178
+ - 5
190
179
  version: 1.3.5
191
- description: A web interface for Sensu, a monitoring framework that aims to be simple,
192
- malleable, and scalable.
193
- email:
180
+ type: :runtime
181
+ version_requirements: *id011
182
+ description: A web interface for Sensu, a monitoring framework that aims to be simple, malleable, and scalable.
183
+ email:
194
184
  - justin.kolberg@sonian.net
195
185
  - portertech@gmail.com
196
- executables:
186
+ executables:
197
187
  - sensu-dashboard
198
188
  extensions: []
189
+
199
190
  extra_rdoc_files: []
200
- files:
191
+
192
+ files:
201
193
  - bin/sensu-dashboard
202
- - lib/sensu-dashboard.rb
203
- - lib/sensu-dashboard/public/font/fontawesome-webfont.woff
204
- - lib/sensu-dashboard/public/font/fontawesome-webfont.eot
205
- - lib/sensu-dashboard/public/font/fontawesome-webfont.svg
206
- - lib/sensu-dashboard/public/font/fontawesome-webfont.ttf
207
- - lib/sensu-dashboard/public/font/FontAwesome.otf
208
- - lib/sensu-dashboard/public/img/favicon_144.png
209
- - lib/sensu-dashboard/public/img/favicon_72.png
210
- - lib/sensu-dashboard/public/img/glyphicons-halflings.png
211
- - lib/sensu-dashboard/public/img/favicon_57.png
212
- - lib/sensu-dashboard/public/img/glyphicons-halflings-white.png
213
- - lib/sensu-dashboard/public/img/logo.png
214
- - lib/sensu-dashboard/public/img/favicon_114.png
215
- - lib/sensu-dashboard/public/img/logo@2x.png
216
- - lib/sensu-dashboard/public/img/favicon_64.png
217
- - lib/sensu-dashboard/public/img/loading.gif
218
- - lib/sensu-dashboard/public/favicon.ico
219
- - lib/sensu-dashboard/server.rb
220
- - lib/sensu-dashboard/views/layout.slim
221
- - lib/sensu-dashboard/views/main.slim
222
- - lib/sensu-dashboard/constants.rb
223
194
  - lib/sensu-dashboard/assets/stylesheets/libs/font-awesome.less
224
195
  - lib/sensu-dashboard/assets/stylesheets/libs/toastr.min.css
225
196
  - lib/sensu-dashboard/assets/stylesheets/libs/bootstrap.min.css
226
197
  - lib/sensu-dashboard/assets/stylesheets/app.css
227
198
  - lib/sensu-dashboard/assets/stylesheets/main.sass
228
- - lib/sensu-dashboard/assets/javascripts/bootstrapper.coffee
229
- - lib/sensu-dashboard/assets/javascripts/libs/scroll.into.view.js
199
+ - lib/sensu-dashboard/assets/javascripts/namespace.coffee
200
+ - lib/sensu-dashboard/assets/javascripts/matcher.coffee
230
201
  - lib/sensu-dashboard/assets/javascripts/libs/toastr.min.js
231
- - lib/sensu-dashboard/assets/javascripts/libs/token.field.coffee
202
+ - lib/sensu-dashboard/assets/javascripts/libs/retina.js
232
203
  - lib/sensu-dashboard/assets/javascripts/libs/jquery-1.9.1.min.js
233
204
  - lib/sensu-dashboard/assets/javascripts/libs/backbone-min.js
205
+ - lib/sensu-dashboard/assets/javascripts/libs/token.field.coffee
234
206
  - lib/sensu-dashboard/assets/javascripts/libs/lodash.underscore.min.js
235
- - lib/sensu-dashboard/assets/javascripts/libs/liquid.metal.js
207
+ - lib/sensu-dashboard/assets/javascripts/libs/scroll.into.view.js
236
208
  - lib/sensu-dashboard/assets/javascripts/libs/bootstrap.min.js
237
- - lib/sensu-dashboard/assets/javascripts/libs/retina.js
238
- - lib/sensu-dashboard/assets/javascripts/namespace.coffee
209
+ - lib/sensu-dashboard/assets/javascripts/libs/liquid.metal.js
239
210
  - lib/sensu-dashboard/assets/javascripts/app.js
240
- - lib/sensu-dashboard/assets/javascripts/models/metadata/events.coffee
241
- - lib/sensu-dashboard/assets/javascripts/models/stash.coffee
242
- - lib/sensu-dashboard/assets/javascripts/models/check.coffee
243
- - lib/sensu-dashboard/assets/javascripts/models/info.coffee
244
- - lib/sensu-dashboard/assets/javascripts/models/client.coffee
245
- - lib/sensu-dashboard/assets/javascripts/models/event.coffee
246
- - lib/sensu-dashboard/assets/javascripts/states/main_state.coffee
247
- - lib/sensu-dashboard/assets/javascripts/collections/stashes.coffee
248
- - lib/sensu-dashboard/assets/javascripts/collections/events.coffee
249
- - lib/sensu-dashboard/assets/javascripts/collections/clients.coffee
250
- - lib/sensu-dashboard/assets/javascripts/collections/base.coffee
251
211
  - lib/sensu-dashboard/assets/javascripts/collections/checks.coffee
212
+ - lib/sensu-dashboard/assets/javascripts/collections/base.coffee
213
+ - lib/sensu-dashboard/assets/javascripts/collections/clients.coffee
214
+ - lib/sensu-dashboard/assets/javascripts/collections/events.coffee
215
+ - lib/sensu-dashboard/assets/javascripts/collections/stashes.coffee
252
216
  - lib/sensu-dashboard/assets/javascripts/handlebars_helpers.coffee
253
- - lib/sensu-dashboard/assets/javascripts/views/error.coffee
254
- - lib/sensu-dashboard/assets/javascripts/views/info/index.coffee
255
- - lib/sensu-dashboard/assets/javascripts/views/list_item.coffee
256
- - lib/sensu-dashboard/assets/javascripts/views/clients/index.coffee
257
- - lib/sensu-dashboard/assets/javascripts/views/clients/list_item.coffee
258
- - lib/sensu-dashboard/assets/javascripts/views/clients/list.coffee
259
- - lib/sensu-dashboard/assets/javascripts/views/clients/counts.coffee
260
- - lib/sensu-dashboard/assets/javascripts/views/clients/modal.coffee
261
- - lib/sensu-dashboard/assets/javascripts/views/base.coffee
262
- - lib/sensu-dashboard/assets/javascripts/views/list.coffee
263
- - lib/sensu-dashboard/assets/javascripts/views/auto_complete/auto_complete_token.coffee
264
- - lib/sensu-dashboard/assets/javascripts/views/auto_complete/auto_complete_results.coffee
265
- - lib/sensu-dashboard/assets/javascripts/views/auto_complete/auto_complete_field.coffee
266
- - lib/sensu-dashboard/assets/javascripts/views/events/index.coffee
267
- - lib/sensu-dashboard/assets/javascripts/views/events/list_item.coffee
268
- - lib/sensu-dashboard/assets/javascripts/views/events/list.coffee
269
- - lib/sensu-dashboard/assets/javascripts/views/events/counts.coffee
270
- - lib/sensu-dashboard/assets/javascripts/views/events/modal.coffee
271
- - lib/sensu-dashboard/assets/javascripts/views/checks/index.coffee
272
- - lib/sensu-dashboard/assets/javascripts/views/checks/list_item.coffee
273
- - lib/sensu-dashboard/assets/javascripts/views/checks/list.coffee
274
- - lib/sensu-dashboard/assets/javascripts/views/stashes/index.coffee
275
- - lib/sensu-dashboard/assets/javascripts/views/stashes/list_item.coffee
276
- - lib/sensu-dashboard/assets/javascripts/views/stashes/list.coffee
277
- - lib/sensu-dashboard/assets/javascripts/views/stashes/counts.coffee
278
- - lib/sensu-dashboard/assets/javascripts/views/stashes/modal.coffee
279
- - lib/sensu-dashboard/assets/javascripts/views/modal.coffee
280
- - lib/sensu-dashboard/assets/javascripts/matcher.coffee
281
- - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_query_item.hbs
282
- - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_check_item.hbs
283
- - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_client_token.hbs
284
- - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_check_token.hbs
285
- - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_query_token.hbs
286
- - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_client_item.hbs
287
- - lib/sensu-dashboard/assets/javascripts/templates/empty_list.hbs
288
- - lib/sensu-dashboard/assets/javascripts/templates/info/index.hbs
289
- - lib/sensu-dashboard/assets/javascripts/templates/clients/list_item.hbs
290
- - lib/sensu-dashboard/assets/javascripts/templates/clients/list.hbs
291
- - lib/sensu-dashboard/assets/javascripts/templates/clients/modal.hbs
292
- - lib/sensu-dashboard/assets/javascripts/templates/clients/index.hbs
293
- - lib/sensu-dashboard/assets/javascripts/templates/clients/counts.hbs
217
+ - lib/sensu-dashboard/assets/javascripts/states/main_state.coffee
218
+ - lib/sensu-dashboard/assets/javascripts/state_manager.coffee
219
+ - lib/sensu-dashboard/assets/javascripts/application.coffee
294
220
  - lib/sensu-dashboard/assets/javascripts/templates/modal.hbs
295
- - lib/sensu-dashboard/assets/javascripts/templates/events/list_item.hbs
296
- - lib/sensu-dashboard/assets/javascripts/templates/events/list.hbs
297
221
  - lib/sensu-dashboard/assets/javascripts/templates/events/modal.hbs
298
- - lib/sensu-dashboard/assets/javascripts/templates/events/index.hbs
299
222
  - lib/sensu-dashboard/assets/javascripts/templates/events/counts.hbs
223
+ - lib/sensu-dashboard/assets/javascripts/templates/events/list_item.hbs
224
+ - lib/sensu-dashboard/assets/javascripts/templates/events/index.hbs
225
+ - lib/sensu-dashboard/assets/javascripts/templates/events/list.hbs
300
226
  - lib/sensu-dashboard/assets/javascripts/templates/checks/list_item.hbs
301
- - lib/sensu-dashboard/assets/javascripts/templates/checks/list.hbs
302
227
  - lib/sensu-dashboard/assets/javascripts/templates/checks/index.hbs
303
- - lib/sensu-dashboard/assets/javascripts/templates/stashes/list_item.hbs
304
- - lib/sensu-dashboard/assets/javascripts/templates/stashes/list.hbs
228
+ - lib/sensu-dashboard/assets/javascripts/templates/checks/list.hbs
229
+ - lib/sensu-dashboard/assets/javascripts/templates/empty_list.hbs
230
+ - lib/sensu-dashboard/assets/javascripts/templates/clients/modal.hbs
231
+ - lib/sensu-dashboard/assets/javascripts/templates/clients/counts.hbs
232
+ - lib/sensu-dashboard/assets/javascripts/templates/clients/list_item.hbs
233
+ - lib/sensu-dashboard/assets/javascripts/templates/clients/index.hbs
234
+ - lib/sensu-dashboard/assets/javascripts/templates/clients/list.hbs
305
235
  - lib/sensu-dashboard/assets/javascripts/templates/stashes/modal.hbs
306
- - lib/sensu-dashboard/assets/javascripts/templates/stashes/index.hbs
307
236
  - lib/sensu-dashboard/assets/javascripts/templates/stashes/counts.hbs
237
+ - lib/sensu-dashboard/assets/javascripts/templates/stashes/list_item.hbs
238
+ - lib/sensu-dashboard/assets/javascripts/templates/stashes/index.hbs
239
+ - lib/sensu-dashboard/assets/javascripts/templates/stashes/list.hbs
240
+ - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_query_item.hbs
241
+ - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_client_token.hbs
242
+ - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_check_item.hbs
243
+ - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_check_token.hbs
244
+ - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_query_token.hbs
245
+ - lib/sensu-dashboard/assets/javascripts/templates/autocomplete/results_client_item.hbs
308
246
  - lib/sensu-dashboard/assets/javascripts/templates/error.hbs
309
- - lib/sensu-dashboard/assets/javascripts/state_manager.coffee
310
- - lib/sensu-dashboard/assets/javascripts/application.coffee
247
+ - lib/sensu-dashboard/assets/javascripts/templates/info/index.hbs
248
+ - lib/sensu-dashboard/assets/javascripts/models/client.coffee
249
+ - lib/sensu-dashboard/assets/javascripts/models/event.coffee
250
+ - lib/sensu-dashboard/assets/javascripts/models/info.coffee
251
+ - lib/sensu-dashboard/assets/javascripts/models/stash.coffee
252
+ - lib/sensu-dashboard/assets/javascripts/models/check.coffee
253
+ - lib/sensu-dashboard/assets/javascripts/models/metadata/events.coffee
311
254
  - lib/sensu-dashboard/assets/javascripts/config/states.coffee
255
+ - lib/sensu-dashboard/assets/javascripts/views/events/counts.coffee
256
+ - lib/sensu-dashboard/assets/javascripts/views/events/modal.coffee
257
+ - lib/sensu-dashboard/assets/javascripts/views/events/list.coffee
258
+ - lib/sensu-dashboard/assets/javascripts/views/events/list_item.coffee
259
+ - lib/sensu-dashboard/assets/javascripts/views/events/index.coffee
260
+ - lib/sensu-dashboard/assets/javascripts/views/auto_complete/auto_complete_results.coffee
261
+ - lib/sensu-dashboard/assets/javascripts/views/auto_complete/auto_complete_field.coffee
262
+ - lib/sensu-dashboard/assets/javascripts/views/auto_complete/auto_complete_token.coffee
263
+ - lib/sensu-dashboard/assets/javascripts/views/checks/list.coffee
264
+ - lib/sensu-dashboard/assets/javascripts/views/checks/list_item.coffee
265
+ - lib/sensu-dashboard/assets/javascripts/views/checks/index.coffee
266
+ - lib/sensu-dashboard/assets/javascripts/views/base.coffee
267
+ - lib/sensu-dashboard/assets/javascripts/views/modal.coffee
268
+ - lib/sensu-dashboard/assets/javascripts/views/clients/counts.coffee
269
+ - lib/sensu-dashboard/assets/javascripts/views/clients/modal.coffee
270
+ - lib/sensu-dashboard/assets/javascripts/views/clients/list.coffee
271
+ - lib/sensu-dashboard/assets/javascripts/views/clients/list_item.coffee
272
+ - lib/sensu-dashboard/assets/javascripts/views/clients/index.coffee
273
+ - lib/sensu-dashboard/assets/javascripts/views/error.coffee
274
+ - lib/sensu-dashboard/assets/javascripts/views/stashes/counts.coffee
275
+ - lib/sensu-dashboard/assets/javascripts/views/stashes/modal.coffee
276
+ - lib/sensu-dashboard/assets/javascripts/views/stashes/list.coffee
277
+ - lib/sensu-dashboard/assets/javascripts/views/stashes/list_item.coffee
278
+ - lib/sensu-dashboard/assets/javascripts/views/stashes/index.coffee
279
+ - lib/sensu-dashboard/assets/javascripts/views/list.coffee
280
+ - lib/sensu-dashboard/assets/javascripts/views/list_item.coffee
281
+ - lib/sensu-dashboard/assets/javascripts/views/info/index.coffee
312
282
  - lib/sensu-dashboard/assets/javascripts/state.coffee
283
+ - lib/sensu-dashboard/assets/javascripts/bootstrapper.coffee
284
+ - lib/sensu-dashboard/constants.rb
285
+ - lib/sensu-dashboard/server.rb
286
+ - lib/sensu-dashboard/views/layout.slim
287
+ - lib/sensu-dashboard/views/main.slim
288
+ - lib/sensu-dashboard/public/font/fontawesome-webfont.woff
289
+ - lib/sensu-dashboard/public/font/fontawesome-webfont.ttf
290
+ - lib/sensu-dashboard/public/font/fontawesome-webfont.eot
291
+ - lib/sensu-dashboard/public/font/fontawesome-webfont.svg
292
+ - lib/sensu-dashboard/public/font/FontAwesome.otf
293
+ - lib/sensu-dashboard/public/favicon.ico
294
+ - lib/sensu-dashboard/public/img/favicon_64.png
295
+ - lib/sensu-dashboard/public/img/loading.gif
296
+ - lib/sensu-dashboard/public/img/favicon_72.png
297
+ - lib/sensu-dashboard/public/img/logo@2x.png
298
+ - lib/sensu-dashboard/public/img/favicon_144.png
299
+ - lib/sensu-dashboard/public/img/glyphicons-halflings-white.png
300
+ - lib/sensu-dashboard/public/img/favicon_114.png
301
+ - lib/sensu-dashboard/public/img/favicon_57.png
302
+ - lib/sensu-dashboard/public/img/glyphicons-halflings.png
303
+ - lib/sensu-dashboard/public/img/logo.png
304
+ - lib/sensu-dashboard.rb
313
305
  - sensu-dashboard.gemspec
314
306
  - README.md
315
307
  - CHANGELOG.md
316
308
  - MIT-LICENSE.txt
309
+ has_rdoc: true
317
310
  homepage: https://github.com/sensu/sensu-dashboard
318
- licenses:
311
+ licenses:
319
312
  - MIT
320
313
  post_install_message:
321
314
  rdoc_options: []
322
- require_paths:
315
+
316
+ require_paths:
323
317
  - lib
324
- required_ruby_version: !ruby/object:Gem::Requirement
318
+ required_ruby_version: !ruby/object:Gem::Requirement
325
319
  none: false
326
- requirements:
327
- - - ! '>='
328
- - !ruby/object:Gem::Version
329
- version: '0'
330
- required_rubygems_version: !ruby/object:Gem::Requirement
320
+ requirements:
321
+ - - ">="
322
+ - !ruby/object:Gem::Version
323
+ hash: 3
324
+ segments:
325
+ - 0
326
+ version: "0"
327
+ required_rubygems_version: !ruby/object:Gem::Requirement
331
328
  none: false
332
- requirements:
333
- - - ! '>='
334
- - !ruby/object:Gem::Version
335
- version: '0'
329
+ requirements:
330
+ - - ">="
331
+ - !ruby/object:Gem::Version
332
+ hash: 3
333
+ segments:
334
+ - 0
335
+ version: "0"
336
336
  requirements: []
337
+
337
338
  rubyforge_project:
338
- rubygems_version: 1.8.25
339
+ rubygems_version: 1.3.7
339
340
  signing_key:
340
341
  specification_version: 3
341
- summary: A web interface for Sensu, a monitoring framework that aims to be simple,
342
- malleable, and scalable.
342
+ summary: A web interface for Sensu, a monitoring framework that aims to be simple, malleable, and scalable.
343
343
  test_files: []
344
+