From ec7d8bfda214073d222fcadfa1ac9d3ed884ea87 Mon Sep 17 00:00:00 2001 From: Mystery Man Date: Wed, 5 Sep 2001 12:55:06 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'V_9mdk'. --- perl-install/install_steps_stdio.pm | 41 ------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 perl-install/install_steps_stdio.pm (limited to 'perl-install/install_steps_stdio.pm') diff --git a/perl-install/install_steps_stdio.pm b/perl-install/install_steps_stdio.pm deleted file mode 100644 index 4b0771c55..000000000 --- a/perl-install/install_steps_stdio.pm +++ /dev/null @@ -1,41 +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) = @_; - - $o->{partitioning}{readonly} = 1; #- needed til diskdrake is graphic only... - (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; -- cgit v1.2.1