version 1.16, 2004/09/02 21:02:54
|
version 1.17, 2004/09/08 14:58:33
|
Line 134 sub BuildStudentSubmissionsPage {
|
Line 134 sub BuildStudentSubmissionsPage {
|
if ($ENV{'form.output'} eq 'excel') { |
if ($ENV{'form.output'} eq 'excel') { |
&prepare_excel_output($r,$current_problem, |
&prepare_excel_output($r,$current_problem, |
$ProblemData,\@Students); |
$ProblemData,\@Students); |
|
} elsif ($ENV{'form.output'} eq 'csv') { |
|
&prepare_csv_output($r,$current_problem, |
|
$ProblemData,\@Students); |
} else { |
} else { |
&prepare_html_output($r,$current_problem, |
&prepare_html_output($r,$current_problem, |
$ProblemData,\@Students); |
$ProblemData,\@Students); |
Line 142 sub BuildStudentSubmissionsPage {
|
Line 145 sub BuildStudentSubmissionsPage {
|
$r->print('<hr />'); |
$r->print('<hr />'); |
} else { |
} else { |
$r->print('<input type="submit" name="Generate" value="'. |
$r->print('<input type="submit" name="Generate" value="'. |
&mt('Generate Spreadsheet').'" />'); |
&mt('Prepare Report').'" />'); |
$r->print(' 'x5); |
$r->print(' 'x5); |
$r->print('<h3>'.&mt('Please select a problem to analyze').'</h3>'); |
$r->print('<h3>'.&mt('Please select a problem to analyze').'</h3>'); |
$r->print(&Apache::lonstathelpers::ProblemSelector('.')); |
$r->print(&Apache::lonstathelpers::ProblemSelector('.')); |
Line 166 my @DefaultColumns =
|
Line 169 my @DefaultColumns =
|
display =>'Attempt'}, |
display =>'Attempt'}, |
{name => 'awarddetail', |
{name => 'awarddetail', |
display =>'Awarddetail'}, |
display =>'Awarddetail'}, |
{name => 'grading', |
{name => 'awarded', |
display =>'Score'}, |
display =>'Award'}, |
|
# FIXME: Probably need to add score |
); |
); |
|
|
|
sub get_response_type { |
|
my ($resource,$partid,$respid) = @_; |
|
my $response_type = ''; |
|
for (my $i=0; |
|
$i<scalar(@{$resource->{'partdata'}->{$partid}->{'ResponseIds'}}); |
|
$i++) { |
|
if($resource->{'partdata'}->{$partid}->{'ResponseIds'}->[$i] eq $respid){ |
|
$response_type = |
|
$resource->{'partdata'}->{$partid}->{'ResponseTypes'}->[$i]; |
|
last; |
|
} |
|
} |
|
return $response_type; |
|
} |
|
|
|
|
######################################################### |
######################################################### |
######################################################### |
######################################################### |
## |
## |
Line 194 sub prepare_html_output {
|
Line 214 sub prepare_html_output {
|
$r->print('<h2>'.&mt('Student Responses').'</h2>'); |
$r->print('<h2>'.&mt('Student Responses').'</h2>'); |
# |
# |
$r->rflush(); |
$r->rflush(); |
my $response_type; |
my $response_type = &get_response_type($resource,$partid,$respid); |
for (my $i=0; |
|
$i<scalar(@{$resource->{'partdata'}->{$partid}->{'ResponseIds'}}); |
|
$i++) { |
|
if($resource->{'partdata'}->{$partid}->{'ResponseIds'}->[$i] eq $respid){ |
|
$response_type = |
|
$resource->{'partdata'}->{$partid}->{'ResponseTypes'}->[$i]; |
|
last; |
|
} |
|
} |
|
if (! defined($response_type)) { |
if (! defined($response_type)) { |
$r->print('<h2>'.&mt('Unable to determine response type').'</h2>'); |
$r->print('<h2>'.&mt('Unable to determine response type').'</h2>'); |
} else { |
return; |
my $count = 0; |
} |
my @Columns; |
my $count = 0; |
if (exists($ENV{'form.concise'}) && $ENV{'form.concise'} eq 'true') { |
my @Columns; |
foreach (@DefaultColumns) { |
if (exists($ENV{'form.concise'}) && $ENV{'form.concise'} eq 'true') { |
if ($_->{'name'} =~ /^(username|domain|id)$/){ |
foreach (@DefaultColumns) { |
push(@Columns,$_); |
if ($_->{'name'} =~ /^(username|domain|id)$/){ |
} |
push(@Columns,$_); |
} |
} |
} else { |
|
@Columns = @DefaultColumns; |
|
} |
} |
my $header = '<table>'.$/.&html_headers(\@Columns); |
} else { |
if ($response_type eq 'essay') { |
@Columns = @DefaultColumns; |
$header .= &html_essay_headers(); |
} |
} elsif ($response_type eq 'option') { |
my $header = '<table>'.$/.&html_headers(\@Columns); |
$header .= &html_option_headers(); |
if ($response_type eq 'essay') { |
} else { |
$header .= &html_essay_headers(); |
$header .= &html_generic_headers(); |
} elsif ($response_type eq 'option') { |
|
$header .= &html_option_headers(); |
|
} else { |
|
$header .= &html_generic_headers(); |
|
} |
|
$header = '<tr>'.$header.'</tr>'; |
|
# |
|
$r->print($/.$header.$/); |
|
foreach my $student (@$Students) { |
|
if ($count >= 50) { |
|
$r->print('</table>'.$/.$header.$/); |
|
$count = 0; |
} |
} |
$header = '<tr>'.$header.'</tr>'; |
last if ($c->aborted()); |
# |
my $results = &Apache::loncoursedata::get_response_data_by_student |
$r->print($/.$header.$/); |
($student,$resource->{'symb'},$respid); |
foreach my $student (@$Students) { |
next if (! defined($results) || ref($results) ne 'ARRAY'); |
if ($count >= 50) { |
for (my $i=0;$i<scalar(@$results);$i++) { |
$r->print('</table>'.$/.$header.$/); |
my $response = $results->[$i]; |
$count = 0; |
if ($ENV{'form.last_sub_only'} eq 'true' && |
} |
$i < (scalar(@$results)-1)) { |
last if ($c->aborted()); |
next; |
my $results = &Apache::loncoursedata::get_response_data_by_student |
} |
($student,$resource->{'symb'},$respid); |
my $data; |
next if (! defined($results) || ref($results) ne 'ARRAY'); |
$data->{'username'} = $student->{'username'}; |
for (my $i=0;$i<scalar(@$results);$i++) { |
$data->{'domain'} = $student->{'domain'}; |
my $response = $results->[$i]; |
$data->{'id'} = $student->{'id'}; |
if ($ENV{'form.last_sub_only'} eq 'true' && |
$data->{'fullname'} = $student->{'fullanem'}; |
$i < (scalar(@$results)-1)) { |
$data->{'status'} = $student->{'status'}; |
next; |
$data->{'time'} = &Apache::lonlocal::locallocaltime |
} |
($response->[&Apache::loncoursedata::RDs_timestamp()]); |
my $data; |
$data->{'attempt'} = |
$data->{'username'} = $student->{'username'}; |
$response->[&Apache::loncoursedata::RDs_tries()]; |
$data->{'domain'} = $student->{'domain'}; |
$data->{'awarded'} = |
$data->{'id'} = $student->{'id'}; |
$response->[&Apache::loncoursedata::RDs_awarded()]; |
$data->{'fullname'} = $student->{'fullanem'}; |
$data->{'awarddetail'} = |
$data->{'status'} = $student->{'status'}; |
$response->[&Apache::loncoursedata::RDs_awarddetail()]; |
$data->{'time'} = &Apache::lonlocal::locallocaltime |
my $rowextra = 'bgcolor="#CCCCCC"'; |
($response->[&Apache::loncoursedata::RDs_timestamp()]); |
if ($count % 2 == 1) { |
$data->{'attempt'} = |
$rowextra = 'bgcolor="#EEEEEE"'; |
$response->[&Apache::loncoursedata::RDs_tries()]; |
} |
$data->{'awarded'} = |
my $row = '<tr '.$rowextra.'>'; |
$response->[&Apache::loncoursedata::RDs_awarded()]; |
foreach my $col (@Columns) { |
$data->{'awarddetail'} = |
$row .= '<td valign="top">'. |
$response->[&Apache::loncoursedata::RDs_awarddetail()]; |
$data->{$col->{'name'}}.'</td>'; |
my $rowextra = 'bgcolor="#CCCCCC"'; |
|
if ($count % 2 == 1) { |
|
$rowextra = 'bgcolor="#EEEEEE"'; |
|
} |
|
my $row = '<tr '.$rowextra.'>'; |
|
foreach my $col (@Columns) { |
|
$row .= '<td valign="top">'. |
|
$data->{$col->{'name'}}.'</td>'; |
|
} |
|
if ($response_type eq 'essay') { |
|
$row .= &html_essay |
|
($response->[&Apache::loncoursedata::RDs_submission()], |
|
$student->{'answer'}, |
|
scalar(@Columns),$rowextra); |
|
} elsif ($response_type eq 'option') { |
|
$row .= &html_option |
|
($response->[&Apache::loncoursedata::RDs_submission()], |
|
$student->{'answer'}, |
|
scalar(@Columns),$rowextra); |
|
} else { |
|
$row .= &html_generic |
|
($response->[&Apache::loncoursedata::RDs_submission()], |
|
$student->{'answer'}, |
|
scalar(@Columns),$rowextra); |
|
} |
|
$row .= '</tr>'; |
|
$r->print($row.$/); |
|
$count++; |
|
} |
} |
|
if ($response_type eq 'essay') { |
|
$row .= &html_essay_results |
|
($response->[&Apache::loncoursedata::RDs_submission()], |
|
$student->{'answer'}, |
|
scalar(@Columns),$rowextra); |
|
} elsif ($response_type eq 'option') { |
|
$row .= &html_option_results |
|
($response->[&Apache::loncoursedata::RDs_submission()], |
|
$student->{'answer'}, |
|
scalar(@Columns),$rowextra); |
|
} else { |
|
$row .= &html_generic_results |
|
($response->[&Apache::loncoursedata::RDs_submission()], |
|
$student->{'answer'}, |
|
scalar(@Columns),$rowextra); |
|
} |
|
$row .= '</tr>'; |
|
$r->print($row.$/); |
|
$count++; |
} |
} |
$r->print('</table>'.$/); |
|
} |
} |
|
$r->print('</table>'.$/); |
return; |
return; |
} |
} |
|
|
Line 342 sub html_generic_headers {
|
Line 353 sub html_generic_headers {
|
return $header; |
return $header; |
} |
} |
|
|
sub html_radiobutton { |
sub html_option_headers { |
|
return &html_generic_headers(); |
|
} |
|
|
|
sub html_radiobutton_results { |
my ($submission,$correct,$tablewidth,$rowclass)=@_; |
my ($submission,$correct,$tablewidth,$rowclass)=@_; |
$submission =~ s/=([^=])$//; |
$submission =~ s/=([^=])$//; |
return &html_generic_results($submission,$correct,$tablewidth,$rowclass); |
return &html_generic_results($submission,$correct,$tablewidth,$rowclass); |
} |
} |
|
|
sub html_generic { |
sub html_generic_results { |
my ($submission,$correct,$tablewidth,$rowclass)=@_; |
my ($submission,$correct,$tablewidth,$rowclass)=@_; |
my $Str .= '<td>'.$submission.'</td>'; |
my $Str .= '<td>'.$submission.'</td>'; |
if ($ENV{'form.correctans'} eq 'true') { |
if ($ENV{'form.correctans'} eq 'true') { |
Line 358 sub html_generic {
|
Line 373 sub html_generic {
|
return $Str; |
return $Str; |
} |
} |
|
|
sub html_option_headers { |
sub html_option_results { |
return &html_generic_headers(); |
|
} |
|
|
|
sub html_option { |
|
my ($submission,$correct,$tablewidth,$rowclass)=@_; |
my ($submission,$correct,$tablewidth,$rowclass)=@_; |
$submission = |
$submission = |
'<ul class="sub_studentans">'. |
'<ul class="sub_studentans">'. |
Line 382 sub html_option {
|
Line 393 sub html_option {
|
'</li></ul>'; |
'</li></ul>'; |
} |
} |
# |
# |
return &html_generic($submission,$correct,$tablewidth,$rowclass); |
return &html_generic_results($submission,$correct,$tablewidth,$rowclass); |
|
} |
|
|
|
######################################################### |
|
######################################################### |
|
## |
|
## CSV output of student answers |
|
## |
|
######################################################### |
|
######################################################### |
|
sub prepare_csv_output { |
|
my ($r,$problem,$ProblemData,$Students) = @_; |
|
# |
|
my $c = $r->connection(); |
|
my ($resource,$respid,$partid) = ($problem->{'resource'}, |
|
$problem->{'respid'}, |
|
$problem->{'part'}); |
|
# |
|
if ($ENV{'form.correctans'} eq 'true') { |
|
$r->print('<h2>'.&mt('Generating Correct Answers').'</h2>'); |
|
&Apache::lonstathelpers::GetStudentAnswers($r,$problem,$Students, |
|
'Statistics', |
|
'stats_status'); |
|
} |
|
# |
|
$r->print('<h2>'. |
|
&mt('Generating CSV report of student responses').'</h2>'); |
|
# |
|
# Progress window |
|
my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin |
|
($r,'CSV File Compilation Status', |
|
'CSV File Compilation Progress', |
|
scalar(@$Students),'inline',undef,'Statistics','stats_status'); |
|
|
|
$r->rflush(); |
|
# |
|
# Open a file |
|
my $outputfile; |
|
my $filename = '/prtspool/'. |
|
$ENV{'user.name'}.'_'.$ENV{'user.domain'}.'_'. |
|
time.'_'.rand(1000000000).'.csv'; |
|
unless ($outputfile = Apache::File->new('>/home/httpd'.$filename)) { |
|
$r->log_error("Couldn't open $filename for output $!"); |
|
$r->print("Problems occured in writing the csv file. ". |
|
"This error has been logged. ". |
|
"Please alert your LON-CAPA administrator."); |
|
$outputfile = undef; |
|
} |
|
# |
|
# |
|
my @Columns; |
|
if (exists($ENV{'form.concise'}) && $ENV{'form.concise'} eq 'true') { |
|
foreach (@DefaultColumns) { |
|
if ($_->{'name'} =~ /^(username|domain|id)$/){ |
|
push(@Columns,$_); |
|
} |
|
} |
|
} else { |
|
@Columns = @DefaultColumns; |
|
} |
|
# |
|
my $response_type = &get_response_type($resource,$partid,$respid); |
|
if (! defined($response_type) || $response_type eq '') { |
|
$r->print('<h2>'.&mt('Unable to determine response type').'</h2>'); |
|
return; |
|
} |
|
# |
|
my $header = &csv_headers(\@Columns).','.&csv_generic_headers(); |
|
print $outputfile $header.$/; |
|
# |
|
foreach my $student (@$Students) { |
|
last if ($c->aborted()); |
|
my $results = &Apache::loncoursedata::get_response_data_by_student |
|
($student,$resource->{'symb'},$respid); |
|
next if (! defined($results) || ref($results) ne 'ARRAY'); |
|
for (my $i=0;$i<scalar(@$results);$i++) { |
|
my $response = $results->[$i]; |
|
if ($ENV{'form.last_sub_only'} eq 'true' && |
|
$i < (scalar(@$results)-1)) { |
|
next; |
|
} |
|
my $data; |
|
$data->{'username'} = $student->{'username'}; |
|
$data->{'domain'} = $student->{'domain'}; |
|
$data->{'id'} = $student->{'id'}; |
|
$data->{'fullname'} = $student->{'fullanem'}; |
|
$data->{'status'} = $student->{'status'}; |
|
$data->{'time'} = &Apache::lonlocal::locallocaltime |
|
($response->[&Apache::loncoursedata::RDs_timestamp()]); |
|
$data->{'attempt'} = |
|
$response->[&Apache::loncoursedata::RDs_tries()]; |
|
$data->{'awarded'} = |
|
$response->[&Apache::loncoursedata::RDs_awarded()]; |
|
$data->{'awarddetail'} = |
|
$response->[&Apache::loncoursedata::RDs_awarddetail()]; |
|
my $rowextra = ''; |
|
my $row; |
|
foreach my $col (@Columns) { |
|
$row .= '"'. |
|
&Apache::loncommon::csv_translate($data->{$col->{'name'}}).'",'; |
|
} |
|
if ($response_type eq 'option') { |
|
$row .= &csv_option_results |
|
($response->[&Apache::loncoursedata::RDs_submission()], |
|
$student->{'answer'}, |
|
scalar(@Columns),$rowextra); |
|
} elsif ($response_type eq 'radiobutton') { |
|
$row .= &csv_radiobutton_results |
|
($response->[&Apache::loncoursedata::RDs_submission()], |
|
$student->{'answer'}, |
|
scalar(@Columns),$rowextra); |
|
} else { |
|
$row .= &csv_generic_results |
|
($response->[&Apache::loncoursedata::RDs_submission()], |
|
$student->{'answer'}, |
|
scalar(@Columns),$rowextra); |
|
} |
|
print $outputfile $row.$/; |
|
} |
|
&Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state, |
|
'last student'); |
|
} |
|
close($outputfile); |
|
# |
|
# Close the progress window |
|
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
|
# |
|
# Tell the user where to get their csv file |
|
$r->print('<br />'. |
|
'<a href="'.$filename.'">'.&mt('Your csv file.').'</a>'."\n"); |
|
$r->rflush(); |
|
return; |
|
} |
|
|
|
sub csv_headers { |
|
my ($Columns) = @_; |
|
my $Str; |
|
foreach my $column (@$Columns) { |
|
$Str .= |
|
'"'.&Apache::loncommon::csv_translate($column->{'display'}).'",'; |
|
} |
|
chop($Str); |
|
return $Str; |
|
} |
|
|
|
sub csv_generic_headers { |
|
my ($title) = @_; |
|
if (! defined($title)) { |
|
$title = &mt('Submission'); |
|
} |
|
my $header = '"'.&Apache::loncommon::csv_translate($title).'"'; |
|
if ($ENV{'form.correctans'} eq 'true') { |
|
$header .= ',"'.&Apache::loncommon::csv_translate(&mt('Correct')).'"'; |
|
} |
|
return $header; |
|
} |
|
|
|
#------------------------------------------ |
|
sub csv_essay_results { |
|
my ($submission,$correct,$tablewidth,$rowextra)=@_; |
|
# |
|
$submission =~ s|\\r|\\\\r|g; |
|
$submission =~ s|\\n|\\\\n|g; |
|
# |
|
return &csv_generic_results($submission,$correct,$tablewidth); |
|
} |
|
|
|
#------------------------------------------ |
|
sub csv_radiobutton_results { |
|
my ($submission,$correct,$tablewidth,$rowclass)=@_; |
|
$submission =~ s/=[^=]*$//; |
|
return &csv_generic_results($submission,$correct,$tablewidth,$rowclass); |
|
} |
|
|
|
#------------------------------------------ |
|
sub csv_option_results { |
|
my ($submission,$correct,$tablewidth,$rowclass)=@_; |
|
$submission = join(',', |
|
map { |
|
&Apache::lonnet::unescape($_) ; |
|
} sort split('&',$submission) |
|
); |
|
if (defined($correct) && $correct !~ /^\s*$/) { |
|
$correct =join(',', |
|
map { |
|
&Apache::lonnet::unescape($_) ; |
|
} sort split('&',$submission)); |
|
} |
|
return &csv_generic_results($submission,$correct,$tablewidth,$rowclass); |
|
} |
|
|
|
#------------------------------------------ |
|
sub csv_generic_results { |
|
my ($submission,$correct,$tablewidth,$rowclass)=@_; |
|
my $Str .= |
|
'"'.&Apache::loncommon::csv_translate($submission).'"'; |
|
if ($ENV{'form.correctans'} eq 'true') { |
|
$Str .= ',"'.&Apache::loncommon::csv_translate($correct).'"'; |
|
} |
|
return $Str; |
} |
} |
|
|
######################################################### |
######################################################### |
Line 417 sub prepare_excel_output {
|
Line 627 sub prepare_excel_output {
|
# |
# |
$r->rflush(); |
$r->rflush(); |
my @Columns; |
my @Columns; |
push(@Columns,'username'); |
if (exists($ENV{'form.concise'}) && $ENV{'form.concise'} eq 'true') { |
push(@Columns,'domain'); |
foreach (@DefaultColumns) { |
push(@Columns,'attempt'); |
if ($_->{'name'} =~ /^(username|domain|id)$/){ |
push(@Columns,'time'); |
push(@Columns,$_); |
push(@Columns,'submission'); |
} |
if ($ENV{'form.correctans'} eq 'true') { push(@Columns,'correct'); } |
} |
push(@Columns,'grading'); |
} else { |
push(@Columns,'awarded'); |
@Columns = @DefaultColumns; |
my $awarded_col = $#Columns; |
} |
push(@Columns,'weight'); |
my ($awarded_col,$weight_col); |
my $weight_col = $#Columns; |
for (my $i=0;$i<=$#Columns;$i++) { |
push(@Columns,'score'); |
if ($Columns[$i]->{'name'} eq 'weight' ) { $weight_col = $i; } |
|
if ($Columns[$i]->{'name'} eq 'awarded') { $awarded_col = $i; } |
|
} |
# |
# |
# Create excel worksheet |
# Create excel worksheet |
my $filename = '/prtspool/'. |
my $filename = '/prtspool/'. |
Line 457 sub prepare_excel_output {
|
Line 669 sub prepare_excel_output {
|
$worksheet->write($rows_output++,0,$resource->{'title'},$format->{'h1'}); |
$worksheet->write($rows_output++,0,$resource->{'title'},$format->{'h1'}); |
$worksheet->write($rows_output++,0,$resource->{'src'},$format->{'h3'}); |
$worksheet->write($rows_output++,0,$resource->{'src'},$format->{'h3'}); |
$rows_output++; |
$rows_output++; |
$worksheet->write_row($rows_output++,0,\@Columns,$format->{'bold'}); |
$worksheet->write_row($rows_output++,0, |
|
[map {$_->{'display'}} @Columns], |
|
$format->{'bold'}); |
# |
# |
# Populate the worksheet with the student data |
# Populate the worksheet with the student data |
my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin |
my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin |
Line 472 sub prepare_excel_output {
|
Line 686 sub prepare_excel_output {
|
my %row; |
my %row; |
$row{'username'} = $student->{'username'}; |
$row{'username'} = $student->{'username'}; |
$row{'domain'} = $student->{'domain'}; |
$row{'domain'} = $student->{'domain'}; |
|
$row{'id'} = $student->{'id'}; |
$row{'correct'} = $student->{'answer'}; |
$row{'correct'} = $student->{'answer'}; |
$row{'weight'} = &Apache::lonnet::EXT |
$row{'weight'} = &Apache::lonnet::EXT |
('resource.'.$partid.'.weight',$resource->{'symb'}, |
('resource.'.$partid.'.weight',$resource->{'symb'}, |
Line 485 sub prepare_excel_output {
|
Line 700 sub prepare_excel_output {
|
($rows_output,$weight_col); |
($rows_output,$weight_col); |
my $cols_output = 0; |
my $cols_output = 0; |
foreach my $col (@Columns) { |
foreach my $col (@Columns) { |
if (! exists($row{$col})) { |
if (! exists($row{$col->{'name'}})) { |
$cols_output++; |
$cols_output++; |
next; |
next; |
} |
} |
$worksheet->write($rows_output,$cols_output++,$row{$col}); |
$worksheet->write($rows_output,$cols_output++, |
|
$row{$col->{'name'}}); |
} |
} |
$rows_output++; |
$rows_output++; |
} else { |
} else { |
Line 520 sub prepare_excel_output {
|
Line 736 sub prepare_excel_output {
|
# This will be interpreted as a formula. That is bad! |
# This will be interpreted as a formula. That is bad! |
$row{'submission'} = " ".$row{'submission'}; |
$row{'submission'} = " ".$row{'submission'}; |
} |
} |
$row{'grading'} = $response->[ |
$row{'awarddetail'} = $response->[ |
&Apache::loncoursedata::RDs_awarddetail()]; |
&Apache::loncoursedata::RDs_awarddetail()]; |
$row{'awarded'} = $response->[ |
$row{'awarded'} = $response->[ |
&Apache::loncoursedata::RDs_awarded()]; |
&Apache::loncoursedata::RDs_awarded()]; |
Line 533 sub prepare_excel_output {
|
Line 749 sub prepare_excel_output {
|
my $cols_output = 0; |
my $cols_output = 0; |
foreach my $col (@Columns) { |
foreach my $col (@Columns) { |
$worksheet->write($rows_output,$cols_output++,$row{$col}, |
$worksheet->write($rows_output,$cols_output++,$row{$col}, |
$row_format{$col}); |
$row_format{$col->{'name'}}); |
} |
} |
$rows_output++; |
$rows_output++; |
} |
} |
Line 569 sub CreateInterface {
|
Line 785 sub CreateInterface {
|
## |
## |
## Output Selection |
## Output Selection |
my $OutputSelector = $/.'<select name="output">'.$/; |
my $OutputSelector = $/.'<select name="output">'.$/; |
foreach ('HTML','Excel') { |
foreach ('HTML','Excel','CSV') { |
$OutputSelector .= ' <option value="'.lc($_).'"'; |
$OutputSelector .= ' <option value="'.lc($_).'"'; |
if ($ENV{'form.output'} eq lc($_)) { |
if ($ENV{'form.output'} eq lc($_)) { |
$OutputSelector .= ' selected '; |
$OutputSelector .= ' selected '; |