From: Sebastian Riedel Date: Mon, 13 Jun 2005 22:16:39 +0000 (+0000) Subject: Fixed Catalyst pod X-Git-Tag: 5.7099_04~1317 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=ae4e40a7d5968d8086a86bff588a0989f167d5db Fixed Catalyst pod --- diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 2773954..599a95d 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -25,15 +25,15 @@ Catalyst - The Elegant MVC Web Application Framework cd MyApp # add models, views, controllers - script/create.pl model Something - script/create.pl view Stuff - script/create.pl controller Yada + script/myapp_create.pl model Something + script/myapp_create.pl view Stuff + script/myapp_create.pl controller Yada # built in testserver - script/server.pl + script/myapp_server.pl # command line interface - script/test.pl /yada + script/myapp_test.pl /yada use Catalyst; @@ -62,9 +62,6 @@ See also L =head1 DESCRIPTION -Catalyst is based upon L, which you should consider for smaller -projects. - The key concept of Catalyst is DRY (Don't Repeat Yourself). See L for more documentation.