From d38c4094a1aef8be93218adeefe66b20308d96e3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 21 Nov 2014 01:12:26 -0500 Subject: Initial website Markdown conversion. --- themes/lv2/static/js/github.js | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 themes/lv2/static/js/github.js (limited to 'themes/lv2/static/js/github.js') diff --git a/themes/lv2/static/js/github.js b/themes/lv2/static/js/github.js new file mode 100644 index 0000000..ae6a3b6 --- /dev/null +++ b/themes/lv2/static/js/github.js @@ -0,0 +1,42 @@ +var github = (function(){ + function escapeHtml(str) { + return $('
').text(str).html(); + } + function render(target, repos){ + var i = 0, fragment = '', t = $(target)[0]; + fragment += ''; + t.innerHTML = fragment; + } + return { + showRepos: function(options){ + $.ajax({ + url: "https://api.github.com/users/"+options.user+"/repos?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]); + } + repos.sort(function(a, b) { + var aDate = new Date(a.pushed_at).valueOf(), + bDate = new Date(b.pushed_at).valueOf(); + + if (aDate === bDate) { return 0; } + return aDate > bDate ? -1 : 1; + }); + + if (options.count) { repos.splice(options.count); } + render(options.target, repos); + } + }); + } + }; +})(); -- cgit v1.2.1