allow limiting the amount of repos to display

by setting github_repo_count to someething that's not 0, you can limit
the amount of repositories to render
This commit is contained in:
Philip Hofstetter 2011-08-04 21:15:50 +02:00
parent f955919348
commit 08af7b4e38
3 changed files with 16 additions and 6 deletions

View File

@ -13,7 +13,12 @@
var s = document.getElementsByTagName('script')[0]; var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(jxhr, s); s.parentNode.insertBefore(jxhr, s);
} }
github.showRepos('{{site.github_user}}', '#gh_repos');
github.showRepos({
user: '{{site.github_user}}',
count: {{site.github_repo_count}},
target: '#gh_repos'
});
}); });
</script> </script>
<script src="{{ root_url }}/javascripts/github.js" type="text/javascript"> </script> <script src="{{ root_url }}/javascripts/github.js" type="text/javascript"> </script>

View File

@ -8,10 +8,10 @@ github = (function(){
t.innerHTML = fragment; t.innerHTML = fragment;
} }
return { return {
showRepos: function(user, target){ showRepos: function(options){
var feed = new jXHR(); var feed = new jXHR();
feed.onerror = function (msg,url) { feed.onerror = function (msg,url) {
$(target + ' li.loading').addClass('error').text("Error loading feed"); $(options.target + ' li.loading').addClass('error').text("Error loading feed");
} }
feed.onreadystatechange = function(data){ feed.onreadystatechange = function(data){
if (feed.readyState === 4) { if (feed.readyState === 4) {
@ -27,11 +27,15 @@ github = (function(){
if (a.valueOf() == b.valueOf()) return 0; if (a.valueOf() == b.valueOf()) return 0;
return a.valueOf() > b.valueOf() ? -1 : 1; return a.valueOf() > b.valueOf() ? -1 : 1;
}) });
render(target, repos)
if (options.count)
repos.splice(options.count);
render(options.target, repos)
} }
}; };
feed.open("GET","http://github.com/api/v2/json/repos/show/"+user+"?callback=?"); feed.open("GET","http://github.com/api/v2/json/repos/show/"+options.user+"?callback=?");
feed.send(); feed.send();
} }
}; };

View File

@ -57,6 +57,7 @@ twitter_tweet_button: true
# github repositories # github repositories
github_user: github_user:
github_repo_count: 0
# Google Plus # Google Plus
google_plus_one: true google_plus_one: true