Author: jstrachan
Date: Thu Feb 26 10:48:06 2009
New Revision: 748075

URL: http://svn.apache.org/viewvc?rev=748075&view=rev
Log:
CAMEL-1355 - hovering over a property/header value 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=748075&r1=748074&r2=748075&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:48:06 2009
@@ -22,7 +22,7 @@
         <c:forEach items="${it.properties}" var="entry">
           <tr>
             <td>${entry.key}</td>
-            <td>${entry.value}</td>
+            <td><a 
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>${entry.value}</td>
+            <td><a 
title="${entry.value.class.canonicalName}">${entry.value}</a></td>
           </tr>
         </c:forEach>
       </table>


Reply via email to