[Jifty-commit] r3230 - in jifty/trunk: lib/Jifty/Plugin/SkeletonApp

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Fri May 11 18:25:23 EDT 2007


Author: jesse
Date: Fri May 11 18:25:22 2007
New Revision: 3230

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/lib/Jifty/Plugin/SkeletonApp/Dispatcher.pm

Log:
 r56793 at pinglin:  jesse | 2007-05-11 18:25:01 -0400
 * '*'  matches only a single level in the dispatcher. '**' matches all level.s We want to run the "Home" rule at all dispatcher levels.
 
 


Modified: jifty/trunk/lib/Jifty/Plugin/SkeletonApp/Dispatcher.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/SkeletonApp/Dispatcher.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/SkeletonApp/Dispatcher.pm	Fri May 11 18:25:22 2007
@@ -18,7 +18,7 @@
 
     
 
-on '*' => run {
+on '**' => run {
     my $top = Jifty->web->navigation;
     $top->child( Home => url => "/", sort_order => 1, label => _('Home') );
     if ( Jifty->config->framework('AdminMode') ) {


More information about the Jifty-commit mailing list