cppcheck/htdocs/site/js/github.js

36 lines
1.3 KiB
JavaScript
Raw Normal View History

2012-10-20 11:02:39 +02:00
/*! Inspired by: http://aboutcode.net/2010/11/11/list-github-projects-using-javascript.html */
2012-09-29 15:57:30 +02:00
2013-03-02 07:43:52 +01:00
/*jshint forin:true, noarg:true, noempty:true, eqeqeq:true, bitwise:true, strict:false, undef:true, unused:true, curly:true, browser:true, jquery:true, indent:2, maxerr:50 */
jQuery.fn.listCommits = function(username, repository, branch) {
this.html('<span>Querying GitHub for recent commits&hellip;</span>');
var target = this;
$.getJSON('https://api.github.com/repos/' + username + '/' + repository + '/commits?sha=' + branch + '&callback=?', function(response) {
2013-03-02 07:43:09 +01:00
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),
2013-03-02 17:55:39 +01:00
commitAuthor = this.author !== null ? this.author.login : this.commit.author.name;
2011-01-22 18:05:42 +01:00
list.append('<li><a href="' + githubUrl + '">' + shortMessage + '</a> <em>by <strong>' + commitAuthor + '</strong></em></li>');
2012-11-29 16:02:25 +01:00
if (i === 9) {
return false;
}
});
});
2011-01-22 18:05:42 +01:00
function cutLines(message) {
var lineFeed = message.indexOf("\n");
2011-01-22 18:05:42 +01:00
if (lineFeed > -1) {
return message.slice(0, lineFeed);
}
return message;
}
};