mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
33 lines
No EOL
895 B
Ruby
33 lines
No EOL
895 B
Ruby
module Middleman
|
|
module Assets
|
|
@@asset_handler_map = []
|
|
@@asset_handler_stack = []
|
|
|
|
def self.register(handler_name, &block)
|
|
if block_given?
|
|
@@asset_handler_stack << block
|
|
@@asset_handler_map << handler_name
|
|
end
|
|
end
|
|
|
|
def self.get_url(path, prefix="", request=nil)
|
|
@@asset_handler_stack.last.call(path, prefix, request)
|
|
end
|
|
|
|
def self.before(position, *args)
|
|
current_index = @@asset_handler_map.index(position)
|
|
return nil unless current_index
|
|
|
|
previous = current_index - 1
|
|
if (previous >= 0) && (previous < @@asset_handler_map.length)
|
|
@@asset_handler_stack[previous].call(*args)
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
Middleman::Assets.register :base do |path, prefix, request|
|
|
path.include?("://") ? path : File.join(Middleman::Base.http_prefix || "/", prefix, path)
|
|
end |