forked from clayton/jenkins-radiator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (60 loc) · 2.67 KB
/
index.html
File metadata and controls
68 lines (60 loc) · 2.67 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jenkins Radiator</title>
<script src="config.js" type="text/javascript" charset="utf-8"></script>
<script src="app.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/jquery-1.7.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/jquery.jsonp-2.3.1.min.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/underscore-min.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/backbone-min.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/mustache.js" type="text/javascript" charset="utf-8"></script>
<script src="src/radiator.js" type="text/javascript" charset="utf-8"></script>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="./styles/bootstrap/css/bootstrap.min.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="./styles/jenkins-radiator.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="./styles/font-awesome.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div class="container-fluid">
<div class="build-health-wrapper row-fluid">
<div class="span12 build-health">
<h1 class="loading">Loading...</h1>
</div>
</div>
<div class="build-metrics-wrapper row-fluid">
<div class="span3 passing-count build-metric">
</div>
<div class="span3 failing-count build-metric">
</div>
<div class="span3 building-count build-metric">
</div>
<div class="span3 disabled-count build-metric">
</div>
</div>
</div>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
JenkinsRadiator.init();
});
</script>
<script id="buildMetricTemplate" type="text/template">
<h1>{{title}}</h1>
<p>{{count}}</p>
</script>
<script id="jobViewTemplate" type="text/template">
<span style="width:100%"><h1>{{name}}</h1></span>
</script>
<audio id="booing-audio">
<source src="sfx/ThunderClap.ogg" type="audio/ogg">
<source src="sfx/ThunderClap.mp3" type="audio/mpeg">
<source src="sfx/ThunderClap.wav" type="audio/wav">
</audio>
<audio id="cheering-audio">
<source src="sfx/SmallChildGiggle.ogg" type="audio/ogg">
<source src="sfx/SmallChildGiggle.mp3" type="audio/mpeg">
<source src="sfx/SmallChildGiggle.wav" type="audio/wav">
</audio>
</body>
</html>