Description:
- fix pdf loading fail
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r634:56cf4357ce2a - - 4 files changed: 11 inserted, 4 deleted
@@ -85,13 +85,13 | |||
|
85 | 85 | end |
|
86 | 86 | end |
|
87 | 87 | if params[:file] and params[:file].content_type != 'application/pdf' |
|
88 | 88 | flash[:notice] = 'Error: Uploaded file is not PDF' |
|
89 | 89 | render :action => 'edit' and return |
|
90 | 90 | end |
|
91 |
- if @problem.update_attributes( |
|
|
91 | + if @problem.update_attributes(problem_params) | |
|
92 | 92 | flash[:notice] = 'Problem was successfully updated.' |
|
93 | 93 | unless params[:file] == nil or params[:file] == '' |
|
94 | 94 | flash[:notice] = 'Problem was successfully updated and a new PDF file is uploaded.' |
|
95 | 95 | out_dirname = "#{Problem.download_file_basedir}/#{@problem.id}" |
|
96 | 96 | if not FileTest.exists? out_dirname |
|
97 | 97 | Dir.mkdir out_dirname |
@@ -282,7 +282,13 | |||
|
282 | 282 | problems |
|
283 | 283 | end |
|
284 | 284 | |
|
285 | 285 | def get_problems_stat |
|
286 | 286 | end |
|
287 | 287 | |
|
288 | + private | |
|
289 | + | |
|
290 | + def problem_params | |
|
291 | + params.require(:problem).permit(:name, :full_name, :full_score, :date_added, :available, :test_allowed,:output_only, :url, :description) | |
|
292 | + end | |
|
293 | + | |
|
288 | 294 | end |
@@ -115,13 +115,13 | |||
|
115 | 115 | note << "'#{login}' (+)" |
|
116 | 116 | else |
|
117 | 117 | note << login |
|
118 | 118 | end |
|
119 | 119 | end |
|
120 | 120 | end |
|
121 |
- flash[: |
|
|
121 | + flash[:success] = 'User(s) ' + note.join(', ') + | |
|
122 | 122 | ' were successfully created. ' + |
|
123 | 123 | '( (+) - created with random passwords.)' |
|
124 | 124 | redirect_to :action => 'index' |
|
125 | 125 | end |
|
126 | 126 | |
|
127 | 127 | def edit |
@@ -1,11 +1,12 | |||
|
1 | 1 | <%= error_messages_for 'problem' %> |
|
2 | 2 | |
|
3 | 3 | <!--[form:problem]--> |
|
4 | 4 | <p><label for="problem_name">Name</label><br/> |
|
5 | - <%= text_field 'problem', 'name' %></p> | |
|
5 | + <%= text_field 'problem', 'name' %> Do not directly edit the problem name, unless you know what you are doing. If you want to change the name, use the name change button in the problem management menu instead. | |
|
6 | + </p> | |
|
6 | 7 | |
|
7 | 8 | <p><label for="problem_full_name">Full name</label><br/> |
|
8 | 9 | <%= text_field 'problem', 'full_name' %></p> |
|
9 | 10 | |
|
10 | 11 | <p><label for="problem_full_score">Full score</label><br/> |
|
11 | 12 | <%= text_field 'problem', 'full_score' %></p> |
You need to be logged in to leave comments.
Login now