Bug 2593 : way to duplicate items
[koha.git] / about.pl
blob56d1717dd72622f5de860d992fdd0342e6b75642
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA 02111-1307 USA
18 use strict;
20 use C4::Output; # contains gettemplate
21 use C4::Auth;
22 use C4::Context;
23 use CGI;
24 use LWP::Simple;
25 use XML::Simple;
26 use Config;
28 my $query = new CGI;
29 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
31 template_name => "about.tmpl",
32 query => $query,
33 type => "intranet",
34 authnotrequired => 0,
35 flagsrequired => { catalogue => 1 },
36 debug => 1,
40 my $kohaVersion = C4::Context::KOHAVERSION;
41 my $osVersion = `uname -a`;
42 my $perl_path = $^X;
43 if ($^O ne 'VMS') {
44 $perl_path .= $Config{_exe} unless $perl_path =~ m/$Config{_exe}$/i;
46 my $perlVersion = $];
47 my $mysqlVersion = `mysql -V`;
48 my $apacheVersion = `httpd -v`;
49 $apacheVersion = `httpd2 -v` unless $apacheVersion;
50 $apacheVersion = (`/usr/sbin/apache2 -V`)[0] unless $apacheVersion;
51 my $zebraVersion = `zebraidx -V`;
53 $template->param(
54 kohaVersion => $kohaVersion,
55 osVersion => $osVersion,
56 perlPath => $perl_path,
57 perlVersion => $perlVersion,
58 perlIncPath => [ map { perlinc => $_ }, @INC ],
59 mysqlVersion => $mysqlVersion,
60 apacheVersion => $apacheVersion,
61 zebraVersion => $zebraVersion,
63 my @component_names =
64 qw/
65 Algorithm::CheckDigits
66 Biblio::EndnoteStyle
67 CGI
68 CGI::Carp
69 CGI::Session
70 CGI::Session::Serialize::yaml
71 Class::Factory::Util
72 Class::Accessor
73 Compress::Zlib
74 DBD::mysql
75 DBD::SQLite2
76 DBI
77 Data::Dumper
78 Data::ICal
79 Date::Calc
80 Date::ICal
81 Date::Manip
82 Digest::MD5
83 Email::Date
84 File::Temp
86 GD::Barcode::UPCE
87 Getopt::Long
88 Getopt::Std
89 HTML::Template::Pro
90 HTTP::Cookies
91 HTTP::OAI
92 HTTP::Request::Common
93 HTML::Scrubber
94 JSON
95 LWP::Simple
96 LWP::UserAgent
97 Lingua::Stem
98 List::Util
99 List::MoreUtils
100 Locale::Language
101 MARC::Crosswalk::DublinCore
102 MARC::Charset
103 MARC::File::XML
104 MARC::Record
105 MIME::Base64
106 MIME::Lite
107 MIME::QuotedPrint
108 Mail::Sendmail
109 Net::LDAP
110 Net::LDAP::Filter
111 Net::Z3950::ZOOM
112 PDF::API2
113 PDF::API2::Page
114 PDF::API2::Util
115 PDF::Reuse
116 PDF::Reuse::Barcode
118 POSIX
119 Schedule::At
120 SMS::Send
121 Term::ANSIColor
122 Test
123 Test::Harness
124 Test::More
125 Text::CSV
126 Text::CSV_XS
127 Text::Iconv
128 Text::Wrap
129 Time::HiRes
130 Time::localtime
131 Unicode::Normalize
132 XML::Dumper
133 XML::LibXML
134 XML::LibXSLT
135 XML::SAX::ParserFactory
136 XML::SAX::Writer
137 XML::Simple
138 XML::RSS
139 YAML::Syck
142 my @components = ();
144 my $counter=0;
145 foreach my $component ( sort @component_names ) {
146 my $version;
147 if ( eval "require $component" ) {
148 $version = $component->VERSION;
149 if ( $version eq '' ) {
150 $version = 'unknown';
153 else {
154 $version = 'module is missing';
156 push(
157 @components,
159 name => $component,
160 version => $version,
161 newrow => (++$counter % 4) ? 0 : 1,
166 $template->param( components => \@components );
168 output_html_with_http_headers $query, $cookie, $template->output;