search for: task_ord

Displaying 5 results from an estimated 5 matches for "task_ord".

Did you mean: task_id
2009 May 13
1
[PATCH server] Cloud UI V1 (readonly).
...n care of behind the scenes? + # Also, needs to be changed 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_pa...
2010 Nov 30
2
ActionController::RoutingError Assistance
Hello everyone, I can''t seem to figure out what I''m doing wrong on this test. I''m trying to delete one of my models, criterion. All code can be found here, please let me know if you need anything else! The rspec message is also in there. http://pastie.org/private/uaoexi6tmmsplsr3oj1a8w Thank you! Andrew Davis -- Posted via http://www.ruby-forum.com/.
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.