diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-18 17:52:21 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-18 17:52:21 +0000 |
commit | 3c449c259f3c6325a00bf542511bb1ccbce55054 (patch) | |
tree | 31ff76977b035edd10a498a43cd3abd2ed1861d9 /perl-install/network/tools.pm | |
parent | 42a56d315a86b9fa19d9330583a26a86c7453ab0 (diff) | |
download | drakx-3c449c259f3c6325a00bf542511bb1ccbce55054.tar drakx-3c449c259f3c6325a00bf542511bb1ccbce55054.tar.gz drakx-3c449c259f3c6325a00bf542511bb1ccbce55054.tar.bz2 drakx-3c449c259f3c6325a00bf542511bb1ccbce55054.tar.xz drakx-3c449c259f3c6325a00bf542511bb1ccbce55054.zip |
big renaming of ask_from_entries_refH in ask_from and ask_from_entries_refH_powered in ask_from_
Diffstat (limited to 'perl-install/network/tools.pm')
-rw-r--r-- | perl-install/network/tools.pm | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm index 4c164f2ad..47abf7892 100644 --- a/perl-install/network/tools.pm +++ b/perl-install/network/tools.pm @@ -65,26 +65,26 @@ sub read_providers_backend { my ($file) = @_; map { /(.*?)=>/ } catMaybeCompress sub ask_info2 { my ($cnx, $netc) = @_; $::isInstall and $in->set_help('configureNetworkDNS'); - $in->ask_from_entries_refH(_("Connection Configuration"), - _("Please fill or check the field below"), - [ - if__ ($cnx->{irq}, { label => _("Card IRQ"), val => \$cnx->{irq} }) , - if__ ($cnx->{mem}, { label => _("Card mem (DMA)"), val => \$cnx->{mem} }), - if__ ($cnx->{io}, { label => _("Card IO"), val => \$cnx->{io} }), - if__ ($cnx->{io0}, { label => _("Card IO_0"), val => \$cnx->{io0} }), - if__ ($cnx->{io1}, { label => _("Card IO_1"), val => \$cnx->{io1} }), - if__ ($cnx->{phone_in}, { label => _("Your personal phone number"), val => \$cnx->{phone_in} }), - if__ ($netc->{DOMAINNAME2}, { label => _("Provider name (ex provider.net)"), val => \$netc->{DOMAINNAME2} }), - if__ ($cnx->{phone_out}, { label => _("Provider phone number"), val => \$cnx->{phone_out} }), - if__ ($netc->{dnsServer2}, { label => _("Provider dns 1 (optional)"), val => \$netc->{dnsServer2} }), - if__ ($netc->{dnsServer3}, { label => _("Provider dns 2 (optional)"), val => \$netc->{dnsServer3} }), - if__ ($cnx->{dialing_mode}, { label => _("Dialing mode"), val => \$cnx->{dialing_mode},list=>["auto","manual"]}), - if__ ($cnx->{speed}, { label => _("Connection speed"), val => \$cnx->{speed}, list => ["64 Kb/s", "128 Kb/s"]}), - if__ ($cnx->{huptimeout}, { label => _("Connection timeout (in sec)"), val => \$cnx->{huptimeout} }), - if__ ($cnx->{login}, { label => _("Account Login (user name)"), val => \$cnx->{login} }), - if__ ($cnx->{passwd}, { label => _("Account Password"), val => \$cnx->{passwd} }), - ] - ) or return; + $in->ask_from(_("Connection Configuration"), + _("Please fill or check the field below"), + [ + if __ ($cnx->{irq}, { label => _("Card IRQ"), val => \$cnx->{irq} }) , + if __ ($cnx->{mem}, { label => _("Card mem (DMA)"), val => \$cnx->{mem} }), + if __ ($cnx->{io}, { label => _("Card IO"), val => \$cnx->{io} }), + if __ ($cnx->{io0}, { label => _("Card IO_0"), val => \$cnx->{io0} }), + if __ ($cnx->{io1}, { label => _("Card IO_1"), val => \$cnx->{io1} }), + if __ ($cnx->{phone_in}, { label => _("Your personal phone number"), val => \$cnx->{phone_in} }), + if __ ($netc->{DOMAINNAME2}, { label => _("Provider name (ex provider.net)"), val => \$netc->{DOMAINNAME2} }), + if __ ($cnx->{phone_out}, { label => _("Provider phone number"), val => \$cnx->{phone_out} }), + if __ ($netc->{dnsServer2}, { label => _("Provider dns 1 (optional)"), val => \$netc->{dnsServer2} }), + if __ ($netc->{dnsServer3}, { label => _("Provider dns 2 (optional)"), val => \$netc->{dnsServer3} }), + if __ ($cnx->{dialing_mode}, { label => _("Dialing mode"), val => \$cnx->{dialing_mode},list=>["auto","manual"]}), + if __ ($cnx->{speed}, { label => _("Connection speed"), val => \$cnx->{speed}, list => ["64 Kb/s", "128 Kb/s"]}), + if __ ($cnx->{huptimeout}, { label => _("Connection timeout (in sec)"), val => \$cnx->{huptimeout} }), + if __ ($cnx->{login}, { label => _("Account Login (user name)"), val => \$cnx->{login} }), + if __ ($cnx->{passwd}, { label => _("Account Password"), val => \$cnx->{passwd} }), + ] + ) or return; 1; } |