2011-09-26 08:37:01 -04:00
|
|
|
var github = (function(){
|
|
|
|
function render(target, repos){
|
|
|
|
var i = 0, fragment = '', t = $(target)[0];
|
2011-08-04 14:59:29 -04:00
|
|
|
|
2011-09-26 08:37:01 -04:00
|
|
|
for(i = 0; i < repos.length; i++) {
|
|
|
|
fragment += '<li><a href="'+repos[i].url+'">'+repos[i].name+'</a><p>'+repos[i].description+'</p></li>';
|
2011-08-04 14:59:29 -04:00
|
|
|
}
|
2011-09-26 08:37:01 -04:00
|
|
|
t.innerHTML = fragment;
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
showRepos: function(options){
|
2011-09-29 17:05:43 -04:00
|
|
|
$.ajax({
|
|
|
|
url: "http://github.com/api/v2/json/repos/show/"+options.user+"?callback=?"
|
|
|
|
, type: 'jsonp'
|
|
|
|
, error: function (err) { $(options.target + ' li.loading').addClass('error').text("Error loading feed"); }
|
|
|
|
, success: function(data) {
|
2011-09-26 08:37:01 -04:00
|
|
|
var repos = [];
|
|
|
|
for (var i = 0; i < data.repositories.length; i++){
|
|
|
|
if (options.skip_forks && data.repositories[i].fork) { continue; }
|
|
|
|
repos.push(data.repositories[i]);
|
|
|
|
}
|
|
|
|
repos.sort(function(a, b) {
|
|
|
|
var aDate = new Date(a.pushed_at).valueOf(),
|
|
|
|
bDate = new Date(b.pushed_at).valueOf();
|
2011-08-04 15:15:50 -04:00
|
|
|
|
2011-09-26 08:37:01 -04:00
|
|
|
if (aDate === bDate) { return 0; }
|
|
|
|
return aDate > bDate ? -1 : 1;
|
|
|
|
});
|
2011-08-04 15:15:50 -04:00
|
|
|
|
2011-09-26 08:37:01 -04:00
|
|
|
if (options.count) { repos.splice(options.count); }
|
|
|
|
render(options.target, repos);
|
2011-08-04 14:59:29 -04:00
|
|
|
}
|
2011-09-29 17:05:43 -04:00
|
|
|
})
|
2011-09-26 08:37:01 -04:00
|
|
|
}
|
|
|
|
};
|
2011-09-29 17:05:43 -04:00
|
|
|
})();
|