[MRM-1108] show the default logo if it is empty in the configuration

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@750843 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2009-03-06 10:54:06 +00:00
parent 9e03d296ed
commit adf0f01d13
2 changed files with 35 additions and 32 deletions

View File

@ -40,29 +40,30 @@
</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>&nbsp;</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>&nbsp;</th>
<td><img src="${organisationLogo}"
title="${organisationName}" border="0" alt="" /></td>
</tr>
</c:if>
</table>
</body>
</html>

View File

@ -22,9 +22,10 @@
<%@ 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}">
@ -35,10 +36,11 @@
<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>