X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=about.pl;h=04a9675c01c908706bd126e84ed00e98150f7392;hb=af5ad339f71d80a48baad81d8038e58b1043d731;hp=08b3b6f0816827e70f4b01471a834a882da3c8f8;hpb=f896384ceb895b169ff7e6e911ecfc9cf42a0a9a;p=srvgit diff --git a/about.pl b/about.pl index 08b3b6f081..04a9675c01 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,35 +62,46 @@ $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 +Graphics::Magick HTML::Template::Pro HTTP::Cookies +HTTP::OAI HTTP::Request::Common HTML::Scrubber +IPC::Cmd +JSON LWP::Simple LWP::UserAgent Lingua::Stem +Lingua::Stem::Snowball List::Util List::MoreUtils +Locale::Currency::Format Locale::Language MARC::Crosswalk::DublinCore MARC::Charset @@ -104,9 +114,12 @@ 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 @@ -119,6 +132,7 @@ Test::Harness Test::More Text::CSV Text::CSV_XS +Text::CSV::Encoded Text::Iconv Text::Wrap Time::HiRes @@ -128,6 +142,7 @@ XML::Dumper XML::LibXML XML::LibXSLT XML::SAX::ParserFactory +XML::SAX::Writer XML::Simple XML::RSS YAML::Syck @@ -147,14 +162,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, } ); }