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.
Files changed (242) hide show
  1. data/LICENSE +145 -0
  2. data/NOTICE +10 -1
  3. data/Rakefile +50 -2
  4. data/bin/deltacloudd +111 -14
  5. data/config/addresses.xml +14 -0
  6. data/config/condor.yaml +30 -0
  7. data/config/drivers/azure.yaml +3 -0
  8. data/config/drivers/condor.yaml +3 -0
  9. data/config/{drivers.yaml → drivers/ec2.yaml} +5 -34
  10. data/config/drivers/eucalyptus.yaml +8 -0
  11. data/config/drivers/gogrid.yaml +3 -0
  12. data/config/drivers/mock.yaml +3 -0
  13. data/config/drivers/opennebula.yaml +4 -0
  14. data/config/drivers/rackspace.yaml +3 -0
  15. data/config/drivers/rhevm.yaml +3 -0
  16. data/config/drivers/rimuhosting.yaml +3 -0
  17. data/config/drivers/sbc.yaml +2 -0
  18. data/config/drivers/terremark.yaml +3 -0
  19. data/config/drivers/vsphere.yaml +8 -0
  20. data/deltacloud-core.gemspec +13 -5
  21. data/deltacloud.rb +4 -2
  22. data/lib/deltacloud/backend_capability.rb +2 -2
  23. data/lib/deltacloud/base_driver/base_driver.rb +23 -52
  24. data/lib/deltacloud/base_driver/exceptions.rb +168 -0
  25. data/lib/deltacloud/base_driver/features.rb +31 -12
  26. data/lib/deltacloud/base_driver/mock_driver.rb +2 -1
  27. data/lib/deltacloud/core_ext/string.rb +2 -0
  28. data/lib/deltacloud/drivers/azure/azure_driver.rb +5 -5
  29. data/lib/deltacloud/drivers/condor/condor_client.rb +273 -0
  30. data/lib/deltacloud/drivers/condor/condor_driver.rb +236 -0
  31. data/lib/deltacloud/drivers/condor/ip_agents/confserver.rb +75 -0
  32. data/lib/deltacloud/drivers/condor/ip_agents/default.rb +84 -0
  33. data/lib/deltacloud/drivers/ec2/ec2_driver.rb +326 -95
  34. data/lib/deltacloud/drivers/ec2/ec2_mock_driver.rb +3 -3
  35. data/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb +40 -8
  36. data/lib/deltacloud/drivers/gogrid/gogrid_client.rb +7 -7
  37. data/lib/deltacloud/drivers/gogrid/gogrid_driver.rb +42 -25
  38. data/lib/deltacloud/drivers/mock/data/{buckets/blobs → blobs}/blob1.yml +6 -4
  39. data/lib/deltacloud/drivers/mock/data/{buckets/blobs → blobs}/blob2.yml +7 -5
  40. data/lib/deltacloud/drivers/mock/data/{buckets/blobs → blobs}/blob3.yml +6 -4
  41. data/lib/deltacloud/drivers/mock/data/{buckets/blobs → blobs}/blob4.yml +6 -4
  42. data/lib/deltacloud/drivers/mock/data/{buckets/blobs → blobs}/blob5.yml +6 -4
  43. data/lib/deltacloud/drivers/mock/data/buckets/bucket1.yml +7 -1
  44. data/lib/deltacloud/drivers/mock/data/buckets/bucket2.yml +6 -1
  45. data/lib/deltacloud/drivers/mock/data/images/img1.yml +6 -2
  46. data/lib/deltacloud/drivers/mock/data/images/img2.yml +6 -2
  47. data/lib/deltacloud/drivers/mock/data/images/img3.yml +6 -2
  48. data/lib/deltacloud/drivers/mock/data/instances/inst0.yml +11 -10
  49. data/lib/deltacloud/drivers/mock/data/instances/inst1.yml +14 -7
  50. data/lib/deltacloud/drivers/mock/data/instances/inst2.yml +14 -7
  51. data/lib/deltacloud/drivers/mock/data/storage_snapshots/snap1.yml +3 -2
  52. data/lib/deltacloud/drivers/mock/data/storage_snapshots/snap2.yml +3 -2
  53. data/lib/deltacloud/drivers/mock/data/storage_snapshots/snap3.yml +3 -2
  54. data/lib/deltacloud/drivers/mock/data/storage_volumes/vol1.yml +4 -3
  55. data/lib/deltacloud/drivers/mock/data/storage_volumes/vol2.yml +4 -3
  56. data/lib/deltacloud/drivers/mock/data/storage_volumes/vol3.yml +4 -3
  57. data/lib/deltacloud/drivers/mock/mock_client.rb +101 -0
  58. data/lib/deltacloud/drivers/mock/mock_driver.rb +367 -429
  59. data/lib/deltacloud/drivers/opennebula/opennebula_driver.rb +6 -0
  60. data/lib/deltacloud/drivers/rackspace/rackspace_driver.rb +59 -9
  61. data/lib/deltacloud/drivers/rhevm/rhevm_client.rb +62 -8
  62. data/lib/deltacloud/drivers/rhevm/rhevm_driver.rb +100 -45
  63. data/lib/deltacloud/drivers/rimuhosting/rimuhosting_client.rb +3 -2
  64. data/lib/deltacloud/drivers/rimuhosting/rimuhosting_driver.rb +8 -11
  65. data/lib/deltacloud/drivers/sbc/sbc_client.rb +6 -6
  66. data/lib/deltacloud/drivers/sbc/sbc_driver.rb +16 -0
  67. data/lib/deltacloud/drivers/terremark/terremark_driver.rb +17 -12
  68. data/lib/deltacloud/drivers/vsphere/vsphere_client.rb +140 -0
  69. data/lib/deltacloud/drivers/vsphere/vsphere_driver.rb +405 -0
  70. data/lib/deltacloud/drivers/vsphere/vsphere_filemanager.rb +182 -0
  71. data/lib/deltacloud/hardware_profile.rb +1 -1
  72. data/lib/deltacloud/helpers.rb +2 -1
  73. data/lib/deltacloud/helpers/application_helper.rb +92 -20
  74. data/lib/deltacloud/helpers/blob_stream.rb +160 -12
  75. data/lib/deltacloud/helpers/conversion_helper.rb +6 -2
  76. data/lib/deltacloud/helpers/json_helper.rb +31 -0
  77. data/lib/deltacloud/models/address.rb +28 -0
  78. data/lib/deltacloud/models/base_model.rb +5 -1
  79. data/lib/deltacloud/models/blob.rb +1 -1
  80. data/lib/deltacloud/models/bucket.rb +10 -0
  81. data/lib/deltacloud/models/firewall.rb +22 -0
  82. data/lib/deltacloud/models/firewall_rule.rb +23 -0
  83. data/lib/deltacloud/models/image.rb +12 -0
  84. data/lib/deltacloud/models/instance.rb +20 -2
  85. data/lib/deltacloud/models/key.rb +1 -1
  86. data/lib/deltacloud/runner.rb +3 -3
  87. data/lib/deltacloud/validation.rb +3 -7
  88. data/lib/drivers.rb +7 -1
  89. data/lib/sinatra/body_proxy.rb +34 -0
  90. data/lib/sinatra/lazy_auth.rb +5 -0
  91. data/lib/sinatra/rabbit.rb +54 -31
  92. data/lib/sinatra/rack_accept.rb +157 -0
  93. data/lib/sinatra/rack_date.rb +38 -0
  94. data/lib/sinatra/rack_etag.rb +2 -3
  95. data/lib/sinatra/rack_matrix_params.rb +51 -29
  96. data/lib/sinatra/rack_runtime.rb +1 -1
  97. data/lib/sinatra/rack_syslog.rb +86 -0
  98. data/lib/sinatra/url_for.rb +14 -1
  99. data/public/images/address.png +0 -0
  100. data/public/images/balancer.png +0 -0
  101. data/public/images/blob.png +0 -0
  102. data/public/images/bucket.png +0 -0
  103. data/public/images/cloud.png +0 -0
  104. data/public/images/firewall.png +0 -0
  105. data/public/images/image.png +0 -0
  106. data/public/images/key.png +0 -0
  107. data/public/images/machine.png +0 -0
  108. data/public/images/profile.png +0 -0
  109. data/public/images/realm.png +0 -0
  110. data/public/images/snapshot.png +0 -0
  111. data/public/images/volume.png +0 -0
  112. data/public/javascripts/application.js +119 -16
  113. data/public/javascripts/jquery.min.js +18 -0
  114. data/public/javascripts/jquery.mobile-1.0b1.min.js +146 -0
  115. data/public/stylesheets/compiled/application.css +8 -0
  116. data/public/stylesheets/images/ajax-loader.png +0 -0
  117. data/public/{images → stylesheets/images}/bread-bg.png +0 -0
  118. data/public/{images → stylesheets/images}/error.png +0 -0
  119. data/public/{images → stylesheets/images}/grid.png +0 -0
  120. data/public/stylesheets/images/icon-search-black.png +0 -0
  121. data/public/stylesheets/images/icons-18-black.png +0 -0
  122. data/public/stylesheets/images/icons-18-white.png +0 -0
  123. data/public/stylesheets/images/icons-36-black.png +0 -0
  124. data/public/stylesheets/images/icons-36-white.png +0 -0
  125. data/public/{images → stylesheets/images}/logo-wide.png +0 -0
  126. data/public/{images → stylesheets/images}/pending.png +0 -0
  127. data/public/{images → stylesheets/images}/rails.png +0 -0
  128. data/public/{images → stylesheets/images}/running.png +0 -0
  129. data/public/{images → stylesheets/images}/stopped.png +0 -0
  130. data/public/{images → stylesheets/images}/topbar-bg.png +0 -0
  131. data/public/stylesheets/jquery.mobile-1.0b1.min.css +8 -0
  132. data/public/stylesheets/new.css +53 -0
  133. data/server.rb +487 -175
  134. data/support/condor/bash/cached_images.sh +8 -0
  135. data/support/condor/bash/cloud_exit_hook.sh +17 -0
  136. data/support/condor/bash/cloud_functions +175 -0
  137. data/support/condor/bash/cloud_prepare_hook.sh +20 -0
  138. data/support/condor/bash/libvirt_cloud_script.sh +13 -0
  139. data/support/condor/config/50condor_cloud.config +37 -0
  140. data/support/condor/config/50condor_cloud_node.config +37 -0
  141. data/support/condor/config/condor-cloud +2 -0
  142. data/support/condor/config/condor_config.local +44 -0
  143. data/support/fedora/deltacloud-core +48 -26
  144. data/support/fedora/deltacloud-core-config +26 -0
  145. data/support/fedora/deltacloud-core.spec +314 -68
  146. data/support/fedora/deltacloudd-fedora +5 -0
  147. data/tests/common.rb +34 -4
  148. data/tests/drivers/mock/api_test.rb +3 -3
  149. data/tests/drivers/mock/images_test.rb +12 -0
  150. data/tests/drivers/mock/instances_test.rb +2 -0
  151. data/tests/rabbit_test.rb +2 -2
  152. data/views/addresses/_address.html.haml +6 -0
  153. data/views/addresses/associate.html.haml +12 -0
  154. data/views/addresses/index.html.haml +9 -0
  155. data/views/addresses/index.xml.haml +4 -0
  156. data/views/addresses/show.html.haml +21 -0
  157. data/views/addresses/show.xml.haml +14 -0
  158. data/views/api/show.html.haml +6 -11
  159. data/views/api/show.xml.haml +2 -0
  160. data/views/blobs/new.html.haml +24 -23
  161. data/views/blobs/show.html.haml +30 -31
  162. data/views/buckets/index.html.haml +9 -21
  163. data/views/buckets/index.xml.haml +3 -7
  164. data/views/buckets/new.html.haml +13 -12
  165. data/views/buckets/show.html.haml +22 -22
  166. data/views/buckets/show.xml.haml +5 -3
  167. data/views/docs/collection.html.haml +23 -34
  168. data/views/docs/collection.xml.haml +2 -2
  169. data/views/docs/index.html.haml +9 -13
  170. data/views/docs/index.xml.haml +1 -1
  171. data/views/docs/operation.html.haml +28 -38
  172. data/views/docs/operation.xml.haml +1 -1
  173. data/views/drivers/index.html.haml +8 -13
  174. data/views/drivers/show.html.haml +18 -18
  175. data/views/error.html.haml +32 -27
  176. data/views/errors/400.html.haml +41 -0
  177. data/views/errors/{validation_failure.xml.haml → 400.xml.haml} +0 -4
  178. data/views/errors/401.html.haml +41 -0
  179. data/views/errors/{auth_exception.xml.haml → 401.xml.haml} +0 -0
  180. data/views/errors/403.html.haml +42 -0
  181. data/views/errors/{not_allowed.xml.haml → 403.xml.haml} +0 -0
  182. data/views/errors/404.html.haml +29 -0
  183. data/views/errors/{not_found.xml.haml → 404.xml.haml} +1 -1
  184. data/views/errors/405.html.haml +29 -0
  185. data/views/errors/405.xml.haml +5 -0
  186. data/views/errors/500.html.haml +43 -0
  187. data/views/errors/500.xml.haml +5 -0
  188. data/views/errors/502.html.haml +43 -0
  189. data/views/errors/{backend_error.xml.haml → 502.xml.haml} +1 -2
  190. data/views/errors/backend_capability_failure.html.haml +27 -9
  191. data/views/firewalls/index.html.haml +15 -0
  192. data/views/firewalls/index.xml.haml +28 -0
  193. data/views/firewalls/new.html.haml +11 -0
  194. data/views/firewalls/new_rule.html.haml +20 -0
  195. data/views/firewalls/show.html.haml +42 -0
  196. data/views/firewalls/show.xml.haml +26 -0
  197. data/views/hardware_profiles/index.html.haml +15 -23
  198. data/views/hardware_profiles/show.html.haml +22 -18
  199. data/views/images/index.html.haml +11 -23
  200. data/views/images/index.xml.haml +4 -13
  201. data/views/images/new.html.haml +12 -13
  202. data/views/images/show.html.haml +26 -20
  203. data/views/images/show.xml.haml +2 -1
  204. data/views/instance_states/show.html.haml +21 -25
  205. data/views/instances/index.html.haml +13 -30
  206. data/views/instances/index.xml.haml +2 -23
  207. data/views/instances/new.html.haml +83 -88
  208. data/views/instances/show.html.haml +53 -55
  209. data/views/instances/show.xml.haml +12 -10
  210. data/views/keys/index.html.haml +13 -24
  211. data/views/keys/new.html.haml +7 -7
  212. data/views/keys/show.html.haml +26 -21
  213. data/views/layout.html.haml +28 -27
  214. data/views/load_balancers/index.html.haml +11 -31
  215. data/views/load_balancers/index.xml.haml +0 -1
  216. data/views/load_balancers/new.html.haml +1 -1
  217. data/views/load_balancers/show.html.haml +33 -34
  218. data/views/load_balancers/show.xml.haml +2 -2
  219. data/views/realms/index.html.haml +11 -24
  220. data/views/realms/index.xml.haml +2 -8
  221. data/views/realms/show.html.haml +17 -15
  222. data/views/realms/show.xml.haml +2 -1
  223. data/views/storage_snapshots/index.html.haml +11 -21
  224. data/views/storage_snapshots/index.xml.haml +2 -5
  225. data/views/storage_snapshots/new.html.haml +1 -1
  226. data/views/storage_snapshots/show.html.haml +21 -13
  227. data/views/storage_snapshots/show.xml.haml +2 -1
  228. data/views/storage_volumes/index.html.haml +11 -34
  229. data/views/storage_volumes/new.html.haml +1 -1
  230. data/views/storage_volumes/show.html.haml +33 -27
  231. data/views/storage_volumes/show.xml.haml +2 -1
  232. metadata +266 -178
  233. data/lib/sinatra/respond_to.rb +0 -248
  234. data/support/fedora/deltacloudd +0 -128
  235. data/support/fedora/rubygem-deltacloud-core.spec +0 -127
  236. data/views/accounts/index.html.haml +0 -11
  237. data/views/accounts/show.html.haml +0 -30
  238. data/views/errors/auth_exception.html.haml +0 -8
  239. data/views/errors/backend_error.html.haml +0 -22
  240. data/views/errors/not_allowed.html.haml +0 -6
  241. data/views/errors/not_found.html.haml +0 -6
  242. data/views/errors/validation_failure.html.haml +0 -11
@@ -1,23 +1,23 @@
1
- %h1 Bucket
2
- %h2
3
- = @bucket.id
1
+ =header "Bucket"
2
+ =subheader @bucket.id
4
3
 
5
- %dl
6
- %di
7
- %dt Name
8
- %dd
9
- = @bucket.name
10
- %dt Size
11
- %dd
12
- = @bucket.size
13
- %dt Blobs
14
- %dd
15
- -@bucket.blob_list.each do |blob|
16
- = link_to blob, bucket_url(@bucket.name) + '/' + blob
17
- %dt Create a new blob
18
- %dd
19
- =link_to 'Create Blob', bucket_url(@bucket.name) + '/new_blob'
20
- %dt Delete bucket (must be empty)
21
- %dd
22
- -if @bucket.size == 0
23
- =link_to_action 'Delete', destroy_bucket_url(@bucket.name), :delete
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
@@ -1,8 +1,10 @@
1
- !!! XML
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.each do |blb|
8
- %blob{:id => blb, :href => bucket_url(@bucket.id) +"/#{blb}"}
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
- %h2
2
- = @collection.name.to_s.titlecase
1
+ =header "Deltacloud API #{settings.version} documentation", :back => 'false'
2
+ =subheader @collection.name.to_s.titlecase
3
3
 
4
- %p #{@collection.description}
5
-
6
- %br
7
-
8
- %h3 Operations:
9
-
10
- %table
11
- %thead
12
- %tr
13
- %th Name
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
- %tr
18
- %td{:style => "width:15em"}
19
- %a{:href => url_for("/api/docs/#{@collection.name.to_s}/#{operation}")} #{operation}
20
- %td{:style => "width:10em"} #{@operations[operation].description}
21
-
22
- %h3 Features:
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
- %tr
33
- %td= feature.name
34
- %td= feature.description
35
- %td
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 => url_for("/api/docs/#{@collection.name}"), :name => "#{@collection.name}"}
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 => url_for("/api/#{@collection.name.to_s}"), :name => "#{operation}", :href => url_for("#{@operations[operation].path}"), :method => "#{@operations[operation].method}"}
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}"}
@@ -1,15 +1,11 @@
1
- %h2 API Documentation
1
+ =header "Deltacloud API #{settings.version} documentation", :back => 'false'
2
+ =subheader "Note: This documentation is autogenerated and thus not supported"
2
3
 
3
- %h3 Collections:
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
- %tr
13
- %td{:style => "width:15em"}
14
- %a{:href => url_for("/api/docs/#{collection}")} #{collection}
15
- %td{:style => "width:10em"} #{collections[collection].description}
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
+
@@ -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 => url_for("/api/docs/#{collection}")}
3
+ %collection{:url => api_url_for("docs/#{collection}")}
4
4
  %name #{collection}
5
5
  %description #{collections[collection].description}
@@ -1,43 +1,33 @@
1
- %h2
2
- = action_method(@operation.name, @collection.name).to_s.upcase
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
- %p
6
- #{@operation.description}
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
- %br
9
-
10
- %h2 Parameters:
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
- %tr
24
- %td{:style => "width:15em"}
25
- %em #{p.name}
26
- %td{:style => "width:10em"} #{p.type}
27
- %td #{p.klass}
28
- %td{:style => "width:10em"} #{p.options.join(', ')}
29
- %td #{p.description}
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
- %tr
38
- %td{:style => "width:15em"}
39
- %em #{p.name}
40
- %td{:style => "width:10em"} #{p.type}
41
- %td #{p.klass}
42
- %td{:style => "width:10em"} #{p.options.join(', ')}
43
- %td #{p.description}
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 => url_for("/api/docs/#{@collection.name.to_s}"), :name => "#{@operation.name.to_s}", :href => url_for("#{@operation.path}"), :method => "#{@operation.method}"}
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
- %h1
2
- Available Drivers
1
+ =header "Supported drivers"
2
+ =subheader "Deltacloud API #{settings.version}"
3
3
 
4
- %table.display
5
- %thead
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
- %tr
12
- %td{ :width => '20%' }
13
- %tt
14
- %a{ :href => driver_url(id) }= id
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
- %h1
2
- Details for driver #{@name}
1
+ =header @name
2
+ =subheader "Deltacloud API #{settings.version}"
3
3
 
4
- %dl
5
- %di
6
- %dt ID
7
- %dd= @name
8
- %di
9
- %dt Name
10
- %dd= @driver[:name]
11
- %di
12
- %dt Provider
13
- %dd
14
- - providers = driver_provider(@driver).keys.collect { |k| k.to_s }.sort
15
- - if providers.empty?
16
- None
17
- - else
18
- %ol
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
- %li= k
20
+ %p= k
@@ -1,31 +1,36 @@
1
- !!!
2
- !!! XML
3
-
1
+ !!!5
4
2
  %html
5
3
  %head
6
- = stylesheet_link_tag '/stylesheets/compiled/screen.css', :media => 'screen, projection'
7
- = stylesheet_link_tag '/stylesheets/compiled/print.css', :media => 'print'
8
- /[if lt IE 8]
9
- = stylesheet_link_tag '/stylesheets/compiled/ie.css', :media => 'screen, projection'
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
- #wrapper
15
- #header
16
- = link_to image_tag( "/images/logo-wide.png" ), root_url
17
- = bread_crumb
18
- #content{:class => :error}
19
- = yield
20
- #footer
21
- #formats
22
- Format:
23
- =link_to_format(:xml)
24
- |
25
- =link_to_format(:json)
26
- #driver_info
27
- Driver: #{driver_symbol} | API version: #{settings.version}
28
- #copyright
29
- Copyright 2009-2011
30
- %a{:href => 'http://incubator.apache.org/deltacloud/'} The Apache Software Foundation
31
- and individual contributors.
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
@@ -1,8 +1,4 @@
1
1
  %error{:url => "#{request.env['REQUEST_URI']}", :status => "#{response.status}"}
2
2
  %parameter #{@error.name}
3
3
  %message< #{cdata @error.message}
4
- - unless @error.param.options.empty?
5
- %valid_options
6
- - @error.param.options.each do |v|
7
- %value< #{cdata v}
8
4
 
@@ -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