You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2006/08/16 03:39:48 UTC

svn commit: r431763 - /maven/repository-manager/trunk/maven-repository-webapp/src/main/webapp/WEB-INF/jsp/browseGroup.jsp

Author: brett
Date: Tue Aug 15 18:39:48 2006
New Revision: 431763

URL: http://svn.apache.org/viewvc?rev=431763&view=rev
Log:
fix the browse URL

Modified:
    maven/repository-manager/trunk/maven-repository-webapp/src/main/webapp/WEB-INF/jsp/browseGroup.jsp

Modified: maven/repository-manager/trunk/maven-repository-webapp/src/main/webapp/WEB-INF/jsp/browseGroup.jsp
URL: http://svn.apache.org/viewvc/maven/repository-manager/trunk/maven-repository-webapp/src/main/webapp/WEB-INF/jsp/browseGroup.jsp?rev=431763&r1=431762&r2=431763&view=diff
==============================================================================
--- maven/repository-manager/trunk/maven-repository-webapp/src/main/webapp/WEB-INF/jsp/browseGroup.jsp (original)
+++ maven/repository-manager/trunk/maven-repository-webapp/src/main/webapp/WEB-INF/jsp/browseGroup.jsp Tue Aug 15 18:39:48 2006
@@ -30,13 +30,13 @@
 <div id="contentArea">
   <div id="nameColumn">
     <p>
-      <c:forTokens items="${groupId}" delims="./" var="part" varStatus="status">
+      <c:forTokens items="${groupId}" delims="." var="part" varStatus="status">
         <c:choose>
           <c:when test="${empty(cumulativeGroup)}">
             <c:set var="cumulativeGroup" value="${part}" />
           </c:when>
           <c:otherwise>
-            <c:set var="cumulativeGroup" value="${cumulativeGroup}/${part}" />
+            <c:set var="cumulativeGroup" value="${cumulativeGroup}.${part}" />
           </c:otherwise>
         </c:choose>
         <c:choose>