Author: pgollucci
Date: Fri Aug 25 23:01:20 2006
New Revision: 437091
URL: http://svn.apache.org/viewvc?rev=437091&view=rev
Log:
s/Apache::BaseSizeLimit/Apache::SizeLimit::Core/
Modified:
perl/Apache-SizeLimit/trunk/MANIFEST
perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm
perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit/Core.pm
perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm
Modified: perl/Apache-SizeLimit/trunk/MANIFEST
URL:
http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/MANIFEST?rev=437091&r1=437090&r2=437091&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/MANIFEST (original)
+++ perl/Apache-SizeLimit/trunk/MANIFEST Fri Aug 25 23:01:20 2006
@@ -6,7 +6,7 @@
Makefile.PL
README
lib/Apache/SizeLimit.pm
-lib/Apache/BaseSizeLimit.pm
+lib/Apache/SizeLimit/Core.pm
lib/Apache2/SizeLimit.pm
t/pod.t
t/response/TestApache/basic.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=437091&r1=437090&r2=437091&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm (original)
+++ perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm Fri Aug 25 23:01:20 2006
@@ -26,7 +26,7 @@
$VERSION = '0.91-dev';
-use Apache::BaseSizeLimit qw(
+use Apache::SizeLimit::Core qw(
$MAX_PROCESS_SIZE
$MAX_UNSHARED_SIZE
$MIN_SHARE_SIZE
@@ -34,7 +34,7 @@
$START_TIME
);
use vars qw(@ISA);
[EMAIL PROTECTED] = qw(Apache::BaseSizeLimit);
[EMAIL PROTECTED] = qw(Apache::SizeLimit::Core);
__PACKAGE__->set_check_interval(1);
Modified: perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit/Core.pm
URL:
http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit/Core.pm?rev=437091&r1=437090&r2=437091&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit/Core.pm (original)
+++ perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit/Core.pm Fri Aug 25
23:01:20 2006
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-package Apache::BaseSizeLimit;
+package Apache::SizeLimit::Core;
use strict;
@@ -265,7 +265,7 @@
=head1 NAME
-Apache::BaseLimit - Because size does matter.
+Apache::SizeLimit::Core - Because size does matter.
=head1 SYNOPSIS
Modified: perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm
URL:
http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm?rev=437091&r1=437090&r2=437091&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm (original)
+++ perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm Fri Aug 25 23:01:20
2006
@@ -32,14 +32,14 @@
# 2.x requires 5.6.x+ so 'our' is okay
our $VERSION = '0.91-dev';
-use Apache::BaseSizeLimit qw(
+use Apache::SizeLimit::Core qw(
$MAX_PROCESS_SIZE
$MAX_UNSHARED_SIZE
$MIN_SHARE_SIZE
$CHECK_EVERY_N_REQUESTS
$START_TIME
);
-our @ISA = qw(Apache::BaseSizeLimit);
+our @ISA = qw(Apache::SizeLimit::Core);
__PACKAGE__->set_check_interval(1);