2011-09-26 12:37:01 +00:00
|
|
|
var github = (function(){
|
2013-01-03 04:55:09 +00:00
|
|
|
function escapeHtml(str) {
|
|
|
|
return $('<div/>').text(str).html();
|
|
|
|
}
|
2011-09-26 12:37:01 +00:00
|
|
|
function render(target, repos){
|
|
|
|
var i = 0, fragment = '', t = $(target)[0];
|
2011-08-04 18:59:29 +00:00
|
|
|
|
2011-09-26 12:37:01 +00:00
|
|
|
for(i = 0; i < repos.length; i++) {
|
2013-01-03 04:55:09 +00:00
|
|
|
fragment += '<li><a href="'+repos[i].html_url+'">'+repos[i].name+'</a><p>'+escapeHtml(repos[i].description||'')+'</p></li>';
|
2011-08-04 18:59:29 +00:00
|
|
|
}
|
2011-09-26 12:37:01 +00:00
|
|
|
t.innerHTML = fragment;
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
showRepos: function(options){
|
2011-09-29 21:05:43 +00:00
|
|
|
$.ajax({
|
2013-02-20 16:46:15 +00:00
|
|
|
url: "https://api.github.com/users/"+options.user+"/repos?sort=pushed&callback=?"
|
2011-09-29 21:05:43 +00:00
|
|
|
, type: 'jsonp'
|
|
|
|
, error: function (err) { $(options.target + ' li.loading').addClass('error').text("Error loading feed"); }
|
|
|
|
, success: function(data) {
|
2011-09-26 12:37:01 +00:00
|
|
|
var repos = [];
|
2012-07-20 05:09:48 +00:00
|
|
|
if (!data || !data.data) { return; }
|
|
|
|
for (var i = 0; i < data.data.length; i++) {
|
|
|
|
if (options.skip_forks && data.data[i].fork) { continue; }
|
|
|
|
repos.push(data.data[i]);
|
2011-09-26 12:37:01 +00:00
|
|
|
}
|
|
|
|
if (options.count) { repos.splice(options.count); }
|
|
|
|
render(options.target, repos);
|
2011-08-04 18:59:29 +00:00
|
|
|
}
|
2011-10-28 14:21:02 +00:00
|
|
|
});
|
2011-09-26 12:37:01 +00:00
|
|
|
}
|
|
|
|
};
|
2011-09-29 21:05:43 +00:00
|
|
|
})();
|