-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
69 lines (57 loc) · 2.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bus factor</title>
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css" />
<script src="js/vendor/jquery.js"></script>
<script src="js/bootstrap/bootstrap.min.js"></script>
<script src="js/d3.v3.min.js" charset="utf-8"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-10">
<h1>The <emph class="projectOwner"></emph><emph class="projectName"></emph> project</h1>
<h2>Summary</h2>
<p class="description">In your project <strong class="numContributors"></strong> developers contributed actively in <strong class="numFiles"></strong> files </p>
<p class="description">(the most important file extensions are <strong class="relevantExtensions"></strong>). </p>
<p class="description">The project will have a hard time if <strong class="importantUsers"></strong> is hit by a bus. <emph class="relyingUsers"></emph></p>
<p class="description"><emph class="notImportantUsers"></emph></p>
</div>
<div class="col-md-2">
<div class="factorBox">
<p class="text-center title">The Bus Factor is:</p>
<p class="text-center factor"></p>
</div>
<button class="btn btn-block busHittingButton">Start Bus Hitting</button>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>User Relevance</h2>
<div class="userGraph"></div>
</div>
</div>
<div class="row">
<div class="col-md-9">
<h2>Branches & Tags (<div style="display:inline;" class="numReferences"></div>)</h2>
<div class="referenceGraph"></div>
<h2>Directories (<div style="display:inline;" class="numDirs"></div>)</h2>
<div class="directoryGraph"></div>
<h2>Files (<div style="display:inline;" class="numFiles"></div>)</h2>
<div class="fileGraph"></div>
<h2>Extensions (<div style="display:inline;" class="numExts"></div>)</h2>
<div class="extensionGraph"></div>
</div>
<div class="col-md-3">
<h2>Details</h2>
<div class="detailGraph"></div>
</div>
</div>
</div>
<script src="js/initIndex.js"></script>
</body>
</html>