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