deltacloud-core 0.0.9 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/deltacloud.rb +1 -0
- data/lib/deltacloud/backend_capability.rb +21 -0
- data/lib/deltacloud/base_driver/base_driver.rb +6 -0
- data/lib/deltacloud/base_driver/features.rb +16 -0
- data/lib/deltacloud/base_driver/mock_driver.rb +25 -5
- data/lib/deltacloud/drivers/ec2/ec2_driver.rb +137 -15
- data/lib/deltacloud/drivers/gogrid/gogrid_client.rb +4 -7
- data/lib/deltacloud/drivers/gogrid/gogrid_driver.rb +116 -3
- data/lib/deltacloud/drivers/mock/mock_driver.rb +56 -2
- data/lib/deltacloud/drivers/rhevm/rhevm_driver.rb +5 -19
- data/lib/deltacloud/helpers/application_helper.rb +22 -2
- data/lib/deltacloud/models/instance.rb +22 -5
- data/lib/deltacloud/models/key.rb +16 -0
- data/lib/deltacloud/models/{tag.rb → load_balancer.rb} +14 -18
- data/lib/sinatra/rabbit.rb +3 -0
- data/parse.rb +7 -0
- data/public/javascripts/application.js +10 -24
- data/public/stylesheets/compiled/application.css +2 -0
- data/server.rb +141 -15
- data/test.rb +3 -0
- data/views/blobs/new.html.haml +10 -0
- data/views/blobs/show.html.haml +21 -15
- data/views/buckets/index.html.haml +1 -1
- data/views/buckets/show.html.haml +5 -2
- data/views/errors/backend_capability_failure.html.haml +11 -0
- data/views/errors/backend_capability_failure.xml.haml +4 -0
- data/views/errors/not_allowed.html.haml +6 -0
- data/views/errors/not_allowed.xml.haml +2 -0
- data/views/instances/index.html.haml +1 -1
- data/views/instances/new.html.haml +8 -0
- data/views/instances/show.html.haml +1 -1
- data/views/keys/index.html.haml +1 -1
- data/views/load_balancers/index.html.haml +33 -0
- data/views/load_balancers/index.xml.haml +5 -0
- data/views/load_balancers/new.html.haml +38 -0
- data/views/load_balancers/show.html.haml +37 -0
- data/views/load_balancers/show.xml.haml +21 -0
- data/views/storage_snapshots/index.xml.haml +0 -2
- data/views/storage_snapshots/show.xml.haml +0 -2
- data/views/storage_volumes/index.xml.haml +6 -6
- data/views/storage_volumes/show.xml.haml +7 -7
- metadata +48 -36
- data/views/tags/index.html.haml +0 -1
data/test.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
%h1 New Blob
|
2
|
+
|
3
|
+
%form{ :action => bucket_url(@bucket_id), :method => :post, :enctype => 'multipart/form-data'}
|
4
|
+
%label
|
5
|
+
Blob Name:
|
6
|
+
%input{ :name => 'blob_id', :size => 512}/
|
7
|
+
Blob Data:
|
8
|
+
%input{ :type => "file", :name => 'blob_data', :size => 50}/
|
9
|
+
%br
|
10
|
+
%input{ :type => :submit, :name => "commit", :value => "create"}/
|
data/views/blobs/show.html.haml
CHANGED
@@ -3,18 +3,24 @@
|
|
3
3
|
= @blob.id
|
4
4
|
|
5
5
|
%dl
|
6
|
-
%
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
6
|
+
%di
|
7
|
+
%dt Bucket
|
8
|
+
%dd
|
9
|
+
= @blob.bucket
|
10
|
+
%dt Content_Length
|
11
|
+
%dd
|
12
|
+
= @blob.content_length
|
13
|
+
%dt Content_Type
|
14
|
+
%dd
|
15
|
+
= @blob.content_type
|
16
|
+
%dt Last_Modified
|
17
|
+
%dd
|
18
|
+
= @blob.last_modified
|
19
|
+
%dt Content
|
20
|
+
%dd
|
21
|
+
=link_to 'Blob content', bucket_url(@blob.bucket) + '/' + @blob.id + '/content'
|
22
|
+
%dt Delete this Blob
|
23
|
+
%dd
|
24
|
+
%form{ :action => bucket_url(@blob.bucket) + '/' + @blob.id , :method => :post }
|
25
|
+
%input{ :type => "hidden", :name => "_method", :value => "delete"}
|
26
|
+
%input{ :type => :submit, :value => "Delete"}/
|
@@ -14,6 +14,9 @@
|
|
14
14
|
%dd
|
15
15
|
-@bucket.blob_list.each do |blob|
|
16
16
|
= link_to blob, bucket_url(@bucket.name) + '/' + blob
|
17
|
-
%dt
|
17
|
+
%dt Delete bucket (must be empty)
|
18
18
|
%dd
|
19
|
-
|
19
|
+
%dt Create a new blob
|
20
|
+
%dd
|
21
|
+
=link_to 'Create Blob', bucket_url(@bucket.name) + '/new_blob'
|
22
|
+
=link_to_action 'Delete', destroy_bucket_url(@bucket.name), :delete
|
@@ -27,4 +27,4 @@
|
|
27
27
|
= instance.state
|
28
28
|
%td
|
29
29
|
-instance.actions.each do |action|
|
30
|
-
=
|
30
|
+
=link_to_action action, self.send(:"#{action}_instance_url", instance.id), instance_action_method(action)
|
@@ -9,6 +9,14 @@
|
|
9
9
|
%label
|
10
10
|
Instance Name:
|
11
11
|
%input{ :name => 'name', :size => 30 }/
|
12
|
+
-if driver_has_feature?(:register_to_load_balancer)
|
13
|
+
%p
|
14
|
+
%label
|
15
|
+
Assign to load balancer:
|
16
|
+
%select{:name => 'load_balancer_id'}
|
17
|
+
%option{:value => ""}
|
18
|
+
- @load_balancers.each do |load_balancer|
|
19
|
+
%option{:value => load_balancer.id} #{load_balancer.id}
|
12
20
|
-if driver_has_feature?(:authentication_key)
|
13
21
|
%p
|
14
22
|
%label
|
@@ -40,4 +40,4 @@
|
|
40
40
|
%dt
|
41
41
|
%dd
|
42
42
|
-@instance.actions.each do |action|
|
43
|
-
=
|
43
|
+
=link_to_action action, self.send(:"#{action}_instance_url", @instance.id), instance_action_method(action)
|
data/views/keys/index.html.haml
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
= "#{key.username} - #{key.password}"
|
19
19
|
%td
|
20
20
|
- if driver.respond_to?(:destroy_key)
|
21
|
-
=
|
21
|
+
=link_to_action 'Destroy', destroy_key_url(key.id), :delete
|
22
22
|
%tfoot
|
23
23
|
- if driver.respond_to?(:create_key)
|
24
24
|
%tr
|
@@ -0,0 +1,33 @@
|
|
1
|
+
%h1 Load Balancers
|
2
|
+
|
3
|
+
%table.display
|
4
|
+
%thead
|
5
|
+
%tr
|
6
|
+
%th ID
|
7
|
+
%th Hostname
|
8
|
+
%th Realm
|
9
|
+
%th Balancer port
|
10
|
+
%th Instances port
|
11
|
+
%th Actions
|
12
|
+
%tbody
|
13
|
+
- @elements.each do |balancer|
|
14
|
+
%tr
|
15
|
+
%td
|
16
|
+
= link_to balancer.id, load_balancer_url( balancer.id )
|
17
|
+
%td
|
18
|
+
= balancer.public_addresses.first
|
19
|
+
%td
|
20
|
+
= link_to balancer.realms.first.id, realm_url( balancer.realms.first.id )
|
21
|
+
%td
|
22
|
+
- balancer.listeners.each do |listener|
|
23
|
+
="#{listener.protocol}[#{listener.load_balancer_port}]<br/>"
|
24
|
+
%td
|
25
|
+
- balancer.listeners.each do |listener|
|
26
|
+
="#{listener.protocol}[#{listener.load_balancer_port}]<br/>"
|
27
|
+
%td
|
28
|
+
=link_to_action 'Destroy', destroy_load_balancer_url(balancer.id), :delete
|
29
|
+
%tfoot
|
30
|
+
%tr
|
31
|
+
%td{:colspan => 6, :style => "text-align:right;"}
|
32
|
+
=link_to 'Create »', "#{url_for('/api/load_balancers/new')}", :class => 'button'
|
33
|
+
|
@@ -0,0 +1,38 @@
|
|
1
|
+
%h1 New Load Balancer
|
2
|
+
|
3
|
+
%form{ :action => '/api/load_balancers', :method => :post }
|
4
|
+
%p
|
5
|
+
%label
|
6
|
+
Name:
|
7
|
+
%input{ :name => 'name', :size => 30 }/
|
8
|
+
-if @instances
|
9
|
+
%p
|
10
|
+
%label
|
11
|
+
Running instance:
|
12
|
+
%select{ :name => 'instance_id'}
|
13
|
+
- @instances.select{|i| i.state=="RUNNING"}.each do |instance|
|
14
|
+
%option{ :value => instance.id } #{instance.id}
|
15
|
+
%p
|
16
|
+
%label
|
17
|
+
Realm:
|
18
|
+
%select{ :name => 'realm_id'}
|
19
|
+
- @realms.each do |realm|
|
20
|
+
%option{ :value => realm.id } #{realm.id} - #{realm.name}
|
21
|
+
%hr
|
22
|
+
%p
|
23
|
+
%label
|
24
|
+
Protocol:
|
25
|
+
%select{ :name => 'listener_protocol'}
|
26
|
+
%option{ :value => 'HTTP'} HTTP
|
27
|
+
%option{ :value => 'TCP'} TCP
|
28
|
+
%p
|
29
|
+
%label
|
30
|
+
Load balancer port:
|
31
|
+
%input{ :name => "listener_lbr_port", :size => 30}
|
32
|
+
%p
|
33
|
+
%label
|
34
|
+
Instances port:
|
35
|
+
%input{ :name => "listener_inst_port", :size => 30}
|
36
|
+
%p
|
37
|
+
%input{ :type => :submit, :name => "commit", :value => "create" }/
|
38
|
+
|
@@ -0,0 +1,37 @@
|
|
1
|
+
%h1
|
2
|
+
= @load_balancer.id
|
3
|
+
|
4
|
+
%dl
|
5
|
+
%di
|
6
|
+
%dt Public addresses
|
7
|
+
%dd
|
8
|
+
= @load_balancer.public_addresses.join(',')
|
9
|
+
- if @load_balancer.created_at
|
10
|
+
%dt Created at
|
11
|
+
%dd
|
12
|
+
= @load_balancer.created_at
|
13
|
+
%dt Realms
|
14
|
+
%dd
|
15
|
+
= @load_balancer.realms.collect { |r| "#{r.id} - #{r.name}" }.join(',')
|
16
|
+
%dt Listeners
|
17
|
+
%dd
|
18
|
+
- @load_balancer.listeners.each do |listener|
|
19
|
+
="Load balancer port: #{listener.load_balancer_port}"
|
20
|
+
%br
|
21
|
+
="Instance port: #{listener.instance_port}"
|
22
|
+
%br
|
23
|
+
- if @load_balancer.instances.class.eql?(Array)
|
24
|
+
%dt Instances
|
25
|
+
- @load_balancer.instances.each do |inst|
|
26
|
+
%dd
|
27
|
+
=inst.id
|
28
|
+
=link_to_action, 'Delete', unregister_load_balancer_url(@load_balancer.id, :instance_id => inst.id), :post
|
29
|
+
|
30
|
+
%form{:action => url_for("/api/load_balancers/#{@load_balancer.id}/register"), :method => :post}
|
31
|
+
%p
|
32
|
+
%strong Add instances to load balancer
|
33
|
+
%p
|
34
|
+
%label Instance
|
35
|
+
%select{:name => :instance_id, :id => "list_instances"}
|
36
|
+
%input{:type => :submit, :value => "Assign"}
|
37
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
- unless defined?(partial)
|
2
|
+
!!! XML
|
3
|
+
%load_balancer{ :href => key_url(@load_balancer.id), :id => @load_balancer.id}
|
4
|
+
%actions
|
5
|
+
%link{ :rel => "destroy", :method => "delete", :href => destroy_load_balancer_url(@load_balancer.id)}
|
6
|
+
%public_addresses
|
7
|
+
- @load_balancer.public_addresses.each do |address|
|
8
|
+
%address #{address}
|
9
|
+
%created_at<
|
10
|
+
= @load_balancer.created_at
|
11
|
+
%realm{ :href => realm_url(@load_balancer.realms.first.id), :id => @load_balancer.realms.first.id}
|
12
|
+
%listeners
|
13
|
+
- @load_balancer.listeners.each do |listener|
|
14
|
+
%listener{ :protocol => listener.protocol}
|
15
|
+
%load_balancer_port #{listener.load_balancer_port}
|
16
|
+
%instance_port #{listener.instance_port}
|
17
|
+
%instances
|
18
|
+
- @load_balancer.instances.each do |instance|
|
19
|
+
%instance{:href => instance_url(instance.id), :id => instance.id}
|
20
|
+
%link{:rel => "unregister", :href => unregister_load_balancer_url(@load_balancer.id, { :instance_id => instance.id})}
|
21
|
+
|
@@ -2,6 +2,4 @@
|
|
2
2
|
%storage_snapshot{:href => storage_snapshot_url(@storage_snapshot.id), :id => @storage_snapshot.id }
|
3
3
|
%created<
|
4
4
|
=@storage_snapshot.created
|
5
|
-
%state<
|
6
|
-
=@storage_snapshot.state
|
7
5
|
%storage_volume{:href => storage_volume_url(@storage_snapshot.storage_volume_id), :id => @storage_snapshot.storage_volume_id}
|
@@ -4,10 +4,10 @@
|
|
4
4
|
%storage_volume{ :href => storage_volume_url(volume.id), :id => volume.id }
|
5
5
|
%created<
|
6
6
|
=volume.created
|
7
|
-
%capacity<
|
8
|
-
=volume.capacity
|
9
|
-
- unless volume.device.nil?
|
10
|
-
%device<
|
11
|
-
=volume.device
|
7
|
+
%capacity{ :unit => "GB" }<
|
8
|
+
= volume.capacity
|
12
9
|
- unless volume.instance_id.nil?
|
13
|
-
%
|
10
|
+
%mount
|
11
|
+
%instance{:href => instance_url(volume.instance_id), :id => volume.instance_id}
|
12
|
+
- unless volume.device.nil?
|
13
|
+
%device{ :name => volume.device }
|
@@ -2,10 +2,10 @@
|
|
2
2
|
%storage_volume{ :href => storage_volume_url(@storage_volume.id), :id => @storage_volume.id}
|
3
3
|
%created<
|
4
4
|
=@storage_volume.created
|
5
|
-
%capacity<
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
5
|
+
%capacity{ :unit => "GB" }<
|
6
|
+
= @storage_volume.capacity
|
7
|
+
- unless @storage_volume.instance_id.nil?
|
8
|
+
%mount
|
9
|
+
%instance{:href => @storage_volume.instance_id, :id => @storage_volume.instance_id}
|
10
|
+
- unless @storage_volume.device.nil?
|
11
|
+
%device{ :name => @storage_volume.device }
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deltacloud-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
+
- 1
|
8
9
|
- 0
|
9
|
-
|
10
|
-
version: 0.0.9
|
10
|
+
version: 0.1.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Red Hat, Inc.
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-11-26 00:00:00 +01:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -205,29 +205,29 @@ extra_rdoc_files:
|
|
205
205
|
files:
|
206
206
|
- Rakefile
|
207
207
|
- config.ru
|
208
|
+
- parse.rb
|
208
209
|
- deltacloud.rb
|
210
|
+
- test.rb
|
209
211
|
- server.rb
|
210
212
|
- support/fedora/rubygem-deltacloud-core.spec
|
211
213
|
- support/fedora/deltacloudd
|
212
|
-
- lib/sinatra/lazy_auth.rb
|
213
214
|
- lib/sinatra/accept_media_types.rb
|
215
|
+
- lib/sinatra/respond_to.rb
|
214
216
|
- lib/sinatra/static_assets.rb
|
215
217
|
- lib/sinatra/url_for.rb
|
218
|
+
- lib/sinatra/lazy_auth.rb
|
216
219
|
- lib/sinatra/rabbit.rb
|
217
|
-
- lib/sinatra/respond_to.rb
|
218
220
|
- lib/deltacloud/models/base_model.rb
|
219
|
-
- lib/deltacloud/models/
|
220
|
-
- lib/deltacloud/models/
|
221
|
+
- lib/deltacloud/models/blob.rb
|
222
|
+
- lib/deltacloud/models/bucket.rb
|
221
223
|
- lib/deltacloud/models/instance_profile.rb
|
222
|
-
- lib/deltacloud/models/
|
224
|
+
- lib/deltacloud/models/realm.rb
|
223
225
|
- lib/deltacloud/models/storage_snapshot.rb
|
226
|
+
- lib/deltacloud/models/load_balancer.rb
|
224
227
|
- lib/deltacloud/models/image.rb
|
225
|
-
- lib/deltacloud/models/
|
226
|
-
- lib/deltacloud/models/tag.rb
|
227
|
-
- lib/deltacloud/models/bucket.rb
|
228
|
+
- lib/deltacloud/models/instance.rb
|
228
229
|
- lib/deltacloud/models/key.rb
|
229
|
-
- lib/deltacloud/
|
230
|
-
- lib/deltacloud/helpers.rb
|
230
|
+
- lib/deltacloud/models/storage_volume.rb
|
231
231
|
- lib/deltacloud/drivers/ec2/ec2_mock_driver.rb
|
232
232
|
- lib/deltacloud/drivers/ec2/ec2_driver.rb
|
233
233
|
- lib/deltacloud/drivers/terremark/terremark_driver.rb
|
@@ -240,21 +240,24 @@ files:
|
|
240
240
|
- lib/deltacloud/drivers/mock/mock_driver.rb
|
241
241
|
- lib/deltacloud/drivers/rimuhosting/rimuhosting_driver.rb
|
242
242
|
- lib/deltacloud/drivers/rimuhosting/rimuhosting_client.rb
|
243
|
-
- lib/deltacloud/drivers/rackspace/rackspace_client.rb
|
244
243
|
- lib/deltacloud/drivers/rackspace/rackspace_driver.rb
|
244
|
+
- lib/deltacloud/drivers/rackspace/rackspace_client.rb
|
245
245
|
- lib/deltacloud/drivers/rhevm/rhevm_driver.rb
|
246
246
|
- lib/deltacloud/drivers/azure/azure_driver.rb
|
247
|
-
- lib/deltacloud/hardware_profile.rb
|
248
|
-
- lib/deltacloud/validation.rb
|
249
247
|
- lib/deltacloud/base_driver/base_driver.rb
|
250
248
|
- lib/deltacloud/base_driver/features.rb
|
251
249
|
- lib/deltacloud/base_driver/mock_driver.rb
|
252
|
-
- lib/deltacloud/helpers/
|
250
|
+
- lib/deltacloud/helpers/blob_stream.rb
|
253
251
|
- lib/deltacloud/helpers/conversion_helper.rb
|
252
|
+
- lib/deltacloud/helpers/hardware_profiles_helper.rb
|
254
253
|
- lib/deltacloud/helpers/application_helper.rb
|
255
|
-
- lib/deltacloud/helpers/blob_stream.rb
|
256
|
-
- lib/deltacloud/state_machine.rb
|
257
254
|
- lib/deltacloud/base_driver.rb
|
255
|
+
- lib/deltacloud/hardware_profile.rb
|
256
|
+
- lib/deltacloud/helpers.rb
|
257
|
+
- lib/deltacloud/method_serializer.rb
|
258
|
+
- lib/deltacloud/state_machine.rb
|
259
|
+
- lib/deltacloud/validation.rb
|
260
|
+
- lib/deltacloud/backend_capability.rb
|
258
261
|
- lib/drivers.rb
|
259
262
|
- lib/deltacloud/drivers/mock/data/storage_volumes/vol1.yml
|
260
263
|
- lib/deltacloud/drivers/mock/data/storage_volumes/vol3.yml
|
@@ -278,41 +281,42 @@ files:
|
|
278
281
|
- views/instance_states/show.xml.haml
|
279
282
|
- views/instance_states/show.html.haml
|
280
283
|
- views/root/index.html.haml
|
281
|
-
- views/storage_volumes/show.xml.haml
|
282
|
-
- views/storage_volumes/index.xml.haml
|
283
|
-
- views/storage_volumes/index.html.haml
|
284
284
|
- views/storage_volumes/show.html.haml
|
285
|
+
- views/storage_volumes/index.html.haml
|
286
|
+
- views/storage_volumes/index.xml.haml
|
287
|
+
- views/storage_volumes/show.xml.haml
|
285
288
|
- views/accounts/index.html.haml
|
286
289
|
- views/accounts/show.html.haml
|
287
|
-
- views/storage_snapshots/show.
|
290
|
+
- views/storage_snapshots/show.html.haml
|
288
291
|
- views/storage_snapshots/index.xml.haml
|
292
|
+
- views/storage_snapshots/show.xml.haml
|
289
293
|
- views/storage_snapshots/index.html.haml
|
290
|
-
- views/storage_snapshots/show.html.haml
|
291
|
-
- views/layout.html.haml
|
292
294
|
- views/errors/not_found.html.haml
|
293
295
|
- views/errors/auth_exception.xml.haml
|
294
296
|
- views/errors/validation_failure.xml.haml
|
295
297
|
- views/errors/not_found.xml.haml
|
296
|
-
- views/errors/backend_error.xml.haml
|
297
298
|
- views/errors/auth_exception.html.haml
|
298
299
|
- views/errors/backend_error.html.haml
|
299
300
|
- views/errors/validation_failure.html.haml
|
301
|
+
- views/errors/backend_capability_failure.html.haml
|
302
|
+
- views/errors/backend_capability_failure.xml.haml
|
303
|
+
- views/errors/not_allowed.html.haml
|
304
|
+
- views/errors/not_allowed.xml.haml
|
305
|
+
- views/errors/backend_error.xml.haml
|
300
306
|
- views/images/show.xml.haml
|
301
307
|
- views/images/index.xml.haml
|
302
308
|
- views/images/index.html.haml
|
303
309
|
- views/images/show.html.haml
|
304
|
-
- views/api/show.html.haml
|
305
|
-
- views/api/show.xml.haml
|
306
310
|
- views/keys/new.html.haml
|
307
311
|
- views/keys/index.xml.haml
|
308
|
-
- views/keys/index.html.haml
|
309
312
|
- views/keys/show.html.haml
|
310
313
|
- views/keys/show.xml.haml
|
314
|
+
- views/keys/index.html.haml
|
311
315
|
- views/instances/show.xml.haml
|
312
316
|
- views/instances/index.xml.haml
|
317
|
+
- views/instances/new.html.haml
|
313
318
|
- views/instances/index.html.haml
|
314
319
|
- views/instances/show.html.haml
|
315
|
-
- views/instances/new.html.haml
|
316
320
|
- views/hardware_profiles/show.xml.haml
|
317
321
|
- views/hardware_profiles/index.xml.haml
|
318
322
|
- views/hardware_profiles/index.html.haml
|
@@ -327,14 +331,22 @@ files:
|
|
327
331
|
- views/realms/index.xml.haml
|
328
332
|
- views/realms/show.html.haml
|
329
333
|
- views/realms/index.html.haml
|
330
|
-
- views/blobs/show.html.haml
|
331
334
|
- views/blobs/show.xml.haml
|
332
|
-
- views/
|
335
|
+
- views/blobs/new.html.haml
|
336
|
+
- views/blobs/show.html.haml
|
333
337
|
- views/buckets/index.xml.haml
|
334
338
|
- views/buckets/new.html.haml
|
335
|
-
- views/buckets/show.html.haml
|
336
339
|
- views/buckets/show.xml.haml
|
337
|
-
- views/
|
340
|
+
- views/buckets/index.html.haml
|
341
|
+
- views/buckets/show.html.haml
|
342
|
+
- views/load_balancers/index.xml.haml
|
343
|
+
- views/load_balancers/new.html.haml
|
344
|
+
- views/load_balancers/show.xml.haml
|
345
|
+
- views/load_balancers/index.html.haml
|
346
|
+
- views/load_balancers/show.html.haml
|
347
|
+
- views/api/show.html.haml
|
348
|
+
- views/api/show.xml.haml
|
349
|
+
- views/layout.html.haml
|
338
350
|
- views/instance_states/show.png.erb
|
339
351
|
- public/favicon.ico
|
340
352
|
- public/images/topbar-bg.png
|
@@ -344,9 +356,9 @@ files:
|
|
344
356
|
- public/javascripts/jquery-1.4.2.min.js
|
345
357
|
- public/javascripts/application.js
|
346
358
|
- public/stylesheets/compiled/ie.css
|
347
|
-
- public/stylesheets/compiled/application.css
|
348
359
|
- public/stylesheets/compiled/print.css
|
349
360
|
- public/stylesheets/compiled/screen.css
|
361
|
+
- public/stylesheets/compiled/application.css
|
350
362
|
- bin/deltacloudd
|
351
363
|
- COPYING
|
352
364
|
has_rdoc: true
|