move backend interface modules into PLP::Backend:: namespace
[perl/plp/.git] / PLP / Backend / CGI.pm
similarity index 91%
rename from PLP/CGI.pm
rename to PLP/Backend/CGI.pm
index 698c34b1120d531e7dd1cbeb9e9c45e87a2f7933..3b4c4003f1e8a7cce2c5598e2a6740bd1b964872 100644 (file)
@@ -1,4 +1,4 @@
-package PLP::CGI;
+package PLP::Backend::CGI;
 
 use strict;
 
@@ -70,7 +70,7 @@ sub everything {
        $_[0]->init() and PLP::start();
 }
 
-# This is run by the CGI script. (#!perl \n use PLP::CGI;)
+# This is run by the CGI script. (#!perl \n use PLP::Backend::CGI;)
 sub import {
        $_[0]->everything();
 }
@@ -79,7 +79,7 @@ sub import {
 
 =head1 NAME
 
-PLP::CGI - CGI interface for PLP
+PLP::Backend::CGI - CGI interface for PLP
 
 =head1 SYNOPSIS
 
@@ -87,7 +87,7 @@ For most servers you'll need a script executable.
 Example F</foo/bar/plp.cgi>:
 
     #!/usr/bin/perl
-    use PLP::CGI;
+    use PLP::Backend::CGI;
 
 Or install the C<plp.cgi> included with PLP.
 
@@ -122,5 +122,5 @@ Mischa POSLAWSKY <perl@shiar.org>
 
 =head1 SEE ALSO
 
-L<PLP|PLP>, L<PLP::FastCGI|PLP::FastCGI>
+L<PLP|PLP>, L<PLP::Backend::FastCGI|PLP::Backend::FastCGI>