]> git.ipfire.org Git - thirdparty/AWStats.git/commitdiff
Added Plugins support
authoreldy <>
Mon, 22 Jul 2002 22:41:59 +0000 (22:41 +0000)
committereldy <>
Mon, 22 Jul 2002 22:41:59 +0000 (22:41 +0000)
wwwroot/cgi-bin/plugins/graph3d.pl [deleted file]
wwwroot/cgi-bin/plugins/hashfiles.pl [deleted file]
wwwroot/cgi-bin/plugins/readgz.pl [deleted file]
wwwroot/cgi-bin/plugins/timehires.pl [deleted file]
wwwroot/cgi-bin/plugins/timezone.pl [deleted file]

diff --git a/wwwroot/cgi-bin/plugins/graph3d.pl b/wwwroot/cgi-bin/plugins/graph3d.pl
deleted file mode 100644 (file)
index 6b91f8e..0000000
+++ /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 (file)
index 49d32c6..0000000
+++ /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 (file)
index fb3cd32..0000000
+++ /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 (file)
index 3d4286c..0000000
+++ /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 (file)
index 5348543..0000000
+++ /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