diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-24 18:10:38 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-24 18:10:38 +0000 |
commit | e3b9af2efa018719c597a75e7baa116670579462 (patch) | |
tree | fa303c5990d1c827d01077eda766a0e281844225 /perl-install | |
parent | 5e65513637d653e2c9d3f5f121a7db348a240324 (diff) | |
download | drakx-e3b9af2efa018719c597a75e7baa116670579462.tar drakx-e3b9af2efa018719c597a75e7baa116670579462.tar.gz drakx-e3b9af2efa018719c597a75e7baa116670579462.tar.bz2 drakx-e3b9af2efa018719c597a75e7baa116670579462.tar.xz drakx-e3b9af2efa018719c597a75e7baa116670579462.zip |
use the langs chosen to know the keyboards to propose (and not only the main lang)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 | ||||
-rw-r--r-- | perl-install/keyboard.pm | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index bffd331bb..9a34a2d77 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -189,11 +189,11 @@ For any question on this document, please contact MandrakeSoft S.A. sub selectKeyboard { my ($o, $clicked) = @_; - my $l = keyboard::lang2keyboards($o->{lang}); + my $l = keyboard::lang2keyboards(lang::langs($o->{langs})); #- good guess, don't ask return install_steps::selectKeyboard($o) - if !$::expert && !$clicked && $l->[0][1] >= 90; + if !$::expert && !$clicked && $l->[0][1] >= 90 && listlength(lang::langs($o->{langs})) == 1; my @best = map { $_->[0] } @$l; push @best, 'us_intl' if !member('us_intl', @best); diff --git a/perl-install/keyboard.pm b/perl-install/keyboard.pm index f6eb9842d..aefb6ef5a 100644 --- a/perl-install/keyboard.pm +++ b/perl-install/keyboard.pm @@ -336,10 +336,10 @@ sub unpack_keyboards { } map { [ split ':' ] } split ' ', $k ]; } sub lang2keyboards { - my ($l) = @_; - my $li = unpack_keyboards($lang2keyboard{substr($l, 0, 5)}) || [ $keyboards{$l} && $l || "us" ]; - $li->[0][1] ||= 100 if @$li; - $li; + my @li = sort { $b->[1] <=> $a->[1] } map { @$_ } map { + unpack_keyboards($lang2keyboard{substr($_, 0, 5)}) || [ [ ($keyboards{$_} ? $_ : "us") => 100 ] ]; + } @_; + \@li; } sub lang2keyboard { my ($l) = @_; |