X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=about.pl;h=60aef3128dbeadce0fcab5ce1ed81152a468a389;hb=81b1c692dfbcbe8fd59b15dd2ae8ca718680f730;hp=a31b0a0211115e4e1034f017a5d361958a949748;hpb=6fce5692ba7ac591d0c2a671503bc517d08591a9;p=koha.git diff --git a/about.pl b/about.pl index a31b0a0211..60aef3128d 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,29 +62,38 @@ $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 +DBD::SQLite2 DBI Data::Dumper -Date::Calc Data::ICal +Date::Calc +Date::ICal Date::Manip Digest::MD5 +Digest::SHA +Email::Date File::Temp +GD GD::Barcode::UPCE Getopt::Long Getopt::Std HTML::Template::Pro HTTP::Cookies +HTTP::OAI HTTP::Request::Common HTML::Scrubber -Image::Magick +IPC::Cmd +JSON LWP::Simple LWP::UserAgent Lingua::Stem @@ -127,6 +135,7 @@ XML::Dumper XML::LibXML XML::LibXSLT XML::SAX::ParserFactory +XML::SAX::Writer XML::Simple XML::RSS YAML::Syck @@ -146,14 +155,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, } ); }