From 24c5fedcbca655b0d2c32ccba7a63357daab7d05 Mon Sep 17 00:00:00 2001 From: B Mathis Date: Sat, 7 Nov 2009 12:05:10 -0600 Subject: [PATCH] udpated thirdparty integration, it is now conditionally added, updated readme --- README.markdown | 12 +++-- Rakefile | 7 +-- source/_layouts/default.haml | 93 +++++++++++++++++++++-------------- source/index.haml | 9 ++-- source/javascripts/twitter.js | 10 ++-- 5 files changed, 77 insertions(+), 54 deletions(-) diff --git a/README.markdown b/README.markdown index 782fcd7..82cb377 100644 --- a/README.markdown +++ b/README.markdown @@ -51,11 +51,12 @@ Kills the local web server process. ## Third Party Integration ### Twitter -To configure your twitter feed, edit twitter.js where you can set: +Twitter settings are at the top of _layouts/default.haml +You can also change: -- Account for the feed -- Number of tweets to show -- Show Mentions (true/false) + twitter_user: your_twitter_name + show_replies: false + tweet_count: 3 ### Disqus Comments Octopress has built in support for the Disqus commenting system, using the "universal code" installation method. First register your site at [http://disqus.com/comments/register/](http://disqus.com/comments/register/) Then, to enable Disqus comments on your blog, edit the YAML block at the top of the default layout: @@ -69,6 +70,9 @@ First setup sitesearch for your site at [http://google.com/sitesearch/](http://g ### Google Analytics The analytics tracking scripts are already integrated into Octopress, all you have to do is register your site at [http://google.com/analytics/](http://google.com/analytics/). +### Removing Third party integrations +All third party integration is conditionally included. All you have to do is remove the variable from the layout and you're done. If you like, you can also remove the include blocks from the default layout. + ## Style Configuration ### What you need to know Octopress's stylesheets are written in [SASS](http://sass-lang.com). If you haven't learned SASS, you should. It's the future. Octopress also uses [Compass](http://compass-style.org) which is a framework for SASS and contains a great library of SASS mixins which make it trivial to write complicated CSS. This is also the future. diff --git a/Rakefile b/Rakefile index af65af0..685aeb8 100644 --- a/Rakefile +++ b/Rakefile @@ -20,7 +20,7 @@ end desc "generate website in output directory" task :default => [:generate_site, :generate_style] do - puts ">>> Site Generating Complete! <<<" + puts ">>> Site Generating Complete! <<<\n\n" end desc "list tasks" @@ -48,19 +48,20 @@ end desc "Generate site files only" task :generate_site => [:clean, :generate_style] do - puts ">>> Generating site files <<<" + puts "\n\n>>> Generating site files <<<" system "jekyll" system "mv #{site}/atom.html #{site}/atom.xml" end def rebuild_site(relative) + puts "\n" puts ">>> Change Detected to: #{relative} <<<" IO.popen('rake generate_site'){|io| print(io.readpartial(512)) until io.eof?} puts '>>> Update Complete <<<' end def rebuild_style(relative) - puts ">>> Change Detected to: #{relative} <<<" + puts "\n\n>>> Change Detected to: #{relative} <<<" IO.popen('rake generate_style'){|io| print(io.readpartial(512)) until io.eof?} puts '>>> Update Complete <<<' end diff --git a/source/_layouts/default.haml b/source/_layouts/default.haml index 01d63f2..2c32bc4 100644 --- a/source/_layouts/default.haml +++ b/source/_layouts/default.haml @@ -1,8 +1,15 @@ --- blog_title: My Octopress Blog full_url: +twitter_user: imathis +tweet_count: 4 +show_replies: false + +disqus_short_name: + google_site_search_id: -disqus_short_name: designenthusiast +google_analytics: true + --- !!! 1.1 Transitional @@ -15,19 +22,26 @@ disqus_short_name: designenthusiast %meta(name="keywords" content="#{page.keywords}")/ %link(href="/stylesheets/screen.css" rel="stylesheet" media="screen projection" type="text/css") %link(href="/atom.xml" rel="alternate" title="#{page.blog_title}" type="application/atom+xml") - %script(src="/javascripts/mootools-yui-compressed.js" type="text/javascript") - %script(src="/javascripts/mootools-1.2.4.2-more.js" type="text/javascript") - %script(src="/javascripts/twitter.js" type="text/javascript") - %script(src="http://www.google-analytics.com/ga.js" type="text/javascript") + - if page.respond_to? :twitter_user + :javascript + var twitter_user = "#{page.twitter_user}" + var show_replies = #{page.show_replies}; + var tweet_count = #{page.tweet_count}; + %script(src="/javascripts/mootools-yui-compressed.js" type="text/javascript") + %script(src="/javascripts/mootools-1.2.4.2-more.js" type="text/javascript") + %script(src="/javascripts/twitter.js" type="text/javascript") + - if page.respond_to? :google_analytics + %script(src="http://www.google-analytics.com/ga.js" type="text/javascript") %body #header .page_width %a.title(href="/")=page.blog_title - #search - %form(action="http://www.google.com/cse" id="cse-search-box") - %input(type="hidden" name="cx" value="#{page.google_site_search_id}") - %input(type="hidden" name="ie" value="UTF-8") - %input#q(type="text" name="q") + - if page.respond_to? :google_site_search_id + #search + %form(action="http://www.google.com/cse" id="cse-search-box") + %input(type="hidden" name="cx" value="#{page.google_site_search_id}") + %input(type="hidden" name="ie" value="UTF-8") + %input#q(type="text" name="q") #nav .page_width %ul @@ -46,38 +60,43 @@ disqus_short_name: designenthusiast %p.pubdate Published: =page.date.strftime("%d %b, %Y") - #disqus_thread - :javascript - var disqus_developer = true; - var disqus_url = "#{page.full_url}/#{page.url}"; - %noscript - %a(href="http://designenthusiast.disqus.com/?url=ref") View the discussion thread - %script(type="text/javascript" src="http://disqus.com/forums/#{page.disqus_short_name}/embed.js") + - if page.respond_to? :disqus_short_name + #disqus_thread + :javascript + var disqus_developer = true; + var disqus_url = "#{page.full_url}/#{page.url}"; + %noscript + %a(href="http://designenthusiast.disqus.com/?url=ref") View the discussion thread + %script(type="text/javascript" src="http://disqus.com/forums/#{page.disqus_short_name}/embed.js") - else = content #sidebar - #twitter - #twitter_status - Status updating... + - if page.respond_to? :twitter_user + %h4 @#{page.twitter_user} + #twitter + #twitter_status + Status updating... #footer .page_width = "Copyright © #{Time.now.strftime('%Y')} - #{page.blog_title} | " %span.credit Powered by Octopress - //Disqus Commens code - :javascript - /*(function() { - var links = document.getElementsByTagName('a'); - var query = '?'; - for(var i = 0; i < links.length; i++) { - if(links[i].href.indexOf('#disqus_thread') >= 0) { - query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&'; + - if page.respond_to? :disqus_short_name + //Disqus Commens code + :javascript + (function() { + var links = document.getElementsByTagName('a'); + var query = '?'; + for(var i = 0; i < links.length; i++) { + if(links[i].href.indexOf('#disqus_thread') >= 0) { + query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&'; + } } - } - document.write('