version 1.12, 2013/07/22 18:06:58
|
version 1.13, 2014/02/12 16:51:16
|
Line 69 sub build_grading_analysis_page {
|
Line 69 sub build_grading_analysis_page {
|
my @students = @Apache::lonstatistics::Students; |
my @students = @Apache::lonstatistics::Students; |
# |
# |
if (@students < 1 && exists($env{'form.firstrun'})) { |
if (@students < 1 && exists($env{'form.firstrun'})) { |
$r->print('<h2>There are no students in the sections/groups selected</h2>'); |
$r->print( |
|
'<p class="LC_info">' |
|
.&mt('There are no students in the sections/groups selected.') |
|
.'</h2>'); |
} |
} |
# |
# |
#my @cache_button_HTML = |
#my @cache_button_HTML = |
Line 120 sub build_grading_analysis_page {
|
Line 123 sub build_grading_analysis_page {
|
$env{'form.problemchoice'}.'" />'); |
$env{'form.problemchoice'}.'" />'); |
# |
# |
if (! defined($current_problem->{'resource'})) { |
if (! defined($current_problem->{'resource'})) { |
$r->print('resource is undefined'); |
$r->print('<p class="LC_error">'.&mt('resource is undefined').'</p>'); |
} else { |
} else { |
my $resource = $current_problem->{'resource'}; |
my $resource = $current_problem->{'resource'}; |
$r->print('<h1>'.$resource->compTitle.'</h1>'); |
$r->print('<h1>'.$resource->compTitle.'</h1>'); |
Line 130 sub build_grading_analysis_page {
|
Line 133 sub build_grading_analysis_page {
|
if ($resource->is_task()) { |
if ($resource->is_task()) { |
&task_analysis($r,$resource,\@students); |
&task_analysis($r,$resource,\@students); |
} else { |
} else { |
$r->print('<h2>Analysis of '.$resource->src().' is not supported</h2>'); |
$r->print( |
|
'<p class="LC_warning">' |
|
.&mt('Analysis of [_1] is not supported.',$resource->src()) |
|
.'</p>'); |
} |
} |
} |
} |
$r->print('<hr />'); |
$r->print('<hr />'); |
Line 271 sub init_excel_output {
|
Line 277 sub init_excel_output {
|
$format->{'h3'}); |
$format->{'h3'}); |
|
|
$excel_sheet->write($header_row,$cols_output++, |
$excel_sheet->write($header_row,$cols_output++, |
'Compiled on '.localtime(time),$format->{'h3'}); |
&mt('Compiled on [_1]',&Apache::lonlocal::locallocaltime(time)), |
|
$format->{'h3'}); |
$cols_output = 0; |
$cols_output = 0; |
foreach my $field ('Grader Name','Username','Grades Assigned') { |
foreach my $field ('Grader Name','Username','Grades Assigned') { |
$excel_sheet->write($description_row,$cols_output++,$field, |
$excel_sheet->write($description_row,$cols_output++,&mt($field), |
$format->{'bold'}); |
$format->{'bold'}); |
} |
} |
return ($excel_workbook,$excel_sheet,$filename,$format,$rows_output); |
return ($excel_workbook,$excel_sheet,$filename,$format,$rows_output); |
Line 294 sub create_interface {
|
Line 301 sub create_interface {
|
foreach ('HTML','Excel','CSV') { |
foreach ('HTML','Excel','CSV') { |
$output_selector .= ' <option value="'.lc($_).'"'; |
$output_selector .= ' <option value="'.lc($_).'"'; |
if ($env{'form.output'} eq lc($_)) { |
if ($env{'form.output'} eq lc($_)) { |
$output_selector .= ' selected '; |
$output_selector .= ' selected="selected"'; |
} |
} |
$output_selector .='>'.&mt($_).'</option>'.$/; |
$output_selector .='>'.&mt($_).'</option>'.$/; |
} |
} |