Skip to content

Commit

Permalink
Update physical server toolbar buttons
Browse files Browse the repository at this point in the history
Images on power buttons were replaced with newer ones while
identification operations gained real images instead of blank ones
that they contained before.
  • Loading branch information
Tadej Borovšak committed Apr 27, 2018
1 parent cb128c1 commit 84fa75b
Showing 1 changed file with 10 additions and 10 deletions.
Expand Up @@ -16,7 +16,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Power on the server'),
N_('Power On'),
:image => "power_on",
:icon => "pficon pficon-on fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "power_on", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Power on the server?"),
Expand All @@ -27,7 +27,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Power off the server'),
N_('Power Off'),
:image => "power_off",
:icon => "pficon pficon-off fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "power_off", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Power off the server?"),
Expand All @@ -38,7 +38,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Power off the server immediately'),
N_('Power Off Immediately'),
:image => "power_off",
:icon => "pficon pficon-off fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "power_off_now", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Power off the server immediately?"),
Expand All @@ -49,7 +49,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Restart the server'),
N_('Restart'),
:image => "power_reset",
:icon => "pficon pficon-restart fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "restart", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Restart the server?"),
Expand All @@ -60,7 +60,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Restart Server Immediately'),
N_('Restart Immediately'),
:image => "power_reset",
:icon => "pficon pficon-restart fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "restart_now", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Restart the server immediately?"),
Expand All @@ -71,7 +71,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Restart Server to System Setup'),
N_('Restart to System Setup'),
:image => "power_reset",
:icon => "pficon pficon-restart fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "restart_to_sys_setup", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Restart the server to UEFI settings?"),
Expand All @@ -82,7 +82,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Restart Management Controller'),
N_('Restart Management Controller'),
:image => "power_reset",
:icon => "pficon pficon-restart fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "restart_mgmt_controller", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Restart management controller?"),
Expand All @@ -101,7 +101,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Blink the Identify LED'),
N_('Blink LED'),
:image => "blank_button",
:icon => "pficon pficon-connected fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "blink_loc_led", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Blink the Identify LED?"),
Expand All @@ -112,7 +112,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Turn on the Idenfity LED'),
N_('Turn On LED'),
:image => "blank_button",
:icon => "pficon pficon-on fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "turn_on_loc_led", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Turn on the Identify LED?"),
Expand All @@ -123,7 +123,7 @@ module ApplicationHelper::Toolbar::PhysicalInfrastructure::OperationsButtonGroup
nil,
N_('Turn off the Identify LED'),
N_('Turn Off LED'),
:image => "blank_button",
:icon => "pficon pficon-off fa-lg",
:data => {'function' => 'sendDataWithRx',
'function-data' => '{"type": "turn_off_loc_led", "controller": "physicalServerToolbarController"}'},
:confirm => N_("Turn off the Identify LED?"),
Expand Down

0 comments on commit 84fa75b

Please sign in to comment.