#!/usr/local/bin/perl =pod =head1 NAME $RCSfile: readme.cgi,v $ Display the README file =head1 VERSION =over =item Author Andrew DeFaria =item Revision $Revision: 1.2 $ =item Created: Mon Oct 25 11:10:47 PDT 2008 =item Modified: $Date: 2011/02/14 14:54:19 $ =back =head1 DESCRIPTION This script displays the README file =cut use strict; use warnings; use FindBin; use Getopt::Long; use CGI qw(:standard *table start_Tr end_Tr); use CGI::Carp 'fatalsToBrowser'; use lib "$FindBin::Bin/lib", "$FindBin::Bin/../lib"; use ClearadmWeb; use Display; use Utils; # Main GetOptions( 'usage' => sub { Usage }, 'verbose' => sub { set_verbose }, 'debug' => sub { set_debug }, ) or Usage "Invalid parameter"; # Announce ourselves verbose "$ClearadmWeb::APPNAME V$ClearadmWeb::VERSION"; heading; display '
'; display h1 {class => 'center'}, "$ClearadmWeb::APPNAME: README"; display $_ foreach (ReadFile 'README'); display '
'; footing; =pod =head1 CONFIGURATION AND ENVIRONMENT DEBUG: If set then $debug is set to this level. VERBOSE: If set then $verbose is set to this level. TRACE: If set then $trace is set to this level. =head1 DEPENDENCIES =head2 Perl Modules L L L L =head2 ClearSCM Perl Modules =begin man Display Utils =end man =begin html
ClearadmWeb
Display
Utils
=end html =head1 BUGS AND LIMITATIONS There are no known bugs in this script Please report problems to Andrew DeFaria . =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, ClearSCM, Inc. All rights reserved. =cut