From: eldy <> Date: Mon, 22 Jul 2002 22:41:59 +0000 (+0000) Subject: Added Plugins support X-Git-Tag: AWSTATS_5_0_BETA~151 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c94274cbb3044d84fb7f9640fa1853e6bbc61bce;p=thirdparty%2FAWStats.git Added Plugins support --- diff --git a/wwwroot/cgi-bin/plugins/graph3d.pl b/wwwroot/cgi-bin/plugins/graph3d.pl deleted file mode 100644 index 6b91f8ec..00000000 --- a/wwwroot/cgi-bin/plugins/graph3d.pl +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/perl -#----------------------------------------------------------------------------- -# Graph3d AWStats plugin -# Allow AWStats to use 3D graphs in its report -#----------------------------------------------------------------------------- -# Perl Required Modules: Graph3D -#----------------------------------------------------------------------------- -# $Revision$ - $Author$ - $Date$ - -use GD::Graph3D; - - -$PluginGraph3D=1; - -1; # Do not remove this line diff --git a/wwwroot/cgi-bin/plugins/hashfiles.pl b/wwwroot/cgi-bin/plugins/hashfiles.pl deleted file mode 100644 index 49d32c64..00000000 --- a/wwwroot/cgi-bin/plugins/hashfiles.pl +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/perl -#----------------------------------------------------------------------------- -# HashFiles AWStats plugin -# Allows AWStats to read/save its data file as native hash files. -# This increase read andwrite files operations. -#----------------------------------------------------------------------------- -# Perl Required Modules: Storable -#----------------------------------------------------------------------------- -# $Revision$ - $Author$ - $Date$ - -use Storable; - - -$PluginHiRes=1; - -1; # Do not remove this line diff --git a/wwwroot/cgi-bin/plugins/readgz.pl b/wwwroot/cgi-bin/plugins/readgz.pl deleted file mode 100644 index fb3cd321..00000000 --- a/wwwroot/cgi-bin/plugins/readgz.pl +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/perl -#----------------------------------------------------------------------------- -# ReadGZ AWStats plugin -# Allow AWStats to read gz files -#----------------------------------------------------------------------------- -# Perl Required Modules: Compress::Zlib -#----------------------------------------------------------------------------- -# $Revision$ - $Author$ - $Date$ - -use Compress::Zlib; - - -$PluginCompress=1; - -1; # Do not remove this line diff --git a/wwwroot/cgi-bin/plugins/timehires.pl b/wwwroot/cgi-bin/plugins/timehires.pl deleted file mode 100644 index 3d4286cd..00000000 --- a/wwwroot/cgi-bin/plugins/timehires.pl +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/perl -#----------------------------------------------------------------------------- -# TimeHires AWStats plugin -# Change time accuracy in showsteps option from seconds to milliseconds -#----------------------------------------------------------------------------- -# Perl Required Modules: Time::HiRes -#----------------------------------------------------------------------------- -# $Revision$ - $Author$ - $Date$ - -use Time::HiRes qw( gettimeofday ); - - -$PluginTimeHiRes=1; - -1; # Do not remove this line diff --git a/wwwroot/cgi-bin/plugins/timezone.pl b/wwwroot/cgi-bin/plugins/timezone.pl deleted file mode 100644 index 5348543a..00000000 --- a/wwwroot/cgi-bin/plugins/timezone.pl +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/perl -#----------------------------------------------------------------------------- -# TimeZone AWStats plugin -# Allow AWStats to correct a bad timezone for user of IIS that use strange -# log format. -#----------------------------------------------------------------------------- -# Perl Required Modules: None -#----------------------------------------------------------------------------- -# $Revision$ - $Author$ - $Date$ - - -# Warning: -# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -# !!!!!!! This module reduce VERY dramatically AWStats speed !!!!!!! -# !!!!!!! Do not use on large web sites !!!!!!! -# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - - -$PluginTimeZone=1; - -my $TZ=+2; -$PluginTimeZoneSeconds=($TZ*3600); - - -1; # Do not remove this line