X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FIntro.pod;h=26491e248a80c8a23448d8c1219f761b61c159d8;hb=cccc887d602aba1a3e47dcbd07620dafb07a61ad;hp=65c633dd74fcf16d35c8b0237ccf7c7457713c1b;hpb=fabf3a100d2255ee3d0d4f7af57b57cd658feceb;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index 65c633d..26491e2 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -80,7 +80,7 @@ multiple Catalyst applications. =item * B -Catalyst allows you to dispatch any URLs to any application L, +Catalyst allows you to dispatch any URLs to any application L, even through regular expressions! Unlike most other frameworks, it doesn't require mod_rewrite or class and method names in URLs. @@ -110,7 +110,7 @@ simple way. =item * B Components interoperate very smoothly. For example, Catalyst -automatically makes a L object available to every +automatically makes a L object available to every component. Via the context, you can access the request object, share data between components, and control the flow of your application. Building a Catalyst application feels a lot like snapping @@ -223,7 +223,7 @@ C<$context-Econfig-E{$param_name}>. Catalyst automatically blesses a Context object into your application class and makes it available everywhere in your application. Use the -Context to directly interact with Catalyst and glue your L +Context to directly interact with Catalyst and glue your L together. For example, if you need to use the Context from within a Template Toolkit template, it's already there: @@ -440,7 +440,7 @@ displaying a generic frontpage for the main app, or an error page for individual controllers. If C isn't acting how you would expect, look at using a -L C action (with an empty path string). The difference is +L C action (with an empty path string). The difference is that C takes arguments relative from the namespace and C I takes arguments relative from the root, regardless of what controller it's in. @@ -679,7 +679,7 @@ method. =head3 Components Catalyst has an uncommonly flexible component system. You can define as -many L, L, and L as you like. +many L, L, and L as you like. All components must inherit from L, which provides a simple class structure and some common class methods like C and @@ -845,7 +845,7 @@ Catalyst that slurps in an outside Model: use base qw/Catalyst::Model::DBIC::Schema/; __PACKAGE__->config( schema_class => 'Some::DBIC::Schema', - connect_info => ['dbi:SQLite:foo.db', '', '', {AutoCommit=>1}]; + connect_info => ['dbi:SQLite:foo.db', '', '', {AutoCommit=>1}] ); 1;