deltacloud-core 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +145 -0
- data/NOTICE +10 -1
- data/Rakefile +50 -2
- data/bin/deltacloudd +111 -14
- data/config/addresses.xml +14 -0
- data/config/condor.yaml +30 -0
- data/config/drivers/azure.yaml +3 -0
- data/config/drivers/condor.yaml +3 -0
- data/config/{drivers.yaml → drivers/ec2.yaml} +5 -34
- data/config/drivers/eucalyptus.yaml +8 -0
- data/config/drivers/gogrid.yaml +3 -0
- data/config/drivers/mock.yaml +3 -0
- data/config/drivers/opennebula.yaml +4 -0
- data/config/drivers/rackspace.yaml +3 -0
- data/config/drivers/rhevm.yaml +3 -0
- data/config/drivers/rimuhosting.yaml +3 -0
- data/config/drivers/sbc.yaml +2 -0
- data/config/drivers/terremark.yaml +3 -0
- data/config/drivers/vsphere.yaml +8 -0
- data/deltacloud-core.gemspec +13 -5
- data/deltacloud.rb +4 -2
- data/lib/deltacloud/backend_capability.rb +2 -2
- data/lib/deltacloud/base_driver/base_driver.rb +23 -52
- data/lib/deltacloud/base_driver/exceptions.rb +168 -0
- data/lib/deltacloud/base_driver/features.rb +31 -12
- data/lib/deltacloud/base_driver/mock_driver.rb +2 -1
- data/lib/deltacloud/core_ext/string.rb +2 -0
- data/lib/deltacloud/drivers/azure/azure_driver.rb +5 -5
- data/lib/deltacloud/drivers/condor/condor_client.rb +273 -0
- data/lib/deltacloud/drivers/condor/condor_driver.rb +236 -0
- data/lib/deltacloud/drivers/condor/ip_agents/confserver.rb +75 -0
- data/lib/deltacloud/drivers/condor/ip_agents/default.rb +84 -0
- data/lib/deltacloud/drivers/ec2/ec2_driver.rb +326 -95
- data/lib/deltacloud/drivers/ec2/ec2_mock_driver.rb +3 -3
- data/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb +40 -8
- data/lib/deltacloud/drivers/gogrid/gogrid_client.rb +7 -7
- data/lib/deltacloud/drivers/gogrid/gogrid_driver.rb +42 -25
- data/lib/deltacloud/drivers/mock/data/{buckets/blobs → blobs}/blob1.yml +6 -4
- data/lib/deltacloud/drivers/mock/data/{buckets/blobs → blobs}/blob2.yml +7 -5
- data/lib/deltacloud/drivers/mock/data/{buckets/blobs → blobs}/blob3.yml +6 -4
- data/lib/deltacloud/drivers/mock/data/{buckets/blobs → blobs}/blob4.yml +6 -4
- data/lib/deltacloud/drivers/mock/data/{buckets/blobs → blobs}/blob5.yml +6 -4
- data/lib/deltacloud/drivers/mock/data/buckets/bucket1.yml +7 -1
- data/lib/deltacloud/drivers/mock/data/buckets/bucket2.yml +6 -1
- data/lib/deltacloud/drivers/mock/data/images/img1.yml +6 -2
- data/lib/deltacloud/drivers/mock/data/images/img2.yml +6 -2
- data/lib/deltacloud/drivers/mock/data/images/img3.yml +6 -2
- data/lib/deltacloud/drivers/mock/data/instances/inst0.yml +11 -10
- data/lib/deltacloud/drivers/mock/data/instances/inst1.yml +14 -7
- data/lib/deltacloud/drivers/mock/data/instances/inst2.yml +14 -7
- data/lib/deltacloud/drivers/mock/data/storage_snapshots/snap1.yml +3 -2
- data/lib/deltacloud/drivers/mock/data/storage_snapshots/snap2.yml +3 -2
- data/lib/deltacloud/drivers/mock/data/storage_snapshots/snap3.yml +3 -2
- data/lib/deltacloud/drivers/mock/data/storage_volumes/vol1.yml +4 -3
- data/lib/deltacloud/drivers/mock/data/storage_volumes/vol2.yml +4 -3
- data/lib/deltacloud/drivers/mock/data/storage_volumes/vol3.yml +4 -3
- data/lib/deltacloud/drivers/mock/mock_client.rb +101 -0
- data/lib/deltacloud/drivers/mock/mock_driver.rb +367 -429
- data/lib/deltacloud/drivers/opennebula/opennebula_driver.rb +6 -0
- data/lib/deltacloud/drivers/rackspace/rackspace_driver.rb +59 -9
- data/lib/deltacloud/drivers/rhevm/rhevm_client.rb +62 -8
- data/lib/deltacloud/drivers/rhevm/rhevm_driver.rb +100 -45
- data/lib/deltacloud/drivers/rimuhosting/rimuhosting_client.rb +3 -2
- data/lib/deltacloud/drivers/rimuhosting/rimuhosting_driver.rb +8 -11
- data/lib/deltacloud/drivers/sbc/sbc_client.rb +6 -6
- data/lib/deltacloud/drivers/sbc/sbc_driver.rb +16 -0
- data/lib/deltacloud/drivers/terremark/terremark_driver.rb +17 -12
- data/lib/deltacloud/drivers/vsphere/vsphere_client.rb +140 -0
- data/lib/deltacloud/drivers/vsphere/vsphere_driver.rb +405 -0
- data/lib/deltacloud/drivers/vsphere/vsphere_filemanager.rb +182 -0
- data/lib/deltacloud/hardware_profile.rb +1 -1
- data/lib/deltacloud/helpers.rb +2 -1
- data/lib/deltacloud/helpers/application_helper.rb +92 -20
- data/lib/deltacloud/helpers/blob_stream.rb +160 -12
- data/lib/deltacloud/helpers/conversion_helper.rb +6 -2
- data/lib/deltacloud/helpers/json_helper.rb +31 -0
- data/lib/deltacloud/models/address.rb +28 -0
- data/lib/deltacloud/models/base_model.rb +5 -1
- data/lib/deltacloud/models/blob.rb +1 -1
- data/lib/deltacloud/models/bucket.rb +10 -0
- data/lib/deltacloud/models/firewall.rb +22 -0
- data/lib/deltacloud/models/firewall_rule.rb +23 -0
- data/lib/deltacloud/models/image.rb +12 -0
- data/lib/deltacloud/models/instance.rb +20 -2
- data/lib/deltacloud/models/key.rb +1 -1
- data/lib/deltacloud/runner.rb +3 -3
- data/lib/deltacloud/validation.rb +3 -7
- data/lib/drivers.rb +7 -1
- data/lib/sinatra/body_proxy.rb +34 -0
- data/lib/sinatra/lazy_auth.rb +5 -0
- data/lib/sinatra/rabbit.rb +54 -31
- data/lib/sinatra/rack_accept.rb +157 -0
- data/lib/sinatra/rack_date.rb +38 -0
- data/lib/sinatra/rack_etag.rb +2 -3
- data/lib/sinatra/rack_matrix_params.rb +51 -29
- data/lib/sinatra/rack_runtime.rb +1 -1
- data/lib/sinatra/rack_syslog.rb +86 -0
- data/lib/sinatra/url_for.rb +14 -1
- data/public/images/address.png +0 -0
- data/public/images/balancer.png +0 -0
- data/public/images/blob.png +0 -0
- data/public/images/bucket.png +0 -0
- data/public/images/cloud.png +0 -0
- data/public/images/firewall.png +0 -0
- data/public/images/image.png +0 -0
- data/public/images/key.png +0 -0
- data/public/images/machine.png +0 -0
- data/public/images/profile.png +0 -0
- data/public/images/realm.png +0 -0
- data/public/images/snapshot.png +0 -0
- data/public/images/volume.png +0 -0
- data/public/javascripts/application.js +119 -16
- data/public/javascripts/jquery.min.js +18 -0
- data/public/javascripts/jquery.mobile-1.0b1.min.js +146 -0
- data/public/stylesheets/compiled/application.css +8 -0
- data/public/stylesheets/images/ajax-loader.png +0 -0
- data/public/{images → stylesheets/images}/bread-bg.png +0 -0
- data/public/{images → stylesheets/images}/error.png +0 -0
- data/public/{images → stylesheets/images}/grid.png +0 -0
- data/public/stylesheets/images/icon-search-black.png +0 -0
- data/public/stylesheets/images/icons-18-black.png +0 -0
- data/public/stylesheets/images/icons-18-white.png +0 -0
- data/public/stylesheets/images/icons-36-black.png +0 -0
- data/public/stylesheets/images/icons-36-white.png +0 -0
- data/public/{images → stylesheets/images}/logo-wide.png +0 -0
- data/public/{images → stylesheets/images}/pending.png +0 -0
- data/public/{images → stylesheets/images}/rails.png +0 -0
- data/public/{images → stylesheets/images}/running.png +0 -0
- data/public/{images → stylesheets/images}/stopped.png +0 -0
- data/public/{images → stylesheets/images}/topbar-bg.png +0 -0
- data/public/stylesheets/jquery.mobile-1.0b1.min.css +8 -0
- data/public/stylesheets/new.css +53 -0
- data/server.rb +487 -175
- data/support/condor/bash/cached_images.sh +8 -0
- data/support/condor/bash/cloud_exit_hook.sh +17 -0
- data/support/condor/bash/cloud_functions +175 -0
- data/support/condor/bash/cloud_prepare_hook.sh +20 -0
- data/support/condor/bash/libvirt_cloud_script.sh +13 -0
- data/support/condor/config/50condor_cloud.config +37 -0
- data/support/condor/config/50condor_cloud_node.config +37 -0
- data/support/condor/config/condor-cloud +2 -0
- data/support/condor/config/condor_config.local +44 -0
- data/support/fedora/deltacloud-core +48 -26
- data/support/fedora/deltacloud-core-config +26 -0
- data/support/fedora/deltacloud-core.spec +314 -68
- data/support/fedora/deltacloudd-fedora +5 -0
- data/tests/common.rb +34 -4
- data/tests/drivers/mock/api_test.rb +3 -3
- data/tests/drivers/mock/images_test.rb +12 -0
- data/tests/drivers/mock/instances_test.rb +2 -0
- data/tests/rabbit_test.rb +2 -2
- data/views/addresses/_address.html.haml +6 -0
- data/views/addresses/associate.html.haml +12 -0
- data/views/addresses/index.html.haml +9 -0
- data/views/addresses/index.xml.haml +4 -0
- data/views/addresses/show.html.haml +21 -0
- data/views/addresses/show.xml.haml +14 -0
- data/views/api/show.html.haml +6 -11
- data/views/api/show.xml.haml +2 -0
- data/views/blobs/new.html.haml +24 -23
- data/views/blobs/show.html.haml +30 -31
- data/views/buckets/index.html.haml +9 -21
- data/views/buckets/index.xml.haml +3 -7
- data/views/buckets/new.html.haml +13 -12
- data/views/buckets/show.html.haml +22 -22
- data/views/buckets/show.xml.haml +5 -3
- data/views/docs/collection.html.haml +23 -34
- data/views/docs/collection.xml.haml +2 -2
- data/views/docs/index.html.haml +9 -13
- data/views/docs/index.xml.haml +1 -1
- data/views/docs/operation.html.haml +28 -38
- data/views/docs/operation.xml.haml +1 -1
- data/views/drivers/index.html.haml +8 -13
- data/views/drivers/show.html.haml +18 -18
- data/views/error.html.haml +32 -27
- data/views/errors/400.html.haml +41 -0
- data/views/errors/{validation_failure.xml.haml → 400.xml.haml} +0 -4
- data/views/errors/401.html.haml +41 -0
- data/views/errors/{auth_exception.xml.haml → 401.xml.haml} +0 -0
- data/views/errors/403.html.haml +42 -0
- data/views/errors/{not_allowed.xml.haml → 403.xml.haml} +0 -0
- data/views/errors/404.html.haml +29 -0
- data/views/errors/{not_found.xml.haml → 404.xml.haml} +1 -1
- data/views/errors/405.html.haml +29 -0
- data/views/errors/405.xml.haml +5 -0
- data/views/errors/500.html.haml +43 -0
- data/views/errors/500.xml.haml +5 -0
- data/views/errors/502.html.haml +43 -0
- data/views/errors/{backend_error.xml.haml → 502.xml.haml} +1 -2
- data/views/errors/backend_capability_failure.html.haml +27 -9
- data/views/firewalls/index.html.haml +15 -0
- data/views/firewalls/index.xml.haml +28 -0
- data/views/firewalls/new.html.haml +11 -0
- data/views/firewalls/new_rule.html.haml +20 -0
- data/views/firewalls/show.html.haml +42 -0
- data/views/firewalls/show.xml.haml +26 -0
- data/views/hardware_profiles/index.html.haml +15 -23
- data/views/hardware_profiles/show.html.haml +22 -18
- data/views/images/index.html.haml +11 -23
- data/views/images/index.xml.haml +4 -13
- data/views/images/new.html.haml +12 -13
- data/views/images/show.html.haml +26 -20
- data/views/images/show.xml.haml +2 -1
- data/views/instance_states/show.html.haml +21 -25
- data/views/instances/index.html.haml +13 -30
- data/views/instances/index.xml.haml +2 -23
- data/views/instances/new.html.haml +83 -88
- data/views/instances/show.html.haml +53 -55
- data/views/instances/show.xml.haml +12 -10
- data/views/keys/index.html.haml +13 -24
- data/views/keys/new.html.haml +7 -7
- data/views/keys/show.html.haml +26 -21
- data/views/layout.html.haml +28 -27
- data/views/load_balancers/index.html.haml +11 -31
- data/views/load_balancers/index.xml.haml +0 -1
- data/views/load_balancers/new.html.haml +1 -1
- data/views/load_balancers/show.html.haml +33 -34
- data/views/load_balancers/show.xml.haml +2 -2
- data/views/realms/index.html.haml +11 -24
- data/views/realms/index.xml.haml +2 -8
- data/views/realms/show.html.haml +17 -15
- data/views/realms/show.xml.haml +2 -1
- data/views/storage_snapshots/index.html.haml +11 -21
- data/views/storage_snapshots/index.xml.haml +2 -5
- data/views/storage_snapshots/new.html.haml +1 -1
- data/views/storage_snapshots/show.html.haml +21 -13
- data/views/storage_snapshots/show.xml.haml +2 -1
- data/views/storage_volumes/index.html.haml +11 -34
- data/views/storage_volumes/new.html.haml +1 -1
- data/views/storage_volumes/show.html.haml +33 -27
- data/views/storage_volumes/show.xml.haml +2 -1
- metadata +266 -178
- data/lib/sinatra/respond_to.rb +0 -248
- data/support/fedora/deltacloudd +0 -128
- data/support/fedora/rubygem-deltacloud-core.spec +0 -127
- data/views/accounts/index.html.haml +0 -11
- data/views/accounts/show.html.haml +0 -30
- data/views/errors/auth_exception.html.haml +0 -8
- data/views/errors/backend_error.html.haml +0 -22
- data/views/errors/not_allowed.html.haml +0 -6
- data/views/errors/not_found.html.haml +0 -6
- data/views/errors/validation_failure.html.haml +0 -11
@@ -1,23 +1,23 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
= @bucket.id
|
1
|
+
=header "Bucket"
|
2
|
+
=subheader @bucket.id
|
4
3
|
|
5
|
-
%
|
6
|
-
%
|
7
|
-
%
|
8
|
-
%
|
9
|
-
|
10
|
-
%
|
11
|
-
%
|
12
|
-
|
13
|
-
%
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
%
|
21
|
-
%
|
22
|
-
-
|
23
|
-
|
4
|
+
%div{ :'data-role' => :content, :'data-theme' => 'c'}
|
5
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'd'}
|
6
|
+
%li{ :'data-role' => 'list-divider'} Name
|
7
|
+
%li
|
8
|
+
%p{ :'data-role' => 'fieldcontain'}=@bucket.name
|
9
|
+
%li{ :'data-role' => 'list-divider'} Size
|
10
|
+
%li
|
11
|
+
%p{ :'data-role' => 'fieldcontain'}=@bucket.size
|
12
|
+
%li{ :'data-role' => 'list-divider'}
|
13
|
+
Blobs
|
14
|
+
- @bucket.blob_list.each do |blob|
|
15
|
+
%li
|
16
|
+
%a{ :href => bucket_url(@bucket.name) + "/" + blob, :'data-ajax' => 'false'}
|
17
|
+
%img{ :class => 'ui-link-thumb', :src => '/images/blob.png'}
|
18
|
+
%h3=blob
|
19
|
+
%li{ :'data-role' => 'list-divider'} Actions
|
20
|
+
%li
|
21
|
+
%div{ :'data-role' => 'controlgroup', :'data-type' => "horizontal" }
|
22
|
+
%a{ :href => new_blob_form_url(@bucket), :'data-role' => "button", :'data-ajax' => 'false'} Create a new blob
|
23
|
+
=link_to_action 'Delete bucket', destroy_bucket_url(@bucket.name), :delete
|
data/views/buckets/show.xml.haml
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
-
|
1
|
+
- unless defined?(partial)
|
2
|
+
!!! XML
|
2
3
|
%bucket{:href => bucket_url(@bucket.id), :id => @bucket.id}
|
3
4
|
- @bucket.attributes.select{ |attr| attr!=:id }.each do |attribute|
|
4
5
|
- unless attribute == :blob_list
|
5
6
|
-haml_tag(attribute, :<) do
|
6
7
|
- haml_concat @bucket.send(attribute)
|
7
|
-
- @bucket.blob_list
|
8
|
-
|
8
|
+
- if @bucket.blob_list
|
9
|
+
- @bucket.blob_list.each do |blb|
|
10
|
+
%blob{:id => blb, :href => bucket_url(@bucket.id) +"/#{blb}"}
|
@@ -1,37 +1,26 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
=header "Deltacloud API #{settings.version} documentation", :back => 'false'
|
2
|
+
=subheader @collection.name.to_s.titlecase
|
3
3
|
|
4
|
-
%
|
5
|
-
|
6
|
-
%
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
%
|
11
|
-
|
12
|
-
%
|
13
|
-
%
|
14
|
-
%th Description
|
15
|
-
%tbody
|
4
|
+
%div{ :'data-role' => :content, :'data-theme' => 'c'}
|
5
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'd'}
|
6
|
+
%li{ :'data-role' => 'list-divider'}
|
7
|
+
%h3
|
8
|
+
Collection description:
|
9
|
+
%li
|
10
|
+
%br
|
11
|
+
%p{ :'data-role' => 'fieldcontain'}=@collection.description
|
12
|
+
%li{ :'data-role' => 'list-divider', :'data-divider-theme' => 'a'}
|
13
|
+
%h3 Operations:
|
16
14
|
- @operations.keys.sort_by { |k| k.to_s }.each do |operation|
|
17
|
-
%
|
18
|
-
%
|
19
|
-
|
20
|
-
%
|
21
|
-
|
22
|
-
%
|
23
|
-
|
24
|
-
%table
|
25
|
-
%thead
|
26
|
-
%tr
|
27
|
-
%th Name
|
28
|
-
%th Description
|
29
|
-
%th Modified Operations
|
30
|
-
%tbody
|
15
|
+
%li{ :'data-role' => 'list-divider'}
|
16
|
+
%a{:href => api_url_for("docs/#{@collection.name.to_s}/#{operation}"), :'data-ajax' => 'false'} #{operation}
|
17
|
+
%li
|
18
|
+
%br
|
19
|
+
%p=@operations[operation].description
|
20
|
+
%li{ :'data-role' => 'list-divider', :'data-divider-theme' => 'a'}
|
21
|
+
%h3 Defined features:
|
31
22
|
- @features.sort_by { |f| f.name.to_s }.each do |feature|
|
32
|
-
%
|
33
|
-
|
34
|
-
%
|
35
|
-
%
|
36
|
-
- feature.operations.each do |op|
|
37
|
-
%a{:href => url_for("/api/docs/#{@collection.name.to_s}/#{op.name}")} #{op.name}
|
23
|
+
%li{ :'data-role' => 'list-divider'}=feature.name
|
24
|
+
%li
|
25
|
+
%br
|
26
|
+
%p=feature.description
|
@@ -1,9 +1,9 @@
|
|
1
1
|
%docs{:status => "unsupported"}
|
2
|
-
%collection{:url =>
|
2
|
+
%collection{:url => api_url_for("docs/#{@collection.name}"), :name => "#{@collection.name}"}
|
3
3
|
%description #{@collection.description}
|
4
4
|
%operations
|
5
5
|
- @operations.keys.sort_by { |k| k.to_s }.each do |operation|
|
6
|
-
%operation{:url =>
|
6
|
+
%operation{:url => api_url_for("#{@collection.name.to_s}"), :name => "#{operation}", :href => api_url_for("#{@operations[operation].path}"), :method => "#{@operations[operation].method}"}
|
7
7
|
%description #{@operations[operation].description}
|
8
8
|
- @operations[operation].each_param do |param|
|
9
9
|
%parameter{:name => "#{param.name}", :type => "#{param.type}"}
|
data/views/docs/index.html.haml
CHANGED
@@ -1,15 +1,11 @@
|
|
1
|
-
|
1
|
+
=header "Deltacloud API #{settings.version} documentation", :back => 'false'
|
2
|
+
=subheader "Note: This documentation is autogenerated and thus not supported"
|
2
3
|
|
3
|
-
%
|
4
|
-
|
5
|
-
%table
|
6
|
-
%thead
|
7
|
-
%tr
|
8
|
-
%th Name
|
9
|
-
%th Description
|
10
|
-
%tbody
|
4
|
+
%div{ :'data-role' => :content, :'data-theme' => 'c'}
|
5
|
+
%ul{ :'data-role' => :listview, :'data-inset' => 'true'}
|
11
6
|
- collections.keys.sort_by { |k| k.to_s }.each do |collection|
|
12
|
-
%
|
13
|
-
%
|
14
|
-
%
|
15
|
-
|
7
|
+
%li
|
8
|
+
%a{:href => api_url_for("docs/#{collection}"), :'data-ajax' => 'false'}
|
9
|
+
%h3=collection.to_s.capitalize.tr('_', ' ')
|
10
|
+
%p=collections[collection].description
|
11
|
+
|
data/views/docs/index.xml.haml
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
%docs{:status => "unsupported"}
|
2
2
|
- collections.keys.sort_by { |k| k.to_s }.each do |collection|
|
3
|
-
%collection{:url =>
|
3
|
+
%collection{:url => api_url_for("docs/#{collection}")}
|
4
4
|
%name #{collection}
|
5
5
|
%description #{collections[collection].description}
|
@@ -1,43 +1,33 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
= action_url
|
1
|
+
=header "Deltacloud API #{settings.version} documentation", :back => 'false'
|
2
|
+
=subheader "#{action_method(@operation.name, @collection.name).to_s.upcase} /api/#{@collection.name}/#{@operation.name}"
|
4
3
|
|
5
|
-
%
|
6
|
-
|
4
|
+
%div{ :'data-role' => :content, :'data-theme' => 'c'}
|
5
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'd'}
|
6
|
+
%li{ :'data-role' => 'list-divider'}
|
7
|
+
%h3
|
8
|
+
Description:
|
9
|
+
%li
|
10
|
+
%br
|
11
|
+
%p=@operation.description
|
7
12
|
|
8
|
-
%
|
9
|
-
|
10
|
-
%
|
11
|
-
|
12
|
-
|
13
|
-
%table
|
14
|
-
%thead
|
15
|
-
%tr
|
16
|
-
%th Name
|
17
|
-
%th Type
|
18
|
-
%th Class
|
19
|
-
%th Valid values
|
20
|
-
%th Description
|
21
|
-
%tbody
|
13
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'd'}
|
14
|
+
%li{ :'data-role' => 'list-divider', :'data-divider-theme' => 'a'}
|
15
|
+
%h3 Parameters:
|
22
16
|
- @operation.each_param do |p|
|
23
|
-
%
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
%
|
29
|
-
%
|
17
|
+
%li{ :'data-role' => 'list-divider'}
|
18
|
+
=p.name
|
19
|
+
%span{ :class => 'ui-li-count'}
|
20
|
+
=[p.type,p.klass].join(',')
|
21
|
+
%li
|
22
|
+
%br
|
23
|
+
%p=p.description.empty? ? '<strong>FIXME:</strong> No description for this parameter' : p.description
|
30
24
|
- @features.sort { |a,b| a.name.to_s <=> b.name.to_s }.each do |f|
|
31
|
-
%tr
|
32
|
-
%th{:colspan => 4}
|
33
|
-
Feature #{f.name}
|
34
|
-
%th{:colspan => 1}
|
35
|
-
%em= f.description
|
36
25
|
- f.decl.operation(@operation.name).each_param do |p|
|
37
|
-
%
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
%
|
43
|
-
%
|
26
|
+
%li{ :'data-role' => 'list-divider'}
|
27
|
+
=p.name
|
28
|
+
%span{ :class => 'ui-li-count'}
|
29
|
+
=[p.type,p.klass].join(',')
|
30
|
+
%li
|
31
|
+
%br
|
32
|
+
%p=p.description.empty? ? '<strong>FIXME:</strong> No description for this parameter' : p.description
|
33
|
+
|
@@ -1,5 +1,5 @@
|
|
1
1
|
%docs{:status => "unsupported"}
|
2
|
-
%operation{:url =>
|
2
|
+
%operation{:url => api_url_for("docs/#{@collection.name.to_s}"), :name => "#{@operation.name.to_s}", :href => url_for("#{@operation.path}"), :method => "#{@operation.method}"}
|
3
3
|
%description #{@operation.description}
|
4
4
|
- @operation.each_param do |param|
|
5
5
|
%parameter{:name => "#{param.name}", :type => "#{param.type}"}
|
@@ -1,15 +1,10 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
=header "Supported drivers"
|
2
|
+
=subheader "Deltacloud API #{settings.version}"
|
3
3
|
|
4
|
-
%
|
5
|
-
%
|
6
|
-
%tr
|
7
|
-
%th ID
|
8
|
-
%th Name
|
9
|
-
%tbody
|
4
|
+
%div{ :'data-role' => :content, :'data-theme' => 'c'}
|
5
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'a'}
|
10
6
|
- @drivers.each do |id, details|
|
11
|
-
%
|
12
|
-
%
|
13
|
-
%
|
14
|
-
|
15
|
-
%td= details[:name]
|
7
|
+
%li
|
8
|
+
%a{ :href => driver_url(id), :'data-ajax' => 'false'}
|
9
|
+
%img{ :class => 'ui-link-thumb', :src => '/images/cloud.png'}
|
10
|
+
%h3=details[:name]
|
@@ -1,20 +1,20 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
=header @name
|
2
|
+
=subheader "Deltacloud API #{settings.version}"
|
3
3
|
|
4
|
-
%
|
5
|
-
%
|
6
|
-
%
|
7
|
-
%
|
8
|
-
|
9
|
-
%
|
10
|
-
%
|
11
|
-
|
12
|
-
%
|
13
|
-
%
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
4
|
+
%div{ :'data-role' => :content, :'data-theme' => 'c'}
|
5
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'd'}
|
6
|
+
%li{ :'data-role' => 'list-divider'} Identifier
|
7
|
+
%li
|
8
|
+
%p{ :'data-role' => 'fieldcontain'}=@name
|
9
|
+
%li{ :'data-role' => 'list-divider'} Name
|
10
|
+
%li
|
11
|
+
%p{ :'data-role' => 'fieldcontain'}=@driver[:name]
|
12
|
+
%li{ :'data-role' => 'list-divider'} Provider
|
13
|
+
%li
|
14
|
+
%p{ :'data-role' => 'fieldcontain'}
|
15
|
+
- providers = driver_provider(@driver).keys.collect { |k| k.to_s }.sort
|
16
|
+
- if providers.empty?
|
17
|
+
None
|
18
|
+
- else
|
19
19
|
- providers.each do |k|
|
20
|
-
%
|
20
|
+
%p= k
|
data/views/error.html.haml
CHANGED
@@ -1,31 +1,36 @@
|
|
1
|
-
!!!
|
2
|
-
!!! XML
|
3
|
-
|
1
|
+
!!!5
|
4
2
|
%html
|
5
3
|
%head
|
6
|
-
|
7
|
-
= stylesheet_link_tag '/stylesheets/
|
8
|
-
|
9
|
-
|
10
|
-
= stylesheet_link_tag '/stylesheets/compiled/application.css', :media => 'screen, projection'
|
11
|
-
%script{:type => "text/javascript", :src => "/javascripts/jquery-1.4.2.min.js" }
|
4
|
+
%title Deltacloud API #{settings.version}
|
5
|
+
= stylesheet_link_tag '/stylesheets/jquery.mobile-1.0b1.min.css'
|
6
|
+
= stylesheet_link_tag '/stylesheets/new.css'
|
7
|
+
%script{:type => "text/javascript", :src => "/javascripts/jquery.min.js" }
|
12
8
|
%script{:type => "text/javascript", :src => "/javascripts/application.js" }
|
9
|
+
%script{:type => "text/javascript", :src => "/javascripts/jquery.mobile-1.0b1.min.js" }
|
10
|
+
:javascript
|
11
|
+
$(document).ready(function() {
|
12
|
+
$(document).bind("mobileinit", function(){
|
13
|
+
$.mobile.ajaxEnabled = false;
|
14
|
+
$.mobile.hashListeningEnabled = false;
|
15
|
+
});
|
16
|
+
})
|
13
17
|
%body
|
14
|
-
|
15
|
-
#
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
=
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
18
|
+
%div{ 'data-role' => :page, :'data-theme' => 'e', :class => :error }
|
19
|
+
=header "#{response.status} - #{translate_error_code(response.status)[:message]}"
|
20
|
+
- if @error
|
21
|
+
=subheader @error.message
|
22
|
+
- elsif response.status.to_s =~ /4(\d{2})/
|
23
|
+
=subheader request.env['REQUEST_URI']
|
24
|
+
= yield
|
25
|
+
%div{ 'data-role' => :footer, :'data-theme' => 'a'}
|
26
|
+
%div{ 'data-role' => :navbar}
|
27
|
+
%ul
|
28
|
+
%li
|
29
|
+
%a{ :'data-icon' => 'home', :href => api_url_for(''), :'data-ajax' => 'false'} Home
|
30
|
+
%li=link_to_format(:xml)
|
31
|
+
%li=link_to_format(:json)
|
32
|
+
%div{ 'data-role' => :header, 'data-theme' => 'a' }
|
33
|
+
#copyright
|
34
|
+
Copyright 2009-2011
|
35
|
+
%a{:href => 'http://incubator.apache.org/deltacloud/'} The Apache Software Foundation
|
36
|
+
and individual contributors.
|
@@ -0,0 +1,41 @@
|
|
1
|
+
%div{ :'data-role' => :content, :'data-theme' => 'b'}
|
2
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'e'}
|
3
|
+
%li{ :'data-role' => 'list-divider'} Server message
|
4
|
+
%li
|
5
|
+
%h3=[@error.class.name, @error.message].join(' - ')
|
6
|
+
%li{ :'data-role' => 'list-divider'} Original request URI
|
7
|
+
%li
|
8
|
+
%a{ :href => request.env['REQUEST_URI'], :'data-ajax' => 'false'}
|
9
|
+
%span=request.env['REQUEST_URI']
|
10
|
+
%span{ :class => 'ui-li-count'} Retry
|
11
|
+
%li{ :'data-role' => 'list-divider'} Error details
|
12
|
+
%li
|
13
|
+
- if @error.class.method_defined? :details
|
14
|
+
%p= @error.details
|
15
|
+
- else
|
16
|
+
%em No details
|
17
|
+
|
18
|
+
%div{ 'data-role' => :collapsible, 'data-collapsed' => "true"}
|
19
|
+
%h3 Backtrace
|
20
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'e'}
|
21
|
+
%li
|
22
|
+
%pre=@error.backtrace.join("\n")
|
23
|
+
|
24
|
+
%div{ 'data-role' => :collapsible, 'data-collapsed' => "true"}
|
25
|
+
%h3 Parameters
|
26
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'e'}
|
27
|
+
- if params.keys.empty?
|
28
|
+
%li{ :'data-role' => 'list-divider'} No parameters
|
29
|
+
- params.each do |key, value|
|
30
|
+
%li{ :'data-role' => 'list-divider'}=key
|
31
|
+
%li
|
32
|
+
%span{:style => 'font-weight:normal;'}=value.inspect
|
33
|
+
|
34
|
+
|
35
|
+
%div{ 'data-role' => :collapsible, 'data-collapsed' => "true"}
|
36
|
+
%h3 Request details
|
37
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'e'}
|
38
|
+
- request.env.each do |key, value|
|
39
|
+
%li{ :'data-role' => 'list-divider'}=key
|
40
|
+
%li
|
41
|
+
%span{:style => 'font-weight:normal;'}=value.inspect
|
@@ -0,0 +1,41 @@
|
|
1
|
+
%div{ :'data-role' => :content, :'data-theme' => 'b'}
|
2
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'e'}
|
3
|
+
%li{ :'data-role' => 'list-divider'} Server message
|
4
|
+
%li
|
5
|
+
%h3=[@error.class.name, @error.message].join(' - ')
|
6
|
+
%li{ :'data-role' => 'list-divider'} Original request URI
|
7
|
+
%li
|
8
|
+
%a{ :href => request.env['REQUEST_URI'], :'data-ajax' => 'false'}
|
9
|
+
%span=request.env['REQUEST_URI']
|
10
|
+
%span{ :class => 'ui-li-count'} Retry
|
11
|
+
%li{ :'data-role' => 'list-divider'} Error details
|
12
|
+
%li
|
13
|
+
- if @error.class.method_defined? :details
|
14
|
+
%p= @error.details
|
15
|
+
- else
|
16
|
+
%em No details
|
17
|
+
|
18
|
+
%div{ 'data-role' => :collapsible, 'data-collapsed' => "true"}
|
19
|
+
%h3 Backtrace
|
20
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'e'}
|
21
|
+
%li
|
22
|
+
%pre=@error.backtrace.join("\n")
|
23
|
+
|
24
|
+
%div{ 'data-role' => :collapsible, 'data-collapsed' => "true"}
|
25
|
+
%h3 Parameters
|
26
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'e'}
|
27
|
+
- if params.keys.empty?
|
28
|
+
%li{ :'data-role' => 'list-divider'} No parameters
|
29
|
+
- params.each do |key, value|
|
30
|
+
%li{ :'data-role' => 'list-divider'}=key
|
31
|
+
%li
|
32
|
+
%span{:style => 'font-weight:normal;'}=value.inspect
|
33
|
+
|
34
|
+
|
35
|
+
%div{ 'data-role' => :collapsible, 'data-collapsed' => "true"}
|
36
|
+
%h3 Request details
|
37
|
+
%ul{ :'data-role' => :listview , :'data-inset' => :true, :'data-divider-theme' => 'e'}
|
38
|
+
- request.env.each do |key, value|
|
39
|
+
%li{ :'data-role' => 'list-divider'}=key
|
40
|
+
%li
|
41
|
+
%span{:style => 'font-weight:normal;'}=value.inspect
|