You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by js...@apache.org on 2009/02/26 11:49:14 UTC

svn commit: r748076 - /camel/trunk/components/camel-web/src/main/webapp/org/apache/camel/web/resources/ExchangeResource/index.jsp

Author: jstrachan
Date: Thu Feb 26 10:49:14 2009
New Revision: 748076

URL: http://svn.apache.org/viewvc?rev=748076&view=rev
Log:
CAMEL-1355 - hovering over a message payload shows the Java type

Modified:
    camel/trunk/components/camel-web/src/main/webapp/org/apache/camel/web/resources/ExchangeResource/index.jsp

Modified: camel/trunk/components/camel-web/src/main/webapp/org/apache/camel/web/resources/ExchangeResource/index.jsp
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/org/apache/camel/web/resources/ExchangeResource/index.jsp?rev=748076&r1=748075&r2=748076&view=diff
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/org/apache/camel/web/resources/ExchangeResource/index.jsp (original)
+++ camel/trunk/components/camel-web/src/main/webapp/org/apache/camel/web/resources/ExchangeResource/index.jsp Thu Feb 26 10:49:14 2009
@@ -22,7 +22,7 @@
         <c:forEach items="${it.properties}" var="entry">
           <tr>
             <td>${entry.key}</td>
-            <td><a title="${entry.value.class.canonicalName}">${entry.value}</a></td>
+            <td><a class="type" title="${entry.value.class.canonicalName}">${entry.value}</a></td>
           </tr>
         </c:forEach>
       </table>
@@ -39,7 +39,7 @@
         <c:forEach items="${it.headers}" var="entry">
           <tr>
             <td>${entry.key}</td>
-            <td><a title="${entry.value.class.canonicalName}">${entry.value}</a></td>
+            <td><a class="type" title="${entry.value.class.canonicalName}">${entry.value}</a></td>
           </tr>
         </c:forEach>
       </table>
@@ -52,7 +52,7 @@
   </tr>
   <tr>
     <td colspan="2">
-      <div class="message"><c:out value="${it.in.body}" escapeXml="true" /></div>
+      <div class="message"><a class="type" title="${it.in.body.class.canonicalName}"><c:out value="${it.in.body}" escapeXml="true" /></a></div>
     </td>
   </tr>
 </table>