-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (97 loc) · 4.06 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="css/base.css">
<title>Stack Overflow dashboard</title>
</head>
<body>
<div id="container">
<section role="region">
<header>
<h1>
<img src="images/foursquare-wordmark.png" alt=""> on
<img src="images/stack-overflow-logo.png" alt=""> dashboard
</h1>
</header>
</section>
<div id="main">
<p>
This is to get the statistics for tags on <a href="http://stackoverflow.com/">Stack Overflow</a>.<br>
Remaining requests for you today: <span id="remaining-requests"></span>
</p>
<p id="error">
</p>
<div>
<form id="selection-form">
<label for="stack-overflow-tag">Tag:</label>
<select id="stack-overflow-tag">
<option value="revenuecat" selected>revenuecat</option>
<option value="in-app-purchase">in-app-purchase</option>
<option value="in-app-billing">in-app-billing</option>
<option value="storeket">storekit</option>
<option value="iap">iap</option>
</select>
<label for="start-date">Dates</label>
<input type="date" id="start-date" value="2014-04-01">
<input type="date" id="end-date" value="2014-05-01">
<label for="time-period">Period</label>
<select id="time-period">
<option value="month" selected>Month</option>
<option value="all_time">All time</option>
</select>
<input type="submit" id="check-reports" value="Check">
</form>
</div>
<div id="results">
<section>
<h2>Questions (based on dates above)</h2>
<table>
<tr>
<th>With activity</th>
<td id="questions-with-activity"></td>
</tr>
<tr>
<th>Unanswered *</th>
<td id="unanswered-questions"></td>
</tr>
<tr>
<th>Results</th>
<td id="questions-results"></td>
</tr>
<tr>
<td colspan="2">* = (must have at least one upvoted answer to be considered answered)</td>
</tr>
</table>
</section>
<section>
<h2>Top answerers (based on time period above)</h2>
<div id="top-answerers"></div>
</section>
<section>
<h2>Unanswered questions *</h2>
<div id="unanswered"></div>
</section>
<section>
<h2>Frequently asked questions</h2>
<div id="faq"></div>
</section>
<section>
<h2>Related tags</h2>
<div id="related-tags"></div>
</section>
<section>
<h2>Top askers (based on time period above)</h2>
<div id="top-askers"></div>
</section>
</div>
</div>
<footer>
<p><small>* = (must have at least one upvoted answer to be considered answered)</small></p>
<p>Code available in the <a href="https://github.com/rkotzy/stack-dash">stack-dash GitHub repository</a>.</p>
</footer>
</div>
<script type="text/javascript" src="js/base.js"></script>
</body>
</html>