2011-08-04 14:59:29 -04:00
|
|
|
github = (function(){
|
|
|
|
function render(target, repos){
|
|
|
|
var i = 0, fragment = '', t = $(target)[0];
|
|
|
|
|
|
|
|
for(i = 0; i < repos.length; i++)
|
|
|
|
fragment += '<li><a href="'+repos[i].url+'">'+repos[i].name+'</a><p>'+repos[i].description+'</p></li>';
|
|
|
|
|
|
|
|
t.innerHTML = fragment;
|
|
|
|
}
|
|
|
|
return {
|
2011-08-04 15:15:50 -04:00
|
|
|
showRepos: function(options){
|
2011-08-04 14:59:29 -04:00
|
|
|
var feed = new jXHR();
|
|
|
|
feed.onerror = function (msg,url) {
|
2011-08-04 15:15:50 -04:00
|
|
|
$(options.target + ' li.loading').addClass('error').text("Error loading feed");
|
2011-08-04 14:59:29 -04:00
|
|
|
}
|
|
|
|
feed.onreadystatechange = function(data){
|
|
|
|
if (feed.readyState === 4) {
|
|
|
|
var repos = [];
|
|
|
|
var i;
|
|
|
|
for (i = 0; i < data.repositories.length; i++){
|
2011-08-04 15:24:48 -04:00
|
|
|
if (options.skip_forks && !data.repositories[i].fork)
|
|
|
|
continue;
|
|
|
|
repos.push(data.repositories[i]);
|
2011-08-04 14:59:29 -04:00
|
|
|
}
|
|
|
|
repos.sort(function(a, b){
|
|
|
|
var a = new Date(a.pushed_at),
|
|
|
|
b = new Date(b.pushed_at);
|
|
|
|
|
|
|
|
if (a.valueOf() == b.valueOf()) return 0;
|
|
|
|
return a.valueOf() > b.valueOf() ? -1 : 1;
|
2011-08-04 15:15:50 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
if (options.count)
|
|
|
|
repos.splice(options.count);
|
|
|
|
|
|
|
|
render(options.target, repos)
|
2011-08-04 14:59:29 -04:00
|
|
|
}
|
|
|
|
};
|
2011-08-04 15:15:50 -04:00
|
|
|
feed.open("GET","http://github.com/api/v2/json/repos/show/"+options.user+"?callback=?");
|
2011-08-04 14:59:29 -04:00
|
|
|
feed.send();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
})();
|