--- loncom/interface/lonparmset.pm 2001/09/01 14:13:47 1.34
+++ loncom/interface/lonparmset.pm 2005/06/02 16:35:32 1.200
@@ -1,419 +1,470 @@
# The LearningOnline Network with CAPA
# Handler to set parameters for assessments
#
-# (Handler to resolve ambiguous file locations
+# $Id: lonparmset.pm,v 1.200 2005/06/02 16:35:32 www Exp $
#
-# (TeX Content Handler
+# Copyright Michigan State University Board of Trustees
#
-# 05/29/00,05/30,10/11 Gerd Kortemeyer)
+# This file is part of the LearningOnline Network with CAPA (LON-CAPA).
#
-# 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,
-# 12/08,12/12,
-# 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 Gerd Kortemeyer
+# 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/
+#
+###################################################################
+###################################################################
+
+=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;
use strict;
use Apache::lonnet;
use Apache::Constants qw(:common :http REDIRECT);
+use Apache::lonhtmlcommon();
+use Apache::loncommon;
use GDBM_File;
+use Apache::lonhomework;
+use Apache::lonxml;
+use Apache::lonlocal;
+use Apache::lonnavmaps;
+# --- Caches local to lonparmset
-my %courseopt;
-my %useropt;
-my %bighash;
+my $parmhashid;
my %parmhash;
-my @outpar;
+# --- end local caches
+#
+# FIXME: get rid of items below
+#
my @ids;
my %symbp;
my %mapp;
my %typep;
my %keyp;
-my %defp;
+my %uris;
+my %maptitles;
-my %allkeys;
-my %allmaps;
+##################################################
+##################################################
-my $uname;
-my $udom;
-my $uhome;
+=pod
-my $csec;
+=item parmval
-my $fcat;
+Figure out a cascading parameter.
-# -------------------------------------------- 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
-sub parmval {
- my ($what,$id,$def)=@_;
- my $result='';
- @outpar=();
-# ----------------------------------------------------- Cascading lookup scheme
+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
- my $symbparm=$symbp{$id}.'.'.$what;
- my $mapparm=$mapp{$id}.'___(all).'.$what;
+11 - General Course
+10 - Map or Folder level in course
+9- resource default
+8- map default
+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
- my $seclevel=
- $ENV{'request.course.id'}.'.['.
- $csec.'].'.$what;
- my $seclevelr=
- $ENV{'request.course.id'}.'.['.
- $csec.'].'.$symbparm;
- my $seclevelm=
- $ENV{'request.course.id'}.'.['.
- $csec.'].'.$mapparm;
+=cut
- my $courselevel=
- $ENV{'request.course.id'}.'.'.$what;
- my $courselevelr=
- $ENV{'request.course.id'}.'.'.$symbparm;
- my $courselevelm=
- $ENV{'request.course.id'}.'.'.$mapparm;
+##################################################
+##################################################
+sub parmval {
+ my ($what,$id,$def,$uname,$udom,$csec)=@_;
+# load caches
-# -------------------------------------------------------- first, check default
+ &cacheparmhash();
- if ($def) { $outpar[11]=$def;
- $result=11; }
+ my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
+ my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
+ my $useropt=&Apache::lonnet::get_userresdata($uname,$udom);
+ my $courseopt=&Apache::lonnet::get_courseresdata($cnum,$cdom);
-# ----------------------------------------------------- second, check map parms
- my $thisparm=$parmhash{$symbparm};
- if ($thisparm) { $outpar[10]=$thisparm;
- $result=10; }
+ my $result='';
+ my @outpar=();
+# ----------------------------------------------------- Cascading lookup scheme
-# --------------------------------------------------------- third, check course
+ my $symbparm=$symbp{$id}.'.'.$what;
+ my $mapparm=$mapp{$id}.'___(all).'.$what;
- if ($courseopt{$courselevel}) { $outpar[9]=$courseopt{$courselevel};
- $result=9; }
+ my $seclevel=$env{'request.course.id'}.'.['.$csec.'].'.$what;
+ my $seclevelr=$env{'request.course.id'}.'.['.$csec.'].'.$symbparm;
+ my $seclevelm=$env{'request.course.id'}.'.['.$csec.'].'.$mapparm;
- if ($courseopt{$courselevelm}) { $outpar[8]=$courseopt{$courselevelm};
- $result=8; }
+ my $courselevel=$env{'request.course.id'}.'.'.$what;
+ my $courselevelr=$env{'request.course.id'}.'.'.$symbparm;
+ my $courselevelm=$env{'request.course.id'}.'.'.$mapparm;
- if ($courseopt{$courselevelr}) { $outpar[7]=$courseopt{$courselevelr};
- $result=7; }
- if ($csec) {
- if ($courseopt{$seclevel}) { $outpar[6]=$courseopt{$seclevel};
- $result=6; }
+# --------------------------------------------------------- first, check course
- if ($courseopt{$seclevelm}) { $outpar[5]=$courseopt{$seclevelm};
- $result=5; }
-
- if ($courseopt{$seclevelr}) { $outpar[4]=$courseopt{$seclevelr};
- $result=4; }
-
- }
-
-# ---------------------------------------------------------- fourth, check user
-
- if ($uname) {
-
- if ($useropt{$courselevel}) { $outpar[3]=$useropt{$courselevel};
- $result=3; }
+ if (defined($$courseopt{$courselevel})) {
+ $outpar[11]=$$courseopt{$courselevel};
+ $result=11;
+ }
- if ($useropt{$courselevelm}) { $outpar[2]=$useropt{$courselevelm};
- $result=2; }
+ if (defined($$courseopt{$courselevelm})) {
+ $outpar[10]=$$courseopt{$courselevelm};
+ $result=10;
+ }
- if ($useropt{$courselevelr}) { $outpar[1]=$useropt{$courselevelr};
- $result=1; }
+# ------------------------------------------------------- second, check default
- }
-
- return $result;
-}
+ if (defined($def)) { $outpar[9]=$def; $result=9; }
-# ------------------------------------------------------------ Output for value
+# ------------------------------------------------------ third, check map parms
-sub valout {
- my ($value,$type)=@_;
- return
- ($value?(($type=~/^date/)?localtime($value):$value):' ');
-}
+ my $thisparm=$parmhash{$symbparm};
+ if (defined($thisparm)) { $outpar[8]=$thisparm; $result=8; }
-# -------------------------------------------------------- Produces link anchor
-
-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]};
- }
+ if (defined($$courseopt{$courselevelr})) {
+ $outpar[7]=$$courseopt{$courselevelr};
+ $result=7;
}
- return
- ''.
- &valout($value,$type).'';
-}
-sub assessparms {
+# ------------------------------------------------------ fourth, back to course
+ if (defined($csec)) {
+ if (defined($$courseopt{$seclevel})) {
+ $outpar[6]=$$courseopt{$seclevel};
+ $result=6;
+ }
+ if (defined($$courseopt{$seclevelm})) {
+ $outpar[5]=$$courseopt{$seclevelm};
+ $result=5;
+ }
- my $r=shift;
-# -------------------------------------------------------- Variable declaration
+ if (defined($$courseopt{$seclevelr})) {
+ $outpar[4]=$$courseopt
+{$seclevelr};
+ $result=4;
+ }
+ }
- %courseopt=();
- %useropt=();
- %bighash=();
-
- @ids=();
- %symbp=();
- %typep=();
-
- my $message='';
-
- $csec=$ENV{'form.csec'};
- $udom=$ENV{'form.udom'};
- unless ($udom) { $udom=$r->dir_config('lonDefDomain'); }
-
- my $pscat=$ENV{'form.pscat'};
- my $pschp=$ENV{'form.pschp'};
- my $pssymb='';
+# ---------------------------------------------------------- fifth, check user
-# ----------------------------------------------- Was this started from grades?
+ if (defined($uname)) {
+ if (defined($$useropt{$courselevel})) {
+ $outpar[3]=$$useropt{$courselevel};
+ $result=3;
+ }
- 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='';
- } else {
- $ENV{'form.url'}='';
- }
-
- my $id=$ENV{'form.id'};
- if (($id) && ($udom)) {
- $uname=(&Apache::lonnet::idget($udom,$id))[1];
- if ($uname) {
- $id='';
- } else {
- $message=
- "Unknown ID '$id' at domain '$udom'";
- }
- } else {
- $uname=$ENV{'form.uname'};
- }
- unless ($udom) { $uname=''; }
- $uhome='';
- if ($uname) {
- $uhome=&Apache::lonnet::homeserver($uname,$udom);
-
- if ($uhome eq 'no_host') {
- $message=
- "Unknown user '$uname' at domain '$udom'";
- $uname='';
- } else {
- $csec=&Apache::lonnet::usection(
- $udom,$uname,$ENV{'request.course.id'});
- if ($csec eq '-1') {
- $message="".
- "User '$uname' at domain '$udom' not in this course";
- $uname='';
- $csec=$ENV{'form.csec'};
- } else {
- my %name=&Apache::lonnet::userenvironment($udom,$uname,
- ('firstname','middlename','lastname','generation','id'));
- $message="\n
+ENDHEAD3
+
+ if (!$have_assesments) {
+ $r->print(''.&mt('There are no assesment parameters in this course to set.').' ');
+ } else {
+ $r->print(<
-Section/Group:
-
-
-For User
-
-or ID
-
-at Domain
-
+$sections
+
+$lt{'fu'}
+
+$lt{'oi'}
+
+$lt{'ad'}
+$chooseopt
-
+
ENDHEAD
- if ($ENV{'form.url'}) {
- $r->print('');
}
- map {
- $r->print('');
- } ('tolerance','date_default','date_start','date_end','date_interval',
- 'int','float','string');
-
- $r->print('
'.$message.'
Sort list by
');
- $r->print('
Select Enclosing Map
Select Parameter
'
- );
- 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(<
-
-
Any User
-ENDTABLEHEAD
- if ($uname) {
- $r->print("
User $uname at Domain $udom
");
+}
+
+sub print_row {
+ my ($r,$which,$part,$name,$rid,$default,$defaulttype,$display,$defbgone,
+ $defbgtwo,$parmlev,$uname,$udom,$csec)=@_;
+# 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},$uname,$udom,$csec);
+# 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},$uname,$udom,$csec);
+# cascade down manually
+ my $cascadetype=$$defaulttype{$which};
+ for (my $i=11;$i>0;$i--) {
+ if ($typeoutpar[$i]) {
+ $cascadetype=$typeoutpar[$i];
+ } else {
+ $typeoutpar[$i]=$cascadetype;
+ }
}
- $r->print(<Parameter in Effect
-
Current Session Value ($csuname at $csudom)
-
-
Resource Level
-
in Course
-ENDTABLETWO
- if ($csec) {
- $r->print("
in Section/Group $csec
");
+ my $parm=$$display{$which};
+
+ if ($parmlev eq 'full' || $parmlev eq 'brief') {
+ $r->print('
');
+
+ 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('