You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by de...@apache.org on 2008/12/09 14:34:30 UTC

svn commit: r724687 - in /activemq/trunk/activemq-web-console/src/main/webapp: message.jsp styles/type-settings.css

Author: dejanb
Date: Tue Dec  9 05:34:29 2008
New Revision: 724687

URL: http://svn.apache.org/viewvc?rev=724687&view=rev
Log:
fix for AMQ-2022

Modified:
    activemq/trunk/activemq-web-console/src/main/webapp/message.jsp
    activemq/trunk/activemq-web-console/src/main/webapp/styles/type-settings.css

Modified: activemq/trunk/activemq-web-console/src/main/webapp/message.jsp
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-web-console/src/main/webapp/message.jsp?rev=724687&r1=724686&r2=724687&view=diff
==============================================================================
--- activemq/trunk/activemq-web-console/src/main/webapp/message.jsp (original)
+++ activemq/trunk/activemq-web-console/src/main/webapp/message.jsp Tue Dec  9 05:34:29 2008
@@ -130,7 +130,7 @@
 				</thead>
 				<tbody>
 					<tr>
-						<td><form:tooltip text="${requestContext.messageQuery.body}" length="78"/></td>
+						<td><div class="message"><c:out value="${requestContext.messageQuery.body}" escapeXml="true" /></div></td>
 					</tr>
 				</tbody>
 			</table>

Modified: activemq/trunk/activemq-web-console/src/main/webapp/styles/type-settings.css
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-web-console/src/main/webapp/styles/type-settings.css?rev=724687&r1=724686&r2=724687&view=diff
==============================================================================
--- activemq/trunk/activemq-web-console/src/main/webapp/styles/type-settings.css (original)
+++ activemq/trunk/activemq-web-console/src/main/webapp/styles/type-settings.css Tue Dec  9 05:34:29 2008
@@ -168,4 +168,10 @@
     background: #ccc;
     color: #880055;
     border: 1px solid #880055;
+}
+
+div.message {
+    width: 500px;
+    height: 100px;
+    overflow : auto;
 }
\ No newline at end of file