From c15108ce063f6396a6e93a54e973b858d0280d41 Mon Sep 17 00:00:00 2001 From: Chad Krsek Date: Tue, 26 Apr 2011 11:50:08 -0700 Subject: [PATCH] moving check fo scheme-relative URI into is_uri? --- actionpack/lib/action_view/helpers/asset_paths.rb | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/actionpack/lib/action_view/helpers/asset_paths.rb b/actionpack/lib/action_view/helpers/asset_paths.rb index 0429e60cd5e2c..cb6737b94e60d 100644 --- a/actionpack/lib/action_view/helpers/asset_paths.rb +++ b/actionpack/lib/action_view/helpers/asset_paths.rb @@ -18,7 +18,7 @@ def initialize(config, controller) # asset host, if configured, with the correct request protocol. def compute_public_path(source, dir, ext = nil, include_host = true) source = source.to_s - return source if is_uri?(source) || is_scheme_relative_uri?(source) + return source if is_uri?(source) source = rewrite_extension(source, dir, ext) if ext source = "/#{dir}/#{source}" unless source[0] == ?/ @@ -33,14 +33,7 @@ def compute_public_path(source, dir, ext = nil, include_host = true) end def is_uri?(path) - path =~ %r{^[-a-z]+://|^cid:} - end - - # A URI relative to a base URI's scheme? - # See http://labs.apache.org/webarch/uri/rfc/rfc3986.html#relative-normal - # "//g" => "http://g" - def is_scheme_relative_uri?(path) - path =~ %r{^//} + path =~ %r{^[-a-z]+://|^cid:|^//} end private