File:  [LON-CAPA] / loncom / interface / Attic / lonchart.pm
Revision 1.36: download - view: text, annotated - select for diffs
Sat Mar 2 01:44:00 2002 UTC (22 years, 3 months ago) by minaeibi
Branches: MAIN
CVS tags: HEAD
Added choosing the student status

    1: # The LearningOnline Network with CAPA
    2: # (Publication Handler
    3: #
    4: # $Id: lonchart.pm,v 1.36 2002/03/02 01:44:00 minaeibi Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: # Homework Performance Chart
   29: #
   30: # (Navigate Maps Handler
   31: #
   32: # (Page Handler
   33: #
   34: # (TeX Content Handler
   35: # YEAR=2000
   36: # 05/29/00,05/30 Gerd Kortemeyer)
   37: # 08/30,08/31,09/06,09/14,09/15,09/16,09/19,09/20,09/21,09/23,
   38: # 10/02,10/10,10/14,10/16,10/18,10/19,10/31,11/6,11/14,11/16 Gerd Kortemeyer)
   39: # YEAR=2001
   40: # 3/1/1,6/1,17/1,29/1,30/1,31/1 Gerd Kortemeyer)
   41: # 7/10/01 Behrouz Minaei
   42: # 9/8 Gerd Kortemeyer
   43: # 10/1, 10/19, 11/17, 11/22, 11/24, 11/28 12/18 Behrouz Minaei
   44: # YEAR=2002
   45: # 2/1, 2/6, 2/19, 2/28 Behrouz Minaei
   46: #
   47: ###
   48: 
   49: package Apache::lonchart;
   50: 
   51: use strict;
   52: use Apache::Constants qw(:common :http);
   53: use Apache::lonnet();
   54: use Apache::loncommon();
   55: use HTML::TokeParser;
   56: use GDBM_File;
   57: 
   58: # -------------------------------------------------------------- Module Globals
   59: my %hash;
   60: my %CachData;
   61: my @cols;
   62: my @rowlabels;
   63: my @students;
   64: my @PreCol;
   65: my $r;
   66:  
   67: # ------------------------------------------------------------- Find out status
   68: 
   69: sub ExtractStudentData {
   70:     my ($index,$coid)=@_;
   71:     my ($sname,$sdom) = split( /\:/, $students[$index] );
   72:     my $shome=&Apache::lonnet::homeserver( $sname,$sdom );          
   73:     my $reply=&Apache::lonnet::reply('dump:'.$sdom.':'.$sname.':'.$coid,$shome );
   74:     my %result=();
   75:     my $ResId;
   76:     my $Code;
   77:     my $Tries;
   78:     my $Wrongs;
   79:     my %TempHash;
   80:     my $Version;
   81:     my $ProbNo;
   82:     my $ProbSolved;
   83:     my $ProbTotal;
   84:     my $LatestVersion;                     
   85:     my $Str=substr($students[$index].
   86:             '                                                        ',0,14).' ! '.
   87:             substr($rowlabels[$index].
   88:             '                                                        ',0,45).' ! ';
   89:     unless ($reply=~/^error\:/) {
   90:         foreach (split(/\&/,$reply)) {
   91:             my ($name,$value)=split(/\=/,&Apache::lonnet::unescape($_));
   92:             $result{$name}=$value;
   93:         }
   94: 	$ProbNo = 0;
   95: 	$ProbTotal = 0;
   96:         $ProbSolved = 0;
   97: 	my $IterationNo = 0;
   98:         foreach $ResId (@cols) {
   99: 	    if ($IterationNo == 0) {$IterationNo++; next;}
  100: 	    if (!$ResId) { 
  101: 		my $PrNo = sprintf( "%3d", $ProbNo );
  102: 		$Str .= ' '.'<font color="#007700">'.$PrNo.'</font> ';
  103: 		$ProbSolved += $ProbNo;
  104: 		$ProbNo=0;
  105: 		next; 
  106: 	    }
  107:             $ResId=~/(\d+)\.(\d+)/;
  108: 	    my $meta=$hash{'src_'.$ResId};
  109: 	    my $PartNo = 0;
  110: 	    undef %TempHash;
  111: 	    foreach (split(/\,/,&Apache::lonnet::metadata($meta,'keys'))) {
  112: 		if ($_=~/^stores\_(\d+)\_tries$/) {
  113:                     my $Part=&Apache::lonnet::metadata($meta,$_.'.part');
  114: 		    if ( $TempHash{"$Part"} eq '' ) { 
  115: 			$TempHash{"$Part"} = $Part;
  116: 			$TempHash{$PartNo}=$Part;
  117: 			$TempHash{"$Part.Code"} = ' ';  
  118: 			$PartNo++;
  119: 		    }
  120: 		}
  121:             }
  122: 
  123:             my $Prob = &Apache::lonnet::declutter( $hash{'map_id_'.$1} ).
  124:                        '___'.$2.'___'.
  125:                        &Apache::lonnet::declutter( $hash{'src_'.$ResId} );
  126:             $Code=' ';
  127:             $Tries = 0;
  128:   	    $LatestVersion = $result{"version:$Prob"};
  129: 
  130:             if ( $LatestVersion ) {
  131: 		for ( my $Version=1; $Version<=$LatestVersion; $Version++ ) {
  132: 		    my $vkeys = $result{"$Version:keys:$Prob"};
  133: 		    my @keys = split(/\:/,$vkeys);		  
  134: 
  135: 		    foreach my $Key (@keys) {		  
  136: 			if (($Key=~/\.(\w+)\.solved$/) && ($Key!~/^\d+\:/)) {
  137: 			    my $Part = $1;
  138: 			    $Tries = $result{"$Version:$Prob:resource.$Part.tries"};
  139: 			    $TempHash{"$Part.Tries"}=($Tries) ? $Tries : 0;
  140: 			    my $Val = $result{"$Version:$Prob:resource.$Part.solved"};
  141: 			    if ($Val eq 'correct_by_student'){$Code='*';} 
  142: 			    elsif ($Val eq 'correct_by_override'){$Code = '+';}                        
  143: 			    elsif ($Val eq 'incorrect_attempted'){$Code = '.';} 
  144: 			    elsif ($Val eq 'incorrect_by_override'){$Code = '-';}
  145: 			    elsif ($Val eq 'excused'){$Code = 'x';}
  146: 			    elsif ($Val eq 'ungraded_attempted'){$Code = '#';}
  147: 			    else {$Code = ' ';}
  148: 			    $TempHash{"$Part.Code"} = $Code;
  149: 			}
  150:       		    }
  151:                 } 
  152: 		for ( my $n = 0; $n < $PartNo; $n++ ) {		  
  153: 		    my $part = $TempHash{$n};
  154: 		    my $Code = $TempHash{"$part.Code"};
  155:                     if ( $Code eq '*') {
  156: 			$ProbNo++;
  157:                         if (($TempHash{"$part.Tries"}<10) ||
  158:                             ($TempHash{"$part.Tries"} eq '')) {
  159: 			    $TempHash{"$part.Code"}=$TempHash{"$part.Tries"};
  160: 			}
  161:                     }
  162: 		    elsif ( $Code eq '+' ) {$ProbNo++;}
  163: 		    $Str .= $TempHash{"$part.Code"};
  164: 		    if ( $Code ne 'x' ) {$ProbTotal++;}
  165: 		}
  166:             }   
  167: 	    else {
  168: 		for(my $n=0; $n<$PartNo; $n++) {
  169: 		    $Str.=' ';
  170: 		    $ProbTotal++;
  171: 		}
  172: 	    }
  173:         } 
  174:     }
  175:     my $PrTot = sprintf( "%5d", $ProbTotal );
  176:     my $PrSvd = sprintf( "%5d", $ProbSolved );
  177:     $Str .= ' '.'<font color="#000088">'.$PrSvd.'  /'.$PrTot.'</font> ';
  178: 
  179:     return $Str ;
  180: }
  181: 
  182: 
  183: # ------------------------------------------------------------ Build page table
  184: 
  185: sub tracetable {
  186:     my ($rid,$beenhere)=@_;
  187:     unless ($beenhere=~/\&$rid\&/) {
  188:        $beenhere.=$rid.'&';  
  189: # new ... updating the map according to sequence and page
  190:        if (defined($hash{'is_map_'.$rid})) {
  191: 	   my $cmap=$hash{'map_type_'.$hash{'map_pc_'.$hash{'src_'.$rid}}};
  192:            if ( $cmap eq 'sequence' || $cmap eq 'page' ) { 
  193:                $cols[$#cols+1]=0; 
  194:            }
  195:            if ((defined($hash{'map_start_'.$hash{'src_'.$rid}})) &&
  196:                (defined($hash{'map_finish_'.$hash{'src_'.$rid}}))) {
  197:               my $frid=$hash{'map_finish_'.$hash{'src_'.$rid}};
  198: 
  199:                 &tracetable($hash{'map_start_'.$hash{'src_'.$rid}},
  200:                 '&'.$frid.'&');
  201: 
  202:               if ($hash{'src_'.$frid}) {
  203:                  if ($hash{'src_'.$frid}=~
  204:                                  /\.(problem|exam|quiz|assess|survey|form)$/) {
  205: 		     $cols[$#cols+1]=$frid;
  206:                  }
  207: 	      }
  208: 
  209: 	   }
  210:        } else {
  211:           if ($hash{'src_'.$rid}) {
  212:              if ($hash{'src_'.$rid}=~
  213:                                  /\.(problem|exam|quiz|assess|survey|form)$/) {
  214: 	         $cols[$#cols+1]=$rid;
  215:              }
  216:           }
  217:        }
  218:        if (defined($hash{'to_'.$rid})) {
  219:           foreach (split(/\,/,$hash{'to_'.$rid})){
  220:               &tracetable($hash{'goesto_'.$_},$beenhere);
  221:           }
  222:        }
  223:     }
  224: }
  225: 
  226: 
  227: sub usection2 {
  228:     my ($udom,$unam,$courseid,$ActiveFlag)=@_;
  229:     $courseid=~s/\_/\//g;
  230:     $courseid=~s/^(\w)/\/$1/;
  231:     foreach my $elem(split(/\&/,&Apache::lonnet::reply('dump:'.$udom.':'.$unam.':roles',
  232:                      &Apache::lonnet::homeserver($unam,$udom)))) {
  233:         my ($key,$value)=split(/\=/,$elem);
  234:         $key=&Apache::lonnet::unescape($key);
  235:         if ($key=~/^$courseid(?:\/)*(\w+)*\_st$/) {
  236:             my $section=$1;
  237:             if ($key eq $courseid.'_st') { $section=''; }
  238: 	    my ($dummy,$end,$start)=split(/\_/,&Apache::lonnet::unescape($value));
  239:             my $now=time;
  240:             my $notactive=0;
  241:             if ($start) {
  242: 		if ($now<$start) { $notactive=1; }
  243:             }
  244:             if ($end) {
  245:                 if ($now>$end) { $notactive=1; }
  246:             } 
  247: 	    if ($ActiveFlag == 1) { $notactive=0; }
  248:             unless ($notactive) { return $section; }
  249:         }
  250:     }
  251:     return '-1';
  252: }
  253: 
  254: 
  255: sub usection {
  256:     my ($udom,$unam,$courseid,$ActiveFlag)=@_;
  257:     $courseid=~s/\_/\//g;
  258:     $courseid=~s/^(\w)/\/$1/;
  259:     foreach (split(/\&/,&Apache::lonnet::reply('dump:'.
  260:              $udom.':'.$unam.':roles',
  261:              &Apache::lonnet::homeserver($unam,$udom)))){
  262:         my ($key,$value)=split(/\=/,$_);
  263:         $key=&Apache::lonnet::unescape($key);
  264:         if ($key=~/^$courseid(?:\/)*(\w+)*\_st$/) {
  265:             my $section=$1;
  266:             if ($key eq $courseid.'_st') { $section=''; }
  267: 	    my ($dummy,$end,$start)=split(/\_/,&Apache::lonnet::unescape($value));
  268: 	    if ( $ActiveFlag ne 'Any' ) {
  269: 		my $now=time;
  270: 		my $notactive=0;
  271: 		if ($start) {
  272: 		    if ($now<$start) { $notactive=1; }
  273: 		}
  274: 		if ($end) {
  275: 		    if ($now>$end) { $notactive=1; }
  276: 		}
  277: 		if ((($ActiveFlag eq 'Expired') && $notactive == 1) || 
  278:                     (($ActiveFlag eq 'Active') && $notactive == 0 ) ) {
  279: 		    return $section;
  280: 		}
  281: 		else { return '-1'; } 
  282: 	    }
  283: 	    return $section;
  284:         }
  285:     }
  286:     return '-1';
  287: }
  288: 
  289: sub BuildChart {
  290: # ----------------------- Get first and last resource, see if there is anything
  291:     my $firstres=$hash{'map_start_/res/'.$ENV{'request.course.uri'}};
  292:     my $lastres=$hash{'map_finish_/res/'.$ENV{'request.course.uri'}};
  293:     if (($firstres) && ($lastres)) {
  294: # ----------------------------------------------------------------- Render page
  295: 	my $cid=$ENV{'request.course.id'};
  296:         my $chome=$ENV{'course.'.$cid.'.home'};
  297:         my ($cdom,$cnum)=split(/\_/,$cid);
  298: # ---------------------------------------------- Read class list and row labels
  299: 	my $classlst=&Apache::lonnet::reply
  300:                             ('dump:'.$cdom.':'.$cnum.':classlist',$chome);
  301: 	my $now=time;
  302: 	unless ($classlst=~/^error\:/) {
  303: 	    foreach my $KeyPoint(sort split(/\&/,$classlst)) {
  304: 		my ($name,$value)=split(/\=/,$KeyPoint);
  305: 		my ($end,$start)=split(/\:/,&Apache::lonnet::unescape($value));
  306: 		my $active=1;
  307: 		my $Status=$ENV{'form.status'};
  308: 		$Status = ($Status) ? $Status : 'Active';
  309: 		if ( ( ($end) && $now > $end ) && 
  310:                      ( ($Status eq 'Active') ) ) { $active=0; }
  311: 		
  312: 		if ( ($Status eq 'Expired') && 
  313:                      ($end == 0 || $now < $end) ) { $active=0; }
  314: 
  315: 		if ($active) {
  316: 		    my $thisindex=$#students+1;
  317: 		    $name=&Apache::lonnet::unescape($name);
  318: 		    $students[$thisindex]=$name;
  319: 		    my ($sname,$sdom)=split(/\:/,$name);
  320: 		    $PreCol[$thisindex]=$sname.':';
  321: 		    my $ssec=&usection($sdom,$sname,$cid,$Status);
  322: 		    if ($ssec==-1) {
  323: 			$rowlabels[$thisindex]=
  324: 			    'Data not available: '.$name;
  325: 		    } 
  326:                     else {
  327: 			my %reply=&Apache::lonnet::idrget($sdom,$sname);
  328: 			my $reply=&Apache::lonnet::reply('get:'.$sdom.':'.$sname.
  329:                                   ':environment:lastname&generation&firstname&middlename',
  330:                                   &Apache::lonnet::homeserver($sname,$sdom));
  331: 			#$ssec=(int($ssec)) ? int($ssec) : $ssec;
  332: 			my $sec=sprintf('%3s',$ssec);
  333: 			$rowlabels[$thisindex]=$sec.' '.$reply{$sname}.' ';
  334: 			$PreCol[$thisindex] .= $reply.':'.$sec;
  335: 			my $i=0;
  336: 			foreach (split(/\&/,$reply)) {
  337: 			    $i++;
  338: 			    if ( $_ ne '') {
  339: 				$rowlabels[$thisindex].=&Apache::lonnet::unescape($_).' ';
  340: 			    }
  341: 			    if ($i == 2) {
  342: 				chop($rowlabels[$thisindex]);
  343: 				$rowlabels[$thisindex].=', ';
  344: 			    }
  345: 			}
  346: 		    }
  347: 		}
  348: 	    }
  349: 
  350: 	} else {
  351: 	    $r->print('<h1>Could not access course data</h1>');
  352: 	}
  353: 
  354: 	my $allstudents=$#students+1;
  355: 	$r->print('<h3>'.$allstudents.' students</h3>');
  356: 	&CreateForm();
  357: 	$r->rflush();
  358: 
  359: # --------------- Find all assessments and put them into some linear-like order
  360: 	&tracetable($firstres,'&'.$lastres.'&');
  361: # ----------------------------------------------------------------- Start table
  362: 
  363:         $r->print('<p><pre>');
  364:  	my $index;
  365:         for ($index=0;$index<=$#students;$index++) {
  366: 	    my $Str=&ExtractStudentData($index,$cid);
  367: 	    $r->print($Str.'<br>');
  368:             $r->rflush();
  369: 	    $CachData{$PreCol[$index]}=$Str;
  370:         }
  371:         $r->print('</pre>');
  372:     } else {
  373: 	$r->print('<h3>Undefined course sequence</h3>');
  374:     }
  375: }
  376: 
  377: sub CreateForm {
  378:     my $OpSel1='';
  379:     my $OpSel2='';
  380:     my $OpSel3='';
  381:     my $Status = $ENV{'form.status'};
  382:     if ( $Status eq 'Any' ) { $OpSel3='selected'; }
  383:     elsif ($Status eq 'Expired' ) { $OpSel2 = 'selected'; }
  384:     else { $OpSel1 = 'selected'; }
  385: 
  386:     my $Ptr = '<form name=stat method=post action="/adm/chart" >'."\n";
  387:     $Ptr .= '<b> Sort by: &nbsp; </b>'."\n";
  388:     $Ptr .= '&nbsp;&nbsp;&nbsp;';
  389:     $Ptr .= '<input type=submit name=sort value="User Name" />'."\n";
  390:     $Ptr .= '&nbsp;&nbsp;&nbsp;';
  391:     $Ptr .= '<input type=submit name=sort value="Last Name" />'."\n";
  392:     $Ptr .= '&nbsp;&nbsp;&nbsp;';
  393:     $Ptr .= '<input type=submit name=sort value="Section"/>'."\n";
  394:     $Ptr .= '<br><br>';
  395:     $Ptr .= '<b> Student Status: &nbsp; </b>'."\n".
  396:             '<select name="status">'. 
  397:             '<option '.$OpSel1.' >Active</option>'."\n".
  398:             '<option '.$OpSel2.' >Expired</option>'."\n".
  399: 	    '<option '.$OpSel3.' >Any</option> </select> '."\n";
  400:     $Ptr .= '&nbsp;&nbsp;&nbsp;';
  401:     $Ptr .= '<input type=submit name=sort value="Recalculate Chart"/>'."\n";
  402:     $Ptr .= '</form>'."\n";
  403:     $r->print( $Ptr );
  404: }
  405: 
  406: sub CacheChart {
  407:     my %list = ();
  408:     my $count=0;
  409: 
  410:     my $Pos = $ENV{'form.sort'};
  411:     if ( $Pos eq 'Last Name' ) {$Pos=1;}
  412:     elsif ( $Pos eq 'Section' ) {$Pos=2;}
  413:     else {$Pos=0;}
  414: 
  415:     foreach my $key( keys %CachData) { 
  416: 	my @Temp=split(/\:/,$key);
  417: 	my $Use = $Temp[$Pos];
  418: 	$list{$Use.$key}=$key;
  419: 	$count++;
  420:     }
  421: 
  422:     my @order = sort(keys(%list));
  423: 
  424:     $r->print('<h3>'.$count.' students</h3>');
  425:     &CreateForm();
  426:     $r->rflush();
  427:     
  428:     $r->print('<p><pre>');
  429:     for ( my $n; $n < $count; $n++) {
  430: 	$r->print($CachData{$list{$order[$n]}}.'<br>');
  431:     }	
  432:     $r->print('</pre>');
  433: }
  434: 
  435: sub Start {
  436:     undef %hash;
  437:     undef %CachData;
  438:     undef @students;
  439:     undef @cols;
  440:     undef @rowlabels;
  441:     undef @PreCol;
  442: 
  443:     $r->print('<html><head><title>'.
  444:               'LON-CAPA Assessment Chart</title></head>');
  445:     $r->print('<body bgcolor="#FFFFFF">'.
  446:               '<script>window.focus();</script>'.
  447:               '<img align=right src=/adm/lonIcons/lonlogos.gif>'.
  448:               '<h1>Assessment Chart</h1>');
  449: # ---------------------------------------------------------------- Course title
  450:     $r->print('<h1>'.$ENV{'course.'.$ENV{'request.course.id'}.
  451:               '.description'}.'</h1><h3>'.localtime().
  452:               "</h3><p><pre>1..9: correct by student in 1..9 tries\n".
  453:               "   *: correct by student in more than 9 tries\n".
  454: 	      "   +: correct by override\n".
  455:               "   -: incorrect by override\n".
  456: 	      "   .: incorrect attempted\n".
  457: 	      "   #: ungraded attempted\n".
  458:               "    : not attempted\n".
  459: 	      "   x: excused</pre><p>"); 
  460: # ------------------------------- This is going to take a while, produce output
  461:     $r->rflush();
  462: 
  463:     my $cid=$ENV{'request.course.id'};
  464:     my $ChartDB = "/home/httpd/perl/tmp/$ENV{'user.name'}".
  465:                   "_$ENV{'user.domain'}_$cid\_chart.db";
  466: 
  467:     if ((-e "$ChartDB") && ($ENV{'form.sort'} ne 'Recalculate Chart')) {
  468: 	if (tie(%CachData,'GDBM_File',"$ChartDB",&GDBM_READER,0640)) {
  469: 	    &CacheChart();
  470: 	}
  471: 	else {
  472: 	    $r->print("Unable to tie hash to db file");
  473: 	}
  474:     }
  475:     else {
  476: 	if (tie(%CachData,'GDBM_File',$ChartDB,&GDBM_WRCREAT,0640)) {
  477: 	    foreach (keys %CachData) {delete $CachData{$_};}
  478: 	    &BuildChart();
  479: 	}
  480: 	else {
  481: 	    $r->print("Unable to tie hash to db file");
  482: 	}
  483:     }
  484:     untie(%CachData);
  485: }
  486: 
  487: # ================================================================ Main Handler
  488: 
  489: sub handler {
  490:     $r=shift;
  491:     if (&Apache::lonnet::allowed('vgr',$ENV{'request.course.id'})) {
  492: # ------------------------------------------- Set document type for header only
  493: 	if ($r->header_only) {
  494: 	    if ($ENV{'browser.mathml'}) {
  495: 		$r->content_type('text/xml');
  496: 	    } else {
  497: 		$r->content_type('text/html');
  498: 	    }
  499: 	    &Apache::loncommon::no_cache($r);
  500: 	    $r->send_http_header;
  501: 	    return OK;
  502: 	}
  503: 
  504: 	my $requrl=$r->uri;
  505: # ----------------------------------------------------------------- Tie db file
  506: 	if ($ENV{'request.course.fn'}) {
  507: 	    my $fn=$ENV{'request.course.fn'};
  508: 	    if (-e "$fn.db") {
  509: 		if (tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER,0640)) {
  510: # ------------------------------------------------------------------- Hash tied
  511: # ---------------------------------------------------------------- Send headers
  512: 		    $r->content_type('text/html');
  513: 		    $r->send_http_header;
  514: 		    &Start();
  515: 		    $r->print('</body></html>');                 
  516: # ------------------------------------------------------------- End render page
  517: 		} else {
  518: 		    $r->content_type('text/html');
  519: 		    $r->send_http_header;
  520: 		    $r->print('<html><body>Coursemap undefined.</body></html>');
  521: 		}
  522: # ------------------------------------------------------------------ Untie hash
  523: 		unless (untie(%hash)) {
  524: 		    &Apache::lonnet::logthis("<font color=blue>WARNING: ".
  525: 			     "Could not untie coursemap $fn (browse).</font>"); 
  526: 		}
  527: 
  528: # -------------------------------------------------------------------- All done
  529: 		return OK;
  530: # ----------------------------------------------- Errors, hash could no be tied
  531: 	    }
  532: 	} else {
  533: 	    $ENV{'user.error.msg'}="$requrl:bre:0:0:Course not initialized";
  534: 	    return HTTP_NOT_ACCEPTABLE; 
  535: 	}
  536:     } else {
  537: 	$ENV{'user.error.msg'}=
  538:         $r->uri.":vgr:0:0:Cannot view grades for complete course";
  539: 	return HTTP_NOT_ACCEPTABLE; 
  540:     }
  541: }
  542: 1;
  543: __END__

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>