--- loncom/interface/lonstatistics.pm 2002/05/14 23:17:06 1.18
+++ loncom/interface/lonstatistics.pm 2002/05/16 01:27:05 1.19
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# (Publication Handler
#
-# $Id: lonstatistics.pm,v 1.18 2002/05/14 23:17:06 minaeibi Exp $
+# $Id: lonstatistics.pm,v 1.19 2002/05/16 01:27:05 minaeibi Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -31,7 +31,7 @@
# 11/1,11/4,11/16,12/14,12/16,12/18,12/20,12/31 Behrouz Minaei
# YEAR=2002
# 1/22,2/1,2/6,2/25,3/2,3/6,3/17,3/21,3/22,3/26,4/7,5/6 Behrouz Minaei
-# 5/12, 5/14 Behrouz Minaei
+# 5/12, 5/14, 5/15 Behrouz Minaei
#
###
@@ -119,6 +119,7 @@ sub InitAnalysis {
foreach my $concept (@{$Answer{"$parts.concepts"}}) {
foreach my $foil (@{$Answer{"$parts.concept.$concept"}}) {
$foil_to_concept{$foil} = $concept;
+ #$ConceptData{$foil} = $Answer{"$parts.foil.value.$foil"};
}
}
return $symb;
@@ -150,7 +151,9 @@ sub ShowOpGraph {
my ($InpStr, $Int_No)=@_;
my ($rid,$part)=split(/\:/,substr($InpStr,8));
$ConceptData{"Interval"}=$Int_No;
+ #Initialize the option response true answers
my $symb=&InitAnalysis($rid,$students[0]);
+ #compute the intervals
&Interval($rid,$part,$symb);
my $URI = $hash{'src_'.$rid};
my $Src = $hash{'title_'.$rid};
@@ -158,6 +161,7 @@ sub ShowOpGraph {
$r->print('
'.$URI.'');
$r->rflush();
+ #Java script Progress window
&Create_PrgWin();
&Update_PrgWin("Starting to analyze problem");
for (my $index=0;$index<=$#students;$index++) {
@@ -166,6 +170,7 @@ sub ShowOpGraph {
}
&Close_PrgWin();
+ $r->print('
');
for (my $k=0; $k<$Int_No; $k++ ) {
&DrawGraph($k,$Src);
}
@@ -218,34 +223,35 @@ sub DrawGraph {
"\n"."
".$data2[$n]." | ".
"\n"."";
}
- $Str.=' | From:['.localtime($ConceptData{'Int.'.($k-1)}).
- '] To: ['.localtime($ConceptData{"Int.$k"}).
- "] | $Correct | $Wrong | ";
+#$Apache::lonxml::debug=1;
+#&Apache::lonhomework::showhash(%ConceptData);
+#$Apache::lonxml::debug=0;
+
+# $Str.=' | From:['.localtime($ConceptData{'Int.$k'}).
+# '] To: ['.localtime($ConceptData{'Int.'.($k+1)}).
+# "] | $Correct | $Wrong | ";#
$Str .= "\n".'';
- $r->print($Str);
+# $r->print($Str);
if ( $Max > 1 ) {
$Max += (10 - $Max % 10);
$Max = int($Max);
} else { $Max = 1; }
- if ( $Max > 1 ) {
- $Max += (10 - $Max % 10);
- $Max = int($Max);
- } else { $Max = 1; }
- my $Titr=($ConceptData{'Interval'}>1) ? $Src.'_interval_'.$k : $Src;
+
+ my $Titr=($ConceptData{'Interval'}>1) ? $Src.'_interval_'.($k+1) : $Src;
# $GData=$Titr.'&Concepts'.'&'.'Answers'.'&'.$Max.'&'.$P_No.'&'.$data1.'&'.$data2;
$GData="$Titr&Concepts&Answers&$Max&$P_No&".
(join(',',@data1)).'&'.(join(',',@data2));
- $r->print('
');
+ $r->print('');
}
sub AnalyzeProblem {
-# -------------------------------- Selecting the number of intervals
+ # selecting the number of intervals
my $OpSel='';
my $CurInt = $ENV{'form.interval'};
if ($CurInt eq '') {$CurMap = '1';}
@@ -259,6 +265,7 @@ sub AnalyzeProblem {
$Ptr .= ''."\n";
$r->print( $Ptr );
+ #the table of option response problems
$r->print('
Option Response Problems in this course:
');
my $Str = "\n".''.
"\n".''.
@@ -289,6 +296,7 @@ sub AnalyzeProblem {
sub Decide {
+ #deciding the true or false answer belongs to each interval
my ($type,$foil,$time)=@_;
my $k=0;
while ($time>$ConceptData{'Int.'.($k+1)} &&
@@ -297,6 +305,7 @@ sub Decide {
}
+#restore the student submissions and finding the result
sub OpStatus {
my ($rid,$student)=@_;
my ($uname,$udom)=split(/\:/,$student);
@@ -573,6 +582,7 @@ sub CloseTable {
# ------------------------------------------- Prepare Statistics Table
sub PreStatTable {
+
my $CacheDB = "/home/httpd/perl/tmp/$ENV{'user.name'}".
"_$ENV{'user.domain'}_$cid\_statistics.db";
my $GraphDB = "/home/httpd/perl/tmp/$ENV{'user.name'}".
@@ -995,7 +1005,6 @@ sub Build_Statistics {
@list = sort (@list);
-
&Discriminant();
$OpSel2='';
@@ -1136,6 +1145,8 @@ sub Cache_Statistics {
my $Useful;
my $UnUseful;
my %myHeader = reverse( %Header );
+ #&Apache::lonnet::delenv('form_');
+ #&Apache::lonnet::delenv('test');
$Pos = $myHeader{$ENV{'form.sort'}};
if ($Pos > 0) {$Pos++;}
$p_count = 0;
@@ -1295,6 +1306,26 @@ sub initial {
$HWN=$P_Order;
}
+# my $CacheDB = "/home/httpd/perl/tmp/$ENV{'user.name'}".
+# "_$ENV{'user.domain'}_$cid\_classlist.db";
+# if (-e "$CacheDB") {
+# if (tie(%students,'GDBM_File',"$CacheDB",&GDBM_READER,0640)) {
+# &CachClassList();
+# }
+# else {
+# $r->print("Unable to tie hash to db file");
+# }
+# }
+# else {
+# if (tie(%students,'GDBM_File',$CacheDB,&GDBM_WRCREAT,0640)) {
+# &MakeClassList();
+# }
+# else {
+# $r->print("Unable to tie hash to db file");
+# }
+# }
+# untie(%students);
+
sub ClassList {
@@ -1307,34 +1338,37 @@ sub ClassList {
$firstres=$hash{'map_start_/res/'.$ENV{'request.course.uri'}};
$lastres=$hash{'map_finish_/res/'.$ENV{'request.course.uri'}};
if (($firstres) && ($lastres)) {
- #my %result = &Apache::lonnet::dump('classlist',$sdom,$sname);
+# my %students = &Apache::lonnet::dump('classlist',$cdom,$cnum);
+# $Apache::lonxml::debug=1;
+# &Apache::lonhomework::showhash(%students);
+# $Apache::lonxml::debug=0;
+# my $StudNo = 0;
+# my $now=time;
+# my ($temp)=keys(%students);
+# unless ($temp=~/^error\:/) {
+# foreach my $KeyPoint(sort keys(%students)) {
my $classlst=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.':classlist',$chome);
my $StudNo = 0;
my $now=time;
unless ($classlst=~/^error\:/) {
- foreach (sort split(/\&/,$classlst)) {
- my ($name,$value)=split(/\=/,$_);
+ foreach my $KeyPoint(sort split(/\&/,$classlst)) {
+ my ($name,$value)=split(/\=/,$KeyPoint);
my ($end,$start)=split(/\:/,&Apache::lonnet::unescape($value));
- $name=&Apache::lonnet::unescape($name);
- my ($sname,$sdom)=split(/\:/,$name);
my $active=1;
my $Status=$ENV{'form.status'};
$Status = ($Status) ? $Status : 'Active';
if ( ( ($end) && $now > $end ) &&
( ($Status eq 'Active') ) ) { $active=0; }
+
if ( ($Status eq 'Expired') &&
($end == 0 || $now < $end) ) { $active=0; }
+
if ($active) {
my $thisindex=$#students+1;
$name=&Apache::lonnet::unescape($name);
$students[$thisindex]=$name;
my ($sname,$sdom)=split(/\:/,$name);
- #my %reply=&Apache::lonnet::idrget($sdom,$sname);
- #my $reply=&Apache::lonnet::reply('get:'.$sdom.':'.$sname.
- # ':environment:lastname&generation&firstname&middlename',
- # &Apache::lonnet::homeserver($sname,$sdom));
my $ssec=&usection($sdom,$sname,$cid,$Status);
-# if ($ssec==-1 ) {next;}
if ($ssec==-1 || $ssec eq 'adm' ) {next;}
$ssec=($ssec) ? $ssec : '(none)';
#$ssec=(int($ssec)) ? int($ssec) : $ssec;
@@ -1374,6 +1408,74 @@ sub ClassList {
}
+sub ClassListnew {
+
+ &GetStatus();
+
+ $cid=$ENV{'request.course.id'};
+ my $chome=$ENV{'course.'.$cid.'.home'};
+ my ($cdom,$cnum)=split(/\_/,$cid);
+# ----------------------- Get first and last resource, see if there is anything
+ $firstres=$hash{'map_start_/res/'.$ENV{'request.course.uri'}};
+ $lastres=$hash{'map_finish_/res/'.$ENV{'request.course.uri'}};
+ if (($firstres) && ($lastres)) {
+
+ my %students = &Apache::lonnet::dump('classlist',$cdom,$cnum);
+ my $StudNo = 0;
+ my $now=time;
+ my ($temp)=keys(%students);
+ unless ($temp=~/^error\:/) {
+ foreach (sort keys(%students)) {
+ my ($name,$value)=split(/\=/,$_);
+ my ($end,$start)=split(/\:/,&Apache::lonnet::unescape($value));
+ $name=&Apache::lonnet::unescape($name);
+ my ($sname,$sdom)=split(/\:/,$name);
+ my $active=1;
+ my $Status=$ENV{'form.status'};
+ $Status = ($Status) ? $Status : 'Active';
+ if ( ( ($end) && $now > $end ) &&
+ ( ($Status eq 'Active') ) ) { $active=0; }
+ if ( ($Status eq 'Expired') &&
+ ($end == 0 || $now < $end) ) { $active=0; }
+ if ($active) {
+ my $thisindex=$#students+1;
+ $name=&Apache::lonnet::unescape($name);
+ $students[$thisindex]=$name;
+ my ($sname,$sdom)=split(/\:/,$name);
+ #my %reply=&Apache::lonnet::idrget($sdom,$sname);
+ #my $reply=&Apache::lonnet::reply('get:'.$sdom.':'.$sname.
+ # ':environment:lastname&generation&firstname&middlename',
+ # &Apache::lonnet::homeserver($sname,$sdom));
+ my $ssec=&usection($sdom,$sname,$cid,$Status);
+# if ($ssec==-1 ) {next;}
+ if ($ssec==-1 || $ssec eq 'adm' ) {next;}
+ $ssec=($ssec) ? $ssec : '(none)';
+ #$ssec=(int($ssec)) ? int($ssec) : $ssec;
+ $section{$ssec}=$ssec;
+ if ($CurSec eq 'All Sections' || $ssec eq $CurSec) {
+ $students[$StudNo]=$name;
+ $StuBox{$sname}=$sdom;
+ }
+ $StudNo++;
+ }
+ }
+ }
+ else {
+ $r->print('Could not access course data
');
+ }
+ $r->print("Total number of students : ".($#students+1));
+ $r->rflush();
+# --------------- Find all assessments and put them into some linear-like order
+ &tracetable($firstres,'&'.$lastres.'&');
+ }
+
+# ------------------------------------------------------------- End render page
+ else {
+ $r->print('Undefined course sequence
');
+ }
+}
+
+
sub Title {
$r->print('LON-CAPA Statistics');
$r->print(''.
@@ -1387,10 +1489,12 @@ sub Title {
$r->rflush();
}
+
sub CreateForm {
$r->print("\n".'