1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-06 23:51:31 +00:00

Insert a link to the source to the attribution line when quoting a note or a message (#31427).

Patch by Mizuki ISHIKAWA.


git-svn-id: http://svn.redmine.org/redmine/trunk@18217 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2019-06-02 13:29:54 +00:00
parent 748e8725d6
commit 2d475288e4
5 changed files with 27 additions and 4 deletions

View File

@ -66,13 +66,15 @@ class JournalsController < ApplicationController
if @journal
user = @journal.user
text = @journal.notes
indice = @journal.issue.visible_journals_with_index.find{|j| j.id == @journal.id}.indice
@content = +"#{ll(Setting.default_language, :text_user_wrote_in, {:value => user, :link => "#note-#{indice}"})}\n> "
else
user = @issue.author
text = @issue.description
@content = +"#{ll(Setting.default_language, :text_user_wrote, user)}\n> "
end
# Replaces pre blocks with [...]
text = text.to_s.strip.gsub(%r{<pre>(.*?)</pre>}m, '[...]')
@content = +"#{ll(Setting.default_language, :text_user_wrote, user)}\n> "
@content << text.gsub(/(\r?\n|\r\n?)/, "\n> ") + "\n\n"
rescue ActiveRecord::RecordNotFound
render_404

View File

@ -117,7 +117,11 @@ class MessagesController < ApplicationController
@subject = @message.subject
@subject = "RE: #{@subject}" unless @subject.starts_with?('RE:')
@content = +"#{ll(Setting.default_language, :text_user_wrote, @message.author)}\n> "
if @message.root == @message
@content = +"#{ll(Setting.default_language, :text_user_wrote, @message.author)}\n> "
else
@content = +"#{ll(Setting.default_language, :text_user_wrote_in, {:value => @message.author, :link => "message##{@message.id}"})}\n> "
end
@content << @message.content.to_s.strip.gsub(%r{<pre>(.*?)</pre>}m, '[...]').gsub(/(\r?\n|\r\n?)/, "\n> ") + "\n\n"
end

View File

@ -310,7 +310,7 @@ tr.message td.created_on { white-space: nowrap; }
tr.message td.last_message { font-size: 80%; white-space: nowrap; }
tr.message.sticky td.subject { font-weight: bold; }
body.avatars-on #replies .message {padding-left:32px;}
body.avatars-on #replies .message.reply {padding-left: 32px;}
#replies .reply:target h4 {background-color:#DDEEFF;}
#replies h4 img.gravatar {margin-left:-32px;}

View File

@ -185,6 +185,7 @@ class JournalsControllerTest < Redmine::ControllerTest
:xhr => true
assert_response :success
assert_equal 'text/javascript', response.content_type
assert_include 'Redmine Admin wrote in #note-1:', response.body
assert_include '> A comment with a private version', response.body
end

View File

@ -257,7 +257,22 @@ class MessagesControllerTest < Redmine::ControllerTest
assert_nil Message.find_by_id(2)
end
def test_quote
def test_quote_if_message_is_root
@request.session[:user_id] = 2
get :quote, :params => {
:board_id => 1,
:id => 1
},
:xhr => true
assert_response :success
assert_equal 'text/javascript', response.content_type
assert_include 'RE: First post', response.body
assert_include "Redmine Admin wrote:", response.body
assert_include '> This is the very first post\n> in the forum', response.body
end
def test_quote_if_message_is_not_root
@request.session[:user_id] = 2
get :quote, :params => {
:board_id => 1,
@ -268,6 +283,7 @@ class MessagesControllerTest < Redmine::ControllerTest
assert_equal 'text/javascript', response.content_type
assert_include 'RE: First post', response.body
assert_include 'John Smith wrote in message#3:', response.body
assert_include '> An other reply', response.body
end