Doc patch from initself, clarify static files dir
Jess Robinson [Thu, 6 Sep 2007 19:50:26 +0000 (19:50 +0000)]
lib/Catalyst/Plugin/Static/Simple.pm

index 95de6b0..1084945 100644 (file)
@@ -267,9 +267,12 @@ Catalyst::Plugin::Static::Simple - Make serving static pages painless.
 
     use Catalyst;
     MyApp->setup( qw/Static::Simple/ );
-    # that's it; static content is automatically served by
-    # Catalyst, though you can configure things or bypass
-    # Catalyst entirely in a production environment
+    # that's it; static content is automatically served by Catalyst
+    # from the application's root directory, though you can configure
+    # things or bypass Catalyst entirely in a production environment
+    #
+    # one caveat: the files must be served from an absolute path
+    # (ie. /images/foo.png)
 
 =head1 DESCRIPTION