-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinuxSpaceTree.html
85 lines (71 loc) · 2.23 KB
/
linuxSpaceTree.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Spacetree - Tree Animation</title>
<!-- CSS Files -->
<link type="text/css" href="linuxSpaceTree.css" rel="stylesheet" />
<!-- JIT Library File -->
<script language="javascript" type="text/javascript" src="jit.js"></script>
<!-- Example File -->
<script language="javascript" type="text/javascript" src="linuxSpaceTree.js"></script>
</head>
<body onload="init();">
<div id="container">
<div id="left-container">
<div class="text">
<h4>
Linux Space Tree Visualization
</h4>
This is a visualization of code contributions to the linux project. <br /><br />
Clicking on a node brings that node to the center. <br /><br />
Nodes and edges are color coded according to the subsystem that changed in the respective commit.<br /><br />
</div>
<div id="id-list"></div>
<div style="text-align:center;"><a href="linuxSpaceTree.js">See the Javascript Code and the data</a></div>
</div>
<div id="center-container">
<div id="infovis"></div>
</div>
<div id="tooltip"> <p>testing tool tip</p> </div>
<div id="right-container">
<br />
<h5>Show the most recent commit on:</h5>
<table>
<tr>
<td>
<label for="r-left">left </label>
</td>
<td>
<input type="radio" id="r-left" name="orientation" checked="checked" value="left" />
</td>
</tr>
<tr>
<td>
<label for="r-top">top </label>
</td>
<td>
<input type="radio" id="r-top" name="orientation" value="top" />
</td>
<tr>
<td>
<label for="r-bottom">bottom </label>
</td>
<td>
<input type="radio" id="r-bottom" name="orientation" value="bottom" />
</td>
</tr>
<tr>
<td>
<label for="r-right">right </label>
</td>
<td>
<input type="radio" id="r-right" name="orientation" value="right" />
</td>
</tr>
</table>
</div>
<div id="log"></div>
</div>
</body>
</html>