[Jifty-commit] r2947 - in jifty/trunk: .

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Mon Mar 12 15:56:46 EDT 2007


Author: kevinr
Date: Mon Mar 12 15:56:45 2007
New Revision: 2947

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/lib/Jifty/Manual/Cookbook.pod

Log:
 r18907 at sad-girl-in-snow:  kevinr | 2007-03-12 15:54:06 -0400
 * Updated the 'feeds' section in J:M::Cookbook to not lie about the way 
 XML::Feed actually works.  Arguably it /should/ work the way we described
 ("your implementation is showing"), but fixing the docs was easier than 
 submitting a patch to someone else's module.


Modified: jifty/trunk/lib/Jifty/Manual/Cookbook.pod
==============================================================================
--- jifty/trunk/lib/Jifty/Manual/Cookbook.pod	(original)
+++ jifty/trunk/lib/Jifty/Manual/Cookbook.pod	Mon Mar 12 15:56:45 2007
@@ -91,7 +91,8 @@
 
 And add this in F<MyApp/Dispatcher.pm> to make URI look prettier:
 
-    on qr{^/feed/(atom|rss|rss2)}, run {
+    # note the case of the feed types
+    on qr{^/feed/(Atom|RSS)}, run {
         set type => $1;
         show('/feed');
     };


More information about the Jifty-commit mailing list