You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2007/11/15 18:13:24 UTC

svn commit: r595365 - in /incubator/cxf/branches/2.0.x-fixes: ./ distribution/src/main/release/samples/restful_http_binding/test.html

Author: dkulp
Date: Thu Nov 15 09:13:17 2007
New Revision: 595365

URL: http://svn.apache.org/viewvc?rev=595365&view=rev
Log:
Merged revisions 595256 via svnmerge from 
https://svn.apache.org/repos/asf/incubator/cxf/trunk

........
  r595256 | jliu | 2007-11-15 04:45:53 -0500 (Thu, 15 Nov 2007) | 1 line
  
  Ok, fixed the java script problem, at least now it works with FireFox. 
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/test.html

Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/test.html
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/test.html?rev=595365&r1=595364&r2=595365&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/test.html (original)
+++ incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/restful_http_binding/test.html Thu Nov 15 09:13:17 2007
@@ -58,7 +58,7 @@
 }
 
 function addCustomer(c) {
-  var t = document.getElementById('customertable');
+  var t = document.getElementById("customertable");
 
   var tr = document.createElement("tr");
   var td = document.createElement("td");
@@ -86,7 +86,7 @@
    <p>
      <h1>Customers</h1>
      <!-- Yes, this is using a table because I'm incompotent with HTML! -->
-     <table style="border: 1px black solid;" cellspacing="5" id="customertable">
+     <table id="customertable">
        <tr>
          <th><strong>ID</strong></th>
          <th><strong>Customer Name</strong></th>