X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=about.pl;h=75635a694c95ebd4c5148a73e331356f48bbfa15;hb=60e033dc916c3c1f89fed70fe59ec871d3744268;hp=08b3b6f0816827e70f4b01471a834a882da3c8f8;hpb=f896384ceb895b169ff7e6e911ecfc9cf42a0a9a;p=koha.git diff --git a/about.pl b/about.pl index 08b3b6f081..75635a694c 100755 --- a/about.pl +++ b/about.pl @@ -16,7 +16,6 @@ # Suite 330, Boston, MA 02111-1307 USA use strict; -require Exporter; use C4::Output; # contains gettemplate use C4::Auth; @@ -63,18 +62,21 @@ $template->param( ); my @component_names = qw/ +Algorithm::CheckDigits Biblio::EndnoteStyle CGI CGI::Carp CGI::Session +CGI::Session::Serialize::yaml Class::Factory::Util Class::Accessor Compress::Zlib DBD::mysql DBI Data::Dumper -Date::Calc Data::ICal +Date::Calc +Date::ICal Date::Manip Digest::MD5 Email::Date @@ -85,8 +87,11 @@ Getopt::Long Getopt::Std HTML::Template::Pro HTTP::Cookies +HTTP::OAI HTTP::Request::Common HTML::Scrubber +IPC::Cmd +JSON LWP::Simple LWP::UserAgent Lingua::Stem @@ -119,6 +124,7 @@ Test::Harness Test::More Text::CSV Text::CSV_XS +Text::CSV::Encoded Text::Iconv Text::Wrap Time::HiRes @@ -128,6 +134,7 @@ XML::Dumper XML::LibXML XML::LibXSLT XML::SAX::ParserFactory +XML::SAX::Writer XML::Simple XML::RSS YAML::Syck @@ -147,14 +154,12 @@ foreach my $component ( sort @component_names ) { else { $version = 'module is missing'; } - $counter++; - $counter=0 if $counter >3; push( @components, { name => $component, version => $version, - counter => $counter, + newrow => (++$counter % 4) ? 0 : 1, } ); }