Hi.
Having first read the documentation for Catalyst 5 months ago, I have
just read the pod in Catalyst 5.7.
It has improved a lot, and it is really good, I think - all involved
should give themselves a well deserved pat on the back!
Attached is a patch (against current) for a couple of typos I found
while reading.
Best regards,
Adam
--
Adam Sjøgren
[EMAIL PROTECTED]
Index: Catalyst-Runtime/lib/Catalyst/Manual/Tutorial/Authentication.pod
===================================================================
--- Catalyst-Runtime/lib/Catalyst/Manual/Tutorial/Authentication.pod (revision 4753)
+++ Catalyst-Runtime/lib/Catalyst/Manual/Tutorial/Authentication.pod (working copy)
@@ -690,7 +690,7 @@
using a SHA-1 hash. If you are concerned about cleartext passwords
between the browser and your application, consider using SSL/TLS, made
easy with the Catalyst plugin
-L<Catalyst::Plugin:RequireSSL|Catalyst::Plugin:RequireSSL>.
+L<Catalyst::Plugin::RequireSSL|Catalyst::Plugin::RequireSSL>.
=head2 Get a SHA-1 Hash for the Password
Index: Catalyst-Runtime/lib/Catalyst/Manual/Tutorial/AdvancedCRUD.pod
===================================================================
--- Catalyst-Runtime/lib/Catalyst/Manual/Tutorial/AdvancedCRUD.pod (revision 4753)
+++ Catalyst-Runtime/lib/Catalyst/Manual/Tutorial/AdvancedCRUD.pod (working copy)
@@ -673,7 +673,7 @@
return $w;
}
-The two new lines are marked with C<***New:>.
+The new line is marked with C<***New:>.
=head2 Update the TT Template
Index: Catalyst-Runtime/lib/Catalyst/Manual/Tutorial/Debugging.pod
===================================================================
--- Catalyst-Runtime/lib/Catalyst/Manual/Tutorial/Debugging.pod (revision 4753)
+++ Catalyst-Runtime/lib/Catalyst/Manual/Tutorial/Debugging.pod (working copy)
@@ -97,7 +97,7 @@
Catalyst applications. One approach to this style of Perl debugging is
to embed breakpoints in your code. For example, open
C<lib/MyApp/Controller/Books.pm> in your editor and add the
-C<DB::single=1> line as follows inside the C<list> method (I like to
+C<$DB::single=1> line as follows inside the C<list> method (I like to
"left-justify" my debug statements so I don't forget to remove them, but
you can obviously indent them if you prefer):
Index: Catalyst-Runtime/lib/Catalyst/Manual/Intro.pod
===================================================================
--- Catalyst-Runtime/lib/Catalyst/Manual/Intro.pod (revision 4753)
+++ Catalyst-Runtime/lib/Catalyst/Manual/Intro.pod (working copy)
@@ -16,7 +16,7 @@
Catalyst is an elegant web application framework, extremely flexible
yet extremely simple. It's similar to Ruby on Rails, Spring (Java),
and L<Maypole>, upon which it was originally based. Its most important
-design philosphy is to provide easy access to all the tools you need
+design philosophy is to provide easy access to all the tools you need
to develop web applications, with few restrictions on how you need to
use these tools. However, this does mean that it is always possible to
do things in a different way. Other web frameworks are B<initially>
@@ -350,8 +350,6 @@
$c->stash->{item} = $c->model('MyModel::Foo')->find($id);
}
- 1;
-
sub end : Private {
my ( $self, $c ) = @_;
_______________________________________________
List: [email protected]
Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/