37 lines
1.4 KiB
JavaScript
37 lines
1.4 KiB
JavaScript
/*! Inspired by: http://aboutcode.net/2010/11/11/list-github-projects-using-javascript.html */
|
|
|
|
jQuery.fn.listCommits = function(username, repository, branch) {
|
|
this.html('<span>Querying GitHub for recent commits…</span>');
|
|
|
|
var target = this;
|
|
$.getJSON('https://api.github.com/repos/' + username + '/' + repository + '/commits?sha=' + branch + '&callback=?', function(response) {
|
|
var commits = response.data,
|
|
list = $('<ul class="rssfeeditems"/>');
|
|
target.empty().append(list);
|
|
|
|
$(commits).each(function(i) {
|
|
var githubUrl = 'https://github.com/' + username + '/' + repository + '/commit/' + this.sha,
|
|
shortMessage = cutLines(this.commit.message);
|
|
|
|
if (this.author !== null) {
|
|
list.append('<li><a href="' + githubUrl + '">' + shortMessage + '</a><em> by <strong><a class="author" href="' + 'https://github.com/' + this.author.login + '">' + this.author.login + '</a></strong></em></li>');
|
|
} else {
|
|
list.append('<li><a href="' + githubUrl + '">' + shortMessage + '</a><em> by <strong>' + this.commit.author.name + '</strong></em></li>');
|
|
}
|
|
|
|
if (i === 9) {
|
|
return false;
|
|
}
|
|
});
|
|
});
|
|
|
|
function cutLines(message) {
|
|
var lineFeed = message.indexOf("\n");
|
|
|
|
if (lineFeed > -1) {
|
|
return message.slice(0, lineFeed);
|
|
}
|
|
return message;
|
|
}
|
|
};
|