diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-04-29 18:45:38 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-04-30 16:35:27 -0400 |
commit | 466bec7caa4708f3d0c671b9fab135ed2c3dcdc1 (patch) | |
tree | 5116390661e33a4295ce83b67ec1d919f75c5f83 /lib | |
parent | cd3c24a8f3441c249fb73b0a7d7bf412485438de (diff) | |
download | gitlab-ce-466bec7caa4708f3d0c671b9fab135ed2c3dcdc1.tar.gz |
Rename SCHEME_PATTERN to LINK_PATTERN
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/markdown/autolink_filter.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/gitlab/markdown/autolink_filter.rb b/lib/gitlab/markdown/autolink_filter.rb index f0b68bab825..4e14a048cfb 100644 --- a/lib/gitlab/markdown/autolink_filter.rb +++ b/lib/gitlab/markdown/autolink_filter.rb @@ -27,9 +27,9 @@ module Gitlab # in the generated link. # # Rubular: http://rubular.com/r/cxjPyZc7Sb - SCHEME_PATTERN = %r{([a-z][a-z0-9\+\.-]+://\S+)(?<!,|\.)} + LINK_PATTERN = %r{([a-z][a-z0-9\+\.-]+://\S+)(?<!,|\.)} - # Text matching SCHEME_PATTERN inside these elements will not be linked + # Text matching LINK_PATTERN inside these elements will not be linked IGNORE_PARENTS = %w(a code kbd pre script style).to_set def call @@ -62,14 +62,14 @@ module Gitlab @doc = parse_html(rinku) end - # Autolinks any text matching SCHEME_PATTERN that Rinku didn't already + # Autolinks any text matching LINK_PATTERN that Rinku didn't already # replace def text_parse search_text_nodes(doc).each do |node| content = node.to_html next if has_ancestor?(node, IGNORE_PARENTS) - next unless content.match(SCHEME_PATTERN) + next unless content.match(LINK_PATTERN) # If Rinku didn't link this, there's probably a good reason, so we'll # skip it too @@ -86,7 +86,7 @@ module Gitlab end def autolink_filter(text) - text.gsub(SCHEME_PATTERN) do |match| + text.gsub(LINK_PATTERN) do |match| options = link_options.merge(href: match) content_tag(:a, match, options) end |