Actions
Maintenance #1964
closedxmera Omnia - Collection #1826: Maintenance tasks of several components
Maintenance #1739: Support Redmine 5.1.1
Check if field_format changes will have impact on plugins
Start date:
Due date:
% Done:
100%
Estimated time:
Compatible Redmine Version:
Pull Request Link:
Description
Affected plugins:
diff --git a/lib/redmine/field_format.rb b/lib/redmine/field_format.rb
index cc358ec03..a27311141 100644
--- a/lib/redmine/field_format.rb
+++ b/lib/redmine/field_format.rb
@@ -255,15 +255,18 @@ module Redmine
[text, url]
end
links = texts_and_urls.sort_by(&:first).map do |text, url|
- css_class = (/^https?:\/\//.match?(url)) ? 'external' : nil
- view.link_to_if uri_with_safe_scheme?(url), text, url, :class => css_class
+ view.link_to text, url
end
- links.join(', ').html_safe
+ sanitize_html links.join(', ')
else
casted
end
end
+ def sanitize_html(html)
+ Redmine::WikiFormatting::HtmlSanitizer.call(html).html_safe
+ end
+
# Returns an URL generated with the custom field URL pattern
# and variables substitution:
# %value% => the custom field value
@@ -463,8 +466,7 @@ module Redmine
url = "http://" + url
end
end
- css_class = (/^https?:\/\//.match?(url)) ? 'external' : nil
- view.link_to value.to_s.truncate(40), url, :class => css_class
+ sanitize_html view.link_to(value.to_s.truncate(40), url)
else
value.to_s
end
@@ -866,7 +868,7 @@ module Redmine
def possible_values_records(custom_field, object=nil)
if object.is_a?(Array)
- projects = object.map {|o| o.respond_to?(:project) ? o.project : nil}.compact.uniq
+ projects = object.filter_map {|o| o.respond_to?(:project) ? o.project : nil}.uniq
projects.map {|project| possible_values_records(custom_field, project)}.reduce(:&) || []
elsif object.respond_to?(:project) && object.project
scope = object.project.users
@@ -932,7 +934,7 @@ module Redmine
def possible_values_records(custom_field, object=nil, all_statuses=false)
if object.is_a?(Array)
- projects = object.map {|o| o.respond_to?(:project) ? o.project : nil}.compact.uniq
+ projects = object.filter_map {|o| o.respond_to?(:project) ? o.project : nil}.uniq
projects.map {|project| possible_values_records(custom_field, project)}.reduce(:&) || []
elsif object.respond_to?(:project) && object.project
scope = object.project.shared_versions
@@ -971,7 +973,7 @@ module Redmine
attachment_present = true
value = value.except(:blank)
- if value.values.any? && value.values.all? {|v| v.is_a?(Hash)}
+ if value.values.any? && value.values.all?(Hash)
value = value.values.first
end
Updated by liaham about 1 year ago
- Status changed from New to Closed
- Assignee set to liaham
- % Done changed from 0 to 100
No impact on Redmine Computable Custom Field.
Actions