chef-server-webui 0.9.12 → 0.9.14.beta.1

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.
data/Rakefile CHANGED
@@ -16,34 +16,7 @@ EMAIL = "chef@opscode.com"
16
16
  HOMEPAGE = "http://wiki.opscode.com/display/chef"
17
17
  SUMMARY = "A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure."
18
18
 
19
- spec = Gem::Specification.new do |s|
20
- s.name = GEM_NAME
21
- s.version = ChefServerWebui::VERSION
22
- s.platform = Gem::Platform::RUBY
23
- s.has_rdoc = true
24
- s.extra_rdoc_files = ["README.rdoc", "LICENSE", "config.ru" ]
25
- s.summary = SUMMARY
26
- s.description = s.summary
27
- s.author = AUTHOR
28
- s.email = EMAIL
29
- s.homepage = HOMEPAGE
30
-
31
- s.add_dependency "merb-core", "~> 1.1.0"
32
- s.add_dependency "merb-assets", "~> 1.1.0"
33
- s.add_dependency "merb-helpers", "~> 1.1.0"
34
- s.add_dependency "merb-haml", "~> 1.1.0"
35
- s.add_dependency "merb-param-protection", "~> 1.1.0"
36
-
37
- s.add_dependency "json", ">= 1.4.4", "<= 1.4.6"
38
-
39
- %w{thin haml ruby-openid coderay}.each { |g| s.add_dependency g}
40
-
41
- s.bindir = "bin"
42
- s.executables = %w( chef-server-webui )
43
-
44
- s.require_path = 'lib'
45
- s.files = %w(LICENSE README.rdoc Rakefile config.ru) + Dir.glob("{bin,config,lib,spec,app,public,stubs}/**/*")
46
- end
19
+ spec = eval(File.read("chef-server-webui.gemspec"))
47
20
 
48
21
  Rake::GemPackageTask.new(spec) do |pkg|
49
22
  pkg.gem_spec = spec
@@ -38,7 +38,7 @@ class DatabagItems < Application
38
38
  begin
39
39
  @databag_item = Chef::DataBagItem.new
40
40
  @databag_item.data_bag params[:databag_id]
41
- @databag_item.raw_data = JSON.parse(params[:json_data])
41
+ @databag_item.raw_data = Chef::JSON.from_json(params[:json_data])
42
42
  raise ArgumentError, "Updating id is not allowed" unless @databag_item.raw_data['id'] == params[:id] #to be consistent with other objects, changing id is not allowed.
43
43
  @databag_item.save
44
44
  redirect(url(:databag_databag_items, :databag_id => params[:databag_id], :id => @databag_item.name), :message => { :notice => "Updated Databag Item #{@databag_item.name}" })
@@ -61,7 +61,7 @@ class DatabagItems < Application
61
61
  @databag_name = params[:databag_id]
62
62
  @databag_item = Chef::DataBagItem.new
63
63
  @databag_item.data_bag @databag_name
64
- @databag_item.raw_data = JSON.parse(params[:json_data])
64
+ @databag_item.raw_data = Chef::JSON.from_json(params[:json_data])
65
65
  @databag_item.create
66
66
  redirect(url(:databag_databag_items, :databag_id => @databag_name), :message => { :notice => "Databag item created successfully" })
67
67
  rescue => e
@@ -89,14 +89,14 @@ class Nodes < Application
89
89
  begin
90
90
  @node = Chef::Node.new
91
91
  @node.name params[:name]
92
- @node.normal_attrs = JSON.parse(params[:attributes])
92
+ @node.normal_attrs = Chef::JSON.from_json(params[:attributes])
93
93
  @node.run_list.reset!(params[:for_node] ? params[:for_node] : [])
94
94
  raise ArgumentError, "Node name cannot be blank" if (params[:name].nil? || params[:name].length==0)
95
95
  @node.create
96
96
  redirect(url(:nodes), :message => { :notice => "Created Node #{@node.name}" })
97
97
  rescue => e
98
98
  Chef::Log.error("#{e}\n#{e.backtrace.join("\n")}")
99
- @node.normal_attrs = JSON.parse(params[:attributes])
99
+ @node.normal_attrs = Chef::JSON.from_json(params[:attributes])
100
100
  @available_recipes = get_available_recipes
101
101
  @available_roles = Chef::Role.list.keys.sort
102
102
  @node.run_list params[:for_node]
@@ -110,7 +110,7 @@ class Nodes < Application
110
110
  begin
111
111
  @node = Chef::Node.load(params[:id])
112
112
  @node.run_list.reset!(params[:for_node] ? params[:for_node] : [])
113
- @node.normal_attrs = JSON.parse(params[:attributes])
113
+ @node.normal_attrs = Chef::JSON.from_json(params[:attributes])
114
114
  @node.save
115
115
  @_message = { :notice => "Updated Node" }
116
116
  render :show
@@ -90,8 +90,8 @@ class Roles < Application
90
90
  @role.name(params[:name])
91
91
  @role.run_list(params[:for_role] ? params[:for_role] : [])
92
92
  @role.description(params[:description]) if params[:description] != ''
93
- @role.default_attributes(JSON.parse(params[:default_attributes])) if params[:default_attributes] != ''
94
- @role.override_attributes(JSON.parse(params[:override_attributes])) if params[:override_attributes] != ''
93
+ @role.default_attributes(Chef::JSON.from_json(params[:default_attributes])) if params[:default_attributes] != ''
94
+ @role.override_attributes(Chef::JSON.from_json(params[:override_attributes])) if params[:override_attributes] != ''
95
95
  @role.create
96
96
  redirect(url(:roles), :message => { :notice => "Created Role #{@role.name}" })
97
97
  rescue => e
@@ -99,8 +99,8 @@ class Roles < Application
99
99
  @available_recipes = get_available_recipes
100
100
  @available_roles = Chef::Role.list.keys.sort
101
101
  @role = Chef::Role.new
102
- @role.default_attributes(JSON.parse(params[:default_attributes])) if params[:default_attributes] != ''
103
- @role.override_attributes(JSON.parse(params[:override_attributes])) if params[:override_attributes] != ''
102
+ @role.default_attributes(Chef::JSON.from_json(params[:default_attributes])) if params[:default_attributes] != ''
103
+ @role.override_attributes(Chef::JSON.from_json(params[:override_attributes])) if params[:override_attributes] != ''
104
104
  @run_list = Chef::RunList.new.reset!(Array(params[:for_role]))
105
105
  @_message = { :error => "Could not create role" }
106
106
  render :new
@@ -113,8 +113,8 @@ class Roles < Application
113
113
  @role = Chef::Role.load(params[:id])
114
114
  @role.run_list(params[:for_role] ? params[:for_role] : [])
115
115
  @role.description(params[:description]) if params[:description] != ''
116
- @role.default_attributes(JSON.parse(params[:default_attributes])) if params[:default_attributes] != ''
117
- @role.override_attributes(JSON.parse(params[:override_attributes])) if params[:override_attributes] != ''
116
+ @role.default_attributes(Chef::JSON.from_json(params[:default_attributes])) if params[:default_attributes] != ''
117
+ @role.override_attributes(Chef::JSON.from_json(params[:override_attributes])) if params[:override_attributes] != ''
118
118
  @role.save
119
119
  @_message = { :notice => "Updated Role" }
120
120
  render :show
@@ -124,8 +124,8 @@ class Roles < Application
124
124
  @available_roles = Chef::Role.list.keys.sort
125
125
  @run_list = Chef::RunList.new.reset!( Array(params[:for_role]))
126
126
  Chef::Log.error(@run_list.inspect)
127
- @role.default_attributes(JSON.parse(params[:default_attributes])) if params[:default_attributes] != ''
128
- @role.override_attributes(JSON.parse(params[:override_attributes])) if params[:override_attributes] != ''
127
+ @role.default_attributes(Chef::JSON.from_json(params[:default_attributes])) if params[:default_attributes] != ''
128
+ @role.override_attributes(Chef::JSON.from_json(params[:override_attributes])) if params[:override_attributes] != ''
129
129
  @_message = {:error => "Could not update role #{params[:id]}"}
130
130
  render :edit
131
131
  end
@@ -36,4 +36,4 @@
36
36
  # end
37
37
  # end
38
38
  # end
39
- #
39
+ #
@@ -40,4 +40,4 @@
40
40
  # end
41
41
  # end
42
42
  # end
43
- #
43
+ #
@@ -29,4 +29,4 @@
29
29
  # end
30
30
  # end
31
31
  # end
32
- #
32
+ #
@@ -41,4 +41,4 @@
41
41
  # end
42
42
  # end
43
43
  # end # Merb
44
- #
44
+ #
@@ -5,5 +5,5 @@
5
5
  - if active != 'create' && active != 'index'
6
6
  %li{ :class => (active == 'show' ? "active" : '')}= link_to('Show', url(:client, @client.name))
7
7
  %li{ :class => (active == 'edit' ? "active" : '')}= link_to('Edit', url(:edit_client, @client.name))
8
- %li= link_to('Delete', url(:client, @client.name), :method => "delete", :confirm => "Really delete Role #{@client.name}? There is no undo.")
8
+ %li= link_to('Delete', url(:client, @client.name), :method => "delete", :confirm => "Really delete Client #{@client.name}? There is no undo.")
9
9
  .clear
@@ -17,5 +17,5 @@
17
17
  %td
18
18
  = link_to('Edit', url(:edit_client, client))
19
19
  |
20
- = link_to('Delete', url(:client, client), :method => "delete", :confirm => "Really delete Role #{client}? there is no undo.")
20
+ = link_to('Delete', url(:client, client), :method => "delete", :confirm => "Really delete Client #{client}? there is no undo.")
21
21
  - even = (not even)
@@ -16,4 +16,4 @@
16
16
  %td
17
17
  = link_to('Edit', url(:edit_databag_databag_item, :id => databag_item_uri[0], :databag_id => @databag_name))
18
18
  |
19
- = link_to('Delete', url(:databag_databag_item, :id => databag_item_uri[0], :databag_id => @databag_name), :method => "delete", :confirm => "Really delete Databag Item #{databag_item_uri[0]}? There is no undo.")
19
+ = link_to('Delete', url(:databag_databag_item, :id => databag_item_uri[0], :databag_id => @databag_name), :method => "delete", :confirm => "Really delete Databag Item #{databag_item_uri[0]}? There is no undo.")
@@ -10,4 +10,4 @@
10
10
  %td
11
11
  - resource_hash[rk].each do |resource|
12
12
  = partial(:resource, :resource => resource)
13
-
13
+
@@ -4,4 +4,4 @@
4
4
  .inner
5
5
  = link_to "OpenID URL", url(:openid_node, { :id => @registered_node.name.gsub(/\./, "_")})
6
6
  %br= "Validated: #{@registered_node.validated}"
7
- %br= "Admin: #{@registered_node.admin}"
7
+ %br= "Admin: #{@registered_node.admin}"
@@ -5,4 +5,4 @@
5
5
  - @search_indexes.sort{ |a,b| a.to_s <=> b.to_s}.each do |index|
6
6
  %form.form{ :method => "get", "accept-charset" => "UTF-8", :action => url(:search, { :id => index[0]})}
7
7
  .group.label= text_field :name => "q", :label => "Query (i.e. attribute:value, leave empty to search all) "
8
- .group= submit "Search #{index[0]}"
8
+ .group= submit "Search #{index[0]}"
@@ -10,4 +10,4 @@
10
10
  - @results.each do |result|
11
11
  - result.each do |o|
12
12
  %tr
13
- %td= link_to(o.name, url(@type.to_sym, determine_name(@type.to_sym, o)))
13
+ %td= link_to(o.name, url(@type.to_sym, determine_name(@type.to_sym, o)))
@@ -5,4 +5,4 @@
5
5
  - result.each do |k, v|
6
6
  %tr.attr_group
7
7
  %td.attr_name= k
8
- %td.attr_value= v.kind_of?(Array) ? v.join(",") : v
8
+ %td.attr_value= v.kind_of?(Array) ? v.join(",") : v
@@ -4,4 +4,4 @@
4
4
  - @entry.each do |k, v|
5
5
  %tr.attr_group
6
6
  %td.attr_name= k
7
- %td.attr_value= v.kind_of?(Array) ? v.join(",") : v
7
+ %td.attr_value= v.kind_of?(Array) ? v.join(",") : v
@@ -13,4 +13,4 @@
13
13
  .inner
14
14
  = partial('form', :header => "Login", :form_id => 'login', :submit_name => "login", :submit_id => "login_button", :form_for => 'login', :form_url => url(:users_login_exec) )
15
15
 
16
-
16
+
@@ -10,4 +10,4 @@
10
10
  = @user.admin
11
11
  .left
12
12
  %h3 OpenID
13
- = @user.openid || "No OpenID associated to this user account."
13
+ = @user.openid || "No OpenID associated to this user account."
@@ -1,3 +1,3 @@
1
1
  module ChefServerWebui
2
- VERSION = '0.9.12'
3
- end
2
+ VERSION = '0.9.14.beta.1'
3
+ end
@@ -277,4 +277,4 @@ ul.list li .item .avatar {
277
277
  -webkit-border-bottom-left-radius: 4px;
278
278
  -moz-border-radius-bottomright: 4px;
279
279
  -webkit-border-bottom-right-radius: 4px;
280
- }
280
+ }
@@ -264,4 +264,4 @@ ul.list li .item .avatar {
264
264
  -webkit-border-bottom-left-radius: 4px;
265
265
  -moz-border-radius-bottomright: 4px;
266
266
  -webkit-border-bottom-right-radius: 4px;
267
- }
267
+ }
@@ -295,4 +295,4 @@ ul.list li .item .avatar {
295
295
  -webkit-border-bottom-left-radius: 4px;
296
296
  -moz-border-radius-bottomright: 4px;
297
297
  -webkit-border-bottom-right-radius: 4px;
298
- }
298
+ }
@@ -260,4 +260,4 @@ ul.list li .item .avatar {
260
260
  -webkit-border-bottom-left-radius: 4px;
261
261
  -moz-border-radius-bottomright: 4px;
262
262
  -webkit-border-bottom-right-radius: 4px;
263
- }
263
+ }
metadata CHANGED
@@ -1,12 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-server-webui
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
4
+ hash: 62196289
5
+ prerelease: true
5
6
  segments:
6
7
  - 0
7
8
  - 9
8
- - 12
9
- version: 0.9.12
9
+ - 14
10
+ - beta
11
+ - 1
12
+ version: 0.9.14.beta.1
10
13
  platform: ruby
11
14
  authors:
12
15
  - Opscode
@@ -14,91 +17,98 @@ autorequire:
14
17
  bindir: bin
15
18
  cert_chain: []
16
19
 
17
- date: 2010-10-22 00:00:00 -07:00
20
+ date: 2011-02-09 00:00:00 -08:00
18
21
  default_executable:
19
22
  dependencies:
20
23
  - !ruby/object:Gem::Dependency
24
+ prerelease: false
21
25
  name: merb-core
22
- requirement: &id001 !ruby/object:Gem::Requirement
26
+ version_requirements: &id001 !ruby/object:Gem::Requirement
23
27
  none: false
24
28
  requirements:
25
29
  - - ~>
26
30
  - !ruby/object:Gem::Version
31
+ hash: 19
27
32
  segments:
28
33
  - 1
29
34
  - 1
30
35
  - 0
31
36
  version: 1.1.0
37
+ requirement: *id001
32
38
  type: :runtime
33
- prerelease: false
34
- version_requirements: *id001
35
39
  - !ruby/object:Gem::Dependency
40
+ prerelease: false
36
41
  name: merb-assets
37
- requirement: &id002 !ruby/object:Gem::Requirement
42
+ version_requirements: &id002 !ruby/object:Gem::Requirement
38
43
  none: false
39
44
  requirements:
40
45
  - - ~>
41
46
  - !ruby/object:Gem::Version
47
+ hash: 19
42
48
  segments:
43
49
  - 1
44
50
  - 1
45
51
  - 0
46
52
  version: 1.1.0
53
+ requirement: *id002
47
54
  type: :runtime
48
- prerelease: false
49
- version_requirements: *id002
50
55
  - !ruby/object:Gem::Dependency
56
+ prerelease: false
51
57
  name: merb-helpers
52
- requirement: &id003 !ruby/object:Gem::Requirement
58
+ version_requirements: &id003 !ruby/object:Gem::Requirement
53
59
  none: false
54
60
  requirements:
55
61
  - - ~>
56
62
  - !ruby/object:Gem::Version
63
+ hash: 19
57
64
  segments:
58
65
  - 1
59
66
  - 1
60
67
  - 0
61
68
  version: 1.1.0
69
+ requirement: *id003
62
70
  type: :runtime
63
- prerelease: false
64
- version_requirements: *id003
65
71
  - !ruby/object:Gem::Dependency
72
+ prerelease: false
66
73
  name: merb-haml
67
- requirement: &id004 !ruby/object:Gem::Requirement
74
+ version_requirements: &id004 !ruby/object:Gem::Requirement
68
75
  none: false
69
76
  requirements:
70
77
  - - ~>
71
78
  - !ruby/object:Gem::Version
79
+ hash: 19
72
80
  segments:
73
81
  - 1
74
82
  - 1
75
83
  - 0
76
84
  version: 1.1.0
85
+ requirement: *id004
77
86
  type: :runtime
78
- prerelease: false
79
- version_requirements: *id004
80
87
  - !ruby/object:Gem::Dependency
88
+ prerelease: false
81
89
  name: merb-param-protection
82
- requirement: &id005 !ruby/object:Gem::Requirement
90
+ version_requirements: &id005 !ruby/object:Gem::Requirement
83
91
  none: false
84
92
  requirements:
85
93
  - - ~>
86
94
  - !ruby/object:Gem::Version
95
+ hash: 19
87
96
  segments:
88
97
  - 1
89
98
  - 1
90
99
  - 0
91
100
  version: 1.1.0
101
+ requirement: *id005
92
102
  type: :runtime
93
- prerelease: false
94
- version_requirements: *id005
95
103
  - !ruby/object:Gem::Dependency
104
+ prerelease: false
96
105
  name: json
97
- requirement: &id006 !ruby/object:Gem::Requirement
106
+ version_requirements: &id006 !ruby/object:Gem::Requirement
98
107
  none: false
99
108
  requirements:
100
109
  - - ">="
101
110
  - !ruby/object:Gem::Version
111
+ hash: 15
102
112
  segments:
103
113
  - 1
104
114
  - 4
@@ -106,66 +116,70 @@ dependencies:
106
116
  version: 1.4.4
107
117
  - - <=
108
118
  - !ruby/object:Gem::Version
119
+ hash: 11
109
120
  segments:
110
121
  - 1
111
122
  - 4
112
123
  - 6
113
124
  version: 1.4.6
125
+ requirement: *id006
114
126
  type: :runtime
115
- prerelease: false
116
- version_requirements: *id006
117
127
  - !ruby/object:Gem::Dependency
128
+ prerelease: false
118
129
  name: thin
119
- requirement: &id007 !ruby/object:Gem::Requirement
130
+ version_requirements: &id007 !ruby/object:Gem::Requirement
120
131
  none: false
121
132
  requirements:
122
133
  - - ">="
123
134
  - !ruby/object:Gem::Version
135
+ hash: 3
124
136
  segments:
125
137
  - 0
126
138
  version: "0"
139
+ requirement: *id007
127
140
  type: :runtime
128
- prerelease: false
129
- version_requirements: *id007
130
141
  - !ruby/object:Gem::Dependency
142
+ prerelease: false
131
143
  name: haml
132
- requirement: &id008 !ruby/object:Gem::Requirement
144
+ version_requirements: &id008 !ruby/object:Gem::Requirement
133
145
  none: false
134
146
  requirements:
135
147
  - - ">="
136
148
  - !ruby/object:Gem::Version
149
+ hash: 3
137
150
  segments:
138
151
  - 0
139
152
  version: "0"
153
+ requirement: *id008
140
154
  type: :runtime
141
- prerelease: false
142
- version_requirements: *id008
143
155
  - !ruby/object:Gem::Dependency
156
+ prerelease: false
144
157
  name: ruby-openid
145
- requirement: &id009 !ruby/object:Gem::Requirement
158
+ version_requirements: &id009 !ruby/object:Gem::Requirement
146
159
  none: false
147
160
  requirements:
148
161
  - - ">="
149
162
  - !ruby/object:Gem::Version
163
+ hash: 3
150
164
  segments:
151
165
  - 0
152
166
  version: "0"
167
+ requirement: *id009
153
168
  type: :runtime
154
- prerelease: false
155
- version_requirements: *id009
156
169
  - !ruby/object:Gem::Dependency
170
+ prerelease: false
157
171
  name: coderay
158
- requirement: &id010 !ruby/object:Gem::Requirement
172
+ version_requirements: &id010 !ruby/object:Gem::Requirement
159
173
  none: false
160
174
  requirements:
161
175
  - - ">="
162
176
  - !ruby/object:Gem::Version
177
+ hash: 3
163
178
  segments:
164
179
  - 0
165
180
  version: "0"
181
+ requirement: *id010
166
182
  type: :runtime
167
- prerelease: false
168
- version_requirements: *id010
169
183
  description: A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure.
170
184
  email: chef@opscode.com
171
185
  executables:
@@ -182,212 +196,212 @@ files:
182
196
  - Rakefile
183
197
  - config.ru
184
198
  - bin/chef-server-webui
185
- - config/environments/development.rb
186
- - config/environments/production.rb
187
199
  - config/init.rb
188
- - config/rack.rb
189
200
  - config/router.rb
201
+ - config/rack.rb
202
+ - config/environments/development.rb
203
+ - config/environments/production.rb
190
204
  - lib/chef-server-webui/merbtasks.rb
191
205
  - lib/chef-server-webui/slicetasks.rb
192
- - lib/chef-server-webui/spectasks.rb
193
206
  - lib/chef-server-webui/version.rb
207
+ - lib/chef-server-webui/spectasks.rb
194
208
  - lib/chef-server-webui.rb
209
+ - app/views/layout/_jsonedit.html.haml
210
+ - app/views/layout/login.html.haml
211
+ - app/views/layout/application.html.haml
212
+ - app/views/openid_login/index.html.haml
213
+ - app/views/clients/new.html.haml
214
+ - app/views/clients/_navigation.html.haml
215
+ - app/views/clients/show.html.haml
216
+ - app/views/clients/index.html.haml
217
+ - app/views/clients/_form.html.haml
218
+ - app/views/clients/edit.html.haml
219
+ - app/views/openid_register/show.html.haml
220
+ - app/views/openid_register/index.html.haml
221
+ - app/views/status/index.html.haml
222
+ - app/views/users/new.html.haml
223
+ - app/views/users/login.html.haml
224
+ - app/views/users/_navigation.html.haml
225
+ - app/views/users/start.html.haml
226
+ - app/views/users/show.html.haml
227
+ - app/views/users/index.html.haml
228
+ - app/views/users/_form.html.haml
229
+ - app/views/users/edit.html.haml
230
+ - app/views/openid_consumer/start.html.haml
231
+ - app/views/openid_consumer/index.html.haml
232
+ - app/views/main/index.html.erb
233
+ - app/views/cookbooks/show.html.haml
234
+ - app/views/cookbooks/index.html.haml
235
+ - app/views/nodes/new.html.haml
236
+ - app/views/nodes/_navigation.html.haml
237
+ - app/views/nodes/show.html.haml
238
+ - app/views/nodes/_resource.html.haml
239
+ - app/views/nodes/index.html.haml
240
+ - app/views/nodes/_action.html.haml
241
+ - app/views/nodes/_form.html.haml
242
+ - app/views/nodes/edit.html.haml
243
+ - app/views/exceptions/not_acceptable.html.erb
244
+ - app/views/exceptions/not_found.html.erb
245
+ - app/views/exceptions/bad_request.json.erb
246
+ - app/views/exceptions/internal_server_error.html.erb
247
+ - app/views/exceptions/standard_error.html.erb
248
+ - app/views/exceptions/admin_access_required.html.haml
249
+ - app/views/databags/new.html.haml
250
+ - app/views/databags/_navigation.html.haml
251
+ - app/views/databags/show.html.haml
252
+ - app/views/databags/index.html.haml
253
+ - app/views/databags/_item_navigation.html.haml
254
+ - app/views/databags/_form.html.haml
255
+ - app/views/databags/edit.html.haml
256
+ - app/views/search/show.html.haml
257
+ - app/views/search/index.html.haml
258
+ - app/views/search/_search_form.html.haml
259
+ - app/views/search_entries/show.html.haml
260
+ - app/views/search_entries/index.html.haml
261
+ - app/views/databag_items/new.html.haml
262
+ - app/views/databag_items/_navigation.html.haml
263
+ - app/views/databag_items/show.html.haml
264
+ - app/views/databag_items/index.html.haml
265
+ - app/views/databag_items/_form.html.haml
266
+ - app/views/databag_items/edit.html.haml
267
+ - app/views/roles/new.html.haml
268
+ - app/views/roles/_navigation.html.haml
269
+ - app/views/roles/show.html.haml
270
+ - app/views/roles/index.html.haml
271
+ - app/views/roles/_form.html.haml
272
+ - app/views/roles/edit.html.haml
273
+ - app/controllers/search.rb
274
+ - app/controllers/exceptions.rb
275
+ - app/controllers/nodes.rb
195
276
  - app/controllers/application.rb
196
- - app/controllers/clients.rb
197
- - app/controllers/cookbook_attributes.rb
198
- - app/controllers/cookbook_definitions.rb
199
277
  - app/controllers/cookbook_files.rb
200
- - app/controllers/cookbook_libraries.rb
201
- - app/controllers/cookbook_recipes.rb
202
- - app/controllers/cookbook_templates.rb
203
- - app/controllers/cookbooks.rb
204
- - app/controllers/databag_items.rb
205
278
  - app/controllers/databags.rb
206
- - app/controllers/exceptions.rb
207
- - app/controllers/main.rb
208
- - app/controllers/nodes.rb
279
+ - app/controllers/cookbook_definitions.rb
209
280
  - app/controllers/openid_consumer.rb
210
- - app/controllers/roles.rb
211
- - app/controllers/search.rb
281
+ - app/controllers/cookbook_templates.rb
282
+ - app/controllers/main.rb
212
283
  - app/controllers/search_entries.rb
213
284
  - app/controllers/status.rb
285
+ - app/controllers/roles.rb
286
+ - app/controllers/cookbook_recipes.rb
214
287
  - app/controllers/users.rb
215
- - app/helpers/application_helper.rb
288
+ - app/controllers/clients.rb
289
+ - app/controllers/cookbook_attributes.rb
290
+ - app/controllers/databag_items.rb
291
+ - app/controllers/cookbook_libraries.rb
292
+ - app/controllers/cookbooks.rb
216
293
  - app/helpers/cookbook_attributes_helper.rb
217
- - app/helpers/cookbook_definitions_helper.rb
218
- - app/helpers/cookbook_files_helper.rb
294
+ - app/helpers/openid_server_helpers.rb
219
295
  - app/helpers/cookbook_libraries_helper.rb
220
- - app/helpers/cookbook_recipes_helper.rb
221
296
  - app/helpers/cookbook_templates_helper.rb
222
- - app/helpers/exceptions_helper.rb
223
- - app/helpers/global_helpers.rb
224
- - app/helpers/nodes_helper.rb
297
+ - app/helpers/cookbook_files_helper.rb
298
+ - app/helpers/search_entries_helper.rb
225
299
  - app/helpers/openid_consumer_helper.rb
226
- - app/helpers/openid_register_helper.rb
300
+ - app/helpers/application_helper.rb
301
+ - app/helpers/cookbook_definitions_helper.rb
227
302
  - app/helpers/openid_server_helper.rb
228
- - app/helpers/openid_server_helpers.rb
229
303
  - app/helpers/roles_helper.rb
230
- - app/helpers/search_entries_helper.rb
231
- - app/helpers/search_helper.rb
304
+ - app/helpers/openid_register_helper.rb
305
+ - app/helpers/global_helpers.rb
306
+ - app/helpers/nodes_helper.rb
307
+ - app/helpers/cookbook_recipes_helper.rb
232
308
  - app/helpers/status_helper.rb
233
- - app/views/clients/_form.html.haml
234
- - app/views/clients/_navigation.html.haml
235
- - app/views/clients/edit.html.haml
236
- - app/views/clients/index.html.haml
237
- - app/views/clients/new.html.haml
238
- - app/views/clients/show.html.haml
239
- - app/views/cookbooks/index.html.haml
240
- - app/views/cookbooks/show.html.haml
241
- - app/views/databag_items/_form.html.haml
242
- - app/views/databag_items/_navigation.html.haml
243
- - app/views/databag_items/edit.html.haml
244
- - app/views/databag_items/index.html.haml
245
- - app/views/databag_items/new.html.haml
246
- - app/views/databag_items/show.html.haml
247
- - app/views/databags/_form.html.haml
248
- - app/views/databags/_item_navigation.html.haml
249
- - app/views/databags/_navigation.html.haml
250
- - app/views/databags/edit.html.haml
251
- - app/views/databags/index.html.haml
252
- - app/views/databags/new.html.haml
253
- - app/views/databags/show.html.haml
254
- - app/views/exceptions/admin_access_required.html.haml
255
- - app/views/exceptions/bad_request.json.erb
256
- - app/views/exceptions/internal_server_error.html.erb
257
- - app/views/exceptions/not_acceptable.html.erb
258
- - app/views/exceptions/not_found.html.erb
259
- - app/views/exceptions/standard_error.html.erb
260
- - app/views/layout/_jsonedit.html.haml
261
- - app/views/layout/application.html.haml
262
- - app/views/layout/login.html.haml
263
- - app/views/main/index.html.erb
264
- - app/views/nodes/_action.html.haml
265
- - app/views/nodes/_form.html.haml
266
- - app/views/nodes/_navigation.html.haml
267
- - app/views/nodes/_resource.html.haml
268
- - app/views/nodes/edit.html.haml
269
- - app/views/nodes/index.html.haml
270
- - app/views/nodes/new.html.haml
271
- - app/views/nodes/show.html.haml
272
- - app/views/openid_consumer/index.html.haml
273
- - app/views/openid_consumer/start.html.haml
274
- - app/views/openid_login/index.html.haml
275
- - app/views/openid_register/index.html.haml
276
- - app/views/openid_register/show.html.haml
277
- - app/views/roles/_form.html.haml
278
- - app/views/roles/_navigation.html.haml
279
- - app/views/roles/edit.html.haml
280
- - app/views/roles/index.html.haml
281
- - app/views/roles/new.html.haml
282
- - app/views/roles/show.html.haml
283
- - app/views/search/_search_form.html.haml
284
- - app/views/search/index.html.haml
285
- - app/views/search/show.html.haml
286
- - app/views/search_entries/index.html.haml
287
- - app/views/search_entries/show.html.haml
288
- - app/views/status/index.html.haml
289
- - app/views/users/_form.html.haml
290
- - app/views/users/_navigation.html.haml
291
- - app/views/users/edit.html.haml
292
- - app/views/users/index.html.haml
293
- - app/views/users/login.html.haml
294
- - app/views/users/new.html.haml
295
- - app/views/users/show.html.haml
296
- - app/views/users/start.html.haml
297
- - public/facebox/b.png
298
- - public/facebox/bl.png
309
+ - app/helpers/exceptions_helper.rb
310
+ - app/helpers/search_helper.rb
311
+ - public/facebox/tr.png
312
+ - public/facebox/facebox.js
299
313
  - public/facebox/br.png
300
- - public/facebox/closelabel.gif
301
314
  - public/facebox/facebox.css
302
- - public/facebox/facebox.js
303
- - public/facebox/loading.gif
304
- - public/facebox/README.txt
315
+ - public/facebox/closelabel.gif
305
316
  - public/facebox/tl.png
306
- - public/facebox/tr.png
307
- - public/images/avatar.png
308
- - public/images/black_big.png
309
- - public/images/indicator.gif
310
- - public/images/jsonedit/add2.png
311
- - public/images/jsonedit/build-button.png
312
- - public/images/jsonedit/bullet.gif
313
- - public/images/jsonedit/bullet_orange.png
314
- - public/images/jsonedit/cross.png
315
- - public/images/jsonedit/delete.png
316
- - public/images/jsonedit/deleted.png
317
- - public/images/jsonedit/json.jpg
318
- - public/images/jsonedit/label.gif
319
- - public/images/jsonedit/minus.gif
320
- - public/images/jsonedit/pixel.gif
321
- - public/images/jsonedit/plus.gif
322
- - public/images/jsonedit/saved.png
323
- - public/images/jsonedit/table_refresh.png
324
- - public/images/jsonedit/value.gif
325
- - public/images/merb.jpg
326
- - public/images/toggle-collapse-dark.png
327
- - public/images/toggle-collapse-light.png
328
- - public/images/toggle-collapse.gif
329
- - public/images/toggle-expand-dark.png
330
- - public/images/toggle-expand-light.png
331
- - public/images/toggle-expand.gif
317
+ - public/facebox/README.txt
318
+ - public/facebox/b.png
319
+ - public/facebox/bl.png
320
+ - public/facebox/loading.gif
321
+ - public/javascripts/jquery.tools.min.js
322
+ - public/javascripts/jquery-1.3.2.min.js
323
+ - public/javascripts/jquery.livequery.js
324
+ - public/javascripts/json.js
325
+ - public/javascripts/chef.js
326
+ - public/javascripts/yetii-min.js
327
+ - public/javascripts/jquery-ui-1.7.1.custom.min.js
328
+ - public/javascripts/jquery.scrollTo.js
329
+ - public/javascripts/drop_down_menu.js
330
+ - public/javascripts/jsonedit_main.js
331
+ - public/javascripts/jquery.localscroll.js
332
+ - public/javascripts/jquery.jeditable.mini.js
333
+ - public/javascripts/jquery.treeTable.min.js
334
+ - public/javascripts/jquery.editinline.js
335
+ - public/images/treeBuilderImages/Thumbs.db
336
+ - public/images/treeBuilderImages/folderNodeOpenLast.gif
332
337
  - public/images/treeBuilderImages/doc.gif
338
+ - public/images/treeBuilderImages/folderNodeFirst.gif
333
339
  - public/images/treeBuilderImages/docNode.gif
334
340
  - public/images/treeBuilderImages/docNodeLast.gif
341
+ - public/images/treeBuilderImages/folderNodeLast.gif
335
342
  - public/images/treeBuilderImages/docNodeLastFirst.gif
343
+ - public/images/treeBuilderImages/folderNodeOpenLastFirst.gif
344
+ - public/images/treeBuilderImages/vertLine.gif
336
345
  - public/images/treeBuilderImages/folder.gif
337
- - public/images/treeBuilderImages/folderNode.gif
338
- - public/images/treeBuilderImages/folderNodeFirst.gif
339
- - public/images/treeBuilderImages/folderNodeLast.gif
346
+ - public/images/treeBuilderImages/folderOpen.gif
340
347
  - public/images/treeBuilderImages/folderNodeLastFirst.gif
341
348
  - public/images/treeBuilderImages/folderNodeOpen.gif
349
+ - public/images/treeBuilderImages/folderNode.gif
342
350
  - public/images/treeBuilderImages/folderNodeOpenFirst.gif
343
- - public/images/treeBuilderImages/folderNodeOpenLast.gif
344
- - public/images/treeBuilderImages/folderNodeOpenLastFirst.gif
345
- - public/images/treeBuilderImages/folderOpen.gif
346
- - public/images/treeBuilderImages/Thumbs.db
347
- - public/images/treeBuilderImages/vertLine.gif
348
- - public/javascripts/chef.js
349
- - public/javascripts/drop_down_menu.js
350
- - public/javascripts/jquery-1.3.2.min.js
351
- - public/javascripts/jquery-ui-1.7.1.custom.min.js
352
- - public/javascripts/jquery.editinline.js
353
- - public/javascripts/jquery.jeditable.mini.js
354
- - public/javascripts/jquery.livequery.js
355
- - public/javascripts/jquery.localscroll.js
356
- - public/javascripts/jquery.scrollTo.js
357
- - public/javascripts/jquery.tools.min.js
358
- - public/javascripts/jquery.treeTable.min.js
359
- - public/javascripts/json.js
360
- - public/javascripts/jsonedit_main.js
361
- - public/javascripts/yetii-min.js
351
+ - public/images/toggle-collapse-dark.png
352
+ - public/images/avatar.png
353
+ - public/images/toggle-expand-dark.png
354
+ - public/images/black_big.png
355
+ - public/images/jsonedit/json.jpg
356
+ - public/images/jsonedit/bullet_orange.png
357
+ - public/images/jsonedit/plus.gif
358
+ - public/images/jsonedit/label.gif
359
+ - public/images/jsonedit/table_refresh.png
360
+ - public/images/jsonedit/deleted.png
361
+ - public/images/jsonedit/delete.png
362
+ - public/images/jsonedit/minus.gif
363
+ - public/images/jsonedit/value.gif
364
+ - public/images/jsonedit/saved.png
365
+ - public/images/jsonedit/cross.png
366
+ - public/images/jsonedit/build-button.png
367
+ - public/images/jsonedit/pixel.gif
368
+ - public/images/jsonedit/add2.png
369
+ - public/images/jsonedit/bullet.gif
370
+ - public/images/indicator.gif
371
+ - public/images/toggle-expand-light.png
372
+ - public/images/toggle-collapse.gif
373
+ - public/images/toggle-expand.gif
374
+ - public/images/merb.jpg
375
+ - public/images/toggle-collapse-light.png
362
376
  - public/stylesheets/base.css
363
377
  - public/stylesheets/chef.css
364
- - public/stylesheets/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png
365
- - public/stylesheets/images/ui-bg_diagonals-thick_15_444444_40x40.png
366
- - public/stylesheets/images/ui-bg_glass_100_f0f0f0_1x400.png
367
- - public/stylesheets/images/ui-bg_glass_50_99c2ff_1x400.png
368
- - public/stylesheets/images/ui-bg_glass_55_fbf5d0_1x400.png
369
- - public/stylesheets/images/ui-bg_glass_80_e6e6e6_1x400.png
378
+ - public/stylesheets/jsonedit_main.css
370
379
  - public/stylesheets/images/ui-bg_glass_95_fef1ec_1x400.png
371
- - public/stylesheets/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png
372
380
  - public/stylesheets/images/ui-bg_highlight-soft_100_e7eef3_1x100.png
373
- - public/stylesheets/images/ui-icons_222222_256x240.png
374
- - public/stylesheets/images/ui-icons_2694e8_256x240.png
381
+ - public/stylesheets/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png
382
+ - public/stylesheets/images/ui-icons_cd0a0a_256x240.png
375
383
  - public/stylesheets/images/ui-icons_2e83ff_256x240.png
376
- - public/stylesheets/images/ui-icons_72a7cf_256x240.png
384
+ - public/stylesheets/images/ui-icons_2694e8_256x240.png
385
+ - public/stylesheets/images/ui-icons_222222_256x240.png
386
+ - public/stylesheets/images/ui-bg_glass_80_e6e6e6_1x400.png
377
387
  - public/stylesheets/images/ui-icons_888888_256x240.png
378
- - public/stylesheets/images/ui-icons_cd0a0a_256x240.png
388
+ - public/stylesheets/images/ui-bg_glass_50_99c2ff_1x400.png
389
+ - public/stylesheets/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png
379
390
  - public/stylesheets/images/ui-icons_ffffff_256x240.png
380
- - public/stylesheets/jquery-ui-1.7.1.custom.css
381
- - public/stylesheets/jquery.treeTable.css
382
- - public/stylesheets/jsonedit_main.css
383
- - public/stylesheets/themes/bec/style.css
384
- - public/stylesheets/themes/bec-green/style.css
385
- - public/stylesheets/themes/blue/style.css
391
+ - public/stylesheets/images/ui-icons_72a7cf_256x240.png
392
+ - public/stylesheets/images/ui-bg_diagonals-thick_15_444444_40x40.png
393
+ - public/stylesheets/images/ui-bg_glass_55_fbf5d0_1x400.png
394
+ - public/stylesheets/images/ui-bg_glass_100_f0f0f0_1x400.png
386
395
  - public/stylesheets/themes/default/style.css
387
- - public/stylesheets/themes/djime-cerulean/style.css
388
396
  - public/stylesheets/themes/kathleene/style.css
389
- - public/stylesheets/themes/orange/style.css
397
+ - public/stylesheets/themes/djime-cerulean/style.css
398
+ - public/stylesheets/themes/blue/style.css
399
+ - public/stylesheets/themes/bec-green/style.css
390
400
  - public/stylesheets/themes/reidb-greenish/style.css
401
+ - public/stylesheets/themes/orange/style.css
402
+ - public/stylesheets/themes/bec/style.css
403
+ - public/stylesheets/jquery.treeTable.css
404
+ - public/stylesheets/jquery-ui-1.7.1.custom.css
391
405
  has_rdoc: true
392
406
  homepage: http://wiki.opscode.com/display/chef
393
407
  licenses: []
@@ -402,17 +416,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
402
416
  requirements:
403
417
  - - ">="
404
418
  - !ruby/object:Gem::Version
419
+ hash: 3
405
420
  segments:
406
421
  - 0
407
422
  version: "0"
408
423
  required_rubygems_version: !ruby/object:Gem::Requirement
409
424
  none: false
410
425
  requirements:
411
- - - ">="
426
+ - - ">"
412
427
  - !ruby/object:Gem::Version
428
+ hash: 25
413
429
  segments:
414
- - 0
415
- version: "0"
430
+ - 1
431
+ - 3
432
+ - 1
433
+ version: 1.3.1
416
434
  requirements: []
417
435
 
418
436
  rubyforge_project: