summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-03-09 21:56:53 +0100
committerhukl <contact@smyck.org>2009-03-09 21:56:53 +0100
commit1ff4ece064039fce78953807583c5b5a1f1022f5 (patch)
treeb5fe2e7077ef0d91e6072f17f61ad5e9e47e0dbb /app
parent55bc7e53f260bda99fd007d3422b264e1f4f6124 (diff)
only render pages if their published_at date is either nil or set to a time < Time.now. The render_page method will render a 404 otherwise.
Diffstat (limited to 'app')
-rw-r--r--app/controllers/content_controller.rb3
-rw-r--r--app/models/page.rb4
2 files changed, 6 insertions, 1 deletions
diff --git a/app/controllers/content_controller.rb b/app/controllers/content_controller.rb
index 706cfcd..d548a34 100644
--- a/app/controllers/content_controller.rb
+++ b/app/controllers/content_controller.rb
@@ -10,7 +10,7 @@ class ContentController < ApplicationController
10 10
11 @page = Node.find_page(path) 11 @page = Node.find_page(path)
12 12
13 if @page 13 if @page and @page.public?
14 template = @page.valid_template 14 template = @page.valid_template
15 15
16 render( 16 render(
@@ -25,4 +25,5 @@ class ContentController < ApplicationController
25 end 25 end
26 26
27 end 27 end
28
28end 29end
diff --git a/app/models/page.rb b/app/models/page.rb
index ae2f998..af820e3 100644
--- a/app/models/page.rb
+++ b/app/models/page.rb
@@ -109,6 +109,10 @@ class Page < ActiveRecord::Base
109 I18n.locale = locale_before 109 I18n.locale = locale_before
110 end 110 end
111 111
112 def public?
113 published_at.nil? ? true : published_at < Time.now
114 end
115
112 private 116 private
113 117
114 def rewrite_links_in_body 118 def rewrite_links_in_body