Show More
Commit Description:
[web] added main_controller_spec...
Commit Description:
[web] added main_controller_spec git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@148 6386c4cd-e34a-4fa8-8920-d93eb39b512e
File last commit:
Show/Diff file:
Action:
app/views/test/index.html.erb | 80 lines | 1.9 KiB | text/plain | TextLexer |
jittat
moved test interface functionality to test_controller...
r44 <h2>Test Interface</h2>
<% if @problems.length==0 %>
There is no submission
<% else %>
<script type="text/javascript">
jittat
[web] fixed javascript incompatiblity...
r69 var submissionCount = new Array();
jittat
moved test interface functionality to test_controller...
r44 <% @submissions.each do |submission| %>
jittat
[web] fixed javascript incompatiblity...
r69 submissionCount[<%= submission.problem_id %>]=<%= submission.number %>;
jittat
moved test interface functionality to test_controller...
r44 <% end %>
jittat
[web] fixed javascript incompatiblity...
r69
jittat
moved test interface functionality to test_controller...
r44 function updateSubmissionList() {
currentProb = document.getElementById("test_request_problem_id").value;
count = submissionCount[currentProb];
submissionSelect = document.getElementById("test_request_submission_number");
jittat
[web] fixed javascript incompatiblity...
r69 old_len = submissionSelect.length;
// clear the box
for(i=0; i<old_len; i++)
submissionSelect.remove(0);
for(i=count; i>=1; i--) {
try {
submissionSelect.add(new Option(""+i,""+i,false,false),null);
} catch(ex) {
submissionSelect.add(new Option(""+i,""+i,false,false));
}
jittat
moved test interface functionality to test_controller...
r44 }
}
</script>
<% form_for :test_request, nil,
:url => { :action => 'submit'},
:html => { :multipart => true } do |f| %>
<table>
<tr>
<td>Task:</td>
<td>
<%= select(:test_request,
:problem_id,
@problems.collect {|p| [p.name, p.id]}, {},
{ :onclick => "updateSubmissionList();" }) %>
</td>
</tr>
<tr>
<td>Submission:</td>
<td>
<%= select(:test_request,
:submission_number,
jittat
update views -- styling...
r51 ((1..@submissions[0].number).collect {|n| [n,n]}).reverse) %>
jittat
moved test interface functionality to test_controller...
r44 </td>
</tr>
<tr>
<td>Input data:</td>
<td><%= f.file_field :input_file %></td>
<tr>
<td colspan="2">
<%= submit_tag 'submit' %>
</td>
</tr>
</table>
<% end %>
<h3>Previous requests</h3>
jittat
update views -- styling...
r51 <table class="info">
<tr class="info-head">
jittat
[web] fixing ticket #10...
r65 <th>at</th>
jittat
[web] better css styling...
r57 <th>problem</th>
jittat
[web] fixing ticket #10...
r65 <th>sub #</th>
jittat
[web] better css styling...
r57 <th>status</th>
<th>running stat</th>
<th>output (first 2kb)</th>
<th>grading comment</th>
<th>compiler message</th>
jittat
moved test interface functionality to test_controller...
r44 </tr>
jittat
[web] improving readability of test_interface, re: ticket #10...
r64 <%= render :partial => 'test_request', :collection => @test_requests %>
jittat
moved test interface functionality to test_controller...
r44 </table>
<% end %>