Rename FCGI to FastCGI
Christian Hansen [Mon, 25 Apr 2005 14:53:51 +0000 (14:53 +0000)]
lib/Catalyst/Engine/FastCGI.pm [moved from lib/Catalyst/Engine/FCGI.pm with 65% similarity]
lib/Catalyst/Engine/FastCGI/Base.pm [moved from lib/Catalyst/Engine/FCGI/Base.pm with 83% similarity]
lib/Catalyst/Helper.pm

similarity index 65%
rename from lib/Catalyst/Engine/FCGI.pm
rename to lib/Catalyst/Engine/FastCGI.pm
index 6198ca0..9619d78 100644 (file)
@@ -1,20 +1,20 @@
-package Catalyst::Engine::FCGI;
+package Catalyst::Engine::FastCGI;
 
 use strict;
-use base qw(Catalyst::Engine::FCGI::Base Catalyst::Engine::CGI);
+use base qw(Catalyst::Engine::FastCGI::Base Catalyst::Engine::CGI);
 
 =head1 NAME
 
-Catalyst::Engine::FCGI - Catalyst FCGI Engine
+Catalyst::Engine::FastCGI - Catalyst FastCGI Engine
 
 =head1 SYNOPSIS
 
-A script using the Catalyst::Engine::FCGI module might look like:
+A script using the Catalyst::Engine::FastCGI module might look like:
 
     #!/usr/bin/perl -w
 
     BEGIN { 
-       $ENV{CATALYST_ENGINE} = 'FCGI';
+       $ENV{CATALYST_ENGINE} = 'FastCGI';
     }
 
     use strict;
similarity index 83%
rename from lib/Catalyst/Engine/FCGI/Base.pm
rename to lib/Catalyst/Engine/FastCGI/Base.pm
index 07761f8..ee353b0 100644 (file)
@@ -1,11 +1,11 @@
-package Catalyst::Engine::FCGI::Base;
+package Catalyst::Engine::FastCGI::Base;
 
 use strict;
 use FCGI;
 
 =head1 NAME
 
-Catalyst::Engine::FCGI::Base - Base class for FastCGI Engines
+Catalyst::Engine::FastCGI::Base - Base class for FastCGI Engines
 
 =head1 DESCRIPTION
 
index fab0b9a..b2780f0 100644 (file)
@@ -564,7 +564,7 @@ it under the same terms as perl itself.
 __fcgi__
 [% startperl %] -w
 
-BEGIN { $ENV{CATALYST_ENGINE} = 'FCGI' }
+BEGIN { $ENV{CATALYST_ENGINE} = 'FastCGI' }
 
 use strict;
 use FindBin;