X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=about.pl;h=4a554adccf122c2e70b4ee4a35bef342f885d66c;hb=f64ab9ecf3de12a1ee14837cb576e06e530765e2;hp=29caa85554760613455ecc42dfbd01c2e8fa23c2;hpb=ec289b1b77873054b8263b9f3187ae6cf0f64f2b;p=koha.git diff --git a/about.pl b/about.pl index 29caa85554..4a554adccf 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; @@ -56,53 +55,69 @@ $template->param( osVersion => $osVersion, perlPath => $perl_path, perlVersion => $perlVersion, - perlIncPath => [ map { perlinc => $_ }, sort @INC ], + perlIncPath => [ map { perlinc => $_ }, @INC ], mysqlVersion => $mysqlVersion, apacheVersion => $apacheVersion, zebraVersion => $zebraVersion, ); 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 +Data::ICal Date::Calc +Date::ICal Date::Manip Digest::MD5 +Email::Date File::Temp +GD GD::Barcode::UPCE 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 List::Util +List::MoreUtils Locale::Language MARC::Crosswalk::DublinCore MARC::Charset MARC::File::XML MARC::Record MIME::Base64 +MIME::Lite MIME::QuotedPrint Mail::Sendmail +Net::LDAP +Net::LDAP::Filter Net::Z3950::ZOOM PDF::API2 PDF::API2::Page PDF::API2::Util PDF::Reuse PDF::Reuse::Barcode +POE POSIX Schedule::At +SMS::Send Term::ANSIColor Test Test::Harness @@ -118,6 +133,7 @@ XML::Dumper XML::LibXML XML::LibXSLT XML::SAX::ParserFactory +XML::SAX::Writer XML::Simple XML::RSS YAML::Syck @@ -137,14 +153,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, } ); }