slight clarification of MVC and web apps, added a couple of data structures to stash...
Matt S Trout [Thu, 8 Jun 2006 14:38:35 +0000 (14:38 +0000)]
r9808@cain (orig r4289):  zarquon | 2006-06-05 13:29:37 +0000

lib/Catalyst/Manual/Intro.pod

index a75c5ca..5410cd1 100644 (file)
@@ -46,11 +46,11 @@ control. Catalyst itself!
 
 =back
 
-If you're unfamiliar with MVC and design patterns, you may want to check
-out the original book on the subject, I<Design Patterns>, by Gamma,
-Helm, Johnson, and Vlissides, also known as the Gang of Four (GoF).
-Many, many web application frameworks are based on MVC, including all
-those listed above.
+If you're unfamiliar with MVC and design patterns, you may want to
+check out the original book on the subject, I<Design Patterns>, by
+Gamma, Helm, Johnson, and Vlissides, also known as the Gang of Four
+(GoF).  Many, many web application frameworks are based on MVC, which
+is becoming a popular design method for web applications.
 
 =head3 Flexibility
 
@@ -278,6 +278,10 @@ information.
 
     $c->stash
     $c->stash->{foo} = 'bar';
+    $c->stash->{baz} = {baz => 'qox'};
+    $c->stash->{fred} = [qw/ wilma pebbles/];
+
+and so on.
 
 =back