1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00
middleman--middleman/lib/middleman/core_extensions/routing.rb

62 lines
1.6 KiB
Ruby
Raw Normal View History

2011-07-06 13:46:06 -04:00
module Middleman::CoreExtensions::Routing
class << self
def registered(app)
app.extend ClassMethods
# Normalize the path and add index if we're looking at a directory
app.before do
request.path_info = self.class.path_to_index(request.path)
end
2011-07-06 13:46:06 -04:00
end
alias :included :registered
end
module ClassMethods
def current_layout
@layout
end
def path_to_index(path)
parts = path ? path.split('/') : []
if parts.last.nil? || parts.last.split('.').length == 1
path = File.join(path, settings.index_file)
end
path.gsub(%r{^/}, '')
end
2011-07-06 13:46:06 -04:00
# Takes a block which allows many pages to have the same layout
# with_layout :admin do
# page "/admin/"
# page "/admin/login.html"
# end
def with_layout(layout_name, &block)
old_layout = current_layout
layout(layout_name)
class_eval(&block) if block_given?
ensure
layout(old_layout)
end
# The page method allows the layout to be set on a specific path
# page "/about.html", :layout => false
# page "/", :layout => :homepage_layout
def page(url, options={}, &block)
url = url.gsub(%r{#{settings.index_file}$}, "")
url = url.gsub(%r{(\/)$}, "") if url.length > 1
paths = [url]
paths << "#{url}/" if url.length > 1 && url.split("/").last.split('.').length <= 1
paths << "#{path_to_index(url)}"
2011-07-06 13:46:06 -04:00
options[:layout] = current_layout if options[:layout].nil?
paths.each do |p|
get(p) do
return yield if block_given?
process_request(options)
end
end
end
end
end