From: Graham Knop Date: Sun, 14 Apr 2019 06:57:22 +0000 (+0200) Subject: link several module names X-Git-Tag: v5.9010~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=5efd5cc6c1a720e102acd63b08f65a4de2a0f4b5 link several module names --- diff --git a/lib/Catalyst/Manual/Cookbook.pod b/lib/Catalyst/Manual/Cookbook.pod index bf6372b..befb4e2 100644 --- a/lib/Catalyst/Manual/Cookbook.pod +++ b/lib/Catalyst/Manual/Cookbook.pod @@ -223,8 +223,8 @@ See also L. =head1 Skipping your VCS's directories -Catalyst uses Module::Pluggable to load Models, Views, and Controllers. -Module::Pluggable will scan through all directories and load modules +Catalyst uses L to load Models, Views, and Controllers. +L will scan through all directories and load modules it finds. Sometimes you might want to skip some of these directories, for example when your version control system makes a subdirectory with meta-information in every version-controlled directory. While @@ -240,7 +240,7 @@ You can make Catalyst skip these directories using the Catalyst config: setup_components => { except => qr/SCCS/ }, ); -See the Module::Pluggable manual page for more information on B +See the L manual page for more information on B and other options. =head1 Users and Access Control @@ -685,8 +685,8 @@ Response: Now follow these few steps to implement the application: -1. Install Catalyst (5.61 or later), Catalyst::Plugin::XMLRPC (0.06 or -later) and SOAP::Lite (for XMLRPCsh.pl). +1. Install L (5.61 or later), L (0.06 or +later) and L (for XMLRPCsh.pl). 2. Create an application framework: @@ -723,7 +723,7 @@ The C method is not a traditional action; it has no private or public path. Only the XMLRPC dispatcher knows it exists. 6. That's it! You have built your first web service. Let's test it with -XMLRPCsh.pl (part of SOAP::Lite): +XMLRPCsh.pl (part of L): % ./script/myapp_server.pl ... @@ -748,7 +748,7 @@ enforce a specific one. Views pertain to the display of your application. As with models, Catalyst is uncommonly flexible. The recipes below are just a start. -=head2 Catalyst::View::TT +=head2 L One of the first things you probably want to do when starting a new Catalyst application is set up your View. Catalyst doesn't care how you @@ -760,13 +760,13 @@ and though there are several template systems available, L