Sha256: 07897579ed1ca20d3d7b896d980355693753db4554686d961366894a755203ff

Contents?: true

Size: 577 Bytes

Versions: 4

Compression:

Stored size: 577 Bytes

Contents

class FileNotFoundPage < Page
  
  description %{
    A "File Not Found" page can be used to override the default error
    page in the event that a page is not found among a page's children.
    
    To create a "File Not Found" error page for an entire Web site, create
    a page that is a child of the root page and assign it "File Not Found"
    page type.
  }
  
  tag "attempted_url" do
    request.request_uri unless request.nil?
  end
   
  def virtual?
    true
  end
   
  def headers
    { 'Status' => '404 Not Found' }
  end
   
  def cache?
    false
  end
  
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
radiant-0.6.0 app/models/file_not_found_page.rb
radiant-0.6.1 app/models/file_not_found_page.rb
radiant-0.6.2 app/models/file_not_found_page.rb
radiant-0.6.3 app/models/file_not_found_page.rb