git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@424356 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2006-07-21 15:17:01 +00:00
parent 972ed22374
commit 6eb2f1d470
2 changed files with 9 additions and 11 deletions

View File

@ -18,8 +18,12 @@
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ attribute name="action" required="true" %>
<%@ attribute name="namespace" required="true" %>
<ww:url id="currentUrl" />
<ww:url action="${action}" namespace="${namespace}" id="url" />
<c:set var="currentUrl">
<ww:url />
</c:set>
<c:set var="url">
<ww:url action="${action}" namespace="${namespace}" />
</c:set>
<c:choose>
<c:when test="${currentUrl == url}">
<strong>

View File

@ -14,11 +14,10 @@
~ limitations under the License.
-->
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" version="2.4"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<web-app>
<display-name>Maven Repository Manager</display-name>
<!-- TODO: remove if we use the new xwork integration
@ -70,9 +69,4 @@
<listener>
<listener-class>org.codehaus.plexus.xwork.PlexusLifecycleListener</listener-class>
</listener>
<welcome-file-list>
<welcome-file>index.action</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>