forked from espy/ubersicht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
196 lines (181 loc) · 6.8 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ubersicht</title>
<link rel="stylesheet" href="bower_components/reset-css/reset.css">
<link rel="stylesheet" href="bower_components/select2/select2.css">
<link rel="stylesheet" href="style/green.css">
<link rel="stylesheet" href="style/orange.css">
<link rel="stylesheet" href="bower_components/jquery-icheck/skins/flat/grey.css">
<link rel="stylesheet" href="style/style.css">
<meta name="viewport" content="initial-scale=1">
</head>
<body>
<header>
<div class="info">
<h1 class="title"><strong>Ubersicht</strong></h1>
<h6>Made by <a href="http://hood.ie">team Hoodie</a> with love. <a href="https://www.gittip.com/hoodiehq/">Leave a tip</a> or <a href="https://github.com/espy/ubersicht">fork this</a>.</h6>
</div>
<div class="statusIndicators"></div>
</header>
<div class="controls">
<div class="checkboxes hide">
<ul class="stateControls">
<li>
<input type="checkbox" id="showOpen" class="orange" checked>
<label for="showOpen">Show open issues</label>
</li>
<li>
<input type="checkbox" id="showClosed" class="green" checked>
<label for="showClosed">Show closed issues</label>
</li>
</ul>
<ul class="commentControls">
<li>
<input type="checkbox" id="showCommented" class="grey" checked>
<label for="showCommented">Show issues with comments</label>
</li>
<li>
<input type="checkbox" id="showUncommented" class="grey" checked>
<label for="showUncommented">Show issues without comments</label>
</li>
</ul>
<ul class="typeControls">
<li>
<input type="checkbox" id="showIssues" class="grey" checked>
<label for="showIssues">Show issues</label>
</li>
<li>
<input type="checkbox" id="showPullRequests" class="grey" checked>
<label for="showPullRequests">Show pull requests</label>
</li>
</ul>
<ul class="starterControls">
<li>
<a href="#" class="showStarter">Show issues for new committers</a>
</li>
<li>
<input type="checkbox" id="last24Hours" class="grey">
<label for="last24Hours">Last 24 hours only</label>
</li>
</ul>
</div>
</div>
<script id="error" type="text/html">
<div class="error">
<h2>{{title}}</h2>
<p>{{message}}</p>
{{#countdown}}
<h2 class="countdown"></h2>
{{/countdown}}
</div>
</script>
<script id="issues" type="text/html">
<div class="summary"></div>
<ul class="issues">
{{#issues}}
{{>issue}}
{{/issues}}
</ul>
</script>
<script id="issue" class="partial" type="text/html">
<li class="{{state}} {{#is_pull_request}}pull-request{{/is_pull_request}}" data-repo="{{repo_name}}" data-username="{{user.login}}" data-assignee="{{assignee.login}}" data-updatedat="{{updated_at}}" data-createdat="{{created_at}}" data-closedat="{{closed_at}}">
<div class="authorPlaceholder">
<a class="author" href="{{user.html_url}}" title="Opened by {{user.login}}"><img src="{{user.avatar_url}}" alt=""></a>
</div>
<div class="assigneePlaceholder">
{{#assignee}}
{{>assignee}}
{{/assignee}}
</div>
<a class="title" href="{{html_url}}">{{title}} {{#comments}}<span class="comments">{{comments}}</span>{{/comments}}</a>
<br>
<a class="repoName" href="{{repo_url}}">{{repo_name}}</a> <a class="issueNumber" href="{{html_url}}">(#{{number}}
{{#milestone}}
/ <a class="milestone" href="{{html_url}}">{{title}}</a>
{{/milestone}})</a>
<ul class="labels">
{{#labels}}
{{>label}}
{{/labels}}
</ul>
<time class="timeago" datetime="{{updated_at}}"></time>
</li>
</script>
<script id="label" class="partial" type="text/html">
<li style="background-color: #{{color}};">{{name}}</li>
</script>
<script id="assignee" class="partial" type="text/html">
<a class="assignee" href="{{url}}" title="Assigned to {{login}}"><img src="{{avatar_url}}" alt=""></a>
</script>
<script id="repoSelector" type="text/html">
<select multiple name="repoSelector" id="repos" data-placeholder="Filter by repos">
{{#repos}}
{{>repo}}
{{/repos}}
</select>
</script>
<script id="repo" class="partial" type="text/html">
<option value="{{name}}">{{name}} ({{issues}})</option>
</script>
<script id="labelSelector" type="text/html">
<select multiple name="labelSelector" id="labels" data-placeholder="Filter by labels">
{{#labels}}
{{>labelOption}}
{{/labels}}
</select>
</script>
<script id="labelOption" class="partial" type="text/html">
<option value="{{name}}" data-color="{{color}}">{{name}} ({{issues}})</option>
</script>
<script id="milestoneSelector" type="text/html">
<select multiple name="milestoneSelector" id="milestones" data-placeholder="Filter by milestones">
{{#milestones}}
{{>milestoneOption}}
{{/milestones}}
</select>
</script>
<script id="milestoneOption" class="partial" type="text/html">
<option value="{{name}}" data-color="{{color}}">{{name}} ({{issues}})</option>
</script>
<script id="usernamesSelector" type="text/html">
<select multiple name="usernamesSelector" id="usernames" data-placeholder="Filter by username or assignee">
{{#usernames}}
{{>usernameOption}}
{{/usernames}}
</select>
</script>
<script id="usernameOption" class="partial" type="text/html">
<option value="{{username}}" data-color="{{color}}">{{username}} ({{issues}})</option>
</script>
<script id="status" type="text/html">
<div class="statusDisplay {{action}}">
<a class="" href="{{url}}">
<span class="data">{{data}}</span>
<span class="info">{{info}}</span>
</a>
</div>
</script>
<script src="bower_components/jquery/jquery.min.js"></script>
<script src="bower_components/underscore/underscore-min.js"></script>
<script src="bower_components/select2/select2.min.js"></script>
<script src="bower_components/jquery-icheck/icheck.min.js"></script>
<script src="bower_components/jquery-timeago/jquery.timeago.js"></script>
<script src="bower_components/icanhazjs/ICanHaz.min.js"></script>
<script src="script/main.js"></script>
<script type="text/javascript">
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '52e17a505dd0531b4a00043c');
t.src = '//secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>
</body>
</html>