You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ol...@apache.org on 2009/03/08 09:20:57 UTC

svn commit: r751382 - /continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/profilesList.jsp

Author: olamy
Date: Sun Mar  8 08:20:57 2009
New Revision: 751382

URL: http://svn.apache.org/viewvc?rev=751382&view=rev
Log:
[CONTINUUM-2064] Default Build Enviroment List don't show installations
Submitted by Jose Morales Martinez

Modified:
    continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/profilesList.jsp

Modified: continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/profilesList.jsp
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/profilesList.jsp?rev=751382&r1=751381&r2=751382&view=diff
==============================================================================
--- continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/profilesList.jsp (original)
+++ continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/profilesList.jsp Sun Mar  8 08:20:57 2009
@@ -53,17 +53,17 @@
         <ec:column property="name" title="profile.name.label" style="white-space: nowrap" />
         <ec:column property="Installations" title="profilesList.installations.label" style="white-space: nowrap">
           <ul>
-            <s:if test='profile.jdk != null'>
+            <c:if test="${profile.jdk != null}">
               <li><c:out value="${profile.jdk.name}"/> (<c:out value="${profile.jdk.type}"/>)</li>
-            </s:if>
-            <s:if test='profile.builder != null'>
+            </c:if>
+            <c:if test="${profile.builder != null}">
               <li><c:out value="${profile.builder.name}"/> (<c:out value="${profile.builder.type}"/>)</li>
-            </s:if>
-            <s:if test='profile.environmentVariables != null'>
+            </c:if>
+            <c:if test="${profile.environmentVariables != null}">
               <c:forEach var="envVar" items="${profile.environmentVariables}"> 
                 <li><c:out value="${envVar.name}" /></li>
               </c:forEach>
-            </s:if>
+            </c:if>
           </ul>
         </ec:column>
         <ec:column property="buildAgentGroup" title="profilesList.buildAgentGroup.label" style="white-space: nowrap" />