You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cs...@apache.org on 2016/10/17 12:40:39 UTC

activemq git commit: https://issues.apache.org/jira/browse/AMQ-6468

Repository: activemq
Updated Branches:
  refs/heads/master 10fc397ab -> c1157fe1f


https://issues.apache.org/jira/browse/AMQ-6468

Fixing JSTL tags in JSP pages


Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/c1157fe1
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/c1157fe1
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/c1157fe1

Branch: refs/heads/master
Commit: c1157fe1f007ee2344a7f0badefa0794c98817cd
Parents: 10fc397
Author: Christopher L. Shannon (cshannon) <ch...@gmail.com>
Authored: Mon Oct 17 08:38:50 2016 -0400
Committer: Christopher L. Shannon (cshannon) <ch...@gmail.com>
Committed: Mon Oct 17 08:38:50 2016 -0400

----------------------------------------------------------------------
 activemq-web-console/src/main/webapp/queueConsumers.jsp   | 2 +-
 activemq-web-console/src/main/webapp/queueProducers.jsp   | 2 +-
 activemq-web-console/src/main/webapp/subscribers.jsp      | 6 +++---
 activemq-web-console/src/main/webapp/topicProducers.jsp   | 2 +-
 activemq-web-console/src/main/webapp/topicSubscribers.jsp | 2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/c1157fe1/activemq-web-console/src/main/webapp/queueConsumers.jsp
----------------------------------------------------------------------
diff --git a/activemq-web-console/src/main/webapp/queueConsumers.jsp b/activemq-web-console/src/main/webapp/queueConsumers.jsp
index 5ba581f..ccefb89 100644
--- a/activemq-web-console/src/main/webapp/queueConsumers.jsp
+++ b/activemq-web-console/src/main/webapp/queueConsumers.jsp
@@ -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}" />

http://git-wip-us.apache.org/repos/asf/activemq/blob/c1157fe1/activemq-web-console/src/main/webapp/queueProducers.jsp
----------------------------------------------------------------------
diff --git a/activemq-web-console/src/main/webapp/queueProducers.jsp b/activemq-web-console/src/main/webapp/queueProducers.jsp
index 724a76c..9953669 100644
--- a/activemq-web-console/src/main/webapp/queueProducers.jsp
+++ b/activemq-web-console/src/main/webapp/queueProducers.jsp
@@ -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>

http://git-wip-us.apache.org/repos/asf/activemq/blob/c1157fe1/activemq-web-console/src/main/webapp/subscribers.jsp
----------------------------------------------------------------------
diff --git a/activemq-web-console/src/main/webapp/subscribers.jsp b/activemq-web-console/src/main/webapp/subscribers.jsp
index 1dfbbd7..f2b62df 100644
--- a/activemq-web-console/src/main/webapp/subscribers.jsp
+++ b/activemq-web-console/src/main/webapp/subscribers.jsp
@@ -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>

http://git-wip-us.apache.org/repos/asf/activemq/blob/c1157fe1/activemq-web-console/src/main/webapp/topicProducers.jsp
----------------------------------------------------------------------
diff --git a/activemq-web-console/src/main/webapp/topicProducers.jsp b/activemq-web-console/src/main/webapp/topicProducers.jsp
index 2a14077..5cefc9b 100644
--- a/activemq-web-console/src/main/webapp/topicProducers.jsp
+++ b/activemq-web-console/src/main/webapp/topicProducers.jsp
@@ -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>

http://git-wip-us.apache.org/repos/asf/activemq/blob/c1157fe1/activemq-web-console/src/main/webapp/topicSubscribers.jsp
----------------------------------------------------------------------
diff --git a/activemq-web-console/src/main/webapp/topicSubscribers.jsp b/activemq-web-console/src/main/webapp/topicSubscribers.jsp
index 7f2e9c9..7b83834 100644
--- a/activemq-web-console/src/main/webapp/topicSubscribers.jsp
+++ b/activemq-web-console/src/main/webapp/topicSubscribers.jsp
@@ -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>