2009-08-04 19:40:33 -04:00
|
|
|
def link_to(title, url="#", params={})
|
|
|
|
params.merge!(:href => url)
|
|
|
|
params = params.map { |k,v| %Q{#{k}="#{v}"}}.join(' ')
|
|
|
|
%Q{<a #{params}>#{title}</a>}
|
|
|
|
end
|
|
|
|
|
|
|
|
def page_classes(*additional)
|
2009-08-11 18:39:20 -04:00
|
|
|
path = request.path_info
|
2009-08-11 14:21:49 -04:00
|
|
|
path << "index.html" if path.match(%r{/$})
|
|
|
|
path.gsub!(%r{^/}, '')
|
|
|
|
|
2009-08-04 19:40:33 -04:00
|
|
|
classes = []
|
2009-08-11 14:21:49 -04:00
|
|
|
parts = path.split('.')[0].split('/')
|
2009-08-04 19:40:33 -04:00
|
|
|
parts.each_with_index { |path, i| classes << parts.first(i+1).join('_') }
|
|
|
|
|
|
|
|
classes << "index" if classes.empty?
|
|
|
|
classes += additional unless additional.empty?
|
|
|
|
classes.join(' ')
|
|
|
|
end
|
|
|
|
|
|
|
|
def haml_partial(name, options = {})
|
|
|
|
item_name = name.to_sym
|
|
|
|
counter_name = "#{name}_counter".to_sym
|
|
|
|
if collection = options.delete(:collection)
|
|
|
|
collection.enum_for(:each_with_index).collect do |item,index|
|
|
|
|
haml_partial name, options.merge(:locals => {item_name => item, counter_name => index+1})
|
|
|
|
end.join
|
|
|
|
elsif object = options.delete(:object)
|
|
|
|
haml_partial name, options.merge(:locals => {item_name => object, counter_name => nil})
|
|
|
|
else
|
|
|
|
haml "_#{name}".to_sym, options.merge(:layout => false)
|
2009-08-04 19:32:01 -04:00
|
|
|
end
|
2009-08-04 19:40:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def asset_url(path)
|
|
|
|
path.include?("://") ? path : "/#{path}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def image_tag(path, options={})
|
|
|
|
options[:alt] ||= ""
|
|
|
|
capture_haml do
|
|
|
|
haml_tag :img, options.merge(:src => asset_url(path))
|
2009-08-04 19:34:02 -04:00
|
|
|
end
|
2009-08-04 19:40:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def javascript_include_tag(path, options={})
|
|
|
|
capture_haml do
|
|
|
|
haml_tag :script, options.merge(:src => asset_url(path), :type => "text/javascript")
|
2009-08-04 15:18:05 -04:00
|
|
|
end
|
2009-07-31 12:35:12 -04:00
|
|
|
end
|
2009-08-04 19:40:33 -04:00
|
|
|
|
|
|
|
def stylesheet_link_tag(path, options={})
|
|
|
|
options[:rel] ||= "stylesheet"
|
|
|
|
capture_haml do
|
|
|
|
haml_tag :link, options.merge(:href => asset_url(path), :type => "text/css")
|
|
|
|
end
|
2009-08-09 16:10:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Handle Sass errors
|
|
|
|
def sass_exception_string(e)
|
|
|
|
e_string = "#{e.class}: #{e.message}"
|
|
|
|
|
|
|
|
if e.is_a? Sass::SyntaxError
|
|
|
|
e_string << "\non line #{e.sass_line}"
|
|
|
|
|
|
|
|
if e.sass_filename
|
|
|
|
e_string << " of #{e.sass_filename}"
|
|
|
|
|
|
|
|
if File.exists?(e.sass_filename)
|
|
|
|
e_string << "\n\n"
|
|
|
|
|
|
|
|
min = [e.sass_line - 5, 0].max
|
|
|
|
begin
|
|
|
|
File.read(e.sass_filename).rstrip.split("\n")[
|
|
|
|
min .. e.sass_line + 5
|
|
|
|
].each_with_index do |line, i|
|
|
|
|
e_string << "#{min + i + 1}: #{line}\n"
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
e_string << "Couldn't read sass file: #{e.sass_filename}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
<<END
|
|
|
|
/*
|
|
|
|
#{e_string}
|
|
|
|
|
|
|
|
Backtrace:\n#{e.backtrace.join("\n")}
|
|
|
|
*/
|
|
|
|
body:before {
|
|
|
|
white-space: pre;
|
|
|
|
font-family: monospace;
|
|
|
|
content: "#{e_string.gsub('"', '\"').gsub("\n", '\\A ')}"; }
|
|
|
|
END
|
2009-08-04 19:40:33 -04:00
|
|
|
end
|