updated to latest octopress

This commit is contained in:
Brandon Mathis 2011-09-27 00:58:01 -05:00
parent 63d642d017
commit 0b74084cd7
3 changed files with 54 additions and 54 deletions

View File

@ -1,4 +1,5 @@
.highlight, html .gist .gist-file .gist-syntax .gist-highlight { .highlight, html .gist .gist-file .gist-syntax .gist-highlight {
table td.code { width: 100%; }
.line-numbers { .line-numbers {
text-align: right; text-align: right;
font-size: 13px; font-size: 13px;
@ -85,19 +86,21 @@ h3.filename {
+ pre { @include border-top-radius(0px); } + pre { @include border-top-radius(0px); }
} }
p code, p, li {
li code { code {
@extend .mono; @extend .mono;
display: inline-block; display: inline-block;
white-space: no-wrap; white-space: no-wrap;
background: #fff; background: #fff;
font-size: .8em; font-size: .8em;
line-height: 1.5em; line-height: 1.5em;
color: #555; color: #555;
border: 1px solid #ddd; border: 1px solid #ddd;
@include border-radius(.4em); @include border-radius(.4em);
padding: 0 .3em; padding: 0 .3em;
margin: -1px 0; margin: -1px 0;
}
pre code { font-size: 1em !important; background: none; border: none; }
} }
.pre-code { .pre-code {
@ -216,6 +219,7 @@ figure.code {
margin-bottom: 0; margin-bottom: 0;
} }
} }
.code-title { .code-title {
text-align: center; text-align: center;
font-size: 13px; font-size: 13px;

View File

@ -1,43 +1,39 @@
github = (function(){ var github = (function(){
function render(target, repos){ function render(target, repos){
var i = 0, fragment = '', t = $(target)[0]; var i = 0, fragment = '', t = $(target)[0];
for(i = 0; i < repos.length; i++) for(i = 0; i < repos.length; i++) {
fragment += '<li><a href="'+repos[i].url+'">'+repos[i].name+'</a><p>'+repos[i].description+'</p></li>'; fragment += '<li><a href="'+repos[i].url+'">'+repos[i].name+'</a><p>'+repos[i].description+'</p></li>';
t.innerHTML = fragment;
} }
return { t.innerHTML = fragment;
showRepos: function(options){ }
var feed = new jXHR(); return {
feed.onerror = function (msg,url) { showRepos: function(options){
$(options.target + ' li.loading').addClass('error').text("Error loading feed"); var feed = new jXHR();
} feed.onerror = function (msg,url) {
feed.onreadystatechange = function(data){ $(options.target + ' li.loading').addClass('error').text("Error loading feed");
if (feed.readyState === 4) { };
var repos = []; feed.onreadystatechange = function(data) {
var i; if (feed.readyState === 4) {
for (i = 0; i < data.repositories.length; i++){ var repos = [];
if (options.skip_forks && data.repositories[i].fork) for (var i = 0; i < data.repositories.length; i++){
continue; if (options.skip_forks && data.repositories[i].fork) { continue; }
repos.push(data.repositories[i]); repos.push(data.repositories[i]);
} }
repos.sort(function(a, b){ repos.sort(function(a, b) {
var a = new Date(a.pushed_at), var aDate = new Date(a.pushed_at).valueOf(),
b = new Date(b.pushed_at); bDate = new Date(b.pushed_at).valueOf();
if (a.valueOf() == b.valueOf()) return 0; if (aDate === bDate) { return 0; }
return a.valueOf() > b.valueOf() ? -1 : 1; return aDate > bDate ? -1 : 1;
}); });
if (options.count) if (options.count) { repos.splice(options.count); }
repos.splice(options.count); render(options.target, repos);
render(options.target, repos)
}
};
feed.open("GET","http://github.com/api/v2/json/repos/show/"+options.user+"?callback=?");
feed.send();
} }
}; };
feed.open("GET","http://github.com/api/v2/json/repos/show/"+options.user+"?callback=?");
feed.send();
}
};
})(); })();

View File

@ -6,7 +6,7 @@ function getNav() {
mobileNav.children('select').append('<option value="'+link.href+'">&bull; '+link.text+'</option>'); mobileNav.children('select').append('<option value="'+link.href+'">&bull; '+link.text+'</option>');
}); });
mobileNav.children('select').bind('change', function(event) { mobileNav.children('select').bind('change', function(event) {
if (event.target.value) window.location.href = event.target.value; if (event.target.value) { window.location.href = event.target.value; }
}); });
} }
@ -52,13 +52,13 @@ function testFeatures() {
} }
function addCodeLineNumbers() { function addCodeLineNumbers() {
if (navigator.appName == 'Microsoft Internet Explorer') { return; } if (navigator.appName === 'Microsoft Internet Explorer') { return; }
$('div.gist-highlight').each(function(code) { $('div.gist-highlight').each(function(code) {
var tableStart = '<table><tbody><tr><td class="gutter">', var tableStart = '<table><tbody><tr><td class="gutter">',
lineNumbers = '<pre class="line-numbers">', lineNumbers = '<pre class="line-numbers">',
tableMiddle = '</pre></td><td class="code">', tableMiddle = '</pre></td><td class="code">',
tableEnd = '</td></tr></tbody></table>', tableEnd = '</td></tr></tbody></table>',
count = $('span.line', code).length; count = $('.line', code).length;
for (var i=1;i<=count; i++) { for (var i=1;i<=count; i++) {
lineNumbers += '<span class="line-number">'+i+'</span>\n'; lineNumbers += '<span class="line-number">'+i+'</span>\n';
} }
@ -72,7 +72,7 @@ function flashVideoFallback(){
flashplayerskin = "/assets/jwplayer/glow/glow.xml"; flashplayerskin = "/assets/jwplayer/glow/glow.xml";
$('video').each(function(video){ $('video').each(function(video){
video = $(video); video = $(video);
if (!Modernizr.video.h264 && swfobject.getFlashPlayerVersion() || window.location.hash.indexOf("flash-test") != -1){ if (!Modernizr.video.h264 && swfobject.getFlashPlayerVersion() || window.location.hash.indexOf("flash-test") !== -1){
video.children('source[src$=mp4]').first().map(function(source){ video.children('source[src$=mp4]').first().map(function(source){
var src = $(source).attr('src'), var src = $(source).attr('src'),
id = 'video_'+Math.round(1 + Math.random()*(100000)), id = 'video_'+Math.round(1 + Math.random()*(100000)),