diff options
| author | Mystery Man <unknown@mandriva.org> | 2002-07-08 07:45:08 +0000 |
|---|---|---|
| committer | Mystery Man <unknown@mandriva.org> | 2002-07-08 07:45:08 +0000 |
| commit | 93fcd1d443d69857dc3c5d859a73f593d4e12d70 (patch) | |
| tree | c1fd7550aaa100db9c8cafab358531978b6386d8 /perl-install/install_steps_stdio.pm | |
| parent | 9555bb791920e8feace953f90cf908e864451b59 (diff) | |
| download | drakx-93fcd1d443d69857dc3c5d859a73f593d4e12d70.tar drakx-93fcd1d443d69857dc3c5d859a73f593d4e12d70.tar.gz drakx-93fcd1d443d69857dc3c5d859a73f593d4e12d70.tar.bz2 drakx-93fcd1d443d69857dc3c5d859a73f593d4e12d70.tar.xz drakx-93fcd1d443d69857dc3c5d859a73f593d4e12d70.zip | |
This commit was manufactured by cvs2svn to create tag 'V1_1_8_1mdk'.V1_1_8_1mdk
Diffstat (limited to 'perl-install/install_steps_stdio.pm')
| -rw-r--r-- | perl-install/install_steps_stdio.pm | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/perl-install/install_steps_stdio.pm b/perl-install/install_steps_stdio.pm deleted file mode 100644 index 518640d29..000000000 --- a/perl-install/install_steps_stdio.pm +++ /dev/null @@ -1,40 +0,0 @@ -package install_steps_stdio; # $Id$ - -use diagnostics; -use strict; -use vars qw(@ISA); - -@ISA = qw(install_steps_interactive interactive_stdio); - -use common; -use interactive_stdio; -use install_steps_interactive; -use lang; - -sub new($$) { - my ($type, $o) = @_; - - (bless {}, ref $type || $type)->SUPER::new($o); -} - -sub enteringStep { - my ($o, $step) = @_; - print _("Entering step `%s'\n", translate($o->{steps}{$step}{text})); - $o->SUPER::enteringStep($step); -} -sub leavingStep { - my ($o, $step) = @_; - $o->SUPER::leavingStep($step); - print "--------\n"; -} - -#-###################################################################################### -#- Steps Functions -#-###################################################################################### -sub selectLanguage { - my ($o, $first_time) = @_; - $o->SUPER::selectLanguage($first_time); - lang::load_console_font($o->{lang}); -} - -1; |
