You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2006/09/06 23:55:36 UTC

svn commit: r440887 - /incubator/roller/branches/roller_3.0/web/WEB-INF/velocity/deprecated/navbar.vm

Author: agilliland
Date: Wed Sep  6 14:55:35 2006
New Revision: 440887

URL: http://svn.apache.org/viewvc?view=rev&rev=440887
Log:
minor fix for navbar macro.

- site url needs to end with a "/" so that it works for root context.
- we only show delimiter if we are not displaying $vertical.


Modified:
    incubator/roller/branches/roller_3.0/web/WEB-INF/velocity/deprecated/navbar.vm

Modified: incubator/roller/branches/roller_3.0/web/WEB-INF/velocity/deprecated/navbar.vm
URL: http://svn.apache.org/viewvc/incubator/roller/branches/roller_3.0/web/WEB-INF/velocity/deprecated/navbar.vm?view=diff&rev=440887&r1=440886&r2=440887
==============================================================================
--- incubator/roller/branches/roller_3.0/web/WEB-INF/velocity/deprecated/navbar.vm (original)
+++ incubator/roller/branches/roller_3.0/web/WEB-INF/velocity/deprecated/navbar.vm Wed Sep  6 14:55:35 2006
@@ -58,8 +58,8 @@
     #if ( $useCSS ) #set( $container = "ul" ) #end
     #set( $rawUrl = "$website.URL" )
     <$container class="rNavigationBar">
-    #printNavLink( "$url.site" $siteShortName $useCSS $vertical "" )
-    #if(!$useCSS) $delimiter #end
+    #printNavLink( "$url.site/" $siteShortName $useCSS $vertical "" )
+    #if(!$vertical) $delimiter #end
     #printNavLink( "$url.home" "Weblog" $useCSS $vertical "" )
     #if( $website )
         #foreach( $iPage in $pages )