corrade-http-templates – Blame information for rev 2

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 eva 1 <!doctype html>
2  
3 <html lang="en">
4 <head>
5 <meta charset="utf-8">
6  
7 <title>Summary of Top Scripts on a Region</title>
8  
9 <meta name="description" content="Top Scripts on a Region using Corrade">
10 <meta name="author" content="Wizardry and Steamworks">
11  
12 <link rel="stylesheet" href="css/jquery.dataTables.css?v=1.1">
13 <link rel="stylesheet" href="css/fonts.css?v=1.1">
14 <link rel="stylesheet" href="css/style.css?v=1.1">
15  
16 <script type="text/javascript" src="js/jquery.js"></script>
17 <script type="text/javascript" src="js/jquery.dataTables.js"></script>
18 <script type="text/javascript">
19 $(document).ready(function () {
20 $.fn.dataTable.ext.errMode = 'throw';
21 var table = $('#topScripts').DataTable({
22 ajax: "topScripts.php?t=" + Math.random(),
23 order: [[ 0, "desc" ]]
24 });
25 setInterval(function () {
26 table.ajax.reload(null, false);
27 table.order([ 0, 'desc' ]).draw();
28 }, 300000);
29 });
30 </script>
31 </head>
32  
33 <body>
34 <table id="topScripts" class="display" cellspacing="0" width="100%">
35 <thead>
36 <tr>
37 <th>Score</th>
38 <th>Task Name</th>
39 <th>UUID</th>
40 <th>Owner</th>
41 <th>Position</th>
42 </tr>
43 </thead>
44  
45 <tfoot>
46 <tr>
47 <th>Score</th>
48 <th>Task Name</th>
49 <th>UUID</th>
50 <th>Owner</th>
51 <th>Position</th>
52 </tr>
53 </tfoot>
54 </table>
55 </body>
56 </html>