-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
179 lines (152 loc) · 4.67 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" type="image/x-icon" href="public/images/favicon.ico">
<title>Coco Reporter - {{title}}</title>
<link rel="stylesheet" href="public/css/reset.css">
<link rel="stylesheet" href="public/css/tooltip.css">
<link rel="stylesheet" href="public/css/context-menu.css">
<link rel="stylesheet" href="public/css/layout.css">
<style>
#commit-calendar {
width: 50%;
}
#code-flower,
#commit-contributions,
#line-history,
#pipeline,
#circle-packing, #nested-treemap, #branch-timeline, #members-lifecycle {
width: 1200px;
height: auto;
position: relative;
}
#circle-packing text,
#branch-timeline svg,
#members-lifecycle svg,
.menu-entry rect,
.tooltip {
font: 12px sans-serif;
line-height: 20px;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.nodetext {
z-index: 999;
}
#commits-tree text {
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
/* hour heatmap: for */
rect.bordered {
stroke: #E6E6E6;
stroke-width: 4px;
}
text.mono {
font-size: 12px;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
fill: #aaa;
}
text.axis-workweek {
fill: #000;
}
text.axis-worktime {
fill: #000;
}
/* learning-curve: line chart */
.line {
fill: none;
stroke: steelblue;
stroke-width: 2px;
}
/* tag history line */
.dot-line {
fill: none;
stroke: black;
stroke-width: 2px;
}
.code-frequency .addition {
/*fill: #2cbe4e;*/
/*fill-opacity: 1;*/
}
.code-frequency .deletion {
/*fill: #cb2431;*/
/*fill-opacity: 1;*/
}
</style>
</head>
<body>
<h1>Coco Reporter</h1>
<h1>Coding Skills</h1>
<h2>Code Frequency</h2>
<select id="code-frequency-select"></select>
<div id="code-frequency"></div>
<h3>Commit Contributions</h3>
<div id="commit-contributions"></div>
<h3>Line History</h3>
<div id="line-history"></div>
<h2>Commit Calendar</h2>
<h1>Deploy Design</h1>
<div id="commit-calendar"></div>
<h2>Branches History</h2>
<div id="branch-timeline"></div>
<h2>Tags Timeline</h2>
<select id="tags-timeline-select"></select>
<div id="tags-timeline"></div>
<h1>Tooling Usage</h1>
<div id="pipeline"></div>
<h1>Knowledge Transform</h1>
<h2>Learning Curve</h2>
<div id="learning-curve"></div>
<h2>Member Lifecycle</h2>
<div id="members-lifecycle"></div>
<h1>Architecture Design(Physical Design)</h1>
<h2>Package by Size 1</h2>
<div id="circle-packing"></div>
<h2>Package by Size 2</h2>
<div id="nested-treemap"></div>
<h2>Coder Flower</h2>
<div id="code-flower"></div>
<h1>Organizational Culture</h1>
<div class="layout-grid2x2">
<div>
<h2>Hour Heatmap</h2>
<div id="hour-heatmap"></div>
</div>
<div>
<h2>Hour Heatmap (Half Year)</h2>
<div id="hour-heatmap-half-year"></div>
</div>
<div>
<h2>Hour Heatmap (Three Month)</h2>
<div id="hour-heatmap-three-month"></div>
</div>
</div>
<h2>Commits Tree</h2>
<div id="commits-tree"></div>
<script src="public/js/libs/d3.min.js"></script>
<script src="public/js/graph-config.js"></script>
<script src="public/js/support/code-support.js"></script>
<script src="public/js/support/dom-support.js"></script>
<script src="public/js/support/menu-support.js"></script>
<script src="public/js/support/time-support.js"></script>
<script src="public/js/support/commit-convert.js"></script>
<script src="public/js/graph/cloc/circle-packing.js"></script>
<script src="public/js/graph/cloc/nested-treemap.js"></script>
<script src="public/js/graph/cloc/code-flower.js"></script>
<script src="public/js/plugins/legend.js"></script>
<script src="public/js/graph/git/branch-timeline.js"></script>
<script src="public/js/graph/git/commits-tree.js"></script>
<script src="public/js/graph/git/commit-hour-heatmap.js"></script>
<script src="public/js/graph/git/tags-timeline.js"></script>
<script src="public/js/graph/git/team-lifecycle.js"></script>
<script src="public/js/graph/git/team-learning-curve.js"></script>
<script src="public/js/graph/git/commit-calendar.js"></script>
<script src="public/js/graph/git/commit-code-frequency.js"></script>
<script src="public/js/graph/git/time-interactive-line.js"></script>
<script src="public/js/graph/plugins/struct-visual.js"></script>
<script src="public/js/graph/plugins/pipeline-visual.js"></script>
<script src="public/js/index.js"></script>
</body>
</html>