mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 03:23:43 +08:00
Add github commits widget
This commit is contained in:
parent
c123e40638
commit
fab04dbb58
|
@ -37,7 +37,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="version-check-right">
|
<div class="version-check-right">
|
||||||
<iframe src="http://api.discourse.org/commits-widget/index.html?limit=10&height=160" allowtransparency="true" frameborder="0" scrolling="no" width="502px" height="162px"></iframe>
|
<iframe src="/commits-widget/index.html?limit=10&height=160" allowtransparency="true" frameborder="0" scrolling="no" width="502px" height="162px"></iframe>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class='clearfix'></div>
|
<div class='clearfix'></div>
|
||||||
|
|
|
@ -12,7 +12,8 @@ if defined?(Rack::MiniProfiler)
|
||||||
(env['PATH_INFO'] !~ /assets/) &&
|
(env['PATH_INFO'] !~ /assets/) &&
|
||||||
(env['PATH_INFO'] !~ /jasmine/) &&
|
(env['PATH_INFO'] !~ /jasmine/) &&
|
||||||
(env['PATH_INFO'] !~ /users\/.*\/avatar/) &&
|
(env['PATH_INFO'] !~ /users\/.*\/avatar/) &&
|
||||||
(env['PATH_INFO'] !~ /srv\/status/)
|
(env['PATH_INFO'] !~ /srv\/status/) &&
|
||||||
|
(env['PATH_INFO'] !~ /commits-widget/)
|
||||||
end
|
end
|
||||||
|
|
||||||
Rack::MiniProfiler.config.position = 'left'
|
Rack::MiniProfiler.config.position = 'left'
|
||||||
|
|
26
public/commits-widget/index.html
Normal file
26
public/commits-widget/index.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset='utf-8' />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
|
||||||
|
<meta name="description" content="Discourse.org github commits widget" />
|
||||||
|
|
||||||
|
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
|
||||||
|
|
||||||
|
<title>Discourse.org Latest Commits Widget</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="widget-container">
|
||||||
|
<div class="header">
|
||||||
|
<h1>Latest Changes</h4>
|
||||||
|
</div>
|
||||||
|
<ul class="commits-list"></ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="/assets/external/jquery-1.8.2.js?body=1"></script>
|
||||||
|
<script src="javascripts/jquery.timeago.js"></script>
|
||||||
|
<script src="javascripts/commits-widget.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
50
public/commits-widget/javascripts/commits-widget.js
Normal file
50
public/commits-widget/javascripts/commits-widget.js
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
/*
|
||||||
|
* Parameters:
|
||||||
|
* limit: (integer) How many commits to render, starting with the most recent commit
|
||||||
|
* width: (integer) Width of the widget
|
||||||
|
* height: (integer) Height of the widget
|
||||||
|
* heading: (string) Text in the header of the widget
|
||||||
|
*/
|
||||||
|
$(function(){
|
||||||
|
var $commitsList = $('.commits-list');
|
||||||
|
var keyValuePairs = window.location.href.slice(window.location.href.indexOf("?") + 1).split("&");
|
||||||
|
var x, params = {};
|
||||||
|
$.each(keyValuePairs, function(i, keyValue){
|
||||||
|
x = keyValue.split('=');
|
||||||
|
params[x[0]] = x[1];
|
||||||
|
});
|
||||||
|
|
||||||
|
if( params.width ) {
|
||||||
|
$('.widget-container').css('width', params.width + 'px');
|
||||||
|
}
|
||||||
|
if( params.height ) {
|
||||||
|
$('.widget-container').css('height', params.height + 'px');
|
||||||
|
$('.widget-container .commits-list').css('height', (params.height - 31) + 'px');
|
||||||
|
}
|
||||||
|
if( params.heading ) {
|
||||||
|
$('.widget-container h1').text( decodeURIComponent(params.heading) );
|
||||||
|
}
|
||||||
|
|
||||||
|
$('.widget-container .header').click(function(){
|
||||||
|
window.open('https://github.com/discourse/discourse');
|
||||||
|
});
|
||||||
|
|
||||||
|
$.ajax( "https://api.github.com/repos/discourse/discourse/commits?callback=callback", {
|
||||||
|
dataType: 'jsonp',
|
||||||
|
type: 'get',
|
||||||
|
data: {
|
||||||
|
per_page: params.limit || 10
|
||||||
|
},
|
||||||
|
success: function(response, textStatus, jqXHR) {
|
||||||
|
var data = response.data;
|
||||||
|
$.each(data, function(i, commit){
|
||||||
|
var $li = $('<li></li>').appendTo( $commitsList );
|
||||||
|
$('<div class="left"><img src="https://www.gravatar.com/avatar/' + commit.author.gravatar_id + '.png?s=38&r=pg&d=identicon"></div>').appendTo( $li );
|
||||||
|
$right = $('<div class="right"></div>').appendTo( $li );
|
||||||
|
$('<span class="commit-message"><a href="https://github.com/discourse/discourse/commit/' + commit.sha + '" target="_blank">' + commit.commit.message + '</a></span><br/>').appendTo( $right );
|
||||||
|
$('<span class="commit-meta">by <span class="committer-name">' + commit.committer.login + '</span> - <span class="commit-time">' + $.timeago(commit.commit.committer.date) + '</span></span>').appendTo( $right );
|
||||||
|
$('<div class="clearfix"></div>').appendTo( $li );
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
162
public/commits-widget/javascripts/jquery.timeago.js
Normal file
162
public/commits-widget/javascripts/jquery.timeago.js
Normal file
|
@ -0,0 +1,162 @@
|
||||||
|
/**
|
||||||
|
* Timeago is a jQuery plugin that makes it easy to support automatically
|
||||||
|
* updating fuzzy timestamps (e.g. "4 minutes ago" or "about 1 day ago").
|
||||||
|
*
|
||||||
|
* @name timeago
|
||||||
|
* @version 1.0.2
|
||||||
|
* @requires jQuery v1.2.3+
|
||||||
|
* @author Ryan McGeary
|
||||||
|
* @license MIT License - http://www.opensource.org/licenses/mit-license.php
|
||||||
|
*
|
||||||
|
* For usage and examples, visit:
|
||||||
|
* http://timeago.yarp.com/
|
||||||
|
*
|
||||||
|
* Copyright (c) 2008-2013, Ryan McGeary (ryan -[at]- mcgeary [*dot*] org)
|
||||||
|
*/
|
||||||
|
|
||||||
|
(function (factory) {
|
||||||
|
if (typeof define === 'function' && define.amd) {
|
||||||
|
// AMD. Register as an anonymous module.
|
||||||
|
define(['jquery'], factory);
|
||||||
|
} else {
|
||||||
|
// Browser globals
|
||||||
|
factory(jQuery);
|
||||||
|
}
|
||||||
|
}(function ($) {
|
||||||
|
$.timeago = function(timestamp) {
|
||||||
|
if (timestamp instanceof Date) {
|
||||||
|
return inWords(timestamp);
|
||||||
|
} else if (typeof timestamp === "string") {
|
||||||
|
return inWords($.timeago.parse(timestamp));
|
||||||
|
} else if (typeof timestamp === "number") {
|
||||||
|
return inWords(new Date(timestamp));
|
||||||
|
} else {
|
||||||
|
return inWords($.timeago.datetime(timestamp));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
var $t = $.timeago;
|
||||||
|
|
||||||
|
$.extend($.timeago, {
|
||||||
|
settings: {
|
||||||
|
refreshMillis: 60000,
|
||||||
|
allowFuture: false,
|
||||||
|
strings: {
|
||||||
|
prefixAgo: null,
|
||||||
|
prefixFromNow: null,
|
||||||
|
suffixAgo: "ago",
|
||||||
|
suffixFromNow: "from now",
|
||||||
|
seconds: "less than a minute",
|
||||||
|
minute: "about a minute",
|
||||||
|
minutes: "%d minutes",
|
||||||
|
hour: "about an hour",
|
||||||
|
hours: "about %d hours",
|
||||||
|
day: "a day",
|
||||||
|
days: "%d days",
|
||||||
|
month: "about a month",
|
||||||
|
months: "%d months",
|
||||||
|
year: "about a year",
|
||||||
|
years: "%d years",
|
||||||
|
wordSeparator: " ",
|
||||||
|
numbers: []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
inWords: function(distanceMillis) {
|
||||||
|
var $l = this.settings.strings;
|
||||||
|
var prefix = $l.prefixAgo;
|
||||||
|
var suffix = $l.suffixAgo;
|
||||||
|
if (this.settings.allowFuture) {
|
||||||
|
if (distanceMillis < 0) {
|
||||||
|
prefix = $l.prefixFromNow;
|
||||||
|
suffix = $l.suffixFromNow;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var seconds = Math.abs(distanceMillis) / 1000;
|
||||||
|
var minutes = seconds / 60;
|
||||||
|
var hours = minutes / 60;
|
||||||
|
var days = hours / 24;
|
||||||
|
var years = days / 365;
|
||||||
|
|
||||||
|
function substitute(stringOrFunction, number) {
|
||||||
|
var string = $.isFunction(stringOrFunction) ? stringOrFunction(number, distanceMillis) : stringOrFunction;
|
||||||
|
var value = ($l.numbers && $l.numbers[number]) || number;
|
||||||
|
return string.replace(/%d/i, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
var words = seconds < 45 && substitute($l.seconds, Math.round(seconds)) ||
|
||||||
|
seconds < 90 && substitute($l.minute, 1) ||
|
||||||
|
minutes < 45 && substitute($l.minutes, Math.round(minutes)) ||
|
||||||
|
minutes < 90 && substitute($l.hour, 1) ||
|
||||||
|
hours < 24 && substitute($l.hours, Math.round(hours)) ||
|
||||||
|
hours < 42 && substitute($l.day, 1) ||
|
||||||
|
days < 30 && substitute($l.days, Math.round(days)) ||
|
||||||
|
days < 45 && substitute($l.month, 1) ||
|
||||||
|
days < 365 && substitute($l.months, Math.round(days / 30)) ||
|
||||||
|
years < 1.5 && substitute($l.year, 1) ||
|
||||||
|
substitute($l.years, Math.round(years));
|
||||||
|
|
||||||
|
var separator = $l.wordSeparator || "";
|
||||||
|
if ($l.wordSeparator === undefined) { separator = " "; }
|
||||||
|
return $.trim([prefix, words, suffix].join(separator));
|
||||||
|
},
|
||||||
|
parse: function(iso8601) {
|
||||||
|
var s = $.trim(iso8601);
|
||||||
|
s = s.replace(/\.\d+/,""); // remove milliseconds
|
||||||
|
s = s.replace(/-/,"/").replace(/-/,"/");
|
||||||
|
s = s.replace(/T/," ").replace(/Z/," UTC");
|
||||||
|
s = s.replace(/([\+\-]\d\d)\:?(\d\d)/," $1$2"); // -04:00 -> -0400
|
||||||
|
return new Date(s);
|
||||||
|
},
|
||||||
|
datetime: function(elem) {
|
||||||
|
var iso8601 = $t.isTime(elem) ? $(elem).attr("datetime") : $(elem).attr("title");
|
||||||
|
return $t.parse(iso8601);
|
||||||
|
},
|
||||||
|
isTime: function(elem) {
|
||||||
|
// jQuery's `is()` doesn't play well with HTML5 in IE
|
||||||
|
return $(elem).get(0).tagName.toLowerCase() === "time"; // $(elem).is("time");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$.fn.timeago = function() {
|
||||||
|
var self = this;
|
||||||
|
self.each(refresh);
|
||||||
|
|
||||||
|
var $s = $t.settings;
|
||||||
|
if ($s.refreshMillis > 0) {
|
||||||
|
setInterval(function() { self.each(refresh); }, $s.refreshMillis);
|
||||||
|
}
|
||||||
|
return self;
|
||||||
|
};
|
||||||
|
|
||||||
|
function refresh() {
|
||||||
|
var data = prepareData(this);
|
||||||
|
if (!isNaN(data.datetime)) {
|
||||||
|
$(this).text(inWords(data.datetime));
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
function prepareData(element) {
|
||||||
|
element = $(element);
|
||||||
|
if (!element.data("timeago")) {
|
||||||
|
element.data("timeago", { datetime: $t.datetime(element) });
|
||||||
|
var text = $.trim(element.text());
|
||||||
|
if (text.length > 0 && !($t.isTime(element) && element.attr("title"))) {
|
||||||
|
element.attr("title", text);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return element.data("timeago");
|
||||||
|
}
|
||||||
|
|
||||||
|
function inWords(date) {
|
||||||
|
return $t.inWords(distance(date));
|
||||||
|
}
|
||||||
|
|
||||||
|
function distance(date) {
|
||||||
|
return (new Date().getTime() - date.getTime());
|
||||||
|
}
|
||||||
|
|
||||||
|
// fix for IE6 suckage
|
||||||
|
document.createElement("abbr");
|
||||||
|
document.createElement("time");
|
||||||
|
}));
|
162
public/commits-widget/stylesheets/stylesheet.css
Normal file
162
public/commits-widget/stylesheets/stylesheet.css
Normal file
|
@ -0,0 +1,162 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
MeyerWeb Reset
|
||||||
|
*******************************************************************************/
|
||||||
|
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||||
|
article, aside, canvas, details, embed,
|
||||||
|
figure, figcaption, footer, header, hgroup,
|
||||||
|
menu, nav, output, ruby, section, summary,
|
||||||
|
time, mark, audio, video {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
font: inherit;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* HTML5 display-role reset for older browsers */
|
||||||
|
article, aside, details, figcaption, figure,
|
||||||
|
footer, header, hgroup, menu, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol, ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote, q {
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clearfix:before, .clearfix:after {
|
||||||
|
display: table;
|
||||||
|
content: " ";
|
||||||
|
}
|
||||||
|
.clearfix:after {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
Theme Styles
|
||||||
|
*******************************************************************************/
|
||||||
|
|
||||||
|
.widget-container {
|
||||||
|
border: solid 1px #ccc;
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
width: 500px;
|
||||||
|
height: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .header {
|
||||||
|
color: #222;
|
||||||
|
font-weight: bold;
|
||||||
|
height: 30px;
|
||||||
|
border-bottom: solid 1px #ccc;
|
||||||
|
|
||||||
|
background-color:#e1e1e1;
|
||||||
|
background-image:-moz-linear-gradient(top, #f1f1f1, #e1e1e1);
|
||||||
|
background-image:-ms-linear-gradient(top, #f1f1f1, #e1e1e1);
|
||||||
|
background-image:-o-linear-gradient(top, #f1f1f1, #e1e1e1);
|
||||||
|
background-image:-webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#e1e1e1));
|
||||||
|
background-image:-webkit-linear-gradient(top, #f1f1f1, #e1e1e1);
|
||||||
|
background-image:linear-gradient(center top, #f1f1f1 0%, #e1e1e1 100%);
|
||||||
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#f1f1f1', EndColorStr='#e1e1e1');
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .header:hover h1 {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .header h1 {
|
||||||
|
font-size: 18px;
|
||||||
|
margin: 3px 0 0 8px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .header .github-icon {
|
||||||
|
width: 22px;
|
||||||
|
height: 22px;
|
||||||
|
margin: 3px 0 0 5px;
|
||||||
|
vertical-align: top;
|
||||||
|
background: url(../images/github-icon.png) no-repeat 0 0;
|
||||||
|
opacity: .65;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .commits-list {
|
||||||
|
height: 169px;
|
||||||
|
overflow-y:auto;
|
||||||
|
line-height: 0.85em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .commits-list li {
|
||||||
|
padding: 6px 8px;
|
||||||
|
border-bottom: solid 1px #ccc;
|
||||||
|
background-color:#eee;
|
||||||
|
background-image:-moz-linear-gradient(top, #fafafa, #eee);
|
||||||
|
background-image:-ms-linear-gradient(top, #fafafa, #eee);
|
||||||
|
background-image:-o-linear-gradient(top, #fafafa, #eee);
|
||||||
|
background-image:-webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#eee));
|
||||||
|
background-image:-webkit-linear-gradient(top, #fafafa, #eee);
|
||||||
|
background-image:linear-gradient(center top, #fafafa 0%, #eee 100%);
|
||||||
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#f1f1f1', EndColorStr='#e1e1e1');
|
||||||
|
}
|
||||||
|
.widget-container .commits-list li:last-child {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .commits-list li .left {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .commits-list li .right {
|
||||||
|
margin-left: 52px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .commits-list li img {
|
||||||
|
margin-top: 2px;
|
||||||
|
border: solid 1px #ccc;
|
||||||
|
padding: 2px;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .commits-list li .commit-message {
|
||||||
|
color: #222;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .commits-list li .commit-meta {
|
||||||
|
color: #555;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container .commits-list li .committer-name {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.widget-container a {
|
||||||
|
color: #222;
|
||||||
|
text-decoration: none
|
||||||
|
}
|
||||||
|
.widget-container a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user