cdwijayarathna | 3f67978 | 2014-07-09 14:00:33 +0530 | [diff] [blame] | 1 | <!DOCTYPE HTML> |
| 2 | <html> |
| 3 | <head> |
| 4 | <meta charset="utf-8"> |
| 5 | <title>Apache Thrift - integration test suite</title> |
| 6 | <link rel="stylesheet" type="text/css" href="http://cdn.datatables.net/1.10.0/css/jquery.dataTables.css"> |
| 7 | <script type="text/javascript" charset="utf-8" src="http://code.jquery.com/jquery-1.10.2.min.js"></script> |
| 8 | <script type="text/javascript" charset="utf-8" src="http://cdn.datatables.net/1.10.0/js/jquery.dataTables.js"></script> |
| 9 | <script> |
| 10 | var test_data; |
| 11 | |
| 12 | $(document).ready( function () { |
| 13 | $.getJSON('/results.json', function(testData) { |
| 14 | testTable = $('#test_results').DataTable( { |
| 15 | data: testData |
| 16 | }); |
| 17 | $('#test_results_filter label input') |
| 18 | .focus() |
| 19 | .val('failure'); |
| 20 | }); |
| 21 | }); |
| 22 | |
| 23 | </script> |
| 24 | </head> |
| 25 | <body> |
| 26 | <h2>Apache Thrift - integration test suite: Results</h2> |
| 27 | <table id="test_results" class="display"> |
| 28 | <thead> |
| 29 | <tr> |
| 30 | <th>Server</th> |
| 31 | <th>Client</th> |
| 32 | <th>Protocol</th> |
| 33 | <th>Transport</th> |
| 34 | <th>Result (log)</th> |
| 35 | </tr> |
| 36 | </thead> |
| 37 | </table> |
| 38 | </body> |
| 39 | </html> |