1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Don't prepend the asset host if the string is already a fully-qualified URL

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2430 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jamis Buck 2005-09-30 19:10:20 +00:00
parent 11de94748e
commit 1e08d11579
3 changed files with 14 additions and 1 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Don't prepend the asset host if the string is already a fully-qualified URL
* Updated to script.aculo.us V1.5.0_rc2 and Prototype to V1.4.0_pre7 [Thomas Fuchs]
* Undo condition change made in [2345] to prevent normal parameters arriving as StringIO.

View file

@ -131,7 +131,8 @@ module ActionView
source = "/#{dir}/#{source}" unless source.first == "/" || source.include?(":")
source = "#{source}.#{ext}" unless source.include?(".")
source = "#{@controller.request.relative_url_root}#{source}" unless %r{^[-a-z]+://} =~ source
ActionController::Base.asset_host + source
source = ActionController::Base.asset_host + source unless source.include?(":")
source
end
end
end

View file

@ -196,4 +196,14 @@ class AssetTagHelperNonVhostTest < Test::Unit::TestCase
assert_nothing_raised { image_tag('') }
end
def test_stylesheet_with_asset_host_already_encoded
ActionController::Base.asset_host = "http://foo.example.com"
result = stylesheet_link_tag("http://bar.example.com/stylesheets/style.css")
assert_dom_equal(
%(<link href="http://bar.example.com/stylesheets/style.css" media="screen" rel="Stylesheet" type="text/css" />),
result)
ensure
ActionController::Base.asset_host = ""
end
end