+++ /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;
-$Plugin_readgz=1;
-
-
-
-#-----------------------------------------------------------------------------
-# PLUGIN GLOBAL VARIABLES
-#-----------------------------------------------------------------------------
-#...
-
-
-#-----------------------------------------------------------------------------
-# PLUGIN Init_pluginname FUNCTION
-#-----------------------------------------------------------------------------
-sub Init_readgz {
- return 1;
-}
-
-
-#-----------------------------------------------------------------------------
-# PLUGIN ShowField_pluginname FUNCTION
-#-----------------------------------------------------------------------------
-#...
-
-
-
-#-----------------------------------------------------------------------------
-# PLUGIN Filter_pluginname FUNCTION
-#-----------------------------------------------------------------------------
-#...
-
-
-
-1; # Do not remove this line