version 1.42, 2006/04/29 18:01:17
|
version 1.47, 2008/09/11 14:47:23
|
Line 37 use Apache::lonstathelpers;
|
Line 37 use Apache::lonstathelpers;
|
use HTML::Entities(); |
use HTML::Entities(); |
use Time::Local(); |
use Time::Local(); |
use Spreadsheet::WriteExcel(); |
use Spreadsheet::WriteExcel(); |
|
use lib '/home/httpd/lib/perl/'; |
|
use LONCAPA; |
|
|
|
|
my @SubmitButtons = ({ name => 'SelectAnother', |
my @SubmitButtons = ({ name => 'SelectAnother', |
text => 'Choose a different Problem' }, |
text => 'Choose a different Problem' }, |
Line 555 sub html_non_essay_results {
|
Line 558 sub html_non_essay_results {
|
return ''; |
return ''; |
} |
} |
# |
# |
my $submission = &HTML::Entities::decode(&Apache::lonnet::unescape($response->{'Submission'})); |
my $submission = &HTML::Entities::decode(&unescape($response->{'Submission'})); |
return '' if (! defined($submission) || $submission eq ''); |
return '' if (! defined($submission) || $submission eq ''); |
$submission =~ s/\\\"/\"/g; |
$submission =~ s/\\\"/\"/g; |
$submission =~ s/\\\'/\'/g; |
$submission =~ s/\\\'/\'/g; |
Line 570 sub html_non_essay_results {
|
Line 573 sub html_non_essay_results {
|
if ($resptype =~ /^(option|match|rank)$/) { |
if ($resptype =~ /^(option|match|rank)$/) { |
my %submission = |
my %submission = |
map { |
map { |
my ($foil,$value) = split('=',&Apache::lonnet::unescape($_)); |
my ($foil,$value) = split('=',&unescape($_)); |
($foil,$value); |
($foil,$value); |
} split('&',$response->{'Submission'}); |
} split('&',$response->{'Submission'}); |
my %correct; |
my %correct; |
if (exists($response->{'Correct'})) { |
if (exists($response->{'Correct'})) { |
%correct = |
%correct = |
map { |
map { |
my ($foil,$value)=split('=',&Apache::lonnet::unescape($_)); |
my ($foil,$value)=split('=',&unescape($_)); |
($foil,$value); |
($foil,$value); |
} split('&',$response->{'Correct'}); |
} split('&',$response->{'Correct'}); |
} |
} |
Line 828 sub compile_response_data {
|
Line 831 sub compile_response_data {
|
# |
# |
my $submission = |
my $submission = |
&HTML::Entities::decode |
&HTML::Entities::decode |
(&Apache::lonnet::unescape($response->{'Submission'})); |
(&unescape($response->{'Submission'})); |
if (!$prob->is_task()) { |
if (!$prob->is_task()) { |
return () if (! defined($submission) || $submission eq ''); |
return () if (! defined($submission) || $submission eq ''); |
} |
} |
Line 843 sub compile_response_data {
|
Line 846 sub compile_response_data {
|
if ($resptype =~ /^(option|match|rank)$/) { |
if ($resptype =~ /^(option|match|rank)$/) { |
my %submission = |
my %submission = |
map { |
map { |
my ($foil,$value) = split('=',&Apache::lonnet::unescape($_)); |
my ($foil,$value) = split('=',&unescape($_)); |
($foil,$value); |
($foil,$value); |
} split('&',$response->{'Submission'}); |
} split('&',$response->{'Submission'}); |
my %correct; |
my %correct; |
if (exists($response->{'Correct'})) { |
if (exists($response->{'Correct'})) { |
%correct = |
%correct = |
map { |
map { |
my ($foil,$value)=split('=',&Apache::lonnet::unescape($_)); |
my ($foil,$value)=split('=',&unescape($_)); |
($foil,$value); |
($foil,$value); |
} split('&',$response->{'Correct'}); |
} split('&',$response->{'Correct'}); |
} |
} |
Line 925 sub prepare_csv_output {
|
Line 928 sub prepare_csv_output {
|
time.'_'.rand(1000000000).'.csv'; |
time.'_'.rand(1000000000).'.csv'; |
unless ($outputfile = Apache::File->new('>/home/httpd'.$filename)) { |
unless ($outputfile = Apache::File->new('>/home/httpd'.$filename)) { |
$r->log_error("Couldn't open $filename for output $!"); |
$r->log_error("Couldn't open $filename for output $!"); |
$r->print("Problems occured in writing the csv file. ". |
$r->print(&mt('Problems occurred in writing the csv file. ' |
"This error has been logged. ". |
.'This error has been logged. ' |
"Please alert your LON-CAPA administrator."); |
.'Please alert your LON-CAPA administrator.')); |
$outputfile = undef; |
$outputfile = undef; |
} |
} |
# |
# |
Line 1081 sub CreateInterface {
|
Line 1084 sub CreateInterface {
|
## |
## |
## Environment variable initialization |
## Environment variable initialization |
my $Str = ''; |
my $Str = ''; |
$Str .= &Apache::lonhtmlcommon::breadcrumbs |
$Str .= &Apache::lonhtmlcommon::breadcrumbs('Student Submission Reports'); |
(undef,'Student Submission Reports'); |
|
$Str .= '<p>'; |
$Str .= '<p>'; |
$Str .= '<table cellspacing="5">'."\n"; |
$Str .= '<table cellspacing="5">'."\n"; |
$Str .= '<tr>'; |
$Str .= '<tr>'; |
$Str .= '<th>'.&mt('Sections').'</th>'; |
$Str .= '<th>'.&mt('Sections').'</th>'; |
$Str .= '<th>'.&mt('Enrollment Status').'</th>'; |
$Str .= '<th>'.&mt('Groups').'</th>'; |
|
$Str .= '<th>'.&mt('Access Status').'</th>'; |
$Str .= '<th>'.&mt('Output as [_1]',$output_selector).'</th>'; |
$Str .= '<th>'.&mt('Output as [_1]',$output_selector).'</th>'; |
$Str .= '</tr>'."\n"; |
$Str .= '</tr>'."\n"; |
# |
# |
Line 1095 sub CreateInterface {
|
Line 1098 sub CreateInterface {
|
$Str .= &Apache::lonstatistics::SectionSelect('Section','multiple',5); |
$Str .= &Apache::lonstatistics::SectionSelect('Section','multiple',5); |
$Str .= '</td>'; |
$Str .= '</td>'; |
# |
# |
|
$Str .= '<td align="center">'."\n"; |
|
$Str .= &Apache::lonstatistics::GroupSelect('Group','multiple',5); |
|
$Str .= '</td>'; |
|
# |
$Str .= '<td align="center">'; |
$Str .= '<td align="center">'; |
$Str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,5); |
$Str .= &Apache::lonhtmlcommon::StatusOptions(undef,undef,5); |
$Str .= '</td>'; |
$Str .= '</td>'; |