You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by pg...@apache.org on 2006/08/23 08:07:47 UTC

svn commit: r433920 - in /perl/Apache-SizeLimit/trunk/lib/Apache: BaseSizeLimit.pm SizeLimit.pm SizeLimit2.pm

Author: pgollucci
Date: Tue Aug 22 23:07:47 2006
New Revision: 433920

URL: http://svn.apache.org/viewvc?rev=433920&view=rev
Log:
o need to initialize check_interval to 1 in the targeted packages not the BaseSizeLimit
o update the version message in Apache::SizeLimit to be specific for 1.x


Modified:
    perl/Apache-SizeLimit/trunk/lib/Apache/BaseSizeLimit.pm
    perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm
    perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit2.pm

Modified: perl/Apache-SizeLimit/trunk/lib/Apache/BaseSizeLimit.pm
URL: http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache/BaseSizeLimit.pm?rev=433920&r1=433919&r2=433920&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/lib/Apache/BaseSizeLimit.pm (original)
+++ perl/Apache-SizeLimit/trunk/lib/Apache/BaseSizeLimit.pm Tue Aug 22 23:07:47 2006
@@ -27,8 +27,6 @@
 
 $VERSION = '0.91-dev';
 
-__PACKAGE__->set_check_interval(1);
-
 $REQUEST_COUNT          = 1;
 $USE_SMAPS              = 1;
 

Modified: perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm
URL: http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm?rev=433920&r1=433919&r2=433920&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm (original)
+++ perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm Tue Aug 22 23:07:47 2006
@@ -26,6 +26,8 @@
 
 $VERSION = '0.91-dev';
 
+__PACKAGE__->set_check_interval(1);
+
 sub handler ($$) {
     my $class = shift;
     my $r = shift || Apache->request;
@@ -124,11 +126,6 @@
 
     This version is only for httpd 1.x and mod_perl 1.x
     series.
-
-    Future versions of this module may support both.
-
-    Currently, Apache2::SizeLimit is bundled with
-    mod_perl 2.x for that series.
 
 ******************************** NOTICE *******************
 

Modified: perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit2.pm
URL: http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit2.pm?rev=433920&r1=433919&r2=433920&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit2.pm (original)
+++ perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit2.pm Tue Aug 22 23:07:47 2006
@@ -28,6 +28,8 @@
 # 2.x requires 5.6.x+ so 'our' is okay
 our $VERSION = '0.91-dev';
 
+__PACKAGE__->set_check_interval(1);
+
 sub handler ($$) {
     my $class = shift;
     my $r = shift || Apache2::RequestUtil->request();