forked from hbt/git-forks-analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added example + optimized dockerfile
- Loading branch information
Showing
487 changed files
with
79,589 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>GitStats - mouseless</title> | ||
<meta charset='utf-8'> | ||
<link href='../assets/bootstrap/css/bootstrap.min.css' rel='stylesheet' type='text/css'> | ||
<style> | ||
body { padding-top: 60px; } | ||
</style> | ||
<link href='../assets/bootstrap/css/bootstrap-responsive.min.css' rel='stylesheet' type='text/css'> | ||
<script src='../assets/jquery.min.js' type='text/javascript'></script> | ||
<script src='../assets/bootstrap/js/bootstrap.min.js' type='text/javascript'></script> | ||
<script src='../assets/highstock.js' type='text/javascript'></script> | ||
<script src='../assets/exporting.js' type='text/javascript'></script> | ||
<script src='../assets/export-csv.js' type='text/javascript'></script> | ||
</head> | ||
<body> | ||
<div class='navbar navbar-fixed-top'> | ||
<div class='navbar-inner'> | ||
<div class='container'> | ||
<a class='btn btn-navbar' data-target='.nav-collapse' data-toggle='collapse'> | ||
<span class='icon-bar'></span> | ||
<span class='icon-bar'></span> | ||
<span class='icon-bar'></span> | ||
</a> | ||
<a class='brand' href='../index.html'>GitStats - mouseless</a> | ||
<div class='nav-collapse collapse'> | ||
<ul class='nav'> | ||
<li class=''> | ||
<a href='../general.html'>General</a> | ||
</li> | ||
<li class='active'> | ||
<a href='by_date.html'>Activity</a> | ||
</li> | ||
<li class=''> | ||
<a href='../authors/best_authors.html'>Authors</a> | ||
</li> | ||
<li class=''> | ||
<a href='../files/by_date.html'>Files</a> | ||
</li> | ||
<li class=''> | ||
<a href='../lines/by_date.html'>Lines</a> | ||
</li> | ||
<li class=''> | ||
<a href='../comments/by_date.html'>Comments</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class='container'> | ||
<div class='tabbable tabs-left'> | ||
<ul class='nav nav-tabs'> | ||
<li class=''> | ||
<a href='by_date.html'>Activity by date</a> | ||
</li> | ||
<li class=''> | ||
<a href='hour_of_day.html'>Hour of day</a> | ||
</li> | ||
<li class='active'> | ||
<a href='day_of_week.html'>Day of week</a> | ||
</li> | ||
<li class=''> | ||
<a href='hour_of_week.html'>Hour of week</a> | ||
</li> | ||
<li class=''> | ||
<a href='month_of_year.html'>Month of year</a> | ||
</li> | ||
<li class=''> | ||
<a href='year.html'>Year</a> | ||
</li> | ||
<li class=''> | ||
<a href='year_month.html'>Year and month</a> | ||
</li> | ||
</ul> | ||
<div class='tab-content'> | ||
<div class='tab-pane active'> | ||
<div class='page-header pagination-centered'> | ||
<h1>Day of week</h1> | ||
<h3> </h3> | ||
</div> | ||
</div> | ||
<table class='table table-bordered table-condensed'> | ||
<tr> | ||
<th>Day</th> | ||
<th>Sun</th> | ||
<th>Mon</th> | ||
<th>Tue</th> | ||
<th>Wed</th> | ||
<th>Thu</th> | ||
<th>Fri</th> | ||
<th>Sat</th> | ||
</tr> | ||
<tr> | ||
<th>Commits</th> | ||
<td>151</td> | ||
<td>217</td> | ||
<td>178</td> | ||
<td>147</td> | ||
<td>156</td> | ||
<td>221</td> | ||
<td>226</td> | ||
</tr> | ||
<tr> | ||
<th>Percentage</th> | ||
<td>11.7</td> | ||
<td>16.7</td> | ||
<td>13.7</td> | ||
<td>11.3</td> | ||
<td>12.0</td> | ||
<td>17.1</td> | ||
<td>17.4</td> | ||
</tr> | ||
</table> | ||
<script type="text/javascript"> | ||
(function() { | ||
|
||
var onload = window.onload; | ||
window.onload = function(){ | ||
if (typeof onload == "function") onload(); | ||
var options = { "title": { "text": "" },"legend": { "enabled": false },"xAxis": { "title": { "text": "Day" },"categories": [ "Sun","Mon","Tue","Wed","Thu","Fri","Sat" ] },"yAxis": { "title": { "text": "Commits" },"labels": { } },"tooltip": { "enabled": true },"credits": { "enabled": false },"plotOptions": { "areaspline": { } },"chart": { "defaultSeriesType": "line","renderTo": "charts.activity_by_wday","type": "column" },"subtitle": { },"series": [{ "name": "Commits by day of week","data": [ 151,217,178,147,156,221,226 ] }] }; | ||
|
||
window.chart_charts.activity_by_wday = new Highcharts.Chart(options); | ||
|
||
}; | ||
})() | ||
</script> | ||
|
||
<div id="charts.activity_by_wday"></div> | ||
</div> | ||
</div> | ||
|
||
|
||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.