summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_stdio.pm
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2002-08-01 19:39:26 +0000
committerMystery Man <unknown@mandriva.org>2002-08-01 19:39:26 +0000
commit4d808c65fe622f829afdb8f48b3c95e15a6d71a2 (patch)
tree931dc2cf627605bf8277cb7d8f4dad929726b896 /perl-install/install_steps_stdio.pm
parentaf0430510356c70ea497fc108466c6236c1afcc1 (diff)
downloaddrakx-4d808c65fe622f829afdb8f48b3c95e15a6d71a2.tar
drakx-4d808c65fe622f829afdb8f48b3c95e15a6d71a2.tar.gz
drakx-4d808c65fe622f829afdb8f48b3c95e15a6d71a2.tar.bz2
drakx-4d808c65fe622f829afdb8f48b3c95e15a6d71a2.tar.xz
drakx-4d808c65fe622f829afdb8f48b3c95e15a6d71a2.zip
This commit was manufactured by cvs2svn to create tag 'V1_1_9_4mdk'.V1_1_9_4mdk
Diffstat (limited to 'perl-install/install_steps_stdio.pm')
-rw-r--r--perl-install/install_steps_stdio.pm40
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 1c0ea9abc..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;