wakame-vdc-webui 11.06.0 → 11.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. data/Rakefile +7 -7
  2. data/app/controllers/application_controller.rb +5 -1
  3. data/app/controllers/dialog_controller.rb +5 -8
  4. data/app/controllers/instances_controller.rb +25 -7
  5. data/app/controllers/keypairs_controller.rb +2 -3
  6. data/app/controllers/security_groups_controller.rb +14 -15
  7. data/app/controllers/sessions_controller.rb +4 -0
  8. data/app/controllers/snapshots_controller.rb +3 -3
  9. data/app/controllers/volumes_controller.rb +18 -12
  10. data/app/models/dcmgr_resource/instance.rb +18 -2
  11. data/app/models/dcmgr_resource/security_group.rb +38 -0
  12. data/app/models/dcmgr_resource/ssh_key_pair.rb +0 -1
  13. data/app/views/dialog/attach_volume.html.erb +7 -11
  14. data/app/views/dialog/create_and_edit_security_group.html.erb +10 -12
  15. data/app/views/dialog/create_ssh_keypair.html.erb +9 -14
  16. data/app/views/dialog/delete_security_group.html.erb +1 -1
  17. data/app/views/dialog/reboot_instances.html.erb +2 -2
  18. data/app/views/dialog/start_instances.html.erb +1 -1
  19. data/app/views/dialog/stop_instances.html.erb +2 -2
  20. data/app/views/instances/index.html.erb +114 -110
  21. data/app/views/keypairs/index.html.erb +4 -4
  22. data/app/views/layouts/login.html.erb +1 -1
  23. data/app/views/security_groups/index.html.erb +11 -11
  24. data/app/views/sessions/information.html.erb +0 -0
  25. data/app/views/sessions/new.html.erb +24 -31
  26. data/app/views/snapshots/index.html.erb +3 -0
  27. data/app/views/volumes/index.html.erb +0 -5
  28. data/config/application.rb +1 -1
  29. data/config/dcmgr_gui.yml +8 -0
  30. data/{app/api/config/environment.rb → config/environment-auth.rb} +1 -1
  31. data/config/environments/development.rb +1 -1
  32. data/config/environments/production.rb +38 -41
  33. data/config/environments/test.rb +1 -1
  34. data/config/initializers/site.rb +1 -1
  35. data/config/locales/en.yml +16 -7
  36. data/config/locales/ja.yml +6 -4
  37. data/config/routes.rb +3 -0
  38. data/db/migrations/0001_origin.rb +96 -0
  39. data/lib/cli/account.rb +43 -88
  40. data/lib/cli/user.rb +0 -37
  41. data/lib/tasks/dcmgr_gui.rake +2 -2
  42. data/public/i18n/Messages_en.properties +34 -0
  43. data/public/i18n/Messages_ja-JP.properties +0 -0
  44. data/public/i18n/Messages_ja.properties +32 -0
  45. data/public/javascripts/dcmgr_gui/application.js +7 -7
  46. data/public/javascripts/dcmgr_gui/core.js +33 -8
  47. data/public/javascripts/dcmgr_gui/image_panel.js +6 -8
  48. data/public/javascripts/dcmgr_gui/instance_panel.js +29 -29
  49. data/public/javascripts/dcmgr_gui/security_group_panel.js +8 -29
  50. data/public/javascripts/dcmgr_gui/sshkeypair_panel.js +2 -22
  51. data/public/javascripts/dcmgr_gui/volume_panel.js +16 -21
  52. data/public/javascripts/jquery-ui-1.8.4.custom.min.js +0 -0
  53. data/public/stylesheets/common.css +45 -0
  54. metadata +336 -332
  55. data/app/models/dcmgr_resource/netfilter_group.rb +0 -29
@@ -9,13 +9,11 @@ DcmgrGUI.prototype.sshKeyPairPanel = function(){
9
9
 
10
10
  DcmgrGUI.List.prototype.getEmptyData = function(){
11
11
  return [{
12
- "name":''
13
12
  }]
14
13
  }
15
14
 
16
15
  DcmgrGUI.Detail.prototype.getEmptyData = function(){
17
16
  return {
18
- "name" : "-",
19
17
  "create_at" : "-",
20
18
  "update_at":''
21
19
  }
@@ -90,22 +88,10 @@ DcmgrGUI.prototype.sshKeyPairPanel = function(){
90
88
  var create_ssh_keypair_buttons = {};
91
89
  create_ssh_keypair_buttons[close_button_name] = function() { $(this).dialog("close"); };
92
90
  create_ssh_keypair_buttons[create_button_name] = function() {
93
- var name = $(this).find('#ssh_keypair_name').val();
94
91
  var download_once = $(this).find('#ssh_keypair_download_once').attr('checked');
95
92
 
96
- if(!name){
97
- $('#ssh_keypair_name').focus();
98
- return false;
99
- }
100
-
101
- if(!name.match(/[a-z0-9_]+/)){
102
- $('#ssh_keypair_name').focus();
103
- return false;
104
- }
105
-
106
93
  var iframe = $(this).find('iframe:first').contents();
107
94
  var html = '<form id="prk_download" action="/keypairs/create_ssh_keypair" method="get">'
108
- +'<input type="hidden" name="name" value="'+name+ '">'
109
95
  +'<input type="hidden" name="download_once" value="'+download_once+ '">'
110
96
  +'</form>'
111
97
 
@@ -124,20 +110,14 @@ DcmgrGUI.prototype.sshKeyPairPanel = function(){
124
110
  callback: function(){
125
111
  var html = '<iframe src="javascript:false" name="hiddenIframe" style="display:none"></iframe>';
126
112
  $(this).find('#create_ssh_keypair_dialog').append(html);
127
- $(this).find('#ssh_keypair_name').keyup(function(){
128
- if( $(this).val() ) {
129
- bt_create_ssh_keypair.disabledButton(1, false);
130
- } else {
131
- bt_create_ssh_keypair.disabledButton(1, true);
132
- }
133
- });
113
+
114
+ var params = { 'button': bt_create_ssh_keypair, 'element_id': 1 };
134
115
  },
135
116
  button: create_ssh_keypair_buttons
136
117
  });
137
118
 
138
119
  bt_create_ssh_keypair.target.bind('click', function(){
139
120
  bt_create_ssh_keypair.open();
140
- bt_create_ssh_keypair.disabledButton(1, true);
141
121
  });
142
122
 
143
123
  var delete_ssh_keypair_buttons = {};
@@ -133,16 +133,10 @@ DcmgrGUI.prototype.volumePanel = function(){
133
133
  var html = '<option value="'+ uuid +'">'+uuid+'</option>';
134
134
  select_storage_pool.append(html);
135
135
  }
136
-
137
- $(self).find('#volume_size').keyup(function(){
138
- if( $(this).val() ) {
139
-
140
- bt_create_volume.disabledButton(1, false);
141
- } else {
142
- bt_create_volume.disabledButton(1 ,true);
143
- }
144
- });
145
-
136
+
137
+ var params = { 'button': bt_create_volume, 'element_id': 1 };
138
+ $(self).find('#volume_size').bind('paste', params, DcmgrGUI.Util.availableTextField);
139
+ $(self).find('#volume_size').bind('keyup', params, DcmgrGUI.Util.availableTextField);
146
140
  }
147
141
  });
148
142
  },
@@ -222,6 +216,7 @@ DcmgrGUI.prototype.volumePanel = function(){
222
216
  "url": '/snapshots/upload_destination',
223
217
  success: function(json,status){
224
218
  var select_html = '<select name="destination" id="destination"></select>';
219
+ var select_destination = '';
225
220
  $(self).find('#select_destination').empty().html(select_html);
226
221
  $.each(json.results, function(key, item) {
227
222
  if (item.destination_id == 'local') {
@@ -240,12 +235,16 @@ DcmgrGUI.prototype.volumePanel = function(){
240
235
  attach_volume_buttons = {};
241
236
  attach_volume_buttons[close_button_name] = function() { $(this).dialog("close"); };
242
237
  attach_volume_buttons[attach_button_name] = function() {
243
- var volume_id = $(this).find('#volume_id').val();
244
- var instance_id = $(this).find('#instance_id').val();
245
- var data = "volume_id=" + volume_id
246
- + "&instance_id=" + instance_id;
238
+ var attach_volumes = $(this).find('#attach_volumes').find('li');
239
+ var volume_ids = []
240
+ $.each(attach_volumes,function(){
241
+ volume_ids.push($(this).text())
242
+ })
247
243
 
244
+ var instance_id = $(this).find('#instance_id').val();
245
+ var data = $.param({'instance_id': instance_id, volume_ids: volume_ids})
248
246
  var request = new DcmgrGUI.Request;
247
+
249
248
  request.put({
250
249
  "url": '/volumes/attach',
251
250
  "data": data,
@@ -264,13 +263,9 @@ DcmgrGUI.prototype.volumePanel = function(){
264
263
  title:$.i18n.prop('attach_volume_header'),
265
264
  path:'/attach_volume',
266
265
  callback: function() {
267
- $(this).find('#instance_id').keyup(function(){
268
- if( $(this).val() ) {
269
- bt_attach_volume.disabledButton(1, false);
270
- } else {
271
- bt_attach_volume.disabledButton(1, true);
272
- }
273
- });
266
+ var params = { 'button': bt_attach_volume, 'element_id': 1 };
267
+ $(this).find('#instance_id').bind('paste', params, DcmgrGUI.Util.availableTextField);
268
+ $(this).find('#instance_id').bind('keyup', params, DcmgrGUI.Util.availableTextField);
274
269
  },
275
270
  button: attach_volume_buttons
276
271
  });
File without changes
@@ -230,6 +230,51 @@ body{
230
230
  background: url(../images/sidemenu_bottom.gif) no-repeat;
231
231
  }
232
232
 
233
+ /********** signin **********/
234
+
235
+ #content #signin h3 {
236
+ color: #5E5E5E;
237
+ font-family: "LucidaGrande","Myriad Pro";
238
+ font-size: 22px;
239
+ height: 34px;
240
+ line-height: 30px;
241
+ padding: 0 0 0 5px;
242
+ text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
243
+ }
244
+
245
+ #content #signin_sidemenu {
246
+ float: left;
247
+ text-align: left;
248
+ height: 496px;
249
+ width: 230px
250
+ }
251
+
252
+ #content #signin_form {
253
+ padding: 5px;
254
+ height: 496px;
255
+ width: 220px
256
+ }
257
+
258
+ #content #signin_form fieldset div#error_box {
259
+ background-color: yellow;
260
+ width: 200px;
261
+ height: 12px;
262
+ }
263
+
264
+ #content #signin_form fieldset div#error_message {
265
+ padding-left: 10px;
266
+ color: red;
267
+ }
268
+
269
+ #content #signin_form p {
270
+ margin: 5px;
271
+ padding: 5px;
272
+ font-size: 15px;
273
+ }
274
+
275
+ #content #signin_main {
276
+ height: 496px;
277
+ }
233
278
 
234
279
  /********** mainarea **********/
235
280
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wakame-vdc-webui
3
3
  version: !ruby/object:Gem::Version
4
- hash: 95
5
- prerelease: false
4
+ hash: 119
5
+ prerelease:
6
6
  segments:
7
7
  - 11
8
- - 6
8
+ - 12
9
9
  - 0
10
- version: 11.06.0
10
+ version: 11.12.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - axsh Ltd.
@@ -15,28 +15,27 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-06-30 00:00:00 +09:00
19
- default_executable:
18
+ date: 2011-12-22 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
- prerelease: false
23
- version_requirements: &id001 !ruby/object:Gem::Requirement
21
+ type: :runtime
22
+ requirement: &id001 !ruby/object:Gem::Requirement
24
23
  none: false
25
24
  requirements:
26
25
  - - "="
27
26
  - !ruby/object:Gem::Version
28
- hash: 7
27
+ hash: 17
29
28
  segments:
30
29
  - 3
31
30
  - 0
32
- - 0
33
- version: 3.0.0
34
- requirement: *id001
35
- type: :runtime
31
+ - 11
32
+ version: 3.0.11
33
+ prerelease: false
36
34
  name: rails
35
+ version_requirements: *id001
37
36
  - !ruby/object:Gem::Dependency
38
- prerelease: false
39
- version_requirements: &id002 !ruby/object:Gem::Requirement
37
+ type: :runtime
38
+ requirement: &id002 !ruby/object:Gem::Requirement
40
39
  none: false
41
40
  requirements:
42
41
  - - "="
@@ -47,44 +46,44 @@ dependencies:
47
46
  - 8
48
47
  - 1
49
48
  version: 2.8.1
50
- requirement: *id002
51
- type: :runtime
49
+ prerelease: false
52
50
  name: mysql
51
+ version_requirements: *id002
53
52
  - !ruby/object:Gem::Dependency
54
- prerelease: false
55
- version_requirements: &id003 !ruby/object:Gem::Requirement
53
+ type: :runtime
54
+ requirement: &id003 !ruby/object:Gem::Requirement
56
55
  none: false
57
56
  requirements:
58
57
  - - "="
59
58
  - !ruby/object:Gem::Version
60
- hash: 59
59
+ hash: 107
61
60
  segments:
62
61
  - 3
63
- - 15
62
+ - 27
64
63
  - 0
65
- version: 3.15.0
66
- requirement: *id003
67
- type: :runtime
64
+ version: 3.27.0
65
+ prerelease: false
68
66
  name: sequel
67
+ version_requirements: *id003
69
68
  - !ruby/object:Gem::Dependency
70
- prerelease: false
71
- version_requirements: &id004 !ruby/object:Gem::Requirement
69
+ type: :runtime
70
+ requirement: &id004 !ruby/object:Gem::Requirement
72
71
  none: false
73
72
  requirements:
74
73
  - - "="
75
74
  - !ruby/object:Gem::Version
76
- hash: 11
75
+ hash: 9
77
76
  segments:
78
77
  - 1
79
- - 4
80
78
  - 6
81
- version: 1.4.6
82
- requirement: *id004
83
- type: :runtime
79
+ - 3
80
+ version: 1.6.3
81
+ prerelease: false
84
82
  name: json
83
+ version_requirements: *id004
85
84
  - !ruby/object:Gem::Dependency
86
- prerelease: false
87
- version_requirements: &id005 !ruby/object:Gem::Requirement
85
+ type: :runtime
86
+ requirement: &id005 !ruby/object:Gem::Requirement
88
87
  none: false
89
88
  requirements:
90
89
  - - "="
@@ -95,28 +94,12 @@ dependencies:
95
94
  - 4
96
95
  - 1
97
96
  version: 0.4.1
98
- requirement: *id005
99
- type: :runtime
97
+ prerelease: false
100
98
  name: oauth
99
+ version_requirements: *id005
101
100
  - !ruby/object:Gem::Dependency
102
- prerelease: false
103
- version_requirements: &id006 !ruby/object:Gem::Requirement
104
- none: false
105
- requirements:
106
- - - "="
107
- - !ruby/object:Gem::Version
108
- hash: 11
109
- segments:
110
- - 0
111
- - 4
112
- - 2
113
- version: 0.4.2
114
- requirement: *id006
115
101
  type: :runtime
116
- name: i18n
117
- - !ruby/object:Gem::Dependency
118
- prerelease: false
119
- version_requirements: &id007 !ruby/object:Gem::Requirement
102
+ requirement: &id006 !ruby/object:Gem::Requirement
120
103
  none: false
121
104
  requirements:
122
105
  - - "="
@@ -127,10 +110,26 @@ dependencies:
127
110
  - 4
128
111
  - 4
129
112
  version: 1.4.4
130
- requirement: *id007
131
- type: :runtime
113
+ prerelease: false
132
114
  name: nokogiri
133
- description: ""
115
+ version_requirements: *id006
116
+ - !ruby/object:Gem::Dependency
117
+ type: :runtime
118
+ requirement: &id007 !ruby/object:Gem::Requirement
119
+ none: false
120
+ requirements:
121
+ - - "="
122
+ - !ruby/object:Gem::Version
123
+ hash: 43
124
+ segments:
125
+ - 0
126
+ - 14
127
+ - 6
128
+ version: 0.14.6
129
+ prerelease: false
130
+ name: thor
131
+ version_requirements: *id007
132
+ description: Datacenter Hypervisor
134
133
  email:
135
134
  - dev@axsh.net
136
135
  executables: []
@@ -140,351 +139,357 @@ extensions: []
140
139
  extra_rdoc_files: []
141
140
 
142
141
  files:
142
+ - app/controllers/security_groups_controller.rb
143
+ - app/controllers/instances_controller.rb
144
+ - app/controllers/users_controller.rb
145
+ - app/controllers/volumes_controller.rb
146
+ - app/controllers/home_controller.rb
147
+ - app/controllers/storage_pools_controller.rb
148
+ - app/controllers/dialog_controller.rb
149
+ - app/controllers/host_pools_controller.rb
150
+ - app/controllers/machine_images_controller.rb
151
+ - app/controllers/keypairs_controller.rb
152
+ - app/controllers/instance_specs_controller.rb
153
+ - app/controllers/snapshots_controller.rb
154
+ - app/controllers/accounts_controller.rb
155
+ - app/controllers/sessions_controller.rb
156
+ - app/controllers/application_controller.rb
157
+ - app/controllers/information_controller.rb
158
+ - app/helpers/snapshots_helper.rb
159
+ - app/helpers/host_pools_helper.rb
160
+ - app/helpers/information_helper.rb
161
+ - app/helpers/storage_pools_helper.rb
162
+ - app/helpers/machine_images_helper.rb
163
+ - app/helpers/sessions_helper.rb
164
+ - app/helpers/keypairs_helper.rb
165
+ - app/helpers/instances_helper.rb
166
+ - app/helpers/application_helper.rb
167
+ - app/helpers/dialog_helper.rb
168
+ - app/helpers/home_helper.rb
169
+ - app/helpers/security_groups_helper.rb
170
+ - app/helpers/volumes_helper.rb
171
+ - app/helpers/users_helper.rb
172
+ - app/helpers/accounts_helper.rb
143
173
  - app/models/schema.rb
174
+ - app/models/account.rb
144
175
  - app/models/tag_mapping.rb
145
- - app/models/user.rb
146
- - app/models/base_new.rb
147
- - app/models/dcmgr_resource/volume_snapshot.rb
148
- - app/models/dcmgr_resource/storage_pool.rb
176
+ - app/models/information.rb
177
+ - app/models/authz.rb
178
+ - app/models/dcmgr_resource/security_group.rb
149
179
  - app/models/dcmgr_resource/instance_spec.rb
150
- - app/models/dcmgr_resource/host_pool.rb
151
- - app/models/dcmgr_resource/account.rb
152
180
  - app/models/dcmgr_resource/image.rb
153
- - app/models/dcmgr_resource/instance.rb
181
+ - app/models/dcmgr_resource/account.rb
154
182
  - app/models/dcmgr_resource/volume.rb
155
- - app/models/dcmgr_resource/netfilter_group.rb
156
- - app/models/dcmgr_resource/base.rb
157
183
  - app/models/dcmgr_resource/mock.rb
158
184
  - app/models/dcmgr_resource/ssh_key_pair.rb
159
- - app/models/account.rb
185
+ - app/models/dcmgr_resource/host_pool.rb
186
+ - app/models/dcmgr_resource/instance.rb
187
+ - app/models/dcmgr_resource/base.rb
188
+ - app/models/dcmgr_resource/volume_snapshot.rb
189
+ - app/models/dcmgr_resource/storage_pool.rb
190
+ - app/models/user.rb
160
191
  - app/models/tag.rb
161
- - app/models/oauth_consumer.rb
162
192
  - app/models/oauth_token.rb
163
- - app/models/information.rb
164
- - app/models/authz.rb
165
- - app/api/config/environment.rb
166
- - app/helpers/instances_helper.rb
167
- - app/helpers/machine_images_helper.rb
168
- - app/helpers/sessions_helper.rb
169
- - app/helpers/storage_pools_helper.rb
170
- - app/helpers/information_helper.rb
171
- - app/helpers/accounts_helper.rb
172
- - app/helpers/dialog_helper.rb
173
- - app/helpers/home_helper.rb
174
- - app/helpers/security_groups_helper.rb
175
- - app/helpers/snapshots_helper.rb
176
- - app/helpers/volumes_helper.rb
177
- - app/helpers/users_helper.rb
178
- - app/helpers/keypairs_helper.rb
179
- - app/helpers/application_helper.rb
180
- - app/helpers/host_pools_helper.rb
181
- - app/controllers/information_controller.rb
182
- - app/controllers/security_groups_controller.rb
183
- - app/controllers/home_controller.rb
184
- - app/controllers/sessions_controller.rb
185
- - app/controllers/storage_pools_controller.rb
186
- - app/controllers/instance_specs_controller.rb
187
- - app/controllers/keypairs_controller.rb
188
- - app/controllers/volumes_controller.rb
189
- - app/controllers/snapshots_controller.rb
190
- - app/controllers/dialog_controller.rb
191
- - app/controllers/machine_images_controller.rb
192
- - app/controllers/host_pools_controller.rb
193
- - app/controllers/instances_controller.rb
194
- - app/controllers/users_controller.rb
195
- - app/controllers/application_controller.rb
196
- - app/controllers/accounts_controller.rb
197
- - app/views/accounts/index.html.erb
198
- - app/views/accounts/password.html.erb
193
+ - app/models/base_new.rb
194
+ - app/models/oauth_consumer.rb
195
+ - app/views/keypairs/index.html.erb
196
+ - app/views/snapshots/index.html.erb
197
+ - app/views/storage_pools/index.html.erb
198
+ - app/views/dialog/delete_ssh_keypair.html.erb
199
199
  - app/views/dialog/create_volume_from_snapshot.html.erb
200
- - app/views/dialog/attach_volume.html.erb
201
- - app/views/dialog/launch_instance.html.erb
202
- - app/views/dialog/create_volume.html.erb
203
- - app/views/dialog/stop_instances.html.erb
204
- - app/views/dialog/delete_snapshot.html.erb
205
- - app/views/dialog/terminate_instances.html.erb
206
200
  - app/views/dialog/start_instances.html.erb
201
+ - app/views/dialog/terminate_instances.html.erb
202
+ - app/views/dialog/create_and_edit_security_group.html.erb
207
203
  - app/views/dialog/create_snapshot.html.erb
208
- - app/views/dialog/delete_ssh_keypair.html.erb
209
- - app/views/dialog/create_ssh_keypair.html.erb
210
- - app/views/dialog/reboot_instances.html.erb
211
- - app/views/dialog/delete_security_group.html.erb
212
204
  - app/views/dialog/detach_volume.html.erb
213
- - app/views/dialog/create_and_edit_security_group.html.erb
205
+ - app/views/dialog/stop_instances.html.erb
206
+ - app/views/dialog/delete_snapshot.html.erb
207
+ - app/views/dialog/attach_volume.html.erb
208
+ - app/views/dialog/create_volume.html.erb
209
+ - app/views/dialog/launch_instance.html.erb
210
+ - app/views/dialog/reboot_instances.html.erb
211
+ - app/views/dialog/create_ssh_keypair.html.erb
214
212
  - app/views/dialog/delete_volume.html.erb
213
+ - app/views/dialog/delete_security_group.html.erb
214
+ - app/views/home/index.html.erb
215
215
  - app/views/instances/index.html.erb
216
- - app/views/snapshots/index.html.erb
216
+ - app/views/accounts/index.html.erb
217
+ - app/views/accounts/password.html.erb
217
218
  - app/views/sessions/new.html.erb
218
- - app/views/layouts/_header.html.erb
219
- - app/views/layouts/_footer.html.erb
219
+ - app/views/sessions/information.html.erb
220
+ - app/views/host_pools/index.html.erb
221
+ - app/views/machine_images/index.html.erb
222
+ - app/views/security_groups/index.html.erb
223
+ - app/views/volumes/index.html.erb
220
224
  - app/views/layouts/_informationarea.html.erb
225
+ - app/views/layouts/_footer.html.erb
221
226
  - app/views/layouts/_sidemenu.html.erb
222
227
  - app/views/layouts/_login_header.erb
223
228
  - app/views/layouts/login.html.erb
229
+ - app/views/layouts/_header.html.erb
224
230
  - app/views/layouts/application.html.erb
225
- - app/views/volumes/index.html.erb
226
- - app/views/home/index.html.erb
227
- - app/views/security_groups/index.html.erb
228
- - app/views/machine_images/index.html.erb
229
- - app/views/host_pools/index.html.erb
230
- - app/views/storage_pools/index.html.erb
231
- - app/views/keypairs/index.html.erb
232
- - lib/cli/user.rb
233
231
  - lib/cli/errors.rb
234
232
  - lib/cli/account.rb
235
233
  - lib/cli/base.rb
234
+ - lib/cli/user.rb
235
+ - config/cli_token.rb
236
236
  - config/application-cli.rb
237
237
  - config/routes.rb
238
- - config/cli_token.rb
239
- - config/boot.rb
240
- - config/environment.rb
241
- - config/environment-cli.rb
242
- - config/application.rb
243
238
  - config/environment-api.rb
239
+ - config/environment.rb
240
+ - config/boot.rb
244
241
  - config/initializers/inflections.rb
245
- - config/initializers/site.rb
246
- - config/initializers/dcmgr_gui.rb
247
- - config/initializers/secret_token.rb
248
242
  - config/initializers/backtrace_silencers.rb
249
243
  - config/initializers/sequel.rb
250
244
  - config/initializers/mime_types.rb
245
+ - config/initializers/site.rb
246
+ - config/initializers/secret_token.rb
251
247
  - config/initializers/session_store.rb
252
- - config/environments/production.rb
248
+ - config/initializers/dcmgr_gui.rb
249
+ - config/environment-auth.rb
253
250
  - config/environments/development.rb
251
+ - config/environments/production.rb
254
252
  - config/environments/test.rb
253
+ - config/application.rb
254
+ - config/environment-cli.rb
255
255
  - config/locales/ja.yml
256
256
  - config/locales/ja-JP.yml
257
257
  - config/locales/en.yml
258
258
  - config/database.yml
259
+ - config/dcmgr_gui.yml
260
+ - db/migrations/0001_origin.rb
259
261
  - db/seeds.rb
260
- - extras/authentication.rb
261
262
  - extras/util.rb
262
- - public/favicon.ico
263
- - public/i18n/Messages.properties
264
- - public/422.html
263
+ - extras/authentication.rb
265
264
  - public/robots.txt
266
- - public/stylesheets/jquery.cluetip.css
267
- - public/stylesheets/style.css
268
265
  - public/stylesheets/jquery.loadmask.css
269
- - public/stylesheets/BreadCrumb.css
266
+ - public/stylesheets/reset.css
270
267
  - public/stylesheets/vtip.css
268
+ - public/stylesheets/sexyalertbox.css
271
269
  - public/stylesheets/dialog.css
270
+ - public/stylesheets/style.css
271
+ - public/stylesheets/jquery.cluetip.css
272
272
  - public/stylesheets/jquery-ui-1.8.4.custom.css
273
273
  - public/stylesheets/common.css
274
- - public/stylesheets/sexyalertbox.css
275
- - public/stylesheets/reset.css
276
274
  - public/stylesheets/ui.selectmenu.css
277
- - public/500.html
278
- - public/images/btn_savechange.gif
279
- - public/images/vtip_arrow.png
280
- - public/images/mainarea_wide_bottom_bg.gif
281
- - public/images/menu_list_header_current.gif
282
- - public/images/icon_resource02.gif
283
- - public/images/icon_instances.gif
284
- - public/images/btn_healthdetail.gif
285
- - public/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
286
- - public/images/app_passive.gif
287
- - public/images/app_active.gif
288
- - public/images/btn_launch.gif
289
- - public/images/content_head_bg.gif
290
- - public/images/ui-icons_8dc262_256x240.png
291
- - public/images/btn_create_snapshot.gif
292
- - public/images/dialog-error.png
293
- - public/images/footer_bg.gif
294
- - public/images/ui-icons_ffd27a_256x240.png
295
- - public/images/ui-bg_glass_55_fcf0ba_1x400.png
296
- - public/images/icon_stop.gif
297
- - public/images/sidemenu_bg.gif
298
- - public/images/btn_delete_snapshot.gif
299
- - public/images/plat_active.gif
300
- - public/images/btn_create_security_group.gif
301
- - public/images/ui-bg_glass_100_f6f6f6_1x400.png
302
- - public/images/listicon_useast.gif
303
- - public/images/select_bg_139.gif
304
- - public/images/btn_createkey.gif
305
- - public/images/content_foot_bg.gif
306
- - public/images/mainarea_wide_h3_bg.gif
307
- - public/images/ChevronOverlay.png
308
- - public/images/dialog-help.png
309
- - public/images/ui-bg_diagonals-thick_18_b81900_40x40.png
310
- - public/images/dialog-information.png
311
- - public/images/select_bg_126.gif
312
- - public/images/ui-bg_highlight-hard_100_fafaf4_1x100.png
313
- - public/images/ui-icons_ef8c08_256x240.png
314
- - public/images/mainarea_h3_bg.gif
315
- - public/images/icon_service_stat.gif
316
- - public/images/btn_de_register.gif
317
- - public/images/icon_health.gif
318
- - public/images/ui-icons_808080_256x240.png
319
- - public/images/btn_change.gif
320
- - public/images/ui-icons_222222_256x240.png
321
- - public/images/plat_passive.gif
275
+ - public/stylesheets/BreadCrumb.css
276
+ - public/404.html
277
+ - public/javascripts/prototype.js
278
+ - public/javascripts/jquery-ui-1.8.4.custom.min.js
279
+ - public/javascripts/jquery.jBreadCrumb.1.1.js
280
+ - public/javascripts/jquery.cluetip.min.js
281
+ - public/javascripts/jquery-1.4.2.min.js
282
+ - public/javascripts/sexyalertbox.v1.2.jquery.js
283
+ - public/javascripts/jsdeferred.jquery.js
284
+ - public/javascripts/rails.js
285
+ - public/javascripts/jquery.tmpl.js
286
+ - public/javascripts/jquery.loadmask.min.js
287
+ - public/javascripts/controls.js
288
+ - public/javascripts/jquery.easing.1.3.js
289
+ - public/javascripts/effects.js
290
+ - public/javascripts/dragdrop.js
291
+ - public/javascripts/jquery.hoverIntent.js
292
+ - public/javascripts/dcmgr_gui/instance_panel.js
293
+ - public/javascripts/dcmgr_gui/dashboard_panel.js
294
+ - public/javascripts/dcmgr_gui/storage_pool_panel.js
295
+ - public/javascripts/dcmgr_gui/application.js
296
+ - public/javascripts/dcmgr_gui/snapshot_panel.js
297
+ - public/javascripts/dcmgr_gui/core.js
298
+ - public/javascripts/dcmgr_gui/sshkeypair_panel.js
299
+ - public/javascripts/dcmgr_gui/host_pool_panel.js
300
+ - public/javascripts/dcmgr_gui/account_panel.js
301
+ - public/javascripts/dcmgr_gui/volume_panel.js
302
+ - public/javascripts/dcmgr_gui/security_group_panel.js
303
+ - public/javascripts/dcmgr_gui/image_panel.js
304
+ - public/javascripts/jquery.i18n.properties-min.js
305
+ - public/javascripts/ui.selectmenu.js
306
+ - public/i18n/Messages_ja.properties
307
+ - public/i18n/Messages_en.properties
308
+ - public/i18n/Messages_ja-JP.properties
309
+ - public/i18n/Messages.properties
310
+ - public/favicon.ico
311
+ - public/422.html
312
+ - public/images/ui-icons_ffffff_256x240.png
313
+ - public/images/IconHome.gif
322
314
  - public/images/icon_ttl_personal_inf.gif
323
- - public/images/icon_resource01.gif
324
315
  - public/images/mainarea_wide_content_bg.gif
325
- - public/images/bg-box-body.gif
326
- - public/images/icon_caution.gif
327
- - public/images/icon_resource.gif
316
+ - public/images/mainarea_content_bg.gif
328
317
  - public/images/loader_boxes.gif
329
- - public/images/bg-box-bottom.gif
330
- - public/images/mainarea_bottom_bg.gif
331
- - public/images/icon_ttl_detail.gif
332
- - public/images/btn_register_new_ami.gif
333
- - public/images/ui-bg_inset-soft_15_2b2922_1x100.png
334
- - public/images/menu_list_header.gif
335
- - public/images/icon_information.gif
336
- - public/images/ui-icons_4c9052_256x240.png
337
- - public/images/body_bg.gif
338
- - public/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png
339
- - public/images/btn_refresh.gif
340
- - public/images/sidemenu_bottom.gif
341
- - public/images/btn_delete_security_group.gif
342
- - public/images/ui-bg_flat_55_fcf0ba_40x100.png
343
- - public/images/lastelement_bg.png
344
- - public/images/btn_show.gif
345
- - public/images/icon_ttl_instance.gif
346
- - public/images/clear.gif
347
- - public/images/btn_show_accesskey.png
348
- - public/images/bg-box-top.png
349
- - public/images/icon_blockstore.gif
350
- - public/images/ui-bg_highlight-hard_15_459e00_1x100.png
351
- - public/images/dialog-warning.png
352
- - public/images/sidemenu_top.gif
318
+ - public/images/ui-icons_ef8c08_256x240.png
353
319
  - public/images/loading.gif
354
- - public/images/icon_summary.gif
355
- - public/images/icon_ttl_accskey.gif
356
- - public/images/bup_btn_healthdetail.gif
357
- - public/images/bg-box-bottom.png
320
+ - public/images/infra_passive.gif
321
+ - public/images/body_bg.gif
322
+ - public/images/btn_hide.gif
323
+ - public/images/btn_create_snapshot.gif
358
324
  - public/images/ui-bg_highlight-soft_50_136d76_1x100.png
359
- - public/images/ui-bg_diagonals-thick_20_666666_40x40.png
360
- - public/images/ui-bg_inset-soft_15_386b3d_1x100.png
361
- - public/images/head_gradation_bg.gif
362
- - public/images/Chevron.gif
363
- - public/images/ui-bg_gloss-wave_35_f6a828_500x100.png
364
- - public/images/ui-icons_228ef1_256x240.png
365
- - public/images/icon_service.gif
366
- - public/images/bup_btn_refresh.gif
367
- - public/images/ui-bg_highlight-soft_95_ffedad_1x100.png
368
- - public/images/ui-bg_glass_65_ffffff_1x400.png
369
- - public/images/regionselect_bg.gif
370
- - public/images/icon_resource03.gif
371
- - public/images/ui-bg_flat_10_000000_40x100.png
372
- - public/images/IconHome.gif
373
- - public/images/mainarea_content_bg.gif
374
- - public/images/lastelement_bg.gif
375
- - public/images/icon_rss.gif
376
- - public/images/btn_delete_volume.gif
377
- - public/images/ui-icons_eeeeee_256x240.png
378
- - public/images/ui-bg_highlight-hard_95_cccccc_1x100.png
379
- - public/images/bg-box-body.png
380
325
  - public/images/ui-bg_glass_10_458845_1x400.png
381
- - public/images/icon_images.gif
382
- - public/images/btn_create_volume.gif
383
- - public/images/btn_hide.gif
384
- - public/images/header_logo.gif
385
- - public/images/icon_resource04.gif
386
- - public/images/ui-bg_glass_10_136d76_1x400.png
387
- - public/images/ui-icons_cd0a0a_256x240.png
388
- - public/images/bg-box-top.gif
326
+ - public/images/icon_security.gif
327
+ - public/images/content_foot_bg.gif
328
+ - public/images/bg-box-top.png
329
+ - public/images/ui-bg_diagonals-thick_18_b81900_40x40.png
330
+ - public/images/menu_list_header.gif
331
+ - public/images/ui-bg_glass_100_f6f6f6_1x400.png
332
+ - public/images/btn_prev.gif
333
+ - public/images/ui-bg_glass_100_fdf5ce_1x400.png
334
+ - public/images/sidemenu_bg.gif
335
+ - public/images/clear.gif
336
+ - public/images/bg-box-bottom.png
389
337
  - public/images/loader_ball.gif
390
- - public/images/cluetip/wait.gif
391
- - public/images/cluetip/bl.gif
392
- - public/images/cluetip/tl.gif
393
- - public/images/cluetip/br.gif
338
+ - public/images/cluetip/tr.gif
394
339
  - public/images/cluetip/rarrowright.gif
395
- - public/images/cluetip/tl.png
396
- - public/images/cluetip/rarrowup.gif
397
- - public/images/cluetip/br.png
398
- - public/images/cluetip/tr.png
340
+ - public/images/cluetip/arrowdown.gif
341
+ - public/images/cluetip/bl.png
399
342
  - public/images/cluetip/arrowup.gif
400
343
  - public/images/cluetip/arrowleft.gif
401
- - public/images/cluetip/arrowright.gif
402
- - public/images/cluetip/itunes.png
403
- - public/images/cluetip/tr.gif
404
- - public/images/cluetip/bl.png
405
- - public/images/cluetip/rarrowdown.gif
406
- - public/images/cluetip/darrowdown.gif
407
344
  - public/images/cluetip/rarrowleft.gif
408
- - public/images/cluetip/darrowleft.gif
409
- - public/images/cluetip/arrowdown.gif
345
+ - public/images/cluetip/br.png
346
+ - public/images/cluetip/br.gif
347
+ - public/images/cluetip/itunes.png
348
+ - public/images/cluetip/tr.png
349
+ - public/images/cluetip/wait.gif
410
350
  - public/images/cluetip/darrowright.gif
351
+ - public/images/cluetip/darrowleft.gif
352
+ - public/images/cluetip/rarrowdown.gif
353
+ - public/images/cluetip/tl.gif
411
354
  - public/images/cluetip/darrowup.gif
355
+ - public/images/cluetip/arrowright.gif
356
+ - public/images/cluetip/darrowdown.gif
357
+ - public/images/cluetip/tl.png
358
+ - public/images/cluetip/rarrowup.gif
359
+ - public/images/cluetip/bl.gif
360
+ - public/images/footer_bg.gif
361
+ - public/images/icon_images.gif
362
+ - public/images/ui-bg_flat_55_fcf0ba_40x100.png
363
+ - public/images/btn_create_volume.gif
364
+ - public/images/lastelement_bg.gif
365
+ - public/images/btn_launch.gif
366
+ - public/images/dialog-error.png
412
367
  - public/images/btn_next.gif
413
- - public/images/ui-icons_ffffff_256x240.png
414
- - public/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
415
- - public/images/ui-icons_847e71_256x240.png
416
- - public/images/ui-bg_glass_100_fdf5ce_1x400.png
417
- - public/images/ui-bg_gloss-wave_100_ece8da_500x100.png
418
- - public/images/btn_prev.gif
419
- - public/images/infra_passive.gif
420
- - public/images/btn_deletekey.gif
368
+ - public/images/btn_show_accesskey.png
369
+ - public/images/sidemenu_bottom.gif
370
+ - public/images/ui-bg_highlight-soft_95_ffedad_1x100.png
371
+ - public/images/listicon_useast.gif
372
+ - public/images/icon_resource04.gif
373
+ - public/images/content_head_bg.gif
374
+ - public/images/icon_caution.gif
375
+ - public/images/ui-icons_222222_256x240.png
376
+ - public/images/ui-icons_cd0a0a_256x240.png
377
+ - public/images/ui-bg_diagonals-thick_20_666666_40x40.png
378
+ - public/images/menu_list_header_current.gif
379
+ - public/images/mainarea_wide_bottom_bg.gif
380
+ - public/images/sidemenu_top.gif
381
+ - public/images/ui-bg_glass_55_fcf0ba_1x400.png
382
+ - public/images/ui-icons_228ef1_256x240.png
383
+ - public/images/btn_delete_security_group.gif
384
+ - public/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png
385
+ - public/images/mainarea_wide_h3_bg.gif
386
+ - public/images/bg-box-top.gif
387
+ - public/images/btn_delete_snapshot.gif
388
+ - public/images/btn_delete_volume.gif
389
+ - public/images/app_active.gif
390
+ - public/images/mainarea_h3_bg.gif
391
+ - public/images/regionselect_bg.gif
392
+ - public/images/bup_btn_healthdetail.gif
393
+ - public/images/ui-icons_eeeeee_256x240.png
394
+ - public/images/icon_summary.gif
395
+ - public/images/dialog-help.png
396
+ - public/images/ui-bg_glass_10_136d76_1x400.png
397
+ - public/images/ui-icons_808080_256x240.png
398
+ - public/images/Chevron.gif
399
+ - public/images/plat_passive.gif
400
+ - public/images/bup_btn_refresh.gif
401
+ - public/images/btn_createkey.gif
402
+ - public/images/ui-bg_glass_65_ffffff_1x400.png
403
+ - public/images/icon_blockstore.gif
404
+ - public/images/icon_health.gif
405
+ - public/images/ChevronOverlay.png
421
406
  - public/images/content_bg.png
407
+ - public/images/ui-bg_flat_10_000000_40x100.png
408
+ - public/images/btn_refresh.gif
409
+ - public/images/select_bg_126.gif
410
+ - public/images/app_passive.gif
411
+ - public/images/icon_resource03.gif
412
+ - public/images/dialog-information.png
413
+ - public/images/btn_deletekey.gif
414
+ - public/images/ui-bg_inset-soft_15_386b3d_1x100.png
422
415
  - public/images/infra_active.gif
423
- - public/images/icon_security.gif
416
+ - public/images/ui-bg_highlight-hard_15_459e00_1x100.png
417
+ - public/images/icon_ttl_accskey.gif
418
+ - public/images/icon_information.gif
419
+ - public/images/header_logo.gif
420
+ - public/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
421
+ - public/images/btn_show.gif
422
+ - public/images/bg-box-body.png
423
+ - public/images/btn_de_register.gif
424
+ - public/images/btn_create_security_group.gif
425
+ - public/images/icon_service.gif
426
+ - public/images/ui-bg_gloss-wave_35_f6a828_500x100.png
427
+ - public/images/mainarea_bottom_bg.gif
428
+ - public/images/btn_savechange.gif
429
+ - public/images/icon_ttl_detail.gif
430
+ - public/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
431
+ - public/images/ui-bg_highlight-hard_100_fafaf4_1x100.png
432
+ - public/images/ui-icons_4c9052_256x240.png
433
+ - public/images/btn_change.gif
434
+ - public/images/icon_ttl_instance.gif
435
+ - public/images/head_gradation_bg.gif
436
+ - public/images/dialog-warning.png
437
+ - public/images/icon_stop.gif
438
+ - public/images/ui-bg_gloss-wave_100_ece8da_500x100.png
439
+ - public/images/btn_healthdetail.gif
440
+ - public/images/icon_service_stat.gif
441
+ - public/images/bg-box-body.gif
442
+ - public/images/ui-icons_8dc262_256x240.png
443
+ - public/images/icon_resource02.gif
444
+ - public/images/vtip_arrow.png
445
+ - public/images/select_bg_139.gif
446
+ - public/images/icon_instances.gif
447
+ - public/images/ui-icons_847e71_256x240.png
448
+ - public/images/icon_resource.gif
449
+ - public/images/icon_rss.gif
450
+ - public/images/ui-bg_inset-soft_15_2b2922_1x100.png
451
+ - public/images/ui-bg_highlight-hard_95_cccccc_1x100.png
452
+ - public/images/bg-box-bottom.gif
424
453
  - public/images/ui-bg_highlight-soft_25_67b021_1x100.png
425
- - public/javascripts/jquery.easing.1.3.js
426
- - public/javascripts/jquery.i18n.properties-min.js
427
- - public/javascripts/jquery.cluetip.min.js
428
- - public/javascripts/prototype.js
429
- - public/javascripts/jquery.loadmask.min.js
430
- - public/javascripts/sexyalertbox.v1.2.jquery.js
431
- - public/javascripts/rails.js
432
- - public/javascripts/jsdeferred.jquery.js
433
- - public/javascripts/jquery.jBreadCrumb.1.1.js
434
- - public/javascripts/effects.js
435
- - public/javascripts/dragdrop.js
436
- - public/javascripts/jquery-1.4.2.min.js
437
- - public/javascripts/dcmgr_gui/snapshot_panel.js
438
- - public/javascripts/dcmgr_gui/security_group_panel.js
439
- - public/javascripts/dcmgr_gui/dashboard_panel.js
440
- - public/javascripts/dcmgr_gui/application.js
441
- - public/javascripts/dcmgr_gui/storage_pool_panel.js
442
- - public/javascripts/dcmgr_gui/core.js
443
- - public/javascripts/dcmgr_gui/sshkeypair_panel.js
444
- - public/javascripts/dcmgr_gui/host_pool_panel.js
445
- - public/javascripts/dcmgr_gui/image_panel.js
446
- - public/javascripts/dcmgr_gui/volume_panel.js
447
- - public/javascripts/dcmgr_gui/instance_panel.js
448
- - public/javascripts/dcmgr_gui/account_panel.js
449
- - public/javascripts/controls.js
450
- - public/javascripts/jquery.tmpl.js
451
- - public/javascripts/jquery-ui-1.8.4.custom.min.js
452
- - public/javascripts/jquery.hoverIntent.js
453
- - public/javascripts/ui.selectmenu.js
454
- - public/404.html
455
- - lib/tasks/dcmgr_gui.rake
454
+ - public/images/icon_resource01.gif
455
+ - public/images/lastelement_bg.png
456
+ - public/images/ui-icons_ffd27a_256x240.png
457
+ - public/images/plat_active.gif
458
+ - public/images/btn_register_new_ami.gif
459
+ - public/500.html
456
460
  - lib/tasks/dcmgr_api.rake
457
461
  - lib/tasks/dcmgr_oauth.rake
458
- - test/test_helper.rb
459
- - test/performance/browsing_test.rb
460
- - test/unit/helpers/users_helper_test.rb
461
- - test/unit/helpers/host_pools_helper_test.rb
462
- - test/unit/helpers/snapshots_helper_test.rb
463
- - test/unit/helpers/home_helper_test.rb
464
- - test/unit/helpers/information_helper_test.rb
465
- - test/unit/helpers/accounts_helper_test.rb
466
- - test/unit/helpers/dialog_helper_test.rb
467
- - test/unit/helpers/keypairs_helper_test.rb
468
- - test/unit/helpers/machine_images_helper_test.rb
469
- - test/unit/helpers/storage_pools_helper_test.rb
470
- - test/unit/helpers/volumes_helper_test.rb
471
- - test/unit/helpers/instances_helper_test.rb
472
- - test/unit/helpers/sessions_helper_test.rb
473
- - test/unit/helpers/security_groups_helper_test.rb
474
- - test/functional/volumes_controller_test.rb
475
- - test/functional/storage_pools_controller_test.rb
476
- - test/functional/snapshots_controller_test.rb
462
+ - lib/tasks/dcmgr_gui.rake
463
+ - test/functional/information_controller_test.rb
477
464
  - test/functional/sessions_controller_test.rb
465
+ - test/functional/security_groups_controller_test.rb
466
+ - test/functional/storage_pools_controller_test.rb
478
467
  - test/functional/users_controller_test.rb
468
+ - test/functional/dialog_controller_test.rb
469
+ - test/functional/instances_controller_test.rb
479
470
  - test/functional/host_pools_controller_test.rb
480
- - test/functional/security_groups_controller_test.rb
481
- - test/functional/machine_images_controller_test.rb
471
+ - test/functional/snapshots_controller_test.rb
472
+ - test/functional/volumes_controller_test.rb
473
+ - test/functional/keypairs_controller_test.rb
482
474
  - test/functional/home_controller_test.rb
483
- - test/functional/information_controller_test.rb
484
475
  - test/functional/accounts_controller_test.rb
485
- - test/functional/keypairs_controller_test.rb
486
- - test/functional/dialog_controller_test.rb
487
- - test/functional/instances_controller_test.rb
476
+ - test/functional/machine_images_controller_test.rb
477
+ - test/performance/browsing_test.rb
478
+ - test/test_helper.rb
479
+ - test/unit/helpers/security_groups_helper_test.rb
480
+ - test/unit/helpers/machine_images_helper_test.rb
481
+ - test/unit/helpers/information_helper_test.rb
482
+ - test/unit/helpers/snapshots_helper_test.rb
483
+ - test/unit/helpers/home_helper_test.rb
484
+ - test/unit/helpers/sessions_helper_test.rb
485
+ - test/unit/helpers/volumes_helper_test.rb
486
+ - test/unit/helpers/keypairs_helper_test.rb
487
+ - test/unit/helpers/users_helper_test.rb
488
+ - test/unit/helpers/dialog_helper_test.rb
489
+ - test/unit/helpers/host_pools_helper_test.rb
490
+ - test/unit/helpers/instances_helper_test.rb
491
+ - test/unit/helpers/accounts_helper_test.rb
492
+ - test/unit/helpers/storage_pools_helper_test.rb
488
493
  - script/rails
489
494
  - Rakefile
490
495
  - config.ru
@@ -492,7 +497,6 @@ files:
492
497
  - NOTICE
493
498
  - INSTALL.txt
494
499
  - INSTALL-API.txt
495
- has_rdoc: true
496
500
  homepage:
497
501
  licenses: []
498
502
 
@@ -524,9 +528,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
524
528
  requirements: []
525
529
 
526
530
  rubyforge_project:
527
- rubygems_version: 1.3.7
531
+ rubygems_version: 1.8.10
528
532
  signing_key:
529
533
  specification_version: 3
530
- summary: "Datacenter management toolkit for IaaS Cloud: UI frontend"
534
+ summary: "Wakame-VDC: UI frontend"
531
535
  test_files: []
532
536