Return-Path: Delivered-To: apmail-perl-modperl-cvs-archive@www.apache.org Received: (qmail 9316 invoked from network); 23 Aug 2006 06:36:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 23 Aug 2006 06:36:25 -0000 Received: (qmail 84351 invoked by uid 500); 23 Aug 2006 06:36:22 -0000 Delivered-To: apmail-perl-modperl-cvs-archive@perl.apache.org Received: (qmail 84313 invoked by uid 500); 23 Aug 2006 06:36:22 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@perl.apache.org List-Id: Delivered-To: mailing list modperl-cvs@perl.apache.org Received: (qmail 84247 invoked by uid 99); 23 Aug 2006 06:36:21 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Aug 2006 23:36:21 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Aug 2006 23:36:20 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 7CE501A981A; Tue, 22 Aug 2006 23:36:00 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r433937 - in /perl/Apache-SizeLimit/trunk/lib/Apache: SizeLimit.pm SizeLimit2.pm Date: Wed, 23 Aug 2006 06:35:59 -0000 To: modperl-cvs@perl.apache.org From: pgollucci@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060823063600.7CE501A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: pgollucci Date: Tue Aug 22 23:35:58 2006 New Revision: 433937 URL: http://svn.apache.org/viewvc?rev=433937&view=rev Log: add in the subclass magic. At this point, we're here: t/apache/basic................FAILED test 9 Failed 1/12 tests, 91.67% okay t/apache/check_n_requests.....ok t/apache/check_n_requests2....ok t/apache/deprecated...........FAILED tests 2-5 Failed 4/5 tests, 20.00% okay t/pod.........................ok Modified: perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit2.pm Modified: perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm URL: http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm?rev=433937&r1=433936&r2=433937&view=diff ============================================================================== --- perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm (original) +++ perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm Tue Aug 22 23:35:58 2006 @@ -26,6 +26,10 @@ $VERSION = '0.91-dev'; +use Apache::BaseSizeLimit; +use vars qw(@ISA); +@ISA = qw(Apache::BaseSizeLimit); + __PACKAGE__->set_check_interval(1); sub handler ($$) { Modified: perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit2.pm URL: http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit2.pm?rev=433937&r1=433936&r2=433937&view=diff ============================================================================== --- perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit2.pm (original) +++ perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit2.pm Tue Aug 22 23:35:58 2006 @@ -28,6 +28,9 @@ # 2.x requires 5.6.x+ so 'our' is okay our $VERSION = '0.91-dev'; +use Apache::BaseSizeLimit; +our @ISA = qw(Apache::BaseSizeLimit); + __PACKAGE__->set_check_interval(1); sub handler ($$) { @@ -102,7 +105,6 @@ } 1; - __END__