aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-07-19 09:06:54 -0400
committerBrandon Mathis <brandon@imathis.com>2011-07-19 09:06:54 -0400
commit17c59fb1d1bf3e0c05137af4b4bd09ae271a2d31 (patch)
treea4b3b5d43173f9b02ec4b6401cb6e14f6e716a35
parent873a604e144c53cfc5465a790e43db5b7ebb429e (diff)
downloadmy_new_personal_website-17c59fb1d1bf3e0c05137af4b4bd09ae271a2d31.tar.xz
my_new_personal_website-17c59fb1d1bf3e0c05137af4b4bd09ae271a2d31.zip
Moved plugins to root directory. I'm ditching the idea of shipping plugins with themes until it's more obviously necessary. This way it's easier to merge and update plugins.
Diffstat (limited to '')
-rw-r--r--Rakefile8
-rw-r--r--plugins/blockquote.rb (renamed from .themes/classic/plugins/blockquote.rb)0
-rw-r--r--plugins/category_generator.rb (renamed from .themes/classic/plugins/category_generator.rb)0
-rw-r--r--plugins/code_block.rb (renamed from .themes/classic/plugins/code_block.rb)0
-rw-r--r--plugins/compass_compiler.rb (renamed from .themes/classic/plugins/compass_compiler.rb)0
-rw-r--r--plugins/custom_filters.rb (renamed from .themes/classic/plugins/custom_filters.rb)0
-rw-r--r--plugins/figure_tag.rb (renamed from .themes/classic/plugins/figure_tag.rb)0
-rw-r--r--plugins/gist_tag.rb (renamed from .themes/classic/plugins/gist_tag.rb)0
-rw-r--r--plugins/haml.rb (renamed from .themes/classic/plugins/haml.rb)0
-rw-r--r--plugins/include_code.rb (renamed from .themes/classic/plugins/include_code.rb)0
-rw-r--r--plugins/pullquote.rb (renamed from .themes/classic/plugins/pullquote.rb)0
-rw-r--r--plugins/pygments_cache_patch.rb (renamed from .themes/classic/plugins/pygments_cache_patch.rb)0
-rw-r--r--plugins/render_partial.rb (renamed from .themes/classic/plugins/render_partial.rb)0
-rw-r--r--plugins/sitemap_generator.rb (renamed from .themes/classic/plugins/sitemap_generator.rb)0
-rw-r--r--plugins/titlecase.rb (renamed from .themes/classic/plugins/titlecase.rb)0
15 files changed, 3 insertions, 5 deletions
diff --git a/Rakefile b/Rakefile
index 840d71d1..a8c9f6ae 100644
--- a/Rakefile
+++ b/Rakefile
@@ -21,17 +21,15 @@ themes_dir = ".themes" # directory for blog files
post_format = "markdown" # file format for new posts when using the post rake task
-desc "Initial setup for Octopress: copies the default theme into the path of Jekyll's generator. rake install defaults to rake install[classic] to install a different theme run rake install[some_theme_name]"
+desc "Initial setup for Octopress: copies the default theme into the path of Jekyll's generator. Rake install defaults to rake install[classic] to install a different theme run rake install[some_theme_name]"
task :install, :theme do |t, args|
# copy theme into working Jekyll directories
theme = args.theme || 'classic'
- puts "## Copying "+theme+" theme into ./#{source_dir} ./sass and ./plugins "
+ puts "## Copying "+theme+" theme into ./#{source_dir} and ./sass"
mkdir_p source_dir
cp_r "#{themes_dir}/#{theme}/source/.", source_dir
mkdir_p "sass"
cp_r "#{themes_dir}/#{theme}/sass/.", "sass"
- mkdir_p "plugins"
- cp_r "#{themes_dir}/#{theme}/plugins/.", "plugins"
mkdir_p "#{source_dir}/#{posts_dir}"
mkdir_p public_dir
end
@@ -67,7 +65,7 @@ task :post, :filename do |t, args|
post.puts "title: #{args.filename.gsub(/[-_]/, ' ').titlecase}"
post.puts "date: #{Time.now.strftime('%Y-%m-%d %H:%M')}"
post.puts "layout: post"
- post.puts "categories: []"
+ post.puts "categories: "
post.puts "---"
end
end
diff --git a/.themes/classic/plugins/blockquote.rb b/plugins/blockquote.rb
index d292ce8e..d292ce8e 100644
--- a/.themes/classic/plugins/blockquote.rb
+++ b/plugins/blockquote.rb
diff --git a/.themes/classic/plugins/category_generator.rb b/plugins/category_generator.rb
index c2e9a46e..c2e9a46e 100644
--- a/.themes/classic/plugins/category_generator.rb
+++ b/plugins/category_generator.rb
diff --git a/.themes/classic/plugins/code_block.rb b/plugins/code_block.rb
index 00762d8a..00762d8a 100644
--- a/.themes/classic/plugins/code_block.rb
+++ b/plugins/code_block.rb
diff --git a/.themes/classic/plugins/compass_compiler.rb b/plugins/compass_compiler.rb
index dcec746a..dcec746a 100644
--- a/.themes/classic/plugins/compass_compiler.rb
+++ b/plugins/compass_compiler.rb
diff --git a/.themes/classic/plugins/custom_filters.rb b/plugins/custom_filters.rb
index f0db30ee..f0db30ee 100644
--- a/.themes/classic/plugins/custom_filters.rb
+++ b/plugins/custom_filters.rb
diff --git a/.themes/classic/plugins/figure_tag.rb b/plugins/figure_tag.rb
index 550e677f..550e677f 100644
--- a/.themes/classic/plugins/figure_tag.rb
+++ b/plugins/figure_tag.rb
diff --git a/.themes/classic/plugins/gist_tag.rb b/plugins/gist_tag.rb
index 0a8797f8..0a8797f8 100644
--- a/.themes/classic/plugins/gist_tag.rb
+++ b/plugins/gist_tag.rb
diff --git a/.themes/classic/plugins/haml.rb b/plugins/haml.rb
index 7e548dec..7e548dec 100644
--- a/.themes/classic/plugins/haml.rb
+++ b/plugins/haml.rb
diff --git a/.themes/classic/plugins/include_code.rb b/plugins/include_code.rb
index b063f14f..b063f14f 100644
--- a/.themes/classic/plugins/include_code.rb
+++ b/plugins/include_code.rb
diff --git a/.themes/classic/plugins/pullquote.rb b/plugins/pullquote.rb
index ff576fa0..ff576fa0 100644
--- a/.themes/classic/plugins/pullquote.rb
+++ b/plugins/pullquote.rb
diff --git a/.themes/classic/plugins/pygments_cache_patch.rb b/plugins/pygments_cache_patch.rb
index 09c09840..09c09840 100644
--- a/.themes/classic/plugins/pygments_cache_patch.rb
+++ b/plugins/pygments_cache_patch.rb
diff --git a/.themes/classic/plugins/render_partial.rb b/plugins/render_partial.rb
index 96de97ea..96de97ea 100644
--- a/.themes/classic/plugins/render_partial.rb
+++ b/plugins/render_partial.rb
diff --git a/.themes/classic/plugins/sitemap_generator.rb b/plugins/sitemap_generator.rb
index 8b6cf78c..8b6cf78c 100644
--- a/.themes/classic/plugins/sitemap_generator.rb
+++ b/plugins/sitemap_generator.rb
diff --git a/.themes/classic/plugins/titlecase.rb b/plugins/titlecase.rb
index 103bf702..103bf702 100644
--- a/.themes/classic/plugins/titlecase.rb
+++ b/plugins/titlecase.rb