]> git.decadent.org.uk Git - maypole.git/blobdiff - lib/Maypole/Workflow.pod
Lots of documentation.
[maypole.git] / lib / Maypole / Workflow.pod
index 15d87c03120d15bb6c93424870eebd9861240915..5668b3400a8972805a2a7f9787491df911c9d026 100644 (file)
@@ -2,13 +2,13 @@
 
 =head1 NAME
 
-Apache::MVC::Workflow - Describes the progress of a request through Apache::MVC
+Maypole::Workflow - Describes the progress of a request through Maypole
 
 =head1 SYNOPSIS
 
                               config $h
                                   |
-                            Apache::MVC $r
+                            Maypole $r
     Apache::Request               |
          +---- $r->get_request ---+
         $ar                       |
@@ -29,7 +29,7 @@ Apache::MVC::Workflow - Describes the progress of a request through Apache::MVC
 
 =head1 DESCRIPTION
 
-An application based on C<Apache::MVC> will provide an Apache handler,
+An application based on C<Maypole> will provide an Apache handler,
 and eventually deliver a page. This document explains how that happens,
 and how to influence it. We'll use the C<BeerDB> project as our example.
 
@@ -74,7 +74,7 @@ preferred format.
 =head2 Is this an applicable URL?
 
 Next, the C<is_applicable> method works out if this is actually
-something that C<Apache::MVC> should care about - whether the class
+something that C<Maypole> should care about - whether the class
 exists in the application, whether it supports the given action, and so
 on. The action is "supported" if it exists in the model class (or its
 ancestors) and is marked with the C<:Exported> attribute; this stops web
@@ -136,7 +136,7 @@ template. It does this by looking first for C</beer/foo>: that is, a
 specific template appropriate to the class. Next, it looks at
 C</custom/foo>, a local modification, before looking for
 C</factory/foo>, one of the default templates that came with
-C<Apache::MVC>.
+C<Maypole>.
 
 =head2 Default template arguments
 
@@ -147,7 +147,7 @@ default:
 
 =item request
 
-The whole C<Apache::MVC> request object, for people getting really dirty
+The whole C<Maypole> request object, for people getting really dirty
 with the templates.
 
 =item objects