X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=about.pl;h=f92d211b4ab378a160c2eba8c8755406305cd8f1;hb=87ff46ba67ec81005a33faa579f03589144ac8d7;hp=e414f6b1f95ed213dddbec4fe927eaa25b7955d7;hpb=11aed99ced813bcc57b7d9b5434f8b1f9baaa85e;p=koha.git diff --git a/about.pl b/about.pl index e414f6b1f9..f92d211b4a 100755 --- a/about.pl +++ b/about.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl - + # This file is part of Koha. # # Koha is free software; you can redistribute it and/or modify it under the @@ -16,8 +16,7 @@ # Suite 330, Boston, MA 02111-1307 USA use strict; -require Exporter; - +use warnings; use C4::Output; # contains gettemplate use C4::Auth; use C4::Context; @@ -63,33 +62,43 @@ $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::Ical Data::Dumper +Data::ICal Date::Calc -Date::Ical +Date::ICal Date::Manip Digest::MD5 +Digest::SHA +Email::Date File::Temp +GD GD::Barcode::UPCE Getopt::Long Getopt::Std +Graphics::Magick HTML::Template::Pro HTTP::Cookies +HTTP::OAI HTTP::Request::Common HTML::Scrubber -Image::Magick +IPC::Cmd +JSON LWP::Simple LWP::UserAgent Lingua::Stem +Lingua::Stem::Snowball List::Util List::MoreUtils Locale::Language @@ -98,14 +107,18 @@ MARC::Charset MARC::File::XML MARC::Record MIME::Base64 +MIME::Lite MIME::QuotedPrint Mail::Sendmail Net::LDAP Net::LDAP::Filter Net::Z3950::ZOOM +Number::Format PDF::API2 PDF::API2::Page PDF::API2::Util +PDF::API2::Simple +PDF::Table PDF::Reuse PDF::Reuse::Barcode POE @@ -118,6 +131,7 @@ Test::Harness Test::More Text::CSV Text::CSV_XS +Text::CSV::Encoded Text::Iconv Text::Wrap Time::HiRes @@ -127,6 +141,7 @@ XML::Dumper XML::LibXML XML::LibXSLT XML::SAX::ParserFactory +XML::SAX::Writer XML::Simple XML::RSS YAML::Syck @@ -146,14 +161,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, } ); }