-
Notifications
You must be signed in to change notification settings - Fork 1
/
plot.html
122 lines (96 loc) · 4.28 KB
/
plot.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
<!DOCTYPE HTML>
<html>
<body link="darkgrey" vlink="grey">
<font face="futura">
<div id="spins"></div>
<center>
<div id="failText" style="margin-top: 100px; width: 100%; display: none">
Couldn't find GitHub repository.
</div>
<div id="chartContainer" style="height: 300px; width: 100%; display: none"></div>
<div id="repoInfoOptions" style="display:none; margin: 0 auto; margin-top: 100px">
Details of repository to graph pull requests for
<br><br>
Repository owner
<input type="text" id="repoOwnerInput" style="width: 100px;"
onkeyup="if (event.keyCode == 13) document.getElementById('setRepoOptions').click()">
Repository name
<input type="text" id="repoNameInput" style="width: 100px;"
onkeyup="if (event.keyCode == 13) document.getElementById('setRepoOptions').click()">
<button id='setRepoOptions' onclick="setRepoOptions()">></button>
<center>
</div>
<div id="chartOptions" style="display:none;">
<div style="width:320px; margin:0 auto;">
</br><br>
Showing <span id='eventsShown'></span> events (zoomable)
</div>
</br> </br>
<div style="width:240px; margin:0 auto;">
<span style="margin-top:7px; display: inline-block;">
Show all events <button id='showallbutton' onclick="setShowAll()">></button>
</span>
</br>
<span style="margin-top:7px; display: inline-block;">
Only show last <input type="text" id="nEvents" style="width: 30px;"
onkeyup="if (event.keyCode == 13) document.getElementById('setNeventsButton').click()">
events <button id='setNeventsButton' onclick="showLastNevents()">></button>
</span>
</br>
<span style="margin-top:7px; display: inline-block;">
Only show events from <input type="text" id="sincedatepicker" style="width: 80px;"
onkeyup="if (event.keyCode == 13) document.getElementById('setdatesbutton').click()">
to <input type="text" id="uptodatepicker" style="width: 80px;"
onkeyup="if (event.keyCode == 13) document.getElementById('setdatesbutton').click()">
<button id='setdatesbutton' onclick="setDateRange()">></button>
</span>
</br>
</div>
</div>
<div id="footer" style="width: 240; margin: 0 auto; visibility: hidden;">
<br><br><br>
<center>
<span><a href="http://dhood.github.io/pullrequest-visualiser">Install the bookmarklet</a>
</span>
<br>
<span style="margin-top:10px; display:inline-block"> Open source contributions welcome at
<a href="http://www.github.com/dhood/pullrequest-visualiser">dhood/pullrequest-visualiser</a>
</span>
</center>
</div>
</font>
</body>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/Graph_by_dw_noun_project.png" type="image/x-icon">
<link rel="icon" href="images/Graph_by_dw_noun_project.png" type="image/x-icon">
<title>Pull Requests</title>
<script type="text/javascript" src="js/third_party/spin.min.js"></script>
<script type="text/javascript" src="js/loadingSpinner.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script src="js/calendars.js" type="text/javascript"></script>
<script type="text/javascript" src="js/third_party/canvasjs.min.js"></script>
<script type="text/javascript" src="js/chart.js"> </script>
<script type="text/javascript" src="js/getPRs.js"></script>
<script type="text/javascript">
var sc_project=10580366;
var sc_invisible=1;
var sc_security="16e30d16";
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "http://www.");
document.write("<sc"+"ript type='text/javascript' src='" +
scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
<noscript><div class="statcounter"><a title="click tracking"
href="http://statcounter.com/" target="_blank"><img
class="statcounter"
src="http://c.statcounter.com/10580366/0/16e30d16/1/"
alt="click tracking"></a></div>
</noscript>
</head>
</html>