mirror of https://github.com/apache/activemq.git
Fixing JSTL tags in JSP pages
This commit is contained in:
parent
10fc397ab7
commit
c1157fe1f0
|
@ -63,7 +63,7 @@
|
|||
<a href="network.jsp">${row.clientId}</a><br/>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
|
||||
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<c:out value="${row.connectionId}" />
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
<c:forEach items="${requestContext.queueProducerQuery.producers}" var="row">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
|
||||
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
|
||||
<br>
|
||||
<c:out value="${row.connectionId}" />
|
||||
</td>
|
||||
|
|
|
@ -97,7 +97,7 @@
|
|||
<c:forEach items="${requestContext.brokerQuery.durableTopicSubscribers}" var="row">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>">
|
||||
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>">
|
||||
<form:tooltip text="${row.clientId}" length="10"/>
|
||||
</a>
|
||||
</td>
|
||||
|
@ -145,7 +145,7 @@
|
|||
<c:forEach items="${requestContext.brokerQuery.inactiveDurableTopicSubscribers}" var="row">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>">
|
||||
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>">
|
||||
<form:tooltip text="${row.clientId}" length="10"/>
|
||||
</a>
|
||||
</td>
|
||||
|
@ -194,7 +194,7 @@
|
|||
<c:forEach items="${requestContext.brokerQuery.nonDurableTopicSubscribers}" var="row">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>">
|
||||
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>">
|
||||
<form:tooltip text="${row.clientId}" length="10"/>
|
||||
</a>
|
||||
</td>
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
<c:forEach items="${requestContext.topicProducerQuery.producers}" var="row">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
|
||||
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
|
||||
<br>
|
||||
<c:out value="${row.connectionId}" />
|
||||
</td>
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
<c:forEach items="${requestContext.topicSubscriberQuery.subscribers}" var="row">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
|
||||
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
|
||||
<br>
|
||||
<c:out value="${row.connectionId}" />
|
||||
</td>
|
||||
|
|
Loading…
Reference in New Issue