module TextileToolbar

Constants

VERSION

Public Instance Methods

textile_area(object_name, method, options={}) click to toggle source
# File lib/textile_toolbar.rb, line 4
def textile_area(object_name, method, options={})
  disable = options.delete(:disable) || {}
  toolbar = textile_toolbar(options[:id] || "#{object_name}_#{method}", disable)
  raw("<div class=\"textile_toolbar\">#{toolbar}</div><div class=\"textile_area\">#{text_area(object_name, method, options)}</div>").html_safe
end
textile_toolbar(id, disable) click to toggle source
# File lib/textile_toolbar.rb, line 10
def textile_toolbar(id, disable)
  html = javascript_include_tag("textile_toolbar")
  html << link_to_function(image_tag("textile_toolbar/bold.png", :size => "23x22", :alt => "Make selection bold"), "surround_selection('#{id}', '*', '*')")
  html << raw("&nbsp;")
  html << link_to_function(image_tag("textile_toolbar/italic.png", :size => "23x22", :alt => "Make selection italic"), "surround_selection('#{id}', '_', '_')")
  html << raw("&nbsp;")
  html << link_to_function(image_tag("textile_toolbar/underline.png", :size => "23x22", :alt => "Make selection underlined"), "surround_selection('#{id}', '+', '+')")
  html << raw("&nbsp;")
  html << link_to_function(image_tag("textile_toolbar/hyperlink.png", :size => "23x22", :alt => "Make hyperlink"), "insert_hyperlink('#{id}')")
  html << raw("&nbsp;")
  unless disable == :image
    html << link_to_function(image_tag("textile_toolbar/image.png", :size => "23x22", :alt => "Insert image"), "insert_image('#{id}')")
    html << raw("&nbsp;")
  end
  html << raw("<small>") << link_to("Textile", "http://hobix.com/textile/", :target => "_blank") << raw(" enabled</small>")
  html.html_safe
end