[Catalyst-commits] r9501 - in Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial: . AdvancedCRUD

hkclark at dev.catalyst.perl.org hkclark at dev.catalyst.perl.org
Thu Mar 12 23:42:37 GMT 2009


Author: hkclark
Date: 2009-03-12 23:42:37 +0000 (Thu, 12 Mar 2009)
New Revision: 9501

Modified:
   Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/AdvancedCRUD/FormFu.pod
   Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/Authentication.pod
   Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/Authorization.pod
   Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod
   Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod
Log:
Remove C<> from =head line b/c they look ugly on CPAN

Modified: Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/AdvancedCRUD/FormFu.pod
===================================================================
--- Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/AdvancedCRUD/FormFu.pod	2009-03-12 23:41:18 UTC (rev 9500)
+++ Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/AdvancedCRUD/FormFu.pod	2009-03-12 23:42:37 UTC (rev 9501)
@@ -67,7 +67,7 @@
 L<HTML::FormFu|HTML::FormFu>.
 
 
-=head1 Install C<HTML::FormFu>
+=head1 Install HTML::FormFu
 
 If you are following along in Debian 5, it turns out that some of the 
 modules we need are not yet available as Debian packages at the time 
@@ -91,13 +91,13 @@
     sudo cpan Catalyst::Component::InstancePerContext Catalyst::Controller::HTML::FormFu
 
 
-=head1 C<HTML::FormFu> FORM CREATION
+=head1 HTML::FormFu FORM CREATION
 
 This section looks at how L<HTML::FormFu|HTML::FormFu> can be used to 
 add additional functionality to the manually created form from Chapter 4.
 
 
-=head2 Inherit From C<Catalyst::Controller::HTML::FormFu>
+=head2 Inherit From Catalyst::Controller::HTML::FormFu
 
 First, change your C<lib/MyApp/Controller/Books.pm> to inherit from
 L<Catalyst::Controller::HTML::FormFu|Catalyst::Controller::HTML::FormFu>
@@ -261,7 +261,7 @@
 use to easily launch our HTML::FormFu-based form.
 
 
-=head2 Test The <HTML::FormFu> Create Form
+=head2 Test The HTML::FormFu Create Form
 
 Press C<Ctrl-C> to kill the previous server instance (if it's still
 running) and restart it:
@@ -291,7 +291,7 @@
 performing any validation.
 
 
-=head1 C<HTML::FormFu> VALIDATION AND FILTERING
+=head1 HTML::FormFu VALIDATION AND FILTERING
 
 Although the use of L<HTML::FormFu|HTML::FormFu> in the previous section 
 did provide an automated mechanism to build the form, the real power of 
@@ -572,6 +572,7 @@
 be returned to the book list with a "Book edited" message at the top in 
 green.  Experiment with other edits to various books.
 
+
 =head2 More Things to Try
 
 You are now armed with enough knowledge to be dangerous.  You can keep
@@ -603,6 +604,7 @@
 Or you can proceed to write your own application, which is probably the
 real reason you worked through this Tutorial in the first place.
 
+
 =head2  Config::General Config for this tutorial
 
 If you are having difficulty with YAML config above, please save the
@@ -657,7 +659,6 @@
    indicator   submit
    
 
-
 =head1 AUTHOR
 
 Kennedy Clark, C<hkclark at gmail.com>

Modified: Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/Authentication.pod
===================================================================
--- Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/Authentication.pod	2009-03-12 23:41:18 UTC (rev 9500)
+++ Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/Authentication.pod	2009-03-12 23:42:37 UTC (rev 9501)
@@ -689,8 +689,7 @@
 algorithms are supported.  See C<Digest> for more information.
 
 
-=head2 Enable SHA-1 Hash Passwords in
-C<Catalyst::Plugin::Authentication::Store::DBIC>
+=head2 Enable SHA-1 Hash Passwords in Catalyst::Plugin::Authentication::Store::DBIC
 
 Edit C<myapp.conf> and update it to match (the C<password_type> and
 C<password_hash_type> are new, everything else is the same):

Modified: Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/Authorization.pod
===================================================================
--- Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/Authorization.pod	2009-03-12 23:41:18 UTC (rev 9500)
+++ Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/Authorization.pod	2009-03-12 23:42:37 UTC (rev 9501)
@@ -180,7 +180,7 @@
 roles assigned to the user.
 
 
-=head2 Limit C<Books::add> to C<admin> Users
+=head2 Limit Books::add to 'admin' Users
 
 C<IF> statements in TT templates simply control the output that is sent
 to the user's browser; it provides no real enforcement (if users know or

Modified: Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod
===================================================================
--- Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod	2009-03-12 23:41:18 UTC (rev 9500)
+++ Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod	2009-03-12 23:42:37 UTC (rev 9501)
@@ -140,7 +140,7 @@
 it then sets the template that should handle this request.
 
 
-=head2 Include a Template for the C<url_create> Action:
+=head2 Include a Template for the 'url_create' Action:
 
 Edit C<root/src/books/create_done.tt2> and then enter:
 
@@ -188,7 +188,7 @@
 from the examples in Chapter 3.
 
 
-=head2 Try the C<url_create> Feature
+=head2 Try the 'url_create' Feature
 
 If the application is still running from before, use C<Ctrl-C> to kill
 it. Then restart the server:
@@ -391,7 +391,7 @@
 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 @@
 be displayed.
 
 
-=head2 Using C<uri_for> 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<flash> technique that we will see in Chapter 5 

Modified: Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod
===================================================================
--- Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod	2009-03-12 23:41:18 UTC (rev 9500)
+++ Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod	2009-03-12 23:42:37 UTC (rev 9501)
@@ -635,7 +635,7 @@
 L<Appendix 2|Catalyst::Manual::Tutorial::Appendices>.
 
 
-=head1 DATABASE ACCESS WITH C<DBIx::Class>
+=head1 DATABASE ACCESS WITH DBIx::Class
 
 Catalyst can be used with virtually any form of persistent datastore 
 available via Perl.  For example, 
@@ -1046,7 +1046,7 @@
 template -- the wrapper will provide the overall feel of the page.
 
 
-=head1 A STATIC DATABASE MODEL WITH C<DBIx::Class>
+=head1 A STATIC DATABASE MODEL WITH DBIx::Class
 
 First, let's be sure we have a recent versino of the DBIC helper,
 L<Catalyst::Model::DBIC::Schema|Catalyst::Model::DBIC::Schema>, by
@@ -1380,7 +1380,7 @@
 if you wish.>
 
 
-=head2 Using C<RenderView> for the Default View
+=head2 Using 'RenderView' for the Default View
 
 Once your controller logic has processed the request from a user, it
 forwards processing to your view in order to generate the appropriate




More information about the Catalyst-commits mailing list