summaryrefslogtreecommitdiffstats
path: root/bin/net_applet
diff options
context:
space:
mode:
authorClaudio Matsuoka <claudio@mandriva.com>2009-11-18 19:36:39 +0000
committerClaudio Matsuoka <claudio@mandriva.com>2009-11-18 19:36:39 +0000
commit4622870db3d6168dedef7fa81fb0be5754e10a8a (patch)
tree0347dc1468e245002b1b0c893f71671d4b1af15a /bin/net_applet
parent93bc1e28f274cc1675e37e90fb3ca9e36d6b58ac (diff)
downloaddrakx-net-4622870db3d6168dedef7fa81fb0be5754e10a8a.tar
drakx-net-4622870db3d6168dedef7fa81fb0be5754e10a8a.tar.gz
drakx-net-4622870db3d6168dedef7fa81fb0be5754e10a8a.tar.bz2
drakx-net-4622870db3d6168dedef7fa81fb0be5754e10a8a.tar.xz
drakx-net-4622870db3d6168dedef7fa81fb0be5754e10a8a.zip
Fix indentation of actions hash
Diffstat (limited to 'bin/net_applet')
-rwxr-xr-xbin/net_applet156
1 files changed, 94 insertions, 62 deletions
diff --git a/bin/net_applet b/bin/net_applet
index fc68d70..6d67bb5 100755
--- a/bin/net_applet
+++ b/bin/net_applet
@@ -129,68 +129,100 @@ sub get_interface_name {
}
my %actions = (
- 'upNetwork' => { name => sub { N("Connect %s", get_interface_name($_[0])) }, launch => sub { network::tools::start_interface($_[0], 1) } },
- 'downNetwork' => { name => sub { N("Disconnect %s", get_interface_name($_[0])) }, launch => sub { network::tools::stop_interface($_[0], 1) } },
- 'monitorNetwork' => { name => N("Monitor Network"), launch => \&run_net_monitor },
- 'monitorIFW' => { name => N("Interactive Firewall"), launch => \&run_drakids },
- 'wireless' => { name => N("Manage wireless networks"), launch => sub { run_drakroam() } },
- 'drakvpn' => {
- name => N("Manage VPN connections"), launch => sub {
- run_program::raw({ detach => 1 }, '/usr/sbin/drakvpn');
- },
- },
- 'confNetwork' => { name => N("Configure Network"), launch => sub { system("/usr/sbin/drakconnect &") } },
- 'chooseInterface' => {
- name => N("Watched interface"),
- choices => sub { N("Auto-detect"), sort keys %{$net->{ifcfg}} },
- choice_selected => sub { $watched_interface ? $_[0] eq $watched_interface : $_[0] eq N("Auto-detect") },
- launch => sub {
- $watched_interface = $_[0] eq N("Auto-detect") ? undef : $_[0];
- checkNetworkForce();
- }
- },
- 'setInterface' => {
- name => N("Active interfaces"),
- use_checkbox => 1,
- choices => sub { sort keys %{$net->{ifcfg}} },
- choice_selected => sub {
- my ($is_up, $_gw) = network::tools::get_interface_status($_[0]);
- $is_up;
- },
- format_choice => \&get_interface_name,
- get_icon => \&get_interface_icon,
- launch => sub {
- my ($is_up, $_gw) = network::tools::get_interface_status($_[0]);
- if ($is_up) {
- network::tools::stop_interface($_[0], 1);
- } else {
- network::tools::start_interface($_[0], 1);
- }
- checkNetworkForce();
- }
- },
- 'chooseProfile' => {
- name => N("Profiles"),
- choices => sub { network::network::netprofile_list() },
- choice_selected => sub { $_[0] eq $net->{PROFILE} },
- launch => sub {
- require run_program;
- $net->{PROFILE} = $_[0];
- run_program::raw({ detach => 1 }, common::wrap_command_for_root('/sbin/set-netprofile', $net->{PROFILE}));
- }
- },
- 'chooseVPN' => {
- name => N("VPN connection"),
- header => "drakvpn",
- choices => sub { map { $_->get_configured_connections } network::vpn::list_types },
- allow_single_choice => 1,
- format_choice => \&network::vpn::get_label,
- choice_selected => sub { $_[0]->is_started },
- launch => sub { require interactive; $_[0]->is_started ? $_[0]->stop : $_[0]->start(interactive->vnew) },
- },
- 'help' => { name => N("Help"), launch => sub { system("drakhelp --id internet-connection &") } },
- 'quit' => { name => N("Quit"), launch => \&mainQuit },
- );
+ 'upNetwork' => {
+ name => sub { N("Connect %s", get_interface_name($_[0])) },
+ launch => sub { network::tools::start_interface($_[0], 1) }
+ },
+ 'downNetwork' => {
+ name => sub { N("Disconnect %s", get_interface_name($_[0])) },
+ launch => sub { network::tools::stop_interface($_[0], 1) }
+ },
+ 'monitorNetwork' => {
+ name => N("Monitor Network"),
+ launch => \&run_net_monitor
+ },
+ 'monitorIFW' => {\
+ name => N("Interactive Firewall"),
+ launch => \&run_drakids
+ },
+ 'wireless' => {
+ name => N("Manage wireless networks"),
+ launch => sub { run_drakroam() }
+ },
+ 'drakvpn' => {
+ name => N("Manage VPN connections"),
+ launch => sub { run_program::raw({ detach => 1 }, '/usr/sbin/drakvpn'); },
+ },
+ 'confNetwork' => {
+ name => N("Configure Network"),
+ launch => sub { system("/usr/sbin/drakconnect &") }
+ },
+ 'chooseInterface' => {
+ name => N("Watched interface"),
+ choices => sub { N("Auto-detect"), sort keys %{$net->{ifcfg}} },
+ choice_selected => sub {
+ $watched_interface ? $_[0] eq $watched_interface :
+ $_[0] eq N("Auto-detect")
+ },
+ launch => sub {
+ $watched_interface = $_[0] eq N("Auto-detect") ? undef : $_[0];
+ checkNetworkForce();
+ }
+ },
+ 'setInterface' => {
+ name => N("Active interfaces"),
+ use_checkbox => 1,
+ choices => sub { sort keys %{$net->{ifcfg}} },
+ choice_selected => sub {
+ my ($is_up, $_gw) = network::tools::get_interface_status($_[0]);
+ $is_up;
+ },
+ format_choice => \&get_interface_name,
+ get_icon => \&get_interface_icon,
+ launch => sub {
+ my ($is_up, $_gw) = network::tools::get_interface_status($_[0]);
+ if ($is_up) {
+ network::tools::stop_interface($_[0], 1);
+ } else {
+ network::tools::start_interface($_[0], 1);
+ }
+ checkNetworkForce();
+ }
+ },
+ 'chooseProfile' => {
+ name => N("Profiles"),
+ choices => sub { network::network::netprofile_list() },
+ choice_selected => sub { $_[0] eq $net->{PROFILE} },
+ launch => sub {
+ require run_program;
+ $net->{PROFILE} = $_[0];
+ run_program::raw({ detach => 1 }, common::wrap_command_for_root('/sbin/set-netprofile', $net->{PROFILE}));
+ }
+ },
+ 'chooseVPN' => {
+ name => N("VPN connection"),
+ header => "drakvpn",
+ choices => sub {
+ map { $_->get_configured_connections } network::vpn::list_types
+ },
+ allow_single_choice => 1,
+ format_choice => \&network::vpn::get_label,
+ choice_selected => sub { $_[0]->is_started },
+ launch => sub {
+ require interactive; $_[0]->is_started ?
+ $_[0]->stop : $_[0]->start(interactive->vnew)
+ },
+ },
+ 'help' => {
+ name => N("Help"),
+ launch => sub { system("drakhelp --id internet-connection &") }
+ },
+ 'quit' => {
+ name => N("Quit"),
+ launch => \&mainQuit
+ },
+);
+
$icon = Gtk2::StatusIcon->new;