-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (102 loc) · 5.48 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="Leaderboard of Test4Theory">
<title>Leaderboard of Test4Theory</title>
<!-- Le styles -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/font-awesome.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- Le javascript-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.cookie.js"></script>
<script type="text/javascript" src="assets/js/d3.v2.min.js"></script>
<script type="text/javascript" src="assets/js/bootstrap.min.js"></script>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="./">Test4Theory Stats</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="./"><i class="icon-trophy"></i> Leaderboard</a></li>
<li><a href="./club.html"><i class="icon-star-empty"></i> Billionaires club</a></li>
<li><a href="./10giga.html"><i class="icon-certificate"></i> Super Billionares club</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div id="loading" style="display:none">
<div class="container">
<div class="row">
<div class="span12">
<div id="facts" class="alert alert-info">
Loading data...
</div>
<div id="progress" class="progress progress-striped">
<div id="bar" class="bar" style="width: 0%;"></div>
</div>
</div>
</div>
</div>
</div>
<div class="container" style="padding-top:60px;">
<div id="welcome" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Welcome to the Test4Theory Leaderboard!</h3>
</div>
<div class="modal-body">
<p>The leader board lists the users who are contributing the most simulations and jobs in Test4Theory. The Billionaires Club provides a timeline of when the biggest contributors achieved one billion simulations!</p>
<p>The leader board sorts the top users' stats according to:
<ul>
<li>Number of events</li>
<li>Number of processed jobs, and</li>
<li>Nominal CPU time (in years)</li>
</ul>
</p>
<p><span class="label label-info"><i class="icon icon-white icon-bullhorn"></i> Info</span> The Leaderboard & Billionaires Club are in beta mode and some users and/or hosts are not listed properly due to some bugs that we are investigating (works with minimum BOINC version >= 6.12).</p>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-success" data-dismiss="modal"><i class="icon icon-white icon-ok"></i> Close</a>
</div>
</div>
<div class="row dataCharts" style="display:none">
<h1 style="text-align:center;padding-bottom:50px;">Leaderboard of Test4Theory</h1>
<div class="span12 well">
<h2>Number of Events</h2>
<div id="nevents"></div>
</div>
</div>
<div class="row dataCharts" style="display:none">
<div class="span12 well">
<h2>Number of processed Jobs</h2>
<div id="ngoodjobs"></div>
</div>
</div>
<div class="row dataCharts" style="display:none">
<div class="span12 well">
<h2>Nominal CPU Time <small>in years</small></h2>
<div id="cputime"></div>
</div>
</div>
</div>
<!-- Le results -->
<script src="assets/js/top5.js" type="text/javascript"></script>
<script src="assets/js/warning.js" type="text/javascript"></script>
<footer style="text-align:center; padding:5px;">
<a href="http://www.w3.org/html/logo/">
<img src="http://www.w3.org/html/logo/badge/html5-badge-h-css3-device-graphics-semantics.png" width="229" height="64" alt="HTML5 Powered with CSS3 / Styling, Device Access, Graphics, 3D & Effects, and Semantics" title="HTML5 Powered with CSS3 / Styling, Device Access, Graphics, 3D & Effects, and Semantics">
</a>
</footer>
</body>
</html>