Displaying 5 results from an estimated 5 matches for "vm_details".
2007 May 05
3
[PATCH] [Xen-API] Patch for fixing the rtc/timeoffset entry
This patch rewrites the rtc/timeoffset entry so the VM''s record can be
retrieved with the Java xmlrpc library. If the entry is ''None'' it upsets
the xmlrpc parser. This fixes it, though maybe there''s a better place in
xend to place similar code.
Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
_______________________________________________
Xen-devel
2009 May 13
1
[PATCH server] Cloud UI V1 (readonly).
...anged to a cloud priv
+ page, order)
+ @actions = VmTask.get_vm_actions
+ show
+ end
+
+ def show
+ ids = params[:ids]
+ task_page = find_in_params_or_default(:task_page, 1)
+ task_order = find_in_params_or_default(:task_order, "tasks.id")
+ @vm_details = Vm.find(ids) if ids
+ if @vm_details
+ @tasks = VmTask.paginate(:conditions => ["task_target_id in (:ids)",{:ids => ids}],
+ :per_page => 5, :page => task_page, :order => task_order)
+ end
+ end
+
+ # TODO: implement
+ def create...
2009 Jun 29
2
One more fix
This resend includes the rebase, but fixes a problem I just noticed with nil/empty checks.
2009 Jun 29
2
Resend of Cloud UI/service patches
This is a resend of the 2-patch series from a week or so ago, needed to be rebased due to some commits on next
2009 Jun 22
2
Patch series for Cloud Vm Actions
The following two patches should be applied in the order:
* [PATCH server] Add svc_vm_actions method to VmService.
* [PATCH server] Cloud UI layer to initiate actions on vms.
The service layer patch should work fine on its own (and not break
anything), but cloud patch relies on service being there.