version 1.73, 2003/05/29 21:44:53
|
version 1.79, 2003/08/27 21:33:33
|
Line 519 sub PrepareCourseData {
|
Line 519 sub PrepareCourseData {
|
my $name_length = length($seq->{'title'}); |
my $name_length = length($seq->{'title'}); |
my $num_parts = $seq->{'num_assess_parts'}; |
my $num_parts = $seq->{'num_assess_parts'}; |
# |
# |
# The number of columns needed for the summation text: |
# Use 3 digits for each the sum and total, which means 7 total... |
# " 1/5" = 1+3 columns, " 10/99" = 1+5 columns |
my $num_col = $num_parts+7; |
my $sum_length = 1+1+2*(length($num_parts)); |
|
my $num_col = $num_parts+$sum_length; |
|
if ($num_col < $name_length) { |
if ($num_col < $name_length) { |
$num_col = $name_length; |
$num_col = $name_length; |
} |
} |
Line 799 sub SectionSelect {
|
Line 797 sub SectionSelect {
|
return $Str; |
return $Str; |
} |
} |
|
|
|
############################################### |
|
############################################### |
|
|
|
=pod |
|
|
|
=item &Gather_Student_Data() |
|
|
|
Ensures all student data is up to date. |
|
|
|
=cut |
|
|
|
############################################### |
|
############################################### |
|
sub Gather_Student_Data { |
|
my ($r) = @_; |
|
my $c = $r->connection(); |
|
# |
|
my @Sequences = &Apache::lonstatistics::Sequences_with_Assess(); |
|
# |
|
my @Students = @Apache::lonstatistics::Students; |
|
# |
|
# Open the progress window |
|
my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin |
|
($r,'Statistics Compilation Status', |
|
'Statistics Compilation Progress', scalar(@Students)); |
|
# |
|
while (my $student = shift @Students) { |
|
return if ($c->aborted()); |
|
my ($status,undef) = &Apache::loncoursedata::ensure_current_data |
|
($student->{'username'},$student->{'domain'}, |
|
$ENV{'request.course.id'}); |
|
&Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state, |
|
'last student'); |
|
} |
|
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
|
$r->rflush(); |
|
} |
|
|
################################################## |
################################################## |
################################################## |
################################################## |
sub DisplayClasslist { |
sub DisplayClasslist { |
Line 807 sub DisplayClasslist {
|
Line 843 sub DisplayClasslist {
|
my @Fields = ('fullname','username','domain','id','section'); |
my @Fields = ('fullname','username','domain','id','section'); |
# |
# |
my $Str=''; |
my $Str=''; |
|
if (! @Students) { |
|
if ($SelectedSections[0] eq 'all') { |
|
if (lc($ENV{'form.Status'}) eq 'any') { |
|
$Str .= '<h2>There are no students in the course.</h2>'; |
|
} elsif (lc($ENV{'form.Status'}) eq 'active') { |
|
$Str .= '<h2>There are no currently enrolled students in '. |
|
'the course.</h2>'; |
|
} elsif (lc($ENV{'form.Status'}) eq 'expired') { |
|
$Str .= '<h2>There are no previously enrolled '. |
|
'students in the course.</h2>'; |
|
} |
|
} else { |
|
my $sections; |
|
if (@SelectedSections == 1) { |
|
$sections = 'section '.$SelectedSections[0]; |
|
} elsif (@SelectedSections > 2) { |
|
$sections = 'sections '.join(', ',@SelectedSections); |
|
$sections =~ s/, ([^,])*$/, and $1/; |
|
} else { |
|
$sections = 'sections '.join(' and ',@SelectedSections); |
|
} |
|
if (lc($ENV{'form.Status'}) eq 'any') { |
|
$Str .= '<h2>There are no students in '.$sections.'.</h2>'; |
|
} elsif (lc($ENV{'form.Status'}) eq 'active') { |
|
$Str .= '<h2>There are no currently enrolled students '. |
|
'in '.$sections.'.</h2>'; |
|
} elsif (lc($ENV{'form.Status'}) eq 'expired') { |
|
$Str .= '<h2>There are no previously enrolled students '. |
|
'in '.$sections.'.</h2>'; |
|
} |
|
} |
|
$Str.= '<a href="/adm/statistics?reportSelected=student_assessment">'. |
|
'Return to the chart.</a>'; |
|
$r->print($Str); |
|
$r->rflush(); |
|
return; |
|
} |
|
|
|
# "Click" is asinine but it is probably not my place to change the world. |
|
$Str .= '<h2>Click on a students name or username to view their chart</h2>'; |
$Str .= '<table border="0"><tr><td bgcolor="#777777">'."\n"; |
$Str .= '<table border="0"><tr><td bgcolor="#777777">'."\n"; |
$Str .= '<table border="0" cellpadding="3"><tr bgcolor="#e6ffff">'."\n"; |
$Str .= '<table border="0" cellpadding="3"><tr bgcolor="#e6ffff">'."\n"; |
foreach my $field (@Fields) { |
foreach my $field (@Fields) { |
Line 827 sub DisplayClasslist {
|
Line 903 sub DisplayClasslist {
|
# |
# |
foreach my $field (@Fields) { |
foreach my $field (@Fields) { |
$Str .= '<td>'; |
$Str .= '<td>'; |
if ($field eq 'fullname') { |
if ($field eq 'fullname' || $field eq 'username') { |
$Str .= '<a href="/adm/statistics?reportSelected='; |
$Str .= '<a href="/adm/statistics?reportSelected='; |
$Str .= &Apache::lonnet::escape('student_assessment'); |
$Str .= &Apache::lonnet::escape('student_assessment'); |
$Str .= '&sort='.&Apache::lonnet::escape($ENV{'form.sort'}); |
$Str .= '&sort='.&Apache::lonnet::escape($ENV{'form.sort'}); |
Line 857 sub CreateMainMenu {
|
Line 933 sub CreateMainMenu {
|
# |
# |
my $Str = ''; |
my $Str = ''; |
# |
# |
$Str .= '<table border="0"><tbody><tr>'."\n"; |
$Str = '<input type="hidden" name="reportSelected" value="'.$current.'">'; |
$Str .= '<td></td>'."\n"; |
# $Str .= '<table border="0"><tbody><tr>'."\n"; |
$Str .= '<td align="center"><b>Select a Report</b></td>'."\n"; |
# $Str .= '<td align="center"><b>Report:</b></td>'."\n"; |
$Str .= '<td></td>'."\n"; |
# $Str .= '<td align="center">'; |
$Str .= '<td></td>'."\n"; |
# $Str .= '<select name="reportSelected" '. |
$Str .= '<tr>'."\n"; |
# 'onchange="document.Statistics.submit()">'."\n"; |
# |
# foreach (sort(keys(%$reports))) { |
$Str .= '<td align="center">'. |
# $Str .= '<option value="'.$_.'"'; |
'<input type="submit" name="Refresh" value="Update Display" />'. |
# if($current eq $_) { |
"</td>\n"; |
# $Str .= ' selected'; |
# |
# } |
$Str .= '<td align="center">'; |
# $Str .= '>'.$reports->{$_}.'</option>'."\n"; |
$Str .= '<select name="reportSelected" >'."\n"; |
# } |
foreach (sort(keys(%$reports))) { |
# $Str .= '</select></td>'."\n"; |
$Str .= '<option value="'.$_.'"'; |
# # |
if($current eq $_) { |
# $Str .= '<td>'.(' 'x30).'</td>'; |
$Str .= ' selected'; |
# $Str .= '<td align="center">'. |
} |
# '<input type="submit" name="ClearCache" value="Clear Caches" />'. |
$Str .= '>'.$reports->{$_}.'</option>'."\n"; |
# "</td>\n"; |
} |
# $Str .= '</tr></tbody></table>'."\n"; |
$Str .= '</select></td>'."\n"; |
# $Str .= '<hr>'."\n"; |
# |
|
$Str .= '<td>'.(' 'x30).'</td>'; |
|
$Str .= '<td align="center">'. |
|
'<input type="submit" name="ClearCache" value="Clear Caches" />'. |
|
"</td>\n"; |
|
$Str .= '</tr></tbody></table>'."\n"; |
|
$Str .= '<hr>'."\n"; |
|
# |
# |
return $Str; |
return $Str; |
} |
} |
Line 976 END
|
Line 1045 END
|
my %reports = ('classlist' => 'Class list', |
my %reports = ('classlist' => 'Class list', |
'problem_statistics' => 'Problem Statistics', |
'problem_statistics' => 'Problem Statistics', |
'student_assessment' => 'Problem Status Chart', |
'student_assessment' => 'Problem Status Chart', |
'percentage' => 'Correct-problems Plot', |
# 'percentage' => 'Correct-problems Plot', |
'option_response' => 'Option Response Analysis', |
# 'option_response' => 'Option Response Analysis', |
# 'activitylog' => 'Activity Log', |
# 'activitylog' => 'Activity Log', |
); |
); |
$r->print(&CreateMainMenu($ENV{'form.status'}, |
$r->print(&CreateMainMenu($ENV{'form.status'}, |
Line 995 END
|
Line 1064 END
|
&Apache::lonstudentassessment::BuildStudentAssessmentPage($r,$c); |
&Apache::lonstudentassessment::BuildStudentAssessmentPage($r,$c); |
} elsif($GoToPage eq 'DoDiffGraph' || $GoToPage eq 'PercentWrongGraph') { |
} elsif($GoToPage eq 'DoDiffGraph' || $GoToPage eq 'PercentWrongGraph') { |
# &Apache::lonproblemstatistics::BuildGraphicChart($r,$c); |
# &Apache::lonproblemstatistics::BuildGraphicChart($r,$c); |
} elsif($GoToPage eq 'classlist') { |
|
&DisplayClasslist($r); |
|
} elsif($GoToPage eq 'Correct-problems Plot') { |
} elsif($GoToPage eq 'Correct-problems Plot') { |
# &Apache::lonpercentage::BuildPercentageGraph($r,$c); |
# &Apache::lonpercentage::BuildPercentageGraph($r,$c); |
} |
} |