aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/static/js/github.js
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2013-09-12 23:09:49 -0700
committerJustin Mayer <entroP@gmail.com>2013-09-12 23:09:49 -0700
commita217f4239e87d4d17c518e0ecdb7cd20a6752f12 (patch)
treed105653aace2d690f01eea6d8eae2ce36341d3ec /pelican-bootstrap3/static/js/github.js
parentb062b010425416601f9b623136d42cb88db09dc5 (diff)
parent8fc2dfd7e8fe863b9536f7b78a78856b97ed22b6 (diff)
downloadpelican-themes-a217f4239e87d4d17c518e0ecdb7cd20a6752f12.tar.gz
Merge pull request #127 from DandyDev/master
Added pelican-bootstrap3 theme
Diffstat (limited to 'pelican-bootstrap3/static/js/github.js')
-rw-r--r--pelican-bootstrap3/static/js/github.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/pelican-bootstrap3/static/js/github.js b/pelican-bootstrap3/static/js/github.js
new file mode 100644
index 0000000..7bdb6a4
--- /dev/null
+++ b/pelican-bootstrap3/static/js/github.js
@@ -0,0 +1,40 @@
+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 class="list-group-item"><a href="'+repos[i].html_url+'">'+repos[i].name+'</a><p><small>'+escapeHtml(repos[i].description||'')+'</small></p></li>';
+ }
+ 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);
+ }
+ });
+ }
+ };
+})();