Diff for /loncom/interface/lonparmset.pm between versions 1.12 and 1.43

version 1.12, 2000/11/25 19:57:17 version 1.43, 2002/02/12 00:14:07
Line 1 Line 1
 # The LearningOnline Network with CAPA  # The LearningOnline Network with CAPA
 # Handler to set parameters for assessments  # Handler to set parameters for assessments
 #  #
   # $Id$
   #
   # Copyright Michigan State University Board of Trustees
   #
   # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
   #
   # LON-CAPA is free software; you can redistribute it and/or modify
   # it under the terms of the GNU General Public License as published by
   # the Free Software Foundation; either version 2 of the License, or
   # (at your option) any later version.
   #
   # LON-CAPA is distributed in the hope that it will be useful,
   # but WITHOUT ANY WARRANTY; without even the implied warranty of
   # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   # GNU General Public License for more details.
   #
   # You should have received a copy of the GNU General Public License
   # along with LON-CAPA; if not, write to the Free Software
   # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   #
   # /home/httpd/html/adm/gpl.txt
   #
   # http://www.lon-capa.org/
   #
 # (Handler to resolve ambiguous file locations  # (Handler to resolve ambiguous file locations
 #  #
 # (TeX Content Handler  # (TeX Content Handler
 #  #
   # YEAR=2000
 # 05/29/00,05/30,10/11 Gerd Kortemeyer)  # 05/29/00,05/30,10/11 Gerd Kortemeyer)
 #  #
 # 10/11,10/12,10/16 Gerd Kortemeyer)  # 10/11,10/12,10/16 Gerd Kortemeyer)
 #  #
 # 11/20,11/21,11/22,11/23,11/24,11/25 Gerd Kortemeyer  # 11/20,11/21,11/22,11/23,11/24,11/25,11/27,11/28,
   # 12/08,12/12,
   # YEAR=2001
   # 16/01/01,02/08,03/20,03/23,03/24,03/26,05/09,
   # 07/05,07/06,08/08,08/09,09/01,09/21 Gerd Kortemeyer
   # 12/17 Scott Harrison
   # 12/19 Guy Albertelli
   # 12/26,12/27 Gerd Kortemeyer
   #
   ###
   
 package Apache::lonparmset;  package Apache::lonparmset;
   
 use strict;  use strict;
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::Constants qw(:common :http REDIRECT);  use Apache::Constants qw(:common :http REDIRECT);
   use Apache::loncommon;
 use GDBM_File;  use GDBM_File;
 use Apache::lonmeta;  
   
   
 my %courseopt;  my %courseopt;
Line 31  my @ids; Line 65  my @ids;
 my %symbp;  my %symbp;
 my %mapp;  my %mapp;
 my %typep;  my %typep;
   my %keyp;
   
 my $uname;  my $uname;
 my $udom;  my $udom;
Line 48  sub parmval { Line 83  sub parmval {
     @outpar=();      @outpar=();
 # ----------------------------------------------------- Cascading lookup scheme  # ----------------------------------------------------- Cascading lookup scheme
   
        my $symbparm=$symbp{$id}.'.'.$what;      my $symbparm=$symbp{$id}.'.'.$what;
        my $mapparm=$mapp{$id}.'___(all).'.$what;      my $mapparm=$mapp{$id}.'___(all).'.$what;
   
        my $seclevel=      my $seclevel=$ENV{'request.course.id'}.'.['.$csec.'].'.$what;
             $ENV{'request.course.id'}.'.['.      my $seclevelr=$ENV{'request.course.id'}.'.['.$csec.'].'.$symbparm;
  $ENV{'request.course.sec'}.'].'.$what;      my $seclevelm=$ENV{'request.course.id'}.'.['.$csec.'].'.$mapparm;
        my $seclevelr=  
             $ENV{'request.course.id'}.'.['.      my $courselevel=$ENV{'request.course.id'}.'.'.$what;
  $ENV{'request.course.sec'}.'].'.$symbparm;      my $courselevelr=$ENV{'request.course.id'}.'.'.$symbparm;
        my $seclevelm=      my $courselevelm=$ENV{'request.course.id'}.'.'.$mapparm;
             $ENV{'request.course.id'}.'.['.  
  $ENV{'request.course.sec'}.'].'.$mapparm;  
   
        my $courselevel=  
             $ENV{'request.course.id'}.'.'.$what;  
        my $courselevelr=  
             $ENV{'request.course.id'}.'.'.$symbparm;  
        my $courselevelm=  
             $ENV{'request.course.id'}.'.'.$mapparm;  
   
 # -------------------------------------------------------- first, check default  # -------------------------------------------------------- first, check default
   
        if ($def) { $outpar[11]=$def;      if ($def) { $outpar[11]=$def; $result=11; }
                    $result=11; }  
   
 # ----------------------------------------------------- second, check map parms  # ----------------------------------------------------- second, check map parms
   
        my $thisparm=$parmhash{$symbparm};      my $thisparm=$parmhash{$symbparm};
        if ($thisparm) { $outpar[10]=$thisparm;        if ($thisparm) { $outpar[10]=$thisparm; $result=10; }
                         $result=10; }  
   
 # --------------------------------------------------------- third, check course  # --------------------------------------------------------- third, check course
   
        if ($courseopt{$courselevel}) { $outpar[9]=$courseopt{$courselevel};        if ($courseopt{$courselevel}) {
                                        $result=9; }   $outpar[9]=$courseopt{$courselevel};
    $result=9;
       }
   
        if ($courseopt{$courselevelm}) { $outpar[8]=$courseopt{$courselevelm};       if ($courseopt{$courselevelm}) {
                                         $result=8; }   $outpar[8]=$courseopt{$courselevelm};
    $result=8;
       }
   
        if ($courseopt{$courselevelr}) { $outpar[7]=$courseopt{$courselevelr};       if ($courseopt{$courselevelr}) {
                                         $result=7; }   $outpar[7]=$courseopt{$courselevelr};
    $result=7;
       }
   
        if ($csec) {      if ($csec) {
           if ($courseopt{$seclevel}) {
         if ($courseopt{$seclevel}) { $outpar[6]=$courseopt{$seclevel};        $outpar[6]=$courseopt{$seclevel};
                                     $result=6; }      $result=6;
    }
         if ($courseopt{$seclevelm}) { $outpar[5]=$courseopt{$seclevelm};            if ($courseopt{$seclevelm}) {
                                      $result=5; }        $outpar[5]=$courseopt{$seclevelm};
        $result=5;
         if ($courseopt{$seclevelr}) { $outpar[4]=$courseopt{$seclevelr};     }
                                      $result=4; }  
             if ($courseopt{$seclevelr}) {
       }      $outpar[4]=$courseopt{$seclevelr};
       $result=4;
    }
       }
   
 # ---------------------------------------------------------- fourth, check user  # ---------------------------------------------------------- fourth, check user
         
       if ($uname) {   
   
        if ($useropt{$courselevel}) { $outpar[3]=$useropt{$courselevel};    
                                      $result=3; }  
   
        if ($useropt{$courselevelm}) { $outpar[2]=$useropt{$courselevelm};       if ($uname) {
                                       $result=2; }   if ($useropt{$courselevel}) {
       $outpar[3]=$useropt{$courselevel};
        if ($useropt{$courselevelr}) { $outpar[1]=$useropt{$courselevelr};       $result=3;
                                       $result=1; }   }
   
    if ($useropt{$courselevelm}) {
       $outpar[2]=$useropt{$courselevelm};
       $result=2;
    }
   
    if ($useropt{$courselevelr}) {
       $outpar[1]=$useropt{$courselevelr};
       $result=1;
    }
       }
   
       }  
        
     return $result;      return $result;
 }  }
   
 # ---------------------------------------------------------------- Sort routine  
   
 sub bycat {  
     if ($fcat eq '') {  
         $a<=>$b;  
     } else {  
         &parmval('0.'.$fcat,$a)<=>&parmval('0.'.$fcat,$b);  
     }  
 }  
   
 # ------------------------------------------------------------ Output for value  # ------------------------------------------------------------ Output for value
   
 sub valout {  sub valout {
     my ($value,$type)=@_;      my ($value,$type)=@_;
     return      return ($value?(($type=~/^date/)?localtime($value):$value):'&nbsp;&nbsp;');
  ($value?(($type=~/^date/)?localtime($value):$value):'&nbsp;&nbsp;');  
 }  }
   
 # -------------------------------------------------------- Produces link anchor  # -------------------------------------------------------- Produces link anchor
   
 sub plink {  sub plink {
     my ($type,$dis,$value,$marker,$return,$call)=@_;      my ($type,$dis,$value,$marker,$return,$call)=@_;
     return '<a href="javascript:pjump('."'".$type."','".$dis."','".$value."','"      my $winvalue=$value;
       .$marker."','".$return."','".$call."'".');">'.      unless ($winvalue) {
       &valout($value,$type).'</a>';   if ($type=~/^date/) {
               $winvalue=$ENV{'form.recent_'.$type};
           } else {
               $winvalue=$ENV{'form.recent_'.(split(/\_/,$type))[0]};
           }
       }
       return 
    '<a href="javascript:pjump('."'".$type."','".$dis."','".$winvalue."','"
       .$marker."','".$return."','".$call."'".');">'.
    &valout($value,$type).'</a><a name="'.$marker.'"></a>';
 }  }
   
 # ================================================================ Main Handler  sub assessparms {
   
 sub handler {  
    my $r=shift;  
   
    if ($r->header_only) {  
       $r->content_type('text/html');  
       $r->send_http_header;  
       return OK;  
    }  
   
 # ----------------------------------------------------- Needs to be in a course  
   
    if (($ENV{'request.course.fn'}) &&       my $r=shift;
        (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'}))) {  
 # -------------------------------------------------------- Variable declaration  # -------------------------------------------------------- Variable declaration
       my %allkeys;
       my %allmaps;
       my %defp;
       %courseopt=();
       %useropt=();
       %bighash=();
   
       @ids=();
       %symbp=();
       %typep=();
   
       my $message='';
   
       $csec=$ENV{'form.csec'};
       $udom=$ENV{'form.udom'};
       unless ($udom) { $udom=$r->dir_config('lonDefDomain'); }
   
       my $pscat=$ENV{'form.pscat'};
       my $pschp=$ENV{'form.pschp'};
       my $pssymb='';
   
   # ----------------------------------------------- Was this started from grades?
   
       if (($ENV{'form.command'} eq 'set') && ($ENV{'form.url'})
    && (!$ENV{'form.dis'})) {
    my $url=$ENV{'form.url'};
    $url=~s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
    $pssymb=&Apache::lonnet::symbread($url);
    $pscat='all';
    $pschp='';
       } elsif ($ENV{'form.symb'}) {
    $pssymb=$ENV{'form.symb'};
    $pscat='all';
    $pschp='';
       } else {
    $ENV{'form.url'}='';
       }
   
       %courseopt=();      my $id=$ENV{'form.id'};
       %useropt=();      if (($id) && ($udom)) {
       %bighash=();   $uname=(&Apache::lonnet::idget($udom,$id))[1];
    if ($uname) {
       @ids=();      $id='';
       %symbp=();   } else {
       %typep=();      $message=
    "<font color=red>Unknown ID '$id' at domain '$udom'</font>";
       my $message='';   }
       } else {
       $csec=$ENV{'form.csec'};   $uname=$ENV{'form.uname'};
       $udom=$ENV{'form.udom'};      }
       my $id=$ENV{'form.id'};      unless ($udom) { $uname=''; }
       if (($id) && ($udom)) {      $uhome='';
           $uname=(&Apache::lonnet::idget($udom,$id))[1];      if ($uname) {
           if ($uname) {   $uhome=&Apache::lonnet::homeserver($uname,$udom);
       $id='';          if ($uhome eq 'no_host') {
           } else {      $message=
               $message=   "<font color=red>Unknown user '$uname' at domain '$udom'</font>";
      "<h3><font color=red>Unknown ID '$id' at domain '$udom'</font></h3>";      $uname='';
           }  
       } else {  
           $uname=$ENV{'form.uname'};  
       }  
       unless ($udom) { $uname=''; }  
       $uhome='';  
       if ($uname) {  
   $uhome=&Apache::lonnet::homeserver($uname,$udom);  
         
         if ($uhome eq 'no_host') {   
           $message=  
      "<h3><font color=red>Unknown user '$uname' at domain '$udom'</font></h3>";  
           $uname='';   
         } else {          } else {
           $csec=&Apache::lonnet::usection(      $csec=&Apache::lonnet::usection($udom,$uname,
        $udom,$uname,$ENV{'request.course.id'});      $ENV{'request.course.id'});
           if ($csec eq '-1') {      if ($csec eq '-1') {
              $message="<h3><font color=red>".   $message="<font color=red>".
               "User '$uname' at domain '$udom' not in this course</font></h3>";      "User '$uname' at domain '$udom' not in this course</font>";
               $uname='';   $uname='';
               $csec=$ENV{'form.csec'};   $csec=$ENV{'form.csec'};
  } else {      } else {
               my %name=&Apache::lonnet::userenvironment($udom,$uname,   my %name=&Apache::lonnet::userenvironment($udom,$uname,
  ('firstname','middlename','lastname','generation','id'));        ('firstname','middlename','lastname','generation','id'));
               $message="\n<p>\nFull Name: ".   $message="\n<p>\nFull Name: ".
                           $name{'firstname'}.' '.$name{'middlename'}      $name{'firstname'}.' '.$name{'middlename'}.' '
                  .$name{'lastname'}.' '.$name{'generation'}.   .$name{'lastname'}.' '.$name{'generation'}.
                        "<br>\nID: ".$name{'id'}.'<p>';      "<br>\nID: ".$name{'id'}.'<p>';
          }      }
         }          }
       }      }
   
       unless ($csec) { $csec=''; }      unless ($csec) { $csec=''; }
   
       $fcat=$ENV{'form.fcat'};      $fcat=$ENV{'form.fcat'};
       unless ($fcat) { $fcat=''; }      unless ($fcat) { $fcat=''; }
   
 # ------------------------------------------------------------------- Tie hashs  # ------------------------------------------------------------------- Tie hashs
       if ((tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',      if ((tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
                        &GDBM_READER,0640)) &&       &GDBM_READER,0640)) &&
           (tie(%parmhash,'GDBM_File',   (tie(%parmhash,'GDBM_File',
            $ENV{'request.course.fn'}.'_parms.db',&GDBM_READER,0640))) {       $ENV{'request.course.fn'}.'_parms.db',&GDBM_READER,0640))) {
   
   # --------------------------------------------------------- Get all assessments
           foreach (keys %bighash) {
       if ($_=~/^src\_(\d+)\.(\d+)$/) {
    my $mapid=$1;
    my $resid=$2;
    my $id=$mapid.'.'.$resid;
    my $srcf=$bighash{$_};
    if ($srcf=~/\.(problem|exam|quiz|assess|survey|form)$/) {
       $ids[$#ids+1]=$id;
       $typep{$id}=$1;
       $keyp{$id}='';
       foreach (split(/\,/,
      &Apache::lonnet::metadata($srcf,'keys'))) {
    if ($_=~/^parameter\_(.*)/) {
       my $key=$_;
       my $allkey=$1;
       $allkey=~s/\_/\./;
       my $display=
    &Apache::lonnet::metadata($srcf,$key.'.display');
       unless ($display) {
    $display=
       &Apache::lonnet::metadata($srcf,$key.'.name');
       }
       $allkeys{$allkey}=$display;
       if ($allkey eq $fcat) {
    $defp{$id}=
       &Apache::lonnet::metadata($srcf,$key);
       }
       if ($keyp{$id}) {
    $keyp{$id}.=','.$key;
       } else {
    $keyp{$id}=$key;
       }
    }
       }
       $mapp{$id}=
    &Apache::lonnet::declutter($bighash{'map_id_'.$mapid});
       $allmaps{$mapid}=$mapp{$id};
       $symbp{$id}=$mapp{$id}.
    '___'.$resid.'___'.
       &Apache::lonnet::declutter($srcf);
    }
               }
           }
   # ---------------------------------------------------------- Anything to store?
           if ($ENV{'form.pres_marker'}) {
       my ($sresid,$spnam,$snum)=split(/\&/,$ENV{'form.pres_marker'});
       $spnam=~s/\_([^\_]+)$/\.$1/;
   # ---------------------------------------------------------- Construct prefixes
   
       my $symbparm=$symbp{$sresid}.'.'.$spnam;
       my $mapparm=$mapp{$sresid}.'___(all).'.$spnam;
   
       my $seclevel=$ENV{'request.course.id'}.'.['.$csec.'].'.$spnam;
       my $seclevelr=$ENV{'request.course.id'}.'.['.$csec.'].'.$symbparm;
       my $seclevelm=$ENV{'request.course.id'}.'.['.$csec.'].'.$mapparm;
   
       my $courselevel=$ENV{'request.course.id'}.'.'.$spnam;
       my $courselevelr=$ENV{'request.course.id'}.'.'.$symbparm;
       my $courselevelm=$ENV{'request.course.id'}.'.'.$mapparm;
   
       my $storeunder='';
       if (($snum==9) || ($snum==3)) { $storeunder=$courselevel; }
       if (($snum==8) || ($snum==2)) { $storeunder=$courselevelm; }
       if (($snum==7) || ($snum==1)) { $storeunder=$courselevelr; }
       if ($snum==6) { $storeunder=$seclevel; }
       if ($snum==5) { $storeunder=$seclevelm; }
       if ($snum==4) { $storeunder=$seclevelr; }
       $storeunder=&Apache::lonnet::escape($storeunder);
   
       my $storecontent=
    $storeunder.'='.
       &Apache::lonnet::escape($ENV{'form.pres_value'}).'&'.
    $storeunder.'.type='.
       &Apache::lonnet::escape($ENV{'form.pres_type'});
   
       my $reply='';
       if ($snum>3) {
   # ---------------------------------------------------------------- Store Course
   #
   # Expire sheets
    &Apache::lonnet::expirespread('','','studentcalc');
    if (($snum==7) || ($snum==4)) {
       &Apache::lonnet::expirespread('','','assesscalc',$symbp{$sresid});
    } elsif (($snum==8) || ($snum==5)) {
       &Apache::lonnet::expirespread('','','assesscalc',$mapp{$sresid});
    } else {
       &Apache::lonnet::expirespread('','','assesscalc');
    }
   
   # Store parameter
    $reply=&Apache::lonnet::critical('put:'.
    $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.':'.
    $ENV{'course.'.$ENV{'request.course.id'}.'.num'}.':resourcedata:'.
    $storecontent,
    $ENV{'course.'.$ENV{'request.course.id'}.'.home'});
       } else {
   # ------------------------------------------------------------------ Store User
   #
   # Expire sheets
    &Apache::lonnet::expirespread($uname,$udom,'studentcalc');
    if ($snum==1) {
       &Apache::lonnet::expirespread
    ($uname,$udom,'assesscalc',$symbp{$sresid});
    } elsif ($snum==2) {
       &Apache::lonnet::expirespread
    ($uname,$udom,'assesscalc',$mapp{$sresid});
    } else {
       &Apache::lonnet::expirespread($uname,$udom,'assesscalc');
    }
   
   # Store parameter
    $reply=
       &Apache::lonnet::critical('put:'.$udom.':'.$uname.':resourcedata:'.
         $storecontent,$uhome);
              }
   
       if ($reply=~/^error\:(.*)/) {
    $message.="<font color=red>Write Error: $1</font>";
       }
   # ---------------------------------------------------------------- Done storing
      }
 # -------------------------------------------------------------- Get coursedata  # -------------------------------------------------------------- Get coursedata
         my $reply=&Apache::lonnet::reply('dump:'.          my $reply=&Apache::lonnet::reply('dump:'.
               $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.':'.   $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.':'.
               $ENV{'course.'.$ENV{'request.course.id'}.'.num'}.':resourcedata',   $ENV{'course.'.$ENV{'request.course.id'}.'.num'}.':resourcedata',
               $ENV{'course.'.$ENV{'request.course.id'}.'.home'});   $ENV{'course.'.$ENV{'request.course.id'}.'.home'});
         if ($reply!~/^error\:/) {          if ($reply!~/^error\:/) {
            map {      foreach (split(/\&/,$reply)) {
              my ($name,$value)=split(/\=/,$_);   my ($name,$value)=split(/\=/,$_);
              $courseopt{unescape($name)}=unescape($value);     $courseopt{&Apache::lonnet::unescape($name)}=
            } split(/\&/,$reply);      &Apache::lonnet::unescape($value);
       }
         }          }
 # --------------------------------------------------- Get userdata (if present)  # --------------------------------------------------- Get userdata (if present)
         if ($uname) {          if ($uname) {
            my $reply=      my $reply=
        &Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome);   &Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome);
            if ($reply!~/^error\:/) {      if ($reply!~/^error\:/) {
               map {   foreach (split(/\&/,$reply)) {
                 my ($name,$value)=split(/\=/,$_);      my ($name,$value)=split(/\=/,$_);
                 $useropt{unescape($name)}=unescape($value);        $useropt{&Apache::lonnet::unescape($name)}=
               } split(/\&/,$reply);   &Apache::lonnet::unescape($value);
            }   }
       }
         }          }
 # --------------------------------------------------------- Get all assessments  
         map {  
     if ($_=~/^src\_(\d+)\.(\d+)$/) {  
        my $mapid=$1;  
                my $resid=$2;  
                my $id=$mapid.'.'.$resid;  
                if ($bighash{$_}=~/\.(problem|exam|quiz|assess|survey|form)$/) {  
    $ids[$#ids+1]=$id;  
                    $typep{$id}=$1;  
                    $mapp{$id}=  
        &Apache::lonnet::declutter($bighash{'map_id_'.$mapid});  
                    $symbp{$id}=$mapp{$id}.  
  '___'.$resid.'___'.  
     &Apache::lonnet::declutter($bighash{$_});  
        }  
             }  
         } keys %bighash;  
 # ------------------------------------------------------------------- Sort this  # ------------------------------------------------------------------- Sort this
          @ids=sort bycat @ids;  
           @ids=sort  {
       if ($fcat eq '') {
    $a<=>$b;
       } else {
    1*$outpar[&parmval($fcat,$a,$defp{$a})]<=>
       1*$outpar[&parmval($fcat,$b,$defp{$b})];
       }
    } @ids;
   
 # ------------------------------------------------------------------ Start page  # ------------------------------------------------------------------ Start page
          $r->content_type('text/html');   $r->content_type('text/html');
          $r->send_http_header;   $r->send_http_header;
  $r->print(<<ENDHEAD);   $r->print(<<ENDHEAD);
 <html>  <html>
 <head>  <head>
 <title>LON-CAPA Assessment Parameters</title>  <title>LON-CAPA Course Parameters</title>
 <script>  <script>
   
     function pclose() {      function pclose() {
         parmwin=window.open("/adm/rat/empty.html","LONCAPAparms",          parmwin=window.open("/adm/rat/empty.html","LONCAPAparms",
                  "height=350,width=350,scrollbars=no,menubar=no");                   "height=350,width=350,scrollbars=no,menubar=no");
Line 284  sub handler { Line 449  sub handler {
     }      }
   
     function pjump(type,dis,value,marker,ret,call) {      function pjump(type,dis,value,marker,ret,call) {
           document.parmform.pres_marker.value='';
         parmwin=window.open("/adm/rat/parameter.html?type="+escape(type)          parmwin=window.open("/adm/rat/parameter.html?type="+escape(type)
                  +"&value="+escape(value)+"&marker="+escape(marker)                   +"&value="+escape(value)+"&marker="+escape(marker)
                  +"&return="+escape(ret)                   +"&return="+escape(ret)
Line 291  sub handler { Line 457  sub handler {
                  "height=350,width=350,scrollbars=no,menubar=no");                   "height=350,width=350,scrollbars=no,menubar=no");
   
     }      }
   
       function psub() {
           pclose();
           if (document.parmform.pres_marker.value!='') {
               document.parmform.action+='#'+document.parmform.pres_marker.value;
               var typedef=new Array();
               typedef=document.parmform.pres_type.value.split('_');
              if (document.parmform.pres_type.value!='') {
               if (typedef[0]=='date') {
                   eval('document.parmform.recent_'+
                        document.parmform.pres_type.value+
        '.value=document.parmform.pres_value.value;');
               } else {
                   eval('document.parmform.recent_'+typedef[0]+
        '.value=document.parmform.pres_value.value;');
               }
      }
               document.parmform.submit();
           } else {
               document.parmform.pres_value.value='';
               document.parmform.pres_marker.value='';
           }
       }
   
 </script>  </script>
 </head>  </head>
 <body bgcolor="#FFFFFF" onUnload="pclose()">  <body bgcolor="#FFFFFF" onUnload="pclose()">
 <h1>Set Assessment Parameters</h1>  <h1>Set Course Parameters</h1>
 <form method="post" action="/adm/parmset" name="parmform">  <form method="post" action="/adm/parmset" name="envform">
 <h2>Course: $ENV{'course.'.$ENV{'request.course.id'}.'.description'}</h2>  <h2>Course: $ENV{'course.'.$ENV{'request.course.id'}.'.description'}</h2>
   <h3>Course Environment</h3>
   <input type="submit" name="crsenv" value="Set Course Environment">
   </form>
   <form method="post" action="/adm/parmset" name="parmform">
   <h3>Course Assessments</h3>
 <b>  <b>
 Section/Group:   Section/Group: 
 <input type="text" value="$csec" size="6" name="csec">  <input type="text" value="$csec" size="6" name="csec">
Line 308  or ID Line 503  or ID
 at Domain   at Domain 
 <input type="text" value="$udom" size="6" name="udom">  <input type="text" value="$udom" size="6" name="udom">
 </b>  </b>
 <input type="submit" value="Display">  <input type="hidden" value='' name="pres_value">
   <input type="hidden" value='' name="pres_type">
   <input type="hidden" value='' name="pres_marker"> 
 ENDHEAD  ENDHEAD
    if ($ENV{'form.url'}) {
       $r->print('<input type="hidden" value="'.$ENV{'form.url'}.
         '" name="url"><input type="hidden" name="command" value="set">');
    }
    foreach ('tolerance','date_default','date_start','date_end',
    'date_interval','int','float','string') {
       $r->print('<input type="hidden" value="'.
         $ENV{'form.recent_'.$_}.'" name="recent_'.$_.'">');
    }
   
         $r->print($message.'<p>Sort list by ');          $r->print('<h2>'.$message.'</h2><table><tr><td>Sort list by</td><td>');
  $r->print('<select name="fcat" onChange="this.form.submit();">');   $r->print('<select name="fcat">');
         my $k;          $r->print('<option value="">Enclosing Map</option>');
         my @sopt=('map','Map','name','Problem Name','deadline','Deadline');          foreach (reverse sort keys %allkeys) {
         for ($k=0;$k<$#sopt;$k=$k+2) {      $r->print('<option value="'.$_.'"');
     $r->print('<option value="'.$sopt[$k].'"');              if ($fcat eq $_) { $r->print(' selected'); }
             if ($fcat eq $sopt[$k]) { $r->print(' selected'); }              $r->print('>'.$allkeys{$_}.'</option>');
             $r->print('>'.$sopt[$k+1].'</option>');  
         }          }
         $r->print('</select>');   $r->print('</select></tr><tr><td>Select Enclosing Map</td><td><select name=pschp>');
           $r->print('<option value=all>All Maps</option>');
           foreach (keys %allmaps) {
       $r->print('<option value="'.$_.'"');
               if (($pssymb=~/^$allmaps{$_}/) || 
                   ($pschp eq $_)) { $r->print(' selected'); }
               $r->print('>'.$allmaps{$_}.'</option>');
           }
           $r->print('</select></td></tr><tr><td>Select Parameter</td><td><select name=pscat>');
           $r->print('<option value=all>All Parameters</option>');
           foreach (reverse sort keys %allkeys) {
       $r->print('<option value="'.$_.'"');
               if ($pscat eq $_) { $r->print(' selected'); }
               $r->print('>'.$allkeys{$_}.'</option>');
           }
           $r->print('</select></td></tr></table><br><input name=dis type="submit" value="Display">');
    if (($pscat) || ($pschp) || ($pssymb)) {
 # ----------------------------------------------------------------- Start Table  # ----------------------------------------------------------------- Start Table
         my $coursespan=$csec?8:5;      my $catmarker='parameter_'.$pscat;
  $r->print(<<ENDTABLEHEAD);      $catmarker=~s/\./\_/g;
       my $coursespan=$csec?8:5;
       my $csuname=$ENV{'user.name'};
       my $csudom=$ENV{'user.domain'};
       $r->print(<<ENDTABLEHEAD);
 <p><table border=2>  <p><table border=2>
 <tr><td colspan=5></td>  <tr><td colspan=5></td>
 <th colspan=$coursespan>Any User</th>  <th colspan=$coursespan>Any User</th>
 ENDTABLEHEAD  ENDTABLEHEAD
     if ($uname) {      if ($uname) {
  $r->print("<th colspan=3 rowspan=2>User $uname at Domain $udom</th>");   $r->print("<th colspan=3 rowspan=2>User $uname at Domain $udom</th>");
     }      }
     $r->print(<<ENDTABLETWO);      $r->print(<<ENDTABLETWO);
 <th rowspan=3>Parameter in Effect</th></tr><tr><td colspan=5></td>  <th rowspan=3>Parameter in Effect</th>
   <th rowspan=3>Current Session Value<br>($csuname at $csudom)</th>
   </tr><tr><td colspan=5></td>
 <th colspan=2>Resource Level</th>  <th colspan=2>Resource Level</th>
 <th colspan=3>in Course</th>  <th colspan=3>in Course</th>
 ENDTABLETWO  ENDTABLETWO
     if ($csec) {      if ($csec) {
  $r->print("<th colspan=3>in Section/Group $csec</th>");   $r->print("<th colspan=3>in Section/Group $csec</th>");
     }      }
     $r->print(<<ENDTABLEHEADFOUR);      $r->print(<<ENDTABLEHEADFOUR);
 </tr><tr><th>Assessment URL and Title</th><th>Type</th>  </tr><tr><th>Assessment URL and Title</th><th>Type</th>
 <th>Enclosing Map</th><th>Part No.</th><th>Parameter Name</th>  <th>Enclosing Map</th><th>Part No.</th><th>Parameter Name</th>
 <th>default</th><th>from Enclosing Map</th>  <th>default</th><th>from Enclosing Map</th>
 <th>general</th><th>for Enclosing Map</th><th>for Resource</th>  <th>general</th><th>for Enclosing Map</th><th>for Resource</th>
 ENDTABLEHEADFOUR  ENDTABLEHEADFOUR
     if ($csec) {      if ($csec) {
   $r->print('<th>general</th><th>for Enclosing Map</th><th>for Resource</th>');   $r->print('<th>general</th><th>for Enclosing Map</th><th>for Resource</th>');
     }      }
     if ($uname) {      if ($uname) {
   $r->print('<th>general</th><th>for Enclosing Map</th><th>for Resource</th>');   $r->print('<th>general</th><th>for Enclosing Map</th><th>for Resource</th>');
     }      }
  $r->print('</tr><tr>');      $r->print('</tr>');
   map {      my $defbgone='';
       my $defbgtwo='';
       foreach (@ids) {
    my $rid=$_;
    my ($inmapid)=($rid=~/\.(\d+)$/);
    if (($pschp eq 'all') || ($allmaps{$pschp} eq $mapp{$rid}) ||
       ($pssymb eq $mapp{$rid}.'___'.$inmapid.'___'.
        &Apache::lonnet::declutter($bighash{'src_'.$rid}))) {
 # ------------------------------------------------------ Entry for one resource  # ------------------------------------------------------ Entry for one resource
     @outpar=();      if ($defbgone eq '"E0E099"') {
             my $rid=$_;   $defbgone='"E0E0DD"';
             my $thistitle='';      } else {
             my %name=   ('0_deadline' => 'deadline');   $defbgone='"E0E099"';
             my %part=   ('0_deadline' => '0');      }
     my %display=('0_deadline' => 'Deadline');      if ($defbgtwo eq '"FFFF99"') {
     my %type=   ('0_deadline' => 'date_end');   $defbgtwo='"FFFFDD"';
             my %default=('0_deadline' => time);      } else {
             my %metadata=&Apache::lonmeta::unpackagemeta(   $defbgtwo='"FFFF99"';
 &Apache::lonnet::getfile('/home/httpd/html/'.$bighash{'src_'.$rid}.'.meta'),1);      }
             map {      @outpar=();
                 if ($_=~/^parameter\_(\d+)\_(\w+)$/) {      my $thistitle='';
                     my $hashid=$1.'_'.$2;      my %name=   ();
     $part{$hashid}=$1;      undef %name;
                     $name{$hashid}=$2;      my %part=   ();
                     my $tdef;      my %display=();
                     ($tdef,$display{$hashid})=      my %type=   ();
  split(/\_\_dis\_\_/,$metadata{$_});      my %default=();
     ($type{$hashid},$default{$hashid})=split(/\:/,$tdef);      my $uri=&Apache::lonnet::declutter($bighash{'src_'.$rid});
                     unless ($display{$hashid}) {  
                         $display{$hashid}=$name{$hashid};      foreach (split(/\,/,$keyp{$rid})) {
                     }   if (($_ eq $catmarker) || ($pscat eq 'all')) {
                 }      $part{$_}=&Apache::lonnet::metadata($uri,$_.'.part');
                 if ($_ eq 'title') {      $name{$_}=&Apache::lonnet::metadata($uri,$_.'.name');
     $thistitle=$metadata{$_};      $display{$_}=&Apache::lonnet::metadata($uri,$_.'.display');
                 }      unless ($display{$_}) { $display{$_}=''; }
             } keys %metadata;      $display{$_}.=' ('.$name{$_}.')';
     my $totalparms=scalar keys %name;      $default{$_}=&Apache::lonnet::metadata($uri,$_);
             $r->print('<td rowspan='.$totalparms.'><tt><font size=-1>'.      $type{$_}=&Apache::lonnet::metadata($uri,$_.'.type');
   join(' / ',split(/\//,&Apache::lonnet::declutter($bighash{'src_'.$rid}))).      $thistitle=&Apache::lonnet::metadata($uri,$_.'.title');
            '</font></tt><p><b>'.   }
                       $bighash{'title_'.$rid});      }
             if ($thistitle) {      my $totalparms=scalar keys %name;
  $r->print(' ('.$thistitle.')');      if ($totalparms>0) {
             }   my $firstrow=1;
             $r->print('</b></td>');   $r->print('<tr><td bgcolor='.$defbgone.
             $r->print('<td rowspan='.$totalparms.'>'.$typep{$rid}.'</td>');    ' rowspan='.$totalparms.'><tt><font size=-1>'.
             $r->print('<td rowspan='.$totalparms.'><tt><font size=-1>'.    join(' / ',split(/\//,$uri)).
       join(' / ',split(/\//,$mapp{$rid})).'</font></tt></td>');    '</font></tt><p><b>'.
             map {    $bighash{'title_'.$rid});
    if ($thistitle) {
        my $result=&parmval($part{$_}.'.'.$name{$_},$rid,$default{$_});      $r->print(' ('.$thistitle.')');
    }
                $r->print("<td>$part{$_}</td><td>$display{$_}</td>");    $r->print('</b></td>');
                my $mprefix=$rid.'&'.$_.'&';   $r->print('<td bgcolor='.$defbgtwo.
                $r->print('<td'.(($result==11)?' bgcolor="#AAFFAA"':'').'>'.    ' rowspan='.$totalparms.'>'.$typep{$rid}.'</td>');
              &valout($outpar[11],$type{$_}).'</td>');   $r->print('<td bgcolor='.$defbgone.
                $r->print('<td'.(($result==10)?' bgcolor="#AAFFAA"':'').'>'.    ' rowspan='.$totalparms.'><tt><font size=-1>'.
              &valout($outpar[10],$type{$_}).'</td>');    join(' / ',split(/\//,$mapp{$rid})).'</font></tt></td>');
                $r->print('<td'.(($result==9)?' bgcolor="#AAFFAA"':'').'>'.   foreach (sort keys %name) {
              &plink($type{$_},$display{$_},$outpar[9],$mprefix.'9').'</td>');      my $result=&parmval($part{$_}.'.'.$name{$_},$rid,$default{$_});
                $r->print('<td'.(($result==8)?' bgcolor="#AAFFAA"':'').'>'.      unless ($firstrow) { 
              &plink($type{$_},$display{$_},$outpar[8],$mprefix.'8').'</td>');   $r->print('<tr>'); 
                $r->print('<td'.(($result==7)?' bgcolor="#AAFFAA"':'').'>'.      } else {
              &plink($type{$_},$display{$_},$outpar[7],$mprefix.'7').'</td>');   $firstrow=0;
                if ($csec) {      }
                  $r->print('<td'.(($result==6)?' bgcolor="#AAFFAA"':'').'>'.      $r->print("<td bgcolor=".$defbgtwo.
              &plink($type{$_},$display{$_},$outpar[6],$mprefix.'6').'</td>');        ">$part{$_}</td><td bgcolor=".$defbgone.
                  $r->print('<td'.(($result==5)?' bgcolor="#AAFFAA"':'').'>'.        ">$display{$_}</td>");
              &plink($type{$_},$display{$_},$outpar[5],$mprefix.'5').'</td>');      my $thismarker=$_;
                  $r->print('<td'.(($result==4)?' bgcolor="#AAFFAA"':'').'>'.      $thismarker=~s/^parameter\_//; 
              &plink($type{$_},$display{$_},$outpar[4],$mprefix.'4').'</td>');      my $mprefix=$rid.'&'.$thismarker.'&';
                }  
                if ($uname) {      $r->print('<td bgcolor='.
                  $r->print('<td'.(($result==3)?' bgcolor="#AAFFAA"':'').'>'.        (($result==11)?'"#AAFFAA"':'#FFDDDD').'>'.
              &plink($type{$_},$display{$_},$outpar[3],$mprefix.'3').'</td>');        &valout($outpar[11],$type{$_}).'</td>');
                  $r->print('<td'.(($result==2)?' bgcolor="#AAFFAA"':'').'>'.      $r->print('<td bgcolor='.
              &plink($type{$_},$display{$_},$outpar[2],$mprefix.'2').'</td>');        (($result==10)?'"#AAFFAA"':'#FFDDDD').'>'.
                  $r->print('<td'.(($result==1)?' bgcolor="#AAFFAA"':'').'>'.        &valout($outpar[10],$type{$_}).'</td>');
              &plink($type{$_},$display{$_},$outpar[1],$mprefix.'1').'</td>');  
                }      $r->print('<td bgcolor='.
                $r->print('<td>'.&valout($outpar[$result],$type{$_}).'</td>');        (($result==9)?'"#AAFFAA"':$defbgone).'>'.
                $r->print("</tr>\n<tr>");        &plink($type{$_},$display{$_},$outpar[9],$mprefix.'9',
    } sort keys %name;       'parmform.pres','psub').'</td>');
       $r->print('<td bgcolor='.
         (($result==8)?'"#AAFFAA"':$defbgone).'>'.
         &plink($type{$_},$display{$_},$outpar[8],$mprefix.'8',
        'parmform.pres','psub').'</td>');
       $r->print('<td bgcolor='.
         (($result==7)?'"#AAFFAA"':$defbgone).'>'.
         &plink($type{$_},$display{$_},$outpar[7],$mprefix.'7',
        'parmform.pres','psub').'</td>');
   
       if ($csec) {
    $r->print('<td bgcolor='.
     (($result==6)?'"#AAFFAA"':$defbgtwo).'>'.
     &plink($type{$_},$display{$_},$outpar[6],$mprefix.'6',
    'parmform.pres','psub').'</td>');
    $r->print('<td bgcolor='.
     (($result==5)?'"#AAFFAA"':$defbgtwo).'>'.
     &plink($type{$_},$display{$_},$outpar[5],$mprefix.'5',
    'parmform.pres','psub').'</td>');
    $r->print('<td bgcolor='.
     (($result==4)?'"#AAFFAA"':$defbgtwo).'>'.
     &plink($type{$_},$display{$_},$outpar[4],$mprefix.'4',
    'parmform.pres','psub').'</td>');
       }
   
       if ($uname) {
    $r->print('<td bgcolor='.
     (($result==3)?'"#AAFFAA"':$defbgone).'>'.
     &plink($type{$_},$display{$_},$outpar[3],$mprefix.'3',
    'parmform.pres','psub').'</td>');
    $r->print('<td bgcolor='.
     (($result==2)?'"#AAFFAA"':$defbgone).'>'.
     &plink($type{$_},$display{$_},$outpar[2],$mprefix.'2',
    'parmform.pres','psub').'</td>');
    $r->print('<td bgcolor='.
     (($result==1)?'"#AAFFAA"':$defbgone).'>'.
     &plink($type{$_},$display{$_},$outpar[1],$mprefix.'1',
    'parmform.pres','psub').'</td>');
       }
       $r->print('<td bgcolor=#CCCCFF>'.&valout($outpar[$result],$type{$_}).'</td>');
       my $sessionval=&Apache::lonnet::EXT('resource.'.$part{$_}.
    '.'.$name{$_},$mapp{$rid}.'___'.$inmapid.'___'.$uri);
       if (($type{$_}=~/^date/) && ($sessionval))
    { $sessionval=localtime($sessionval); }
       $r->print('<td bgcolor=#999999><font color=#FFFFFF>'.$sessionval.'&nbsp;'.
         '</font></td>');
       $r->print("</tr>");
    }
       }
 # -------------------------------------------------- End entry for one resource  # -------------------------------------------------- End entry for one resource
  } @ids;   }
          $r->print('</table></form></body></html>');      }
          untie(%bighash);      $r->print('</table>');
  untie(%parmhash);   }
       }   $r->print('</form></body></html>');
    } else {   untie(%bighash);
    untie(%parmhash);
       }
   }
   
   sub crsenv {
       my $r=shift;
       my $setoutput='';
   # -------------------------------------------------- Go through list of changes
       foreach (keys %ENV) {
    if ($_=~/^form\.(.+)\_setparmval$/) {
               my $name=$1;
               my $value=$ENV{'form.'.$name.'_value'};
               if ($name eq 'newp') {
                   $name=$ENV{'form.newp_name'};
               }
               if ($name eq 'url') {
    $value=~s/^\/res\///;
                   $setoutput.='Backing up previous URL: '.
       &Apache::lonnet::reply('put:'.
      $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.
      ':'.$ENV{'course.'.$ENV{'request.course.id'}.'.num'}.
      ':environment:'.
      &Apache::lonnet::escape('top level map backup '.
      time).'='.
      &Apache::lonnet::reply('get:'.
     $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.
     ':'.$ENV{'course.'.$ENV{'request.course.id'}.'.num'}.
     ':environment:url',
     $ENV{'course.'.$ENV{'request.course.id'}.'.home'}),
      $ENV{'course.'.$ENV{'request.course.id'}.'.home'}).
          '<br>';
   
               }
               if ($name) {
           $setoutput.='Setting <tt>'.$name.'</tt> to <tt>'.
       $value.'</tt>: '.
    &Apache::lonnet::reply('put:'.
          $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.
          ':'.$ENV{'course.'.$ENV{'request.course.id'}.'.num'}.
          ':environment:'.
          &Apache::lonnet::escape($name).'='.
          &Apache::lonnet::escape($value),
          $ENV{'course.'.$ENV{'request.course.id'}.'.home'}).
      '<br>';
       }
           }
       }
   # -------------------------------------------------------- Get parameters again
       my $rep=&Apache::lonnet::reply
    ('dump:'.$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.
    ':'.$ENV{'course.'.$ENV{'request.course.id'}.'.num'}.
    ':environment',
    $ENV{'course.'.$ENV{'request.course.id'}.'.home'});
       my $output='';
       if ($rep ne 'con_lost') {
    my %values;
           my %descriptions=
       ('url'            => '<b>Top Level Map</b><br><font color=red> Modification may make assessment data inaccessible</font>',
        'description'    => '<b>Course Description</b>',
        'courseid'       => '<b>Course ID or number</b><br>(internal, optional)',
        'question.email' => '<b>Feedback Addresses for Content Questions</b><br>(<tt>user:domain,user:domain,...</tt>)',
        'comment.email'  => '<b>Feedback Addresses for Comments</b><br>(<tt>user:domain,user:domain,...</tt>)',
        'policy.email'   => '<b>Feedback Addresses for Course Policy</b><br>(<tt>user:domain,user:domain,...</tt>)',
        'hideemptyrows'  => '<b>Hide Empty Rows in Spreadsheets</b><br>("<tt>yes</tt>" for default hiding)',
        'pch.roles.denied'=> '<b>Disallow Resource Discussion for Students</b><br>"<tt>st</tt>": student, "<tt>ta</tt>": TA, "<tt>in</tt>": instructor;<br><tt>role,role,...</tt>)'
       );
   
    foreach (split(/\&/,$rep)) {
       my ($name,$value)=split(/\=/,$_);
       $name=&Apache::lonnet::unescape($name);
       $values{$name}=&Apache::lonnet::unescape($value);
       unless ($descriptions{$name}) {
    $descriptions{$name}=$name;
       }
    }
    foreach (sort keys %descriptions) {
       $output.='<tr><td>'.$descriptions{$_}.'</td><td><input name="'.
    $_.'_value" size=40 value="'.
       $values{$_}.
    '"></td><td><input type=checkbox name="'.$_.
       '_setparmval"></td></tr>';
    }
    $output.='<tr><td><i>Create New Environment Variable</i><br>'.
       '<input type="text" size=40 name="newp_name"></td><td>'.
                   '<input type="text" size=40 name="newp_value"></td><td>'.
       '<input type="checkbox" name="newp_setparmval"></td></tr>';
       }
       $r->print(<<ENDENV);
   <html>
   <head>
   <title>LON-CAPA Course Environment</title>
   </head>
   <body bgcolor="#FFFFFF">
   <h1>Set Course Parameters</h1>
   <form method="post" action="/adm/parmset" name="envform">
   <h2>Course: $ENV{'course.'.$ENV{'request.course.id'}.'.description'}</h2>
   <h3>Course Environment</h3>
   $setoutput
   <p>
   <table border=2>
   <tr><th>Parameter</th><th>Value</th><th>Set?</th></tr>
   $output
   </table>
   <input type="submit" name="crsenv" value="Set Course Environment">
   </form>
   </body>
   </html>    
   ENDENV
   }
   
   # ================================================================ Main Handler
   
   sub handler {
       my $r=shift;
   
       if ($r->header_only) {
    $r->content_type('text/html');
    $r->send_http_header;
    return OK;
       }
       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
   # ----------------------------------------------------- Needs to be in a course
   
       if (($ENV{'request.course.id'}) && 
    (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'}))) {
   
    unless (($ENV{'form.crsenv'}) || (!$ENV{'request.course.fn'})) {
   # --------------------------------------------------------- Bring up assessment
       &assessparms($r);
   # ---------------------------------------------- This is for course environment
    } else {
       &crsenv($r);
    }
       } else {
 # ----------------------------- Not in a course, or not allowed to modify parms  # ----------------------------- Not in a course, or not allowed to modify parms
       $ENV{'user.error.msg'}=   $ENV{'user.error.msg'}=
         "/adm/parmset:opa:0:0:Cannot modify assessment parameters";      "/adm/parmset:opa:0:0:Cannot modify assessment parameters";
       return HTTP_NOT_ACCEPTABLE;    return HTTP_NOT_ACCEPTABLE;
    }      }
    return OK;      return OK;
 }  }
   
 1;  1;
 __END__  __END__
   
   
   =head1 NAME
   
   Apache::lonparmset - Handler to set parameters for assessments
   
   =head1 SYNOPSIS
   
   Invoked by /etc/httpd/conf/srm.conf:
   
    <Location /adm/parmset>
    PerlAccessHandler       Apache::lonacc
    SetHandler perl-script
    PerlHandler Apache::lonparmset
    ErrorDocument     403 /adm/login
    ErrorDocument     406 /adm/roles
    ErrorDocument  500 /adm/errorhandler
    </Location>
   
   =head1 INTRODUCTION
   
   This module sets assessment parameters.
   
   This is part of the LearningOnline Network with CAPA project
   described at http://www.lon-capa.org.
   
   =head1 HANDLER SUBROUTINE
   
   This routine is called by Apache and mod_perl.
   
   =over 4
   
   =item *
   
   need to be in course
   
   =item *
   
   bring up assessment screen or course environment
   
   =back
   
   =head1 OTHER SUBROUTINES
   
   =over 4
   
   =item *
   
   parmval() : figure out a cascading parameter
   
   =item *
   
   valout() : output for value
   
   =item *
   
   plink() : produces link anchor
   
   =item *
   
   assessparms() : show assess data and parameters
   
   =item *
   
   crsenv() : for the course environment
   
   =back
   
   =cut
   
   
   

Removed from v.1.12  
changed lines
  Added in v.1.43


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