From: Gavin Henry Date: Fri, 3 Mar 2006 20:53:34 +0000 (+0000) Subject: Spell checking and formatting, with some grammar corrections. X-Git-Tag: 5.7099_04~676 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=de6fb80a66ecfeb21ab707daf70de17cc02415f8 Spell checking and formatting, with some grammar corrections. --- diff --git a/lib/Catalyst/Manual/Cookbook.pod b/lib/Catalyst/Manual/Cookbook.pod index b6913a7..bd72029 100644 --- a/lib/Catalyst/Manual/Cookbook.pod +++ b/lib/Catalyst/Manual/Cookbook.pod @@ -321,7 +321,7 @@ output and drops the first line if it is an HTTP status line (note: this may change). The Apache C module is provided by a number of Linux -distros and is straightforward to compile for most Unix-like systems. +distro's and is straightforward to compile for most Unix-like systems. The module provides a FastCGI Process Manager, which manages FastCGI scripts. You configure your script as a FastCGI script with the following Apache configuration directives: @@ -734,7 +734,7 @@ implementing roles: /; Roles are implemented automatically when using -L: +L: # no additional role configuration required __PACKAGE__->config->{authentication}{htpasswd} = "passwdfile"; @@ -784,6 +784,8 @@ Jesse Sheidlower, C Andy Grundman, C Chisel Wright, C Will Hawes, C +Gavin Henry, C (Spell checking) + =head1 COPYRIGHT diff --git a/lib/Catalyst/Manual/Tutorial.pod b/lib/Catalyst/Manual/Tutorial.pod index 6c395af..bdb2cae 100644 --- a/lib/Catalyst/Manual/Tutorial.pod +++ b/lib/Catalyst/Manual/Tutorial.pod @@ -25,12 +25,12 @@ on a system that lacks a compiler. Catalyst includes a helper script, C, that will set up a skeleton application for you: - $ catalyst MyApp + $ catalyst tutorial - created "MyApp" - created "MyApp/script" + created "tutorial" + created "tutorial/script" ... output snipped - created "MyApp/script/myapp_create.pl" + created "tutorial/script/tutorial_create.pl" This creates the directory structure, populated with skeleton files. @@ -40,8 +40,8 @@ files. You can test out your new application by running the server script that Catalyst provides: - $ cd MyApp - $ script/myapp_server.pl + $ cd tutorial + $ script/tutorial_server.pl [...] [catalyst] [debug] Debug messages enabled [...] [catalyst] [debug] Loaded plugins: @@ -50,15 +50,15 @@ Catalyst provides: '------------------------------------------------------------------------------' [...] [catalyst] [debug] Loaded dispatcher "Catalyst::Dispatcher" [...] [catalyst] [debug] Loaded engine "Catalyst::Engine::HTTP" - [...] [catalyst] [debug] Found home "/home/users/me/MyApp" + [...] [catalyst] [debug] Found home "/home/users/me/tutorial" [...] [catalyst] [debug] Loaded Private actions: .--------------------------------------+---------------------------------------. | Private | Class | +--------------------------------------+---------------------------------------+ - | /default | MyApp | + | /default | tutorial | '--------------------------------------+---------------------------------------' - [...] [catalyst] [info] MyApp powered by Catalyst 5.5 + [...] [catalyst] [info] tutorial powered by Catalyst 5.66 You can connect to your server at http://localhost:3000 (Note that each line logged by Catalyst begins with a timestamp, which has @@ -80,13 +80,13 @@ and hit return twice): Content-Length: 5525 Content-Type: text/html; charset=utf-8 Status: 200 - X-Catalyst: 5.5 + X-Catalyst: 5.66 [...] Connection closed by foreign host. $ -You can see the full welcome message by visting +You can see the full welcome message by visiting http://localhost:3000/ with your browser. More trace messages will appear in the original terminal window: @@ -106,11 +106,11 @@ More trace messages will appear in the original terminal window: The server will continue running until you interrupt it. The application can also be tested from the command line using the generated -helper script, C