]> source.dussan.org Git - redmine.git/commitdiff
Prevent unwanted textile link parsing at end of line.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 16 Jun 2008 19:37:09 +0000 (19:37 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 16 Jun 2008 19:37:09 +0000 (19:37 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1557 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redcloth.rb
test/unit/helpers/application_helper_test.rb

index 42eddd8e04f5d8fd07d32a9d8a500b3999969bf2..59d02fbab3d53adedc41698485353d15ccc8b4c7 100644 (file)
@@ -786,7 +786,7 @@ class RedCloth < String
             \s?
             (?:\(([^)]+?)\)(?="))?     # $title
             ":
-            (\S+?)                     # $url
+            ([\w\/]\S+?)               # $url
             (\/)?                      # $slash
             ([^\w\/;]*?)               # $post
             (?=<|\s|$)
index 7fa96d7e276b1c2bde26748d27754f1ae0384947..c6afdda0e401ddf48112636918177688876a66e8 100644 (file)
@@ -59,6 +59,7 @@ class ApplicationHelperTest < HelperTestCase
       'This is a "link":http://foo.bar' => 'This is a <a href="http://foo.bar" class="external">link</a>',
       'This is an intern "link":/foo/bar' => 'This is an intern <a href="/foo/bar">link</a>',
       '"link (Link title)":http://foo.bar' => '<a href="http://foo.bar" title="Link title" class="external">link</a>',
+      "This is not a \"Link\":\n\nAnother paragraph" => "This is not a \"Link\":</p>\n\n\n\t<p>Another paragraph",
       # no multiline link text
       "This is a double quote \"on the first line\nand another on a second line\":test" => "This is a double quote \"on the first line<br />\nand another on a second line\":test"
     }