mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
removing backwards compatibility module
This commit is contained in:
parent
68ec26c70c
commit
f65b2215cd
3 changed files with 8 additions and 9 deletions
|
@ -45,7 +45,7 @@ module ActionDispatch
|
|||
|
||||
rewritten_url << (options[:trailing_slash] ? path.sub(/\?|\z/) { "/" + $& } : path)
|
||||
rewritten_url << "?#{params.to_query}" unless params.empty?
|
||||
rewritten_url << "##{Rack::Mount::Utils.escape_uri(options[:anchor].to_param.to_s)}" if options[:anchor]
|
||||
rewritten_url << "##{Journey::Router::Utils.escape_uri(options[:anchor].to_param.to_s)}" if options[:anchor]
|
||||
rewritten_url
|
||||
end
|
||||
|
||||
|
|
|
@ -213,8 +213,8 @@ module ActionDispatch
|
|||
end
|
||||
|
||||
def segment_keys
|
||||
@segment_keys ||= Rack::Mount::RegexpWithNamedGroups.new(
|
||||
Rack::Mount::Strexp.compile(@path, requirements, SEPARATORS)
|
||||
@segment_keys ||= Journey::Path::Pattern.new(
|
||||
Journey::Router::Strexp.compile(@path, requirements, SEPARATORS)
|
||||
).names
|
||||
end
|
||||
|
||||
|
@ -235,7 +235,7 @@ module ActionDispatch
|
|||
# (:locale) becomes (/:locale) instead of /(:locale). Except
|
||||
# for root cases, where the latter is the correct one.
|
||||
def self.normalize_path(path)
|
||||
path = Rack::Mount::Utils.normalize_path(path)
|
||||
path = Journey::Router::Utils.normalize_path(path)
|
||||
path.gsub!(%r{/(\(+)/?}, '\1/') unless path =~ %r{^/\(+[^/]+\)$}
|
||||
path
|
||||
end
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
require 'journey/router'
|
||||
require 'journey/backwards'
|
||||
require 'forwardable'
|
||||
require 'active_support/core_ext/object/blank'
|
||||
require 'active_support/core_ext/object/to_query'
|
||||
|
@ -394,10 +393,10 @@ module ActionDispatch
|
|||
if name == :controller
|
||||
value
|
||||
elsif value.is_a?(Array)
|
||||
value.map { |v| Rack::Mount::Utils.escape_uri(v.to_param) }.join('/')
|
||||
value.map { |v| Journey::Router::Utils.escape_uri(v.to_param) }.join('/')
|
||||
else
|
||||
return nil unless param = value.to_param
|
||||
param.split('/').map { |v| Rack::Mount::Utils.escape_uri(v) }.join("/")
|
||||
param.split('/').map { |v| Journey::Router::Utils.escape_uri(v) }.join("/")
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -496,7 +495,7 @@ module ActionDispatch
|
|||
return [path, params.keys] if @extras
|
||||
|
||||
[path, params]
|
||||
rescue Rack::Mount::RoutingError
|
||||
rescue Journey::Router::RoutingError
|
||||
raise_routing_error
|
||||
end
|
||||
|
||||
|
@ -573,7 +572,7 @@ module ActionDispatch
|
|||
|
||||
def recognize_path(path, environment = {})
|
||||
method = (environment[:method] || "GET").to_s.upcase
|
||||
path = Rack::Mount::Utils.normalize_path(path) unless path =~ %r{://}
|
||||
path = Journey::Router::Utils.normalize_path(path) unless path =~ %r{://}
|
||||
|
||||
begin
|
||||
env = Rack::MockRequest.env_for(path, {:method => method})
|
||||
|
|
Loading…
Reference in a new issue