#!/usr/bin/perl use strict; $|++; my $VERSION = '0.49'; #---------------------------------------------------------------------------- =head1 NAME cpanstats-writepages - script to create the CPAN Testers Statistics website. =head1 SYNOPSIS perl cpanstats-writepages =head1 DESCRIPTION Using the cpanstats database, which should in the local directory, extracts all the data into the components of each page. Then creates each HTML page for the site. =cut # ------------------------------------- # Library Modules use lib qw(./lib ../lib); use Getopt::ArgvFile default=>1; use Getopt::Long; use CPAN::Testers::WWW::Statistics; # ------------------------------------- # Variables my (%options); # ------------------------------------- # Program init_options(); my $stats = CPAN::Testers::WWW::Statistics->new( config => $options{config}, directory => $options{directory}, templates => $options{templates}, database => $options{database}, address => $options{address}, logfile => $options{logfile}, logclean => $options{logclean} ); $stats->make_pages(); # ------------------------------------- # Subroutines =head1 FUNCTIONS =over 4 =item init_options Prepare command line options =cut sub init_options { GetOptions( \%options, 'config=s', 'templates=s', 'directory=s', 'database|d=s', 'address|a=s', 'logfile=s', 'logclean=i', 'help|h', 'version|v' ); _help(1) if($options{help}); _help(0) if($options{version}); } sub _help { my $full = shift; if($full) { print "\n"; print "Usage:$0 --config= \\\n"; print " [--logfile= [--logclean=<1|0>]] \\\n"; print " [--templates=] \\\n"; print " [--directory=] \\\n"; print " [--database|d=] \\\n"; print " [--address|a=] \\\n"; print " [--help|h] [--version|v] \n\n"; # 12345678901234567890123456789012345678901234567890123456789012345678901234567890 print "This program builds the CPAN Testers Statistics website.\n"; print "\nFunctional Options:\n"; print " [--config=] # path to config file [required]\n"; print " [--templates=] # path to templates\n"; print " [--directory=] # path to website directory\n"; print " [--database=] # path to SQLite database file\n"; print " [--address=] # path to address file\n"; print " [--logfile=] # path to logfile\n"; print " [--logclean] # overwrite log if specified\n"; print "\nOther Options:\n"; print " [--version] # program version\n"; print " [--help] # this screen\n"; print "\nFor further information type 'perldoc $0'\n"; } print "$0 v$VERSION\n"; exit(0); } __END__ =back =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. RT Queue - http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Testers-WWW-Statistics =head1 SEE ALSO L, L F, F, F =head1 AUTHOR Barbie, for Miss Barbell Productions . =head1 COPYRIGHT AND LICENSE Copyright (C) 2005-2009 Barbie for Miss Barbell Productions. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut