aboutsummaryrefslogtreecommitdiff
path: root/plugins/preview_unpublished.rb
diff options
context:
space:
mode:
authorFrederic Hemberger <mail@frederic-hemberger.de>2011-11-23 14:37:30 +0100
committerFrederic Hemberger <mail@frederic-hemberger.de>2011-11-23 14:37:30 +0100
commitf1ebf358693582d310aac2599870c197a5188e8f (patch)
tree3c09cbb4f798edb7d6b459f838cda6ff6f39d21a /plugins/preview_unpublished.rb
parent76af6980d4e4f4ec4d5f910c2f5b79b12087e4d5 (diff)
downloadmy_new_personal_website-f1ebf358693582d310aac2599870c197a5188e8f.tar.xz
my_new_personal_website-f1ebf358693582d310aac2599870c197a5188e8f.zip
Introduce distinction between preview/productive site generation
Posts which contain the YAML attribute `published: false` are usually not generated by Jekyll. With this patch they can be previewed just like published posts on localhost using `rake watch`or `rake preview`. NOTICE: Before pushing to the productive environment, use `rake generate` to update the public directory and remove posts which are flagged not to be published.
Diffstat (limited to '')
-rw-r--r--plugins/preview_unpublished.rb45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugins/preview_unpublished.rb b/plugins/preview_unpublished.rb
new file mode 100644
index 00000000..20b27d6b
--- /dev/null
+++ b/plugins/preview_unpublished.rb
@@ -0,0 +1,45 @@
+# Monkeypatch for Jekyll
+# Introduce distinction between preview/productive site generation
+# so posts with YAML attribute `published: false` can be previewed
+# on localhost without being published to the productive environment.
+
+module Jekyll
+
+ class Site
+ # Read all the files in <source>/<dir>/_posts and create a new Post
+ # object with each one.
+ #
+ # dir - The String relative path of the directory to read.
+ #
+ # Returns nothing.
+ def read_posts(dir)
+ base = File.join(self.source, dir, '_posts')
+ return unless File.exists?(base)
+ entries = Dir.chdir(base) { filter_entries(Dir['**/*']) }
+
+ # first pass processes, but does not yet render post content
+ entries.each do |f|
+ if Post.valid?(f)
+ post = Post.new(self, self.source, dir, f)
+
+ # Monkeypatch:
+ # On preview environment (localhost), publish all posts
+ if ENV.has_key?('OCTOPRESS_ENV') && ENV['OCTOPRESS_ENV'] == 'preview'
+ post.published = true
+ end
+
+ if post.published && (self.future || post.date <= self.time)
+ self.posts << post
+ post.categories.each { |c| self.categories[c] << post }
+ post.tags.each { |c| self.tags[c] << post }
+ end
+ end
+ end
+
+ self.posts.sort!
+
+ # limit the posts if :limit_posts option is set
+ self.posts = self.posts[-limit_posts, limit_posts] if limit_posts
+ end
+ end
+end \ No newline at end of file