mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Merge pull request #1655 from mojavelinux/issue-1653
resolves #1653 don't rewrite paths that start with //
This commit is contained in:
commit
30e37293b3
3 changed files with 7 additions and 3 deletions
|
@ -11,6 +11,7 @@ Feature: Alternate between multiple asset hosts
|
|||
Then I should see 'src="https://code.jquery.com/jquery-2.1.3.min.js"'
|
||||
Then I should see content matching %r{http://assets1.example.com/}
|
||||
Then I should not see content matching %r{http://assets1.example.com//}
|
||||
Then I should see content matching %r{'//www.example.com/script.js'}
|
||||
When I go to "/stylesheets/asset_host.css"
|
||||
Then I should see content matching %r{http://assets1.example.com/}
|
||||
Then I should not see content matching %r{http://assets1.example.com//}
|
||||
|
@ -28,6 +29,7 @@ Feature: Alternate between multiple asset hosts
|
|||
Then I should see 'src="https://code.jquery.com/jquery-2.1.3.min.js"'
|
||||
Then I should see content matching %r{http://assets1.example.com/}
|
||||
Then I should not see content matching %r{http://assets1.example.com//}
|
||||
Then I should see content matching %r{'//www.example.com/script.js'}
|
||||
When I go to "/stylesheets/asset_host.css"
|
||||
Then I should see content matching %r{http://assets1.example.com/}
|
||||
Then I should not see content matching %r{http://assets1.example.com//}
|
||||
Then I should not see content matching %r{http://assets1.example.com//}
|
||||
|
|
|
@ -39,4 +39,6 @@
|
|||
<%= image_tag "blank1031.gif" %>
|
||||
<%= image_tag "blank1032.gif" %>
|
||||
<%= image_tag "blank1033.gif" %>
|
||||
<%= image_tag "blank1034.gif" %>
|
||||
<%= image_tag "blank1034.gif" %>
|
||||
|
||||
<script>(function(a,b,c,d){})(window,document,'script','//www.example.com/script.js');</script>
|
||||
|
|
|
@ -333,7 +333,7 @@ module Middleman
|
|||
asset_path = $2
|
||||
|
||||
uri = ::Addressable::URI.parse(asset_path)
|
||||
if uri.relative? && result = yield(asset_path)
|
||||
if uri.relative? && uri.host.nil? && (result = yield(asset_path))
|
||||
"#{opening_character}#{result}"
|
||||
else
|
||||
match
|
||||
|
|
Loading…
Reference in a new issue