[MRM-873]

submitted by Gwen Harold Autencio
-do not display the up image link of the first repository and do not display the down image link of the last repository


git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@682250 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Maria Odea B. Ching 2008-08-04 03:58:22 +00:00
parent 28c3b26be0
commit fd144735f7

View File

@ -93,6 +93,8 @@
</div>
</c:if>
<c:set var="numberOfRepos" value="${fn:length(repositoryGroup.value.repositories)}" />
<c:forEach items="${repositoryGroup.value.repositories}" var="repository" varStatus="r">
<c:choose>
@ -119,12 +121,16 @@
<ww:param name="repoGroupId" value="%{'${repositoryGroup.key}'}"/>
<ww:param name="repoId" value="managedRepositories['${repository}'].id"/>
</ww:url>
<ww:a href="%{sortUpRepositoryUrl}" cssClass="up" title="Move Repository Up">
<img src="${iconUpUrl}"/>
</ww:a>
<ww:a href="%{sortDownRepositoryUrl}" cssClass="down" title="Move Repository Down">
<img src="${iconDownUrl}"/>
</ww:a>
<c:if test="${r.count > 1}">
<ww:a href="%{sortUpRepositoryUrl}" cssClass="up" title="Move Repository Up">
<img src="${iconUpUrl}"/>
</ww:a>
</c:if>
<c:if test="${r.count < numberOfRepos}">
<ww:a href="%{sortDownRepositoryUrl}" cssClass="down" title="Move Repository Down">
<img src="${iconDownUrl}"/>
</ww:a>
</c:if>
<ww:a href="%{removeRepositoryUrl}" cssClass="delete" title="Delete Repository">
<img src="${iconDeleteUrl}"/>
</ww:a>
@ -148,4 +154,4 @@
</div> <%-- content area --%>
</c:otherwise>
</c:choose>
</c:choose>