summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2020-01-23 23:28:34 +0000
committerGo MAEDA <maeda@farend.jp>2020-01-23 23:28:34 +0000
commit62fe933eed0cd542c978d3e77f5bfbb4d2031950 (patch)
treed38e3ddf0701c8162d85ef6be2158a3489c4e698 /lib
parentba7d4745e2a6489ddd33cdc827a2a095ab97fcb7 (diff)
downloadredmine-62fe933eed0cd542c978d3e77f5bfbb4d2031950.tar.gz
redmine-62fe933eed0cd542c978d3e77f5bfbb4d2031950.zip
Ruby 2.7: Remove deprecated URI.escape/unescape (#32752).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@19455 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/field_format.rb10
-rw-r--r--lib/redmine/scm/adapters/subversion_adapter.rb4
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/redmine/field_format.rb b/lib/redmine/field_format.rb
index d063d1ccf..1df164e0a 100644
--- a/lib/redmine/field_format.rb
+++ b/lib/redmine/field_format.rb
@@ -269,15 +269,15 @@ module Redmine
# %m1%, %m2%... => capture groups matches of the custom field regexp if defined
def url_from_pattern(custom_field, value, customized)
url = custom_field.url_pattern.to_s.dup
- url.gsub!('%value%') {URI.encode value.to_s}
- url.gsub!('%id%') {URI.encode customized.id.to_s}
+ url.gsub!('%value%') {Addressable::URI.encode value.to_s}
+ url.gsub!('%id%') {Addressable::URI.encode customized.id.to_s}
url.gsub!('%project_id%') {
- URI.encode(
+ Addressable::URI.encode(
(customized.respond_to?(:project) ? customized.project.try(:id) : nil).to_s
)
}
url.gsub!('%project_identifier%') {
- URI.encode(
+ Addressable::URI.encode(
(customized.respond_to?(:project) ? customized.project.try(:identifier) : nil).to_s
)
}
@@ -285,7 +285,7 @@ module Redmine
url.gsub!(%r{%m(\d+)%}) do
m = $1.to_i
if matches ||= value.to_s.match(Regexp.new(custom_field.regexp))
- URI.encode matches[m].to_s
+ Addressable::URI.encode matches[m].to_s
end
end
end
diff --git a/lib/redmine/scm/adapters/subversion_adapter.rb b/lib/redmine/scm/adapters/subversion_adapter.rb
index 09b4aacb5..8748641ce 100644
--- a/lib/redmine/scm/adapters/subversion_adapter.rb
+++ b/lib/redmine/scm/adapters/subversion_adapter.rb
@@ -108,7 +108,7 @@ module Redmine
next if entry['kind'] == 'dir' && commit_date.nil?
name = entry['name']['__content__']
- entries << Entry.new({:name => URI.unescape(name),
+ entries << Entry.new({:name => CGI.unescape(name),
:path => ((path.empty? ? "" : "#{path}/") + name),
:kind => entry['kind'],
:size => ((s = entry['size']) ? s['__content__'].to_i : nil),
@@ -289,7 +289,7 @@ module Redmine
def target(path = '')
base = /^\//.match?(path) ? root_url : url
uri = "#{base}/#{path}"
- uri = URI.escape(URI.escape(uri), '[]')
+ uri = Addressable::URI.encode(uri)
shell_quote(uri.gsub(/[?<>\*]/, ''))
end
end