</p>
<h3>Organization Information</h3>
- <table>
- <tr>
- <th>Name</th>
- <td>${organisationName}</td>
- </tr>
- <tr>
- <th>URL</th>
- <td><a href="${organisationUrl}">
- <code>${organisationUrl}</code>
- </a></td>
- </tr>
- <tr>
- <th>Logo URL</th>
- <td>
- <code>${organisationLogo}</code>
- </td>
- </tr>
- <tr>
- <th> </th>
- <td>
- <img src="${organisationLogo}" title="${organisationName}" border="0" alt=""/>
- </td>
- </tr>
- </table>
+<table>
+ <tr>
+ <th>Name</th>
+ <td>${organisationName}</td>
+ </tr>
+ <tr>
+ <th>URL</th>
+ <td><a href="${organisationUrl}">
+ <code>${organisationUrl}</code>
+ </a></td>
+ </tr>
+ <tr>
+ <th>Logo URL</th>
+ <td>
+ <code>${organisationLogo}</code>
+ </td>
+ </tr>
+ <c:if test="${!empty (organisationLogo)}">
+ <tr>
+ <th> </th>
+ <td><img src="${organisationLogo}"
+ title="${organisationName}" border="0" alt="" /></td>
+ </tr>
+ </c:if>
+</table>
</body>
</html>
<%@ taglib prefix="my" tagdir="/WEB-INF/tags" %>
<div id="companyLogo">
- <s:if test="%{organisationLogo != null}">
+ <s:set name="organisationLogo" value="organisationLogo"/>
+ <c:choose>
+ <c:when test="${!empty (organisationLogo)}">
<s:set name="organisationUrl" value="organisationUrl"/>
- <s:set name="organisationLogo" value="organisationLogo"/>
<c:choose>
<c:when test="${!empty (organisationUrl)}">
<a href="${organisationUrl}">
<img src="${organisationLogo}" title="${organisationName}"/>
</c:otherwise>
</c:choose>
- </s:if>
- <s:else>
- <my:currentWWUrl action="index" namespace="/">
- <img src="<c:url value='/images/archiva.png' />"/>
- </my:currentWWUrl>
- </s:else>
+ </c:when>
+ <c:otherwise>
+ <my:currentWWUrl action="index" namespace="/">
+ <img src="<c:url value='/images/archiva.png' />"/>
+ </my:currentWWUrl>
+ </c:otherwise>
+ </c:choose>
</div>
\ No newline at end of file