summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-09-30 22:47:59 -0500
committerJesse Luehrs <doy@tozt.net>2012-09-30 22:47:59 -0500
commitdefc4529afbed56a9c2ab906dee1b97eb2381066 (patch)
tree9be3ff0e0d657ee7ea704a03120dfa15835a82ed
parent9b0287b5b524dbd9169acf3a25c2159dd1253174 (diff)
downloadtozt.net-defc4529afbed56a9c2ab906dee1b97eb2381066.tar.gz
tozt.net-defc4529afbed56a9c2ab906dee1b97eb2381066.zip
make the github stuff look a lot nicer
-rw-r--r--root/static/github_activity.js72
-rw-r--r--root/static/style.css64
-rw-r--r--root/template/index.tt2
3 files changed, 109 insertions, 29 deletions
diff --git a/root/static/github_activity.js b/root/static/github_activity.js
index a20dd12..5c4cc55 100644
--- a/root/static/github_activity.js
+++ b/root/static/github_activity.js
@@ -13,42 +13,34 @@ var GithubActivity = (function($, _) {
var
self = {},
gh = 'http://github.com/',
- default_template = '<li> \
+ default_template = '<li class="action"> \
<% if (type == "PushEvent") { %> \
- <a href="https://github.com/<%= actor %>"><%= actor %></a> \
- <a href="<%= url %>">pushed</a> \
- to <a href="<%= repository.url %>"> \
- <%= repository.name %></a> on \
- <% print(created_at.substring(0, 10)); %>. \
- <ul><% _.each(payload.shas, function(sha) { %> \
- <li> \
+ <a href="<%= url %>"><b>pushed</b></a> \
+ to <a href="<%= repository.url %><% if (payload.ref != "refs/heads/master") { print("/tree/"); print(payload.ref.replace("refs/heads/", "")); } %>"> \
+ <%= repository.name %>/<% print(payload.ref.replace("refs/heads/", "")); %></a> \
+ <dl><% _.each(payload.shas, function(sha) { %> \
+ <dt> \
<a href="<%= repository.url %>/commit/<%= sha[0] %>"> \
- <%= sha[0].substring(0,6) %></a> \
- <%= (sha[2].split("\\n"))[0] %><% }); %></li></ul>\
+ <%= sha[0].substring(0,6) %></a></dt> \
+ <dd><%= (sha[2].split("\\n"))[0] %></dd><% }); %></dl>\
<% } else if (type == "GistEvent") { %> \
- <a href="https://github.com/<%= actor %>"><%= actor %></a> \
- <%= payload.action %>d gist: <a href="<%= payload.url %>">\
- <%= payload.desc %></a>.\
+ <b><%= payload.action %>d gist</b>: \
+ <a href="<%= payload.url %>"><%= payload.desc %></a> \
<% } else if (type == "CreateEvent") { %> \
- <a href="https://github.com/<%= actor %>"><%= actor %></a> \
- created <%= payload.ref_type %> <a href="<%= url %>"> \
+ <b>created <%= payload.ref_type %></b> <a href="<%= url %>"> \
<%= payload.ref %></a> in <a href="<%= repository.url %>"> \
- <%= repository.name %></a> on \
- <% print(created_at.substring(0, 10)); %>. \
+ <%= repository.name %></a> \
<% } else if (type == "PullRequestEvent") { %> \
- <a href="https://github.com/<%= actor %>"><%= actor %></a> \
- <%= payload.action %> pull request \
+ <b><%= payload.action %> pull request</b> \
<a href="<%= payload.pull_request.html_url %>"> \
#<%= payload.number %>: <%= payload.pull_request.title %></a> \
- on <% print(created_at.substring(0, 10)); %>. \
<% } else if (type == "IssueCommentEvent") { %> \
- <a href="https://github.com/<%= actor %>"><%= actor %></a> \
- commented on issue <a href="<%= url %>"> \
+ <b>commented on issue</b> <a href="<%= url %>"> \
#<% print(url.replace(/.*\\/issues\\/(\\d+)#.*/, "$1")); %> \
- </a> in <a href="<%= repository.url%>"><%= repository.name %> \
- </a> on <% print(created_at.substring(0, 10)); %>. \
+ </a> in \
+ <a href="<%= repository.url%>"><%= repository.name %></a> \
<% } else { %> \
- Unknown event type <% type %>. \
+ Unknown event type <% type %> \
<% } %>\
</li>';
@@ -60,12 +52,38 @@ var GithubActivity = (function($, _) {
var
url = 'https://github.com/' + username + '.json?callback=?',
template = $(tmpl_selector).html() || default_template,
- compiled = _.template(template);
+ compiled = _.template(template),
+ current_date = '',
+ $current_list;
$.getJSON(url, {}, function (data) {
$.each(data.slice(0, 6), function(index, commit) {
- $(selector).append(compiled(commit));
+ var date = commit.created_at.substring(0, 10);
+ if (date != current_date) {
+ if (current_date) {
+ var $new_item = $('<li class="date"></li>');
+ $new_item.append('<h5>' + current_date + '</h5>');
+ var $div = $('<div class="actions"></div>');
+ $div.append($current_list);
+ $new_item.append($div);
+ $(selector).append($new_item);
+ }
+
+ $current_list = $('<ul></ul>');
+ current_date = date;
+ }
+ var $action = $(compiled(commit));
+ if (index % 2) {
+ $action.addClass('odd')
+ }
+ $current_list.append($action);
});
+ var $new_item = $('<li class="date"></li>');
+ $new_item.append('<h5>' + current_date + '</h5>');
+ var $div = $('<div class="actions"></div>');
+ $div.append($current_list);
+ $new_item.append($div);
+ $(selector).append($new_item);
});
};
diff --git a/root/static/style.css b/root/static/style.css
index a4eed76..d6337e4 100644
--- a/root/static/style.css
+++ b/root/static/style.css
@@ -132,8 +132,70 @@ a:visited {
margin : 0px;
padding : 2px;
font-size : medium;
+ text-align : center;
+}
+
+.github h5 {
+ background-color : #58a;
+ border : 1px solid;
+ margin : 8px 16px;
+ padding : 2px;
+ font-size : x-small;
+ text-align : center;
+}
+
+.github .actions {
+ border : 1px solid;
+ float : left;
}
.github ul {
- padding : 0px 16px;
+ padding : 0px;
+ list-style-type : none;
+}
+
+#github-activity {
+ padding : 0px;
+ margin : 0px;
+}
+
+.github li {
+ float : left;
+ width : 100%;
+}
+
+.github .action.odd {
+ background-color : #fff;
+}
+
+.github .action {
+ background-color : #ddd;
+ margin : 0px;
+ padding : 4px;
+ float : left;
+}
+
+.github .date ul {
+ margin-right : 8px;
+ clear : left;
+}
+
+.github dl {
+ margin : 4px 0px;
+}
+
+.github dt {
+ padding : 0px 8px;
+ float : left;
+ clear : left;
+ margin : 0px;
+ width : 3em;
+}
+
+.github dd {
+ float : left;
+ padding : 0px;
+ padding-left : 4px;
+ margin : 0px;
+ width : 176px;
}
diff --git a/root/template/index.tt b/root/template/index.tt
index 476f525..6ef85f6 100644
--- a/root/template/index.tt
+++ b/root/template/index.tt
@@ -1,5 +1,5 @@
<div class="github">
-<h4>My GitHub activity</h2>
+<h4>my <a href="https://github.com/doy">github</a> activity</h2>
<ul id="github-activity"></ul>
</div>
<h4>about me</h4>