--- loncom/interface/lonparmset.pm 2000/11/24 20:00:27 1.10
+++ loncom/interface/lonparmset.pm 2003/12/12 19:41:11 1.139.2.2
@@ -1,410 +1,1927 @@
# 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 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::lonmeta;
-
+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 %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)=@_;
+ my ($what,$id,$def)=@_;
my $result='';
+ 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'}.'.['.
- $ENV{'request.course.sec'}.'].'.$what;
- my $seclevelr=
- $ENV{'request.course.id'}.'.['.
- $ENV{'request.course.sec'}.'].'.$symbparm;
- my $seclevelm=
- $ENV{'request.course.id'}.'.['.
- $ENV{'request.course.sec'}.'].'.$mapparm;
-
- my $courselevel=
- $ENV{'request.course.id'}.'.'.$what;
- my $courselevelr=
- $ENV{'request.course.id'}.'.'.$symbparm;
- my $courselevelm=
- $ENV{'request.course.id'}.'.'.$mapparm;
-
-# ----------------------------------------------------------- first, check user
-
- if ($uname) {
- if ($useropt{$courselevelr}) { $outpar[1]=$useropt{$courselevelr};
- $result=1; }
- if ($useropt{$courselevelm}) { $outpar[2]=$useropt{$courselevelm};
- $result=2; }
- if ($useropt{$courselevel}) { $outpar[3]=$useropt{$courselevel};
- $result=3; }
- }
-
-# -------------------------------------------------------- second, check course
-
- if ($courseopt{$seclevelr}) { $outpar[4]=$courseopt{$seclevelr};
- $result=4; }
- if ($courseopt{$seclevelm}) { $outpar[5]=$courseopt{$seclevelm};
- $result=5; }
- if ($courseopt{$seclevel}) { $outpar[6]=$courseopt{$seclevel};
- $result=6; }
-
- if ($courseopt{$courselevelr}) { $outpar[7]=$courseopt{$courselevelr};
- $result=7; }
- if ($courseopt{$courselevelm}) { $outpar[8]=$courseopt{$courselevelm};
- $result=8; }
- if ($courseopt{$courselevel}) { $outpar[9]=$courseopt{$courselevel};
- $result=9; }
-
-# ------------------------------------------------------ third, check map parms
-
- my $thisparm=$parmhash{$symbparm};
- if ($thisparm) { $outpar[10]=$thisparm;
- $result=10; }
-
-# --------------------------------------------- last, look in resource metadata
-
- my $filename='/home/httpd/res/'.$bighash{'src_'.$id}.'.meta';
- if (-e $filename) {
- my @content;
- {
- my $fh=Apache::File->new($filename);
- @content=<$fh>;
- }
- if (join('',@content)=~
- /\<$what[^\>]*\>([^\<]*)\<\/$what\>/) {
- $outpar[11]=$1;
- $result=11;
- }
- }
- return $result;
-}
+ my $seclevel=$ENV{'request.course.id'}.'.['.$csec.'].'.$what;
+ my $seclevelr=$ENV{'request.course.id'}.'.['.$csec.'].'.$symbparm;
+ my $seclevelm=$ENV{'request.course.id'}.'.['.$csec.'].'.$mapparm;
-# ---------------------------------------------------------------- Sort routine
+ my $courselevel=$ENV{'request.course.id'}.'.'.$what;
+ my $courselevelr=$ENV{'request.course.id'}.'.'.$symbparm;
+ my $courselevelm=$ENV{'request.course.id'}.'.'.$mapparm;
-sub bycat {
- if ($fcat eq '') {
- $a<=>$b;
- } else {
- &parmval('0.'.$fcat,$a)<=>&parmval('0.'.$fcat,$b);
+# -------------------------------------------------------- first, check default
+
+ if (defined($def)) { $outpar[11]=$def; $result=11; }
+
+# ----------------------------------------------------- second, check map parms
+
+ my $thisparm=$parmhash{$symbparm};
+ if (defined($thisparm)) { $outpar[10]=$thisparm; $result=10; }
+
+# --------------------------------------------------------- third, check course
+
+ if (defined($courseopt{$courselevel})) {
+ $outpar[9]=$courseopt{$courselevel};
+ $result=9;
}
+
+ if (defined($courseopt{$courselevelm})) {
+ $outpar[8]=$courseopt{$courselevelm};
+ $result=8;
+ }
+
+ if (defined($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;
+ }
+ }
+
+# ---------------------------------------------------------- fourth, check user
+
+ 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);
}
-# ------------------------------------------------------------ Output for value
+##################################################
+##################################################
+
+=pod
+
+=item valout
+
+Format a value for output.
+
+Inputs: $value, $type
+
+Returns: $value, formatted for output. If $type indicates it is a date,
+localtime($value) is returned.
+
+=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
+##################################################
+##################################################
-sub plink {
- my ($type,$dis,$value,$marker,$return,$call)=@_;
- return ''.
- &valout($value,$type).'';
-}
+=pod
-# ================================================================ Main Handler
+=item plink
-sub handler {
- my $r=shift;
+Produces a link anchor.
- if ($r->header_only) {
- $r->content_type('text/html');
- $r->send_http_header;
- return OK;
- }
+Inputs: $type,$dis,$value,$marker,$return,$call
-# ----------------------------------------------------- Needs to be in a course
+Returns: scalar with html code for a link which will envoke the
+javascript function 'pjump'.
- if (($ENV{'request.course.fn'}) &&
- (&Apache::lonnet::allowed('opa',$ENV{'request.course.id'}))) {
-# -------------------------------------------------------- Variable declaration
+=cut
- %courseopt=();
- %useropt=();
- %bighash=();
-
- @ids=();
- %symbp=();
- %typep=();
-
- $uname=$ENV{'form.uname'};
- $udom=$ENV{'form.udom'};
- unless ($udom) { $uname=''; }
- $uhome='';
- my $message='';
- if ($uname) {
- $uhome=&Apache::lonnet::homeserver($uname,$udom);
- }
- if ($uhome eq 'no_host') {
- $message=
- "
+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
-
-at Domain
-
+$lt{'fu'}
+
+$lt{'oi'}
+
+$lt{'ad'}
+$chooseopt
+
+
+
ENDHEAD
-
- if ($uhome eq 'no_host') {
- $r->print($message);
- }
- $r->print('
Sort list by ');
- $r->print('');
-# ----------------------------------------------------------------- Start Table
- my $coursespan=$csec?8:5;
- $r->print(<
-
-
Any User
-ENDTABLEHEAD
+ }
+
+ 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('
');
+ } else {
+ undef $firstrow;
+ }
+
+ &print_row($r,$_,\%part,\%name,$rid,\%default,
+ \%type,\%display,$defbgone,$defbgtwo,
+ $parmlev);
+ }
}
}
- if ($_ eq 'title') {
- $thistitle=$metadata{$_};
+ } # end foreach ids
+# -------------------------------------------------- End entry for one resource
+ $r->print('
');
+ } # end of brief/full
+#--------------------------------------------------- Entry for parm level map
+ if ($parmlev eq 'map') {
+ my $defbgone = '"E0E099"';
+ my $defbgtwo = '"FFFF99"';
+
+ 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 \n");
+
+ foreach (@ids) {
+ ($map)=(/([\d]*?)\./);
+ my $rid = $_;
+
+# $r->print("$mapid:$map: $rid \n");
+
+ if ($map eq $mapid) {
+ my $uri=&Apache::lonnet::declutter($bighash{'src_'.$rid});
+# $r->print("Keys: $keyp{$rid} \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(<
+Set Defaults for All Resources in $foldermap
+$showtitle
+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")." $uname \($person\) ".
+ &mt('in')." \n");
+ } else {
+ $r->print("".&mt('all').' '.&mt('users in')." \n");
}
- } keys %metadata;
- my $totalparms=$#name+1;
- $r->print('