X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FBasicCRUD.pod;h=7ae222ea085b2801fea6ffc350576efa210da90a;hp=f6e098af313f2cd8b31efad49e2b2fb69f93adaa;hb=a586a09f7f8230a94b28217806c008702a19803e;hpb=4ab6212da7a5e07df9837b0e57fb2b0c37aa9759 diff --git a/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod b/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod index f6e098a..7ae222e 100644 --- a/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod +++ b/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod @@ -140,7 +140,7 @@ controller methods (at least the ones that directly handle user input), it then sets the template that should handle this request. -=head2 Include a Template for the C Action: +=head2 Include a Template for the 'url_create' Action: Edit C and then enter: @@ -188,7 +188,7 @@ variables. Other than that, the rest of the code should be familiar from the examples in Chapter 3. -=head2 Try the C Feature +=head2 Try the 'url_create' Feature If the application is still running from before, use C to kill it. Then restart the server: @@ -391,7 +391,7 @@ object. Click the "Return to list" link, you should find that there are now seven books shown (two copies of TCPIP_Illustrated_Vol-2). -=head2 Refactor to Use a "Base" Method to Start the Chains +=head2 Refactor to Use a 'base' Method to Start the Chains Let's make a quick update to our initial Chained action to show a little more of the power of chaining. First, open @@ -858,7 +858,7 @@ involves a second request), the C is cleared before it can be displayed. -=head2 Using C to Pass Query Parameters +=head2 Using 'uri_for' to Pass Query Parameters There are several ways to pass information across a redirect. One option is to use the C technique that we will see in Chapter 5