Commit d6429640 authored by Jean-Baptiste Barth's avatar Jean-Baptiste Barth

Fixed: auto links ending with right angle bracket shouldn't include the bracket in the URL. #5652

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4287 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 7824eca7
......@@ -121,7 +121,7 @@ module Redmine
(\S+?) # url
(\/)? # slash
)
([^\w\=\/;\(\)]*?) # post
((?:>)?|[^\w\=\/;\(\)]*?) # post
(?=<|\s|$)
}x unless const_defined?(:AUTO_LINK_RE)
......
......@@ -79,6 +79,8 @@ class ApplicationHelperTest < ActionView::TestCase
'http://example.net/path!602815048C7B5C20!302.html' => '<a class="external" href="http://example.net/path!602815048C7B5C20!302.html">http://example.net/path!602815048C7B5C20!302.html</a>',
# escaping
'http://foo"bar' => '<a class="external" href="http://foo&quot;bar">http://foo"bar</a>',
# wrap in angle brackets
'<http://foo.bar>' => '&lt;<a class="external" href="http://foo.bar">http://foo.bar</a>&gt;'
}
to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text) }
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment