search for: forward_vnc

Displaying 8 results from an estimated 8 matches for "forward_vnc".

2009 Jul 13
0
[PATCH server] remove vm forward vnc and vm host history
...-- src/app/views/vm/_form.rhtml | 3 - src/app/views/vm/show.rhtml | 4 - src/db-omatic/db_omatic.rb | 31 ---- src/db-omatic/vnc.rb | 173 -------------------- .../040_remove_vm_history_and_forward_vnc.rb | 65 ++++++++ src/test/fixtures/vms.yml | 2 - src/test/unit/vm_test.rb | 16 -- 11 files changed, 65 insertions(+), 298 deletions(-) delete mode 100644 src/app/models/vm_host_history.rb delete mode 100644 src/db-omatic/vnc.rb c...
2009 Jun 19
0
[PATCH server] add toggable sections to vm form
...nd %> + </div> + <div style="clear:both;"></div> + <div class="clear_row"></div> + <div class="clear_row"></div> - <%= check_box_tag_with_label "Forward vm's vnc port locally", "forward_vnc", 1, @vm.forward_vnc %> + <%= check_box_tag_with_label "Forward vm's vnc port locally", "forward_vnc", 1, @vm.forward_vnc %> + </div> <div class="clear_row"></div> <%= check_box_tag_with_label "Start VM Now...
2009 Jun 19
1
[PATCH server] add collapsable sections to vm form
...0px;" %> </div> - <div style="clear:both;"></div> - <div class="clear_row"></div> <div class="clear_row"></div> - <%= check_box_tag_with_label "Forward vm's vnc port locally", "forward_vnc", 1, @vm.forward_vnc %> - <div class="clear_row"></div> + <%= rcheck_box_tag_with_label "Forward vm's vnc port locally", "forward_vnc", 1, @vm.forward_vnc %> + </div> + <div class="clear_row"></div> -...
2009 Jul 15
0
[PATCH server] changed vm details pane vnc uri, removed 'Remote Desktop' virt-viewer-plugin link
...ller => 'vm', :action => 'terminal', :id => @vm}, @@ -101,7 +92,7 @@ <div id="vms_selection_id" style="display:none"><%= @vm.id %></div> <div class="selection_key"> Uuid:<br/> - <%= @vm.forward_vnc ? "VNC uri:<br/>" : "" %> + VNC uri:<br/> Num vcpus allocated:<br/> Num vcpus used:<br/> Memory allocated:<br/> @@ -115,9 +106,8 @@ </div> <div class="selection_value"> <%=h @vm.uuid %>&l...
2009 Jul 24
2
[PATCH server] add collapsable sections to vm form
...0px;" %> </div> - <div style="clear:both;"></div> - <div class="clear_row"></div> <div class="clear_row"></div> <%= check_box_tag_with_label "Forward vm's vnc port locally", "forward_vnc", 1, @vm.forward_vnc %> - <div class="clear_row"></div> + </div> + <div class="clear_row"></div> <%= check_box_tag_with_label "Start VM Now? (pending current resource availability)", "start_now", nil if crea...
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
...ptions + _setup_network_options @storage_tree = VmResourcePool.find(params[:vm_resource_pool_id]).get_hardware_pool.storage_tree.to_json - @networks = Network.find(:all).collect{ |net| [net.name, net.id] } render :layout => 'popup' end def create params[:vm][:forward_vnc] = params[:forward_vnc] - alert = svc_create(params[:vm], params[:start_now]) + _parse_network_params(params) + alert = svc_create(params[:vm], params[:start_now], params[:nics]) render :json => { :object => "vm", :success => true, :alert => alert } end...