version 1.8, 2000/11/24 15:27:27
|
version 1.44, 2002/02/12 06:28:23
|
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 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; |
my %useropt; |
my %useropt; |
my %bighash; |
|
my %parmhash; |
my %parmhash; |
|
|
my @outpar; |
|
|
|
my @ids; |
my @ids; |
my %symbp; |
my %symbp; |
|
my %mapp; |
my %typep; |
my %typep; |
|
my %keyp; |
|
|
my $uname; |
my $uname; |
my $udom; |
my $udom; |
my $uhome; |
my $uhome; |
|
|
my $csec; |
my $csec; |
|
|
my $fcat; |
|
|
|
# -------------------------------------------- Figure out a cascading parameter |
# -------------------------------------------- Figure out a cascading parameter |
|
|
sub parmval { |
sub parmval { |
my ($what,$id)=@_; |
my ($what,$id,$def)=@_; |
my $result=''; |
my $result=''; |
|
my @outpar=(); |
# ----------------------------------------------------- Cascading lookup scheme |
# ----------------------------------------------------- Cascading lookup scheme |
my $symbparm=$symbp{$id}.'.'.$what; |
|
my $reslevel= |
|
$ENV{'request.course.id'}.'.'.$symbparm; |
|
my $seclevel= |
|
$ENV{'request.course.id'}.'.'. |
|
$ENV{'request.course.sec'}.'.'.$what; |
|
my $courselevel= |
|
$ENV{'request.course.id'}.'.'.$what; |
|
|
|
# ----------------------------------------------------------- first, check user |
|
|
|
if ($uname) { |
|
if ($useropt{$reslevel}) { $result=$useropt{$reslevel}; |
|
$outpar[1]=$result; } |
|
if ($useropt{$seclevel}) { $result=$useropt{$seclevel}; |
|
$outpar[2]=$result; } |
|
if ($useropt{$courselevel}) { $result=$useropt{$courselevel}; |
|
$outpar[3]=$result; } |
|
} |
|
# -------------------------------------------------------- second, check course |
|
|
|
if ($courseopt{$reslevel}) { $result=$courseopt{$reslevel}; |
|
$outpar[4]=$result; } |
|
if ($courseopt{$seclevel}) { $result=$courseopt{$seclevel}; |
|
$outpar[5]=$result; } |
|
if ($courseopt{$courselevel}) { $result=$courseopt{$courselevel}; |
|
$outpar[6]=$result; } |
|
|
|
# ------------------------------------------------------ third, check map parms |
|
|
|
my $thisparm=$parmhash{$symbparm}; |
|
if ($thisparm) { $result=$thisparm; |
|
$outpar[7]=$result; } |
|
|
|
# --------------------------------------------- last, look in resource metadata |
|
|
|
my $filename='/home/httpd/res/'.$bighash{'src_'.$id}.'.meta'; |
|
if (-e $filename) { |
|
my @content; |
|
{ |
|
my $fh=Apache::File->new($filename); |
|
@content=<$fh>; |
|
} |
|
if (join('',@content)=~ |
|
/\<$what[^\>]*\>([^\<]*)\<\/$what\>/) { |
|
$result=$1; |
|
$outpar[8]=$result; |
|
} |
|
} |
|
return $result; |
|
} |
|
|
|
# ---------------------------------------------------------------- Sort routine |
my $symbparm=$symbp{$id}.'.'.$what; |
|
my $mapparm=$mapp{$id}.'___(all).'.$what; |
|
|
sub bycat { |
my $seclevel=$ENV{'request.course.id'}.'.['.$csec.'].'.$what; |
if ($fcat eq '') { |
my $seclevelr=$ENV{'request.course.id'}.'.['.$csec.'].'.$symbparm; |
$a<=>$b; |
my $seclevelm=$ENV{'request.course.id'}.'.['.$csec.'].'.$mapparm; |
} else { |
|
&parmval('0.'.$fcat,$a)<=>&parmval('0.'.$fcat,$b); |
my $courselevel=$ENV{'request.course.id'}.'.'.$what; |
|
my $courselevelr=$ENV{'request.course.id'}.'.'.$symbparm; |
|
my $courselevelm=$ENV{'request.course.id'}.'.'.$mapparm; |
|
|
|
# -------------------------------------------------------- first, check default |
|
|
|
if ($def) { $outpar[11]=$def; $result=11; } |
|
|
|
# ----------------------------------------------------- second, check map parms |
|
|
|
my $thisparm=$parmhash{$symbparm}; |
|
if ($thisparm) { $outpar[10]=$thisparm; $result=10; } |
|
|
|
# --------------------------------------------------------- third, check course |
|
|
|
if ($courseopt{$courselevel}) { |
|
$outpar[9]=$courseopt{$courselevel}; |
|
$result=9; |
} |
} |
} |
|
|
|
# -------------------------------------------------------- Produces link anchor |
if ($courseopt{$courselevelm}) { |
|
$outpar[8]=$courseopt{$courselevelm}; |
|
$result=8; |
|
} |
|
|
sub plink { |
if ($courseopt{$courselevelr}) { |
my ($type,$dis,$value,$marker,$return,$call)=@_; |
$outpar[7]=$courseopt{$courselevelr}; |
return '<a href="javascript:pjump('."'".$type."','".$dis."','".$value."','" |
$result=7; |
.$marker."','".$return."','".$call."'".');">'. |
} |
($value?(($type=~/^date/)?localtime($value):$value):' ').'</a>'; |
|
} |
|
|
|
# ================================================================ Main Handler |
if ($csec) { |
|
if ($courseopt{$seclevel}) { |
|
$outpar[6]=$courseopt{$seclevel}; |
|
$result=6; |
|
} |
|
if ($courseopt{$seclevelm}) { |
|
$outpar[5]=$courseopt{$seclevelm}; |
|
$result=5; |
|
} |
|
|
|
if ($courseopt{$seclevelr}) { |
|
$outpar[4]=$courseopt{$seclevelr}; |
|
$result=4; |
|
} |
|
} |
|
|
sub handler { |
# ---------------------------------------------------------- fourth, check user |
my $r=shift; |
|
|
|
if ($r->header_only) { |
if ($uname) { |
$r->content_type('text/html'); |
if ($useropt{$courselevel}) { |
$r->send_http_header; |
$outpar[3]=$useropt{$courselevel}; |
return OK; |
$result=3; |
} |
} |
|
|
|
if ($useropt{$courselevelm}) { |
|
$outpar[2]=$useropt{$courselevelm}; |
|
$result=2; |
|
} |
|
|
|
if ($useropt{$courselevelr}) { |
|
$outpar[1]=$useropt{$courselevelr}; |
|
$result=1; |
|
} |
|
} |
|
|
# ----------------------------------------------------- Needs to be in a course |
return ($result,@outpar); |
|
} |
|
|
if (($ENV{'request.course.fn'}) && |
# ------------------------------------------------------------ Output for value |
(&Apache::lonnet::allowed('opa',$ENV{'request.course.id'}))) { |
|
# -------------------------------------------------------- Variable declaration |
|
|
|
%courseopt=(); |
sub valout { |
%useropt=(); |
my ($value,$type)=@_; |
%bighash=(); |
return ($value?(($type=~/^date/)?localtime($value):$value):' '); |
|
} |
@ids=(); |
|
%symbp=(); |
|
%typep=(); |
|
|
|
$uname=$ENV{'form.uname'}; |
|
$udom=$ENV{'form.udom'}; |
|
unless ($udom) { $uname=''; } |
|
$uhome=''; |
|
my $message=''; |
|
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=''; |
|
} |
|
|
|
$csec=$ENV{'form.csec'}; |
|
unless ($csec) { $csec=''; } |
|
$fcat=$ENV{'form.fcat'}; |
|
unless ($fcat) { $fcat=''; } |
|
|
|
# ------------------------------------------------------------------- Tie hashs |
# -------------------------------------------------------- Produces link anchor |
if ((tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db', |
|
&GDBM_READER,0640)) && |
|
(tie(%parmhash,'GDBM_File', |
|
$ENV{'request.course.fn'}.'_parms.db',&GDBM_READER,0640))) { |
|
|
|
# -------------------------------------------------------------- Get coursedata |
sub plink { |
my $reply=&Apache::lonnet::reply('dump:'. |
my ($type,$dis,$value,$marker,$return,$call)=@_; |
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.':'. |
my $winvalue=$value; |
$ENV{'course.'.$ENV{'request.course.id'}.'.num'}.':resourcedata', |
unless ($winvalue) { |
$ENV{'course.'.$ENV{'request.course.id'}.'.home'}); |
if ($type=~/^date/) { |
if ($reply!~/^error\:/) { |
$winvalue=$ENV{'form.recent_'.$type}; |
map { |
} else { |
my ($name,$value)=split(/\=/,$_); |
$winvalue=$ENV{'form.recent_'.(split(/\_/,$type))[0]}; |
$courseopt{unescape($name)}=unescape($value); |
|
} split(/\&/,$reply); |
|
} |
|
# --------------------------------------------------- Get userdata (if present) |
|
if ($uname) { |
|
my $reply= |
|
&Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome); |
|
if ($reply!~/^error\:/) { |
|
map { |
|
my ($name,$value)=split(/\=/,$_); |
|
$useropt{unescape($name)}=unescape($value); |
|
} split(/\&/,$reply); |
|
} |
|
} |
} |
# --------------------------------------------------------- Get all assessments |
} |
map { |
return |
if ($_=~/^src\_(\d+)\.(\d+)$/) { |
'<a href="javascript:pjump('."'".$type."','".$dis."','".$winvalue."','" |
my $mapid=$1; |
.$marker."','".$return."','".$call."'".');">'. |
my $resid=$2; |
&valout($value,$type).'</a><a name="'.$marker.'"></a>'; |
my $id=$mapid.'.'.$resid; |
} |
if ($bighash{$_}=~/\.(problem|exam|quiz|assess|survey|form)$/) { |
|
$ids[$#ids+1]=$id; |
|
$typep{$id}=$1; |
sub startpage { |
$symbp{$id}= |
my ($r,$id,$udom,$csec,$uname)=@_; |
&Apache::lonnet::declutter($bighash{'map_id_'.$mapid}). |
$r->content_type('text/html'); |
'___'.$resid.'___'. |
$r->send_http_header; |
&Apache::lonnet::declutter($bighash{$_}); |
$r->print(<<ENDHEAD); |
} |
|
} |
|
} keys %bighash; |
|
# ------------------------------------------------------------------- Sort this |
|
@ids=sort bycat @ids; |
|
# ------------------------------------------------------------------ Start page |
|
$r->content_type('text/html'); |
|
$r->send_http_header; |
|
$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 221 sub handler {
|
Line 195 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 228 sub handler {
|
Line 203 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"> |
onBlur="this.form.submit();"> |
|
<br> |
<br> |
For User |
For User |
<input type="text" value="$uname" size="12" name="uname" |
<input type="text" value="$uname" size="12" name="uname"> |
onBlur="if (this.form.udom.value) { this.form.submit(); }"> |
or ID |
|
<input type="text" value="$id" size="12" name="id"> |
at Domain |
at Domain |
<input type="text" value="$udom" size="6" name="udom" |
<input type="text" value="$udom" size="6" name="udom"> |
onBlur="if (this.form.uname.value) { this.form.submit(); }"> |
|
</b> |
</b> |
|
<input type="hidden" value='' name="pres_value"> |
|
<input type="hidden" value='' name="pres_type"> |
|
<input type="hidden" value='' name="pres_marker"> |
ENDHEAD |
ENDHEAD |
|
|
if ($uhome eq 'no_host') { |
} |
$r->print($message); |
|
} |
sub print_row { |
$r->print('<p>Sort list by '); |
my ($r,$which,$part,$name,$rid,$default,$type,$display,$defbgone, |
$r->print('<select name="fcat" onChange="this.form.submit();">'); |
$defbgtwo)=@_; |
my $k; |
my ($result,@outpar)=&parmval($$part{$which}.'.'.$$name{$which}, |
my @sopt=('map','Map','name','Problem Name','deadline','Deadline'); |
$rid,$$default{$which}); |
for ($k=0;$k<$#sopt;$k=$k+2) { |
$r->print("<td bgcolor=".$defbgtwo. |
$r->print('<option value="'.$sopt[$k].'"'); |
'>'.$$part{$which}.'</td><td bgcolor='.$defbgone. |
if ($fcat eq $sopt[$k]) { $r->print(' selected'); } |
'>'.$$display{$which}.'</td>'); |
$r->print('>'.$sopt[$k+1].'</option>'); |
my $thismarker=$which; |
|
$thismarker=~s/^parameter\_//; |
|
my $mprefix=$rid.'&'.$thismarker.'&'; |
|
|
|
&print_td($r,11,'#FFDDDD',$result,\@outpar,$mprefix,$_,$type,$display); |
|
&print_td($r,10,'#FFDDDD',$result,\@outpar,$mprefix,$_,$type,$display); |
|
&print_td($r,9,$defbgone,$result,\@outpar,$mprefix,$_,$type,$display); |
|
&print_td($r,8,$defbgone,$result,\@outpar,$mprefix,$_,$type,$display); |
|
&print_td($r,7,$defbgone,$result,\@outpar,$mprefix,$_,$type,$display); |
|
if ($csec) { |
|
&print_td($r,6,$defbgtwo,$result,\@outpar,$mprefix,$_,$type,$display); |
|
&print_td($r,5,$defbgtwo,$result,\@outpar,$mprefix,$_,$type,$display); |
|
&print_td($r,4,$defbgtwo,$result,\@outpar,$mprefix,$_,$type,$display); |
|
} |
|
if ($uname) { |
|
&print_td($r,3,$defbgone,$result,\@outpar,$mprefix,$_,$type,$display); |
|
&print_td($r,2,$defbgone,$result,\@outpar,$mprefix,$_,$type,$display); |
|
&print_td($r,1,$defbgone,$result,\@outpar,$mprefix,$_,$type,$display); |
|
} |
|
$r->print('<td bgcolor=#CCCCFF>'.&valout($outpar[$result],$$type{$which}).'</td>'); |
|
my $sessionval=&Apache::lonnet::EXT('resource.'.$$part{$which}. |
|
'.'.$$name{$which},$symbp{$rid}); |
|
$r->print('<td bgcolor=#999999><font color=#FFFFFF>'. |
|
&valout($sessionval,$$type{$which}).' '. |
|
'</font></td>'); |
|
$r->print('</tr>'); |
|
} |
|
|
|
sub print_td { |
|
my ($r,$which,$defbg,$result,$outpar,$mprefix,$value,$type,$display)=@_; |
|
$r->print('<td bgcolor='.(($result==$which)?'"#AAFFAA"':$defbg).'>'. |
|
&plink($$type{$value},$$display{$value},$$outpar[$which], |
|
$mprefix."$which",'parmform.pres','psub').'</td>'); |
|
} |
|
|
|
sub assessparms { |
|
|
|
my $r=shift; |
|
# -------------------------------------------------------- Variable declaration |
|
my %allkeys; |
|
my %allmaps; |
|
my %defp; |
|
%courseopt=(); |
|
%useropt=(); |
|
my %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'}=''; |
|
} |
|
|
|
my $id=$ENV{'form.id'}; |
|
if (($id) && ($udom)) { |
|
$uname=(&Apache::lonnet::idget($udom,$id))[1]; |
|
if ($uname) { |
|
$id=''; |
|
} else { |
|
$message= |
|
"<font color=red>Unknown ID '$id' at domain '$udom'</font>"; |
|
} |
|
} else { |
|
$uname=$ENV{'form.uname'}; |
|
} |
|
unless ($udom) { $uname=''; } |
|
$uhome=''; |
|
if ($uname) { |
|
$uhome=&Apache::lonnet::homeserver($uname,$udom); |
|
if ($uhome eq 'no_host') { |
|
$message= |
|
"<font color=red>Unknown user '$uname' at domain '$udom'</font>"; |
|
$uname=''; |
|
} else { |
|
$csec=&Apache::lonnet::usection($udom,$uname, |
|
$ENV{'request.course.id'}); |
|
if ($csec eq '-1') { |
|
$message="<font color=red>". |
|
"User '$uname' at domain '$udom' not in this course</font>"; |
|
$uname=''; |
|
$csec=$ENV{'form.csec'}; |
|
} else { |
|
my %name=&Apache::lonnet::userenvironment($udom,$uname, |
|
('firstname','middlename','lastname','generation','id')); |
|
$message="\n<p>\nFull Name: ". |
|
$name{'firstname'}.' '.$name{'middlename'}.' ' |
|
.$name{'lastname'}.' '.$name{'generation'}. |
|
"<br>\nID: ".$name{'id'}.'<p>'; |
|
} |
} |
} |
$r->print('</select>'); |
} |
$r->print("\n<p><table border=2>\n<tr>"); |
|
map { |
unless ($csec) { $csec=''; } |
|
|
|
my $fcat=$ENV{'form.fcat'}; |
|
unless ($fcat) { $fcat=''; } |
|
|
|
# ------------------------------------------------------------------- Tie hashs |
|
if (!(tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db', |
|
&GDBM_READER,0640))) { |
|
$r->print("Unable to access course data. (File $ENV{'request.course.fn'}.db not tieable)"); |
|
return ; |
|
} |
|
if (!(tie(%parmhash,'GDBM_File', |
|
$ENV{'request.course.fn'}.'_parms.db',&GDBM_READER,0640))) { |
|
$r->print("Unable to access parameter data. (File $ENV{'request.course.fn'}_parms.db not tieable)"); |
|
return ; |
|
} |
|
# --------------------------------------------------------- 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 |
|
my $reply=&Apache::lonnet::reply('dump:'. |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.':'. |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.num'}.':resourcedata', |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.home'}); |
|
if ($reply!~/^error\:/) { |
|
foreach (split(/\&/,$reply)) { |
|
my ($name,$value)=split(/\=/,$_); |
|
$courseopt{&Apache::lonnet::unescape($name)}= |
|
&Apache::lonnet::unescape($value); |
|
} |
|
} |
|
# --------------------------------------------------- Get userdata (if present) |
|
if ($uname) { |
|
my $reply= |
|
&Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome); |
|
if ($reply!~/^error\:/) { |
|
foreach (split(/\&/,$reply)) { |
|
my ($name,$value)=split(/\=/,$_); |
|
$useropt{&Apache::lonnet::unescape($name)}= |
|
&Apache::lonnet::unescape($value); |
|
} |
|
} |
|
} |
|
|
|
# ------------------------------------------------------------------- Sort this |
|
|
|
@ids=sort { |
|
if ($fcat eq '') { |
|
$a<=>$b; |
|
} else { |
|
my ($result,@outpar)=&parmval($fcat,$a,$defp{$a}); |
|
my $aparm=$outpar[$result]; |
|
($result,@outpar)=&parmval($fcat,$b,$defp{$b}); |
|
my $bparm=$outpar[$result]; |
|
1*$aparm<=>1*$bparm; |
|
} |
|
} @ids; |
|
|
|
# ------------------------------------------------------------------ Start page |
|
&startpage($r,$id,$udom,$csec,$uname); |
|
# 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('<h2>'.$message.'</h2><table><tr><td>Sort list by</td><td>'); |
|
$r->print('<select name="fcat">'); |
|
$r->print('<option value="">Enclosing Map</option>'); |
|
foreach (reverse sort keys %allkeys) { |
|
$r->print('<option value="'.$_.'"'); |
|
if ($fcat eq $_) { $r->print(' selected'); } |
|
$r->print('>'.$allkeys{$_}.'</option>'); |
|
} |
|
if (!$pssymb) { |
|
$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>'); |
|
} |
|
} else { |
|
my ($map,$id,$resource)=split(/___/,$pssymb); |
|
$r->print('<tr><td>Specfic Resource</td><td> </td></tr>'); |
|
$r->print('<input type="hidden" value="'.$pssymb.'" name="symb">'); |
|
} |
|
$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 |
|
my $catmarker='parameter_'.$pscat; |
|
$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> |
|
<tr><td colspan=5></td> |
|
<th colspan=$coursespan>Any User</th> |
|
ENDTABLEHEAD |
|
if ($uname) { |
|
$r->print("<th colspan=3 rowspan=2>User $uname at Domain $udom</th>"); |
|
} |
|
$r->print(<<ENDTABLETWO); |
|
<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=3>in Course</th> |
|
ENDTABLETWO |
|
if ($csec) { |
|
$r->print("<th colspan=3>in Section/Group $csec</th>"); |
|
} |
|
$r->print(<<ENDTABLEHEADFOUR); |
|
</tr><tr><th>Assessment URL and Title</th><th>Type</th> |
|
<th>Enclosing Map</th><th>Part No.</th><th>Parameter Name</th> |
|
<th>default</th><th>from Enclosing Map</th> |
|
<th>general</th><th>for Enclosing Map</th><th>for Resource</th> |
|
ENDTABLEHEADFOUR |
|
if ($csec) { |
|
$r->print('<th>general</th><th>for Enclosing Map</th><th>for Resource</th>'); |
|
} |
|
if ($uname) { |
|
$r->print('<th>general</th><th>for Enclosing Map</th><th>for Resource</th>'); |
|
} |
|
$r->print('</tr>'); |
|
my $defbgone=''; |
|
my $defbgtwo=''; |
|
foreach (@ids) { |
|
my $rid=$_; |
|
my ($inmapid)=($rid=~/\.(\d+)$/); |
|
if (($pschp eq 'all') || ($allmaps{$pschp} eq $mapp{$rid}) || |
|
($pssymb eq $symbp{$rid})) { |
# ------------------------------------------------------ Entry for one resource |
# ------------------------------------------------------ Entry for one resource |
@outpar=(); |
if ($defbgone eq '"E0E099"') { |
my $rid=$_; |
$defbgone='"E0E0DD"'; |
my $thistitle=''; |
} else { |
my @part=(0,1,1); |
$defbgone='"E0E099"'; |
my @name=('deadline','sig','tol'); |
} |
my @display=('Deadline','Significant Figures','Tolerance'); |
if ($defbgtwo eq '"FFFF99"') { |
my @type=('date','int','tolerance'); |
$defbgtwo='"FFFFDD"'; |
my %metadata=&Apache::lonmeta::unpackagemeta( |
} else { |
&Apache::lonnet::getfile('/home/httpd/html/'.$bighash{'src_'.$rid}.'.meta'),1); |
$defbgtwo='"FFFF99"'; |
map { |
} |
if ($_=~/^parameter\_(\d+)\_(\w+)$/) { |
my $thistitle=''; |
$part[$#part+1]=$1; |
my %name= (); |
$name[$#name+1]=$2; |
undef %name; |
($type[$#type+1],$display[$#display+1])= |
my %part= (); |
split(/\_\_dis\_\_/,$metadata{$_}); |
my %display=(); |
unless ($display[$#display]) { |
my %type= (); |
$display[$#display]=$name[$#name]; |
my %default=(); |
} |
my $uri=&Apache::lonnet::declutter($bighash{'src_'.$rid}); |
} |
|
if ($_ eq 'title') { |
foreach (split(/\,/,$keyp{$rid})) { |
$thistitle=$metadata{$_}; |
if (($_ eq $catmarker) || ($pscat eq 'all')) { |
} |
$part{$_}=&Apache::lonnet::metadata($uri,$_.'.part'); |
} keys %metadata; |
$name{$_}=&Apache::lonnet::metadata($uri,$_.'.name'); |
my $totalparms=$#name+1; |
$display{$_}=&Apache::lonnet::metadata($uri,$_.'.display'); |
$r->print('<td rowspan='.$totalparms.'><tt><font size=-1>'. |
unless ($display{$_}) { $display{$_}=''; } |
join(' / ',split(/\//,$bighash{'src_'.$rid})).'</font></tt><p><b>'. |
$display{$_}.=' ('.$name{$_}.')'; |
$bighash{'title_'.$rid}); |
$default{$_}=&Apache::lonnet::metadata($uri,$_); |
if ($thistitle) { |
$type{$_}=&Apache::lonnet::metadata($uri,$_.'.type'); |
$r->print(' ('.$thistitle.')'); |
$thistitle=&Apache::lonnet::metadata($uri,$_.'.title'); |
} |
} |
$r->print('</b></td>'); |
} |
my $i; |
my $totalparms=scalar keys %name; |
for ($i=0;$i<$totalparms;$i++) { |
if ($totalparms>0) { |
$r->print("<td>$part[$i]</td><td>$display[$i]</td>"); |
my $firstrow=1; |
my $j; |
$r->print('<tr><td bgcolor='.$defbgone. |
for ($j=1;$j<=7;$j++) { |
' rowspan='.$totalparms.'><tt><font size=-1>'. |
$r->print('<td>'.&plink($type[$i],$display[$i],$outpar[$j]).'</td>');} |
join(' / ',split(/\//,$uri)). |
$r->print("</tr>\n<tr>"); |
'</font></tt><p><b>'. |
} |
$bighash{'title_'.$rid}); |
|
if ($thistitle) { |
|
$r->print(' ('.$thistitle.')'); |
|
} |
|
$r->print('</b></td>'); |
|
$r->print('<td bgcolor='.$defbgtwo. |
|
' rowspan='.$totalparms.'>'.$typep{$rid}.'</td>'); |
|
$r->print('<td bgcolor='.$defbgone. |
|
' rowspan='.$totalparms.'><tt><font size=-1>'. |
|
join(' / ',split(/\//,$mapp{$rid})).'</font></tt></td>'); |
|
foreach (sort keys %name) { |
|
unless ($firstrow) { |
|
$r->print('<tr>'); |
|
} else { |
|
$firstrow=0; |
|
} |
|
&print_row($r,$_,\%part,\%name,$rid,\%default, |
|
\%type,\%display,$defbgone,$defbgtwo); |
|
} |
|
} |
# -------------------------------------------------- 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() : format a value for output |
|
|
|
=item * |
|
|
|
plink() : produces link anchor |
|
|
|
=item * |
|
|
|
assessparms() : show assess data and parameters |
|
|
|
=item * |
|
|
|
crsenv() : for the course environment |
|
|
|
=back |
|
|
|
=cut |
|
|
|
|
|
|