search for: submit_for_list

Displaying 6 results from an estimated 6 matches for "submit_for_list".

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.
2009 May 13
1
[PATCH server] Cloud UI V1 (readonly).
...y are just trying to view details for one or more +# instances. +# TODO: if the user is trying to submit an acton on selected instances, call the service +# layer and display the :flash (might still want to do :get redirect to keep pagination/sorting +# correct. + def handle_form + case params[:submit_for_list] + when "Show Selected" + params.delete(:submit_for_list) + redirect_to :action => "index", :params => params + return +# Do this if we have submitted an action on one or more vms. +# svc_vm_action(params[:ids], params[:vm_action], params[:a...
2009 Jul 01
1
[PATCH server] fixed expected status messages that were failing unit/functional tests.
...troller_test.rb index 71d132b..0d713d4 100644 --- a/src/test/functional/cloud/instance_controller_test.rb +++ b/src/test/functional/cloud/instance_controller_test.rb @@ -50,7 +50,7 @@ class Cloud::InstanceControllerTest < ActionController::TestCase def test_add_valid_task post(:index,{:submit_for_list => 'Shutdown', :ids => [vms(:production_mysqld_vm).id]}) - assert_equal('shutdown_vm successful.', flash[:notice]) + assert_equal('shutdown_vm submitted.', flash[:notice]) assert_redirected_to :action => :index, :ids => vms(:production_mysqld_vm).id...
2009 May 27
1
[PATCH server] UI tweaks for cloud
...p: 2px solid #CECECE; } #graph { - border: 1px solid #AAAAAA; + border: 1px solid #EFEFEF; margin-bottom: 1.5ex; height: 15ex; } @@ -84,18 +131,34 @@ border: 0; color: #337ACC; cursor: pointer; + margin-right:12px; + font-size: 1em; + text-decoration: underline; +} + +input#submit_for_list { + margin:12px 16px 0 0; + padding:0; } #detail_header { - background-color: #F0F0F0; - height: 10ex; - margin-bottom: 1.5ex; + background-color: #EFEFEF; + height: 5em; + margin-bottom: 1em; +} + +#detail_header h3 { + color:#666666; + margin: 8px 12px 12px 16px; + display:inline-block;...