Description:
fix utf8 for java
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r462:c960ef68f0b1 - - 2 files changed: 3 inserted, 1 deleted
@@ -60,13 +60,14 | |||
|
60 | 60 | |
|
61 | 61 | @submission = Submission.new |
|
62 | 62 | @submission.problem_id = params[:submission][:problem_id] |
|
63 | 63 | @submission.user = user |
|
64 | 64 | @submission.language_id = 0 |
|
65 | 65 | if (params['file']) and (params['file']!='') |
|
66 | - @submission.source = params['file'].read | |
|
66 | + @submission.source = File.open(params['file'].path,'r:UTF-8',&:read) | |
|
67 | + @submission.source.encode!('UTF-8','UTF-8',invalid: :replace, replace: '') | |
|
67 | 68 | @submission.source_filename = params['file'].original_filename |
|
68 | 69 | end |
|
69 | 70 | @submission.submitted_at = Time.new.gmtime |
|
70 | 71 | @submission.ip_address = request.remote_ip |
|
71 | 72 | |
|
72 | 73 | if GraderConfiguration.time_limit_mode? and user.contest_finished? |
@@ -121,12 +121,13 | |||
|
121 | 121 | @submission.find_each do |sub| |
|
122 | 122 | #histogram |
|
123 | 123 | d = (DateTime.now.in_time_zone - sub.submitted_at) / 24 / 60 / 60 |
|
124 | 124 | @histogram[:data][d.to_i] += 1 if d < range |
|
125 | 125 | |
|
126 | 126 | @summary[:count] += 1 |
|
127 | + next unless sub.problem | |
|
127 | 128 | problem[sub.problem] = [problem[sub.problem], (sub.points >= sub.problem.full_score) ? 1 : 0].max |
|
128 | 129 | end |
|
129 | 130 | |
|
130 | 131 | @histogram[:summary][:max] = [@histogram[:data].max,1].max |
|
131 | 132 | @summary[:attempt] = problem.count |
|
132 | 133 | problem.each_value { |v| @summary[:solve] += 1 if v == 1 } |
You need to be logged in to leave comments.
Login now