bug fixed: on admin/stopwords, the calculation of the number of pages to
[koha_gimpoz] / about.pl
index 6b2ebc5..cae86ff 100755 (executable)
--- a/about.pl
+++ b/about.pl
@@ -8,6 +8,8 @@ use C4::Interface::CGI::Output;
 use C4::Auth;
 use C4::Context;
 use CGI;
+use LWP::Simple;
+use XML::Simple;
 
 my $query = new CGI;
 my ($template, $loggedinuser, $cookie)
@@ -21,9 +23,11 @@ my ($template, $loggedinuser, $cookie)
 
 my $kohaVersion = C4::Context->config("kohaversion");
 my $osVersion = `uname -a`;
-my $perlVersion = `perl -v`;
+my $perlVersion = $];
 my $mysqlVersion = `mysql -V`;
-my $apacheVersion =  `httpd -V`;
+my $apacheVersion =  `httpd -v`;
+$apacheVersion =  `httpd2 -v` unless $apacheVersion;
+my $zebraVersion = `zebraidx -V`;
 
 $template->param(
                                        kohaVersion => $kohaVersion,
@@ -31,6 +35,42 @@ $template->param(
                                        perlVersion        => $perlVersion,
                                        mysqlVersion       => $mysqlVersion,
                                        apacheVersion      => $apacheVersion,
+                                        zebraVersion       => $zebraVersion,
                );
 
+my @component_names =
+    qw/MARC::File::XML   MARC::Charset     Class::Accessor
+       LWP::Simple       XML::Simple       Net::Z3950
+       Event             Net::LDAP         PDF::API2
+       Mail::Sendmail    MARC::Record      Digest::MD5
+       HTML::Template    DBD::mysql        Date::Manip
+       DBI               Smart::Comments   ZOOM
+      /;
+my @components = ();
+
+foreach my $component (sort @component_names) {
+    my $version;
+    if (eval "require $component") {
+        $version = $component->VERSION;
+        if ($version eq '' ) {
+            $version = 'unknown';
+        }
+    }
+    else {
+        $version = 'module is missing';
+    }
+
+    push (
+        @components,
+        {
+            name    => $component,
+            version => $version,
+        }
+    );
+}
+
+$template->param(
+    components => \@components
+);
+
 output_html_with_http_headers $query, $cookie, $template->output;