Changeset 7970
- Timestamp:
- 10/19/07 00:52:55 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/lib/action_view/helpers/asset_tag_helper.rb
r7617 r7970 327 327 compute_public_path(source, 'images') 328 328 end 329 alias_method :path_to_image, :image_path # aliased to avoid conflicts with an image_path named route 329 330 330 331 # Returns an html image tag for the +source+. The +source+ can be a full … … 357 358 options.symbolize_keys! 358 359 359 options[:src] = image_path(source)360 options[:src] = path_to_image(source) 360 361 options[:alt] ||= File.basename(options[:src], '.*').split('.').first.capitalize 361 362 trunk/actionpack/lib/action_view/helpers/form_tag_helper.rb
r7668 r7970 362 362 # # => <input class="agree-disagree-button" disabled="disabled" src="/images/agree.png" type="image" /> 363 363 def image_submit_tag(source, options = {}) 364 tag :input, { "type" => "image", "src" => image_path(source) }.update(options.stringify_keys)364 tag :input, { "type" => "image", "src" => path_to_image(source) }.update(options.stringify_keys) 365 365 end 366 366 trunk/actionpack/test/template/asset_tag_helper_test.rb
r7617 r7970 159 159 end 160 160 161 def test_path_to_image_alias_for_image_path 162 ImagePathToTag.each { |method, tag| assert_dom_equal(tag, eval(method)) } 163 end 164 161 165 def test_image_tag 162 166 ImageLinkToTag.each { |method, tag| assert_dom_equal(tag, eval(method)) }