chef-server-webui 10.18.0.rc.1 → 10.18.0.rc.2

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.
Files changed (3) hide show
  1. data/Rakefile +3 -3
  2. data/lib/chef-server-webui/version.rb +1 -1
  3. metadata +153 -137
data/Rakefile CHANGED
@@ -1,7 +1,7 @@
1
1
  require File.dirname(__FILE__) + '/lib/chef-server-webui/version'
2
2
 
3
3
  require 'rubygems'
4
- require 'rake/gempackagetask'
4
+ require 'rubygems/package_task'
5
5
 
6
6
  begin
7
7
  require 'merb-core'
@@ -18,7 +18,7 @@ SUMMARY = "A systems integration framework, built to bring the benefits of confi
18
18
 
19
19
  spec = eval(File.read("chef-server-webui.gemspec"))
20
20
 
21
- Rake::GemPackageTask.new(spec) do |pkg|
21
+ Gem::PackageTask.new(spec) do |pkg|
22
22
  pkg.gem_spec = spec
23
23
  end
24
24
 
@@ -48,4 +48,4 @@ task :new_mockup, :name do |t, args|
48
48
  src = "mockups/base-mockup/."
49
49
  dest = "mockups/#{args[:name]}"
50
50
  FileUtils.cp_r src, dest
51
- end
51
+ end
@@ -1,3 +1,3 @@
1
1
  module ChefServerWebui
2
- VERSION = '10.18.0.rc.1'
2
+ VERSION = '10.18.0.rc.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-server-webui
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.18.0.rc.1
4
+ version: 10.18.0.rc.2
5
5
  prerelease: 8
6
6
  platform: ruby
7
7
  authors:
@@ -9,8 +9,24 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-19 00:00:00.000000000 Z
12
+ date: 2013-01-11 00:00:00.000000000 Z
13
13
  dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: extlib
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 0.9.16
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 0.9.16
14
30
  - !ruby/object:Gem::Dependency
15
31
  name: merb-core
16
32
  requirement: !ruby/object:Gem::Requirement
@@ -171,203 +187,203 @@ files:
171
187
  - Rakefile
172
188
  - config.ru
173
189
  - bin/chef-server-webui
174
- - config/init.rb
175
190
  - config/environments/development.rb
176
191
  - config/environments/production.rb
177
- - config/router.rb
192
+ - config/init.rb
178
193
  - config/rack.rb
179
- - lib/chef-server-webui/version.rb
194
+ - config/router.rb
180
195
  - lib/chef-server-webui/merbtasks.rb
181
196
  - lib/chef-server-webui/slicetasks.rb
182
197
  - lib/chef-server-webui/spectasks.rb
198
+ - lib/chef-server-webui/version.rb
183
199
  - lib/chef-server-webui.rb
184
- - app/controllers/databags.rb
185
- - app/controllers/databag_items.rb
186
- - app/controllers/roles.rb
187
200
  - app/controllers/application.rb
188
- - app/controllers/search_entries.rb
201
+ - app/controllers/clients.rb
189
202
  - app/controllers/cookbooks.rb
190
- - app/controllers/main.rb
203
+ - app/controllers/databag_items.rb
204
+ - app/controllers/databags.rb
205
+ - app/controllers/environments.rb
191
206
  - app/controllers/exceptions.rb
192
- - app/controllers/openid_consumer.rb
207
+ - app/controllers/main.rb
193
208
  - app/controllers/nodes.rb
194
- - app/controllers/environments.rb
195
- - app/controllers/users.rb
196
- - app/controllers/clients.rb
197
- - app/controllers/status.rb
209
+ - app/controllers/openid_consumer.rb
210
+ - app/controllers/roles.rb
198
211
  - app/controllers/search.rb
199
- - app/views/openid_register/show.html.haml
200
- - app/views/openid_register/index.html.haml
201
- - app/views/databags/show.html.haml
202
- - app/views/databags/_item_navigation.html.haml
203
- - app/views/databags/new.html.haml
212
+ - app/controllers/search_entries.rb
213
+ - app/controllers/status.rb
214
+ - app/controllers/users.rb
215
+ - app/helpers/application_helper.rb
216
+ - app/helpers/status_helper.rb
217
+ - app/views/clients/_form.html.haml
218
+ - app/views/clients/_navigation.html.haml
219
+ - app/views/clients/edit.html.haml
220
+ - app/views/clients/index.html.haml
221
+ - app/views/clients/new.html.haml
222
+ - app/views/clients/show.html.haml
223
+ - app/views/cookbooks/_cookbook_content.html.haml
224
+ - app/views/cookbooks/index.html.haml
225
+ - app/views/cookbooks/show.html.haml
226
+ - app/views/databag_items/_form.html.haml
227
+ - app/views/databag_items/_navigation.html.haml
228
+ - app/views/databag_items/edit.html.haml
229
+ - app/views/databag_items/index.html.haml
230
+ - app/views/databag_items/new.html.haml
231
+ - app/views/databag_items/show.html.haml
204
232
  - app/views/databags/_form.html.haml
233
+ - app/views/databags/_item_navigation.html.haml
205
234
  - app/views/databags/_navigation.html.haml
206
- - app/views/databags/index.html.haml
207
235
  - app/views/databags/edit.html.haml
208
- - app/views/environments/show.html.haml
236
+ - app/views/databags/index.html.haml
237
+ - app/views/databags/new.html.haml
238
+ - app/views/databags/show.html.haml
209
239
  - app/views/environments/_form.html.erb
210
- - app/views/environments/_version_selector.html.erb
211
240
  - app/views/environments/_navigation.html.haml
212
- - app/views/environments/new.html.erb
213
- - app/views/environments/index.html.haml
241
+ - app/views/environments/_version_selector.html.erb
214
242
  - app/views/environments/edit.html.erb
243
+ - app/views/environments/index.html.haml
244
+ - app/views/environments/new.html.erb
245
+ - app/views/environments/show.html.haml
246
+ - app/views/exceptions/admin_access_required.html.haml
247
+ - app/views/exceptions/bad_request.json.erb
248
+ - app/views/exceptions/internal_server_error.html.erb
249
+ - app/views/exceptions/not_acceptable.html.erb
250
+ - app/views/exceptions/not_found.html.erb
251
+ - app/views/exceptions/standard_error.html.erb
252
+ - app/views/layout/_jsonedit.html.haml
253
+ - app/views/layout/application.html.haml
254
+ - app/views/layout/login.html.haml
215
255
  - app/views/main/index.html.erb
256
+ - app/views/nodes/_action.html.haml
257
+ - app/views/nodes/_form.html.erb
258
+ - app/views/nodes/_navigation.html.haml
259
+ - app/views/nodes/_resource.html.haml
260
+ - app/views/nodes/edit.html.haml
261
+ - app/views/nodes/index.html.haml
262
+ - app/views/nodes/new.html.haml
263
+ - app/views/nodes/show.html.haml
216
264
  - app/views/openid_consumer/index.html.haml
217
265
  - app/views/openid_consumer/start.html.haml
218
- - app/views/roles/show.html.haml
219
- - app/views/roles/new.html.haml
266
+ - app/views/openid_login/index.html.haml
267
+ - app/views/openid_register/index.html.haml
268
+ - app/views/openid_register/show.html.haml
220
269
  - app/views/roles/_form.html.erb
221
270
  - app/views/roles/_navigation.html.haml
222
- - app/views/roles/index.html.haml
223
271
  - app/views/roles/_run_lists.html.erb
224
272
  - app/views/roles/edit.html.haml
225
- - app/views/exceptions/standard_error.html.erb
226
- - app/views/exceptions/internal_server_error.html.erb
227
- - app/views/exceptions/not_found.html.erb
228
- - app/views/exceptions/bad_request.json.erb
229
- - app/views/exceptions/admin_access_required.html.haml
230
- - app/views/exceptions/not_acceptable.html.erb
231
- - app/views/cookbooks/show.html.haml
232
- - app/views/cookbooks/_cookbook_content.html.haml
233
- - app/views/cookbooks/index.html.haml
234
- - app/views/clients/show.html.haml
235
- - app/views/clients/new.html.haml
236
- - app/views/clients/_form.html.haml
237
- - app/views/clients/_navigation.html.haml
238
- - app/views/clients/index.html.haml
239
- - app/views/clients/edit.html.haml
240
- - app/views/databag_items/show.html.haml
241
- - app/views/databag_items/new.html.haml
242
- - app/views/databag_items/_form.html.haml
243
- - app/views/databag_items/_navigation.html.haml
244
- - app/views/databag_items/index.html.haml
245
- - app/views/databag_items/edit.html.haml
246
- - app/views/status/index.html.haml
247
- - app/views/layout/login.html.haml
248
- - app/views/layout/application.html.haml
249
- - app/views/layout/_jsonedit.html.haml
250
- - app/views/search_entries/show.html.haml
273
+ - app/views/roles/index.html.haml
274
+ - app/views/roles/new.html.haml
275
+ - app/views/roles/show.html.haml
276
+ - app/views/search/_search_form.html.haml
277
+ - app/views/search/index.html.haml
278
+ - app/views/search/show.html.haml
251
279
  - app/views/search_entries/index.html.haml
252
- - app/views/openid_login/index.html.haml
253
- - app/views/users/show.html.haml
254
- - app/views/users/new.html.haml
280
+ - app/views/search_entries/show.html.haml
281
+ - app/views/status/index.html.haml
255
282
  - app/views/users/_form.html.haml
256
- - app/views/users/login.html.haml
257
283
  - app/views/users/_navigation.html.haml
284
+ - app/views/users/edit.html.haml
258
285
  - app/views/users/index.html.haml
286
+ - app/views/users/login.html.haml
287
+ - app/views/users/new.html.haml
288
+ - app/views/users/show.html.haml
259
289
  - app/views/users/start.html.haml
260
- - app/views/users/edit.html.haml
261
- - app/views/nodes/show.html.haml
262
- - app/views/nodes/new.html.haml
263
- - app/views/nodes/_form.html.erb
264
- - app/views/nodes/_resource.html.haml
265
- - app/views/nodes/_action.html.haml
266
- - app/views/nodes/_navigation.html.haml
267
- - app/views/nodes/index.html.haml
268
- - app/views/nodes/edit.html.haml
269
- - app/views/search/show.html.haml
270
- - app/views/search/_search_form.html.haml
271
- - app/views/search/index.html.haml
272
- - app/helpers/status_helper.rb
273
- - app/helpers/application_helper.rb
274
- - public/facebox/README.txt
290
+ - public/facebox/b.png
275
291
  - public/facebox/bl.png
292
+ - public/facebox/br.png
276
293
  - public/facebox/closelabel.gif
277
- - public/facebox/tr.png
278
- - public/facebox/b.png
279
294
  - public/facebox/facebox.css
280
295
  - public/facebox/facebox.js
281
- - public/facebox/br.png
282
296
  - public/facebox/loading.gif
297
+ - public/facebox/README.txt
283
298
  - public/facebox/tl.png
284
- - public/javascripts/jquery.localscroll.js
285
- - public/javascripts/jquery-ui-1.7.1.custom.min.js
286
- - public/javascripts/chef.js
287
- - public/javascripts/jquery.tools.min.js
288
- - public/javascripts/jquery.scrollTo.js
289
- - public/javascripts/cookbook_versions.js
290
- - public/javascripts/jquery.editinline.js
291
- - public/javascripts/jsonedit_main.js
292
- - public/javascripts/jquery.jeditable.mini.js
293
- - public/javascripts/jquery-1.5.2.min.js
294
- - public/javascripts/yetii-min.js
295
- - public/javascripts/jquery.treeTable.min.js
296
- - public/javascripts/drop_down_menu.js
297
- - public/javascripts/cookbook_constraint_ctrl.js
298
- - public/javascripts/jquery.suggest.js
299
- - public/javascripts/json.js
300
- - public/images/jsonedit/json.jpg
301
- - public/images/jsonedit/table_refresh.png
302
- - public/images/jsonedit/plus.gif
299
+ - public/facebox/tr.png
300
+ - public/images/avatar.png
301
+ - public/images/black_big.png
302
+ - public/images/indicator.gif
303
303
  - public/images/jsonedit/add2.png
304
+ - public/images/jsonedit/build-button.png
305
+ - public/images/jsonedit/bullet.gif
306
+ - public/images/jsonedit/bullet_orange.png
304
307
  - public/images/jsonedit/cross.png
305
308
  - public/images/jsonedit/delete.png
306
309
  - public/images/jsonedit/deleted.png
307
- - public/images/jsonedit/saved.png
308
- - public/images/jsonedit/pixel.gif
309
- - public/images/jsonedit/bullet_orange.png
310
- - public/images/jsonedit/value.gif
310
+ - public/images/jsonedit/json.jpg
311
311
  - public/images/jsonedit/label.gif
312
312
  - public/images/jsonedit/minus.gif
313
- - public/images/jsonedit/build-button.png
314
- - public/images/jsonedit/bullet.gif
315
- - public/images/indicator.gif
316
- - public/images/toggle-collapse-dark.png
313
+ - public/images/jsonedit/pixel.gif
314
+ - public/images/jsonedit/plus.gif
315
+ - public/images/jsonedit/saved.png
316
+ - public/images/jsonedit/table_refresh.png
317
+ - public/images/jsonedit/value.gif
317
318
  - public/images/merb.jpg
318
- - public/images/black_big.png
319
- - public/images/toggle-expand-light.png
319
+ - public/images/toggle-collapse-dark.png
320
+ - public/images/toggle-collapse-light.png
321
+ - public/images/toggle-collapse.gif
320
322
  - public/images/toggle-expand-dark.png
321
- - public/images/treeBuilderImages/folderNodeFirst.gif
322
- - public/images/treeBuilderImages/folderNodeOpen.gif
323
+ - public/images/toggle-expand-light.png
324
+ - public/images/toggle-expand.gif
325
+ - public/images/treeBuilderImages/doc.gif
326
+ - public/images/treeBuilderImages/docNode.gif
323
327
  - public/images/treeBuilderImages/docNodeLast.gif
324
- - public/images/treeBuilderImages/folderOpen.gif
328
+ - public/images/treeBuilderImages/docNodeLastFirst.gif
325
329
  - public/images/treeBuilderImages/folder.gif
326
330
  - public/images/treeBuilderImages/folderNode.gif
327
- - public/images/treeBuilderImages/docNodeLastFirst.gif
331
+ - public/images/treeBuilderImages/folderNodeFirst.gif
332
+ - public/images/treeBuilderImages/folderNodeLast.gif
328
333
  - public/images/treeBuilderImages/folderNodeLastFirst.gif
329
- - public/images/treeBuilderImages/Thumbs.db
330
- - public/images/treeBuilderImages/folderNodeOpenLastFirst.gif
331
- - public/images/treeBuilderImages/doc.gif
334
+ - public/images/treeBuilderImages/folderNodeOpen.gif
332
335
  - public/images/treeBuilderImages/folderNodeOpenFirst.gif
333
- - public/images/treeBuilderImages/folderNodeLast.gif
334
336
  - public/images/treeBuilderImages/folderNodeOpenLast.gif
337
+ - public/images/treeBuilderImages/folderNodeOpenLastFirst.gif
338
+ - public/images/treeBuilderImages/folderOpen.gif
339
+ - public/images/treeBuilderImages/Thumbs.db
335
340
  - public/images/treeBuilderImages/vertLine.gif
336
- - public/images/treeBuilderImages/docNode.gif
337
- - public/images/avatar.png
338
- - public/images/toggle-expand.gif
339
- - public/images/toggle-collapse.gif
340
- - public/images/toggle-collapse-light.png
341
+ - public/javascripts/chef.js
342
+ - public/javascripts/cookbook_constraint_ctrl.js
343
+ - public/javascripts/cookbook_versions.js
344
+ - public/javascripts/drop_down_menu.js
345
+ - public/javascripts/jquery-1.5.2.min.js
346
+ - public/javascripts/jquery-ui-1.7.1.custom.min.js
347
+ - public/javascripts/jquery.editinline.js
348
+ - public/javascripts/jquery.jeditable.mini.js
349
+ - public/javascripts/jquery.localscroll.js
350
+ - public/javascripts/jquery.scrollTo.js
351
+ - public/javascripts/jquery.suggest.js
352
+ - public/javascripts/jquery.tools.min.js
353
+ - public/javascripts/jquery.treeTable.min.js
354
+ - public/javascripts/json.js
355
+ - public/javascripts/jsonedit_main.js
356
+ - public/javascripts/yetii-min.js
341
357
  - public/stylesheets/base.css
342
- - public/stylesheets/jquery.suggest.css
343
358
  - public/stylesheets/chef.css
344
- - public/stylesheets/jquery-ui-1.7.1.custom.css
345
- - public/stylesheets/jquery.treeTable.css
346
- - public/stylesheets/jsonedit_main.css
347
- - public/stylesheets/images/ui-icons_888888_256x240.png
348
- - public/stylesheets/images/ui-icons_72a7cf_256x240.png
349
- - public/stylesheets/images/ui-icons_2e83ff_256x240.png
359
+ - public/stylesheets/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png
360
+ - public/stylesheets/images/ui-bg_diagonals-thick_15_444444_40x40.png
361
+ - public/stylesheets/images/ui-bg_glass_100_f0f0f0_1x400.png
350
362
  - public/stylesheets/images/ui-bg_glass_50_99c2ff_1x400.png
363
+ - public/stylesheets/images/ui-bg_glass_55_fbf5d0_1x400.png
364
+ - public/stylesheets/images/ui-bg_glass_80_e6e6e6_1x400.png
351
365
  - public/stylesheets/images/ui-bg_glass_95_fef1ec_1x400.png
352
- - public/stylesheets/images/ui-icons_ffffff_256x240.png
353
- - public/stylesheets/images/ui-icons_2694e8_256x240.png
354
366
  - public/stylesheets/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png
355
367
  - public/stylesheets/images/ui-bg_highlight-soft_100_e7eef3_1x100.png
356
368
  - public/stylesheets/images/ui-icons_222222_256x240.png
357
- - public/stylesheets/images/ui-bg_glass_100_f0f0f0_1x400.png
358
- - public/stylesheets/images/ui-bg_glass_55_fbf5d0_1x400.png
359
- - public/stylesheets/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png
369
+ - public/stylesheets/images/ui-icons_2694e8_256x240.png
370
+ - public/stylesheets/images/ui-icons_2e83ff_256x240.png
371
+ - public/stylesheets/images/ui-icons_72a7cf_256x240.png
372
+ - public/stylesheets/images/ui-icons_888888_256x240.png
360
373
  - public/stylesheets/images/ui-icons_cd0a0a_256x240.png
361
- - public/stylesheets/images/ui-bg_diagonals-thick_15_444444_40x40.png
362
- - public/stylesheets/images/ui-bg_glass_80_e6e6e6_1x400.png
363
- - public/stylesheets/themes/kathleene/style.css
374
+ - public/stylesheets/images/ui-icons_ffffff_256x240.png
375
+ - public/stylesheets/jquery-ui-1.7.1.custom.css
376
+ - public/stylesheets/jquery.suggest.css
377
+ - public/stylesheets/jquery.treeTable.css
378
+ - public/stylesheets/jsonedit_main.css
379
+ - public/stylesheets/themes/bec/style.css
380
+ - public/stylesheets/themes/bec-green/style.css
364
381
  - public/stylesheets/themes/blue/style.css
382
+ - public/stylesheets/themes/default/style.css
365
383
  - public/stylesheets/themes/djime-cerulean/style.css
384
+ - public/stylesheets/themes/kathleene/style.css
366
385
  - public/stylesheets/themes/orange/style.css
367
- - public/stylesheets/themes/default/style.css
368
386
  - public/stylesheets/themes/reidb-greenish/style.css
369
- - public/stylesheets/themes/bec-green/style.css
370
- - public/stylesheets/themes/bec/style.css
371
387
  homepage: http://wiki.opscode.com/display/chef
372
388
  licenses: []
373
389
  post_install_message:
@@ -388,7 +404,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
388
404
  version: 1.3.1
389
405
  requirements: []
390
406
  rubyforge_project:
391
- rubygems_version: 1.8.21
407
+ rubygems_version: 1.8.23
392
408
  signing_key:
393
409
  specification_version: 3
394
410
  summary: A systems integration framework, built to bring the benefits of configuration