Displaying 4 results from an estimated 4 matches for "197241d".
2009 Jul 13
0
[PATCH server] remove vm forward vnc and vm host history
...insertions(+), 298 deletions(-)
delete mode 100644 src/app/models/vm_host_history.rb
delete mode 100644 src/db-omatic/vnc.rb
create mode 100644 src/db/migrate/040_remove_vm_history_and_forward_vnc.rb
diff --git a/src/app/controllers/vm_controller.rb b/src/app/controllers/vm_controller.rb
index 197241d..11b68ed 100644
--- a/src/app/controllers/vm_controller.rb
+++ b/src/app/controllers/vm_controller.rb
@@ -61,7 +61,6 @@ class VmController < ApplicationController
end
def create
- params[:vm][:forward_vnc] = params[:forward_vnc]
alert = svc_create(params[:vm], params[:start_now])...
2009 Jul 24
1
permit many-to-many vms / networks relationship redux
redux patchset permitting a vm to be associated with
multiple networks and vice-versa. updated patchset so
as to be applicable against current oVirt server HEAD
these patches may be applied in any order, they all
need to be pushed together
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
...:vnic_mac_addr, :state, :id]
+ :state, :id]
if (@pool.is_a? VmResourcePool) and @pool.get_hardware_pool.can_view(@user)
attr_list.insert(3, [:host, :hostname])
end
diff --git a/src/app/controllers/vm_controller.rb b/src/app/controllers/vm_controller.rb
index 197241d..2c0079c 100644
--- a/src/app/controllers/vm_controller.rb
+++ b/src/app/controllers/vm_controller.rb
@@ -55,29 +55,31 @@ class VmController < ApplicationController
def new
alert = svc_new(params[:vm_resource_pool_id])
_setup_provisioning_options
+ _setup_network_options
@st...