OSDN Git Service

fixed #9404 Issue and revision textile links in issue notes
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 20 Mar 2007 18:09:14 +0000 (18:09 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 20 Mar 2007 18:09:14 +0000 (18:09 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@353 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/application_helper.rb

index 21f1b02..d1597e8 100644 (file)
@@ -119,12 +119,12 @@ module ApplicationHelper
     # turn issue ids to textile links
     # example:
     #   #52 -> "#52":/issues/show/52
-    text = text.gsub(/#(\d+)([\s\.\(\)\-,:;])/) {|m| "\"##{$1}\":" + url_for(:controller => 'issues', :action => 'show', :id => $1) + $2 }
+    text = text.gsub(/#(\d+)(?=\b)/) {|m| "\"##{$1}\":" + url_for(:controller => 'issues', :action => 'show', :id => $1) }
        
     # turn revision ids to textile links (@project needed)
     # example:
     #   r52 -> "r52":/repositories/revision/6?rev=52 (@project.id is 6)
-    text = text.gsub(/r(\d+)([\s\.\(\)\-,:;])/) {|m| "\"r#{$1}\":" + url_for(:controller => 'repositories', :action => 'revision', :id => @project.id, :rev => $1) + $2 } if @project
+    text = text.gsub(/r(\d+)(?=\b)/) {|m| "\"r#{$1}\":" + url_for(:controller => 'repositories', :action => 'revision', :id => @project.id, :rev => $1) } if @project
    
     # finally textilize text
     text = (Setting.text_formatting == 'textile') && (ActionView::Helpers::TextHelper.method_defined? "textilize") ? auto_link(RedCloth.new(text, [:filter_html]).to_html) : simple_format(auto_link(h(text)))