summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorDaouda Lo <daouda@mandriva.com>2002-07-04 11:12:13 +0000
committerDaouda Lo <daouda@mandriva.com>2002-07-04 11:12:13 +0000
commitd151c1f0c558fc6180af7b0e6cc0ae4b59ef1860 (patch)
treec5a34992546af3e7fe467fa7b0660126ad0349e9 /perl-install
parent9ec835f8eb87aa3f9c18870e8c283cc959f812a2 (diff)
downloaddrakx-backup-do-not-use-d151c1f0c558fc6180af7b0e6cc0ae4b59ef1860.tar
drakx-backup-do-not-use-d151c1f0c558fc6180af7b0e6cc0ae4b59ef1860.tar.gz
drakx-backup-do-not-use-d151c1f0c558fc6180af7b0e6cc0ae4b59ef1860.tar.bz2
drakx-backup-do-not-use-d151c1f0c558fc6180af7b0e6cc0ae4b59ef1860.tar.xz
drakx-backup-do-not-use-d151c1f0c558fc6180af7b0e6cc0ae4b59ef1860.zip
- don't display clear password
Diffstat (limited to 'perl-install')
-rwxr-xr-xperl-install/standalone/draknet6
1 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/standalone/draknet b/perl-install/standalone/draknet
index a31a5cdcf..968273828 100755
--- a/perl-install/standalone/draknet
+++ b/perl-install/standalone/draknet
@@ -87,7 +87,7 @@ $vbox1->pack_start($hbox1,0,0,0);
$hbox1->pack_start(new Gtk::Label(_("Profile: ")),0,0,0);
my $combo1 = new Gtk::Combo;
-$combo1->set_popdown_strings (network::netconnect::get_profiles() );
+$combo1->set_popdown_strings (network::netconnect::get_profiles());
my $old_profile=$netcnx->{PROFILE};
$combo1->entry->set_text($netcnx->{PROFILE} ? $netcnx->{PROFILE} : "default");
$combo1->entry->set_editable(0);
@@ -99,7 +99,7 @@ $button_del->signal_connect( clicked => sub {
$dialog->vbox->set_border_width(10);
$dialog->signal_connect ( delete_event => sub { Gtk->main_quit(); });
$dialog->vbox->pack_start(new Gtk::Label(_("Profile to delete:")),1,1,0);
- my $combo_dialog = new Gtk::Combo;
+ my $combo_dialog = new Gtk::Combo;
$combo_dialog->set_popdown_strings ( grep { ! /default/ } network::netconnect::get_profiles() );
$combo_dialog->entry->set_editable(0);
$dialog->vbox->pack_start($combo_dialog,1,1,0);
@@ -646,6 +646,8 @@ Create one first by clicking on 'Configure'")),1,1,0);
} else {
$infos[2*$i+1]=new Gtk::Entry();
$infos[2*$i]->pack_start($infos[2*$i+1],0,0,0);
+ #hide password if Entry Password
+ if ($_->[0] eq _("Account Password") || $_->[0] eq _("Password")) { $infos[2*$i+1]->set_visibility(0)};
}
$infos[2*$i+1]->set_text(${$_->[1]});
$i++;