Skip to content

Commit

Permalink
allow limiting the amount of repos to display
Browse files Browse the repository at this point in the history
by setting github_repo_count to someething that's not 0, you can limit
the amount of repositories to render
  • Loading branch information
pilif committed Aug 4, 2011
1 parent f955919 commit 08af7b4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .themes/classic/source/_includes/asides/github.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ <h1>Github Repos</h1>
var s = document.getElementsByTagName('script')[0];
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 src="{{ root_url }}/javascripts/github.js" type="text/javascript"> </script>
Expand Down
14 changes: 9 additions & 5 deletions .themes/classic/source/javascripts/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ github = (function(){
t.innerHTML = fragment;
}
return {
showRepos: function(user, target){
showRepos: function(options){
var feed = new jXHR();
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){
if (feed.readyState === 4) {
Expand All @@ -27,11 +27,15 @@ github = (function(){

if (a.valueOf() == b.valueOf()) return 0;
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();
}
};
Expand Down
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ twitter_tweet_button: true

# github repositories
github_user:
github_repo_count: 0

# Google Plus
google_plus_one: true
Expand Down

0 comments on commit 08af7b4

Please sign in to comment.