Description:
merge with algo-bm
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r429:82e5ff05bd49 - - 18 files changed: 310 inserted, 30 deleted
@@ -0,0 +1,8 | |||
|
1 | + %h2 Paid in Full | |
|
2 | + User with highest number of problem solved | |
|
3 | + | |
|
4 | + %h2 Polymaths | |
|
5 | + User with highest number of problems each solved by more than 1 languages. | |
|
6 | + | |
|
7 | + %h2 Icebreakers | |
|
8 | + If you solve the problem before 95% of your friends, you are an icebreaker. |
@@ -0,0 +1,62 | |||
|
1 | + :css | |
|
2 | + .hof_user { color: orangered; font-style: italic; } | |
|
3 | + .hof_language { color: green; font-style: italic; } | |
|
4 | + .hof_value { color: deeppink;font-style: italic; } | |
|
5 | + | |
|
6 | + %h2 Overall | |
|
7 | + | |
|
8 | + - if @best | |
|
9 | + %b Best Runtime: | |
|
10 | + by <span class="hof_user">#{@best[:runtime][:user]}</span> using <span class="hof_language">#{@best[:runtime][:lang]}</span> with <span class="hof_value">#{@best[:runtime][:value] * 1000} milliseconds</span> at submission | |
|
11 | + = link_to("#" + @best[:runtime][:sub_id].to_s, controller: 'graders', action: 'submission', id:@best[:runtime][:sub_id]) | |
|
12 | + %br/ | |
|
13 | + | |
|
14 | + %b Best Memory Usage: | |
|
15 | + by <span class="hof_user">#{@best[:memory][:user]}</span> using <span class="hof_language">#{@best[:memory][:lang]}</span> with <span class="hof_value">#{@best[:memory][:value]} kbytes </span> at submission | |
|
16 | + = link_to("#" + @best[:memory][:sub_id].to_s, controller: 'graders' , action: 'submission', id:@best[:memory][:sub_id]) | |
|
17 | + %br/ | |
|
18 | + | |
|
19 | + %b Shortest Code: | |
|
20 | + by <span class="hof_user">#{@best[:length][:user]}</span> using <span class="hof_language">#{@best[:length][:lang]}</span> with <span class="hof_value">#{@best[:length][:value]} bytes</span> at submission | |
|
21 | + = link_to("#" + @best[:length][:sub_id].to_s, controller: 'graders' , action: 'submission', id: @best[:length][:sub_id]) | |
|
22 | + %br/ | |
|
23 | + | |
|
24 | + %b First solver: | |
|
25 | + <span class="hof_user">#{@best[:first][:user]}</span> is the first solver using <span class="hof_language">#{@best[:first][:lang]}</span> on <span class="hof_value">#{@best[:first][:value]}</span> at submission | |
|
26 | + = link_to("#" + @best[:first][:sub_id].to_s, controller: 'graders' , action: 'submission', id: @best[:first][:sub_id]) | |
|
27 | + %br/ | |
|
28 | + | |
|
29 | + | |
|
30 | + %p | |
|
31 | + This counts only for submission with 100% score <br/> | |
|
32 | + Right now, java is excluded from memory usage competition. (Because it always uses 2GB memory...) | |
|
33 | + | |
|
34 | + %h2 By language | |
|
35 | + | |
|
36 | + %table.info | |
|
37 | + %thead | |
|
38 | + %tr.info-head | |
|
39 | + %th Language | |
|
40 | + %th Best runtime (ms) | |
|
41 | + %th Best memory (kbytes) | |
|
42 | + %th Shortest Code (bytes) | |
|
43 | + %th First solver | |
|
44 | + %tbody | |
|
45 | + - @by_lang.each do |lang,value| | |
|
46 | + %tr{class: cycle('info-even','info-odd')} | |
|
47 | + %td= lang | |
|
48 | + %td | |
|
49 | + = "#{value[:runtime][:user]} (#{(value[:runtime][:value] * 1000).to_i} @" | |
|
50 | + = "#{link_to("#" + value[:runtime][:sub_id].to_s, controller: 'graders' , action: 'submission', id: value[:runtime][:sub_id])} )".html_safe | |
|
51 | + %td | |
|
52 | + = "#{value[:memory][:user]} (#{value[:memory][:value]} @" | |
|
53 | + = "#{link_to("#" + value[:memory][:sub_id].to_s, controller: 'graders' , action: 'submission', id: value[:memory][:sub_id])} )".html_safe | |
|
54 | + %td | |
|
55 | + = "#{value[:length][:user]} (#{value[:length][:value]} @" | |
|
56 | + = "#{link_to("#" + value[:length][:sub_id].to_s, controller: 'graders' , action: 'submission', id: value[:length][:sub_id])} )".html_safe | |
|
57 | + %td | |
|
58 | + = "#{value[:first][:user]} (#{value[:first][:value]} @" | |
|
59 | + = "#{link_to("#" + value[:first][:sub_id].to_s, controller: 'graders' , action: 'submission', id: value[:first][:sub_id])} )".html_safe | |
|
60 | + | |
|
61 | + - else | |
|
62 | + %h3 No submissions |
@@ -0,0 +1,22 | |||
|
1 | + | |
|
2 | + /- if params[:id] | |
|
3 | + / %h1 Tasks Hall of Fame | |
|
4 | + / = link_to('[back to All-Time Hall of Fame]', action: 'problem_hof', id: nil ) | |
|
5 | + /- else | |
|
6 | + / %h1 All-Time Hall of Fame | |
|
7 | + | |
|
8 | + | |
|
9 | + %h1 Tasks Hall of Fame | |
|
10 | + .task-menu | |
|
11 | + Tasks | |
|
12 | + %br/ | |
|
13 | + - @problems.each do |prob| | |
|
14 | + = link_to( "[#{prob.name}]", {id: prob.id}) | |
|
15 | + | |
|
16 | + - unless params[:id] | |
|
17 | + /=render partial: 'all_time_hof' | |
|
18 | + Please select a problem. | |
|
19 | + - else | |
|
20 | + =render partial: 'task_hof' | |
|
21 | + | |
|
22 | + |
@@ -0,0 +1,7 | |||
|
1 | + class AddMoreDetailToSubmission < ActiveRecord::Migration | |
|
2 | + def change | |
|
3 | + add_column :submissions, :max_runtime, :float | |
|
4 | + add_column :submissions, :peak_memory, :integer | |
|
5 | + add_column :submissions, :effective_code_length, :integer | |
|
6 | + end | |
|
7 | + end |
@@ -38,12 +38,14 | |||
|
38 | 38 | # |
|
39 | 39 | |
|
40 | 40 | gem 'jquery-rails' |
|
41 | 41 | gem 'jquery-ui-sass-rails' |
|
42 | 42 | gem 'jquery-timepicker-addon-rails' |
|
43 | 43 | |
|
44 | + #syntax highlighter | |
|
45 | + gem 'rouge' | |
|
44 | 46 | |
|
45 | 47 | gem "haml" |
|
46 | 48 | gem "mail" |
|
47 | 49 | gem "rdiscount" |
|
48 | 50 | gem "test-unit" |
|
49 | 51 | gem 'will_paginate', '~> 3.0.0' |
@@ -101,12 +101,13 | |||
|
101 | 101 | rdoc (~> 3.4) |
|
102 | 102 | thor (>= 0.14.6, < 2.0) |
|
103 | 103 | rake (10.3.2) |
|
104 | 104 | rdiscount (2.1.7.1) |
|
105 | 105 | rdoc (3.12.2) |
|
106 | 106 | json (~> 1.4) |
|
107 | + rouge (1.6.2) | |
|
107 | 108 | rspec-collection_matchers (1.0.0) |
|
108 | 109 | rspec-expectations (>= 2.99.0.beta1) |
|
109 | 110 | rspec-core (2.99.2) |
|
110 | 111 | rspec-expectations (2.99.2) |
|
111 | 112 | diff-lcs (>= 1.1.3, < 2.0) |
|
112 | 113 | rspec-mocks (2.99.2) |
@@ -155,12 +156,13 | |||
|
155 | 156 | jquery-ui-sass-rails |
|
156 | 157 | |
|
157 | 158 | mysql2 |
|
158 | 159 | prototype-rails |
|
159 | 160 | rails (= 3.2.19) |
|
160 | 161 | rdiscount |
|
162 | + rouge | |
|
161 | 163 | rspec-rails (~> 2.0) |
|
162 | 164 | sass-rails (~> 3.2.3) |
|
163 | 165 | test-unit |
|
164 | 166 | uglifier (>= 1.0.3) |
|
165 | 167 | verification! |
|
166 | 168 | will_paginate (~> 3.0.0) |
@@ -3,13 +3,18 | |||
|
3 | 3 | |
|
4 | 4 | SINGLE_USER_MODE_CONF_KEY = 'system.single_user_mode' |
|
5 | 5 | |
|
6 | 6 | def admin_authorization |
|
7 | 7 | return false unless authenticate |
|
8 | 8 | user = User.find(session[:user_id], :include => ['roles']) |
|
9 | - redirect_to :controller => 'main', :action => 'login' unless user.admin? | |
|
9 | + unless user.admin? | |
|
10 | + flash[:notice] = 'You are not authorized to view the page you requested' | |
|
11 | + redirect_to :controller => 'main', :action => 'login' unless user.admin? | |
|
12 | + return false | |
|
13 | + end | |
|
14 | + return true | |
|
10 | 15 | end |
|
11 | 16 | |
|
12 | 17 | def authorization_by_roles(allowed_roles) |
|
13 | 18 | return false unless authenticate |
|
14 | 19 | user = User.find(session[:user_id]) |
|
15 | 20 | unless user.roles.detect { |role| allowed_roles.member?(role.name) } |
@@ -20,12 +25,16 | |||
|
20 | 25 | end |
|
21 | 26 | |
|
22 | 27 | protected |
|
23 | 28 | |
|
24 | 29 | def authenticate |
|
25 | 30 | unless session[:user_id] |
|
31 | + flash[:notice] = 'You need to login' | |
|
32 | + if GraderConfiguration[SINGLE_USER_MODE_CONF_KEY] | |
|
33 | + flash[:notice] = 'You need to login but you cannot log in at this time' | |
|
34 | + end | |
|
26 | 35 | redirect_to :controller => 'main', :action => 'login' |
|
27 | 36 | return false |
|
28 | 37 | end |
|
29 | 38 | |
|
30 | 39 | # check if run in single user mode |
|
31 | 40 | if GraderConfiguration[SINGLE_USER_MODE_CONF_KEY] |
@@ -1,9 +1,18 | |||
|
1 | 1 | class GradersController < ApplicationController |
|
2 | 2 | |
|
3 | - before_filter :admin_authorization | |
|
3 | + before_filter :admin_authorization, except: [ :submission ] | |
|
4 | + before_filter(only: [:submission]) { | |
|
5 | + return false unless authenticate | |
|
6 | + | |
|
7 | + if GraderConfiguration["right.user_view_submission"] | |
|
8 | + return true; | |
|
9 | + end | |
|
10 | + | |
|
11 | + admin_authorization | |
|
12 | + } | |
|
4 | 13 | |
|
5 | 14 | verify :method => :post, :only => ['clear_all', |
|
6 | 15 | 'start_exam', |
|
7 | 16 | 'start_grading', |
|
8 | 17 | 'stop_all', |
|
9 | 18 | 'clear_terminated'], |
@@ -60,12 +69,24 | |||
|
60 | 69 | def task |
|
61 | 70 | @task = Task.find(params[:id]) |
|
62 | 71 | end |
|
63 | 72 | |
|
64 | 73 | def submission |
|
65 | 74 | @submission = Submission.find(params[:id]) |
|
75 | + formatter = Rouge::Formatters::HTML.new(css_class: 'highlight', line_numbers: true ) | |
|
76 | + lexer = case @submission.language.name | |
|
77 | + when "c" then Rouge::Lexers::C.new | |
|
78 | + when "cpp" then Rouge::Lexers::Cpp.new | |
|
79 | + when "pas" then Rouge::Lexers::Pas.new | |
|
80 | + when "ruby" then Rouge::Lexers::Ruby.new | |
|
81 | + when "python" then Rouge::Lexers::Python.new | |
|
82 | + when "java" then Rouge::Lexers::Java.new | |
|
83 | + end | |
|
84 | + @formatted_code = formatter.format(lexer.lex(@submission.source)) | |
|
85 | + @css_style = Rouge::Themes::ThankfulEyes.render(scope: '.highlight') | |
|
86 | + | |
|
66 | 87 | end |
|
67 | 88 | |
|
68 | 89 | # various grader controls |
|
69 | 90 | |
|
70 | 91 | def stop |
|
71 | 92 | grader_proc = GraderProcess.find(params[:id]) |
@@ -1,7 +1,19 | |||
|
1 | 1 | class ReportController < ApplicationController |
|
2 | + | |
|
3 | + before_filter :admin_authorization, only: [:login_stat,:submission_stat] | |
|
4 | + before_filter(only: [:problem_hof]) { |c| | |
|
5 | + return false unless authenticate | |
|
6 | + | |
|
7 | + if GraderConfiguration["right.user_view_submission"] | |
|
8 | + return true; | |
|
9 | + end | |
|
10 | + | |
|
11 | + admin_authorization | |
|
12 | + } | |
|
13 | + | |
|
2 | 14 | def login_stat |
|
3 | 15 | @logins = Array.new |
|
4 | 16 | |
|
5 | 17 | date_and_time = '%Y-%m-%d %H:%M' |
|
6 | 18 | begin |
|
7 | 19 | @since_time = DateTime.strptime(params[:since_datetime],date_and_time) |
@@ -66,7 +78,111 | |||
|
66 | 78 | @submissions[s.user_id][:sub][s.problem_id][:sub_ids] << s.id |
|
67 | 79 | end |
|
68 | 80 | @submissions[s.user_id][:count] += 1 |
|
69 | 81 | end |
|
70 | 82 | end |
|
71 | 83 | end |
|
84 | + | |
|
85 | + def problem_hof | |
|
86 | + # gen problem list | |
|
87 | + @user = User.find(session[:user_id]) | |
|
88 | + @problems = @user.available_problems | |
|
89 | + | |
|
90 | + # get selected problems or the default | |
|
91 | + if params[:id] | |
|
92 | + begin | |
|
93 | + @problem = Problem.available.find(params[:id]) | |
|
94 | + rescue | |
|
95 | + redirect_to action: :problem_hof | |
|
96 | + flash[:notice] = 'Error: submissions for that problem are not viewable.' | |
|
97 | + return | |
|
98 | + end | |
|
99 | + end | |
|
100 | + | |
|
101 | + if @problem | |
|
102 | + #aggregrate by language | |
|
103 | + @by_lang = {} | |
|
104 | + Submission.where(problem_id: @problem.id).find_each do |sub| | |
|
105 | + lang = Language.find_by_id(sub.language_id) | |
|
106 | + next unless lang | |
|
107 | + next unless sub.points >= @problem.full_score | |
|
108 | + | |
|
109 | + #initialize | |
|
110 | + unless @by_lang.has_key?(lang.pretty_name) | |
|
111 | + @by_lang[lang.pretty_name] = { | |
|
112 | + runtime: { avail: false, value: 2**30-1 }, | |
|
113 | + memory: { avail: false, value: 2**30-1 }, | |
|
114 | + length: { avail: false, value: 2**30-1 }, | |
|
115 | + first: { avail: false, value: DateTime.new(3000,1,1) } | |
|
116 | + } | |
|
117 | + end | |
|
118 | + | |
|
119 | + if sub.max_runtime and sub.max_runtime < @by_lang[lang.pretty_name][:runtime][:value] | |
|
120 | + @by_lang[lang.pretty_name][:runtime] = { | |
|
121 | + avail: true, | |
|
122 | + user_id: sub.user_id, | |
|
123 | + value: sub.max_runtime, | |
|
124 | + sub_id: sub.id | |
|
125 | + } | |
|
126 | + end | |
|
127 | + | |
|
128 | + if sub.peak_memory and sub.peak_memory < @by_lang[lang.pretty_name][:memory][:value] | |
|
129 | + @by_lang[lang.pretty_name][:memory] = { | |
|
130 | + avail: true, | |
|
131 | + user_id: sub.user_id, | |
|
132 | + value: sub.peak_memory, | |
|
133 | + sub_id: sub.id | |
|
134 | + } | |
|
135 | + end | |
|
136 | + | |
|
137 | + if sub.submitted_at and sub.submitted_at < @by_lang[lang.pretty_name][:first][:value] and | |
|
138 | + !sub.user.admin? | |
|
139 | + @by_lang[lang.pretty_name][:first] = { | |
|
140 | + avail: true, | |
|
141 | + user_id: sub.user_id, | |
|
142 | + value: sub.submitted_at, | |
|
143 | + sub_id: sub.id | |
|
144 | + } | |
|
145 | + end | |
|
146 | + | |
|
147 | + if @by_lang[lang.pretty_name][:length][:value] > sub.effective_code_length | |
|
148 | + @by_lang[lang.pretty_name][:length] = { | |
|
149 | + avail: true, | |
|
150 | + user_id: sub.user_id, | |
|
151 | + value: sub.effective_code_length, | |
|
152 | + sub_id: sub.id | |
|
153 | + } | |
|
154 | + end | |
|
155 | + end | |
|
156 | + | |
|
157 | + #process user_id | |
|
158 | + @by_lang.each do |lang,prop| | |
|
159 | + prop.each do |k,v| | |
|
160 | + v[:user] = User.exists?(v[:user_id]) ? User.find(v[:user_id]).full_name : "(NULL)" | |
|
161 | + end | |
|
162 | + end | |
|
163 | + | |
|
164 | + #sum into best | |
|
165 | + if @by_lang and @by_lang.first | |
|
166 | + @best = @by_lang.first[1] | |
|
167 | + @by_lang.each do |lang,prop| | |
|
168 | + if @best[:runtime][:value] >= prop[:runtime][:value] | |
|
169 | + @best[:runtime] = prop[:runtime] | |
|
170 | + @best[:runtime][:lang] = lang | |
|
171 | + end | |
|
172 | + if @best[:memory][:value] >= prop[:memory][:value] | |
|
173 | + @best[:memory] = prop[:memory] | |
|
174 | + @best[:memory][:lang] = lang | |
|
175 | + end | |
|
176 | + if @best[:length][:value] >= prop[:length][:value] | |
|
177 | + @best[:length] = prop[:length] | |
|
178 | + @best[:length][:lang] = lang | |
|
179 | + end | |
|
180 | + if @best[:first][:value] >= prop[:first][:value] | |
|
181 | + @best[:first] = prop[:first] | |
|
182 | + @best[:first][:lang] = lang | |
|
183 | + end | |
|
184 | + end | |
|
185 | + end | |
|
186 | + end | |
|
187 | + end | |
|
72 | 188 | end |
@@ -27,12 +27,16 | |||
|
27 | 27 | |
|
28 | 28 | if (user!=nil) and (GraderConfiguration.show_tasks_to?(user)) |
|
29 | 29 | append_to menu_items, "[#{I18n.t 'menu.tasks'}]", 'tasks', 'list' |
|
30 | 30 | append_to menu_items, "[#{I18n.t 'menu.submissions'}]", 'main', 'submission' |
|
31 | 31 | append_to menu_items, "[#{I18n.t 'menu.test'}]", 'test', 'index' |
|
32 | 32 | end |
|
33 | + | |
|
34 | + if GraderConfiguration['right.user_hall_of_fame'] | |
|
35 | + append_to menu_items, "[#{I18n.t 'menu.hall_of_fame'}]", 'report', 'problem_hof' | |
|
36 | + end | |
|
33 | 37 | append_to menu_items, "[#{I18n.t 'menu.help'}]", 'main', 'help' |
|
34 | 38 | |
|
35 | 39 | if GraderConfiguration['system.user_setting_enabled'] |
|
36 | 40 | append_to menu_items, "[#{I18n.t 'menu.settings'}]", 'users', 'index' |
|
37 | 41 | end |
|
38 | 42 | append_to menu_items, "[#{I18n.t 'menu.log_out'}]", 'main', 'login' |
@@ -1,22 +1,27 | |||
|
1 | + %style{type: "text/css"} | |
|
2 | + = @css_style | |
|
3 | + | |
|
1 | 4 | %h1= "Submission: #{@submission.id}" |
|
2 | 5 | |
|
3 | 6 | %p |
|
4 | 7 | User: |
|
5 | - = "#{@submission.user.login}" | |
|
8 | + = "(#{@submission.user.login}) #{@submission.user.full_name}" | |
|
6 | 9 | %br/ |
|
7 | 10 | Problem: |
|
8 | 11 | - if @submission.problem!=nil |
|
9 | 12 | = "#{@submission.problem.full_name}" |
|
10 | 13 | - else |
|
11 | 14 | = "(n/a)" |
|
12 | 15 | %br/ |
|
13 | 16 | = "Number: #{@submission.number}" |
|
14 | 17 | %br/ |
|
15 | 18 | = "Submitted at: #{format_short_time(@submission.submitted_at)}" |
|
19 | + %br/ | |
|
20 | + = "Points : #{@submission.points}/#{@submission.problem.full_score}" | |
|
21 | + %br/ | |
|
22 | + = "Comment : #{@submission.grader_comment}" | |
|
16 | 23 | |
|
17 | 24 | %b Source code (first 10kb) |
|
18 |
- %div{:style => "border: 1px solid black; |
|
|
19 | - - if @submission.source | |
|
20 | - %pre | |
|
21 | - =h truncate @submission.source, :length => 10240 | |
|
25 | + //%div.highlight{:style => "border: 1px solid black;"} | |
|
26 | + =@formatted_code.html_safe | |
|
22 | 27 |
@@ -1,6 +1,7 | |||
|
1 | 1 | |
|
2 | 2 | .task-menu |
|
3 | 3 | Reports |
|
4 | 4 | %br/ |
|
5 | + = link_to '[Hall of Fame]', :action => 'problem_hof' | |
|
5 | 6 | = link_to '[Submission]', :action => 'submission_stat' |
|
6 | 7 | = link_to '[Login]', :action => 'login_stat' |
@@ -4,16 +4,14 | |||
|
4 | 4 | %script{:type=>"text/javascript"} |
|
5 | 5 | $(function () { |
|
6 | 6 | $('#since_datetime').datetimepicker({ showButtonPanel: true, dateFormat: "yy-mm-dd", controlType: "slider"} ); |
|
7 | 7 | $('#until_datetime').datetimepicker({ showButtonPanel: true, dateFormat: "yy-mm-dd", controlType: "slider"} ); |
|
8 | 8 | }); |
|
9 | 9 | |
|
10 | - | |
|
11 | 10 | %h1 Login status |
|
12 | 11 | |
|
13 | - | |
|
14 | 12 | =render partial: 'report_menu' |
|
15 | 13 | =render partial: 'date_range', locals: {param_text: 'Login date range:', title: 'Query login stat in the range' } |
|
16 | 14 | |
|
17 | 15 | %table.info |
|
18 | 16 | %thead |
|
19 | 17 | %tr.info-head |
@@ -4,18 +4,14 | |||
|
4 | 4 | %script{:type=>"text/javascript"} |
|
5 | 5 | $(function () { |
|
6 | 6 | $('#since_datetime').datetimepicker({ showButtonPanel: true, dateFormat: "yy-mm-dd", controlType: "slider"} ); |
|
7 | 7 | $('#until_datetime').datetimepicker({ showButtonPanel: true, dateFormat: "yy-mm-dd", controlType: "slider"} ); |
|
8 | 8 | }); |
|
9 | 9 | |
|
10 | - | |
|
11 | 10 | %h1 Login status |
|
12 | 11 | |
|
13 | - | |
|
14 | - | |
|
15 | - | |
|
16 | 12 | =render partial: 'report_menu' |
|
17 | 13 | =render partial: 'date_range', locals: {param_text: 'Submission date range:', title: 'Query submission stat in the range' } |
|
18 | 14 | |
|
19 | 15 | %table.info |
|
20 | 16 | %thead |
|
21 | 17 | %tr.info-head |
@@ -56,9 +56,9 | |||
|
56 | 56 | # Enable the asset pipeline |
|
57 | 57 | config.assets.enabled = true |
|
58 | 58 | |
|
59 | 59 | # Version of your assets, change this if you want to expire all your assets |
|
60 | 60 | config.assets.version = '1.0' |
|
61 | 61 | |
|
62 | - config.assets.precompile += ['announcement_refresh.js','effects.js','site_update.js','graders.css','problems.css'] | |
|
62 | + config.assets.precompile += ['announcement_refresh.js','effects.js','site_update.js','graders.css','problems.css','new.js'] | |
|
63 | 63 | end |
|
64 | 64 | end |
@@ -17,12 +17,13 | |||
|
17 | 17 | menu: |
|
18 | 18 | main: 'Main' |
|
19 | 19 | messages: 'Messages' |
|
20 | 20 | tasks: 'Tasks' |
|
21 | 21 | submissions: 'Submissions' |
|
22 | 22 | test: 'Test Interface' |
|
23 | + hall_of_fame: 'Hall of Fame' | |
|
23 | 24 | help: 'Help' |
|
24 | 25 | settings: 'Settings' |
|
25 | 26 | log_out: 'Log out' |
|
26 | 27 | |
|
27 | 28 | title_bar: |
|
28 | 29 | current_time: "Current time is" |
@@ -17,12 +17,13 | |||
|
17 | 17 | menu: |
|
18 | 18 | main: 'หน้าหลัก' |
|
19 | 19 | messages: 'ข้อความ' |
|
20 | 20 | tasks: 'โจทย์' |
|
21 | 21 | submissions: 'โปรแกรมที่ส่ง' |
|
22 | 22 | test: 'ทดสอบโปรแกรม' |
|
23 | + hall_of_fame: 'หอเกียรติยศ' | |
|
23 | 24 | help: 'ความช่วยเหลือ' |
|
24 | 25 | settings: 'เปลี่ยนรหัสผ่าน' |
|
25 | 26 | log_out: 'ออกจากระบบ' |
|
26 | 27 | |
|
27 | 28 | title_bar: |
|
28 | 29 | current_time: "เวลาปัจจุบันคือ" |
@@ -3,94 +3,108 | |||
|
3 | 3 | { |
|
4 | 4 | :key => 'system.single_user_mode', |
|
5 | 5 | :value_type => 'boolean', |
|
6 | 6 | :default_value => 'false', |
|
7 | 7 | :description => 'Only admins can log in to the system when running under single user mode.' |
|
8 | 8 | }, |
|
9 | - | |
|
9 | + | |
|
10 | 10 | { |
|
11 | 11 | :key => 'ui.front.title', |
|
12 | 12 | :value_type => 'string', |
|
13 | 13 | :default_value => 'Grader' |
|
14 | 14 | }, |
|
15 | - | |
|
15 | + | |
|
16 | 16 | { |
|
17 | 17 | :key => 'ui.front.welcome_message', |
|
18 | 18 | :value_type => 'string', |
|
19 | 19 | :default_value => 'Welcome!' |
|
20 | 20 | }, |
|
21 | - | |
|
21 | + | |
|
22 | 22 | { |
|
23 | 23 | :key => 'ui.show_score', |
|
24 | 24 | :value_type => 'boolean', |
|
25 | 25 | :default_value => 'true' |
|
26 | 26 | }, |
|
27 | - | |
|
27 | + | |
|
28 | 28 | { |
|
29 | 29 | :key => 'contest.time_limit', |
|
30 | 30 | :value_type => 'string', |
|
31 | 31 | :default_value => 'unlimited', |
|
32 | 32 | :description => 'Time limit in format hh:mm, or "unlimited" for contests with no time limits. This config is CACHED. Restart the server before the change can take effect.' |
|
33 | 33 | }, |
|
34 | - | |
|
34 | + | |
|
35 | 35 | { |
|
36 | 36 | :key => 'system.mode', |
|
37 | 37 | :value_type => 'string', |
|
38 | 38 | :default_value => 'standard', |
|
39 | 39 | :description => 'Current modes are "standard", "contest", "indv-contest", and "analysis".' |
|
40 | 40 | }, |
|
41 | - | |
|
41 | + | |
|
42 | 42 | { |
|
43 | 43 | :key => 'contest.name', |
|
44 | 44 | :value_type => 'string', |
|
45 | 45 | :default_value => 'Grader', |
|
46 | 46 | :description => 'This name will be shown on the user header bar.' |
|
47 | 47 | }, |
|
48 | - | |
|
48 | + | |
|
49 | 49 | { |
|
50 | 50 | :key => 'contest.multisites', |
|
51 | 51 | :value_type => 'boolean', |
|
52 | 52 | :default_value => 'false', |
|
53 | 53 | :description => 'If the server is in contest mode and this option is true, on the log in of the admin a menu for site selections is shown.' |
|
54 | 54 | }, |
|
55 | - | |
|
55 | + | |
|
56 | 56 | { |
|
57 | - :key => 'system.online_registration', | |
|
57 | + :key => 'right.user_hall_of_fame', | |
|
58 | 58 | :value_type => 'boolean', |
|
59 | 59 | :default_value => 'false', |
|
60 | - :description => 'This option enables online registration.' | |
|
60 | + :description => 'If true, any user can access hall of fame page.' | |
|
61 | 61 | }, |
|
62 | - | |
|
62 | + | |
|
63 | + { | |
|
64 | + :key => 'right.user_view_submission', | |
|
65 | + :value_type => 'boolean', | |
|
66 | + :default_value => 'false', | |
|
67 | + :description => 'If true, any user can view submissions of every one.' | |
|
68 | + }, | |
|
69 | + | |
|
63 | 70 | # If Configuration['system.online_registration'] is true, the |
|
64 | 71 | # system allows online registration, and will use these |
|
65 | 72 | # information for sending confirmation emails. |
|
66 | 73 | { |
|
67 | 74 | :key => 'system.online_registration.smtp', |
|
68 | 75 | :value_type => 'string', |
|
69 | 76 | :default_value => 'smtp.somehost.com' |
|
70 | 77 | }, |
|
71 | - | |
|
78 | + | |
|
72 | 79 | { |
|
73 | 80 | :key => 'system.online_registration.from', |
|
74 | 81 | :value_type => 'string', |
|
75 | 82 | :default_value => 'your.email@address' |
|
76 | 83 | }, |
|
77 | - | |
|
84 | + | |
|
78 | 85 | { |
|
79 | 86 | :key => 'system.admin_email', |
|
80 | 87 | :value_type => 'string', |
|
81 | 88 | :default_value => 'admin@admin.email' |
|
82 | 89 | }, |
|
83 | - | |
|
90 | + | |
|
84 | 91 | { |
|
85 | 92 | :key => 'system.user_setting_enabled', |
|
86 | 93 | :value_type => 'boolean', |
|
87 | 94 | :default_value => 'true', |
|
88 | 95 | :description => 'If this option is true, users can change their settings' |
|
89 | 96 | }, |
|
90 | - | |
|
97 | + | |
|
98 | + { | |
|
99 | + :key => 'system.user_setting_enabled', | |
|
100 | + :value_type => 'boolean', | |
|
101 | + :default_value => 'true', | |
|
102 | + :description => 'If this option is true, users can change their settings' | |
|
103 | + } | |
|
104 | + | |
|
91 | 105 | # If Configuration['contest.test_request.early_timeout'] is true |
|
92 | 106 | # the user will not be able to use test request at 30 minutes |
|
93 | 107 | # before the contest ends. |
|
94 | 108 | { |
|
95 | 109 | :key => 'contest.test_request.early_timeout', |
|
96 | 110 | :value_type => 'boolean', |
@@ -112,13 +126,13 | |||
|
112 | 126 | { |
|
113 | 127 | :key => 'contest.default_contest_name', |
|
114 | 128 | :value_type => 'string', |
|
115 | 129 | :default_value => 'none', |
|
116 | 130 | :description => "New user will be assigned to this contest automatically, if it exists. Set to 'none' if there is no default contest." |
|
117 | 131 | } |
|
118 | - | |
|
132 | + | |
|
119 | 133 | ] |
|
120 | 134 | |
|
121 | 135 | |
|
122 | 136 | def create_configuration_key(key, |
|
123 | 137 | value_type, |
|
124 | 138 | default_value, |
@@ -191,8 +205,19 | |||
|
191 | 205 | |
|
192 | 206 | def seed_users_and_roles |
|
193 | 207 | seed_roles |
|
194 | 208 | seed_root |
|
195 | 209 | end |
|
196 | 210 | |
|
211 | + def seed_more_languages | |
|
212 | + Language.delete_all | |
|
213 | + Language.create( name: 'c', pretty_name: 'C', ext: 'c', common_ext: 'c' ) | |
|
214 | + Language.create( name: 'cpp', pretty_name: 'C++', ext: 'cpp', common_ext: 'cpp,cc' ) | |
|
215 | + Language.create( name: 'pas', pretty_name: 'Pascal', ext: 'pas', common_ext: 'pas' ) | |
|
216 | + Language.create( name: 'ruby', pretty_name: 'Ruby', ext: 'rb', common_ext: 'rb' ) | |
|
217 | + Language.create( name: 'python', pretty_name: 'Python', ext: 'py', common_ext: 'py' ) | |
|
218 | + Language.create( name: 'java', pretty_name: 'Java', ext: 'java', common_ext: 'java' ) | |
|
219 | + end | |
|
220 | + | |
|
197 | 221 | seed_config |
|
198 | 222 | seed_users_and_roles |
|
223 | + seed_more_languages |
You need to be logged in to leave comments.
Login now