summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2021-10-20 22:18:49 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2021-10-20 22:18:49 +0000
commit7125fd70cebea60b4e692c33b37bd0ea71c6ffbf (patch)
treed0970cfae92c0f6f6a023bc1729c3cb5f41002ff /lib
parenta256addaf79a6bc8edb77874145c21a312a2b8e3 (diff)
downloadredmine-7125fd70cebea60b4e692c33b37bd0ea71c6ffbf.tar.gz
redmine-7125fd70cebea60b4e692c33b37bd0ea71c6ffbf.zip
Split multiple classes and modules that existed in the same file (#29914, #32938).
Patch by Mizuki ISHIKAWA. git-svn-id: http://svn.redmine.org/redmine/trunk@21252 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine.rb2
-rw-r--r--lib/redmine/wiki_formatting.rb83
-rw-r--r--lib/redmine/wiki_formatting/links_helper.rb107
3 files changed, 109 insertions, 83 deletions
diff --git a/lib/redmine.rb b/lib/redmine.rb
index 5721667d8..b018779a7 100644
--- a/lib/redmine.rb
+++ b/lib/redmine.rb
@@ -58,8 +58,10 @@ require 'redmine/thumbnail'
require 'redmine/unified_diff'
require 'redmine/utils'
require 'redmine/version'
+require 'redmine/wiki_formatting/links_helper'
require 'redmine/wiki_formatting'
+
require 'redmine/default_data/loader'
require 'redmine/helpers/calendar'
require 'redmine/helpers/diff'
diff --git a/lib/redmine/wiki_formatting.rb b/lib/redmine/wiki_formatting.rb
index 99058462b..471082edc 100644
--- a/lib/redmine/wiki_formatting.rb
+++ b/lib/redmine/wiki_formatting.rb
@@ -115,89 +115,6 @@ module Redmine
end
end
- module LinksHelper
- AUTO_LINK_RE = %r{
- ( # leading text
- <\w+[^>]*?>| # leading HTML tag, or
- [\s\(\[,;]| # leading punctuation, or
- ^ # beginning of line
- )
- (
- (?:https?://)| # protocol spec, or
- (?:s?ftps?://)|
- (?:www\.) # www.*
- )
- (
- ([^<]\S*?) # url
- (\/)? # slash
- )
- ((?:&gt;)?|[^[:alnum:]_\=\/;\(\)\-]*?) # post
- (?=<|\s|$)
- }x unless const_defined?(:AUTO_LINK_RE)
-
- # Destructively replaces urls into clickable links
- def auto_link!(text)
- text.gsub!(AUTO_LINK_RE) do
- all, leading, proto, url, post = $&, $1, $2, $3, $6
- if /<a\s/i.match?(leading) || /![<>=]?/.match?(leading)
- # don't replace URLs that are already linked
- # and URLs prefixed with ! !> !< != (textile images)
- all
- else
- # Idea below : an URL with unbalanced parenthesis and
- # ending by ')' is put into external parenthesis
- if url[-1] == ")" and ((url.count("(") - url.count(")")) < 0)
- url = url[0..-2] # discard closing parenthesis from url
- post = ")" + post # add closing parenthesis to post
- end
- content = proto + url
- href = "#{proto=="www."?"http://www.":proto}#{url}"
- %(#{leading}<a class="external" href="#{ERB::Util.html_escape href}">#{ERB::Util.html_escape content}</a>#{post}).html_safe
- end
- end
- end
-
- # Destructively replaces email addresses into clickable links
- def auto_mailto!(text)
- text.gsub!(/([\w\.!#\$%\-+.\/]+@[A-Za-z0-9\-]+(\.[A-Za-z0-9\-]+)+)/) do
- mail = $1
- if /<a\b[^>]*>(.*)(#{Regexp.escape(mail)})(.*)<\/a>/.match?(text)
- mail
- else
- %(<a class="email" href="mailto:#{ERB::Util.html_escape mail}">#{ERB::Util.html_escape mail}</a>).html_safe
- end
- end
- end
-
- def restore_redmine_links(html)
- # restore wiki links eg. [[Foo]]
- html.gsub!(%r{\[<a href="(.*?)">(.*?)</a>\]}) do
- "[[#{$2}]]"
- end
- # restore Redmine links with double-quotes, eg. version:"1.0"
- html.gsub!(/(\w):&quot;(.+?)&quot;/) do
- "#{$1}:\"#{$2}\""
- end
- # restore user links with @ in login name eg. [@jsmith@somenet.foo]
- html.gsub!(%r{[@\A]<a(\sclass="email")? href="mailto:(.*?)">(.*?)</a>}) do
- "@#{$2}"
- end
- # restore user links with @ in login name eg. [user:jsmith@somenet.foo]
- html.gsub!(%r{\buser:<a(\sclass="email")? href="mailto:(.*?)">(.*?)<\/a>}) do
- "user:#{$2}"
- end
- # restore attachments links with @ in file name eg. [attachment:image@2x.png]
- html.gsub!(%r{\battachment:<a(\sclass="email")? href="mailto:(.*?)">(.*?)</a>}) do
- "attachment:#{$2}"
- end
- # restore hires images which are misrecognized as email address eg. [printscreen@2x.png]
- html.gsub!(%r{<a(\sclass="email")? href="mailto:[^"]+@\dx\.(bmp|gif|jpg|jpe|jpeg|png)">(.*?)</a>}) do
- "#{$3}"
- end
- html
- end
- end
-
# Default formatter module
module NullFormatter
class Formatter
diff --git a/lib/redmine/wiki_formatting/links_helper.rb b/lib/redmine/wiki_formatting/links_helper.rb
new file mode 100644
index 000000000..2e057df3e
--- /dev/null
+++ b/lib/redmine/wiki_formatting/links_helper.rb
@@ -0,0 +1,107 @@
+# frozen_string_literal: true
+
+# Redmine - project management software
+# Copyright (C) 2006-2021 Jean-Philippe Lang
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+require 'loofah/helpers'
+
+module Redmine
+ module WikiFormatting
+ module LinksHelper
+ AUTO_LINK_RE = %r{
+ ( # leading text
+ <\w+[^>]*?>| # leading HTML tag, or
+ [\s\(\[,;]| # leading punctuation, or
+ ^ # beginning of line
+ )
+ (
+ (?:https?://)| # protocol spec, or
+ (?:s?ftps?://)|
+ (?:www\.) # www.*
+ )
+ (
+ ([^<]\S*?) # url
+ (\/)? # slash
+ )
+ ((?:&gt;)?|[^[:alnum:]_\=\/;\(\)\-]*?) # post
+ (?=<|\s|$)
+ }x unless const_defined?(:AUTO_LINK_RE)
+
+ # Destructively replaces urls into clickable links
+ def auto_link!(text)
+ text.gsub!(AUTO_LINK_RE) do
+ all, leading, proto, url, post = $&, $1, $2, $3, $6
+ if /<a\s/i.match?(leading) || /![<>=]?/.match?(leading)
+ # don't replace URLs that are already linked
+ # and URLs prefixed with ! !> !< != (textile images)
+ all
+ else
+ # Idea below : an URL with unbalanced parenthesis and
+ # ending by ')' is put into external parenthesis
+ if url[-1] == ")" and ((url.count("(") - url.count(")")) < 0)
+ url = url[0..-2] # discard closing parenthesis from url
+ post = ")" + post # add closing parenthesis to post
+ end
+ content = proto + url
+ href = "#{proto=="www."?"http://www.":proto}#{url}"
+ %(#{leading}<a class="external" href="#{ERB::Util.html_escape href}">#{ERB::Util.html_escape content}</a>#{post}).html_safe
+ end
+ end
+ end
+
+ # Destructively replaces email addresses into clickable links
+ def auto_mailto!(text)
+ text.gsub!(/([\w\.!#\$%\-+.\/]+@[A-Za-z0-9\-]+(\.[A-Za-z0-9\-]+)+)/) do
+ mail = $1
+ if /<a\b[^>]*>(.*)(#{Regexp.escape(mail)})(.*)<\/a>/.match?(text)
+ mail
+ else
+ %(<a class="email" href="mailto:#{ERB::Util.html_escape mail}">#{ERB::Util.html_escape mail}</a>).html_safe
+ end
+ end
+ end
+
+ def restore_redmine_links(html)
+ # restore wiki links eg. [[Foo]]
+ html.gsub!(%r{\[<a href="(.*?)">(.*?)</a>\]}) do
+ "[[#{$2}]]"
+ end
+ # restore Redmine links with double-quotes, eg. version:"1.0"
+ html.gsub!(/(\w):&quot;(.+?)&quot;/) do
+ "#{$1}:\"#{$2}\""
+ end
+ # restore user links with @ in login name eg. [@jsmith@somenet.foo]
+ html.gsub!(%r{[@\A]<a(\sclass="email")? href="mailto:(.*?)">(.*?)</a>}) do
+ "@#{$2}"
+ end
+ # restore user links with @ in login name eg. [user:jsmith@somenet.foo]
+ html.gsub!(%r{\buser:<a(\sclass="email")? href="mailto:(.*?)">(.*?)<\/a>}) do
+ "user:#{$2}"
+ end
+ # restore attachments links with @ in file name eg. [attachment:image@2x.png]
+ html.gsub!(%r{\battachment:<a(\sclass="email")? href="mailto:(.*?)">(.*?)</a>}) do
+ "attachment:#{$2}"
+ end
+ # restore hires images which are misrecognized as email address eg. [printscreen@2x.png]
+ html.gsub!(%r{<a(\sclass="email")? href="mailto:[^"]+@\dx\.(bmp|gif|jpg|jpe|jpeg|png)">(.*?)</a>}) do
+ "#{$3}"
+ end
+ html
+ end
+ end
+ end
+end