mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-11-03 16:18:53 +00:00
.github
.themes
_deploy
plugins
sass
source
_components
_cookbook
_details
_ecosystem
_includes
_layouts
_posts
_topics
assets
blog
components
cookbook
demo
details
developers
ecosystem
font
getting-started
help
images
javascripts
libs
github.js
modernizr-2.0.js
octopress.js
pinboard.js
twitter.js
static
topics
CNAME
atom.xml
favicon.png
googlef4f3693c209fe788.html
index.html
robots.txt
service_worker.js
version.json
.editorconfig
.gitattributes
.gitignore
.gitmodules
.powrc
.ruby-version
.slugignore
.travis.yml
Gemfile
Gemfile.lock
README.markdown
Rakefile
_config.yml
config.rb
config.ru
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
var github = (function(){
|
|
function escapeHtml(str) {
|
|
return $('<div/>').text(str).html();
|
|
}
|
|
function render(target, repos){
|
|
var i = 0, fragment = '', t = $(target)[0];
|
|
|
|
for(i = 0; i < repos.length; i++) {
|
|
fragment += '<li><a href="'+repos[i].html_url+'">'+repos[i].name+'</a><p>'+escapeHtml(repos[i].description||'')+'</p></li>';
|
|
}
|
|
t.innerHTML = fragment;
|
|
}
|
|
return {
|
|
showRepos: function(options){
|
|
$.ajax({
|
|
url: "https://api.github.com/users/"+options.user+"/repos?sort=pushed&callback=?"
|
|
, dataType: 'jsonp'
|
|
, error: function (err) { $(options.target + ' li.loading').addClass('error').text("Error loading feed"); }
|
|
, success: function(data) {
|
|
var repos = [];
|
|
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]);
|
|
}
|
|
if (options.count) { repos.splice(options.count); }
|
|
render(options.target, repos);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
})();
|