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> |
Roger Meier | e8bafb6 | 2014-08-01 23:39:32 +0200 | [diff] [blame] | 10 | var test_data; |
cdwijayarathna | 3f67978 | 2014-07-09 14:00:33 +0530 | [diff] [blame] | 11 | |
| 12 | $(document).ready( function () { |
Roger Meier | e8bafb6 | 2014-08-01 23:39:32 +0200 | [diff] [blame] | 13 | $.getJSON('results.json', function(testData) { |
cdwijayarathna | 3f67978 | 2014-07-09 14:00:33 +0530 | [diff] [blame] | 14 | testTable = $('#test_results').DataTable( { |
Roger Meier | e8bafb6 | 2014-08-01 23:39:32 +0200 | [diff] [blame] | 15 | data: testData, |
| 16 | "columnDefs": [ |
| 17 | { |
| 18 | "render": function ( data, type, row ) { |
| 19 | return data +' ('+ '<a href="'+row[5].Client+'">Client</a>,<a href="'+row[5].Server+'">Server</a>'+')'; |
| 20 | }, |
| 21 | "targets": 4 |
| 22 | } |
| 23 | ] |
| 24 | |
cdwijayarathna | 3f67978 | 2014-07-09 14:00:33 +0530 | [diff] [blame] | 25 | }); |
| 26 | $('#test_results_filter label input') |
| 27 | .focus() |
| 28 | .val('failure'); |
| 29 | }); |
| 30 | }); |
cdwijayarathna | 3f67978 | 2014-07-09 14:00:33 +0530 | [diff] [blame] | 31 | </script> |
| 32 | </head> |
| 33 | <body> |
| 34 | <h2>Apache Thrift - integration test suite: Results</h2> |
| 35 | <table id="test_results" class="display"> |
| 36 | <thead> |
| 37 | <tr> |
| 38 | <th>Server</th> |
| 39 | <th>Client</th> |
| 40 | <th>Protocol</th> |
| 41 | <th>Transport</th> |
| 42 | <th>Result (log)</th> |
| 43 | </tr> |
| 44 | </thead> |
| 45 | </table> |
| 46 | </body> |
| 47 | </html> |