diff options
| author | Andreas Brachold <vdr07@deltab.de> | 2007-11-11 06:55:13 +0000 |
|---|---|---|
| committer | Andreas Brachold <vdr07@deltab.de> | 2007-11-11 06:55:13 +0000 |
| commit | 3282be229999dc36c197b264d63063a18d136331 (patch) | |
| tree | 98a42db29d955b39e7bed1b599fdcc56c3a29de9 /lib/XXV/OUTPUT | |
| parent | cfdd733c17cfa4f1a43b827a656e9e53cc2524ac (diff) | |
| download | xxv-3282be229999dc36c197b264d63063a18d136331.tar.gz xxv-3282be229999dc36c197b264d63063a18d136331.tar.bz2 | |
* Update installation list with required modules
* Remove unused/doubled provided external perl moduls
Diffstat (limited to 'lib/XXV/OUTPUT')
| -rw-r--r-- | lib/XXV/OUTPUT/Console.pm | 9 | ||||
| -rw-r--r-- | lib/XXV/OUTPUT/Html.pm | 6 | ||||
| -rw-r--r-- | lib/XXV/OUTPUT/Wml.pm | 2 |
3 files changed, 8 insertions, 9 deletions
diff --git a/lib/XXV/OUTPUT/Console.pm b/lib/XXV/OUTPUT/Console.pm index a450227..dca6ee5 100644 --- a/lib/XXV/OUTPUT/Console.pm +++ b/lib/XXV/OUTPUT/Console.pm @@ -4,13 +4,11 @@ BEGIN{ $ENV{PERL_RL} = 'Perl' }; -use Locale::gettext; -use Term::ReadLine; - use strict; +use Locale::gettext; +use Term::ReadLine; use Tools; -use Pod::Text; use vars qw($AUTOLOAD); # This module method must exist for XXV @@ -21,8 +19,9 @@ sub module { my $args = { Name => 'Telnet', Prereq => { - 'XML::Simple' => 'Easy API to maintain XML (esp config files)', + 'Pod::Text' => 'Convert POD data to formatted ASCII text ', 'Text::ASCIITable' => 'Create a nice formatted table using ASCII characters.', +# 'Term::ReadLine' => 'Perl interface to various readline packages.', 'Term::ReadLine::Perl' => 'a quick implementation of the minimal interface to Readline', }, Description => gettext('This receives and sends ASCII messages'), diff --git a/lib/XXV/OUTPUT/Html.pm b/lib/XXV/OUTPUT/Html.pm index fc7cdba..32b946c 100644 --- a/lib/XXV/OUTPUT/Html.pm +++ b/lib/XXV/OUTPUT/Html.pm @@ -2,16 +2,13 @@ package XXV::OUTPUT::Html; use strict; -#use Template; use vars qw($AUTOLOAD); use Locale::gettext; use Tools; use XXV::OUTPUT::HTML::WAIT; use File::Path; use File::Basename; -use Pod::Html; use Fcntl; -#use Thread; $SIG{CHLD} = 'IGNORE'; @@ -23,6 +20,9 @@ sub module { my $args = { Name => 'Html', Prereq => { + 'Pod::Html' => 'Module to convert pod files to HTML ', +# 'Template' => 'Front-end module to the Template Toolkit', +# 'Compress::Zlib' => 'Interface to zlib compression library', 'HTML::TextToHTML' => 'convert plain text file to HTML. ', }, Description => gettext('This receives and sends HTML messages.'), diff --git a/lib/XXV/OUTPUT/Wml.pm b/lib/XXV/OUTPUT/Wml.pm index 2e6e417..7349ab5 100644 --- a/lib/XXV/OUTPUT/Wml.pm +++ b/lib/XXV/OUTPUT/Wml.pm @@ -16,7 +16,7 @@ sub module { my $args = { Name => 'Wml', Prereq => { - 'Template' => 'Front-end module to the Template Toolkit ', + 'Template' => 'Front-end module to the Template Toolkit', }, Description => gettext('This receives and sends WAP messages.'), Version => (split(/ /, '$Revision$'))[1], |
