X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FBasicCRUD.pod;h=f8aef9a9ea4accf57c5f1367b1e95cf01501bccf;hb=eed933017cf2b84d65e016fe75ac16b32280f35c;hp=c3b9b1e75a4c1e9f581818aad3920a33b082de11;hpb=a63e6e6726445baeea08771316b3ce44a495a96a;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod b/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod index c3b9b1e..f8aef9a 100644 --- a/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod +++ b/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod @@ -148,8 +148,12 @@ Edit C and then enter: [% META title = 'Book Created' %] [% # Output information about the record that was added. Note use -%] - [% # of 'first' to only list the first author (if > 1 author). -%] -

Added book '[% book.title %]' by '[% book.authors.first.last_name %]' + [% # of 'first' to only list the first author (if > 1 author). TT -%] + [% # v2.15 has an issue that requires -%] + [% # 'book.authors.list.first.value.last_name' vs. the shorter -%] + [% # 'book.authors.first.last_name' in prior versions. -%] +

Added book '[% book.title %]' + by '[% book.authors.list.first.value.last_name %]' with a rating of [% book.rating %].

[% # Provide a link back to the list page -%] @@ -364,7 +368,7 @@ will be used instead of full HTML buttons). Open C in your editor and add the following method: - =head2 Delete + =head2 delete Delete a book @@ -427,7 +431,9 @@ with a list of the six remaining books. Kennedy Clark, C -Please report any errors, issues or suggestions to the author. +Please report any errors, issues or suggestions to the author. The +most recent version of the Catlayst Tutorial can be found at +L. Copyright 2006, Kennedy Clark, under Creative Commons License (L).