module Wisepdf
module Helper
module Legacy
def wisepdf_stylesheet_tag(*sources)
stylesheets_dir = ::Rails.root.join('public','stylesheets')
sources.collect { |source|
filename = ( source =~ /.css\z/ ? source : source + '.css' )
""
}.join("\n").html_safe
end
def wisepdf_image_tag(img, options={})
image_tag "file:///#{::Rails.root.join('public', 'images', img).pathname.to_s}", options
end
def wisepdf_javascript_tag(*sources)
javascripts_dir = ::Rails.root.join('public','javascripts')
sources.collect { |source|
filename = ( source =~ /.js\z/ ? source : source + '.js' )
""
}.join("\n").html_safe
end
end
module Assets
def wisepdf_stylesheet_tag(*sources)
sources.collect { |source|
filename = ( source =~ /.css\z/ ? source : source + '.css' )
""
}.join("\n").html_safe
end
def wisepdf_image_tag(img, options={})
if File.exists? img
image_tag "file://#{img}", options
elsif asset = ::Rails.application.assets.find_asset(img)
image_tag "file:///#{asset.pathname.to_s}", options
end
end
def wisepdf_javascript_tag(*sources)
sources.collect { |source|
filename = ( source =~ /.js\z/ ? source : source + '.js' )
""
}.join("\n").html_safe
end
end
end
end