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 2010/11/10 11:35:14 UTC

svn commit: r1033410 - in /camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources: EndpointResource.index.ssp ExchangeResource.index.ssp

Author: jstrachan
Date: Wed Nov 10 10:35:14 2010
New Revision: 1033410

URL: http://svn.apache.org/viewvc?rev=1033410&view=rev
Log:
fixed up some bad markup, fixing the title of links

Modified:
    camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/EndpointResource.index.ssp
    camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/ExchangeResource.index.ssp

Modified: camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/EndpointResource.index.ssp
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/EndpointResource.index.ssp?rev=1033410&r1=1033409&r2=1033410&view=diff
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/EndpointResource.index.ssp (original)
+++ camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/EndpointResource.index.ssp Wed Nov 10 10:35:14 2010
@@ -13,7 +13,7 @@
             </tr>
           #for(exchange <- it.getBrowsableEndpoint.getExchanges)
             <tr>
-              <td><a class='message' href='${uri(it.getHref + "/messages/" + exchange.getExchangeId)}' attributes("title") = "View this message">${exchange.getExchangeId}</a></td>
+              <td><a class='message' href='${uri(it.getHref + "/messages/" + exchange.getExchangeId)}' title="View this message">${exchange.getExchangeId}</a></td>
             </tr>
           #end
           </table>

Modified: camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/ExchangeResource.index.ssp
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/ExchangeResource.index.ssp?rev=1033410&r1=1033409&r2=1033410&view=diff
==============================================================================
--- camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/ExchangeResource.index.ssp (original)
+++ camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/ExchangeResource.index.ssp Wed Nov 10 10:35:14 2010
@@ -20,7 +20,7 @@
         #for(entry <- it.getProperties)
           <tr>
             <td>${entry.getKey}</td>
-            <td><a class="type" attributes("title") = "${entry.getValue.getClass.getCanonicalName}">${entry.getValue}</a></td>
+            <td><a class="type" title="${entry.getValue.getClass.getCanonicalName}">${entry.getValue}</a></td>
           </tr>
         #end
       </table>
@@ -37,7 +37,7 @@
         #for(entry <- it.getHeaders)
           <tr>
             <td>${entry.getKey}</td>
-            <td><a class="type" attributes("title") = "${entry.getValue.getClass.getCanonicalName}">${entry.getValue}</a></td>
+            <td><a class="type" title="${entry.getValue.getClass.getCanonicalName}">${entry.getValue}</a></td>
           </tr>
         #end
       </table>