You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by oc...@apache.org on 2008/08/18 04:44:55 UTC

svn commit: r686669 - in /continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp: admin/appearance.jsp components/companyLogo.jsp releasePerformFromScm.jsp releasePrepare.jsp

Author: oching
Date: Sun Aug 17 19:44:54 2008
New Revision: 686669

URL: http://svn.apache.org/viewvc?rev=686669&view=rev
Log:
[CONTINUUM-1844]
submitted by Fabrice Daugan
-replace EL expressions containing "empty(" with "empty (" as EL expression requires

Modified:
    continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/appearance.jsp
    continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/components/companyLogo.jsp
    continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/releasePerformFromScm.jsp
    continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/releasePrepare.jsp

Modified: continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/appearance.jsp
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/appearance.jsp?rev=686669&r1=686668&r2=686669&view=diff
==============================================================================
--- continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/appearance.jsp (original)
+++ continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/admin/appearance.jsp Sun Aug 17 19:44:54 2008
@@ -40,13 +40,13 @@
 
 <ww:set name="companyPom" value="companyPom"/>
 
-<c:if test="${empty(companyPom.groupId) || empty(companyPom.artifactId)}">
+<c:if test="${empty (companyPom.groupId) || empty (companyPom.artifactId)}">
   <p>
     You have not yet specified a company POM. <a href="<ww:url action='editAppearance' />">Select a Company POM</a>
   </p>
 </c:if>
 
-<c:if test="${!empty(companyPom.groupId) && !empty(companyPom.artifactId)}">
+<c:if test="${!empty (companyPom.groupId) && !empty (companyPom.artifactId)}">
   <p>
     Your selected company POM is below. If you would like to change the organization name, url or logo, you can
     <a href="<ww:url action='editCompanyPom'/>">edit the POM</a>.

Modified: continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/components/companyLogo.jsp
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/components/companyLogo.jsp?rev=686669&r1=686668&r2=686669&view=diff
==============================================================================
--- continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/components/companyLogo.jsp (original)
+++ continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/components/companyLogo.jsp Sun Aug 17 19:44:54 2008
@@ -20,10 +20,10 @@
 <%@ taglib uri="/webwork" prefix="ww" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
 <ww:set name="companyLogo" value="companyLogo"/>
-<c:if test="${!empty(companyLogo)}">
+<c:if test="${!empty (companyLogo)}">
   <ww:set name="companyUrl" value="companyUrl"/>
   <c:choose>
-    <c:when test="${!empty(companyUrl)}">
+    <c:when test="${!empty (companyUrl)}">
       <a href="${companyUrl}">
         <img src="${companyLogo}" title="${companyName}" border="0" alt=""/>
       </a>

Modified: continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/releasePerformFromScm.jsp
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/releasePerformFromScm.jsp?rev=686669&r1=686668&r2=686669&view=diff
==============================================================================
--- continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/releasePerformFromScm.jsp (original)
+++ continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/releasePerformFromScm.jsp Sun Aug 17 19:44:54 2008
@@ -35,7 +35,7 @@
             <ww:textfield label="SCM Username" name="scmUsername"/>
             <ww:password label="SCM Password" name="scmPassword"/>
             <ww:textfield label="SCM Tag" name="scmTag"/>
-            <c:if test="${!empty(scmTagBase)}">
+            <c:if test="${!empty (scmTagBase)}">
               <ww:textfield label="SCM Tag Base" name="scmTagBase"/>
             </c:if>
             <ww:textfield label="Maven Arguments" name="goals" value="clean deploy"/>

Modified: continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/releasePrepare.jsp
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/releasePrepare.jsp?rev=686669&r1=686668&r2=686669&view=diff
==============================================================================
--- continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/releasePrepare.jsp (original)
+++ continuum/trunk/continuum-webapp/src/main/webapp/WEB-INF/jsp/releasePrepare.jsp Sun Aug 17 19:44:54 2008
@@ -35,7 +35,7 @@
             <ww:textfield label="SCM Username" name="scmUsername" required="true"/>
             <ww:password label="SCM Password" name="scmPassword" required="true"/>
             <ww:textfield label="SCM Tag" name="scmTag" required="true"/>
-            <c:if test="${!empty(scmTagBase)}">
+            <c:if test="${!empty (scmTagBase)}">
               <ww:textfield label="SCM Tag Base" name="scmTagBase"/>
             </c:if>
             <ww:textfield label="Preparation Goals" name="prepareGoals" required="true"/>