fix malformed time entry report csv encoding in case of unable to convert (#8549)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7820 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
4b5d50e40a
commit
4a3581c748
|
@ -147,7 +147,9 @@ module TimelogHelper
|
||||||
headers = criterias.collect {|criteria| l(@available_criterias[criteria][:label]) }
|
headers = criterias.collect {|criteria| l(@available_criterias[criteria][:label]) }
|
||||||
headers += periods
|
headers += periods
|
||||||
headers << l(:label_total)
|
headers << l(:label_total)
|
||||||
csv << headers.collect {|c| to_utf8(c) }
|
csv << headers.collect {|c| Redmine::CodesetUtil.from_utf8(
|
||||||
|
c.to_s,
|
||||||
|
l(:general_csv_encoding) ) }
|
||||||
# Content
|
# Content
|
||||||
report_criteria_to_csv(csv, criterias, periods, hours)
|
report_criteria_to_csv(csv, criterias, periods, hours)
|
||||||
# Total row
|
# Total row
|
||||||
|
@ -169,7 +171,9 @@ module TimelogHelper
|
||||||
hours_for_value = select_hours(hours, criterias[level], value)
|
hours_for_value = select_hours(hours, criterias[level], value)
|
||||||
next if hours_for_value.empty?
|
next if hours_for_value.empty?
|
||||||
row = [''] * level
|
row = [''] * level
|
||||||
row << to_utf8(format_criteria_value(criterias[level], value))
|
row << Redmine::CodesetUtil.from_utf8(
|
||||||
|
format_criteria_value(criterias[level], value).to_s,
|
||||||
|
l(:general_csv_encoding) )
|
||||||
row += [''] * (criterias.length - level - 1)
|
row += [''] * (criterias.length - level - 1)
|
||||||
total = 0
|
total = 0
|
||||||
periods.each do |period|
|
periods.each do |period|
|
||||||
|
@ -185,9 +189,4 @@ module TimelogHelper
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_utf8(s)
|
|
||||||
@ic ||= Iconv.new(l(:general_csv_encoding), 'UTF-8')
|
|
||||||
begin; @ic.iconv(s.to_s); rescue; s.to_s; end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -188,4 +188,52 @@ class TimeEntryReportsControllerTest < ActionController::TestCase
|
||||||
# Total row
|
# Total row
|
||||||
assert_equal "#{str_big5} #{user.lastname},7.30,7.30", lines[1]
|
assert_equal "#{str_big5} #{user.lastname},7.30,7.30", lines[1]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_csv_cannot_convert_should_be_replaced_big_5
|
||||||
|
Setting.default_language = "zh-TW"
|
||||||
|
str_utf8 = "\xe4\xbb\xa5\xe5\x86\x85"
|
||||||
|
if str_utf8.respond_to?(:force_encoding)
|
||||||
|
str_utf8.force_encoding('UTF-8')
|
||||||
|
end
|
||||||
|
user = User.find_by_id(3)
|
||||||
|
user.firstname = str_utf8
|
||||||
|
user.lastname = "test-lastname"
|
||||||
|
assert user.save
|
||||||
|
comments = "test_replaced"
|
||||||
|
te1 = TimeEntry.create(:spent_on => '2011-11-11',
|
||||||
|
:hours => 7.3,
|
||||||
|
:project => Project.find(1),
|
||||||
|
:user => user,
|
||||||
|
:activity => TimeEntryActivity.find_by_name('Design'),
|
||||||
|
:comments => comments)
|
||||||
|
|
||||||
|
te2 = TimeEntry.find_by_comments(comments)
|
||||||
|
assert_not_nil te2
|
||||||
|
assert_equal 7.3, te2.hours
|
||||||
|
assert_equal 3, te2.user_id
|
||||||
|
|
||||||
|
get :report, :project_id => 1, :columns => 'day',
|
||||||
|
:from => "2011-11-11", :to => "2011-11-11",
|
||||||
|
:criterias => ["member"], :format => "csv"
|
||||||
|
assert_response :success
|
||||||
|
assert_equal 'text/csv', @response.content_type
|
||||||
|
lines = @response.body.chomp.split("\n")
|
||||||
|
# Headers
|
||||||
|
s1 = "\xa6\xa8\xad\xfb,2011-11-11,\xc1`\xadp"
|
||||||
|
if s1.respond_to?(:force_encoding)
|
||||||
|
s1.force_encoding('Big5')
|
||||||
|
end
|
||||||
|
assert_equal s1, lines.first
|
||||||
|
# Total row
|
||||||
|
s2 = ""
|
||||||
|
if s2.respond_to?(:force_encoding)
|
||||||
|
s2 = "\xa5H?"
|
||||||
|
s2.force_encoding('Big5')
|
||||||
|
elsif RUBY_PLATFORM == 'java'
|
||||||
|
s2 = "??"
|
||||||
|
else
|
||||||
|
s2 = "\xa5H???"
|
||||||
|
end
|
||||||
|
assert_equal "#{s2} #{user.lastname},7.30,7.30", lines[1]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue