forked from lolli42/Repo-Activity-Monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·76 lines (66 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>Visualizing TYPO3 Core activity</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<link href="css/theme.css" rel="stylesheet">
</head>
<body role="document">
<!-- Fixed navbar -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">TYPO3 Core activity</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="stat.html">Table based</a></li>
<li><a href="index.html">Impact Chart</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</nav>
<div class="theme-showcase" role="main">
<div>
<div id="description">
Scoring is described in the related blog post
<a href="http://blog.tolleiv.de/2012/01/visualizing-typo3-core-activity/">on visualization of the TYPO3 core activity.</a>
<br />
The same numbers can also be found in the <a href="stat.html">table based overview</a>
</div>
<div id="info">
<div id="name2" class="hidden">
<div id="legend2"> </div>
<div id="username2">legend</div>
</div>
</div>
<br style="clear:all" />
</div>
<div id="chart"></div>
<img src="ajax-loader.gif" width="16" height="16" alt="Ajax Loader" id="loader">
<div id="footer"></div>
</div>
<!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-1.11.2.min.js" charset="utf-8"></script>
<script src="js/bootstrap.min.js" charset="utf-8"></script>
<script src="js/raphael.js" type="text/javascript" charset="utf-8"></script>
<script src="js/graph.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>