--- loncom/interface/lonparmset.pm 2001/08/09 19:28:47 1.33
+++ loncom/interface/lonparmset.pm 2003/12/12 19:41:11 1.139.2.2
@@ -1,143 +1,272 @@
# The LearningOnline Network with CAPA
# Handler to set parameters for assessments
#
-# (Handler to resolve ambiguous file locations
+# $Id: lonparmset.pm,v 1.139.2.2 2003/12/12 19:41:11 albertel 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 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;
my %courseopt;
my %useropt;
-my %bighash;
my %parmhash;
-my @outpar;
-
my @ids;
my %symbp;
my %mapp;
my %typep;
my %keyp;
-my %defp;
-my %allkeys;
-my %allmaps;
+my %maptitles;
my $uname;
my $udom;
my $uhome;
-
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 {
my ($what,$id,$def)=@_;
my $result='';
- @outpar=();
+ my @outpar=();
# ----------------------------------------------------- Cascading lookup scheme
- my $symbparm=$symbp{$id}.'.'.$what;
- my $mapparm=$mapp{$id}.'___(all).'.$what;
+ my $symbparm=$symbp{$id}.'.'.$what;
+ my $mapparm=$mapp{$id}.'___(all).'.$what;
- my $seclevel=
- $ENV{'request.course.id'}.'.['.
- $csec.'].'.$what;
- my $seclevelr=
- $ENV{'request.course.id'}.'.['.
- $csec.'].'.$symbparm;
- my $seclevelm=
- $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;
+ my $seclevel=$ENV{'request.course.id'}.'.['.$csec.'].'.$what;
+ my $seclevelr=$ENV{'request.course.id'}.'.['.$csec.'].'.$symbparm;
+ my $seclevelm=$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
- if ($def) { $outpar[11]=$def;
- $result=11; }
+ if (defined($def)) { $outpar[11]=$def; $result=11; }
# ----------------------------------------------------- second, check map parms
- my $thisparm=$parmhash{$symbparm};
- if ($thisparm) { $outpar[10]=$thisparm;
- $result=10; }
+ my $thisparm=$parmhash{$symbparm};
+ if (defined($thisparm)) { $outpar[10]=$thisparm; $result=10; }
# --------------------------------------------------------- third, check course
- if ($courseopt{$courselevel}) { $outpar[9]=$courseopt{$courselevel};
- $result=9; }
+ if (defined($courseopt{$courselevel})) {
+ $outpar[9]=$courseopt{$courselevel};
+ $result=9;
+ }
+
+ if (defined($courseopt{$courselevelm})) {
+ $outpar[8]=$courseopt{$courselevelm};
+ $result=8;
+ }
- if ($courseopt{$courselevelm}) { $outpar[8]=$courseopt{$courselevelm};
- $result=8; }
+ if (defined($courseopt{$courselevelr})) {
+ $outpar[7]=$courseopt{$courselevelr};
+ $result=7;
+ }
- if ($courseopt{$courselevelr}) { $outpar[7]=$courseopt{$courselevelr};
- $result=7; }
+ if (defined($csec)) {
+ if (defined($courseopt{$seclevel})) {
+ $outpar[6]=$courseopt{$seclevel};
+ $result=6;
+ }
+ if (defined($courseopt{$seclevelm})) {
+ $outpar[5]=$courseopt{$seclevelm};
+ $result=5;
+ }
+
+ if (defined($courseopt{$seclevelr})) {
+ $outpar[4]=$courseopt{$seclevelr};
+ $result=4;
+ }
+ }
- if ($csec) {
+# ---------------------------------------------------------- fourth, check user
- if ($courseopt{$seclevel}) { $outpar[6]=$courseopt{$seclevel};
- $result=6; }
+ if (defined($uname)) {
+ if (defined($useropt{$courselevel})) {
+ $outpar[3]=$useropt{$courselevel};
+ $result=3;
+ }
+
+ if (defined($useropt{$courselevelm})) {
+ $outpar[2]=$useropt{$courselevelm};
+ $result=2;
+ }
+
+ if (defined($useropt{$courselevelr})) {
+ $outpar[1]=$useropt{$courselevelr};
+ $result=1;
+ }
+ }
+ return ($result,@outpar);
+}
- if ($courseopt{$seclevelm}) { $outpar[5]=$courseopt{$seclevelm};
- $result=5; }
-
- if ($courseopt{$seclevelr}) { $outpar[4]=$courseopt{$seclevelr};
- $result=4; }
-
- }
+##################################################
+##################################################
-# ---------------------------------------------------------- fourth, check user
-
- if ($uname) {
+=pod
- if ($useropt{$courselevel}) { $outpar[3]=$useropt{$courselevel};
- $result=3; }
+=item valout
- if ($useropt{$courselevelm}) { $outpar[2]=$useropt{$courselevelm};
- $result=2; }
+Format a value for output.
- if ($useropt{$courselevelr}) { $outpar[1]=$useropt{$courselevelr};
- $result=1; }
+Inputs: $value, $type
- }
-
- return $result;
-}
+Returns: $value, formatted for output. If $type indicates it is a date,
+localtime($value) is returned.
-# ------------------------------------------------------------ Output for value
+=cut
+##################################################
+##################################################
sub valout {
my ($value,$type)=@_;
- return
- ($value?(($type=~/^date/)?localtime($value):$value):' ');
+ my $result = '';
+ # Values of zero are valid.
+ if (! $value && $value ne '0') {
+ $result = ' ';
+ } else {
+ if ($type eq 'date_interval') {
+ my ($sec,$min,$hour,$mday,$mon,$year)=gmtime($value);
+ $year=$year-70;
+ $mday--;
+ if ($year) {
+ $result.=$year.' yrs ';
+ }
+ if ($mon) {
+ $result.=$mon.' mths ';
+ }
+ if ($mday) {
+ $result.=$mday.' days ';
+ }
+ if ($hour) {
+ $result.=$hour.' hrs ';
+ }
+ if ($min) {
+ $result.=$min.' mins ';
+ }
+ if ($sec) {
+ $result.=$sec.' secs ';
+ }
+ $result=~s/\s+$//;
+ } elsif ($type=~/^date/) {
+ $result = localtime($value);
+ } else {
+ $result = $value;
+ }
+ }
+ return $result;
}
-# -------------------------------------------------------- Produces link anchor
+##################################################
+##################################################
+
+=pod
+
+=item plink
+
+Produces a link anchor.
+
+Inputs: $type,$dis,$value,$marker,$return,$call
+Returns: scalar with html code for a link which will envoke the
+javascript function 'pjump'.
+
+=cut
+
+##################################################
+##################################################
sub plink {
my ($type,$dis,$value,$marker,$return,$call)=@_;
my $winvalue=$value;
@@ -149,270 +278,35 @@ sub plink {
}
}
return
- ''.
- &valout($value,$type).'';
+ ''.
+ &valout($value,$type).'';
}
-sub assessparms {
-
- my $r=shift;
-# -------------------------------------------------------- Variable declaration
-
- %courseopt=();
- %useropt=();
- %bighash=();
-
- @ids=();
- %symbp=();
- %typep=();
-
- my $message='';
-
- $csec=$ENV{'form.csec'};
- $udom=$ENV{'form.udom'};
- unless ($udom) { $udom=$r->dir_config('lonDefDomain'); }
-
- my $pscat=$ENV{'form.pscat'};
- my $pschp=$ENV{'form.pschp'};
- my $pssymb='';
-
-# ----------------------------------------------- Was this started from grades?
-
- if (($ENV{'form.command'} eq 'set') && ($ENV{'form.url'})
- && (!$ENV{'form.dis'})) {
- my $url=$ENV{'form.url'};
- $url=~s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
- $pssymb=&Apache::lonnet::symbread($url);
- $pscat='all';
- $pschp='';
- } 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:
+$lt{'sg'}:
-For User
+$lt{'fu'}
-or ID
+$lt{'oi'}
-at Domain
-
+$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
+}
+
+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('
');
+
+ 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('