version 1.39, 2001/12/18 21:19:55
|
version 1.147, 2004/01/14 22:08: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 |
# |
# |
# (Handler to resolve ambiguous file locations |
# $Id$ |
# |
# |
# (TeX Content Handler |
# Copyright Michigan State University Board of Trustees |
# |
# |
# YEAR=2000 |
# This file is part of the LearningOnline Network with CAPA (LON-CAPA). |
# 05/29/00,05/30,10/11 Gerd Kortemeyer) |
|
# |
# |
# 10/11,10/12,10/16 Gerd Kortemeyer) |
# 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. |
# |
# |
# 11/20,11/21,11/22,11/23,11/24,11/25,11/27,11/28, |
# LON-CAPA is distributed in the hope that it will be useful, |
# 12/08,12/12, |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
# YEAR=2001 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
# 16/01/01,02/08,03/20,03/23,03/24,03/26,05/09, |
# GNU General Public License for more details. |
# 07/05,07/06,08/08,08/09,09/01,09/21 Gerd Kortemeyer |
|
# 12/17 Scott Harrison |
|
# |
# |
### |
# 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/ |
|
# |
|
################################################################### |
|
################################################################### |
|
|
|
=pod |
|
|
|
=head1 NAME |
|
|
|
lonparmset - Handler to set parameters for assessments and course |
|
|
|
=head1 SYNOPSIS |
|
|
|
lonparmset provides an interface to setting course parameters. |
|
|
|
=head1 DESCRIPTION |
|
|
|
This module sets coursewide and assessment parameters. |
|
|
|
=head1 INTERNAL SUBROUTINES |
|
|
|
=over 4 |
|
|
|
=cut |
|
|
|
################################################################### |
|
################################################################### |
|
|
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::lonhtmlcommon(); |
use Apache::loncommon; |
use Apache::loncommon; |
use GDBM_File; |
use GDBM_File; |
|
use Apache::lonhomework; |
|
use Apache::lonxml; |
|
use Apache::lonlocal; |
|
|
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 %mapp; |
my %typep; |
my %typep; |
my %keyp; |
my %keyp; |
my %defp; |
|
|
|
my %allkeys; |
my %maptitles; |
my %allmaps; |
|
|
|
my $uname; |
my $uname; |
my $udom; |
my $udom; |
my $uhome; |
my $uhome; |
|
|
my $csec; |
my $csec; |
|
my $coursename; |
|
|
|
################################################## |
|
################################################## |
|
|
my $fcat; |
=pod |
|
|
# -------------------------------------------- Figure out a cascading parameter |
=item parmval |
|
|
|
Figure out a cascading parameter. |
|
|
|
Inputs: $what - a parameter spec (incluse part info and name I.E. 0.weight) |
|
$id - a bighash Id number |
|
$def - the resource's default value 'stupid emacs |
|
|
|
Returns: A list, the first item is the index into the remaining list of items of parm valuse that is the active one, the list consists of parm values at the 11 possible levels |
|
|
|
11- resource default |
|
10- map default |
|
9 - General Course |
|
8 - Map or Folder level in course |
|
7 - resource level in course |
|
6 - General for section |
|
5 - Map or Folder level for section |
|
4 - resource level in section |
|
3 - General for specific student |
|
2 - Map or Folder level for specific student |
|
1 - resource level for specific student |
|
|
|
=cut |
|
|
|
################################################## |
|
################################################## |
sub parmval { |
sub parmval { |
my ($what,$id,$def)=@_; |
my ($what,$id,$def)=@_; |
my $result=''; |
my $result=''; |
@outpar=(); |
my @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; |
$csec.'].'.$what; |
my $seclevelm=$ENV{'request.course.id'}.'.['.$csec.'].'.$mapparm; |
my $seclevelr= |
|
$ENV{'request.course.id'}.'.['. |
my $courselevel=$ENV{'request.course.id'}.'.'.$what; |
$csec.'].'.$symbparm; |
my $courselevelr=$ENV{'request.course.id'}.'.'.$symbparm; |
my $seclevelm= |
my $courselevelm=$ENV{'request.course.id'}.'.'.$mapparm; |
$ENV{'request.course.id'}.'.['. |
|
$csec.'].'.$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 (defined($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 (defined($thisparm)) { $outpar[10]=$thisparm; $result=10; } |
$result=10; } |
|
|
|
# --------------------------------------------------------- third, check course |
# --------------------------------------------------------- third, check course |
|
|
if ($courseopt{$courselevel}) { $outpar[9]=$courseopt{$courselevel}; |
if (defined($courseopt{$courselevel})) { |
$result=9; } |
$outpar[9]=$courseopt{$courselevel}; |
|
$result=9; |
if ($courseopt{$courselevelm}) { $outpar[8]=$courseopt{$courselevelm}; |
} |
$result=8; } |
|
|
|
if ($courseopt{$courselevelr}) { $outpar[7]=$courseopt{$courselevelr}; |
if (defined($courseopt{$courselevelm})) { |
$result=7; } |
$outpar[8]=$courseopt{$courselevelm}; |
|
$result=8; |
|
} |
|
|
if ($csec) { |
if (defined($courseopt{$courselevelr})) { |
|
$outpar[7]=$courseopt{$courselevelr}; |
|
$result=7; |
|
} |
|
|
if ($courseopt{$seclevel}) { $outpar[6]=$courseopt{$seclevel}; |
if (defined($csec)) { |
$result=6; } |
if (defined($courseopt{$seclevel})) { |
|
$outpar[6]=$courseopt{$seclevel}; |
|
$result=6; |
|
} |
|
if (defined($courseopt{$seclevelm})) { |
|
$outpar[5]=$courseopt{$seclevelm}; |
|
$result=5; |
|
} |
|
|
if ($courseopt{$seclevelm}) { $outpar[5]=$courseopt{$seclevelm}; |
if (defined($courseopt{$seclevelr})) { |
$result=5; } |
$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}; |
if (defined($uname)) { |
$result=3; } |
if (defined($useropt{$courselevel})) { |
|
$outpar[3]=$useropt{$courselevel}; |
if ($useropt{$courselevelm}) { $outpar[2]=$useropt{$courselevelm}; |
$result=3; |
$result=2; } |
} |
|
|
if ($useropt{$courselevelr}) { $outpar[1]=$useropt{$courselevelr}; |
if (defined($useropt{$courselevelm})) { |
$result=1; } |
$outpar[2]=$useropt{$courselevelm}; |
|
$result=2; |
|
} |
|
|
} |
if (defined($useropt{$courselevelr})) { |
|
$outpar[1]=$useropt{$courselevelr}; |
return $result; |
$result=1; |
|
} |
|
} |
|
return ($result,@outpar); |
} |
} |
|
|
# ------------------------------------------------------------ Output for value |
################################################## |
|
################################################## |
|
|
sub valout { |
=pod |
my ($value,$type)=@_; |
|
return |
|
($value?(($type=~/^date/)?localtime($value):$value):' '); |
|
} |
|
|
|
# -------------------------------------------------------- Produces link anchor |
=item valout |
|
|
sub plink { |
|
my ($type,$dis,$value,$marker,$return,$call)=@_; |
|
my $winvalue=$value; |
|
unless ($winvalue) { |
|
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>'; |
|
} |
|
|
|
sub assessparms { |
Format a value for output. |
|
|
my $r=shift; |
Inputs: $value, $type |
# -------------------------------------------------------- Variable declaration |
|
|
|
%courseopt=(); |
Returns: $value, formatted for output. If $type indicates it is a date, |
%useropt=(); |
localtime($value) is returned. |
%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? |
=cut |
|
|
if (($ENV{'form.command'} eq 'set') && ($ENV{'form.url'}) |
################################################## |
&& (!$ENV{'form.dis'})) { |
################################################## |
my $url=$ENV{'form.url'}; |
sub valout { |
$url=~s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--; |
my ($value,$type)=@_; |
$pssymb=&Apache::lonnet::symbread($url); |
my $result = ''; |
$pscat='all'; |
# Values of zero are valid. |
$pschp=''; |
if (! $value && $value ne '0') { |
} elsif ($ENV{'form.symb'}) { |
$result = ' '; |
$pssymb=$ENV{'form.symb'}; |
} else { |
$pscat='all'; |
if ($type eq 'date_interval') { |
$pschp=''; |
my ($sec,$min,$hour,$mday,$mon,$year)=gmtime($value); |
} else { |
$year=$year-70; |
$ENV{'form.url'}=''; |
$mday--; |
} |
if ($year) { |
|
$result.=$year.' yrs '; |
my $id=$ENV{'form.id'}; |
} |
if (($id) && ($udom)) { |
if ($mon) { |
$uname=(&Apache::lonnet::idget($udom,$id))[1]; |
$result.=$mon.' mths '; |
if ($uname) { |
} |
$id=''; |
if ($mday) { |
} else { |
$result.=$mday.' days '; |
$message= |
} |
"<font color=red>Unknown ID '$id' at domain '$udom'</font>"; |
if ($hour) { |
} |
$result.=$hour.' hrs '; |
} else { |
} |
$uname=$ENV{'form.uname'}; |
if ($min) { |
} |
$result.=$min.' mins '; |
unless ($udom) { $uname=''; } |
} |
$uhome=''; |
if ($sec) { |
if ($uname) { |
$result.=$sec.' secs '; |
$uhome=&Apache::lonnet::homeserver($uname,$udom); |
} |
|
$result=~s/\s+$//; |
if ($uhome eq 'no_host') { |
} elsif ($type=~/^date/) { |
$message= |
$result = localtime($value); |
"<font color=red>Unknown user '$uname' at domain '$udom'</font>"; |
|
$uname=''; |
|
} else { |
} else { |
$csec=&Apache::lonnet::usection( |
$result = $value; |
$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>'; |
|
} |
|
} |
} |
} |
} |
|
return $result; |
|
} |
|
|
unless ($csec) { $csec=''; } |
################################################## |
|
################################################## |
|
|
$fcat=$ENV{'form.fcat'}; |
=pod |
unless ($fcat) { $fcat=''; } |
|
|
|
# ------------------------------------------------------------------- Tie hashs |
=item plink |
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 all assessments |
Produces a link anchor. |
undef %allkeys; |
|
undef %allmaps; |
|
undef %defp; |
|
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; |
Inputs: $type,$dis,$value,$marker,$return,$call |
my $mapparm=$mapp{$sresid}.'___(all).'.$spnam; |
|
|
|
my $seclevel= |
Returns: scalar with html code for a link which will envoke the |
$ENV{'request.course.id'}.'.['. |
javascript function 'pjump'. |
$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=''; |
=cut |
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'}.':'. |
sub plink { |
$ENV{'course.'.$ENV{'request.course.id'}.'.num'}.':resourcedata:'. |
my ($type,$dis,$value,$marker,$return,$call)=@_; |
$storecontent, |
my $winvalue=$value; |
$ENV{'course.'.$ENV{'request.course.id'}.'.home'}); |
unless ($winvalue) { |
} else { |
if ($type=~/^date/) { |
# ------------------------------------------------------------------ Store User |
$winvalue=$ENV{'form.recent_'.$type}; |
# |
} else { |
# Expire sheets |
$winvalue=$ENV{'form.recent_'.(split(/\_/,$type))[0]}; |
&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); |
|
} |
|
} |
|
} |
} |
|
} |
|
return |
|
'<a href="javascript:pjump('."'".$type."','".$dis."','".$winvalue."','" |
|
.$marker."','".$return."','".$call."'".');">'. |
|
&valout($value,$type).'</a><a name="'.$marker.'"></a>'; |
|
} |
|
|
# ------------------------------------------------------------------- Sort this |
|
|
|
@ids=sort { |
sub startpage { |
if ($fcat eq '') { |
my ($r,$id,$udom,$csec,$uname,$have_assesments,$trimheader)=@_; |
$a<=>$b; |
|
} else { |
|
1*$outpar[&parmval($fcat,$a,$defp{$a})]<=> |
|
1*$outpar[&parmval($fcat,$b,$defp{$b})]; |
|
} |
|
} @ids; |
|
|
|
# ------------------------------------------------------------------ Start page |
my $bodytag=&Apache::loncommon::bodytag('Set/Modify Course Parameters','', |
$r->content_type('text/html'); |
'onUnload="pclose()"'); |
$r->send_http_header; |
my $chooseopt=&Apache::loncommon::select_dom_form($udom,'udom').' '. |
$r->print(<<ENDHEAD); |
&Apache::loncommon::selectstudent_link('parmform','uname','udom'); |
|
my $selscript=&Apache::loncommon::studentbrowser_javascript(); |
|
my $pjump_def = &Apache::lonhtmlcommon::pjump_javascript_definition(); |
|
my %lt=&Apache::lonlocal::texthash( |
|
'cep' => "Course Environment Parameters", |
|
'scep' => "Set Course Environment Parameters", |
|
'smcap' => "Set/Modify Course Assessment Parameter", |
|
'mcap' => "Modify Course Assessment Parameters", |
|
'caphm' => "Course Assessment Parameter - Helper Mode", |
|
'capom' => "Course Assessment Parameters - Overview Mode", |
|
'captm' => "Course Assessments Parameters - Table Mode", |
|
'sg' => "Section/Group", |
|
'fu' => "For User", |
|
'oi' => "or ID", |
|
'ad' => "at Domain" |
|
); |
|
my $overallhelp=&Apache::loncommon::help_open_topic("Course_Setting_Parameters","Parameters"); |
|
my $assessparmhelp=&Apache::loncommon::help_open_topic("Cascading_Parameters","Assessment Parameters"); |
|
$r->print(<<ENDHEAD); |
<html> |
<html> |
<head> |
<head> |
<title>LON-CAPA Course Parameters</title> |
<title>LON-CAPA Course Parameters</title> |
Line 434 sub assessparms {
|
Line 320 sub assessparms {
|
parmwin.close(); |
parmwin.close(); |
} |
} |
|
|
function pjump(type,dis,value,marker,ret,call) { |
$pjump_def |
document.parmform.pres_marker.value=''; |
|
parmwin=window.open("/adm/rat/parameter.html?type="+escape(type) |
|
+"&value="+escape(value)+"&marker="+escape(marker) |
|
+"&return="+escape(ret) |
|
+"&call="+escape(call)+"&name="+escape(dis),"LONCAPAparms", |
|
"height=350,width=350,scrollbars=no,menubar=no"); |
|
|
|
} |
|
|
|
function psub() { |
function psub() { |
pclose(); |
pclose(); |
Line 467 sub assessparms {
|
Line 345 sub assessparms {
|
} |
} |
} |
} |
|
|
|
function openWindow(url, wdwName, w, h, toolbar,scrollbar) { |
|
var options = "width=" + w + ",height=" + h + ","; |
|
options += "resizable=yes,scrollbars="+scrollbar+",status=no,"; |
|
options += "menubar=no,toolbar="+toolbar+",location=no,directories=no"; |
|
var newWin = window.open(url, wdwName, options); |
|
newWin.focus(); |
|
} |
</script> |
</script> |
|
$selscript |
</head> |
</head> |
<body bgcolor="#FFFFFF" onUnload="pclose()"> |
$bodytag |
<h1>Set Course Parameters</h1> |
$overallhelp |
|
ENDHEAD |
|
|
|
unless ($trimheader) {$r->print(<<ENDHEAD2); |
<form method="post" action="/adm/parmset" name="envform"> |
<form method="post" action="/adm/parmset" name="envform"> |
<h2>Course: $ENV{'course.'.$ENV{'request.course.id'}.'.description'}</h2> |
<h4>$lt{'cep'}</h4> |
<h3>Course Environment</h3> |
<input type="submit" name="crsenv" value="$lt{'scep'}" /> |
<input type="submit" name="crsenv" value="Set Course Environment"> |
</form> |
|
<hr /> |
|
$assessparmhelp |
|
<form method="post" action="/adm/helper/parameter.helper" name="helpform"> |
|
<h4>$lt{'caphm'}</h4> |
|
<input type="submit" value="$lt{'smcap'}" /> |
|
</form> |
|
<hr /> |
|
<form method="post" action="/adm/parmset" name="overview"> |
|
<h4>$lt{'capom'}</h4> |
|
<input type="submit" name="overview" value="$lt{'mcap'}" /> |
</form> |
</form> |
|
<hr /> |
|
ENDHEAD2 |
|
} |
|
$r->print(<<ENDHEAD3); |
<form method="post" action="/adm/parmset" name="parmform"> |
<form method="post" action="/adm/parmset" name="parmform"> |
<h3>Course Assessments</h3> |
<h4>$lt{'captm'}</h4> |
|
ENDHEAD3 |
|
|
|
if (!$have_assesments) { |
|
$r->print('<font color="red">'.&mt('There are no assesment parameters in this course to set.').'</font><br />'); |
|
} else { |
|
$r->print(<<ENDHEAD); |
<b> |
<b> |
Section/Group: |
$lt{'sg'}: |
<input type="text" value="$csec" size="6" name="csec"> |
<input type="text" value="$csec" size="6" name="csec"> |
<br> |
<br> |
For User |
$lt{'fu'} |
<input type="text" value="$uname" size="12" name="uname"> |
<input type="text" value="$uname" size="12" name="uname"> |
or ID |
$lt{'oi'} |
<input type="text" value="$id" size="12" name="id"> |
<input type="text" value="$id" size="12" name="id"> |
at Domain |
$lt{'ad'} |
<input type="text" value="$udom" size="6" name="udom"> |
$chooseopt |
</b> |
</b> |
<input type="hidden" value='' name="pres_value"> |
<input type="hidden" value='' name="pres_value"> |
<input type="hidden" value='' name="pres_type"> |
<input type="hidden" value='' name="pres_type"> |
<input type="hidden" value='' name="pres_marker"> |
<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">'); |
|
} |
} |
|
} |
|
|
|
sub print_row { |
|
my ($r,$which,$part,$name,$rid,$default,$defaulttype,$display,$defbgone, |
|
$defbgtwo,$parmlev)=@_; |
|
# get the values for the parameter in cascading order |
|
# empty levels will remain empty |
|
my ($result,@outpar)=&parmval($$part{$which}.'.'.$$name{$which}, |
|
$rid,$$default{$which}); |
|
# get the type for the parameters |
|
# problem: these may not be set for all levels |
|
my ($typeresult,@typeoutpar)=&parmval($$part{$which}.'.'. |
|
$$name{$which}.'.type', |
|
$rid,$$defaulttype{$which}); |
|
# cascade down manually |
|
my $cascadetype=$defaulttype; |
|
for (my $i=$#typeoutpar;$i>0;$i--) { |
|
if ($typeoutpar[$i]) { |
|
$cascadetype=$typeoutpar[$i]; |
|
} else { |
|
$typeoutpar[$i]=$cascadetype; |
|
} |
|
} |
|
|
|
my $parm=$$display{$which}; |
|
|
|
if ($parmlev eq 'full' || $parmlev eq 'brief') { |
|
$r->print('<td bgcolor='.$defbgtwo.' align="center">' |
|
.$$part{$which}.'</td>'); |
|
} else { |
|
$parm=~s|\[.*\]\s||g; |
|
} |
|
|
|
$r->print('<td bgcolor='.$defbgone.'>'.$parm.'</td>'); |
|
|
|
my $thismarker=$which; |
|
$thismarker=~s/^parameter\_//; |
|
my $mprefix=$rid.'&'.$thismarker.'&'; |
|
|
|
if ($parmlev eq 'general') { |
|
|
|
if ($uname) { |
|
&print_td($r,3,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
} elsif ($csec) { |
|
&print_td($r,6,$defbgtwo,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
} else { |
|
&print_td($r,9,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
} |
|
} elsif ($parmlev eq 'map') { |
|
|
|
if ($uname) { |
|
&print_td($r,2,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
} elsif ($csec) { |
|
&print_td($r,5,$defbgtwo,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
} else { |
|
&print_td($r,8,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
} |
|
} else { |
|
|
|
&print_td($r,11,'#FFDDDD',$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
|
|
if ($parmlev eq 'brief') { |
|
|
|
&print_td($r,7,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
|
|
if ($csec) { |
|
&print_td($r,4,$defbgtwo,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
} |
|
if ($uname) { |
|
&print_td($r,1,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
} |
|
} else { |
|
|
|
&print_td($r,10,'#FFDDDD',$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
&print_td($r,9,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
&print_td($r,8,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
&print_td($r,7,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
|
|
if ($csec) { |
|
&print_td($r,6,$defbgtwo,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
&print_td($r,5,$defbgtwo,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
&print_td($r,4,$defbgtwo,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
} |
|
if ($uname) { |
|
&print_td($r,3,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
&print_td($r,2,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
&print_td($r,1,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); |
|
} |
|
} # end of $brief if/else |
|
} # end of $parmlev if/else |
|
|
|
$r->print('<td bgcolor=#CCCCFF align="center">'. |
|
&valout($outpar[$result],$typeoutpar[$result]).'</td>'); |
|
|
|
if ($parmlev eq 'full' || $parmlev eq 'brief') { |
|
my $sessionval=&Apache::lonnet::EXT('resource.'.$$part{$which}. |
|
'.'.$$name{$which},$symbp{$rid}); |
|
|
|
# this doesn't seem to work, and I don't think is correct |
|
# my $sessionvaltype=&Apache::lonnet::EXT('resource.'.$$part{$which}. |
|
# '.'.$$name{$which}.'.type',$symbp{$rid}); |
|
# this seems to work |
|
my $sessionvaltype=$typeoutpar[$result]; |
|
if (!defined($sessionvaltype)) { $sessionvaltype=$$defaulttype{$which}; } |
|
$r->print('<td bgcolor=#999999 align="center"><font color=#FFFFFF>'. |
|
&valout($sessionval,$sessionvaltype).' '. |
|
'</font></td>'); |
|
} |
|
$r->print('</tr>'); |
|
$r->print("\n"); |
|
} |
|
|
|
sub print_td { |
|
my ($r,$which,$defbg,$result,$outpar,$mprefix,$value,$typeoutpar,$display)=@_; |
|
$r->print('<td bgcolor='.(($result==$which)?'"#AAFFAA"':$defbg). |
|
' align="center">'); |
|
if ($which<10) { |
|
$r->print(&plink($$typeoutpar[$which], |
|
$$display{$value},$$outpar[$which], |
|
$mprefix."$which",'parmform.pres','psub')); |
|
} else { |
|
$r->print(&valout($$outpar[$which],$$typeoutpar[$which])); |
|
} |
|
$r->print('</td>'."\n"); |
|
} |
|
|
|
=pod |
|
|
|
=item B<extractResourceInformation>: Given the course data hash, extractResourceInformation extracts lots of information about the course's resources into a variety of hashes. |
|
|
|
Input: See list below: |
|
|
|
=over 4 |
|
|
|
=item B<ids>: An array that will contain all of the ids in the course. |
|
|
|
=item B<typep>: hash, id->type, where "type" contains the extension of the file, thus, I<problem exam quiz assess survey form>. |
|
|
|
=item B<keyp>: hash, id->key list, will contain a comma seperated list of the meta-data keys available for the given id |
|
|
|
=item B<allparms>: hash, name of parameter->display value (what is the display value?) |
|
|
|
=item B<allparts>: hash, part identification->text representation of part, where the text representation is "[Part $part]" |
|
|
|
=item B<allkeys>: hash, full key to part->display value (what's display value?) |
|
|
|
=item B<allmaps>: hash, ??? |
|
|
|
=item B<fcat>: ??? |
|
|
|
=item B<defp>: hash, ??? |
|
|
|
=item B<mapp>: ?? |
|
|
|
=item B<symbp>: hash, id->full sym? |
|
|
|
=back |
|
|
|
=cut |
|
|
|
sub extractResourceInformation { |
|
my $bighash = shift; |
|
my $ids = shift; |
|
my $typep = shift; |
|
my $keyp = shift; |
|
my $allparms = shift; |
|
my $allparts = shift; |
|
my $allkeys = shift; |
|
my $allmaps = shift; |
|
my $fcat = shift; |
|
my $defp = shift; |
|
my $mapp = shift; |
|
my $symbp = shift; |
|
my $maptitles=shift; |
|
|
|
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,'allpossiblekeys'))) { |
|
if ($_=~/^parameter\_(.*)/) { |
|
my $key=$_; |
|
my $allkey=$1; |
|
$allkey=~s/\_/\./g; |
|
my $display= &Apache::lonnet::metadata($srcf,$key.'.display'); |
|
my $name=&Apache::lonnet::metadata($srcf,$key.'.name'); |
|
my $part= &Apache::lonnet::metadata($srcf,$key.'.part'); |
|
my $parmdis = $display; |
|
$parmdis =~ s|(\[Part.*$)||g; |
|
my $partkey = $part; |
|
$partkey =~ tr|_|.|; |
|
$$allparms{$name} = $parmdis; |
|
$$allparts{$part} = "[Part $part]"; |
|
$$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}); |
|
$$mapp{$mapid}=$$mapp{$id}; |
|
$$allmaps{$mapid}=$$mapp{$id}; |
|
$$maptitles{$mapid}= |
|
$$bighash{'title_'.$$bighash{'ids_'.&Apache::lonnet::clutter($$mapp{$id})}}; |
|
$$maptitles{$$mapp{$id}}=$$maptitles{$mapid}; |
|
$$symbp{$id}=$$mapp{$id}. |
|
'___'.$resid.'___'. |
|
&Apache::lonnet::declutter($srcf); |
|
$$symbp{$mapid}=$$mapp{$id}.'___(all)'; |
|
} |
|
} |
|
} |
|
} |
|
|
|
################################################## |
|
################################################## |
|
|
|
=pod |
|
|
|
=item assessparms |
|
|
|
Show assessment data and parameters. This is a large routine that should |
|
be simplified and shortened... someday. |
|
|
|
Inputs: $r |
|
|
|
Returns: nothing |
|
|
|
Variables used (guessed by Jeremy): |
|
|
|
=over 4 |
|
|
|
=item B<pscat>: ParameterS CATegories? ends up a list of the types of parameters that exist, e.g., tol, weight, acc, opendate, duedate, answerdate, sig, maxtries, type. |
|
|
|
=item B<psprt>: ParameterS PaRTs? a list of the parts of a problem that we are displaying? Used to display only selected parts? |
|
|
|
=item B<allmaps>: |
|
|
|
=back |
|
|
|
=cut |
|
|
|
################################################## |
|
################################################## |
|
sub assessparms { |
|
|
|
my $r=shift; |
|
# -------------------------------------------------------- Variable declaration |
|
my %allkeys=(); |
|
my %allmaps=(); |
|
my %alllevs=(); |
|
|
|
$alllevs{'Resource Level'}='full'; |
|
# $alllevs{'Resource Level [BRIEF]'}='brief'; |
|
$alllevs{'Map Level'}='map'; |
|
$alllevs{'Course Level'}='general'; |
|
|
|
my %allparms; |
|
my %allparts; |
|
|
|
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=&Apache::loncommon::get_env_multiple('form.pscat'); |
|
my $pschp=$ENV{'form.pschp'}; |
|
my @psprt=&Apache::loncommon::get_env_multiple('form.psprt'); |
|
if (!@psprt) { $psprt[0]='0'; } |
|
my $showoptions=$ENV{'form.showoptions'}; |
|
|
|
my $pssymb=''; |
|
my $parmlev=''; |
|
my $trimheader=''; |
|
my $prevvisit=$ENV{'form.prevvisit'}; |
|
|
|
# unless ($parmlev==$ENV{'form.parmlev'}) { |
|
# $parmlev = 'full'; |
|
# } |
|
|
|
unless ($ENV{'form.parmlev'}) { |
|
$parmlev = 'map'; |
|
} else { |
|
$parmlev = $ENV{'form.parmlev'}; |
|
} |
|
|
|
# ----------------------------------------------- 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); |
|
if (!@pscat) { @pscat=('all'); } |
|
$pschp=''; |
|
$parmlev = 'full'; |
|
$trimheader='yes'; |
|
} elsif ($ENV{'form.symb'}) { |
|
$pssymb=$ENV{'form.symb'}; |
|
if (!@pscat) { @pscat=('all'); } |
|
$pschp=''; |
|
$parmlev = 'full'; |
|
$trimheader='yes'; |
|
} 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>".&mt("Unknown ID")." '$id' ". |
|
&mt('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>".&mt("Unknown user")." '$uname' ". |
|
&mt("at domain")." '$udom'</font>"; |
|
$uname=''; |
|
} else { |
|
$csec=&Apache::lonnet::getsection($udom,$uname, |
|
$ENV{'request.course.id'}); |
|
if ($csec eq '-1') { |
|
$message="<font color=red>". |
|
&mt("User")." '$uname' ".&mt("at domain")." '$udom' ". |
|
&mt("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>\n".&mt("Full Name").": ". |
|
$name{'firstname'}.' '.$name{'middlename'}.' ' |
|
.$name{'lastname'}.' '.$name{'generation'}. |
|
"<br>\n".&mt('ID').": ".$name{'id'}.'<p>'; |
|
} |
|
} |
|
} |
|
|
|
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 |
|
extractResourceInformation(\%bighash, \@ids, \%typep,\%keyp, \%allparms, \%allparts, \%allkeys, \%allmaps, $fcat, \%defp, \%mapp, \%symbp,\%maptitles); |
|
|
|
$mapp{'0.0'} = ''; |
|
$symbp{'0.0'} = ''; |
|
|
|
# ---------------------------------------------------------- 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; } |
|
|
|
my $delete; |
|
if ($ENV{'form.pres_value'} eq '') { $delete=1;} |
|
my %storecontent = ($storeunder => $ENV{'form.pres_value'}, |
|
$storeunder.'.type' => $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 |
|
if ($delete) { |
|
$reply=&Apache::lonnet::del |
|
('resourcedata',[keys(%storecontent)], |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}, |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.num'}); |
|
} else { |
|
$reply=&Apache::lonnet::cput |
|
('resourcedata',\%storecontent, |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}, |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.num'}); |
|
} |
|
} 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 |
|
if ($delete) { |
|
$reply=&Apache::lonnet::del |
|
('resourcedata',[keys(%storecontent)],$udom,$uname); |
|
} else { |
|
$reply=&Apache::lonnet::cput |
|
('resourcedata',\%storecontent,$udom,$uname); |
|
} |
|
} |
|
|
|
if ($reply=~/^error\:(.*)/) { |
|
$message.="<font color=red>Write Error: $1</font>"; |
|
} |
|
# ---------------------------------------------------------------- Done storing |
|
$message.='<h3>'.&mt('Changes can take up to 10 minutes before being active for all students.').&Apache::loncommon::help_open_topic('Caching').'</h3>'; |
|
} |
|
# --------------------------------------------- Devalidate cache for this child |
|
&Apache::lonnet::devalidatecourseresdata( |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.num'}, |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}); |
|
&Apache::lonnet::clear_EXT_cache_status(); |
|
# -------------------------------------------------------------- Get coursedata |
|
%courseopt = &Apache::lonnet::dump |
|
('resourcedata', |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}, |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.num'}); |
|
# --------------------------------------------------- Get userdata (if present) |
|
if ($uname) { |
|
%useropt=&Apache::lonnet::dump('resourcedata',$udom,$uname); |
|
} |
|
|
|
# ------------------------------------------------------------------- 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; |
|
#----------------------------------------------- if all selected, fill in array |
|
if ($pscat[0] eq "all" || !@pscat) {@pscat = (keys %allparms);} |
|
if ($psprt[0] eq "all" || !@psprt) {@psprt = (keys %allparts);} |
|
# ------------------------------------------------------------------ Start page |
|
|
|
my $have_assesments=1; |
|
if (scalar(keys(%allkeys)) eq 0) { $have_assesments=0; } |
|
|
|
&startpage($r,$id,$udom,$csec,$uname,$have_assesments,$trimheader); |
|
|
|
if (!$have_assesments) { |
|
untie(%bighash); |
|
untie(%parmhash); |
|
return ''; |
|
} |
|
# if ($ENV{'form.url'}) { |
|
# $r->print('<input type="hidden" value="'.$ENV{'form.url'}. |
|
# '" name="url"><input type="hidden" name="command" value="set">'); |
|
# } |
|
$r->print('<input type="hidden" value="true" name="prevvisit">'); |
|
|
foreach ('tolerance','date_default','date_start','date_end', |
foreach ('tolerance','date_default','date_start','date_end', |
'date_interval','int','float','string') { |
'date_interval','int','float','string') { |
$r->print('<input type="hidden" value="'. |
$r->print('<input type="hidden" value="'. |
$ENV{'form.recent_'.$_}.'" name="recent_'.$_.'">'); |
$ENV{'form.recent_'.$_}.'" name="recent_'.$_.'">'); |
|
} |
|
|
|
$r->print('<h2>'.$message.'</h2><table>'); |
|
|
|
my $submitmessage = &mt('Update Section or Specific User'); |
|
if (!$pssymb) { |
|
$r->print('<tr><td>'.&mt('Select Parameter Level').'</td><td colspan="2">'); |
|
$r->print('<select name="parmlev">'); |
|
foreach (reverse sort keys %alllevs) { |
|
$r->print('<option value="'.$alllevs{$_}.'"'); |
|
if ($parmlev eq $alllevs{$_}) { |
|
$r->print(' selected'); |
|
} |
|
$r->print('>'.$_.'</option>'); |
|
} |
|
$r->print("</select></td>\n"); |
|
|
|
$r->print('</tr>'); |
|
if ($parmlev ne 'general') { |
|
$r->print('<tr><td>'.&mt('Select Enclosing Map or Folder').'</td>'); |
|
$r->print('<td colspan="2"><select name="pschp">'); |
|
$r->print('<option value="all">'.&mt('All Maps or Folders').'</option>'); |
|
foreach (sort {$allmaps{$a} cmp $allmaps{$b}} keys %allmaps) { |
|
$r->print('<option value="'.$_.'"'); |
|
if (($pschp eq $_)) { $r->print(' selected'); } |
|
$r->print('>'.$maptitles{$_}.($allmaps{$_}!~/^uploaded/?' ['.$allmaps{$_}.']':'').'</option>'); |
|
} |
|
$r->print("</select></td></tr>\n"); |
|
} |
|
} else { |
|
my ($map,$id,$resource)=&Apache::lonnet::decode_symb($pssymb); |
|
$r->print("<tr><td>".&mt('Specific Resource')."</td><td>$resource</td>"); |
|
$r->print('<td><input type="submit" name="dis" value="'.$submitmessage.'"></td>'); |
|
$r->print('</tr>'); |
|
$r->print('<input type="hidden" value="'.$pssymb.'" name="symb">'); |
} |
} |
|
|
$r->print('<h2>'.$message.'</h2><table><tr><td>Sort list by</td><td>'); |
$r->print('<tr><td colspan="3"><hr /><input type="checkbox"'); |
$r->print('<select name="fcat">'); |
if ($showoptions eq 'show') {$r->print(" checked ");} |
$r->print('<option value="">Enclosing Map</option>'); |
$r->print(' name="showoptions" value="show">'.&mt('Show More Options').'<hr /></td></tr>'); |
foreach (reverse sort keys %allkeys) { |
# $r->print("<tr><td>Show: $showoptions</td></tr>"); |
$r->print('<option value="'.$_.'"'); |
# $r->print("<tr><td>pscat: @pscat</td></tr>"); |
|
# $r->print("<tr><td>psprt: @psprt</td></tr>"); |
|
# $r->print("<tr><td>fcat: $fcat</td></tr>"); |
|
|
|
if ($showoptions eq 'show') { |
|
my $tempkey; |
|
|
|
$r->print('<tr><td colspan="3" align="center">'.&mt('Select Parameters to View').'</td></tr>'); |
|
|
|
$r->print('<tr><td colspan="2"><table>'); |
|
$r->print('<tr><td><input type="checkbox" name="pscat" value="all"'); |
|
$r->print(' checked') unless (@pscat); |
|
$r->print('>'.&mt('All Parameters').'</td>'); |
|
|
|
my $cnt=0; |
|
foreach $tempkey (sort { $allparms{$a} cmp $allparms{$b} } |
|
keys %allparms ) { |
|
++$cnt; |
|
$r->print('</tr><tr>') unless ($cnt%2); |
|
$r->print('<td><input type="checkbox" name="pscat" '); |
|
$r->print('value="'.$tempkey.'"'); |
|
if ($pscat[0] eq "all" || grep $_ eq $tempkey, @pscat) { |
|
$r->print(' checked'); |
|
} |
|
$r->print('>'.$allparms{$tempkey}.'</td>'); |
|
} |
|
$r->print('</tr></table>'); |
|
|
|
# $r->print('<tr><td>Select Parts</td><td>'); |
|
$r->print('<td><select multiple name="psprt" size="5">'); |
|
$r->print('<option value="all"'); |
|
$r->print(' selected') unless (@psprt); |
|
$r->print('>'.&mt('All Parts').'</option>'); |
|
my %temphash=(); |
|
foreach (@psprt) { $temphash{$_}=1; } |
|
foreach $tempkey (sort keys %allparts) { |
|
unless ($tempkey =~ /\./) { |
|
$r->print('<option value="'.$tempkey.'"'); |
|
if ($psprt[0] eq "all" || $temphash{$tempkey}) { |
|
$r->print(' selected'); |
|
} |
|
$r->print('>'.$allparts{$tempkey}.'</option>'); |
|
} |
|
} |
|
$r->print('</select></td></tr><tr><td colspan="3"><hr /></td></tr>'); |
|
|
|
$r->print('<tr><td>'.&mt('Sort list by').'</td><td>'); |
|
$r->print('<select name="fcat">'); |
|
$r->print('<option value="">'.&mt('Enclosing Map or Folder').'</option>'); |
|
foreach (sort keys %allkeys) { |
|
$r->print('<option value="'.$_.'"'); |
if ($fcat eq $_) { $r->print(' selected'); } |
if ($fcat eq $_) { $r->print(' selected'); } |
$r->print('>'.$allkeys{$_}.'</option>'); |
$r->print('>'.$allkeys{$_}.'</option>'); |
} |
} |
$r->print( |
$r->print('</select></td>'); |
'</select></tr><tr><td>Select Enclosing Map</td><td><select name=pschp>'); |
|
$r->print('<option value=all>All Maps</option>'); |
$r->print('</tr><tr><td colspan="3"><hr /></td></tr>'); |
foreach (keys %allmaps) { |
|
$r->print('<option value="'.$_.'"'); |
} else { # hide options - include any necessary extras here |
if (($pssymb=~/^$allmaps{$_}/) || |
|
($pschp eq $_)) { $r->print(' selected'); } |
$r->print('<input type="hidden" name="fcat" value="'.$fcat.'">'."\n"); |
$r->print('>'.$allmaps{$_}.'</option>'); |
|
} |
unless (@pscat) { |
$r->print( |
foreach (keys %allparms ) { |
'</select></td></tr><tr><td>Select Parameter</td><td><select name=pscat>'); |
$r->print('<input type="hidden" name="pscat" value="'.$_.'">'."\n"); |
$r->print('<option value=all>All Parameters</option>'); |
} |
foreach (reverse sort keys %allkeys) { |
} else { |
$r->print('<option value="'.$_.'"'); |
foreach (@pscat) { |
if ($pscat eq $_) { $r->print(' selected'); } |
$r->print('<input type="hidden" name="pscat" value="'.$_.'">'."\n"); |
$r->print('>'.$allkeys{$_}.'</option>'); |
} |
|
} |
|
|
|
unless (@psprt) { |
|
foreach (keys %allparts ) { |
|
$r->print('<input type="hidden" name="psprt" value="'.$_.'">'."\n"); |
|
} |
|
} else { |
|
foreach (@psprt) { |
|
$r->print('<input type="hidden" name="psprt" value="'.$_.'">'."\n"); |
|
} |
} |
} |
$r->print( |
|
'</select></td></tr></table><br><input name=dis type="submit" value="Display">' |
} |
); |
$r->print('</table><br />'); |
if (($pscat) || ($pschp) || ($pssymb)) { |
if (($prevvisit) || ($pschp) || ($pssymb)) { |
|
$submitmessage = &mt("Update Course Assessment Parameter Display"); |
|
} else { |
|
$submitmessage = &mt("Set/Modify Course Assessment Parameters"); |
|
} |
|
$r->print('<input type="submit" name="dis" value="'.$submitmessage.'">'); |
|
|
|
# my @temp_psprt; |
|
# foreach my $t (@psprt) { |
|
# push(@temp_psprt, grep {eval (/^$t\./ || ($_ == $t))} (keys %allparts)); |
|
# } |
|
|
|
# @psprt = @temp_psprt; |
|
|
|
my @temp_pscat; |
|
map { |
|
my $cat = $_; |
|
push(@temp_pscat, map { $_.'.'.$cat } @psprt); |
|
} @pscat; |
|
|
|
@pscat = @temp_pscat; |
|
|
|
if (($prevvisit) || ($pschp) || ($pssymb)) { |
# ----------------------------------------------------------------- Start Table |
# ----------------------------------------------------------------- Start Table |
my $catmarker='parameter_'.$pscat; |
my @catmarker=map { tr|.|_|; 'parameter_'.$_; } @pscat; |
$catmarker=~s/\./\_/g; |
|
my $coursespan=$csec?8:5; |
|
my $csuname=$ENV{'user.name'}; |
my $csuname=$ENV{'user.name'}; |
my $csudom=$ENV{'user.domain'}; |
my $csudom=$ENV{'user.domain'}; |
$r->print(<<ENDTABLEHEAD); |
|
<p><table border=2> |
if ($parmlev eq 'full' || $parmlev eq 'brief') { |
<tr><td colspan=5></td> |
my $coursespan=$csec?8:5; |
<th colspan=$coursespan>Any User</th> |
$r->print('<p><table border=2>'); |
ENDTABLEHEAD |
$r->print('<tr><td colspan=5></td>'); |
if ($uname) { |
$r->print('<th colspan='.($coursespan).'>'.&mt('Any User').'</th>'); |
$r->print("<th colspan=3 rowspan=2>User $uname at Domain $udom</th>"); |
if ($uname) { |
} |
$r->print("<th colspan=3 rowspan=2>"); |
$r->print(<<ENDTABLETWO); |
$r->print(&mt("User")." $uname ".&mt('at Domain')." $udom</th>"); |
<th rowspan=3>Parameter in Effect</th> |
} |
<th rowspan=3>Current Session Value<br>($csuname at $csudom)</th> |
my %lt=&Apache::lonlocal::texthash( |
</tr><tr><td colspan=5></td> |
'pie' => "Parameter in Effect", |
<th colspan=2>Resource Level</th> |
'csv' => "Current Session Value", |
<th colspan=3>in Course</th> |
'at' => 'at', |
|
'rl' => "Resource Level", |
|
'ic' => 'in Course', |
|
'aut' => "Assessment URL and Title", |
|
'type' => 'Type', |
|
'emof' => "Enclosing Map or Folder", |
|
'part' => 'Part', |
|
'pn' => 'Parameter Name', |
|
'def' => 'default', |
|
'femof' => 'from Enclosing Map or Folder', |
|
'gen' => 'general', |
|
'foremf' => 'for Enclosing Map or Folder', |
|
'fr' => 'for Resource' |
|
); |
|
$r->print(<<ENDTABLETWO); |
|
<th rowspan=3>$lt{'pie'}</th> |
|
<th rowspan=3>$lt{'csv'}<br>($csuname $lt{'at'} $csudom)</th> |
|
</tr><tr><td colspan=5></td><th colspan=2>$lt{'rl'}</th> |
|
<th colspan=3>$lt{'ic'}</th> |
ENDTABLETWO |
ENDTABLETWO |
if ($csec) { |
if ($csec) { |
$r->print("<th colspan=3>in Section/Group $csec</th>"); |
$r->print("<th colspan=3>". |
} |
&mt("in Section/Group")." $csec</th>"); |
$r->print(<<ENDTABLEHEADFOUR); |
} |
</tr><tr><th>Assessment URL and Title</th><th>Type</th> |
$r->print(<<ENDTABLEHEADFOUR); |
<th>Enclosing Map</th><th>Part No.</th><th>Parameter Name</th> |
</tr><tr><th>$lt{'aut'}</th><th>$lt{'type'}</th> |
<th>default</th><th>from Enclosing Map</th> |
<th>$lt{'emof'}</th><th>$lt{'part'}</th><th>$lt{'pn'}</th> |
<th>general</th><th>for Enclosing Map</th><th>for Resource</th> |
<th>$lt{'def'}</th><th>$lt{'femof'}</th> |
|
<th>$lt{'gen'}</th><th>$lt{'foremf'}</th><th>$lt{'fr'}</th> |
ENDTABLEHEADFOUR |
ENDTABLEHEADFOUR |
if ($csec) { |
|
$r->print('<th>general</th><th>for Enclosing Map</th><th>for Resource</th>'); |
if ($csec) { |
} |
$r->print('<th>'.&mt('general').'</th><th>'.&mt('for Enclosing Map or Folder').'</th><th>'.&mt('for Resource').'</th>'); |
if ($uname) { |
} |
$r->print('<th>general</th><th>for Enclosing Map</th><th>for Resource</th>'); |
|
} |
if ($uname) { |
$r->print('</tr>'); |
$r->print('<th>'.&mt('general').'</th><th>'.&mt('for Enclosing Map or Folder').'</th><th>'.&mt('for Resource').'</th>'); |
my $defbgone=''; |
} |
my $defbgtwo=''; |
|
foreach (@ids) { |
$r->print('</tr>'); |
my $rid=$_; |
|
my ($inmapid)=($rid=~/\.(\d+)$/); |
my $defbgone=''; |
if (($pschp eq 'all') || ($allmaps{$pschp} eq $mapp{$rid}) || |
my $defbgtwo=''; |
($pssymb eq $mapp{$rid}.'___'.$inmapid.'___'. |
|
&Apache::lonnet::declutter($bighash{'src_'.$rid}))) { |
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 |
if ($defbgone eq '"E0E099"') { |
if ($defbgone eq '"E0E099"') { |
$defbgone='"E0E0DD"'; |
$defbgone='"E0E0DD"'; |
} else { |
} else { |
$defbgone='"E0E099"'; |
$defbgone='"E0E099"'; |
} |
} |
if ($defbgtwo eq '"FFFF99"') { |
if ($defbgtwo eq '"FFFF99"') { |
$defbgtwo='"FFFFDD"'; |
$defbgtwo='"FFFFDD"'; |
} else { |
} else { |
$defbgtwo='"FFFF99"'; |
$defbgtwo='"FFFF99"'; |
} |
} |
@outpar=(); |
my $thistitle=''; |
my $thistitle=''; |
my %name= (); |
my %name= (); |
undef %name; |
undef %name; |
my %part= (); |
my %part= (); |
my %display=(); |
my %display=(); |
my %type= (); |
my %type= (); |
my %default=(); |
my %default=(); |
my $uri=&Apache::lonnet::declutter($bighash{'src_'.$rid}); |
my $uri=&Apache::lonnet::declutter($bighash{'src_'.$rid}); |
|
|
foreach (split(/\,/,$keyp{$rid})) { |
foreach (split(/\,/,$keyp{$rid})) { |
my $tempkeyp = $_; |
if (($_ eq $catmarker) || ($pscat eq 'all')) { |
if (grep $_ eq $tempkeyp, @catmarker) { |
$part{$_}=&Apache::lonnet::metadata($uri,$_.'.part'); |
$part{$_}=&Apache::lonnet::metadata($uri,$_.'.part'); |
$name{$_}=&Apache::lonnet::metadata($uri,$_.'.name'); |
$name{$_}=&Apache::lonnet::metadata($uri,$_.'.name'); |
$display{$_}=&Apache::lonnet::metadata($uri,$_.'.display'); |
$display{$_}=&Apache::lonnet::metadata($uri,$_.'.display'); |
unless ($display{$_}) { $display{$_}=''; } |
unless ($display{$_}) { $display{$_}=''; } |
$display{$_}.=' ('.$name{$_}.')'; |
$display{$_}.=' ('.$name{$_}.')'; |
$default{$_}=&Apache::lonnet::metadata($uri,$_); |
$default{$_}=&Apache::lonnet::metadata($uri,$_); |
$type{$_}=&Apache::lonnet::metadata($uri,$_.'.type'); |
$type{$_}=&Apache::lonnet::metadata($uri,$_.'.type'); |
$thistitle=&Apache::lonnet::metadata($uri,$_.'.title'); |
$thistitle=&Apache::lonnet::metadata($uri,$_.'.title'); |
} |
} |
} |
} |
|
my $totalparms=scalar keys %name; |
my $totalparms=scalar keys %name; |
if ($totalparms>0) { |
if ($totalparms>0) { |
my $firstrow=1; |
my $firstrow=1; |
my $title=$bighash{'title_'.$rid}; |
$r->print('<tr><td bgcolor='.$defbgone. |
$title=~s/\:/:/g; |
' rowspan='.$totalparms.'><tt><font size=-1>'. |
$r->print('<tr><td bgcolor='.$defbgone. |
join(' / ',split(/\//,$uri)). |
' rowspan='.$totalparms. |
'</font></tt><p><b>'. |
'><tt><font size=-1>'. |
$bighash{'title_'.$rid}); |
join(' / ',split(/\//,$uri)). |
if ($thistitle) { |
'</font></tt><p><b>'. |
$r->print(' ('.$thistitle.')'); |
"<a href=\"javascript:openWindow('/res/".$uri. |
} |
"', 'metadatafile', '450', '500', 'no', 'yes')\";". |
$r->print('</b></td>'); |
" TARGET=_self>$title"); |
$r->print('<td bgcolor='.$defbgtwo. |
|
' rowspan='.$totalparms.'>'.$typep{$rid}.'</td>'); |
if ($thistitle) { |
$r->print('<td bgcolor='.$defbgone. |
$r->print(' ('.$thistitle.')'); |
' rowspan='.$totalparms.'><tt><font size=-1>'. |
} |
join(' / ',split(/\//,$mapp{$rid})).'</font></tt></td>'); |
$r->print('</a></b></td>'); |
foreach (sort keys %name) { |
$r->print('<td bgcolor='.$defbgtwo. |
my $result=&parmval($part{$_}.'.'.$name{$_},$rid,$default{$_}); |
' rowspan='.$totalparms.'>'.$typep{$rid}. |
unless ($firstrow) { |
'</td>'); |
$r->print('<tr>'); |
|
} else { |
$r->print('<td bgcolor='.$defbgone. |
$firstrow=0; |
' rowspan='.$totalparms. |
} |
'><tt><font size=-1>'); |
$r->print("<td bgcolor=".$defbgtwo. |
|
">$part{$_}</td><td bgcolor=".$defbgone. |
$r->print(' / res / '); |
">$display{$_}</td>"); |
$r->print(join(' / ', split(/\//,$mapp{$rid}))); |
my $thismarker=$_; |
|
$thismarker=~s/^parameter\_//; |
$r->print('</font></tt></td>'); |
my $mprefix=$rid.'&'.$thismarker.'&'; |
|
|
foreach (sort keys %name) { |
$r->print('<td bgcolor='. |
unless ($firstrow) { |
(($result==11)?'"#AAFFAA"':'#FFDDDD').'>'. |
$r->print('<tr>'); |
&valout($outpar[11],$type{$_}).'</td>'); |
} else { |
$r->print('<td bgcolor='. |
undef $firstrow; |
(($result==10)?'"#AAFFAA"':'#FFDDDD').'>'. |
} |
&valout($outpar[10],$type{$_}).'</td>'); |
|
|
&print_row($r,$_,\%part,\%name,$rid,\%default, |
$r->print('<td bgcolor='. |
\%type,\%display,$defbgone,$defbgtwo, |
(($result==9)?'"#AAFFAA"':$defbgone).'>'. |
$parmlev); |
&plink($type{$_},$display{$_},$outpar[9],$mprefix.'9', |
} |
'parmform.pres','psub').'</td>'); |
} |
$r->print('<td bgcolor='. |
} |
(($result==8)?'"#AAFFAA"':$defbgone).'>'. |
} # end foreach ids |
&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.' '. |
|
'</font></td>'); |
|
$r->print("</tr>"); |
|
} |
|
} |
|
# -------------------------------------------------- End entry for one resource |
# -------------------------------------------------- End entry for one resource |
} |
$r->print('</table>'); |
} |
} # end of brief/full |
$r->print('</table>'); |
#--------------------------------------------------- Entry for parm level map |
} |
if ($parmlev eq 'map') { |
$r->print('</form></body></html>'); |
my $defbgone = '"E0E099"'; |
untie(%bighash); |
my $defbgtwo = '"FFFF99"'; |
untie(%parmhash); |
|
} |
my %maplist; |
} |
|
|
if ($pschp eq 'all') { |
|
%maplist = %allmaps; |
|
} else { |
|
%maplist = ($pschp => $mapp{$pschp}); |
|
} |
|
|
|
#-------------------------------------------- for each map, gather information |
|
my $mapid; |
|
foreach $mapid (sort {$maplist{$a} cmp $maplist{$b}} keys %maplist) { |
|
my $maptitle = $maplist{$mapid}; |
|
|
|
#----------------------- loop through ids and get all parameter types for map |
|
#----------------------------------------- and associated information |
|
my %name = (); |
|
my %part = (); |
|
my %display = (); |
|
my %type = (); |
|
my %default = (); |
|
my $map = 0; |
|
|
|
# $r->print("Catmarker: @catmarker<br />\n"); |
|
|
|
foreach (@ids) { |
|
($map)=(/([\d]*?)\./); |
|
my $rid = $_; |
|
|
|
# $r->print("$mapid:$map: $rid <br /> \n"); |
|
|
|
if ($map eq $mapid) { |
|
my $uri=&Apache::lonnet::declutter($bighash{'src_'.$rid}); |
|
# $r->print("Keys: $keyp{$rid} <br />\n"); |
|
|
|
#-------------------------------------------------------------------- |
|
# @catmarker contains list of all possible parameters including part #s |
|
# $fullkeyp contains the full part/id # for the extraction of proper parameters |
|
# $tempkeyp contains part 0 only (no ids - ie, subparts) |
|
# When storing information, store as part 0 |
|
# When requesting information, request from full part |
|
#------------------------------------------------------------------- |
|
foreach (split(/\,/,$keyp{$rid})) { |
|
my $tempkeyp = $_; |
|
my $fullkeyp = $tempkeyp; |
|
$tempkeyp =~ s/_\w+_/_0_/; |
|
|
|
if ((grep $_ eq $fullkeyp, @catmarker) &&(!$name{$tempkeyp})) { |
|
$part{$tempkeyp}="0"; |
|
$name{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.name'); |
|
$display{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.display'); |
|
unless ($display{$tempkeyp}) { $display{$tempkeyp}=''; } |
|
$display{$tempkeyp}.=' ('.$name{$tempkeyp}.')'; |
|
$display{$tempkeyp} =~ s/_\w+_/_0_/; |
|
$default{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp); |
|
$type{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.type'); |
|
} |
|
} # end loop through keys |
|
} |
|
} # end loop through ids |
|
|
|
#---------------------------------------------------- print header information |
|
my $foldermap=&mt($maptitle=~/^uploaded/?'Folder':'Map'); |
|
my $showtitle=$maptitles{$maptitle}.($maptitle!~/^uploaded/?' ['.$maptitle.']':''); |
|
$r->print(<<ENDMAPONE); |
|
<center><h4> |
|
Set Defaults for All Resources in $foldermap<br /> |
|
<font color="red"><i>$showtitle</i></font><br /> |
|
Specifically for |
|
ENDMAPONE |
|
if ($uname) { |
|
my %name=&Apache::lonnet::userenvironment($udom,$uname, |
|
('firstname','middlename','lastname','generation', 'id')); |
|
my $person=$name{'firstname'}.' '.$name{'middlename'}.' ' |
|
.$name{'lastname'}.' '.$name{'generation'}; |
|
$r->print(&mt("User")." <font color=\"red\"><i>$uname \($person\) </i></font> ". |
|
&mt('in')." \n"); |
|
} else { |
|
$r->print("<font color=\"red\"><i>".&mt('all').'</i></font> '.&mt('users in')." \n"); |
|
} |
|
|
|
if ($csec) {$r->print(&mt("Section")." <font color=\"red\"><i>$csec</i></font> ". |
|
&mt('of')." \n")}; |
|
|
|
$r->print("<font color=\"red\"><i>$coursename</i></font><br />"); |
|
$r->print("</h4>\n"); |
|
#---------------------------------------------------------------- print table |
|
$r->print('<p><table border="2">'); |
|
$r->print('<tr><th>'.&mt('Parameter Name').'</th>'); |
|
$r->print('<th>'.&mt('Default Value').'</th>'); |
|
$r->print('<th>'.&mt('Parameter in Effect').'</th></tr>'); |
|
|
|
foreach (sort keys %name) { |
|
&print_row($r,$_,\%part,\%name,$mapid,\%default, |
|
\%type,\%display,$defbgone,$defbgtwo, |
|
$parmlev); |
|
# $r->print("<tr><td>resource.$part{$_}.$name{$_},$symbp{$mapid}</td></tr>\n"); |
|
} |
|
$r->print("</table></center>"); |
|
} # end each map |
|
} # end of $parmlev eq map |
|
#--------------------------------- Entry for parm level general (Course level) |
|
if ($parmlev eq 'general') { |
|
my $defbgone = '"E0E099"'; |
|
my $defbgtwo = '"FFFF99"'; |
|
|
|
#-------------------------------------------- for each map, gather information |
|
my $mapid="0.0"; |
|
#----------------------- loop through ids and get all parameter types for map |
|
#----------------------------------------- and associated information |
|
my %name = (); |
|
my %part = (); |
|
my %display = (); |
|
my %type = (); |
|
my %default = (); |
|
|
|
foreach (@ids) { |
|
my $rid = $_; |
|
|
|
my $uri=&Apache::lonnet::declutter($bighash{'src_'.$rid}); |
|
|
|
#-------------------------------------------------------------------- |
|
# @catmarker contains list of all possible parameters including part #s |
|
# $fullkeyp contains the full part/id # for the extraction of proper parameters |
|
# $tempkeyp contains part 0 only (no ids - ie, subparts) |
|
# When storing information, store as part 0 |
|
# When requesting information, request from full part |
|
#------------------------------------------------------------------- |
|
foreach (split(/\,/,$keyp{$rid})) { |
|
my $tempkeyp = $_; |
|
my $fullkeyp = $tempkeyp; |
|
$tempkeyp =~ s/_\w+_/_0_/; |
|
if ((grep $_ eq $fullkeyp, @catmarker) &&(!$name{$tempkeyp})) { |
|
$part{$tempkeyp}="0"; |
|
$name{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.name'); |
|
$display{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.display'); |
|
unless ($display{$tempkeyp}) { $display{$tempkeyp}=''; } |
|
$display{$tempkeyp}.=' ('.$name{$tempkeyp}.')'; |
|
$display{$tempkeyp} =~ s/_\w+_/_0_/; |
|
$default{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp); |
|
$type{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.type'); |
|
} |
|
} # end loop through keys |
|
} # end loop through ids |
|
|
|
#---------------------------------------------------- print header information |
|
my $setdef=&mt("Set Defaults for All Resources in Course"); |
|
$r->print(<<ENDMAPONE); |
|
<center><h4>$setdef |
|
<font color="red"><i>$coursename</i></font><br /> |
|
ENDMAPONE |
|
if ($uname) { |
|
my %name=&Apache::lonnet::userenvironment($udom,$uname, |
|
('firstname','middlename','lastname','generation', 'id')); |
|
my $person=$name{'firstname'}.' '.$name{'middlename'}.' ' |
|
.$name{'lastname'}.' '.$name{'generation'}; |
|
$r->print(" ".&mt("User")."<font color=\"red\"> <i>$uname \($person\) </i></font> \n"); |
|
} else { |
|
$r->print("<i><font color=\"red\"> ".&mt("ALL")."</i> ".&mt("USERS")."</font> \n"); |
|
} |
|
|
|
if ($csec) {$r->print(&mt("Section")."<font color=\"red\"> <i>$csec</i></font>\n")}; |
|
$r->print("</h4>\n"); |
|
#---------------------------------------------------------------- print table |
|
$r->print('<p><table border="2">'); |
|
$r->print('<tr><th>'.&mt('Parameter Name').'</th>'); |
|
$r->print('<th>'.&mt('Default Value').'</th>'); |
|
$r->print('<th>'.&mt('Parameter in Effect').'</th></tr>'); |
|
|
|
foreach (sort keys %name) { |
|
&print_row($r,$_,\%part,\%name,$mapid,\%default, |
|
\%type,\%display,$defbgone,$defbgtwo,$parmlev); |
|
# $r->print("<tr><td>resource.$part{$_}.$name{$_},$symbp{$mapid}</td></tr>\n"); |
|
} |
|
$r->print("</table></center>"); |
|
} # end of $parmlev eq general |
|
} |
|
$r->print('</form></body></html>'); |
|
untie(%bighash); |
|
untie(%parmhash); |
|
} # end sub assessparms |
|
|
|
|
|
################################################## |
|
################################################## |
|
|
|
=pod |
|
|
|
=item crsenv |
|
|
|
Show and set course data and parameters. This is a large routine that should |
|
be simplified and shortened... someday. |
|
|
|
Inputs: $r |
|
|
|
Returns: nothing |
|
|
|
=cut |
|
|
|
################################################## |
|
################################################## |
sub crsenv { |
sub crsenv { |
my $r=shift; |
my $r=shift; |
my $setoutput=''; |
my $setoutput=''; |
# -------------------------------------------------- Go through list of changes |
my $bodytag=&Apache::loncommon::bodytag( |
|
'Set Course Environment Parameters'); |
|
my $dom = $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}; |
|
my $crs = $ENV{'course.'.$ENV{'request.course.id'}.'.num'}; |
|
|
|
# |
|
# Go through list of changes |
foreach (keys %ENV) { |
foreach (keys %ENV) { |
if ($_=~/^form\.(.+)\_setparmval$/) { |
next if ($_!~/^form\.(.+)\_setparmval$/); |
my $name=$1; |
my $name = $1; |
my $value=$ENV{'form.'.$name.'_value'}; |
my $value = $ENV{'form.'.$name.'_value'}; |
if ($name eq 'newp') { |
if ($name eq 'newp') { |
$name=$ENV{'form.newp_name'}; |
$name = $ENV{'form.newp_name'}; |
} |
} |
if ($name eq 'url') { |
if ($name eq 'url') { |
$value=~s/^\/res\///; |
$value=~s/^\/res\///; |
$setoutput.='Backing up previous URL: '. |
my $bkuptime=time; |
&Apache::lonnet::reply('put:'. |
my @tmp = &Apache::lonnet::get |
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}. |
('environment',['url'],$dom,$crs); |
':'.$ENV{'course.'.$ENV{'request.course.id'}.'.num'}. |
$setoutput.=&mt('Backing up previous URL').': '. |
':environment:'. |
&Apache::lonnet::put |
&Apache::lonnet::escape('top level map backup '. |
('environment', |
time).'='. |
{'top level map backup '.$bkuptime => $tmp[1] }, |
&Apache::lonnet::reply('get:'. |
$dom,$crs). |
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}. |
'<br>'; |
':'.$ENV{'course.'.$ENV{'request.course.id'}.'.num'}. |
} |
':environment:url', |
# |
$ENV{'course.'.$ENV{'request.course.id'}.'.home'}), |
# Deal with modified default spreadsheets |
$ENV{'course.'.$ENV{'request.course.id'}.'.home'}). |
if ($name =~ /^spreadsheet_default_(classcalc| |
'<br>'; |
studentcalc| |
|
assesscalc)$/x) { |
} |
my $sheettype = $1; |
if ($name) { |
if ($sheettype eq 'classcalc') { |
$setoutput.='Setting <tt>'.$name.'</tt> to <tt>'. |
# no need to do anything since viewing the sheet will |
$value.'</tt>: '. |
# cause it to be updated. |
&Apache::lonnet::reply('put:'. |
} elsif ($sheettype eq 'studentcalc') { |
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}. |
# expire all the student spreadsheets |
':'.$ENV{'course.'.$ENV{'request.course.id'}.'.num'}. |
&Apache::lonnet::expirespread('','','studentcalc'); |
':environment:'. |
} else { |
&Apache::lonnet::escape($name).'='. |
# expire all the assessment spreadsheets |
&Apache::lonnet::escape($value), |
# this includes non-default spreadsheets, but better to |
$ENV{'course.'.$ENV{'request.course.id'}.'.home'}). |
# be safe than sorry. |
'<br>'; |
&Apache::lonnet::expirespread('','','assesscalc'); |
} |
# expire all the student spreadsheets |
|
&Apache::lonnet::expirespread('','','studentcalc'); |
|
} |
|
} |
|
# |
|
# Deal with the enrollment dates |
|
if ($name =~ /^default_enrollment_(start|end)_date$/) { |
|
$value=&Apache::lonhtmlcommon::get_date_from_form($name.'_value'); |
|
} |
|
# |
|
# Let the user know we made the changes |
|
if ($name) { |
|
my $put_result = &Apache::lonnet::put('environment', |
|
{$name=>$value},$dom,$crs); |
|
if ($put_result eq 'ok') { |
|
$setoutput.=&mt('Set').' <b>'.$name.'</b> '.&mt('to').' <b>'.$value.'</b>.<br />'; |
|
} else { |
|
$setoutput.=&mt('Unable to set').' <b>'.$name.'</b> '.&mt('to'). |
|
' <b>'.$value.'</b> '.&mt('due to').' '.$put_result.'.<br />'; |
|
} |
} |
} |
} |
} |
|
# ------------------------- Re-init course environment entries for this session |
|
|
|
&Apache::lonnet::coursedescription($ENV{'request.course.id'}); |
|
|
# -------------------------------------------------------- Get parameters again |
# -------------------------------------------------------- Get parameters again |
my $rep=&Apache::lonnet::reply |
|
('dump:'.$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}. |
my %values=&Apache::lonnet::dump('environment',$dom,$crs); |
':'.$ENV{'course.'.$ENV{'request.course.id'}.'.num'}. |
my $SelectStyleFile=&mt('Select Style File'); |
':environment', |
my $SelectSpreadsheetFile=&mt('Select Spreadsheet File'); |
$ENV{'course.'.$ENV{'request.course.id'}.'.home'}); |
|
my $output=''; |
my $output=''; |
if ($rep ne 'con_lost') { |
if (! exists($values{'con_lost'})) { |
my %values; |
|
my %descriptions= |
my %descriptions= |
('url' => '<b>Top Level Map</b><br><font color=red>'. |
('url' => '<b>'.&mt('Top Level Map').'</b> '. |
'Modification may make assessment data inaccessible</font>', |
'<a href="javascript:openbrowser'. |
'description' => '<b>Course Description</b>', |
"('envform','url','sequence')\">". |
'courseid' => '<b>Course ID or number</b><br>(internal, optional)', |
&mt('Select Map').'</a><br /><font color=red> '. |
'question.email' => '<b>Feedback Addresses for Content Questions</b><br>'. |
&mt('Modification may make assessment data inaccessible'). |
'(<tt>user:domain,user:domain,...</tt>)', |
'</font>', |
'comment.email' => '<b>Feedback Addresses for Comments</b><br>'. |
'description' => '<b>'.&mt('Course Description').'</b>', |
'(<tt>user:domain,user:domain,...</tt>)', |
'courseid' => '<b>'.&mt('Course ID').' '.&mt('or').' '.&mt('number'). |
'policy.email' => '<b>Feedback Addresses for Course Policy</b><br>'. |
'</b><br />'. |
'(<tt>user:domain,user:domain,...</tt>)' |
'('.&mt('internal').', '.&mt('optional').')', |
); |
'grading' => '<b>'.&mt('Grading').'</b>'. |
|
' "'.&mt('standard').'", "'.&mt('external').'", '. |
foreach (split(/\&/,$rep)) { |
&mt('or any other value').'.'. |
my ($name,$value)=split(/\=/,$_); |
' '.&mt('Default for new courses is').' "'. |
$name=&Apache::lonnet::unescape($name); |
&mt('standard').'".', |
$values{$name}=&Apache::lonnet::unescape($value); |
'default_xml_style' => '<b>'.&mt('Default XML Style File').'</b> '. |
unless ($descriptions{$name}) { |
'<a href="javascript:openbrowser'. |
$descriptions{$name}=$name; |
"('envform','default_xml_style'". |
} |
",'sty')\">$SelectStyleFile</a><br>", |
} |
'question.email' => '<b>'.&mt('Feedback Addresses for Resource Content Question'). |
foreach (sort keys %descriptions) { |
'</b><br />(<tt>user:domain,'. |
$output.='<tr><td>'.$descriptions{$_}.'</td><td><input name="'. |
'user:domain(section;section;...;*;...),...</tt>)', |
$_.'_value" size=40 value="'. |
'comment.email' => '<b>'.&mt('Feedback Addresses for Course Content Comments').'</b><br />'. |
$values{$_}. |
'(<tt>user:domain,user:domain(section;section;...;*;...),...</tt>)', |
'"></td><td><input type=checkbox name="'.$_. |
'policy.email' => '<b>'.&mt('Feedback Addresses for Course Policy').'</b>'. |
'_setparmval"></td></tr>'; |
'<br />(<tt>user:domain,user:domain(section;section;...;*;...),...</tt>)', |
} |
'hideemptyrows' => '<b>'.&mt('Hide Empty Rows in Spreadsheets').'</b><br />'. |
$output.='<tr><td><i>Create New Environment Variable</i><br>'. |
'("<tt>yes</tt>" for default hiding)', |
'<input type="text" size=40 name="newp_name"></td><td>'. |
'pageseparators' => '<b>'.&mt('Visibly Separate Items on Pages').'</b><br />'. |
'<input type="text" size=40 name="newp_value"></td><td>'. |
'("<tt>'.&mt('yes').'</tt>" '.&mt('for visible separation').', '. |
'<input type="checkbox" name="newp_setparmval"></td></tr>'; |
&mt('changes will not show until next login').')', |
} |
|
|
'plc.roles.denied'=> '<b>'.&mt('Disallow live chatroom use for Roles'). |
|
'</b><br />"<tt>st</tt>": '. |
|
'student, "<tt>ta</tt>": '. |
|
'TA, "<tt>in</tt>": '. |
|
'instructor;<br /><tt>role,role,...</tt>) '. |
|
Apache::loncommon::help_open_topic("Course_Disable_Discussion"), |
|
'plc.users.denied' => |
|
'<b>'.&mt('Disallow live chatroom use for Users').'</b><br />'. |
|
'(<tt>user:domain,user:domain,...</tt>)', |
|
|
|
'pch.roles.denied'=> '<b>'.&mt('Disallow Resource Discussion for Roles'). |
|
'</b><br />"<tt>st</tt>": '. |
|
'student, "<tt>ta</tt>": '. |
|
'TA, "<tt>in</tt>": '. |
|
'instructor;<br /><tt>role,role,...</tt>) '. |
|
Apache::loncommon::help_open_topic("Course_Disable_Discussion"), |
|
'pch.users.denied' => |
|
'<b>'.&mt('Disallow Resource Discussion for Users').'</b><br />'. |
|
'(<tt>user:domain,user:domain,...</tt>)', |
|
'spreadsheet_default_classcalc' |
|
=> '<b>'.&mt('Default Course Spreadsheet').'</b> '. |
|
'<a href="javascript:openbrowser'. |
|
"('envform','spreadsheet_default_classcalc'". |
|
",'spreadsheet')\">$SelectSpreadsheetFile</a><br />", |
|
'spreadsheet_default_studentcalc' |
|
=> '<b>'.&mt('Default Student Spreadsheet').'</b> '. |
|
'<a href="javascript:openbrowser'. |
|
"('envform','spreadsheet_default_calc'". |
|
",'spreadsheet')\">$SelectSpreadsheetFile</a><br />", |
|
'spreadsheet_default_assesscalc' |
|
=> '<b>'.&mt('Default Assessment Spreadsheet').'</b> '. |
|
'<a href="javascript:openbrowser'. |
|
"('envform','spreadsheet_default_assesscalc'". |
|
",'spreadsheet')\">$SelectSpreadsheetFile</a><br />", |
|
'allow_limited_html_in_feedback' |
|
=> '<b>'.&mt('Allow limited HTML in discussion posts').'</b><br />'. |
|
'('.&mt('Set value to').' "<tt>'.&mt('yes').'</tt>" '.&mt('to allow').')', |
|
'rndseed' |
|
=> '<b>'.&mt('Randomization algorithm used').'</b> <br />'. |
|
'<font color="red">'.&mt('Modifying this will make problems').' '. |
|
&mt('have different numbers and answers').'</font>', |
|
'problem_stream_switch' |
|
=> '<b>'.&mt('Allow problems to be split over pages').'</b><br />'. |
|
' ("<tt>'.&mt('yes').'</tt>" '.&mt('if allowed, anything else if not').')', |
|
'anonymous_quiz' |
|
=> '<b>'.&mt('Anonimous quiz/exam').'</b><br />'. |
|
' (<tt><b>'.&mt('yes').'</b> '.&mt('to avoid print students names').' </tt>)', |
|
'default_enrollment_start_date' => '<b>'.&mt('Default beginning date when enrolling students').'</b>', |
|
'default_enrollment_end_date' => '<b>'.&mt('Default ending date when enrolling students').'</b>', |
|
'languages' => '<b>'.&mt('Languages used').'</b>', |
|
'disable_receipt_display' |
|
=> '<b>'.&mt('Disable display of problem receipts').'</b><br />'. |
|
' ("<tt>'.&mt('yes').'</tt>" '.&mt('to disable, anything else if not').')' |
|
); |
|
my @Display_Order = ('url','description','courseid','grading', |
|
'default_xml_style','pageseparators', |
|
'question.email','comment.email','policy.email', |
|
'plc.roles.denied','plc.users.denied', |
|
'pch.roles.denied','pch.users.denied', |
|
'allow_limited_html_in_feedback', |
|
'languages', |
|
'rndseed', |
|
'problem_stream_switch', |
|
'disable_receipt_display', |
|
'spreadsheet_default_classcalc', |
|
'spreadsheet_default_studentcalc', |
|
'spreadsheet_default_assesscalc', |
|
'hideemptyrows', |
|
'default_enrollment_start_date', |
|
'default_enrollment_end_date', |
|
); |
|
foreach my $parameter (sort(keys(%values))) { |
|
unless ($parameter =~ m/^internal\./) { |
|
if (! $descriptions{$parameter}) { |
|
$descriptions{$parameter}=$parameter; |
|
push(@Display_Order,$parameter); |
|
} |
|
} |
|
} |
|
foreach my $parameter (@Display_Order) { |
|
my $description = $descriptions{$parameter}; |
|
# onchange is javascript to automatically check the 'Set' button. |
|
my $onchange = 'onFocus="javascript:window.document.forms'. |
|
"['envform'].elements['".$parameter."_setparmval']". |
|
'.checked=true;"'; |
|
$output .= '<tr><td>'.$description.'</td>'; |
|
if ($parameter =~ /^default_enrollment_(start|end)_date$/) { |
|
$output .= '<td>'. |
|
&Apache::lonhtmlcommon::date_setter('envform', |
|
$parameter.'_value', |
|
$values{$parameter}, |
|
$onchange). |
|
'</td>'; |
|
} else { |
|
$output .= '<td>'. |
|
&Apache::lonhtmlcommon::textbox($parameter.'_value', |
|
$values{$parameter}, |
|
40,$onchange).'</td>'; |
|
} |
|
$output .= '<td>'. |
|
&Apache::lonhtmlcommon::checkbox($parameter.'_setparmval'). |
|
'</td>'; |
|
$output .= "</tr>\n"; |
|
} |
|
my $onchange = 'onFocus="javascript:window.document.forms'. |
|
'[\'envform\'].elements[\'newp_setparmval\']'. |
|
'.checked=true;"'; |
|
$output.='<tr><td><i>'.&mt('Create New Environment Variable').'</i><br />'. |
|
'<input type="text" size=40 name="newp_name" '. |
|
$onchange.' /></td><td>'. |
|
'<input type="text" size=40 name="newp_value" '. |
|
$onchange.' /></td><td>'. |
|
'<input type="checkbox" name="newp_setparmval" /></td></tr>'; |
|
} |
|
my $Parameter=&mt('Parameter'); |
|
my $Value=&mt('Value'); |
|
my $Set=&mt('Set'); |
$r->print(<<ENDENV); |
$r->print(<<ENDENV); |
<html> |
<html> |
|
<script type="text/javascript" language="Javascript" > |
|
var editbrowser; |
|
function openbrowser(formname,elementname,only,omit) { |
|
var url = '/res/?'; |
|
if (editbrowser == null) { |
|
url += 'launch=1&'; |
|
} |
|
url += 'catalogmode=interactive&'; |
|
url += 'mode=parmset&'; |
|
url += 'form=' + formname + '&'; |
|
if (only != null) { |
|
url += 'only=' + only + '&'; |
|
} |
|
if (omit != null) { |
|
url += 'omit=' + omit + '&'; |
|
} |
|
url += 'element=' + elementname + ''; |
|
var title = 'Browser'; |
|
var options = 'scrollbars=1,resizable=1,menubar=0'; |
|
options += ',width=700,height=600'; |
|
editbrowser = open(url,title,options,'1'); |
|
editbrowser.focus(); |
|
} |
|
</script> |
<head> |
<head> |
<title>LON-CAPA Course Environment</title> |
<title>LON-CAPA Course Environment</title> |
</head> |
</head> |
<body bgcolor="#FFFFFF"> |
$bodytag |
<h1>Set Course Parameters</h1> |
|
<form method="post" action="/adm/parmset" name="envform"> |
<form method="post" action="/adm/parmset" name="envform"> |
<h2>Course: $ENV{'course.'.$ENV{'request.course.id'}.'.description'}</h2> |
|
<h3>Course Environment</h3> |
|
$setoutput |
$setoutput |
<p> |
<p> |
<table border=2> |
<table border=2> |
<tr><th>Parameter</th><th>Value</th><th>Set?</th></tr> |
<tr><th>$Parameter</th><th>$Value</th><th>$Set?</th></tr> |
$output |
$output |
</table> |
</table> |
<input type="submit" name="crsenv" value="Set Course Environment"> |
<input type="submit" name="crsenv" value="Set Course Environment"> |
Line 821 $output
|
Line 1708 $output
|
</html> |
</html> |
ENDENV |
ENDENV |
} |
} |
|
################################################## |
|
|
# ================================================================ Main Handler |
my $tableopen; |
|
|
sub handler { |
|
my $r=shift; |
|
|
|
if ($r->header_only) { |
sub tablestart { |
$r->content_type('text/html'); |
if ($tableopen) { |
$r->send_http_header; |
return ''; |
return OK; |
} else { |
} |
$tableopen=1; |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}); |
return '<table border="2"><tr><th>'.&mt('Parameter').'</th><th>'. |
# ----------------------------------------------------- Needs to be in a course |
&mt('Delete').'</th><th>'.&mt('Set to ...').'</th></tr>'; |
|
} |
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 |
|
$ENV{'user.error.msg'}= |
|
"/adm/parmset:opa:0:0:Cannot modify assessment parameters"; |
|
return HTTP_NOT_ACCEPTABLE; |
|
} |
|
return OK; |
|
} |
} |
|
|
1; |
sub tableend { |
__END__ |
if ($tableopen) { |
|
$tableopen=0; |
|
return '</table>'; |
=head1 NAME |
} else { |
|
return''; |
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 |
sub overview { |
|
my $r=shift; |
|
my $bodytag=&Apache::loncommon::bodytag( |
|
'Set/Modify Course Assessment Parameters'); |
|
my $dom = $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}; |
|
my $crs = $ENV{'course.'.$ENV{'request.course.id'}.'.num'}; |
|
$r->print(<<ENDOVER); |
|
<html> |
|
<head> |
|
<title>LON-CAPA Course Environment</title> |
|
</head> |
|
$bodytag |
|
<form method="post" action="/adm/parmset" name="overviewform"> |
|
<input type="hidden" name="overview" value="1" /> |
|
ENDOVER |
|
# Setting |
|
my %olddata=&Apache::lonnet::dump('resourcedata',$dom,$crs); |
|
my %newdata=(); |
|
undef %newdata; |
|
my @deldata=(); |
|
undef @deldata; |
|
foreach (keys %ENV) { |
|
if ($_=~/^form\.([a-z]+)\_(.+)$/) { |
|
my $cmd=$1; |
|
my $thiskey=$2; |
|
if ($cmd eq 'set') { |
|
my $data=$ENV{$_}; |
|
if ($olddata{$thiskey} ne $data) { $newdata{$thiskey}=$data; } |
|
} elsif ($cmd eq 'del') { |
|
push (@deldata,$thiskey); |
|
} elsif ($cmd eq 'datepointer') { |
|
my $data=&Apache::lonhtmlcommon::get_date_from_form($ENV{$_}); |
|
if ($olddata{$thiskey} ne $data) { $newdata{$thiskey}=$data; } |
|
} |
|
} |
|
} |
|
# Store |
|
my $delentries=$#deldata+1; |
|
my @newdatakeys=keys %newdata; |
|
my $putentries=$#newdatakeys+1; |
|
if ($delentries) { |
|
if (&Apache::lonnet::del('resourcedata',\@deldata,$dom,$crs) eq 'ok') { |
|
$r->print('<h2>'.&mt('Deleted [_1] parameter(s)</h2>',$delentries)); |
|
} else { |
|
$r->print('<h2><font color="red">'. |
|
&mt('Error deleting parameters').'</font></h2>'); |
|
} |
|
} |
|
if ($putentries) { |
|
if (&Apache::lonnet::put('resourcedata',\%newdata,$dom,$crs) eq 'ok') { |
|
$r->print('<h2>'.&mt('Stored [_1] parameter(s)</h2>',$putentries)); |
|
} else { |
|
$r->print('<h2><font color="red">'. |
|
&mt('Error storing parameters').'</font></h2>'); |
|
} |
|
} |
|
# Read and display |
|
my %resourcedata=&Apache::lonnet::dump('resourcedata',$dom,$crs); |
|
my $oldsection=''; |
|
my $oldrealm=''; |
|
my $oldpart=''; |
|
my $pointer=0; |
|
$tableopen=0; |
|
my $foundkeys=0; |
|
foreach my $thiskey (sort keys %resourcedata) { |
|
if ($resourcedata{$thiskey.'.type'}) { |
|
my ($course,$middle,$part,$name)= |
|
($thiskey=~/^(\w+)\.(?:(.+)\.)*([\w\s]+)\.(\w+)$/); |
|
my $section=&mt('All Students'); |
|
if ($middle=~/^\[(.*)\]\./) { |
|
$section=&mt('Group/Section').': '.$1; |
|
$middle=~s/^\[(.*)\]\.//; |
|
} |
|
$middle=~s/\.$//; |
|
my $realm='<font color="red">'.&mt('All Resources').'</font>'; |
|
if ($middle=~/^(.+)\_\_\_\(all\)$/) { |
|
$realm='<font color="green">'.&mt('Folder/Map').': '.&Apache::lonnet::gettitle($1).'</font>'; |
|
} elsif ($middle) { |
|
$realm='<font color="orange">'.&mt('Resource').': '.&Apache::lonnet::gettitle($middle).'</font>'; |
|
} |
|
if ($section ne $oldsection) { |
|
$r->print(&tableend()."\n<hr /><h1>$section</h1>"); |
|
$oldsection=$section; |
|
$oldrealm=''; |
|
} |
|
if ($realm ne $oldrealm) { |
|
$r->print(&tableend()."\n<h2>$realm</h2>"); |
|
$oldrealm=$realm; |
|
$oldpart=''; |
|
} |
|
if ($part ne $oldpart) { |
|
$r->print(&tableend(). |
|
"\n<h3><font color='blue'>".&mt('Part').": $part</font></h3>"); |
|
$oldpart=$part; |
|
} |
|
# |
|
# Ready to print |
|
# |
|
$r->print(&tablestart().'<tr><td><b>'.$name. |
|
':</b></td><td><input type="checkbox" name="del_'. |
|
$thiskey.'" /></td><td>'); |
|
$foundkeys++; |
|
if ($resourcedata{$thiskey.'.type'}=~/^date/) { |
|
my $jskey='key_'.$pointer; |
|
$pointer++; |
|
$r->print( |
|
&Apache::lonhtmlcommon::date_setter('overviewform', |
|
$jskey, |
|
$resourcedata{$thiskey}). |
|
'<input type="hidden" name="datepointer_'.$thiskey.'" value="'.$jskey.'" />' |
|
); |
|
} else { |
|
$r->print( |
|
'<input type="text" name="set_'.$thiskey.'" value="'. |
|
$resourcedata{$thiskey}.'">'); |
|
} |
|
$r->print('</td></tr>'); |
|
} |
|
} |
|
|
|
$r->print(&tableend().'<p>'. |
|
($foundkeys?'<input type="submit" value="'.&mt('Modify Parameters').'" />':&mt('There are no course or section parameters.')).'</p></form></body></html>'); |
|
} |
|
|
=item * |
################################################## |
|
################################################## |
|
|
need to be in course |
=pod |
|
|
=item * |
=item * handler |
|
|
bring up assessment screen or course environment |
Main handler. Calls &assessparms and &crsenv subroutines. |
|
|
=back |
=cut |
|
|
=head1 OTHER SUBROUTINES |
################################################## |
|
################################################## |
|
use Data::Dumper; |
|
sub handler { |
|
my $r=shift; |
|
|
=over 4 |
if ($r->header_only) { |
|
&Apache::loncommon::content_type($r,'text/html'); |
|
$r->send_http_header; |
|
return OK; |
|
} |
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}); |
|
|
=item * |
# ----------------------------------------------------------- Clear out garbage |
|
|
parmval() : figure out a cascading parameter |
%courseopt=(); |
|
%useropt=(); |
|
%parmhash=(); |
|
|
=item * |
@ids=(); |
|
%symbp=(); |
|
%mapp=(); |
|
%typep=(); |
|
%keyp=(); |
|
|
valout() : output for value |
%maptitles=(); |
|
|
=item * |
# ----------------------------------------------------- Needs to be in a course |
|
|
plink() : produces link anchor |
if (($ENV{'request.course.id'}) && |
|
(&Apache::lonnet::allowed('opa',$ENV{'request.course.id'}))) { |
|
|
=item * |
&Apache::loncommon::content_type($r,'text/html'); |
|
$r->send_http_header; |
|
|
|
$coursename=$ENV{'course.'.$ENV{'request.course.id'}.'.description'}; |
|
|
assessparms() : show assess data and parameters |
if (($ENV{'form.crsenv'}) || (!$ENV{'request.course.fn'})) { |
|
# ---------------------------------------------- This is for course environment |
|
# -------------------------- also call if toplevel map coudl not be initialized |
|
&crsenv($r); |
|
} elsif ($ENV{'form.overview'}) { |
|
# --------------------------------------------------------------- Overview mode |
|
&overview($r); |
|
} else { |
|
# --------------------------------------------------------- Bring up assessment |
|
&assessparms($r); |
|
} |
|
} else { |
|
# ----------------------------- Not in a course, or not allowed to modify parms |
|
$ENV{'user.error.msg'}= |
|
"/adm/parmset:opa:0:0:Cannot modify assessment parameters"; |
|
return HTTP_NOT_ACCEPTABLE; |
|
} |
|
return OK; |
|
} |
|
|
=item * |
1; |
|
__END__ |
|
|
crsenv() : for the course environment |
=pod |
|
|
=back |
=back |
|
|