+++ /dev/null
-#!/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
+++ /dev/null
-#!/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
+++ /dev/null
-#!/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
+++ /dev/null
-#!/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
+++ /dev/null
-#!/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