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); [EMAIL PROTECTED] = 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__