#!/usr/bin/perl -w
use strict;
use vars qw($VERSION);
$VERSION = '3.60';
#----------------------------------------------------------------------------
=head1 NAME
pages.cgi - CPAN Testers Reports web application.
=head1 SYNOPSIS
perl pages.cgi
=head1 DESCRIPTION
Core Reports web application.
=cut
#----------------------------------------------------------
# Additional Modules
use lib qw|. ./lib ./plugins|;
#use CGI::Carp qw(fatalsToBrowser);
use Labyrinth;
#----------------------------------------------------------
my $lab = Labyrinth->new();
$lab->run('/var/www/reports/cgi-bin/config/settings.ini');
1;
__END__
=head1 BUGS, PATCHES & FIXES
There are no known bugs at the time of this release. However, if you spot a
bug or are experiencing difficulties, that is not explained within the POD
documentation, please send bug reports and patches to the RT Queue (see below).
Fixes are dependant upon their severity and my availablity. Should a fix not
be forthcoming, please feel free to (politely) remind me.
=head1 SEE ALSO
L<CPAN::Testers::WWW::Statistics>,
L<CPAN::Testers::WWW::Wiki>,
L<CPAN::Testers::WWW::Blog>
=head1 AUTHOR
Barbie <barbie@cpan.org> 2008-present
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2008-2017 Barbie <barbie@cpan.org>
This module is free software; you can redistribute it and/or
modify it under the Artistic License 2.0.
=cut