[svn:modperl-modules] rev 221 - Apache-Scoreboard-2.0/trunk/lib/Apache

[email protected] 28 Jun 2005 19:19:33 -0000
Newsgroups perl.modperl.modules.svn
Message-ID <[email protected]>
Author: MJH
Date: Tue Jun 28 12:19:32 2005
New Revision: 221

Modified:
   Apache-Scoreboard-2.0/trunk/lib/Apache/Scoreboard.pm
Log:
Increase the version number and modperl requirements

Modified: Apache-Scoreboard-2.0/trunk/lib/Apache/Scoreboard.pm
==============================================================================
--- Apache-Scoreboard-2.0/trunk/lib/Apache/Scoreboard.pm	(original)
+++ Apache-Scoreboard-2.0/trunk/lib/Apache/Scoreboard.pm	Tue Jun 28 12:19:32 2005
@@ -1,6 +1,6 @@
 package Apache::Scoreboard;
 
-$Apache::Scoreboard::VERSION = '2.07';
+$Apache::Scoreboard::VERSION = '2.08';
 
 use strict;
 use warnings FATAL => 'all';
@@ -11,7 +11,7 @@ BEGIN {
     require mod_perl2;
     die "This module was built against mod_perl 2.0 ",
         "and can't be used with $mod_perl::VERSION, "
-            unless $mod_perl::VERSION > 1.98;
+            unless $mod_perl::VERSION > 2.00;
 }
 
 # so that it can be loaded w/o mod_perl (.e.g MakeMaker requires this
@@ -95,6 +95,11 @@ Apache::Scoreboard - Perl interface to t
 
 =head1 SYNOPSIS
 
+ # Configuration in httpd.conf:
+ # mod_status should be compiled in (it is by default)
+ ExtendedStatus On
+
+ # in your perl code:
   use Apache::Scoreboard ();
 
   #inside httpd
@@ -655,3 +660,4 @@ Doug MacEachern
 
 Stas Bekman
 
+Malcolm J Harwood