search for: 74a958c

Displaying 7 results from an estimated 7 matches for "74a958c".

2009 May 22
1
[PATCH server] fixed smart pool 'save' regression.
...ds]} ret_hash[:resource_type] = Host if params[:resource_type] == "hosts" ret_hash[:resource_type] = Storage if params[:resource_type] == "storage" ret_hash diff --git a/src/app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb index 1a65718..74a958c 100644 --- a/src/app/controllers/pool_controller.rb +++ b/src/app/controllers/pool_controller.rb @@ -112,7 +112,7 @@ class PoolController < ApplicationController # FIXME: REST and browsers send params differently. Should be fixed # in the views alert = svc_create(params[:pool] ? p...
2009 Jul 06
0
[PATCH server] UI for accumulated uptime for VMs. (revised2)
...ml | 1 + src/app/views/vm/show.rhtml | 4 +++- src/test/unit/vm_test.rb | 6 ++++++ 9 files changed, 45 insertions(+), 8 deletions(-) diff --git a/src/app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb index 74a958c..44cb780 100644 --- a/src/app/controllers/pool_controller.rb +++ b/src/app/controllers/pool_controller.rb @@ -96,7 +96,7 @@ class PoolController < ApplicationController def vms_json(args) attr_list = [:id, :description, :uuid, :num_vcpus_allocated, :memory_allocated_in_...
2009 Jul 02
1
[PATCH server] UI for accumulated uptime for VMs. (revised)
...ml | 1 + src/app/views/vm/show.rhtml | 4 +++- src/test/unit/vm_test.rb | 6 ++++++ 9 files changed, 44 insertions(+), 7 deletions(-) diff --git a/src/app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb index 74a958c..44cb780 100644 --- a/src/app/controllers/pool_controller.rb +++ b/src/app/controllers/pool_controller.rb @@ -96,7 +96,7 @@ class PoolController < ApplicationController def vms_json(args) attr_list = [:id, :description, :uuid, :num_vcpus_allocated, :memory_allocated_in_...
2009 Jul 06
2
[PATCH server] UI for accumulated uptime for VMs. (revised3)
...ml | 1 + src/app/views/vm/show.rhtml | 4 +++- src/test/unit/vm_test.rb | 6 ++++++ 9 files changed, 45 insertions(+), 8 deletions(-) diff --git a/src/app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb index 74a958c..44cb780 100644 --- a/src/app/controllers/pool_controller.rb +++ b/src/app/controllers/pool_controller.rb @@ -96,7 +96,7 @@ class PoolController < ApplicationController def vms_json(args) attr_list = [:id, :description, :uuid, :num_vcpus_allocated, :memory_allocated_in_...
2009 Jun 29
3
[PATCH server] UI for accumulated uptime for VMs.
...tance/_list.rhtml | 3 +++ src/app/views/vm/_grid.rhtml | 1 + src/app/views/vm/show.rhtml | 4 +++- 8 files changed, 35 insertions(+), 6 deletions(-) diff --git a/src/app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb index 74a958c..44cb780 100644 --- a/src/app/controllers/pool_controller.rb +++ b/src/app/controllers/pool_controller.rb @@ -96,7 +96,7 @@ class PoolController < ApplicationController def vms_json(args) attr_list = [:id, :description, :uuid, :num_vcpus_allocated, :memory_allocated_in_...
2009 Jul 09
2
permit many-to-many vms / networks relationship
This patchset contains changes to the ovirt server frontend, backend, and tests components, permitting vms to be associated with multiple networks and vice versa. Also included are two patches which are required for the frontend bits; a patch adding collapsable sections to the vm form, which in itself depends on the second patch that provides default values for the cpu and memory vm table fields
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...| 95 +++++++++++- src/test/unit/vm_test.rb | 14 +- 28 files changed, 710 insertions(+), 130 deletions(-) create mode 100644 src/db/migrate/040_associate_vms_with_nics.rb diff --git a/src/app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb index 74a958c..0d2e491 100644 --- a/src/app/controllers/pool_controller.rb +++ b/src/app/controllers/pool_controller.rb @@ -96,7 +96,7 @@ class PoolController < ApplicationController def vms_json(args) attr_list = [:id, :description, :uuid, :num_vcpus_allocated, :memory_allocated_in_...