version 1.17, 2002/12/11 21:39:57
|
version 1.22, 2003/06/18 17:34:02
|
Line 1
|
Line 1
|
# The LearningOnline Network with CAPA |
# The LearningOnline Network with CAPA |
# (Publication Handler |
|
# |
# |
# $Id$ |
# $Id$ |
# |
# |
Line 56 sub BuildProblemAnalysisPage {
|
Line 55 sub BuildProblemAnalysisPage {
|
$Ptr .= '<td align="left">'."\n"; |
$Ptr .= '<td align="left">'."\n"; |
my @sectionsSelected = split(':',$cache{'sectionsSelected'}); |
my @sectionsSelected = split(':',$cache{'sectionsSelected'}); |
my @sections = split(':',$cache{'sectionList'}); |
my @sections = split(':',$cache{'sectionList'}); |
$Ptr .= &Apache::lonhtmlcommon::MultipleSectionSelect(\@sections, |
$Ptr .= &Apache::lonstatistics::SectionSelect('Section','multiple',5); |
\@sectionsSelected, |
|
'Statistics'); |
|
$Ptr .= '</td></tr>'."\n"; |
$Ptr .= '</td></tr>'."\n"; |
$Ptr .= '<tr><td align="right"><b>Intervals</b></td>'."\n"; |
$Ptr .= '<tr><td align="right"><b>Intervals</b></td>'."\n"; |
$Ptr .= '<td align="left">'; |
$Ptr .= '<td align="left">'; |
Line 176 sub BuildAnalyzePage {
|
Line 173 sub BuildAnalyzePage {
|
$Str = ''; |
$Str = ''; |
if($c->aborted()) { untie(%cache); return; } |
if($c->aborted()) { untie(%cache); return; } |
|
|
&Apache::lonhtmlcommon::Create_PrgWin($r, $title, $heading); |
|
|
|
my $count=0; |
my %prog_state=&Apache::lonhtmlcommon::Create_PrgWin($r, $title, |
|
$heading,$#$students+1); |
|
|
#Java script Progress window |
#Java script Progress window |
for(my $index=0; $index<(scalar @$students); $index++) { |
for(my $index=0; $index<(scalar @$students); $index++) { |
if($c->aborted()) { untie(%cache); return; } |
if($c->aborted()) { untie(%cache); return; } |
$count++; |
&Apache::lonhtmlcommon::Increment_PrgWin($r,\%prog_state, |
my $displayString = $count.'/'.$studentCount.': '.$_; |
'last student '.$students->[$index]); |
&Apache::lonhtmlcommon::Update_PrgWin($displayString, $r); |
|
&OpStatus($problemId, $students->[$index], \%ConceptData, |
&OpStatus($problemId, $students->[$index], \%ConceptData, |
$analyzeData->{'foil_to_concept'}, $analyzeData, |
$analyzeData->{'foil_to_concept'}, $analyzeData, |
\%cache, $courseID); |
\%cache, $courseID); |
} |
} |
&Apache::lonhtmlcommon::Close_PrgWin($r); |
&Apache::lonhtmlcommon::Close_PrgWin($r,\%prog_state); |
|
|
$Str .= '<br>'; |
$Str .= '<br>'; |
for (my $k=0; $k<$interval; $k++ ) { |
for (my $k=0; $k<$interval; $k++ ) { |
Line 205 sub BuildAnalyzePage {
|
Line 202 sub BuildAnalyzePage {
|
$r->print($Str); |
$r->print($Str); |
$Str = ''; |
$Str = ''; |
} |
} |
my $Answ=&Apache::lonnet::ssi($uri); |
my $Answ=&Apache::lonnet::ssi_body($uri); |
$Str .= '<br><b>Here you can see the Problem:</b><br>'.$Answ; |
$Str .= '<br><b>Here you can see the Problem:</b><br>'.$Answ; |
$Str .= '<form>'; |
$Str .= '<form>'; |
$r->print($Str); |
$r->print($Str); |
Line 436 sub DrawGraph {
|
Line 433 sub DrawGraph {
|
$GData = $Titr.'&Concepts&Answers&'.$Max.'&'.$P_No.'&'; |
$GData = $Titr.'&Concepts&Answers&'.$Max.'&'.$P_No.'&'; |
$GData .= (join(',',@data1)).'&'.(join(',',@data2)); |
$GData .= (join(',',@data1)).'&'.(join(',',@data2)); |
|
|
return '<IMG src="/cgi-bin/graph.gif?'.$GData.'" border=1/>'; |
return '<IMG src="/cgi-bin/graph.png?'.$GData.'" border=1/>'; |
} |
} |
|
|
sub DrawTable { |
sub DrawTable { |