Annotation of loncom/interface/lonparmset.pm, revision 1.421

1.1       www         1: # The LearningOnline Network with CAPA
                      2: # Handler to set parameters for assessments
                      3: #
1.421   ! bisitz      4: # $Id: lonparmset.pm,v 1.420 2009/01/15 18:31:11 bisitz Exp $
1.40      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.59      matthew    28: ###################################################################
                     29: ###################################################################
                     30: 
                     31: =pod
                     32: 
                     33: =head1 NAME
                     34: 
                     35: lonparmset - Handler to set parameters for assessments and course
                     36: 
                     37: =head1 SYNOPSIS
                     38: 
                     39: lonparmset provides an interface to setting course parameters. 
                     40: 
                     41: =head1 DESCRIPTION
                     42: 
                     43: This module sets coursewide and assessment parameters.
                     44: 
                     45: =head1 INTERNAL SUBROUTINES
                     46: 
1.416     jms        47: =over
1.59      matthew    48: 
                     49: =pod
                     50: 
1.416     jms        51: =item parmval()
1.59      matthew    52: 
                     53: Figure out a cascading parameter.
                     54: 
1.71      albertel   55: Inputs:  $what - a parameter spec (incluse part info and name I.E. 0.weight)
1.162     albertel   56:          $id   - a bighash Id number
1.71      albertel   57:          $def  - the resource's default value   'stupid emacs
                     58: 
1.269     raeburn    59: 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 14 possible levels
1.71      albertel   60: 
1.306     albertel   61: 14- General Course
                     62: 13- Map or Folder level in course
1.269     raeburn    63: 12- resource default
                     64: 11- map default
1.306     albertel   65: 10- resource level in course
1.269     raeburn    66: 9 - General for section
                     67: 8 - Map or Folder level for section
                     68: 7 - resource level in section
                     69: 6 - General for group
                     70: 5 - Map or Folder level for group
                     71: 4 - resource level in group
1.71      albertel   72: 3 - General for specific student
1.82      www        73: 2 - Map or Folder level for specific student
1.71      albertel   74: 1 - resource level for specific student
1.2       www        75: 
1.416     jms        76: =item parmval_by_symb()
                     77: 
                     78: =item reset_caches()
                     79: 
                     80: =item cacheparmhash() 
                     81: 
                     82: =item parmhash()
                     83: 
                     84: =item symbcache()
                     85: 
                     86: =item preset_defaults()
                     87: 
                     88: =item date_sanity_info()
                     89: 
                     90: =item storeparm()
                     91: 
                     92: Store a parameter by symb
                     93: 
                     94:     Takes
                     95:     - symb
                     96:     - name of parameter
                     97:     - level
                     98:     - new value
                     99:     - new type
                    100:     - username
                    101:     - userdomain
                    102: 
                    103: =item log_parmset()
                    104: 
                    105: =item storeparm_by_symb_inner()
                    106: 
                    107: =item valout()
                    108: 
                    109: Format a value for output.
                    110: 
                    111: Inputs:  $value, $type, $editable
                    112: 
                    113: Returns: $value, formatted for output.  If $type indicates it is a date,
                    114: localtime($value) is returned.
                    115: $editable will return an icon to click on
                    116: 
                    117: =item plink()
                    118: 
                    119: Produces a link anchor.
                    120: 
                    121: Inputs: $type,$dis,$value,$marker,$return,$call
                    122: 
                    123: Returns: scalar with html code for a link which will envoke the 
                    124: javascript function 'pjump'.
                    125: 
                    126: =item page_js()
                    127: 
                    128: =item startpage()
                    129: 
                    130: =item print_row()
                    131: 
                    132: =item print_td()
                    133: 
                    134: =item print_usergroups()
                    135: 
                    136: =item parm_control_group()
                    137: 
                    138: =item extractResourceInformation() : 
                    139: 
                    140: Given the course data hash, extractResourceInformation extracts lots of information about the course's resources into a variety of hashes.
                    141: 
                    142: Input: See list below:
                    143: 
                    144: =item * B<ids> : An array that will contain all of the ids in the course.
                    145: 
                    146: =item * B<typep> : hash, id->type, where "type" contains the extension of the file, thus, I<problem exam quiz assess survey form>.
                    147: 
                    148: =item * B<keyp> : hash, id->key list, will contain a comma separated list of the meta-data keys available for the given id
                    149: 
                    150: =item * B<allparms> : hash, name of parameter->display value (what is the display value?)
                    151: 
                    152: =item * B<allparts> : hash, part identification->text representation of part, where the text representation is "[Part $part]"
                    153: 
                    154: =item * B<allkeys> : hash, full key to part->display value (what's display value?)
                    155: 
                    156: =item * B<allmaps> : hash, ???
                    157: 
                    158: =item * B<fcat> : ???
                    159: 
                    160: =item * B<defp> : hash, ???
                    161: 
                    162: =item * B<mapp> : ??
                    163: 
                    164: =item * B<symbp> : hash, id->full sym?
                    165: 
                    166: 
                    167: 
                    168: =item isdateparm()
                    169: 
                    170: =item parmmenu()
                    171: 
                    172: =item partmenu()
                    173: 
                    174: =item usermenu()
                    175: 
                    176: =item displaymenu()
                    177: 
                    178: =item mapmenu()
                    179: 
                    180: =item levelmenu()
                    181: 
                    182: =item sectionmenu()
                    183: 
                    184: =item keysplit()
                    185: 
                    186: =item keysinorder()
                    187: 
                    188: =item keysinorder_bytype()
                    189: 
                    190: =item keysindisplayorder()
                    191: 
                    192: =item standardkeyorder()
                    193: 
                    194: =item assessparms() : 
                    195: 
                    196: Show assessment data and parameters.  This is a large routine that should
                    197: be simplified and shortened... someday.
                    198: 
                    199: Inputs: $r
                    200: 
                    201: Returns: nothing
                    202: 
                    203: Variables used (guessed by Jeremy):
                    204: 
                    205: =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.
                    206: 
                    207: =item * B<psprt>: ParameterS PaRTs? a list of the parts of a problem that we are displaying? Used to display only selected parts?
                    208: 
                    209: =item * B<@catmarker> contains list of all possible parameters including part #s
                    210: 
                    211: =item * B<$fullkeyp> contains the full part/id # for the extraction of proper parameters
                    212: 
                    213: =item * B<$tempkeyp> contains part 0 only (no ids - ie, subparts)
                    214:         When storing information, store as part 0
                    215:         When requesting information, request from full part
                    216: 
                    217: =item crsenv()
                    218: 
                    219: Show and set course data and parameters.  This is a large routine that should
                    220: be simplified and shortened... someday.
                    221: 
                    222: Inputs: $r
                    223: 
                    224: Returns: nothing
                    225: 
                    226: =item can_modify_catsettings()
                    227: 
                    228: =item assign_course_categories()
                    229: 
                    230: =item tablestart()
                    231: 
                    232: =item tableend()
                    233: 
                    234: =item extractuser()
                    235: 
                    236: =item parse_listdata_key()
                    237: 
                    238: =item listdata()
                    239: 
                    240: =item date_interval_selector()
                    241: 
                    242: =item get_date_interval_from_form()
                    243: 
                    244: =item default_selector()
                    245: 
                    246: =item string_selector()
                    247: 
                    248: =item dateshift()
                    249: 
                    250: =item newoverview()
                    251: 
                    252: =item secgroup_lister()
                    253: 
                    254: =item overview()
                    255: 
                    256: =item clean_parameters()
                    257: 
                    258: =item date_shift_one()
                    259: 
                    260: =item date_shift_two()
                    261: 
                    262: =item parse_key()
                    263: 
                    264: =item check_cloners() :
                    265: 
                    266: Checks if new users included in list of allowed cloners
                    267: are valid users.  Replaces supplied list with 
                    268: cleaned list containing only users with valid usernames
                    269: and domains.
                    270: 
                    271: Inputs: $clonelist, $oldcloner 
                    272: where $clonelist is ref to array of requested cloners,
                    273: and $oldcloner is ref to array of currently allowed
                    274: cloners.
                    275: 
                    276: Returns: string - comma separated list of requested
                    277: cloners (username:domain) who do not exist in system.
                    278: 
                    279: =item change_clone() :
                    280: 
                    281: Modifies the list of courses a user can clone (stored
                    282: in the user's environment.db file), called when a
                    283: change is made to the list of users allowed to clone
                    284: a course.
                    285: 
                    286: Inputs: $action,$cloner
                    287: where $action is add or drop, and $cloner is identity of 
                    288: user for whom cloning ability is to be changed in course. 
                    289: 
                    290: 
                    291: =item check_cloners()
                    292: 
                    293: =item change_clone()
                    294: 
                    295: =item header()
                    296: 
                    297: Output html header for page
                    298: 
                    299: =item print_main_menu()
                    300: 
                    301: =item output_row()
                    302: 
                    303: Set portfolio metadata
                    304: 
                    305: =item order_meta_fields()
                    306: 
                    307: =item addmetafield()
                    308: 
                    309: =item setrestrictmeta()
                    310: 
                    311: =item get_added_meta_fieldnames()
                    312: 
                    313: =item get_deleted_meta_fieldnames()
                    314: 
                    315: =item defaultsetter()
                    316: 
                    317: =item components()
                    318: 
                    319: =item load_parameter_names()
                    320: 
                    321: =item parm_change_log()
                    322: 
                    323: =item handler() : 
                    324: 
                    325: Main handler.  Calls &assessparms and &crsenv subroutines.
                    326: 
                    327: 
                    328: =back
                    329: 
1.59      matthew   330: =cut
                    331: 
1.416     jms       332: ###################################################################
                    333: ###################################################################
                    334: 
                    335: package Apache::lonparmset;
                    336: 
                    337: use strict;
                    338: use Apache::lonnet;
                    339: use Apache::Constants qw(:common :http REDIRECT);
                    340: use Apache::lonhtmlcommon();
                    341: use Apache::loncommon;
                    342: use GDBM_File;
                    343: use Apache::lonhomework;
                    344: use Apache::lonxml;
                    345: use Apache::lonlocal;
                    346: use Apache::lonnavmaps;
                    347: use Apache::longroup;
                    348: use Apache::lonrss;
                    349: use LONCAPA qw(:DEFAULT :match);
                    350: 
                    351: 
1.2       www       352: sub parmval {
1.275     raeburn   353:     my ($what,$id,$def,$uname,$udom,$csec,$cgroup,$courseopt)=@_;
                    354:     return &parmval_by_symb($what,&symbcache($id),$def,$uname,$udom,$csec,
                    355:                                                            $cgroup,$courseopt);
1.201     www       356: }
                    357: 
                    358: sub parmval_by_symb {
1.275     raeburn   359:     my ($what,$symb,$def,$uname,$udom,$csec,$cgroup,$courseopt)=@_;
1.200     www       360: 
1.352     albertel  361:     my $useropt;
                    362:     if ($uname ne '' && $udom ne '') {
                    363: 	$useropt = &Apache::lonnet::get_userresdata($uname,$udom);
                    364:     }
1.200     www       365: 
1.8       www       366:     my $result='';
1.44      albertel  367:     my @outpar=();
1.2       www       368: # ----------------------------------------------------- Cascading lookup scheme
1.201     www       369:     my $map=(&Apache::lonnet::decode_symb($symb))[0];    
1.305     albertel  370:     $map = &Apache::lonnet::deversion($map);
1.10      www       371: 
1.201     www       372:     my $symbparm=$symb.'.'.$what;
                    373:     my $mapparm=$map.'___(all).'.$what;
1.10      www       374: 
1.269     raeburn   375:     my $grplevel=$env{'request.course.id'}.'.['.$cgroup.'].'.$what;
                    376:     my $grplevelr=$env{'request.course.id'}.'.['.$cgroup.'].'.$symbparm;
                    377:     my $grplevelm=$env{'request.course.id'}.'.['.$cgroup.'].'.$mapparm;
                    378: 
1.190     albertel  379:     my $seclevel=$env{'request.course.id'}.'.['.$csec.'].'.$what;
                    380:     my $seclevelr=$env{'request.course.id'}.'.['.$csec.'].'.$symbparm;
                    381:     my $seclevelm=$env{'request.course.id'}.'.['.$csec.'].'.$mapparm;
                    382: 
                    383:     my $courselevel=$env{'request.course.id'}.'.'.$what;
                    384:     my $courselevelr=$env{'request.course.id'}.'.'.$symbparm;
                    385:     my $courselevelm=$env{'request.course.id'}.'.'.$mapparm;
1.2       www       386: 
1.11      www       387: 
1.182     albertel  388: # --------------------------------------------------------- first, check course
1.11      www       389: 
1.200     www       390:     if (defined($$courseopt{$courselevel})) {
1.269     raeburn   391: 	$outpar[14]=$$courseopt{$courselevel};
                    392: 	$result=14;
1.43      albertel  393:     }
1.11      www       394: 
1.200     www       395:     if (defined($$courseopt{$courselevelm})) {
1.269     raeburn   396: 	$outpar[13]=$$courseopt{$courselevelm};
                    397: 	$result=13;
1.43      albertel  398:     }
1.11      www       399: 
1.182     albertel  400: # ------------------------------------------------------- second, check default
                    401: 
1.269     raeburn   402:     if (defined($def)) { $outpar[12]=$def; $result=12; }
1.182     albertel  403: 
                    404: # ------------------------------------------------------ third, check map parms
                    405: 
1.376     albertel  406:     my $thisparm=&parmhash($symbparm);
1.269     raeburn   407:     if (defined($thisparm)) { $outpar[11]=$thisparm; $result=11; }
1.182     albertel  408: 
1.200     www       409:     if (defined($$courseopt{$courselevelr})) {
1.269     raeburn   410: 	$outpar[10]=$$courseopt{$courselevelr};
                    411: 	$result=10;
1.43      albertel  412:     }
1.11      www       413: 
1.182     albertel  414: # ------------------------------------------------------ fourth, back to course
1.352     albertel  415:     if ($csec ne '') {
1.200     www       416:         if (defined($$courseopt{$seclevel})) {
1.269     raeburn   417: 	    $outpar[9]=$$courseopt{$seclevel};
                    418: 	    $result=9;
1.43      albertel  419: 	}
1.200     www       420:         if (defined($$courseopt{$seclevelm})) {
1.269     raeburn   421: 	    $outpar[8]=$$courseopt{$seclevelm};
                    422: 	    $result=8;
1.43      albertel  423: 	}
                    424: 
1.200     www       425:         if (defined($$courseopt{$seclevelr})) {
1.269     raeburn   426: 	    $outpar[7]=$$courseopt{$seclevelr};
                    427: 	    $result=7;
1.43      albertel  428: 	}
                    429:     }
1.275     raeburn   430: # ------------------------------------------------------ fifth, check course group
1.352     albertel  431:     if ($cgroup ne '') {
1.269     raeburn   432:         if (defined($$courseopt{$grplevel})) {
                    433:             $outpar[6]=$$courseopt{$grplevel};
                    434:             $result=6;
                    435:         }
                    436:         if (defined($$courseopt{$grplevelm})) {
                    437:             $outpar[5]=$$courseopt{$grplevelm};
                    438:             $result=5;
                    439:         }
                    440:         if (defined($$courseopt{$grplevelr})) {
                    441:             $outpar[4]=$$courseopt{$grplevelr};
                    442:             $result=4;
                    443:         }
                    444:     }
1.11      www       445: 
1.182     albertel  446: # ---------------------------------------------------------- fifth, check user
1.11      www       447: 
1.352     albertel  448:     if ($uname ne '') {
1.200     www       449: 	if (defined($$useropt{$courselevel})) {
                    450: 	    $outpar[3]=$$useropt{$courselevel};
1.43      albertel  451: 	    $result=3;
                    452: 	}
1.10      www       453: 
1.200     www       454: 	if (defined($$useropt{$courselevelm})) {
                    455: 	    $outpar[2]=$$useropt{$courselevelm};
1.43      albertel  456: 	    $result=2;
                    457: 	}
1.2       www       458: 
1.200     www       459: 	if (defined($$useropt{$courselevelr})) {
                    460: 	    $outpar[1]=$$useropt{$courselevelr};
1.43      albertel  461: 	    $result=1;
                    462: 	}
                    463:     }
1.44      albertel  464:     return ($result,@outpar);
1.2       www       465: }
                    466: 
1.198     www       467: 
                    468: 
1.376     albertel  469: # --- Caches local to lonparmset
                    470: 
                    471:     
                    472: sub reset_caches {
                    473:     &resetparmhash();
                    474:     &resetsymbcache();
                    475:     &resetrulescache();
1.203     www       476: }
                    477: 
1.376     albertel  478: {
                    479:     my $parmhashid;
                    480:     my %parmhash;
                    481:     sub resetparmhash {
                    482: 	undef($parmhashid);
                    483: 	undef(%parmhash);
                    484:     }
                    485:     
                    486:     sub cacheparmhash {
                    487: 	if ($parmhashid eq  $env{'request.course.fn'}) { return; }
                    488: 	my %parmhashfile;
                    489: 	if (tie(%parmhashfile,'GDBM_File',
                    490: 		$env{'request.course.fn'}.'_parms.db',&GDBM_READER(),0640)) {
                    491: 	    %parmhash=%parmhashfile;
                    492: 	    untie(%parmhashfile);
                    493: 	    $parmhashid=$env{'request.course.fn'};
                    494: 	}
1.201     www       495:     }
1.376     albertel  496:  
                    497:     sub parmhash {
                    498: 	my ($id) = @_;
                    499: 	&cacheparmhash();
                    500: 	return $parmhash{$id};
                    501:     }
                    502:  }
                    503: 
                    504: {   
                    505:     my $symbsid;
                    506:     my %symbs;
                    507:     sub resetsymbcache {
                    508: 	undef($symbsid);
                    509: 	undef(%symbs);
                    510:     }
                    511:     
                    512:     sub symbcache {
                    513: 	my $id=shift;
                    514: 	if ($symbsid ne $env{'request.course.id'}) {
                    515: 	    undef(%symbs);
                    516: 	}
                    517: 	if (!$symbs{$id}) {
                    518: 	    my $navmap = Apache::lonnavmaps::navmap->new();
                    519: 	    if ($id=~/\./) {
                    520: 		my $resource=$navmap->getById($id);
                    521: 		$symbs{$id}=$resource->symb();
                    522: 	    } else {
                    523: 		my $resource=$navmap->getByMapPc($id);
                    524: 		$symbs{$id}=&Apache::lonnet::declutter($resource->src());
                    525: 	    }
                    526: 	    $symbsid=$env{'request.course.id'};
1.201     www       527: 	}
1.376     albertel  528: 	return $symbs{$id};
1.201     www       529:     }
1.376     albertel  530:  }
1.201     www       531: 
1.376     albertel  532: {   
                    533:     my $rulesid;
                    534:     my %rules;
                    535:     sub resetrulescache {
                    536: 	undef($rulesid);
                    537: 	undef(%rules);
                    538:     }
                    539:     
                    540:     sub rulescache {
                    541: 	my $id=shift;
                    542: 	if ($rulesid ne $env{'request.course.id'}
                    543: 	    && !defined($rules{$id})) {
                    544: 	    my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                    545: 	    my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
                    546: 	    %rules=&Apache::lonnet::dump('parmdefactions',$dom,$crs);
                    547: 	    $rulesid=$env{'request.course.id'};
                    548: 	}
                    549: 	return $rules{$id};
1.221     www       550:     }
                    551: }
                    552: 
1.416     jms       553: 
                    554: 
1.229     www       555: sub preset_defaults {
                    556:     my $type=shift;
                    557:     if (&rulescache($type.'_action') eq 'default') {
                    558: # yes, there is something
                    559: 	return (&rulescache($type.'_hours'),
                    560: 		&rulescache($type.'_min'),
                    561: 		&rulescache($type.'_sec'),
                    562: 		&rulescache($type.'_value'));
                    563:     } else {
                    564: # nothing there or something else
                    565: 	return ('','','','','');
                    566:     }
                    567: }
                    568: 
1.416     jms       569: 
                    570: 
1.277     www       571: 
                    572: sub date_sanity_info {
                    573:    my $checkdate=shift;
                    574:    unless ($checkdate) { return ''; }
                    575:    my $result='';
                    576:    my $crsprefix='course.'.$env{'request.course.id'}.'.';
                    577:    if ($env{$crsprefix.'default_enrollment_end_date'}) {
                    578:       if ($checkdate>$env{$crsprefix.'default_enrollment_end_date'}) {
1.413     bisitz    579:          $result.='<div class="LC_warning">'
                    580:                  .&mt('After course enrollment end!')
                    581:                  .'</div>';
1.277     www       582:       }
                    583:    }
                    584:    if ($env{$crsprefix.'default_enrollment_start_date'}) {
                    585:       if ($checkdate<$env{$crsprefix.'default_enrollment_start_date'}) {
1.413     bisitz    586:          $result.='<div class="LC_warning">'
                    587:                  .&mt('Before course enrollment start!')
                    588:                  .'</div>';
1.277     www       589:       }
                    590:    }
1.413     bisitz    591: # Preparation for additional warnings about dates in the past/future.
                    592: # An improved, more context sensitive version is recommended,
                    593: # e.g. warn for due and answer dates which are defined before the corresponding open date, etc.
                    594: #   if ($checkdate<time) {
                    595: #      $result.='<div class="LC_info">'
                    596: #              .'('.&mt('in the past').')'
                    597: #              .'</div>';
                    598: #      }
                    599: #   if ($checkdate>time) {
                    600: #      $result.='<div class="LC_info">'
                    601: #              .'('.&mt('in the future').')'
                    602: #              .'</div>';
                    603: #      }
1.277     www       604:    return $result;
                    605: }
                    606: ##################################################
1.186     www       607: ##################################################
                    608: #
1.197     www       609: # Store a parameter by ID
1.186     www       610: #
                    611: # Takes
                    612: # - resource id
                    613: # - name of parameter
                    614: # - level
                    615: # - new value
                    616: # - new type
1.187     www       617: # - username
                    618: # - userdomain
                    619: 
1.186     www       620: sub storeparm {
1.269     raeburn   621:     my ($sresid,$spnam,$snum,$nval,$ntype,$uname,$udom,$csec,$cgroup)=@_;
1.275     raeburn   622:     &storeparm_by_symb(&symbcache($sresid),$spnam,$snum,$nval,$ntype,$uname,$udom,$csec,'',$cgroup);
1.197     www       623: }
                    624: 
1.226     www       625: my %recstack;
1.197     www       626: sub storeparm_by_symb {
1.275     raeburn   627:     my ($symb,$spnam,$snum,$nval,$ntype,$uname,$udom,$csec,$recflag,$cgroup)=@_;
1.226     www       628:     unless ($recflag) {
                    629: # first time call
                    630: 	%recstack=();
                    631: 	$recflag=1;
                    632:     }
                    633: # store parameter
                    634:     &storeparm_by_symb_inner
1.269     raeburn   635: 	($symb,$spnam,$snum,$nval,$ntype,$uname,$udom,$csec,$cgroup);
1.266     www       636: # don't do anything if parameter was reset
                    637:     unless ($nval) { return; }
1.226     www       638:     my ($prefix,$parm)=($spnam=~/^(.*[\_\.])([^\_\.]+)$/);
                    639: # remember that this was set
                    640:     $recstack{$parm}=1;
                    641: # what does this trigger?
                    642:     foreach my $triggered (split(/\:/,&rulescache($parm.'_triggers'))) {
                    643: # don't backfire
                    644:        unless ((!$triggered) || ($recstack{$triggered})) {
                    645: 	   my $action=&rulescache($triggered.'_action');
                    646: 	   my ($whichaction,$whichparm)=($action=~/^(.*\_)([^\_]+)$/);
                    647: # set triggered parameter on same level
                    648: 	   my $newspnam=$prefix.$triggered;
1.227     www       649: 	   my $newvalue='';
1.228     www       650: 	   my $active=1;
                    651: 	   if ($action=~/^when\_setting/) {
                    652: # are there restrictions?
                    653: 	       if (&rulescache($triggered.'_triggervalue')=~/\w/) {
                    654: 		   $active=0;
                    655: 		   foreach my $possiblevalue (split(/\s*\,\s*/,&rulescache($triggered.'_triggervalue'))) {
                    656: 		       if (lc($possiblevalue) eq lc($nval)) { $active=1; }
                    657: 		   }
                    658: 	       }
                    659: 	       $newvalue=&rulescache($triggered.'_value');
1.227     www       660: 	   } else {
                    661: 	       my $totalsecs=((&rulescache($triggered.'_days')*24+&rulescache($triggered.'_hours'))*60+&rulescache($triggered.'_min'))*60+&rulescache($triggered.'_sec');
1.228     www       662: 	       if ($action=~/^later\_than/) {
                    663: 		   $newvalue=$nval+$totalsecs;
                    664: 	       } else {
                    665: 		   $newvalue=$nval-$totalsecs;
                    666: 	       }
                    667: 	   }
                    668: 	   if ($active) {
                    669: 	       &storeparm_by_symb($symb,$newspnam,$snum,$newvalue,&rulescache($triggered.'_type'),
1.275     raeburn   670: 				   $uname,$udom,$csec,$recflag,$cgroup);
1.227     www       671: 	   }
1.226     www       672:        }
                    673:     }
                    674:     return '';
                    675: }
                    676: 
1.293     www       677: sub log_parmset {
                    678:     return &Apache::lonnet::instructor_log('parameterlog',@_);
1.284     www       679: }
                    680: 
1.226     www       681: sub storeparm_by_symb_inner {
1.197     www       682: # ---------------------------------------------------------- Get symb, map, etc
1.269     raeburn   683:     my ($symb,$spnam,$snum,$nval,$ntype,$uname,$udom,$csec,$cgroup)=@_;
1.197     www       684: # ---------------------------------------------------------- Construct prefixes
1.186     www       685:     $spnam=~s/\_([^\_]+)$/\.$1/;
1.197     www       686:     my $map=(&Apache::lonnet::decode_symb($symb))[0];    
1.305     albertel  687:     $map = &Apache::lonnet::deversion($map);
                    688: 
1.197     www       689:     my $symbparm=$symb.'.'.$spnam;
                    690:     my $mapparm=$map.'___(all).'.$spnam;
                    691: 
1.269     raeburn   692:     my $grplevel=$env{'request.course.id'}.'.['.$cgroup.'].'.$spnam;
                    693:     my $grplevelr=$env{'request.course.id'}.'.['.$cgroup.'].'.$symbparm;
                    694:     my $grplevelm=$env{'request.course.id'}.'.['.$cgroup.'].'.$mapparm;
                    695: 
1.190     albertel  696:     my $seclevel=$env{'request.course.id'}.'.['.$csec.'].'.$spnam;
                    697:     my $seclevelr=$env{'request.course.id'}.'.['.$csec.'].'.$symbparm;
                    698:     my $seclevelm=$env{'request.course.id'}.'.['.$csec.'].'.$mapparm;
1.186     www       699:     
1.190     albertel  700:     my $courselevel=$env{'request.course.id'}.'.'.$spnam;
                    701:     my $courselevelr=$env{'request.course.id'}.'.'.$symbparm;
                    702:     my $courselevelm=$env{'request.course.id'}.'.'.$mapparm;
1.186     www       703:     
                    704:     my $storeunder='';
1.269     raeburn   705:     if (($snum==14) || ($snum==3)) { $storeunder=$courselevel; }
                    706:     if (($snum==13) || ($snum==2)) { $storeunder=$courselevelm; }
                    707:     if (($snum==10) || ($snum==1)) { $storeunder=$courselevelr; }
                    708:     if ($snum==9) { $storeunder=$seclevel; }
                    709:     if ($snum==8) { $storeunder=$seclevelm; }
                    710:     if ($snum==7) { $storeunder=$seclevelr; }
                    711:     if ($snum==6) { $storeunder=$grplevel; }
                    712:     if ($snum==5) { $storeunder=$grplevelm; }
                    713:     if ($snum==4) { $storeunder=$grplevelr; }
                    714: 
1.186     www       715:     
                    716:     my $delete;
                    717:     if ($nval eq '') { $delete=1;}
                    718:     my %storecontent = ($storeunder         => $nval,
                    719: 			$storeunder.'.type' => $ntype);
                    720:     my $reply='';
                    721:     if ($snum>3) {
                    722: # ---------------------------------------------------------------- Store Course
                    723: #
1.200     www       724: 	my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                    725: 	my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
1.186     www       726: # Expire sheets
                    727: 	&Apache::lonnet::expirespread('','','studentcalc');
1.269     raeburn   728: 	if (($snum==10) || ($snum==7) || ($snum==4)) {
1.197     www       729: 	    &Apache::lonnet::expirespread('','','assesscalc',$symb);
1.269     raeburn   730: 	} elsif (($snum==11) || ($snum==8) || ($snum==5)) {
1.197     www       731: 	    &Apache::lonnet::expirespread('','','assesscalc',$map);
1.186     www       732: 	} else {
                    733: 	    &Apache::lonnet::expirespread('','','assesscalc');
                    734: 	}
                    735: # Store parameter
                    736: 	if ($delete) {
                    737: 	    $reply=&Apache::lonnet::del
1.200     www       738: 		('resourcedata',[keys(%storecontent)],$cdom,$cnum);
1.290     www       739:             &log_parmset(\%storecontent,1);
1.186     www       740: 	} else {
                    741: 	    $reply=&Apache::lonnet::cput
1.200     www       742: 		('resourcedata',\%storecontent,$cdom,$cnum);
1.290     www       743: 	    &log_parmset(\%storecontent);
1.186     www       744: 	}
1.200     www       745: 	&Apache::lonnet::devalidatecourseresdata($cnum,$cdom);
1.186     www       746:     } else {
                    747: # ------------------------------------------------------------------ Store User
                    748: #
                    749: # Expire sheets
                    750: 	&Apache::lonnet::expirespread($uname,$udom,'studentcalc');
                    751: 	if ($snum==1) {
                    752: 	    &Apache::lonnet::expirespread
1.197     www       753: 		($uname,$udom,'assesscalc',$symb);
1.186     www       754: 	} elsif ($snum==2) {
                    755: 	    &Apache::lonnet::expirespread
1.197     www       756: 		($uname,$udom,'assesscalc',$map);
1.186     www       757: 	} else {
                    758: 	    &Apache::lonnet::expirespread($uname,$udom,'assesscalc');
                    759: 	}
                    760: # Store parameter
                    761: 	if ($delete) {
                    762: 	    $reply=&Apache::lonnet::del
                    763: 		('resourcedata',[keys(%storecontent)],$udom,$uname);
1.290     www       764: 	    &log_parmset(\%storecontent,1,$uname,$udom);
1.186     www       765: 	} else {
                    766: 	    $reply=&Apache::lonnet::cput
                    767: 		('resourcedata',\%storecontent,$udom,$uname);
1.290     www       768: 	    &log_parmset(\%storecontent,0,$uname,$udom);
1.186     www       769: 	}
1.191     albertel  770: 	&Apache::lonnet::devalidateuserresdata($uname,$udom);
1.186     www       771:     }
                    772:     
                    773:     if ($reply=~/^error\:(.*)/) {
1.314     albertel  774: 	return "<span class=\"LC_error\">Write Error: $1</span>";
1.186     www       775:     }
                    776:     return '';
                    777: }
                    778: 
1.9       www       779: 
                    780: sub valout {
1.320     www       781:     my ($value,$type,$editable)=@_;
1.59      matthew   782:     my $result = '';
                    783:     # Values of zero are valid.
                    784:     if (! $value && $value ne '0') {
1.320     www       785: 	if ($editable) {
1.324     www       786: 	    $result = '<span class="LC_clickhere">*</span>';
1.320     www       787: 	} else {
                    788: 	    $result='&nbsp;';
                    789: 	}
1.59      matthew   790:     } else {
1.66      www       791:         if ($type eq 'date_interval') {
                    792:             my ($sec,$min,$hour,$mday,$mon,$year)=gmtime($value);
1.413     bisitz    793:             my @timer;
1.66      www       794:             $year=$year-70;
                    795:             $mday--;
                    796:             if ($year) {
1.413     bisitz    797: #               $result.=&mt('[quant,_1,yr]',$year).' ';
                    798:                 push(@timer,&mt('[quant,_1,yr]',$year));
1.66      www       799:             }
                    800:             if ($mon) {
1.413     bisitz    801: #               $result.=&mt('[quant,_1,mth]',$mon).' ';
                    802:                 push(@timer,&mt('[quant,_1,mth]',$mon));
1.66      www       803:             }
                    804:             if ($mday) {
1.413     bisitz    805: #               $result.=&mt('[quant,_1,day]',$mday).' ';
                    806:                 push(@timer,&mt('[quant,_1,day]',$mday));
1.66      www       807:             }
                    808:             if ($hour) {
1.413     bisitz    809: #               $result.=&mt('[quant,_1,hr]',$hour).' ';
                    810:                 push(@timer,&mt('[quant,_1,hr]',$hour));
1.66      www       811:             }
                    812:             if ($min) {
1.413     bisitz    813: #               $result.=&mt('[quant,_1,min]',$min).' ';
                    814:                 push(@timer,&mt('[quant,_1,min]',$min));
1.66      www       815:             }
                    816:             if ($sec) {
1.413     bisitz    817: #               $result.=&mt('[quant,_1,sec]',$sec).' ';
                    818:                 push(@timer,&mt('[quant,_1,sec]',$sec));
1.66      www       819:             }
1.413     bisitz    820: #           $result=~s/\s+$//;
                    821:             if (!@timer) { # Special case: all entries 0 -> display "0 secs" intead of empty field to keep this field editable
                    822:                 push(@timer,&mt('[quant,_1,sec]',0));
                    823:             }
                    824:             $result.=join(", ",@timer);
1.213     www       825:         } elsif (&isdateparm($type)) {
1.361     albertel  826:             $result = &Apache::lonlocal::locallocaltime($value).
                    827: 		&date_sanity_info($value);
1.59      matthew   828:         } else {
                    829:             $result = $value;
1.378     albertel  830: 	    $result = &HTML::Entities::encode($result,'"<>&');
1.59      matthew   831:         }
                    832:     }
                    833:     return $result;
1.9       www       834: }
                    835: 
1.59      matthew   836: 
1.5       www       837: sub plink {
                    838:     my ($type,$dis,$value,$marker,$return,$call)=@_;
1.23      www       839:     my $winvalue=$value;
                    840:     unless ($winvalue) {
1.213     www       841: 	if (&isdateparm($type)) {
1.190     albertel  842:             $winvalue=$env{'form.recent_'.$type};
1.23      www       843:         } else {
1.190     albertel  844:             $winvalue=$env{'form.recent_'.(split(/\_/,$type))[0]};
1.23      www       845:         }
                    846:     }
1.229     www       847:     my ($parmname)=((split(/\&/,$marker))[1]=~/\_([^\_]+)$/);
                    848:     my ($hour,$min,$sec,$val)=&preset_defaults($parmname);
                    849:     unless (defined($winvalue)) { $winvalue=$val; }
1.378     albertel  850:     my $valout = &valout($value,$type,1);
                    851:     foreach my $item (\$type, \$dis, \$winvalue, \$marker, \$return, \$call,
                    852: 		      \$hour, \$min, \$sec) {
                    853: 	$$item = &HTML::Entities::encode($$item,'"<>&');
                    854: 	$$item =~ s/\'/\\\'/g;
                    855:     }
1.270     www       856:     return '<table width="100%"><tr valign="top" align="right"><td><a name="'.$marker.'" /></td></tr><tr><td align="center">'.
1.43      albertel  857: 	'<a href="javascript:pjump('."'".$type."','".$dis."','".$winvalue."','"
1.229     www       858: 	    .$marker."','".$return."','".$call."','".$hour."','".$min."','".$sec."'".');">'.
1.378     albertel  859: 	    $valout.'</a></td></tr></table>';
1.5       www       860: }
                    861: 
1.280     albertel  862: sub page_js {
                    863: 
1.81      www       864:     my $selscript=&Apache::loncommon::studentbrowser_javascript();
1.88      matthew   865:     my $pjump_def = &Apache::lonhtmlcommon::pjump_javascript_definition();
1.280     albertel  866: 
                    867:     return(<<ENDJS);
                    868: <script type="text/javascript">
1.44      albertel  869: 
                    870:     function pclose() {
                    871:         parmwin=window.open("/adm/rat/empty.html","LONCAPAparms",
                    872:                  "height=350,width=350,scrollbars=no,menubar=no");
                    873:         parmwin.close();
                    874:     }
                    875: 
1.88      matthew   876:     $pjump_def
1.44      albertel  877: 
                    878:     function psub() {
                    879:         pclose();
                    880:         if (document.parmform.pres_marker.value!='') {
                    881:             document.parmform.action+='#'+document.parmform.pres_marker.value;
                    882:             var typedef=new Array();
                    883:             typedef=document.parmform.pres_type.value.split('_');
                    884:            if (document.parmform.pres_type.value!='') {
                    885:             if (typedef[0]=='date') {
                    886:                 eval('document.parmform.recent_'+
                    887:                      document.parmform.pres_type.value+
                    888: 		     '.value=document.parmform.pres_value.value;');
                    889:             } else {
                    890:                 eval('document.parmform.recent_'+typedef[0]+
                    891: 		     '.value=document.parmform.pres_value.value;');
                    892:             }
                    893: 	   }
                    894:             document.parmform.submit();
                    895:         } else {
                    896:             document.parmform.pres_value.value='';
                    897:             document.parmform.pres_marker.value='';
                    898:         }
                    899:     }
                    900: 
1.57      albertel  901:     function openWindow(url, wdwName, w, h, toolbar,scrollbar) {
                    902:         var options = "width=" + w + ",height=" + h + ",";
                    903:         options += "resizable=yes,scrollbars="+scrollbar+",status=no,";
                    904:         options += "menubar=no,toolbar="+toolbar+",location=no,directories=no";
                    905:         var newWin = window.open(url, wdwName, options);
                    906:         newWin.focus();
                    907:     }
1.44      albertel  908: </script>
1.81      www       909: $selscript
1.280     albertel  910: ENDJS
                    911: 
                    912: }
                    913: sub startpage {
                    914:     my ($r) = @_;
1.281     albertel  915: 
1.282     albertel  916:     my %loaditems = ('onunload' => "pclose()",
1.283     albertel  917: 		     'onload'   => "group_or_section('cgroup')",);
1.280     albertel  918: 
1.414     droeschl  919:     if ((($env{'form.command'} eq 'set') && ($env{'form.url'})
                    920: 	     && (!$env{'form.dis'})) || ($env{'form.symb'})) {
                    921: 	&Apache::lonhtmlcommon::add_breadcrumb({help=>'Problem_Parameters',
                    922: 	    text=>"Problem Parameters"});
                    923:     } else {
                    924: 	&Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=settable',
                    925: 	   text=>"Table Mode",
                    926: 	   help => 'Course_Setting_Parameters'});
                    927:     }
1.281     albertel  928:     my $start_page = 
                    929: 	&Apache::loncommon::start_page('Set/Modify Course Parameters',
                    930: 				       &page_js(),
1.282     albertel  931: 				       {'add_entries' => \%loaditems,});
1.280     albertel  932:     my $breadcrumbs = 
1.321     www       933: 	&Apache::lonhtmlcommon::breadcrumbs('Table Mode Parameter Setting','Table_Mode');
1.280     albertel  934:     $r->print(<<ENDHEAD);
1.281     albertel  935: $start_page
1.193     albertel  936: $breadcrumbs
                    937: <form method="post" action="/adm/parmset?action=settable" name="parmform">
1.419     bisitz    938: <input type="hidden" value="" name="pres_value" />
                    939: <input type="hidden" value="" name="pres_type" />
                    940: <input type="hidden" value="" name="pres_marker" />
                    941: <input type="hidden" value="1" name="prevvisit" />
1.44      albertel  942: ENDHEAD
                    943: }
                    944: 
1.209     www       945: 
1.44      albertel  946: sub print_row {
1.201     www       947:     my ($r,$which,$part,$name,$symbp,$rid,$default,$defaulttype,$display,$defbgone,
1.275     raeburn   948: 	$defbgtwo,$defbgthree,$parmlev,$uname,$udom,$csec,$cgroup,$usersgroups)=@_;
                    949:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                    950:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                    951:     my $courseopt=&Apache::lonnet::get_courseresdata($cnum,$cdom);
1.66      www       952: # get the values for the parameter in cascading order
                    953: # empty levels will remain empty
1.44      albertel  954:     my ($result,@outpar)=&parmval($$part{$which}.'.'.$$name{$which},
1.275     raeburn   955: 	  $rid,$$default{$which},$uname,$udom,$csec,$cgroup,$courseopt);
1.66      www       956: # get the type for the parameters
                    957: # problem: these may not be set for all levels
                    958:     my ($typeresult,@typeoutpar)=&parmval($$part{$which}.'.'.
1.275     raeburn   959:                                           $$name{$which}.'.type',$rid,
                    960: 		 $$defaulttype{$which},$uname,$udom,$csec,$cgroup,$courseopt);
1.66      www       961: # cascade down manually
1.182     albertel  962:     my $cascadetype=$$defaulttype{$which};
1.269     raeburn   963:     for (my $i=14;$i>0;$i--) {
1.66      www       964: 	 if ($typeoutpar[$i]) { 
                    965:             $cascadetype=$typeoutpar[$i];
                    966: 	} else {
                    967:             $typeoutpar[$i]=$cascadetype;
                    968:         }
                    969:     }
1.57      albertel  970:     my $parm=$$display{$which};
                    971: 
1.203     www       972:     if ($parmlev eq 'full') {
1.419     bisitz    973:         $r->print('<td style="background-color:'.$defbgtwo.';" align="center">'
1.57      albertel  974:                   .$$part{$which}.'</td>');
                    975:     } else {    
                    976:         $parm=~s|\[.*\]\s||g;
                    977:     }
1.231     www       978:     my $automatic=&rulescache(($which=~/\_([^\_]+)$/)[0].'_triggers');
                    979:     if ($automatic) {
1.314     albertel  980: 	$parm.='<span class="LC_warning"><br />'.&mt('Automatically sets').' '.join(', ',split(/\:/,$automatic)).'</span>';
1.231     www       981:     }
1.419     bisitz    982:     $r->print('<td style="background-color:'.$defbgone.';">'.$parm.'</td>');
1.57      albertel  983:    
1.44      albertel  984:     my $thismarker=$which;
                    985:     $thismarker=~s/^parameter\_//;
                    986:     my $mprefix=$rid.'&'.$thismarker.'&';
1.275     raeburn   987:     my $effective_parm = &valout($outpar[$result],$typeoutpar[$result]);
                    988:     my ($othergrp,$grp_parm,$controlgrp);
1.44      albertel  989: 
1.57      albertel  990:     if ($parmlev eq 'general') {
                    991: 
                    992:         if ($uname) {
1.66      www       993:             &print_td($r,3,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
1.269     raeburn   994:         } elsif ($cgroup) {
                    995:             &print_td($r,6,$defbgthree,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
1.57      albertel  996:         } elsif ($csec) {
1.269     raeburn   997:             &print_td($r,9,$defbgtwo,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); 
1.57      albertel  998:         } else {
1.269     raeburn   999:             &print_td($r,14,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display); 
1.57      albertel 1000:         }
                   1001:     } elsif ($parmlev eq 'map') {
                   1002: 
                   1003:         if ($uname) {
1.66      www      1004:             &print_td($r,2,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
1.269     raeburn  1005:         } elsif ($cgroup) {
                   1006:             &print_td($r,5,$defbgthree,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
1.57      albertel 1007:         } elsif ($csec) {
1.269     raeburn  1008:             &print_td($r,8,$defbgtwo,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
1.57      albertel 1009:         } else {
1.269     raeburn  1010:             &print_td($r,13,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
1.57      albertel 1011:         }
                   1012:     } else {
1.275     raeburn  1013:         if ($uname) {
                   1014:             if (@{$usersgroups} > 1) {
                   1015:                 my ($coursereply,$grp_parm,$controlgrp);
                   1016:                 ($coursereply,$othergrp,$grp_parm,$controlgrp) =
                   1017:                     &print_usergroups($r,$$part{$which}.'.'.$$name{$which},
                   1018:                        $rid,$cgroup,$defbgone,$usersgroups,$result,$courseopt);
                   1019:                 if ($coursereply && $result > 3) {
                   1020:                     if (defined($controlgrp)) {
                   1021:                         if ($cgroup ne $controlgrp) {
                   1022:                             $effective_parm = $grp_parm;
                   1023:                             $result = 0;
                   1024:                         }
                   1025:                     }
                   1026:                 }
                   1027:             }
                   1028:         }
1.57      albertel 1029: 
1.269     raeburn  1030:         &print_td($r,14,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
1.57      albertel 1031: 
1.269     raeburn  1032: 	&print_td($r,13,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
                   1033: 	&print_td($r,12,'#FFDDDD',$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
                   1034: 	&print_td($r,11,'#FFDDDD',$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
1.203     www      1035: 	&print_td($r,10,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
                   1036: 	
                   1037: 	if ($csec) {
1.269     raeburn  1038: 	    &print_td($r,9,$defbgtwo,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
                   1039: 	    &print_td($r,8,$defbgtwo,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
                   1040: 	    &print_td($r,7,$defbgtwo,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
1.203     www      1041: 	}
1.269     raeburn  1042: 
                   1043:         if ($cgroup) {
                   1044:             &print_td($r,6,$defbgthree,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
                   1045:             &print_td($r,5,$defbgthree,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
                   1046:             &print_td($r,4,$defbgthree,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
                   1047:         }
1.275     raeburn  1048:      
1.203     www      1049: 	if ($uname) {
1.275     raeburn  1050:             if ($othergrp) {
                   1051:                 $r->print($othergrp);
                   1052:             }
1.203     www      1053: 	    &print_td($r,3,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
                   1054: 	    &print_td($r,2,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
                   1055: 	    &print_td($r,1,$defbgone,$result,\@outpar,$mprefix,$_,\@typeoutpar,$display);
                   1056: 	}
1.57      albertel 1057: 
                   1058:     } # end of $parmlev if/else
1.419     bisitz   1059:     $r->print('<td style="background-color:#CCCCFF;" align="center">'.$effective_parm.'</td>');
1.136     albertel 1060: 
1.203     www      1061:     if ($parmlev eq 'full') {
1.136     albertel 1062:         my $sessionval=&Apache::lonnet::EXT('resource.'.$$part{$which}.
1.201     www      1063:                                         '.'.$$name{$which},$$symbp{$rid});
1.136     albertel 1064:         my $sessionvaltype=$typeoutpar[$result];
                   1065:         if (!defined($sessionvaltype)) { $sessionvaltype=$$defaulttype{$which}; }
1.419     bisitz   1066:         $r->print('<td style="background-color:#999999;" align="center"><font color="#FFFFFF">'.
1.66      www      1067:                   &valout($sessionval,$sessionvaltype).'&nbsp;'.
1.57      albertel 1068:                   '</font></td>');
1.136     albertel 1069:     }
1.44      albertel 1070:     $r->print('</tr>');
1.57      albertel 1071:     $r->print("\n");
1.44      albertel 1072: }
1.59      matthew  1073: 
1.44      albertel 1074: sub print_td {
1.66      www      1075:     my ($r,$which,$defbg,$result,$outpar,$mprefix,$value,$typeoutpar,$display)=@_;
1.419     bisitz   1076:     $r->print('<td style="background-color:'.(($result==$which)?'#AAFFAA':$defbg).
                   1077:               ';" align="center">');
1.269     raeburn  1078:     if ($which<11 || $which > 12) {
1.114     www      1079: 	$r->print(&plink($$typeoutpar[$which],
                   1080: 			 $$display{$value},$$outpar[$which],
                   1081: 			 $mprefix."$which",'parmform.pres','psub'));
                   1082:     } else {
                   1083: 	$r->print(&valout($$outpar[$which],$$typeoutpar[$which]));
                   1084:     }
                   1085:     $r->print('</td>'."\n");
1.57      albertel 1086: }
                   1087: 
1.275     raeburn  1088: sub print_usergroups {
                   1089:     my ($r,$what,$rid,$cgroup,$defbg,$usersgroups,$result,$courseopt) = @_;
                   1090:     my $courseid = $env{'request.course.id'};
                   1091:     my $output;
                   1092:     my $symb = &symbcache($rid);
                   1093:     my $symbparm=$symb.'.'.$what;
                   1094:     my $map=(&Apache::lonnet::decode_symb($symb))[0];
                   1095:     my $mapparm=$map.'___(all).'.$what;
                   1096:     my ($coursereply,$resultitem,$resultgroup,$resultlevel,$resulttype) =
                   1097:           &parm_control_group($courseid,$usersgroups,$symbparm,$mapparm,$what,
                   1098:                                                                    $courseopt);
                   1099:     my $bgcolor = $defbg;
                   1100:     my $grp_parm;
                   1101:     if (($coursereply) && ($cgroup ne $resultgroup)) { 
                   1102:         if ($result > 3) {
1.419     bisitz   1103:             $bgcolor = '#AAFFAA';
1.275     raeburn  1104:             $grp_parm = &valout($coursereply,$resulttype);
                   1105:         }
                   1106:         $grp_parm = &valout($coursereply,$resulttype);
1.419     bisitz   1107:         $output = '<td style="background-color:'.$bgcolor.';" align="center">';
1.275     raeburn  1108:         if ($resultgroup && $resultlevel) {
                   1109:             $output .= '<small><b>'.$resultgroup.'</b> ('.$resultlevel.'): </small>'.$grp_parm;
                   1110:         } else {
                   1111:             $output .= '&nbsp;';
                   1112:         }
                   1113:         $output .= '</td>';
                   1114:     } else {
1.419     bisitz   1115:         $output .= '<td style="background-color:'.$bgcolor.';">&nbsp;</td>';
1.275     raeburn  1116:     }
                   1117:     return ($coursereply,$output,$grp_parm,$resultgroup);
                   1118: }
                   1119: 
                   1120: sub parm_control_group {
                   1121:     my ($courseid,$usersgroups,$symbparm,$mapparm,$what,$courseopt) = @_;
                   1122:     my ($coursereply,$resultitem,$resultgroup,$resultlevel,$resulttype);
                   1123:     my $grpfound = 0;
                   1124:     my @levels = ($symbparm,$mapparm,$what);
                   1125:     my @levelnames = ('resource','map/folder','general');
                   1126:     foreach my $group (@{$usersgroups}) {
                   1127:         if ($grpfound) { last; }
                   1128:         for (my $i=0; $i<@levels; $i++) {
                   1129:             my $item = $courseid.'.['.$group.'].'.$levels[$i];
                   1130:             if (defined($$courseopt{$item})) {
                   1131:                 $coursereply = $$courseopt{$item};
                   1132:                 $resultitem = $item;
                   1133:                 $resultgroup = $group;
                   1134:                 $resultlevel = $levelnames[$i];
                   1135:                 $resulttype = $$courseopt{$item.'.type'};
                   1136:                 $grpfound = 1;
                   1137:                 last;
                   1138:             }
                   1139:         }
                   1140:     }
                   1141:     return($coursereply,$resultitem,$resultgroup,$resultlevel,$resulttype);
                   1142: }
1.201     www      1143: 
1.63      bowersj2 1144: 
                   1145: 
                   1146: sub extractResourceInformation {
                   1147:     my $ids = shift;
                   1148:     my $typep = shift;
                   1149:     my $keyp = shift;
                   1150:     my $allparms = shift;
                   1151:     my $allparts = shift;
                   1152:     my $allmaps = shift;
                   1153:     my $mapp = shift;
                   1154:     my $symbp = shift;
1.82      www      1155:     my $maptitles=shift;
1.196     www      1156:     my $uris=shift;
1.210     www      1157:     my $keyorder=shift;
1.211     www      1158:     my $defkeytype=shift;
1.196     www      1159: 
1.210     www      1160:     my $keyordercnt=100;
1.63      bowersj2 1161: 
1.196     www      1162:     my $navmap = Apache::lonnavmaps::navmap->new();
                   1163:     my @allres=$navmap->retrieveResources(undef,undef,1,undef,1);
                   1164:     foreach my $resource (@allres) {
                   1165: 	my $id=$resource->id();
                   1166:         my ($mapid,$resid)=split(/\./,$id);
                   1167: 	if ($mapid eq '0') { next; }
                   1168: 	$$ids[$#$ids+1]=$id;
                   1169: 	my $srcf=$resource->src();
                   1170: 	$srcf=~/\.(\w+)$/;
                   1171: 	$$typep{$id}=$1;
                   1172: 	$$keyp{$id}='';
                   1173:         $$uris{$id}=$srcf;
1.363     albertel 1174: 	foreach my $key (split(/\,/,&Apache::lonnet::metadata($srcf,'allpossiblekeys'))) {
                   1175: 	    next if ($key!~/^parameter_/);
                   1176: 
1.209     www      1177: # Hidden parameters
1.363     albertel 1178: 	    next if (&Apache::lonnet::metadata($srcf,$key.'.hidden') eq 'parm');
1.209     www      1179: #
                   1180: # allparms is a hash of parameter names
                   1181: #
1.363     albertel 1182: 	    my $name=&Apache::lonnet::metadata($srcf,$key.'.name');
1.375     albertel 1183: 	    if (!exists($$allparms{$name}) || $$allparms{$name} =~ m/^\s*$/ ) {
1.363     albertel 1184: 		my $display= &Apache::lonnet::metadata($srcf,$key.'.display');
1.196     www      1185: 		my $parmdis = $display;
1.412     bisitz   1186: 		$parmdis =~ s/\s*\[Part.*$//g;
1.363     albertel 1187: 		$$allparms{$name}=$parmdis;
                   1188: 		if (ref($defkeytype)) {
                   1189: 		    $$defkeytype{$name}=
                   1190: 			&Apache::lonnet::metadata($srcf,$key.'.type');
                   1191: 		}
                   1192: 	    }
                   1193: 
1.209     www      1194: #
                   1195: # allparts is a hash of all parts
                   1196: #
1.363     albertel 1197: 	    my $part= &Apache::lonnet::metadata($srcf,$key.'.part');
1.410     bisitz   1198: 	    $$allparts{$part} = &mt('Part: [_1]',$part);
1.209     www      1199: #
                   1200: # Remember all keys going with this resource
                   1201: #
1.363     albertel 1202: 	    if ($$keyp{$id}) {
                   1203: 		$$keyp{$id}.=','.$key;
                   1204: 	    } else {
                   1205: 		$$keyp{$id}=$key;
                   1206: 	    }
1.210     www      1207: #
                   1208: # Put in order
                   1209: # 
1.363     albertel 1210: 	    unless ($$keyorder{$key}) {
                   1211: 		$$keyorder{$key}=$keyordercnt;
                   1212: 		$keyordercnt++;
                   1213: 	    }
                   1214: 	}
1.210     www      1215: 
1.363     albertel 1216: 	
                   1217: 	if (!exists($$mapp{$mapid})) {
                   1218: 	    $$mapp{$id}=
                   1219: 		&Apache::lonnet::declutter($resource->enclosing_map_src());
                   1220: 	    $$mapp{$mapid}=$$mapp{$id};
                   1221: 	    $$allmaps{$mapid}=$$mapp{$id};
                   1222: 	    if ($mapid eq '1') {
1.401     bisitz   1223: 		$$maptitles{$mapid}=&mt('Main Course Documents');
1.363     albertel 1224: 	    } else {
                   1225: 		$$maptitles{$mapid}=
                   1226: 		    &Apache::lonnet::gettitle($$mapp{$id});    
1.63      bowersj2 1227: 	    }
1.363     albertel 1228: 	    $$maptitles{$$mapp{$id}}=$$maptitles{$mapid};
                   1229: 	    $$symbp{$mapid}=$$mapp{$id}.'___(all)';
1.196     www      1230: 	} else {
1.363     albertel 1231: 	    $$mapp{$id} = $$mapp{$mapid};
1.196     www      1232: 	}
                   1233: 	$$symbp{$id}=&Apache::lonnet::encode_symb($$mapp{$id},$resid,$srcf);
1.63      bowersj2 1234:     }
                   1235: }
                   1236: 
1.208     www      1237: 
                   1238: 
1.213     www      1239: sub isdateparm {
                   1240:     my $type=shift;
                   1241:     return (($type=~/^date/) && (!($type eq 'date_interval')));
                   1242: }
                   1243: 
1.208     www      1244: sub parmmenu {
1.211     www      1245:     my ($r,$allparms,$pscat,$keyorder)=@_;
1.208     www      1246:     my $tempkey;
                   1247:     $r->print(<<ENDSCRIPT);
                   1248: <script type="text/javascript">
                   1249:     function checkall(value, checkName) {
                   1250: 	for (i=0; i<document.forms.parmform.elements.length; i++) {
                   1251:             ele = document.forms.parmform.elements[i];
                   1252:             if (ele.name == checkName) {
                   1253:                 document.forms.parmform.elements[i].checked=value;
                   1254:             }
                   1255:         }
                   1256:     }
1.210     www      1257: 
                   1258:     function checkthis(thisvalue, checkName) {
                   1259: 	for (i=0; i<document.forms.parmform.elements.length; i++) {
                   1260:             ele = document.forms.parmform.elements[i];
                   1261:             if (ele.name == checkName) {
                   1262: 		if (ele.value == thisvalue) {
                   1263: 		    document.forms.parmform.elements[i].checked=true;
                   1264: 		}
                   1265:             }
                   1266:         }
                   1267:     }
                   1268: 
                   1269:     function checkdates() {
                   1270: 	checkthis('duedate','pscat');
                   1271:  	checkthis('opendate','pscat');
                   1272: 	checkthis('answerdate','pscat');
1.218     www      1273:     }
                   1274: 
                   1275:     function checkdisset() {
                   1276: 	checkthis('discussend','pscat');
                   1277:  	checkthis('discusshide','pscat');
                   1278:     }
                   1279: 
                   1280:     function checkcontdates() {
                   1281: 	checkthis('contentopen','pscat');
                   1282:  	checkthis('contentclose','pscat');
                   1283:     }
                   1284:  
1.210     www      1285: 
                   1286:     function checkvisi() {
                   1287: 	checkthis('hiddenresource','pscat');
                   1288:  	checkthis('encrypturl','pscat');
                   1289: 	checkthis('problemstatus','pscat');
                   1290: 	checkthis('contentopen','pscat');
                   1291: 	checkthis('opendate','pscat');
                   1292:     }
                   1293: 
                   1294:     function checkparts() {
                   1295: 	checkthis('hiddenparts','pscat');
                   1296: 	checkthis('display','pscat');
                   1297: 	checkthis('ordered','pscat');
                   1298:     }
                   1299: 
                   1300:     function checkstandard() {
                   1301:         checkall(false,'pscat');
                   1302: 	checkdates();
                   1303: 	checkthis('weight','pscat');
                   1304: 	checkthis('maxtries','pscat');
                   1305:     }
                   1306: 
1.208     www      1307: </script>
                   1308: ENDSCRIPT
1.209     www      1309:     $r->print();
1.317     albertel 1310:     $r->print("\n<table id=\"LC_parm_overview_parm_menu\"><tr>");
1.208     www      1311:     my $cnt=0;
1.211     www      1312:     foreach $tempkey (&keysindisplayorder($allparms,$keyorder)) {
1.419     bisitz   1313: 	$r->print("\n".'<td><label><input type="checkbox" name="pscat" ');
1.208     www      1314: 	$r->print('value="'.$tempkey.'"');
                   1315: 	if ($$pscat[0] eq "all" || grep $_ eq $tempkey, @{$pscat}) {
                   1316: 	    $r->print(' checked');
                   1317: 	}
1.411     bisitz   1318: 	$r->print('>'.($$allparms{$tempkey}=~/\S/ ? &mt($$allparms{$tempkey})
                   1319: 		                                  : &mt($tempkey))
1.375     albertel 1320: 		  .'</label></td>');
1.209     www      1321:  	$cnt++;
                   1322:         if ($cnt==3) {
                   1323: 	    $r->print("</tr>\n<tr>");
                   1324: 	    $cnt=0;
                   1325: 	}
1.208     www      1326:     }
1.410     bisitz   1327:     $r->print('</tr>'
                   1328:              .'<tr id=\"LC_parm_overview_parm_menu_selectors\">'
                   1329:              .'<td valign="top">'
                   1330:              .'<fieldset><legend><b>'.&mt('Parameter Selection').'</b></legend>'
                   1331:              .'<span class="LC_nobreak">'
                   1332:              .'&bull; <a href="javascript:checkall(true, \'pscat\')">'.&mt('Select All').'</a>'
                   1333:              .'</span>'
                   1334:              .'<br />'
                   1335:              .'<span class="LC_nobreak">'
                   1336:              .'&bull; <a href="javascript:checkstandard()">'.&mt('Select Common Only').'</a>'
                   1337:              .'</span>'
                   1338:              .'<br />'
                   1339:              .'<span class="LC_nobreak">'
                   1340:              .'&bull; <a href="javascript:checkall(false, \'pscat\')">'.&mt('Unselect All').'</a>'
                   1341:              .'</span>'
                   1342:              .'</fieldset>'
                   1343:              .'</td>'
                   1344:              .'<td colspan="2" valign="top">'
                   1345:              .'<fieldset><legend><b>'.&mt('Add Selection for...').'</b></legend>'
                   1346:              .'<span class="LC_nobreak">'
                   1347:              .'&bull; <a href="javascript:checkdates()">'.&mt('Problem Dates').'</a>'
                   1348:              .'</span>'
                   1349:              .'<span class="LC_nobreak">'
                   1350:              .' &bull; <a href="javascript:checkcontdates()">'.&mt('Content Dates').'</a>'
                   1351:              .'</span>'
                   1352: #            .'<br />'
                   1353:              .'<span class="LC_nobreak">'
                   1354:              .' &bull; <a href="javascript:checkdisset()">'.&mt('Discussion Settings').'</a>'
                   1355:              .'</span>'
                   1356:              .'<span class="LC_nobreak">'
                   1357:              .' &bull; <a href="javascript:checkvisi()">'.&mt('Visibilities').'</a>'
                   1358:              .'</span>'
                   1359: #            .'<br />'
                   1360:              .'<span class="LC_nobreak">'
                   1361:              .' &bull; <a href="javascript:checkparts()">'.&mt('Part Parameters').'</a>'
                   1362:              .'</span>'
                   1363:              .'</fieldset>'
                   1364:              .'</td>'
                   1365:              .'</tr></table>'
                   1366:     );
1.208     www      1367: }
                   1368: 
1.209     www      1369: sub partmenu {
                   1370:     my ($r,$allparts,$psprt)=@_;
1.421   ! bisitz   1371:     $r->print('<select multiple="multiple" name="psprt" size="8">');
1.208     www      1372:     $r->print('<option value="all"');
1.401     bisitz   1373:     $r->print(' selected="selected"') unless (@{$psprt});
1.208     www      1374:     $r->print('>'.&mt('All Parts').'</option>');
                   1375:     my %temphash=();
                   1376:     foreach (@{$psprt}) { $temphash{$_}=1; }
1.234     albertel 1377:     foreach my $tempkey (sort {
                   1378: 	if ($a==$b) { return ($a cmp $b) } else { return ($a <=> $b); }
                   1379:     } keys(%{$allparts})) {
1.208     www      1380: 	unless ($tempkey =~ /\./) {
                   1381: 	    $r->print('<option value="'.$tempkey.'"');
                   1382: 	    if ($$psprt[0] eq "all" ||  $temphash{$tempkey}) {
1.401     bisitz   1383: 		$r->print(' selected="selected"');
1.208     www      1384: 	    }
                   1385: 	    $r->print('>'.$$allparts{$tempkey}.'</option>');
                   1386: 	}
                   1387:     }
1.209     www      1388:     $r->print('</select>');
                   1389: }
                   1390: 
                   1391: sub usermenu {
1.275     raeburn  1392:     my ($r,$uname,$id,$udom,$csec,$cgroup,$parmlev,$usersgroups)=@_;
1.209     www      1393:     my $chooseopt=&Apache::loncommon::select_dom_form($udom,'udom').' '.
                   1394:         &Apache::loncommon::selectstudent_link('parmform','uname','udom');
                   1395:     my $selscript=&Apache::loncommon::studentbrowser_javascript();
1.412     bisitz   1396: 
1.209     www      1397:     my $sections='';
1.300     albertel 1398:     my %sectionhash = &Apache::loncommon::get_sections();
                   1399: 
1.269     raeburn  1400:     my $groups;
1.307     raeburn  1401:     my %grouphash = &Apache::longroup::coursegroups();
1.299     albertel 1402: 
1.412     bisitz   1403:     my $g_s_header='';
                   1404:     my $g_s_footer='';
                   1405: 
1.300     albertel 1406:     if (%sectionhash) {
1.412     bisitz   1407:         $sections=&mt('Section:').' <select name="csec"';
1.299     albertel 1408:         if (%grouphash && $parmlev ne 'full') {
1.269     raeburn  1409:             $sections .= qq| onchange="group_or_section('csec')" |;
                   1410:         }
                   1411:         $sections .= '>';
1.275     raeburn  1412: 	foreach my $section ('',sort keys %sectionhash) {
                   1413: 	    $sections.='<option value="'.$section.'" '.
                   1414: 		($section eq $csec?'selected="selected"':'').'>'.$section.
                   1415:                                                               '</option>';
1.209     www      1416:         }
                   1417:         $sections.='</select>';
1.269     raeburn  1418:     }
1.412     bisitz   1419: 
1.300     albertel 1420:     if (%sectionhash && %grouphash && $parmlev ne 'full') {
1.412     bisitz   1421:         $sections .= '&nbsp;'.&mt('or').'&nbsp;';
1.269     raeburn  1422:         $sections .= qq|
                   1423: <script type="text/javascript">
                   1424: function group_or_section(caller) {
                   1425:    if (caller == "cgroup") {
                   1426:        if (document.parmform.cgroup.selectedIndex != 0) {
                   1427:            document.parmform.csec.selectedIndex = 0;
                   1428:        }
                   1429:    } else {
                   1430:        if (document.parmform.csec.selectedIndex != 0) {
                   1431:            document.parmform.cgroup.selectedIndex = 0;
                   1432:        }
                   1433:    }
                   1434: }
                   1435: </script>
                   1436: |;
                   1437:     } else {
                   1438:         $sections .= qq|
                   1439: <script type="text/javascript">
                   1440: function group_or_section(caller) {
                   1441:     return;
                   1442: }
                   1443: </script>
                   1444: |;
                   1445:     } 
1.299     albertel 1446: 
                   1447:     if (%grouphash) {
1.412     bisitz   1448:         $groups=&mt('Group:').' <select name="cgroup"';
1.300     albertel 1449:         if (%sectionhash && $env{'form.action'} eq 'settable') {
1.269     raeburn  1450:             $groups .= qq| onchange="group_or_section('cgroup')" |;
                   1451:         }
                   1452:         $groups .= '>';
1.275     raeburn  1453:         foreach my $grp ('',sort keys %grouphash) {
                   1454:             $groups.='<option value="'.$grp.'" ';
                   1455:             if ($grp eq $cgroup) {
                   1456:                 unless ((defined($uname)) && ($grp eq '')) {
                   1457:                     $groups .=  'selected="selected" ';
                   1458:                 }
                   1459:             } elsif (!defined($cgroup)) {
                   1460:                 if (@{$usersgroups} == 1) {
                   1461:                     if ($grp eq $$usersgroups[0]) {
                   1462:                         $groups .=  'selected="selected" ';
                   1463:                     }
                   1464:                 }
                   1465:             }
                   1466:             $groups .= '>'.$grp.'</option>';
1.269     raeburn  1467:         }
                   1468:         $groups.='</select>';
                   1469:     }
1.412     bisitz   1470: 
                   1471:     if (%sectionhash || %grouphash) {
                   1472:         $g_s_header='<fieldset><legend>'.&mt('Group/Section').'</legend><div>';
                   1473:         $g_s_footer='</div></fieldset>';
                   1474:     }
                   1475: 
                   1476:     $r->print('<b>'
                   1477:              .$g_s_header
                   1478:              .$sections
                   1479:              .$groups
                   1480:              .$g_s_footer
                   1481:              .'<fieldset><legend>'.&mt('User').'</legend><div>'
                   1482:              .&mt('For User [_1] or Student/Employee ID [_2] at Domain [_3]'
                   1483:                  ,'<input type="text" value="'.$uname.'" size="12" name="uname" />'
                   1484:                  ,'<input type="text" value="'.$id.'" size="12" name="id" /> '
                   1485:                  ,$chooseopt)
                   1486:              .'</div></fieldset>'
                   1487:              .'</b>'
                   1488:     );
1.209     www      1489: }
                   1490: 
                   1491: sub displaymenu {
1.211     www      1492:     my ($r,$allparms,$allparts,$pscat,$psprt,$keyorder)=@_;
1.209     www      1493:     $r->print('<table border="1"><tr><th>'.&mt('Select Parameters to View').'</th><th>'.
                   1494: 	     &mt('Select Parts to View').'</th></tr><tr><td>');  
1.211     www      1495:     &parmmenu($r,$allparms,$pscat,$keyorder);
1.412     bisitz   1496:     $r->print('</td><td valign="top" align="center">');
1.209     www      1497:     &partmenu($r,$allparts,$psprt);
                   1498:     $r->print('</td></tr></table>');
                   1499: }
                   1500: 
                   1501: sub mapmenu {
                   1502:     my ($r,$allmaps,$pschp,$maptitles)=@_;
1.231     www      1503:     $r->print('<b>'.&mt('Select Enclosing Map or Folder').'</b> ');
1.209     www      1504:     $r->print('<select name="pschp">');
                   1505:     $r->print('<option value="all">'.&mt('All Maps or Folders').'</option>');
                   1506:     foreach (sort {$$allmaps{$a} cmp $$allmaps{$b}} keys %{$allmaps}) {
1.208     www      1507: 	$r->print('<option value="'.$_.'"');
1.401     bisitz   1508: 	if (($pschp eq $_)) { $r->print(' selected="selected"'); }
1.209     www      1509: 	$r->print('>'.$$maptitles{$_}.($$allmaps{$_}!~/^uploaded/?' ['.$$allmaps{$_}.']':'').'</option>');
                   1510:     }
                   1511:     $r->print("</select>");
                   1512: }
                   1513: 
                   1514: sub levelmenu {
                   1515:     my ($r,$alllevs,$parmlev)=@_;
1.231     www      1516:     $r->print('<b>'.&mt('Select Parameter Level').
                   1517: 	      &Apache::loncommon::help_open_topic('Course_Parameter_Levels').'</b> ');
1.209     www      1518:     $r->print('<select name="parmlev">');
                   1519:     foreach (reverse sort keys %{$alllevs}) {
                   1520: 	$r->print('<option value="'.$$alllevs{$_}.'"');
                   1521: 	if ($parmlev eq $$alllevs{$_}) {
1.401     bisitz   1522: 	    $r->print(' selected="selected"'); 
1.209     www      1523: 	}
1.401     bisitz   1524: 	$r->print('>'.&mt($_).'</option>');
1.208     www      1525:     }
1.209     www      1526:     $r->print("</select>");
1.208     www      1527: }
                   1528: 
1.211     www      1529: 
                   1530: sub sectionmenu {
                   1531:     my ($r,$selectedsections)=@_;
1.300     albertel 1532:     my %sectionhash = &Apache::loncommon::get_sections();
                   1533:     return if (!%sectionhash);
                   1534: 
1.421   ! bisitz   1535:     $r->print('<select name="Section" multiple="multiple" size="8">');
1.300     albertel 1536:     foreach my $s ('all',sort keys %sectionhash) {
                   1537: 	$r->print('    <option value="'.$s.'"');
                   1538: 	foreach (@{$selectedsections}) {
                   1539: 	    if ($s eq $_) {
1.401     bisitz   1540: 		$r->print(' selected="selected"');
1.300     albertel 1541: 		last;
1.212     www      1542: 	    }
                   1543: 	}
1.300     albertel 1544: 	$r->print('>'.$s."</option>\n");
                   1545:     }
                   1546:     $r->print("</select>\n");
1.269     raeburn  1547: }
                   1548: 
                   1549: sub groupmenu {
                   1550:     my ($r,$selectedgroups)=@_;
1.307     raeburn  1551:     my %grouphash = &Apache::longroup::coursegroups();
1.299     albertel 1552:     return if (!%grouphash);
                   1553: 
1.421   ! bisitz   1554:     $r->print('<select name="Group" multiple="multiple" size="8">');
1.299     albertel 1555:     foreach my $group (sort(keys(%grouphash))) {
                   1556: 	$r->print('    <option value="'.$group.'"');
                   1557: 	foreach (@{$selectedgroups}) {
                   1558: 	    if ($group eq $_) {
1.401     bisitz   1559: 		$r->print(' selected="selected"');
1.299     albertel 1560: 		last;
                   1561: 	    }
                   1562: 	}
                   1563: 	$r->print('>'.$group."</option>\n");
1.211     www      1564:     }
1.299     albertel 1565:     $r->print("</select>\n");
1.211     www      1566: }
                   1567: 
1.269     raeburn  1568: 
1.210     www      1569: sub keysplit {
                   1570:     my $keyp=shift;
                   1571:     return (split(/\,/,$keyp));
                   1572: }
                   1573: 
                   1574: sub keysinorder {
                   1575:     my ($name,$keyorder)=@_;
                   1576:     return sort {
                   1577: 	$$keyorder{$a} <=> $$keyorder{$b};
                   1578:     } (keys %{$name});
                   1579: }
                   1580: 
1.236     albertel 1581: sub keysinorder_bytype {
                   1582:     my ($name,$keyorder)=@_;
                   1583:     return sort {
                   1584: 	my $ta=(split('_',$a))[-1];
                   1585: 	my $tb=(split('_',$b))[-1];
                   1586: 	if ($$keyorder{'parameter_0_'.$ta} == $$keyorder{'parameter_0_'.$tb}) {
                   1587: 	    return ($a cmp $b);
                   1588: 	}
                   1589: 	$$keyorder{'parameter_0_'.$ta} <=> $$keyorder{'parameter_0_'.$tb};
                   1590:     } (keys %{$name});
                   1591: }
                   1592: 
1.211     www      1593: sub keysindisplayorder {
                   1594:     my ($name,$keyorder)=@_;
                   1595:     return sort {
                   1596: 	$$keyorder{'parameter_0_'.$a} <=> $$keyorder{'parameter_0_'.$b};
                   1597:     } (keys %{$name});
                   1598: }
                   1599: 
1.214     www      1600: sub sortmenu {
                   1601:     my ($r,$sortorder)=@_;
1.236     albertel 1602:     $r->print('<br /><label><input type="radio" name="sortorder" value="realmstudent"');
1.214     www      1603:     if ($sortorder eq 'realmstudent') {
                   1604:        $r->print(' checked="on"');
                   1605:     }
                   1606:     $r->print(' />'.&mt('Sort by realm first, then student (group/section)'));
1.236     albertel 1607:     $r->print('</label><br /><label><input type="radio" name="sortorder" value="studentrealm"');
1.214     www      1608:     if ($sortorder eq 'studentrealm') {
                   1609:        $r->print(' checked="on"');
                   1610:     }
1.236     albertel 1611:     $r->print(' />'.&mt('Sort by student (group/section) first, then realm').
                   1612: 	      '</label>');
1.214     www      1613: }
                   1614: 
1.211     www      1615: sub standardkeyorder {
                   1616:     return ('parameter_0_opendate' => 1,
                   1617: 	    'parameter_0_duedate' => 2,
                   1618: 	    'parameter_0_answerdate' => 3,
                   1619: 	    'parameter_0_interval' => 4,
                   1620: 	    'parameter_0_weight' => 5,
                   1621: 	    'parameter_0_maxtries' => 6,
                   1622: 	    'parameter_0_hinttries' => 7,
                   1623: 	    'parameter_0_contentopen' => 8,
                   1624: 	    'parameter_0_contentclose' => 9,
                   1625: 	    'parameter_0_type' => 10,
                   1626: 	    'parameter_0_problemstatus' => 11,
                   1627: 	    'parameter_0_hiddenresource' => 12,
                   1628: 	    'parameter_0_hiddenparts' => 13,
                   1629: 	    'parameter_0_display' => 14,
                   1630: 	    'parameter_0_ordered' => 15,
                   1631: 	    'parameter_0_tol' => 16,
                   1632: 	    'parameter_0_sig' => 17,
1.218     www      1633: 	    'parameter_0_turnoffunit' => 18,
                   1634:             'parameter_0_discussend' => 19,
                   1635:             'parameter_0_discusshide' => 20);
1.211     www      1636: }
                   1637: 
1.59      matthew  1638: 
1.30      www      1639: sub assessparms {
1.1       www      1640: 
1.43      albertel 1641:     my $r=shift;
1.201     www      1642: 
                   1643:     my @ids=();
                   1644:     my %symbp=();
                   1645:     my %mapp=();
                   1646:     my %typep=();
                   1647:     my %keyp=();
                   1648:     my %uris=();
                   1649:     my %maptitles=();
                   1650: 
1.2       www      1651: # -------------------------------------------------------- Variable declaration
1.209     www      1652: 
1.129     www      1653:     my %allmaps=();
                   1654:     my %alllevs=();
1.57      albertel 1655: 
1.187     www      1656:     my $uname;
                   1657:     my $udom;
                   1658:     my $uhome;
                   1659:     my $csec;
1.269     raeburn  1660:     my $cgroup;
1.275     raeburn  1661:     my @usersgroups = ();
1.187     www      1662:  
1.190     albertel 1663:     my $coursename=$env{'course.'.$env{'request.course.id'}.'.description'};
1.187     www      1664: 
1.57      albertel 1665:     $alllevs{'Resource Level'}='full';
1.215     www      1666:     $alllevs{'Map/Folder Level'}='map';
1.57      albertel 1667:     $alllevs{'Course Level'}='general';
                   1668: 
                   1669:     my %allparms;
                   1670:     my %allparts;
1.210     www      1671: #
                   1672: # Order in which these parameters will be displayed
                   1673: #
1.211     www      1674:     my %keyorder=&standardkeyorder();
                   1675: 
1.43      albertel 1676:     @ids=();
                   1677:     %symbp=();
                   1678:     %typep=();
                   1679: 
                   1680:     my $message='';
                   1681: 
1.190     albertel 1682:     $csec=$env{'form.csec'};
1.269     raeburn  1683:     $cgroup=$env{'form.cgroup'};
1.188     www      1684: 
1.190     albertel 1685:     if      ($udom=$env{'form.udom'}) {
                   1686:     } elsif ($udom=$env{'request.role.domain'}) {
                   1687:     } elsif ($udom=$env{'user.domain'}) {
1.172     albertel 1688:     } else {
                   1689: 	$udom=$r->dir_config('lonDefDomain');
                   1690:     }
1.43      albertel 1691: 
1.134     albertel 1692:     my @pscat=&Apache::loncommon::get_env_multiple('form.pscat');
1.190     albertel 1693:     my $pschp=$env{'form.pschp'};
1.134     albertel 1694:     my @psprt=&Apache::loncommon::get_env_multiple('form.psprt');
1.76      www      1695:     if (!@psprt) { $psprt[0]='0'; }
1.57      albertel 1696: 
1.43      albertel 1697:     my $pssymb='';
1.57      albertel 1698:     my $parmlev='';
                   1699:  
1.190     albertel 1700:     unless ($env{'form.parmlev'}) {
1.57      albertel 1701:         $parmlev = 'map';
                   1702:     } else {
1.190     albertel 1703:         $parmlev = $env{'form.parmlev'};
1.57      albertel 1704:     }
1.26      www      1705: 
1.29      www      1706: # ----------------------------------------------- Was this started from grades?
                   1707: 
1.190     albertel 1708:     if (($env{'form.command'} eq 'set') && ($env{'form.url'})
                   1709: 	&& (!$env{'form.dis'})) {
                   1710: 	my $url=$env{'form.url'};
1.194     albertel 1711: 	$url=~s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
1.43      albertel 1712: 	$pssymb=&Apache::lonnet::symbread($url);
1.92      albertel 1713: 	if (!@pscat) { @pscat=('all'); }
1.43      albertel 1714: 	$pschp='';
1.57      albertel 1715:         $parmlev = 'full';
1.190     albertel 1716:     } elsif ($env{'form.symb'}) {
                   1717: 	$pssymb=$env{'form.symb'};
1.92      albertel 1718: 	if (!@pscat) { @pscat=('all'); }
1.43      albertel 1719: 	$pschp='';
1.57      albertel 1720:         $parmlev = 'full';
1.43      albertel 1721:     } else {
1.190     albertel 1722: 	$env{'form.url'}='';
1.43      albertel 1723:     }
                   1724: 
1.190     albertel 1725:     my $id=$env{'form.id'};
1.43      albertel 1726:     if (($id) && ($udom)) {
                   1727: 	$uname=(&Apache::lonnet::idget($udom,$id))[1];
                   1728: 	if ($uname) {
                   1729: 	    $id='';
                   1730: 	} else {
                   1731: 	    $message=
1.314     albertel 1732: 		'<span class="LC_error">'.&mt("Unknown ID")." '$id' ".
                   1733: 		&mt('at domain')." '$udom'</span>";
1.43      albertel 1734: 	}
                   1735:     } else {
1.190     albertel 1736: 	$uname=$env{'form.uname'};
1.43      albertel 1737:     }
                   1738:     unless ($udom) { $uname=''; }
                   1739:     $uhome='';
                   1740:     if ($uname) {
                   1741: 	$uhome=&Apache::lonnet::homeserver($uname,$udom);
                   1742:         if ($uhome eq 'no_host') {
                   1743: 	    $message=
1.314     albertel 1744: 		'<span class="LC_error">'.&mt("Unknown user")." '$uname' ".
                   1745: 		&mt("at domain")." '$udom'</span>";
1.43      albertel 1746: 	    $uname='';
1.12      www      1747:         } else {
1.103     albertel 1748: 	    $csec=&Apache::lonnet::getsection($udom,$uname,
1.190     albertel 1749: 					      $env{'request.course.id'});
1.269     raeburn  1750:             
1.43      albertel 1751: 	    if ($csec eq '-1') {
1.314     albertel 1752: 		$message='<span class="LC_error">'.
1.133     www      1753: 		    &mt("User")." '$uname' ".&mt("at domain")." '$udom' ".
1.314     albertel 1754: 		    &mt("not in this course")."</span>";
1.43      albertel 1755: 		$uname='';
1.190     albertel 1756: 		$csec=$env{'form.csec'};
1.269     raeburn  1757:                 $cgroup=$env{'form.cgroup'};
1.43      albertel 1758: 	    } else {
                   1759: 		my %name=&Apache::lonnet::userenvironment($udom,$uname,
                   1760: 		      ('firstname','middlename','lastname','generation','id'));
1.133     www      1761: 		$message="\n<p>\n".&mt("Full Name").": ".
1.43      albertel 1762: 		    $name{'firstname'}.' '.$name{'middlename'}.' '
                   1763: 			.$name{'lastname'}.' '.$name{'generation'}.
1.336     albertel 1764: 			    "<br />\n".&mt('ID').": ".$name{'id'}.'<p>';
1.43      albertel 1765: 	    }
1.297     raeburn  1766:             @usersgroups = &Apache::lonnet::get_users_groups(
1.275     raeburn  1767:                                        $udom,$uname,$env{'request.course.id'});
1.297     raeburn  1768:             if (@usersgroups > 0) {
1.306     albertel 1769:                 unless (grep(/^\Q$cgroup\E$/,@usersgroups)) {
1.275     raeburn  1770:                     $cgroup = $usersgroups[0];
1.297     raeburn  1771:                 }
1.269     raeburn  1772:             }
1.12      www      1773:         }
1.43      albertel 1774:     }
1.2       www      1775: 
1.43      albertel 1776:     unless ($csec) { $csec=''; }
1.269     raeburn  1777:     unless ($cgroup) { $cgroup=''; }
1.12      www      1778: 
1.14      www      1779: # --------------------------------------------------------- Get all assessments
1.210     www      1780:     &extractResourceInformation(\@ids, \%typep,\%keyp, \%allparms, \%allparts, \%allmaps, 
                   1781: 				\%mapp, \%symbp,\%maptitles,\%uris,
                   1782: 				\%keyorder);
1.63      bowersj2 1783: 
1.57      albertel 1784:     $mapp{'0.0'} = '';
                   1785:     $symbp{'0.0'} = '';
1.99      albertel 1786: 
1.14      www      1787: # ---------------------------------------------------------- Anything to store?
1.190     albertel 1788:     if ($env{'form.pres_marker'}) {
1.205     www      1789:         my @markers=split(/\&\&\&/,$env{'form.pres_marker'});
                   1790:         my @values=split(/\&\&\&/,$env{'form.pres_value'});
                   1791:         my @types=split(/\&\&\&/,$env{'form.pres_type'});
                   1792: 	for (my $i=0;$i<=$#markers;$i++) {
                   1793: 	    $message.=&storeparm(split(/\&/,$markers[$i]),
                   1794: 				 $values[$i],
                   1795: 				 $types[$i],
1.269     raeburn  1796: 				 $uname,$udom,$csec,$cgroup);
1.205     www      1797: 	}
1.68      www      1798: # ---------------------------------------------------------------- Done storing
1.130     www      1799: 	$message.='<h3>'.&mt('Changes can take up to 10 minutes before being active for all students.').&Apache::loncommon::help_open_topic('Caching').'</h3>';
1.68      www      1800:     }
1.57      albertel 1801: #----------------------------------------------- if all selected, fill in array
1.209     www      1802:     if ($pscat[0] eq "all") {@pscat = (keys %allparms);}
                   1803:     if (!@pscat) { @pscat=('duedate','opendate','answerdate','weight','maxtries') }; 
1.57      albertel 1804:     if ($psprt[0] eq "all" || !@psprt) {@psprt = (keys %allparts);}
1.2       www      1805: # ------------------------------------------------------------------ Start page
1.63      bowersj2 1806: 
1.209     www      1807:     &startpage($r);
1.57      albertel 1808: 
1.44      albertel 1809:     foreach ('tolerance','date_default','date_start','date_end',
                   1810: 	     'date_interval','int','float','string') {
                   1811: 	$r->print('<input type="hidden" value="'.
1.378     albertel 1812: 		  &HTML::Entities::encode($env{'form.recent_'.$_},'"&<>').
                   1813: 		  '" name="recent_'.$_.'" />');
1.44      albertel 1814:     }
1.57      albertel 1815:                         
1.44      albertel 1816:     if (!$pssymb) {
1.209     www      1817:         $r->print('<table border="1"><tr><td>');
                   1818:         &levelmenu($r,\%alllevs,$parmlev);
1.128     albertel 1819: 	if ($parmlev ne 'general') {
1.209     www      1820:             $r->print('<td>');
                   1821: 	    &mapmenu($r,\%allmaps,$pschp,\%maptitles);
                   1822: 	    $r->print('</td>');
1.128     albertel 1823: 	}
1.209     www      1824:         $r->print('</td></tr></table>');
1.211     www      1825: 	&displaymenu($r,\%allparms,\%allparts,\@pscat,\@psprt,\%keyorder);
1.44      albertel 1826:     } else {
1.125     www      1827:         my ($map,$id,$resource)=&Apache::lonnet::decode_symb($pssymb);
1.312     albertel 1828: 	my $title = &Apache::lonnet::gettitle($pssymb);
                   1829:         $r->print(&mt('Specific Resource: [_1] ([_2])',$title,$resource).
                   1830:                   '<input type="hidden" value="'.$pssymb.'" name="symb" />'.
1.238     www      1831: 		  '<br /><label><b>'.&mt('Show all parts').': <input type="checkbox" name="psprt" value="all"'.
                   1832: 		  ($env{'form.psprt'}?' checked="checked"':'').' /></b></label><br />');
1.57      albertel 1833:     }
1.275     raeburn  1834:     &usermenu($r,$uname,$id,$udom,$csec,$cgroup,$parmlev,\@usersgroups);    
1.57      albertel 1835: 
1.210     www      1836:     $r->print('<p>'.$message.'</p>');
                   1837: 
1.209     www      1838:     $r->print('<br /><input type="submit" name="dis" value="'.&mt("Update Parameter Display").'" />');
1.57      albertel 1839: 
                   1840:     my @temp_pscat;
                   1841:     map {
                   1842:         my $cat = $_;
                   1843:         push(@temp_pscat, map { $_.'.'.$cat } @psprt);
                   1844:     } @pscat;
                   1845: 
                   1846:     @pscat = @temp_pscat;
                   1847: 
1.209     www      1848:     if (($env{'form.prevvisit'}) || ($pschp) || ($pssymb)) {
1.10      www      1849: # ----------------------------------------------------------------- Start Table
1.57      albertel 1850:         my @catmarker=map { tr|.|_|; 'parameter_'.$_; } @pscat;
1.190     albertel 1851:         my $csuname=$env{'user.name'};
                   1852:         my $csudom=$env{'user.domain'};
1.57      albertel 1853: 
1.203     www      1854:         if ($parmlev eq 'full') {
1.57      albertel 1855:            my $coursespan=$csec?8:5;
1.275     raeburn  1856:            my $userspan=3;
1.269     raeburn  1857:            if ($cgroup ne '') {
                   1858:               $coursespan += 3;
                   1859:            } 
                   1860:       
1.419     bisitz   1861:            $r->print('<p><table border="2">');
                   1862:            $r->print('<tr><td colspan="5"></td>');
                   1863:            $r->print('<th colspan="'.($coursespan).'">'.&mt('Any User').'</th>');
1.57      albertel 1864:            if ($uname) {
1.275     raeburn  1865:                if (@usersgroups > 1) {
                   1866:                    $userspan ++;
                   1867:                }
                   1868:                $r->print('<th colspan="'.$userspan.'" rowspan="2">');
1.130     www      1869:                $r->print(&mt("User")." $uname ".&mt('at Domain')." $udom</th>");
1.57      albertel 1870:            }
1.133     www      1871: 	   my %lt=&Apache::lonlocal::texthash(
                   1872: 				  'pie'    => "Parameter in Effect",
                   1873: 				  'csv'    => "Current Session Value",
                   1874:                                   'at'     => 'at',
                   1875:                                   'rl'     => "Resource Level",
                   1876: 				  'ic'     => 'in Course',
                   1877: 				  'aut'    => "Assessment URL and Title",
1.143     albertel 1878: 				  'type'   => 'Type',
1.133     www      1879: 				  'emof'   => "Enclosing Map or Folder",
1.143     albertel 1880: 				  'part'   => 'Part',
1.133     www      1881:                                   'pn'     => 'Parameter Name',
                   1882: 				  'def'    => 'default',
                   1883: 				  'femof'  => 'from Enclosing Map or Folder',
                   1884: 				  'gen'    => 'general',
                   1885: 				  'foremf' => 'for Enclosing Map or Folder',
                   1886: 				  'fr'     => 'for Resource'
                   1887: 					      );
1.57      albertel 1888:            $r->print(<<ENDTABLETWO);
1.419     bisitz   1889: <th rowspan="3">$lt{'pie'}</th>
                   1890: <th rowspan="3">$lt{'csv'}<br />($csuname $lt{'at'} $csudom)</th>
                   1891: </tr><tr><td colspan="5"></td><th colspan="2">$lt{'ic'}</th><th colspan="2">$lt{'rl'}</th>
                   1892: <th colspan="1">$lt{'ic'}</th>
1.182     albertel 1893: 
1.10      www      1894: ENDTABLETWO
1.57      albertel 1895:            if ($csec) {
1.419     bisitz   1896:                 $r->print('<th colspan="3">'.
1.269     raeburn  1897: 			  &mt("in Section")." $csec</th>");
                   1898:            }
                   1899:            if ($cgroup) {
1.419     bisitz   1900:                 $r->print('<th colspan="3">'.
1.269     raeburn  1901:                           &mt("in Group")." $cgroup</th>");
1.57      albertel 1902:            }
                   1903:            $r->print(<<ENDTABLEHEADFOUR);
1.133     www      1904: </tr><tr><th>$lt{'aut'}</th><th>$lt{'type'}</th>
                   1905: <th>$lt{'emof'}</th><th>$lt{'part'}</th><th>$lt{'pn'}</th>
1.192     albertel 1906: <th>$lt{'gen'}</th><th>$lt{'foremf'}</th>
                   1907: <th>$lt{'def'}</th><th>$lt{'femof'}</th><th>$lt{'fr'}</th>
1.10      www      1908: ENDTABLEHEADFOUR
1.57      albertel 1909: 
                   1910:            if ($csec) {
1.130     www      1911:                $r->print('<th>'.&mt('general').'</th><th>'.&mt('for Enclosing Map or Folder').'</th><th>'.&mt('for Resource').'</th>');
1.57      albertel 1912:            }
                   1913: 
1.269     raeburn  1914:            if ($cgroup) {
                   1915:                $r->print('<th>'.&mt('general').'</th><th>'.&mt('for Enclosing Map or Folder').'</th><th>'.&mt('for Resource').'</th>');
                   1916:            }
                   1917: 
1.57      albertel 1918:            if ($uname) {
1.275     raeburn  1919:                if (@usersgroups > 1) {
                   1920:                    $r->print('<th>'.&mt('Control by other group?').'</th>');
                   1921:                }
1.130     www      1922:                $r->print('<th>'.&mt('general').'</th><th>'.&mt('for Enclosing Map or Folder').'</th><th>'.&mt('for Resource').'</th>');
1.57      albertel 1923:            }
                   1924: 
                   1925:            $r->print('</tr>');
                   1926: 
                   1927:            my $defbgone='';
                   1928:            my $defbgtwo='';
1.269     raeburn  1929:            my $defbgthree = '';
1.57      albertel 1930: 
                   1931:            foreach (@ids) {
                   1932: 
                   1933:                 my $rid=$_;
                   1934:                 my ($inmapid)=($rid=~/\.(\d+)$/);
                   1935: 
1.152     albertel 1936:                 if ((!$pssymb && 
                   1937: 		     (($pschp eq 'all') || ($allmaps{$pschp} eq $mapp{$rid})))
                   1938: 		    ||
                   1939: 		    ($pssymb && $pssymb eq $symbp{$rid})) {
1.4       www      1940: # ------------------------------------------------------ Entry for one resource
1.419     bisitz   1941:                     if ($defbgone eq '#E0E099') {
                   1942:                         $defbgone='#E0E0DD';
1.57      albertel 1943:                     } else {
1.419     bisitz   1944:                         $defbgone='#E0E099';
1.57      albertel 1945:                     }
1.419     bisitz   1946:                     if ($defbgtwo eq '#FFFF99') {
                   1947:                         $defbgtwo='#FFFFDD';
1.57      albertel 1948:                     } else {
1.419     bisitz   1949:                         $defbgtwo='#FFFF99';
1.57      albertel 1950:                     }
1.419     bisitz   1951:                     if ($defbgthree eq '#FFBB99') {
                   1952:                         $defbgthree='#FFBBDD';
1.269     raeburn  1953:                     } else {
1.419     bisitz   1954:                         $defbgthree='#FFBB99';
1.269     raeburn  1955:                     }
                   1956: 
1.57      albertel 1957:                     my $thistitle='';
                   1958:                     my %name=   ();
                   1959:                     undef %name;
                   1960:                     my %part=   ();
                   1961:                     my %display=();
                   1962:                     my %type=   ();
                   1963:                     my %default=();
1.196     www      1964:                     my $uri=&Apache::lonnet::declutter($uris{$rid});
1.57      albertel 1965: 
1.210     www      1966:                     foreach (&keysplit($keyp{$rid})) {
1.57      albertel 1967:                         my $tempkeyp = $_;
                   1968:                         if (grep $_ eq $tempkeyp, @catmarker) {
                   1969:                           $part{$_}=&Apache::lonnet::metadata($uri,$_.'.part');
                   1970:                           $name{$_}=&Apache::lonnet::metadata($uri,$_.'.name');
                   1971:                           $display{$_}=&Apache::lonnet::metadata($uri,$_.'.display');
                   1972:                           unless ($display{$_}) { $display{$_}=''; }
                   1973:                           $display{$_}.=' ('.$name{$_}.')';
                   1974:                           $default{$_}=&Apache::lonnet::metadata($uri,$_);
                   1975:                           $type{$_}=&Apache::lonnet::metadata($uri,$_.'.type');
                   1976:                           $thistitle=&Apache::lonnet::metadata($uri,$_.'.title');
                   1977:                         }
                   1978:                     }
                   1979:                     my $totalparms=scalar keys %name;
                   1980:                     if ($totalparms>0) {
                   1981:                         my $firstrow=1;
1.274     albertel 1982: 			my $title=&Apache::lonnet::gettitle($symbp{$rid});
1.419     bisitz   1983:                         $r->print('<tr><td style="background-color:'.$defbgone.';"'.
1.57      albertel 1984:                              ' rowspan='.$totalparms.
1.419     bisitz   1985:                              '><tt><font size="-1">'.
1.57      albertel 1986:                              join(' / ',split(/\//,$uri)).
                   1987:                              '</font></tt><p><b>'.
1.154     albertel 1988:                              "<a href=\"javascript:openWindow('".
1.274     albertel 1989: 				  &Apache::lonnet::clutter($uri).'?symb='.
1.308     www      1990: 				  &escape($symbp{$rid}).
1.336     albertel 1991:                              "', 'metadatafile', '450', '500', 'no', 'yes');\"".
                   1992:                              " target=\"_self\">$title");
1.57      albertel 1993: 
                   1994:                         if ($thistitle) {
                   1995:                             $r->print(' ('.$thistitle.')');
                   1996:                         }
                   1997:                         $r->print('</a></b></td>');
1.419     bisitz   1998:                         $r->print('<td style="background-color:'.$defbgtwo.';"'.
1.57      albertel 1999:                                       ' rowspan='.$totalparms.'>'.$typep{$rid}.
                   2000:                                       '</td>');
                   2001: 
1.419     bisitz   2002:                         $r->print('<td style="background-color:'.$defbgone.';"'.
1.57      albertel 2003:                                       ' rowspan='.$totalparms.
1.238     www      2004:                                       '>'.$maptitles{$mapp{$rid}}.'</td>');
1.57      albertel 2005: 
1.236     albertel 2006:                         foreach (&keysinorder_bytype(\%name,\%keyorder)) {
1.57      albertel 2007:                             unless ($firstrow) {
                   2008:                                 $r->print('<tr>');
                   2009:                             } else {
                   2010:                                 undef $firstrow;
                   2011:                             }
1.201     www      2012:                             &print_row($r,$_,\%part,\%name,\%symbp,$rid,\%default,
1.57      albertel 2013:                                        \%type,\%display,$defbgone,$defbgtwo,
1.269     raeburn  2014:                                        $defbgthree,$parmlev,$uname,$udom,$csec,
1.275     raeburn  2015:                                                             $cgroup,\@usersgroups);
1.57      albertel 2016:                         }
                   2017:                     }
                   2018:                 }
                   2019:             } # end foreach ids
1.43      albertel 2020: # -------------------------------------------------- End entry for one resource
1.57      albertel 2021:             $r->print('</table>');
1.203     www      2022:         } # end of  full
1.57      albertel 2023: #--------------------------------------------------- Entry for parm level map
                   2024:         if ($parmlev eq 'map') {
1.419     bisitz   2025:             my $defbgone = '#E0E099';
                   2026:             my $defbgtwo = '#FFFF99';
                   2027:             my $defbgthree = '#FFBB99';
1.57      albertel 2028: 
                   2029:             my %maplist;
                   2030: 
                   2031:             if ($pschp eq 'all') {
                   2032:                 %maplist = %allmaps; 
                   2033:             } else {
                   2034:                 %maplist = ($pschp => $mapp{$pschp});
                   2035:             }
                   2036: 
                   2037: #-------------------------------------------- for each map, gather information
                   2038:             my $mapid;
1.60      albertel 2039: 	    foreach $mapid (sort {$maplist{$a} cmp $maplist{$b}} keys %maplist) {
                   2040:                 my $maptitle = $maplist{$mapid};
1.57      albertel 2041: 
                   2042: #-----------------------  loop through ids and get all parameter types for map
                   2043: #-----------------------------------------          and associated information
                   2044:                 my %name = ();
                   2045:                 my %part = ();
                   2046:                 my %display = ();
                   2047:                 my %type = ();
                   2048:                 my %default = ();
                   2049:                 my $map = 0;
                   2050: 
                   2051: #		$r->print("Catmarker: @catmarker<br />\n");
                   2052:                
                   2053:                 foreach (@ids) {
                   2054:                   ($map)=(/([\d]*?)\./);
                   2055:                   my $rid = $_;
                   2056:         
                   2057: #                  $r->print("$mapid:$map:   $rid <br /> \n");
                   2058: 
                   2059:                   if ($map eq $mapid) {
1.196     www      2060:                     my $uri=&Apache::lonnet::declutter($uris{$rid});
1.57      albertel 2061: #                    $r->print("Keys: $keyp{$rid} <br />\n");
                   2062: 
                   2063: #--------------------------------------------------------------------
                   2064: # @catmarker contains list of all possible parameters including part #s
                   2065: # $fullkeyp contains the full part/id # for the extraction of proper parameters
                   2066: # $tempkeyp contains part 0 only (no ids - ie, subparts)
                   2067: # When storing information, store as part 0
                   2068: # When requesting information, request from full part
                   2069: #-------------------------------------------------------------------
1.210     www      2070:                     foreach (&keysplit($keyp{$rid})) {
1.57      albertel 2071:                       my $tempkeyp = $_;
                   2072:                       my $fullkeyp = $tempkeyp;
1.73      albertel 2073:                       $tempkeyp =~ s/_\w+_/_0_/;
1.57      albertel 2074:                       
                   2075:                       if ((grep $_ eq $fullkeyp, @catmarker) &&(!$name{$tempkeyp})) {
                   2076:                         $part{$tempkeyp}="0";
                   2077:                         $name{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.name');
                   2078:                         $display{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.display');
                   2079:                         unless ($display{$tempkeyp}) { $display{$tempkeyp}=''; }
                   2080:                         $display{$tempkeyp}.=' ('.$name{$tempkeyp}.')';
1.73      albertel 2081:                         $display{$tempkeyp} =~ s/_\w+_/_0_/;
1.57      albertel 2082:                         $default{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp);
                   2083:                         $type{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.type');
                   2084:                       }
                   2085:                     } # end loop through keys
                   2086:                   }
                   2087:                 } # end loop through ids
                   2088:                                  
                   2089: #---------------------------------------------------- print header information
1.133     www      2090:                 my $foldermap=&mt($maptitle=~/^uploaded/?'Folder':'Map');
1.82      www      2091:                 my $showtitle=$maptitles{$maptitle}.($maptitle!~/^uploaded/?' ['.$maptitle.']':'');
1.401     bisitz   2092:                 my $tmp="";
1.57      albertel 2093:                 if ($uname) {
1.267     albertel 2094: 		    my $person=&Apache::loncommon::plainname($uname,$udom);
1.401     bisitz   2095:                     $tmp.=&mt("User")." <font color=\"red\"><i>$uname \($person\) </i></font> ".
                   2096:                         &mt('in')." \n";
1.57      albertel 2097:                 } else {
1.401     bisitz   2098:                     $tmp.="<font color=\"red\"><i>".&mt('all').'</i></font> '.&mt('users in')." \n";
1.57      albertel 2099:                 }
1.269     raeburn  2100:                 if ($cgroup) {
1.401     bisitz   2101:                     $tmp.=&mt("Group")." <font color=\"red\"><i>$cgroup".
                   2102:                               "</i></font> ".&mt('of')." \n";
1.269     raeburn  2103:                     $csec = '';
                   2104:                 } elsif ($csec) {
1.401     bisitz   2105:                     $tmp.=&mt("Section")." <font color=\"red\"><i>$csec".
                   2106:                               "</i></font> ".&mt('of')." \n";
1.269     raeburn  2107:                 }
1.401     bisitz   2108:                 $r->print('<div align="center"><h4>'
                   2109:                          .&mt('Set Defaults for All Resources in [_1]Specifically for [_2][_3]'
1.404     bisitz   2110:                              ,$foldermap.'<br /><font color="red"><i>'.$showtitle.'</i></font><br />'
1.401     bisitz   2111:                              ,$tmp
                   2112:                              ,'<font color="red"><i>'.$coursename.'</i></font>'
                   2113:                              )
                   2114:                          ."<br /></h4>\n"
                   2115:                          );
1.57      albertel 2116: #---------------------------------------------------------------- print table
1.419     bisitz   2117:                 $r->print('<p>'.&Apache::loncommon::start_data_table()
                   2118:                          .&Apache::loncommon::start_data_table_header_row()
                   2119:                          .'<th>'.&mt('Parameter Name').'</th>'
                   2120:                          .'<th>'.&mt('Default Value').'</th>'
                   2121:                          .'<th>'.&mt('Parameter in Effect').'</th>'
                   2122:                          .&Apache::loncommon::end_data_table_header_row()
                   2123:                 );
1.57      albertel 2124: 
1.210     www      2125: 	        foreach (&keysinorder(\%name,\%keyorder)) {
1.419     bisitz   2126:                     $r->print(&Apache::loncommon::start_data_table_row());
1.201     www      2127:                     &print_row($r,$_,\%part,\%name,\%symbp,$mapid,\%default,
1.269     raeburn  2128:                            \%type,\%display,$defbgone,$defbgtwo,$defbgthree,
                   2129:                            $parmlev,$uname,$udom,$csec,$cgroup);
1.57      albertel 2130:                 }
1.419     bisitz   2131:                 $r->print(&Apache::loncommon::end_data_table().'</p>');
1.57      albertel 2132:             } # end each map
                   2133:         } # end of $parmlev eq map
                   2134: #--------------------------------- Entry for parm level general (Course level)
                   2135:         if ($parmlev eq 'general') {
1.419     bisitz   2136:             my $defbgone = '#E0E099';
                   2137:             my $defbgtwo = '#FFFF99';
                   2138:             my $defbgthree = '#FFBB99';
1.57      albertel 2139: 
                   2140: #-------------------------------------------- for each map, gather information
                   2141:             my $mapid="0.0";
                   2142: #-----------------------  loop through ids and get all parameter types for map
                   2143: #-----------------------------------------          and associated information
                   2144:             my %name = ();
                   2145:             my %part = ();
                   2146:             my %display = ();
                   2147:             my %type = ();
                   2148:             my %default = ();
                   2149:                
                   2150:             foreach (@ids) {
                   2151:                 my $rid = $_;
                   2152:         
1.196     www      2153:                 my $uri=&Apache::lonnet::declutter($uris{$rid});
1.57      albertel 2154: 
                   2155: #--------------------------------------------------------------------
                   2156: # @catmarker contains list of all possible parameters including part #s
                   2157: # $fullkeyp contains the full part/id # for the extraction of proper parameters
                   2158: # $tempkeyp contains part 0 only (no ids - ie, subparts)
                   2159: # When storing information, store as part 0
                   2160: # When requesting information, request from full part
                   2161: #-------------------------------------------------------------------
1.210     www      2162:                 foreach (&keysplit($keyp{$rid})) {
1.57      albertel 2163:                   my $tempkeyp = $_;
                   2164:                   my $fullkeyp = $tempkeyp;
1.73      albertel 2165:                   $tempkeyp =~ s/_\w+_/_0_/;
1.57      albertel 2166:                   if ((grep $_ eq $fullkeyp, @catmarker) &&(!$name{$tempkeyp})) {
                   2167:                     $part{$tempkeyp}="0";
                   2168:                     $name{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.name');
                   2169:                     $display{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.display');
                   2170:                     unless ($display{$tempkeyp}) { $display{$tempkeyp}=''; }
                   2171:                     $display{$tempkeyp}.=' ('.$name{$tempkeyp}.')';
1.73      albertel 2172:                     $display{$tempkeyp} =~ s/_\w+_/_0_/;
1.57      albertel 2173:                     $default{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp);
                   2174:                     $type{$tempkeyp}=&Apache::lonnet::metadata($uri,$fullkeyp.'.type');
                   2175:                   }
                   2176:                 } # end loop through keys
                   2177:             } # end loop through ids
                   2178:                                  
                   2179: #---------------------------------------------------- print header information
1.133     www      2180: 	    my $setdef=&mt("Set Defaults for All Resources in Course");
1.57      albertel 2181:             $r->print(<<ENDMAPONE);
1.419     bisitz   2182: <center>
                   2183: <h4>$setdef
1.135     albertel 2184: <font color="red"><i>$coursename</i></font><br />
1.57      albertel 2185: ENDMAPONE
                   2186:             if ($uname) {
1.267     albertel 2187: 		my $person=&Apache::loncommon::plainname($uname,$udom);
1.135     albertel 2188:                 $r->print(" ".&mt("User")."<font color=\"red\"> <i>$uname \($person\) </i></font> \n");
1.57      albertel 2189:             } else {
1.135     albertel 2190:                 $r->print("<i><font color=\"red\"> ".&mt("ALL")."</i> ".&mt("USERS")."</font> \n");
1.57      albertel 2191:             }
                   2192:             
1.135     albertel 2193:             if ($csec) {$r->print(&mt("Section")."<font color=\"red\"> <i>$csec</i></font>\n")};
1.306     albertel 2194:             if ($cgroup) {$r->print(&mt("Group")."<font color=\"red\"> <i>$cgroup</i></font>\n")};
1.135     albertel 2195:             $r->print("</h4>\n");
1.57      albertel 2196: #---------------------------------------------------------------- print table
1.419     bisitz   2197:             $r->print('<p>'.&Apache::loncommon::start_data_table()
                   2198:                      .&Apache::loncommon::start_data_table_header_row()
                   2199:                      .'<th>'.&mt('Parameter Name').'</th>'
                   2200:                      .'<th>'.&mt('Default Value').'</th>'
                   2201:                      .'<th>'.&mt('Parameter in Effect').'</th>'
                   2202:                      .&Apache::loncommon::end_data_table_header_row()
                   2203:             );
1.57      albertel 2204: 
1.210     www      2205: 	    foreach (&keysinorder(\%name,\%keyorder)) {
1.419     bisitz   2206:                 $r->print(&Apache::loncommon::start_data_table_row());
1.201     www      2207:                 &print_row($r,$_,\%part,\%name,\%symbp,$mapid,\%default,
1.269     raeburn  2208:                        \%type,\%display,$defbgone,$defbgtwo,$defbgthree,
                   2209:                                    $parmlev,$uname,$udom,$csec,$cgroup);
1.57      albertel 2210:             }
1.419     bisitz   2211:             $r->print(&Apache::loncommon::end_data_table()
                   2212:                      .'</p>'
                   2213:                      .'</center>'
                   2214:             );
1.57      albertel 2215:         } # end of $parmlev eq general
1.43      albertel 2216:     }
1.280     albertel 2217:     $r->print('</form>'.&Apache::loncommon::end_page());
1.57      albertel 2218: } # end sub assessparms
1.30      www      2219: 
1.59      matthew  2220: 
                   2221: 
1.30      www      2222: sub crsenv {
                   2223:     my $r=shift;
                   2224:     my $setoutput='';
1.280     albertel 2225: 
1.414     droeschl 2226:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=crsenv',
                   2227: 	text=>"Course Environment"});
1.298     albertel 2228:     my $breadcrumbs = 
                   2229: 	&Apache::lonhtmlcommon::breadcrumbs('Edit Course Environment');
1.190     albertel 2230:     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   2231:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
1.105     matthew  2232: 
1.392     raeburn  2233:     my (%crsinfo,$chome);
                   2234: 
1.105     matthew  2235:     #
                   2236:     # Go through list of changes
1.190     albertel 2237:     foreach (keys %env) {
1.105     matthew  2238:         next if ($_!~/^form\.(.+)\_setparmval$/);
                   2239:         my $name  = $1;
1.190     albertel 2240:         my $value = $env{'form.'.$name.'_value'};
1.105     matthew  2241:         if ($name eq 'newp') {
1.190     albertel 2242:             $name = $env{'form.newp_name'};
1.105     matthew  2243:         }
                   2244:         if ($name eq 'url') {
                   2245:             $value=~s/^\/res\///;
                   2246:             my $bkuptime=time;
                   2247:             my @tmp = &Apache::lonnet::get
                   2248:                 ('environment',['url'],$dom,$crs);
1.130     www      2249:             $setoutput.=&mt('Backing up previous URL').': '.
1.105     matthew  2250:                 &Apache::lonnet::put
                   2251:                 ('environment',
                   2252:                  {'top level map backup '.$bkuptime => $tmp[1] },
                   2253:                  $dom,$crs).
1.336     albertel 2254:                      '<br />';
1.105     matthew  2255:         }
                   2256:         #
                   2257:         # Deal with modified default spreadsheets
                   2258:         if ($name =~ /^spreadsheet_default_(classcalc|
                   2259:                                             studentcalc|
                   2260:                                             assesscalc)$/x) {
                   2261:             my $sheettype = $1; 
                   2262:             if ($sheettype eq 'classcalc') {
                   2263:                 # no need to do anything since viewing the sheet will
                   2264:                 # cause it to be updated. 
                   2265:             } elsif ($sheettype eq 'studentcalc') {
                   2266:                 # expire all the student spreadsheets
                   2267:                 &Apache::lonnet::expirespread('','','studentcalc');
                   2268:             } else {
                   2269:                 # expire all the assessment spreadsheets 
                   2270:                 #    this includes non-default spreadsheets, but better to
                   2271:                 #    be safe than sorry.
                   2272:                 &Apache::lonnet::expirespread('','','assesscalc');
                   2273:                 # expire all the student spreadsheets
                   2274:                 &Apache::lonnet::expirespread('','','studentcalc');
1.30      www      2275:             }
1.105     matthew  2276:         }
                   2277:         #
1.107     matthew  2278:         # Deal with the enrollment dates
                   2279:         if ($name =~ /^default_enrollment_(start|end)_date$/) {
                   2280:             $value=&Apache::lonhtmlcommon::get_date_from_form($name.'_value');
                   2281:         }
1.364     albertel 2282: 	#
                   2283:         # Deal with the emails
                   2284:         if ($name =~ /\.email$/) {
1.371     albertel 2285: 	    foreach my $specifier (split(',',$value)) {
                   2286: 		my ($user,$sections_or_groups)=
                   2287: 		    ($specifier=~/^([^\(]+)\(([^\)]+)\)/);
                   2288: 		if (!$sections_or_groups) {
                   2289: 		    $user = $specifier;
                   2290: 		}
                   2291: 		my ($name,$domain) = split(':',$user);
                   2292: 		if (!defined($user) || !defined($domain)) {
                   2293: 		    $setoutput.= '<br /> <span class="LC_error">'.
                   2294: 			&mt("Invalid email address specified, address must be of the form username:domain what was specified was ([_1])",$user).
                   2295: 			'</span>';
                   2296: 		    undef($value);
                   2297: 		} elsif (&Apache::lonnet::homeserver($user,$domain) eq 'no_host') {
                   2298: 		    $setoutput.= '<br /> <span class="LC_error">'.
                   2299: 			&mt("Invalid email address specified, user [_1] is unknown.",$name).
                   2300: 			'</span>';
                   2301: 		    undef($value);
                   2302: 		}
1.364     albertel 2303: 	    }
                   2304:         }
1.178     raeburn  2305:         # Get existing cloners
                   2306:         my @oldcloner = ();
                   2307:         if ($name eq 'cloners') {
                   2308:             my %clonenames=&Apache::lonnet::dump('environment',$dom,$crs,'cloners');
                   2309:             if ($clonenames{'cloners'} =~ /,/) {
                   2310:                 @oldcloner = split/,/,$clonenames{'cloners'};
                   2311:             } else {
                   2312:                 $oldcloner[0] = $clonenames{'cloners'};
                   2313:             }
                   2314:         }
1.107     matthew  2315:         #
1.105     matthew  2316:         # Let the user know we made the changes
1.153     albertel 2317:         if ($name && defined($value)) {
1.379     raeburn  2318:             my %failed_cloners;
1.178     raeburn  2319:             if ($name eq 'cloners') {
1.239     raeburn  2320:                 $value =~ s/\s//g;
1.178     raeburn  2321:                 $value =~ s/^,//;
                   2322:                 $value =~ s/,$//;
1.239     raeburn  2323:                 # check requested clones are valid users.
1.379     raeburn  2324:                 %failed_cloners = &check_cloners(\$value,\@oldcloner);
1.178     raeburn  2325:             }
1.105     matthew  2326:             my $put_result = &Apache::lonnet::put('environment',
                   2327:                                                   {$name=>$value},$dom,$crs);
                   2328:             if ($put_result eq 'ok') {
1.392     raeburn  2329:                 $setoutput.=&mt('Set').' <b>'.$name.'</b> '.&mt('to').' <b>';
                   2330:                 if ($name =~ /^default_enrollment_(start|end)_date$/) {
                   2331:                     $setoutput .= &Apache::lonlocal::locallocaltime($value);
1.406     raeburn  2332:                 } elsif ($name eq 'categories') {
                   2333:                     $setoutput .= $env{'form.categories_display'};
1.392     raeburn  2334:                 } else {
                   2335:                     $setoutput .= $value;
                   2336:                 }
                   2337:                 $setoutput .= '</b>.<br />';
1.178     raeburn  2338:                 if ($name eq 'cloners') {
                   2339:                     &change_clone($value,\@oldcloner);
                   2340:                 }
1.382     raeburn  2341:                 # Update environment and nohist_courseids.db
1.402     raeburn  2342:                 if (($name eq 'description') || ($name eq 'cloners') || 
1.403     raeburn  2343:                     ($name eq 'hidefromcat') || ($name eq 'categories')) {
1.392     raeburn  2344:                     if ($chome eq '') {
                   2345:                         %crsinfo =
                   2346:                             &Apache::lonnet::courseiddump($dom,'.',1,'.','.',
1.403     raeburn  2347:                                                  $crs,undef,undef,'.');
1.392     raeburn  2348:                         $chome = &Apache::lonnet::homeserver($crs,$dom);
                   2349:                     }
                   2350:                 }
1.179     raeburn  2351:                 if ($name eq 'description' && defined($value)) {
1.393     raeburn  2352:                     &Apache::lonnet::appenv({'course.'.$env{'request.course.id'}.'.description' => $value});
1.382     raeburn  2353:                     if (ref($crsinfo{$env{'request.course.id'}}) eq 'HASH') {
                   2354:                         $crsinfo{$env{'request.course.id'}}{'description'} = $value; 
1.392     raeburn  2355:                         my $putresult =
                   2356:                             &Apache::lonnet::courseidput($dom,\%crsinfo,
                   2357:                                                          $chome,'notime');
                   2358:                     }
                   2359:                 }
1.403     raeburn  2360:                 if (($name eq 'cloners') || ($name eq 'hidefromcat') || ($name eq 'categories')) {
1.402     raeburn  2361:                     if (ref($crsinfo{$env{'request.course.id'}}) eq 'HASH') {
1.403     raeburn  2362:                         &Apache::lonnet::appenv({'course.'.$env{'request.course.id'}.'.'.$name => $value});
                   2363:                         $crsinfo{$env{'request.course.id'}}{$name} = $value;
1.402     raeburn  2364:                         my $putresult =
                   2365:                             &Apache::lonnet::courseidput($dom,\%crsinfo,
                   2366:                                                          $chome,'notime');
                   2367:                     }
                   2368:                 }
1.105     matthew  2369:             } else {
1.130     www      2370:                 $setoutput.=&mt('Unable to set').' <b>'.$name.'</b> '.&mt('to').
                   2371: 		    ' <b>'.$value.'</b> '.&mt('due to').' '.$put_result.'.<br />';
1.30      www      2372:             }
1.379     raeburn  2373:             if (($name eq 'cloners') && (keys(%failed_cloners) > 0)) {
                   2374:                 $setoutput.= &mt('Unable to include').': ';
                   2375:                 my @fails;
                   2376:                 my $num = 0;
                   2377:                 if (defined($failed_cloners{'format'})) {
                   2378:                     $fails[$num] .= '<b>'.$failed_cloners{'format'}.
                   2379:                                   '</b>, '.&mt('reason').' - '.
                   2380:                                   &mt('Invalid format');
                   2381:                     $num ++;
                   2382:                 }
                   2383:                 if (defined($failed_cloners{'domain'})) {
                   2384:                     $fails[$num] .= '<b>'.$failed_cloners{'domain'}.
                   2385:                                   '</b>, '.&mt('reason').' - '.
                   2386:                                   &mt('Domain does not exist');
                   2387:                     $num ++;
                   2388:                 }
                   2389:                 if (defined($failed_cloners{'newuser'})) {
                   2390:                     $fails[$num] .= '<b>'.$failed_cloners{'newuser'}.                                   '</b>, '.&mt('reason').' - '.
                   2391:                         &mt('LON-CAPA user(s) do(es) not exist.').
                   2392:                         '.<br />'.&mt('Please ').
                   2393:                         ' <a href="/adm/createuser">'.
                   2394:                         &mt('add the user(s)').'</a>, '.
                   2395:                         &mt('and then return to the ').
                   2396:                         '<a href="/adm/parmset?action=crsenv">'.
                   2397:                         &mt('Course Parameters page').'</a> '.
                   2398:                         &mt('to add the new user(s) to the list of possible cloners');
                   2399:                 }
                   2400:                 $setoutput .= join(';&nbsp;&nbsp;',@fails).'.<br />';
1.239     raeburn  2401:             }
1.30      www      2402:         }
1.38      harris41 2403:     }
1.315     albertel 2404: 
                   2405:     my $start_table     =&Apache::loncommon::start_data_table();
                   2406:     my $start_header_row=&Apache::loncommon::start_data_table_header_row();
                   2407:     my $end_header_row  =&Apache::loncommon::end_data_table_header_row();
1.108     www      2408: # ------------------------- Re-init course environment entries for this session
                   2409: 
1.302     albertel 2410:     &Apache::lonnet::coursedescription($env{'request.course.id'},
1.296     albertel 2411: 				       {'freshen_cache' => 1});
1.105     matthew  2412: 
1.30      www      2413: # -------------------------------------------------------- Get parameters again
1.45      matthew  2414: 
                   2415:     my %values=&Apache::lonnet::dump('environment',$dom,$crs);
1.140     sakharuk 2416:     my $SelectStyleFile=&mt('Select Style File');
1.141     sakharuk 2417:     my $SelectSpreadsheetFile=&mt('Select Spreadsheet File');
1.30      www      2418:     my $output='';
1.403     raeburn  2419:     my $can_categorize;
1.45      matthew  2420:     if (! exists($values{'con_lost'})) {
1.30      www      2421:         my %descriptions=
1.395     bisitz   2422: 	    ('url'            => '<b>'.&mt('Top Level Map').'</b><br />'.
1.46      matthew  2423:                                  '<a href="javascript:openbrowser'.
1.47      matthew  2424:                                  "('envform','url','sequence')\">".
1.314     albertel 2425:                                  &mt('Select Map').'</a><br /><span class="LC_warning"> '.
1.395     bisitz   2426:                                  &mt('Modification may make assessment data inaccessible!').
1.314     albertel 2427:                                  '</span>',
1.140     sakharuk 2428:              'description'    => '<b>'.&mt('Course Description').'</b>',
1.158     sakharuk 2429:              'courseid'       => '<b>'.&mt('Course ID or number').
1.140     sakharuk 2430:                                  '</b><br />'.
1.395     bisitz   2431:                                  '('.&mt('internal, optional').')',
                   2432:              'cloners'        => '<b>'.&mt('Users allowed to clone course').'</b><br />'
                   2433:                                 .'("<tt>'.&mt('user:domain,user:domain,*:domain').'</tt>")<br />'
                   2434:                                 .&mt('Users with active Course Coordinator role in this course are permitted to clone and need not be included.').'<br />'
                   2435:                                 .&mt('Use [_1] to allow course to be cloned by anyone in the specified domain.','"<tt>*:domain</tt>"').'<br />'
                   2436:                                 .&mt('Use [_1] to allow unrestricted cloning in all domains.','"<tt>*</tt>"'),
1.150     www      2437:              'grading'        => '<b>'.&mt('Grading').'</b><br />'.
1.395     bisitz   2438:                                  &mt('[_1], [_2], or [_3]','"<tt>standard</tt>"','"<tt>external</tt>"','"<tt>spreadsheet</tt>"').&Apache::loncommon::help_open_topic('GradingOptions'),
                   2439: 	     'task_grading'   => '<b>'.&mt('Bridge Task Grading').'</b><br />'
                   2440:                                 .&mt('Instructors and TAs in sections, when grading bridge tasks, should be allowed to grade other sections.').'<br />'
                   2441:                                 .'('.&mt('[_1]: they are allowed (this is the default). [_2]: no, they can only grade their own section.','"<tt>any</tt>"','"<tt>section</tt>"').')',
                   2442:              'default_xml_style' => '<b>'.&mt('Default XML Style File').'</b><br />'.
1.52      www      2443:                     '<a href="javascript:openbrowser'.
                   2444:                     "('envform','default_xml_style'".
1.336     albertel 2445:                     ",'sty')\">$SelectStyleFile</a><br />",
1.395     bisitz   2446:              'question.email' => '<b>'.&mt('Feedback Addresses for Resource Content Question').'</b><br />'
                   2447:                                 .'("<tt>'.&mt('user:domain,user:domain(section;section;...;*;...),...').'</tt>")',
                   2448:              'question.email.text' => '<b>'.&mt('Custom Text for Resource Content Question Option in Feedback').'</b>',
                   2449:              'comment.email'  => '<b>'.&mt('Feedback Addresses for Course Content Comments').'</b><br />'
                   2450:                                 .'("<tt>'.&mt('user:domain,user:domain(section;section;...;*;...),...').'</tt>")',
                   2451:              'comment.email.text' => '<b>'.&mt('Custom Text for Course Content Option in Feedback').'</b>',
                   2452:              'policy.email'   => '<b>'.&mt('Feedback Addresses for Course Policy').'</b><br />'
                   2453:                                  .'("<tt>'.&mt('user:domain,user:domain(section;section;...;*;...),...').'</tt>")',
                   2454:              'policy.email.text' => '<b>'.&mt('Custom Text for Course Policy Option in Feedback').'</b>',
                   2455:              'hideemptyrows'  => '<b>'.&mt('Hide Empty Rows in Spreadsheets').'</b><br />'
                   2456:                                 .'('.&mt('[_1] for default hiding','"<tt>yes</tt>"').')',
                   2457:              'pageseparators'  => '<b>'.&mt('Visibly Separate Items on Pages').'</b><br />'
                   2458:                                  .'('.&mt('[_1] for visible separation.','"<tt>yes</tt>"').' '
                   2459:                                  .&mt('Changes will not show until next login.').')',
                   2460:              'student_classlist_view' => '<b>'.&mt('Allow students to view classlist.').'</b><br />'
                   2461:                                         .'('.&mt('[_1]: students can view all sections. [_2]: students can only view their own section. blank or [_3] prevents student view.','"<tt>all</tt>"','"<tt>section</tt>"','"<tt>disabled</tt>"').')',
                   2462:              'student_classlist_portfiles' => '<b>'.&mt('Include link to accessible portfolio files').'</b><br />'
1.420     bisitz   2463:                                              .'('.&mt("[_1] for link to each a listing of each student's files.",'"<tt>yes</tt>"').')',
1.395     bisitz   2464:              'student_classlist_opt_in' => '<b>'.&mt("Student's agreement needed for listing in student-viewable roster").'</b><br />'
                   2465:                                            .'('.&mt('[_1] to require students to opt-in to listing in the roster (on the roster page).','"<tt>yes</tt>"').')',
                   2466:              'plc.roles.denied'=> '<b>'.&mt('Disallow live chatroom use for Roles').'</b><br />'
                   2467:                                  .'('.&mt('[_1]: student, [_2]: TA, [_3]: instructor','"<tt>st</tt>"','"<tt>ta</tt>"','"<tt>in</tt>"').')<br />'
                   2468:                                  .'("<tt>'.&mt('role,role,...').'</tt>") '
                   2469: 	                         .Apache::loncommon::help_open_topic("Course_Disable_Discussion"),
1.118     matthew  2470:              'plc.users.denied' => 
1.141     sakharuk 2471:                           '<b>'.&mt('Disallow live chatroom use for Users').'</b><br />'.
1.395     bisitz   2472:                                   '("<tt>'.&mt('user:domain,user:domain,...').'</tt>")',
1.118     matthew  2473: 
1.395     bisitz   2474:              'pch.roles.denied'=> '<b>'.&mt('Disallow Resource Discussion for Roles').'</b><br />'
                   2475:                                  .'('.&mt('[_1]: student, [_2]: TA, [_3]: instructor','"<tt>st</tt>"','"<tt>ta</tt>"','"<tt>in</tt>"')
                   2476:                                  .'("<tt>'.&mt('role,role,...').'</tt>") '
                   2477:                                  .Apache::loncommon::help_open_topic("Course_Disable_Discussion"),
1.53      www      2478:              'pch.users.denied' => 
1.141     sakharuk 2479:                           '<b>'.&mt('Disallow Resource Discussion for Users').'</b><br />'.
1.395     bisitz   2480:                                  '("<tt>'.&mt('user:domain,user:domain,...').'</tt>")',
1.49      matthew  2481:              'spreadsheet_default_classcalc' 
1.141     sakharuk 2482:                  => '<b>'.&mt('Default Course Spreadsheet').'</b> '.
1.50      matthew  2483:                     '<a href="javascript:openbrowser'.
                   2484:                     "('envform','spreadsheet_default_classcalc'".
1.141     sakharuk 2485:                     ",'spreadsheet')\">$SelectSpreadsheetFile</a><br />",
1.49      matthew  2486:              'spreadsheet_default_studentcalc' 
1.395     bisitz   2487:                  => '<b>'.&mt('Default Student Spreadsheet').'</b><br />'.
1.50      matthew  2488:                     '<a href="javascript:openbrowser'.
                   2489:                     "('envform','spreadsheet_default_calc'".
1.141     sakharuk 2490:                     ",'spreadsheet')\">$SelectSpreadsheetFile</a><br />",
1.49      matthew  2491:              'spreadsheet_default_assesscalc' 
1.141     sakharuk 2492:                  => '<b>'.&mt('Default Assessment Spreadsheet').'</b> '.
1.50      matthew  2493:                     '<a href="javascript:openbrowser'.
                   2494:                     "('envform','spreadsheet_default_assesscalc'".
1.141     sakharuk 2495:                     ",'spreadsheet')\">$SelectSpreadsheetFile</a><br />",
1.75      albertel 2496: 	     'allow_limited_html_in_feedback'
1.141     sakharuk 2497: 	         => '<b>'.&mt('Allow limited HTML in discussion posts').'</b><br />'.
1.395     bisitz   2498: 	            '('.&mt('Set value to [_1] to allow.','"<tt>yes</tt>"').')',
1.170     raeburn  2499:              'allow_discussion_post_editing'
1.395     bisitz   2500:                  => '<b>'.&mt('Allow users with specified roles to edit/delete their own discussion posts').'</b><br />'
                   2501:                    .'('.&mt('[_1]: student, [_2]: TA, [_3]: instructor','"<tt>st</tt>"','"<tt>ta</tt>"','"<tt>in</tt>"').')<br />'
                   2502:                    .'('.&mt('Set value to [_1] to allow all roles.','"<tt>yes</tt>"').')'
                   2503:                    .'("<tt>'.&mt('role:section,role:section,...').'</tt>")<br />'
                   2504:                    .'('.&mt('Example: "<tt>st:001,st:002,in,cc</tt>" would permit students in sections 001 and 002 and instructors in any section, and course coordinators to edit their own posts.').')',
1.89      albertel 2505: 	     'rndseed'
1.395     bisitz   2506: 	         => '<b>'.&mt('Randomization algorithm used').'</b><br />'
                   2507:                    .'<span class="LC_error">'
                   2508:                    .&mt('Modifying this will make problems have different numbers and answers!')
                   2509:                    .'</span>',
1.151     albertel 2510: 	     'receiptalg'
                   2511: 	         => '<b>'.&mt('Receipt algorithm used').'</b> <br />'.
                   2512:                     &mt('This controls how receipt numbers are generated.'),
1.164     sakharuk 2513:              'suppress_tries'
1.272     albertel 2514:                  => '<b>'.&mt('Suppress number of tries in printing').'</b><br />'.
1.395     bisitz   2515:                     ' ('.&mt('[_1] to suppress, anything else to not suppress','"<tt>yes</tt>"').')',
1.113     sakharuk 2516:              'problem_stream_switch'
1.141     sakharuk 2517:                  => '<b>'.&mt('Allow problems to be split over pages').'</b><br />'.
1.395     bisitz   2518:                     ' ('.&mt('[_1] if allowed, anything else if not','"<tt>yes</tt>"').')',
1.161     sakharuk 2519:              'default_paper_size' 
                   2520:                  => '<b>'.&mt('Default paper type').'</b><br />'.
                   2521:                     ' ('.&mt('supported types').': Letter [8 1/2x11 in], Legal [8 1/2x14 in],'. 
                   2522:                     ' Tabloid [11x17 in], Executive [7 1/2x10 in], A2 [420x594 mm],'. 
                   2523:                     ' A3 [297x420 mm], A4 [210x297 mm], A5 [148x210 mm], A6 [105x148 mm])',
1.319     foxr     2524: 	     'print_header_format'
1.395     bisitz   2525: 	         => ' <b>'.&mt('Print header format').'</b><br />'
                   2526:                    .&mt('Substitutions:<br />[_1]: student name, [_2]: course id, [_3]: assignment note. Numbers after the <tt>%</tt> limit the field size.','"<tt>%n</tt>"','"<tt>%c</tt>"','"<tt>%a</tt>"'),
1.217     albertel 2527:              'default_enrollment_start_date' => '<b>'.&mt('Default beginning date for student access.').'</b>',
                   2528:              'default_enrollment_end_date'   => '<b>'.&mt('Default ending date for student access.').'</b>',
1.395     bisitz   2529:              'nothideprivileged'   => '<b>'.&mt('Privileged users that should not be hidden on staff listings').'</b><br />'
                   2530:                                      .'("<tt>'.&mt('user:domain,user:domain,*:domain').'</tt>")',
1.140     sakharuk 2531:              'languages' => '<b>'.&mt('Languages used').'</b>',
1.115     www      2532:              'disable_receipt_display'
1.141     sakharuk 2533:                  => '<b>'.&mt('Disable display of problem receipts').'</b><br />'.
1.158     sakharuk 2534:                     ' ('.&mt('"[_1]" to disable, anything else if not','<tt>yes</tt>').')',
1.313     albertel 2535: 	     'task_messages'
1.395     bisitz   2536: 	         => '<b>'.&mt('Send message to student when clicking Done on Tasks').'</b><br /> ('.&mt('[_1] to send a message only to student, [_2] to send message to student and add record to user information page for instructors. Leave blank to disable.','"<tt>only_student</tt>"','"<tt>student_and_user_notes_screen</tt>"').')',
1.163     albertel 2537: 	     'disablesigfigs'
                   2538: 	         => '<b>'.&mt('Disable checking of Significant Figures').'</b><br />'.
                   2539:                     ' ('.&mt('"[_1]" to disable, anything else if not','<tt>yes</tt>').')',
1.251     albertel 2540: 	     'disableexampointprint'
                   2541: 	         => '<b>'.&mt('Disable automatically printing point values onto exams.').'</b><br />'.
                   2542:                     ' ('.&mt('"[_1]" to disable, anything else if not','<tt>yes</tt>').')',
1.278     www      2543:              'externalsyllabus'
1.279     www      2544:                  => '<b>'.&mt('URL of Syllabus (not using internal handler)').'</b>',
1.149     albertel 2545: 	     'tthoptions'
1.367     albertel 2546: 	         => '<b>'.&mt('Default set of options to pass to tth/m when converting tex').'</b>',
                   2547: 
                   2548: 	     'texengine'
1.395     bisitz   2549: 	         => '<b>'.&mt('Force all students in the course to use a specific math rendering engine.').'</b><br />'
1.420     bisitz   2550:                    .'('.&mt("[_1], [_2] (Convert to Images), [_3] (TeX to HTML), or blank for student's preference",'"<tt>jsMath</tt>"','"<tt>mimetex</tt>"','"<tt>tth</tt>"').')',
1.397     www      2551:              'timezone'
1.400     raeburn  2552:                  => '<b>'.&mt('Timezone in which the course takes place').'</b>',
1.392     raeburn  2553: 
1.400     raeburn  2554:              'suppress_embed_prompt'
                   2555:                  => '<b>'.&mt('Suppress prompt to upload items referenced in a web page being uploaded to portfolio, when current role is student.').'</b><br />'.
1.402     raeburn  2556:                     ' ('.&mt('[_1] to suppress, anything else to not suppress','"<tt>yes</tt>"').')',
1.403     raeburn  2557:              'hidefromcat'
1.402     raeburn  2558:                  => '<b>'.&mt('Exclude from course catalog').'</b><br />'.
                   2559:                     ' ('.&mt('[_1] to exclude, anything else to include - included if assigned an institutional code, or manually catagorized','"<tt>yes</tt>"').')',
1.403     raeburn  2560:              'categories'
                   2561:                  => '<b>'.&mt('Categorize course').'</b> <a href="javascript:catsbrowser()">'.
                   2562:                     &mt('Display Categories').'</a>',
1.409     raeburn  2563:              'datelocale' 
                   2564:                  => '<b>'.&mt('Locale used for course calendar').'</b>',
1.402     raeburn  2565:              );
                   2566:         my @Display_Order = ('url','description','courseid','cloners');
1.403     raeburn  2567:         (my $can_toggle_cat,$can_categorize) = &can_modify_catsettings($dom);
                   2568:         if ($can_toggle_cat) {
1.402     raeburn  2569:             push(@Display_Order,'hidefromcat');
                   2570:         }
1.403     raeburn  2571:         if ($can_categorize) {
                   2572:             push(@Display_Order,'categories');
                   2573:         }
1.402     raeburn  2574:         push (@Display_Order,('grading',
1.278     www      2575:                              'externalsyllabus',
1.107     matthew  2576:                              'default_xml_style','pageseparators',
1.402     raeburn  2577:                              'question.email','question.email.text','comment.email',
                   2578:                              'comment.email.text','policy.email','policy.email.text',
1.169     matthew  2579:                              'student_classlist_view',
1.372     raeburn  2580:                              'student_classlist_opt_in',
                   2581:                              'student_classlist_portfiles',
1.118     matthew  2582:                              'plc.roles.denied','plc.users.denied',
1.107     matthew  2583:                              'pch.roles.denied','pch.users.denied',
                   2584:                              'allow_limited_html_in_feedback',
1.170     raeburn  2585:                              'allow_discussion_post_editing',
1.108     www      2586:                              'languages',
1.397     www      2587:                              'timezone',
1.409     raeburn  2588:                              'datelocale',
1.150     www      2589: 			     'nothideprivileged',
1.107     matthew  2590:                              'rndseed',
1.151     albertel 2591:                              'receiptalg',
1.107     matthew  2592:                              'problem_stream_switch',
1.164     sakharuk 2593: 			     'suppress_tries',
1.400     raeburn  2594:                              'suppress_embed_prompt',
1.161     sakharuk 2595:                              'default_paper_size',
1.319     foxr     2596: 			     'print_header_format',
1.115     www      2597:                              'disable_receipt_display',
1.107     matthew  2598:                              'spreadsheet_default_classcalc',
                   2599:                              'spreadsheet_default_studentcalc',
                   2600:                              'spreadsheet_default_assesscalc', 
                   2601:                              'hideemptyrows',
                   2602:                              'default_enrollment_start_date',
                   2603:                              'default_enrollment_end_date',
1.163     albertel 2604: 			     'tthoptions',
1.367     albertel 2605: 			     'texengine',
1.251     albertel 2606: 			     'disablesigfigs',
1.313     albertel 2607: 			     'disableexampointprint',
1.402     raeburn  2608: 			     'task_messages','task_grading'));
1.107     matthew  2609: 	foreach my $parameter (sort(keys(%values))) {
1.405     raeburn  2610:             unless (($parameter =~ m/^internal\./)||($parameter =~ m/^metadata\./) ||
                   2611:                     ($parameter =~ m/^selfenroll_/) || ($parameter =~ /_selfenroll$/)
                   2612:                     || ($parameter eq 'type')) {
1.142     raeburn  2613:                 if (! $descriptions{$parameter}) {
                   2614:                     $descriptions{$parameter}=$parameter;
                   2615:                     push(@Display_Order,$parameter);
                   2616:                 }
                   2617:             }
1.43      albertel 2618: 	}
1.315     albertel 2619: 	
1.107     matthew  2620:         foreach my $parameter (@Display_Order) {
                   2621:             my $description = $descriptions{$parameter};
1.51      matthew  2622:             # onchange is javascript to automatically check the 'Set' button.
1.69      www      2623:             my $onchange = 'onFocus="javascript:window.document.forms'.
1.107     matthew  2624:                 "['envform'].elements['".$parameter."_setparmval']".
1.51      matthew  2625:                 '.checked=true;"';
1.315     albertel 2626:             $output .= &Apache::loncommon::start_data_table_row().
                   2627: 		'<td>'.$description.'</td>';
1.107     matthew  2628:             if ($parameter =~ /^default_enrollment_(start|end)_date$/) {
                   2629:                 $output .= '<td>'.
                   2630:                     &Apache::lonhtmlcommon::date_setter('envform',
                   2631:                                                         $parameter.'_value',
                   2632:                                                         $values{$parameter},
                   2633:                                                         $onchange).
                   2634:                                                         '</td>';
1.398     www      2635:             } elsif ($parameter eq 'timezone') {
1.399     raeburn  2636:                 my $includeempty = 1;
                   2637:                 my $timezone = &Apache::lonlocal::gettimezone();
1.398     www      2638:                 $output .= '<td>'.
                   2639:                     &Apache::loncommon::select_timezone($parameter.'_value',
1.399     raeburn  2640:                                                         $timezone,
                   2641:                                                         $onchange,$includeempty).'</td>';
1.409     raeburn  2642:             } elsif ($parameter eq 'datelocale') {
                   2643:                 my $includeempty = 1;
                   2644:                 my $locale_obj = &Apache::lonlocal::getdatelocale();
                   2645:                 my $currdatelocale;
                   2646:                 if (ref($locale_obj)) {
                   2647:                     $currdatelocale = $locale_obj->id();
                   2648:                 }
                   2649:                 $output .= '<td>'.
                   2650:                     &Apache::loncommon::select_datelocale($parameter.'_value',
                   2651:                                                           $currdatelocale,
                   2652:                                                           $onchange,$includeempty).'</td>'; 
1.406     raeburn  2653:             } elsif ($parameter eq 'categories') {
                   2654:                 my $catdisplay;
                   2655:                 if ($values{'categories'} ne '') {
                   2656:                     my @curritems = split(/\&/,$values{'categories'});
                   2657:                     foreach my $item (@curritems) {
                   2658:                         my ($name,$parent,$pos) = split(/:/,$item);
                   2659:                         $catdisplay .= &unescape($name).'&';
                   2660:                     }
                   2661:                     $catdisplay =~ s/\&$//;
                   2662:                 } 
                   2663:                 $output .= '<td>'.
                   2664:                            '<input type="hidden" name="categories_value" value="'.
                   2665:                            $values{'categories'}.'" />'.
                   2666:                            '<input type="textbox" name="categories_display" value="'.
                   2667:                            $catdisplay.'" readonly="readonly" size="40" /></td>';
1.107     matthew  2668:             } else {
                   2669:                 $output .= '<td>'.
                   2670:                     &Apache::lonhtmlcommon::textbox($parameter.'_value',
                   2671:                                                     $values{$parameter},
                   2672:                                                     40,$onchange).'</td>';
                   2673:             }
                   2674:             $output .= '<td>'.
                   2675:                 &Apache::lonhtmlcommon::checkbox($parameter.'_setparmval').
                   2676:                 '</td>';
1.315     albertel 2677:             $output .= &Apache::loncommon::end_data_table_row()."\n";
1.51      matthew  2678: 	}
1.69      www      2679:         my $onchange = 'onFocus="javascript:window.document.forms'.
1.51      matthew  2680:             '[\'envform\'].elements[\'newp_setparmval\']'.
                   2681:             '.checked=true;"';
1.315     albertel 2682: 	$output.=&Apache::loncommon::start_data_table_row().
                   2683: 	    '<td><i>'.&mt('Create New Environment Variable').'</i><br />'.
1.419     bisitz   2684: 	    '<input type="text" size="40" name="newp_name" '.
1.51      matthew  2685:                 $onchange.' /></td><td>'.
1.419     bisitz   2686:             '<input type="text" size="40" name="newp_value" '.
1.51      matthew  2687:                 $onchange.' /></td><td>'.
1.315     albertel 2688: 	    '<input type="checkbox" name="newp_setparmval" /></td>'.
                   2689: 	    &Apache::loncommon::end_data_table_row()."\n";
1.43      albertel 2690:     }
1.157     sakharuk 2691:     my %lt=&Apache::lonlocal::texthash(
                   2692: 		    'par'   => 'Parameter',
                   2693: 		    'val'   => 'Value',
1.395     bisitz   2694: 		    'set'   => 'Set?',
                   2695: 		    'sav'   => 'Save'
1.157     sakharuk 2696: 				       );
                   2697: 
1.140     sakharuk 2698:     my $Parameter=&mt('Parameter');
                   2699:     my $Value=&mt('Value');
1.141     sakharuk 2700:     my $Set=&mt('Set');
1.403     raeburn  2701:     my ($jscript,$categorize_js);
                   2702:     my $browse_js = &Apache::loncommon::browser_and_searcher_javascript('parmset');
                   2703:     if ($can_categorize) {
                   2704:         $categorize_js = <<ENDSCRIPT;
                   2705: function catsbrowser() {
                   2706:     var catswin = null;
                   2707:     var url = '/adm/parmset?action=categorizecourse';
                   2708:     if (!catswin || catswin.closed) {
                   2709:         catswin=window.open(url,'categorieswin','height=480,width=600,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
                   2710:     } else {
                   2711:         catswin.focus();
                   2712:     }
                   2713: } 
                   2714: ENDSCRIPT
                   2715:     }
                   2716:     $jscript = '<script type="text/javascript" language="Javascript">'."\n".
                   2717:                $browse_js."\n".$categorize_js."\n".'</script>';
1.280     albertel 2718:     my $start_page = 
1.323     albertel 2719: 	&Apache::loncommon::start_page('Set Course Environment',
1.403     raeburn  2720: 				       $jscript);
1.280     albertel 2721:     my $end_page = 
                   2722: 	&Apache::loncommon::end_page();
1.315     albertel 2723:     my $end_table=&Apache::loncommon::end_data_table();
1.280     albertel 2724:     $r->print(<<ENDENV);
                   2725: $start_page
1.193     albertel 2726: $breadcrumbs
                   2727: <form method="post" action="/adm/parmset?action=crsenv" name="envform">
1.30      www      2728: $setoutput
1.395     bisitz   2729: <div><input type="submit" name="crsenv" value="$lt{'sav'}" /></div>
1.315     albertel 2730: $start_table
                   2731: $start_header_row
1.395     bisitz   2732: <th>$lt{'par'}</th><th>$lt{'val'}</th><th>$lt{'set'}</th>
1.315     albertel 2733: $end_header_row
1.30      www      2734: $output
1.315     albertel 2735: $end_table
1.395     bisitz   2736: <input type="submit" name="crsenv" value="$lt{'sav'}" />
1.30      www      2737: </form>
1.280     albertel 2738: $end_page
                   2739: ENDENV
1.30      www      2740: }
1.402     raeburn  2741: 
1.403     raeburn  2742: sub can_modify_catsettings {
1.402     raeburn  2743:     my ($dom) = @_;
                   2744:     my %domconf = &Apache::lonnet::get_dom('configuration',['coursecategories'],$dom);
1.403     raeburn  2745:     my ($can_toggle_cat,$can_categorize);
1.402     raeburn  2746:     if (ref($domconf{'coursecategories'}) eq 'HASH') {
                   2747:         if ($domconf{'coursecategories'}{'togglecats'} eq 'crs') {
                   2748:             $can_toggle_cat = 1;
                   2749:         }
1.403     raeburn  2750:         if ($domconf{'coursecategories'}{'categorize'} eq 'crs') {
                   2751:             $can_categorize = 1;
                   2752:         }
                   2753:     }
                   2754:     return ($can_toggle_cat,$can_categorize);
                   2755: }
                   2756: 
                   2757: sub assign_course_categories {
                   2758:     my ($r) = @_;
                   2759:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   2760:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   2761:     my $hascats = 0;
                   2762:     my $cathash;
                   2763:     my %domconf = &Apache::lonnet::get_dom('configuration',['coursecategories'],$cdom);
                   2764:     if (ref($domconf{'coursecategories'}) eq 'HASH') {
                   2765:         $cathash = $domconf{'coursecategories'}{'cats'};
                   2766:         if (ref($cathash) eq 'HASH') {
                   2767:             $hascats = 1;   
                   2768:         }
1.402     raeburn  2769:     }
1.403     raeburn  2770:     my $catwin_js;
                   2771:     if ($hascats) {
                   2772:         my $alert = &mt('Use \"Save\" in the main window to save course categories');
                   2773:         $catwin_js = <<ENDSCRIPT;
                   2774: <script type="text/javascript">
                   2775: 
                   2776: function updateCategories() {
                   2777:     var newcategories = '';
1.406     raeburn  2778:     var unescapedcats = '';
1.403     raeburn  2779:     if (document.chgcats.usecategory.length) {
                   2780:         for (var i=0; i<document.chgcats.usecategory.length; i++) {
                   2781:             if (document.chgcats.usecategory[i].checked == true) {
                   2782:                 newcategories = newcategories + document.chgcats.usecategory[i].value + '&';
1.406     raeburn  2783:                 unescapedcats = unescapedcats + document.chgcats.catname[i].value + ' & ';
1.403     raeburn  2784:             }
                   2785:         }
                   2786:         if (newcategories.length > 0) {
                   2787:             newcategories = newcategories.slice(0,-1);
                   2788:         }
1.406     raeburn  2789:         if (unescapedcats.length > 0) {
1.408     raeburn  2790:             unescapedcats = unescapedcats.slice(0,-3);
1.406     raeburn  2791:         }
1.403     raeburn  2792:     } else {
                   2793:          if (document.chgcats.usecategory.checked == true) {
                   2794:              newcategories = document.chgcats.usecategory.value;
1.406     raeburn  2795:              unescapedcats = document.chgcats.catname.value;
1.403     raeburn  2796:          }
                   2797:     }
                   2798:     opener.document.envform.categories_value.value = newcategories;
1.406     raeburn  2799:     opener.document.envform.categories_display.value = unescapedcats;
1.403     raeburn  2800:     opener.document.envform.categories_setparmval.checked = true;
                   2801:     alert("$alert");
                   2802:     self.close();
                   2803:     return;
                   2804: }
                   2805: 
                   2806: </script>
                   2807: ENDSCRIPT
                   2808:     } else {
                   2809:         my $onload; 
                   2810:     }
                   2811:     my $start_page =
                   2812:         &Apache::loncommon::start_page('Course Categories',$catwin_js,
                   2813:                                        {'only_body'      => 1,});
                   2814:     my $end_page = &Apache::loncommon::end_page();
                   2815:     my $categoriesform = '<h3>'.&mt('Categorize Course').'</h3>';
                   2816:     if ($hascats) {
                   2817:         my %currsettings =
                   2818:             &Apache::lonnet::get('environment',['hidefromcat','categories'],$cdom,$cnum);
                   2819:         $categoriesform .= &mt('Assign one or more categories to this course.').'<br /><br />'.
                   2820:                                '<form name="chgcats" action="/adm/parmset" method="post">'."\n"
                   2821:                                .&Apache::loncommon::assign_categories_table($cathash,
                   2822:                                                        $currsettings{'categories'})."\n"
                   2823:                                .'<br /><input type="button" name="changes" value="'
                   2824:                                .&mt('Copy to main window').'" '
                   2825:                                .'onclick="javascript:updateCategories()" /></form><br />';
                   2826:     } else {
                   2827:         $categoriesform .= &mt('No categories defined for this domain');
                   2828:     }
                   2829:     $r->print($start_page.$categoriesform.$end_page);
                   2830:     return;
1.402     raeburn  2831: }
                   2832: 
1.120     www      2833: ##################################################
1.207     www      2834: # Overview mode
                   2835: ##################################################
1.124     www      2836: my $tableopen;
                   2837: 
                   2838: sub tablestart {
                   2839:     if ($tableopen) {
                   2840: 	return '';
                   2841:     } else {
                   2842: 	$tableopen=1;
1.295     albertel 2843: 	return &Apache::loncommon::start_data_table().'<tr><th>'.&mt('Parameter').'</th><th>'.
1.130     www      2844: 	    &mt('Delete').'</th><th>'.&mt('Set to ...').'</th></tr>';
1.124     www      2845:     }
                   2846: }
                   2847: 
                   2848: sub tableend {
                   2849:     if ($tableopen) {
                   2850: 	$tableopen=0;
1.295     albertel 2851: 	return &Apache::loncommon::end_data_table();
1.124     www      2852:     } else {
                   2853: 	return'';
                   2854:     }
                   2855: }
                   2856: 
1.207     www      2857: sub readdata {
                   2858:     my ($crs,$dom)=@_;
                   2859: # Read coursedata
                   2860:     my $resourcedata=&Apache::lonnet::get_courseresdata($crs,$dom);
                   2861: # Read userdata
                   2862: 
                   2863:     my $classlist=&Apache::loncoursedata::get_classlist();
                   2864:     foreach (keys %$classlist) {
1.350     albertel 2865:         if ($_=~/^($match_username)\:($match_domain)$/) {
1.207     www      2866: 	    my ($tuname,$tudom)=($1,$2);
                   2867: 	    my $useropt=&Apache::lonnet::get_userresdata($tuname,$tudom);
                   2868:             foreach my $userkey (keys %{$useropt}) {
                   2869: 		if ($userkey=~/^$env{'request.course.id'}/) {
                   2870:                     my $newkey=$userkey;
                   2871: 		    $newkey=~s/^($env{'request.course.id'}\.)/$1\[useropt\:$tuname\:$tudom\]\./;
                   2872: 		    $$resourcedata{$newkey}=$$useropt{$userkey};
                   2873: 		}
                   2874: 	    }
                   2875: 	}
                   2876:     }
                   2877:     return $resourcedata;
                   2878: }
                   2879: 
                   2880: 
1.124     www      2881: # Setting
1.208     www      2882: 
                   2883: sub storedata {
                   2884:     my ($r,$crs,$dom)=@_;
1.207     www      2885: # Set userlevel immediately
                   2886: # Do an intermediate store of course level
                   2887:     my $olddata=&readdata($crs,$dom);
1.124     www      2888:     my %newdata=();
                   2889:     undef %newdata;
                   2890:     my @deldata=();
                   2891:     undef @deldata;
1.190     albertel 2892:     foreach (keys %env) {
1.124     www      2893: 	if ($_=~/^form\.([a-z]+)\_(.+)$/) {
                   2894: 	    my $cmd=$1;
                   2895: 	    my $thiskey=$2;
1.207     www      2896: 	    my ($tuname,$tudom)=&extractuser($thiskey);
                   2897: 	    my $tkey=$thiskey;
                   2898:             if ($tuname) {
                   2899: 		$tkey=~s/\.\[useropt\:$tuname\:$tudom\]\./\./;
                   2900: 	    }
1.385     albertel 2901: 	    if ($cmd eq 'set' || $cmd eq 'datepointer' || $cmd eq 'dateinterval') {
1.384     albertel 2902: 		my ($data, $typeof, $text);
                   2903: 		if ($cmd eq 'set') {
                   2904: 		    $data=$env{$_};
                   2905: 		    $typeof=$env{'form.typeof_'.$thiskey};
                   2906: 		    $text = &mt('Saved modified parameter for');
                   2907: 		} elsif ($cmd eq 'datepointer') {
                   2908: 		    $data=&Apache::lonhtmlcommon::get_date_from_form($env{$_});
                   2909: 		    $typeof=$env{'form.typeof_'.$thiskey};
                   2910: 		    $text = &mt('Saved modified date for');
1.385     albertel 2911: 		} elsif ($cmd eq 'dateinterval') {
                   2912: 		    $data=&get_date_interval_from_form($thiskey);
                   2913: 		    $typeof=$env{'form.typeof_'.$thiskey};
                   2914: 		    $text = &mt('Saved modified date for');
1.384     albertel 2915: 		}
                   2916: 		if (defined($data) and $$olddata{$thiskey} ne $data) { 
1.207     www      2917: 		    if ($tuname) {
1.212     www      2918: 			if (&Apache::lonnet::put('resourcedata',{$tkey=>$data,
                   2919: 								 $tkey.'.type' => $typeof},
                   2920: 						 $tudom,$tuname) eq 'ok') {
1.290     www      2921: 			    &log_parmset({$tkey=>$data,$tkey.'.type' => $typeof},0,$tuname,$tudom);
1.384     albertel 2922: 			    $r->print('<br />'.$text.' '.
1.207     www      2923: 				      &Apache::loncommon::plainname($tuname,$tudom));
                   2924: 			} else {
1.314     albertel 2925: 			    $r->print('<div class="LC_error">'.
1.365     albertel 2926: 				      &mt('Error saving parameters').'</div>');
1.207     www      2927: 			}
                   2928: 			&Apache::lonnet::devalidateuserresdata($tuname,$tudom);
                   2929: 		    } else {
                   2930: 			$newdata{$thiskey}=$data;
1.212     www      2931:  			$newdata{$thiskey.'.type'}=$typeof; 
                   2932:                    } 
1.207     www      2933: 		}
1.124     www      2934: 	    } elsif ($cmd eq 'del') {
1.207     www      2935: 		if ($tuname) {
                   2936: 		    if (&Apache::lonnet::del('resourcedata',[$tkey],$tudom,$tuname) eq 'ok') {
1.290     www      2937: 			    &log_parmset({$tkey=>''},1,$tuname,$tudom);
1.207     www      2938: 			$r->print('<br />'.&mt('Deleted parameter for').' '.&Apache::loncommon::plainname($tuname,$tudom));
                   2939: 		    } else {
1.314     albertel 2940: 			$r->print('<div class="LC_error">'.
                   2941: 				  &mt('Error deleting parameters').'</div>');
1.207     www      2942: 		    }
                   2943: 		    &Apache::lonnet::devalidateuserresdata($tuname,$tudom);
                   2944: 		} else {
1.333     albertel 2945: 		    push (@deldata,$thiskey,$thiskey.'.type');
1.207     www      2946: 		}
1.124     www      2947: 	    }
                   2948: 	}
                   2949:     }
1.207     www      2950: # Store all course level
1.144     www      2951:     my $delentries=$#deldata+1;
                   2952:     my @newdatakeys=keys %newdata;
                   2953:     my $putentries=$#newdatakeys+1;
                   2954:     if ($delentries) {
                   2955: 	if (&Apache::lonnet::del('resourcedata',\@deldata,$dom,$crs) eq 'ok') {
1.290     www      2956: 	    my %loghash=map { $_ => '' } @deldata;
                   2957: 	    &log_parmset(\%loghash,1);
1.144     www      2958: 	    $r->print('<h2>'.&mt('Deleted [_1] parameter(s)</h2>',$delentries));
                   2959: 	} else {
1.314     albertel 2960: 	    $r->print('<div class="LC_error">'.
                   2961: 		      &mt('Error deleting parameters').'</div>');
1.144     www      2962: 	}
1.205     www      2963: 	&Apache::lonnet::devalidatecourseresdata($crs,$dom);
1.144     www      2964:     }
                   2965:     if ($putentries) {
                   2966: 	if (&Apache::lonnet::put('resourcedata',\%newdata,$dom,$crs) eq 'ok') {
1.290     www      2967: 			    &log_parmset(\%newdata,0);
1.365     albertel 2968: 	    $r->print('<h3>'.&mt('Saved [_1] parameter(s)',$putentries/2).'</h3>');
1.144     www      2969: 	} else {
1.314     albertel 2970: 	    $r->print('<div class="LC_error">'.
1.365     albertel 2971: 		      &mt('Error saving parameters').'</div>');
1.144     www      2972: 	}
1.205     www      2973: 	&Apache::lonnet::devalidatecourseresdata($crs,$dom);
1.144     www      2974:     }
1.208     www      2975: }
1.207     www      2976: 
1.208     www      2977: sub extractuser {
                   2978:     my $key=shift;
1.350     albertel 2979:     return ($key=~/^$env{'request.course.id'}.\[useropt\:($match_username)\:($match_domain)\]\./);
1.208     www      2980: }
1.206     www      2981: 
1.381     albertel 2982: sub parse_listdata_key {
                   2983:     my ($key,$listdata) = @_;
                   2984:     # split into student/section affected, and
                   2985:     # the realm (folder/resource part and parameter
                   2986:     my ($student,$realm) = 
                   2987: 	($key=~/^\Q$env{'request.course.id'}\E\.\[([^\.]+)\]\.(.+)$/);
                   2988:     # if course wide student would be undefined
                   2989:     if (!defined($student)) {
                   2990: 	($realm)=($key=~/^\Q$env{'request.course.id'}\E\.(.+)$/);
                   2991:     }
                   2992:     # strip off the .type if it's not the Question type parameter
                   2993:     if ($realm=~/\.type$/ && !exists($listdata->{$key.'.type'})) {
                   2994: 	$realm=~s/\.type//;
                   2995:     }
                   2996:     # split into resource+part and parameter name
1.388     albertel 2997:     my ($res,    $parm) = ($realm=~/^(.*)\.(.*)$/);
                   2998:        ($res, my $part) = ($res  =~/^(.*)\.(.*)$/);
1.381     albertel 2999:     return ($student,$res,$part,$parm);
                   3000: }
                   3001: 
1.208     www      3002: sub listdata {
1.214     www      3003:     my ($r,$resourcedata,$listdata,$sortorder)=@_;
1.207     www      3004: # Start list output
1.206     www      3005: 
1.122     www      3006:     my $oldsection='';
                   3007:     my $oldrealm='';
                   3008:     my $oldpart='';
1.123     www      3009:     my $pointer=0;
1.124     www      3010:     $tableopen=0;
1.145     www      3011:     my $foundkeys=0;
1.248     albertel 3012:     my %keyorder=&standardkeyorder();
1.381     albertel 3013: 
1.214     www      3014:     foreach my $thiskey (sort {
1.381     albertel 3015: 	my ($astudent,$ares,$apart,$aparm) = &parse_listdata_key($a,$listdata);
                   3016: 	my ($bstudent,$bres,$bpart,$bparm) = &parse_listdata_key($b,$listdata);
                   3017: 
                   3018: 	# get the numerical order for the param
                   3019: 	$aparm=$keyorder{'parameter_0_'.$aparm};
                   3020: 	$bparm=$keyorder{'parameter_0_'.$bparm};
                   3021: 
                   3022: 	my $result=0;
                   3023: 
1.214     www      3024: 	if ($sortorder eq 'realmstudent') {
1.381     albertel 3025:             if ($ares     ne $bres    ) {
                   3026: 		$result = ($ares     cmp $bres);
                   3027:             } elsif ($astudent ne $bstudent) { 
                   3028: 		$result = ($astudent cmp $bstudent);
                   3029: 	    } elsif ($apart    ne $bpart   ) {
                   3030: 		$result = ($apart    cmp $bpart);
1.237     albertel 3031: 	    }
1.381     albertel 3032: 	} else {
                   3033: 	    if      ($astudent ne $bstudent) { 
                   3034: 		$result = ($astudent cmp $bstudent);
                   3035: 	    } elsif ($ares     ne $bres    ) {
                   3036: 		$result = ($ares     cmp $bres);
                   3037: 	    } elsif ($apart    ne $bpart   ) {
                   3038: 		$result = ($apart    cmp $bpart);
1.247     albertel 3039: 	    }
1.381     albertel 3040: 	}
                   3041: 	    
                   3042: 	if (!$result) {
                   3043:             if (defined($aparm) && defined($bparm)) {
                   3044: 		$result = ($aparm <=> $bparm);
                   3045:             } elsif (defined($aparm)) {
                   3046: 		$result = -1;
                   3047:             } elsif (defined($bparm)) {
                   3048: 		$result = 1;
1.248     albertel 3049: 	    }
1.214     www      3050: 	}
1.381     albertel 3051: 
                   3052: 	$result;
1.214     www      3053:     } keys %{$listdata}) {
1.381     albertel 3054: 
1.211     www      3055: 	if ($$listdata{$thiskey.'.type'}) {
                   3056:             my $thistype=$$listdata{$thiskey.'.type'};
                   3057:             if ($$resourcedata{$thiskey.'.type'}) {
                   3058: 		$thistype=$$resourcedata{$thiskey.'.type'};
                   3059: 	    }
1.207     www      3060: 	    my ($middle,$part,$name)=
                   3061: 		($thiskey=~/^$env{'request.course.id'}\.(?:(.+)\.)*([\w\s]+)\.(\w+)$/);
1.130     www      3062: 	    my $section=&mt('All Students');
1.207     www      3063: 	    if ($middle=~/^\[(.*)\]/) {
1.206     www      3064: 		my $issection=$1;
1.350     albertel 3065: 		if ($issection=~/^useropt\:($match_username)\:($match_domain)/) {
1.206     www      3066: 		    $section=&mt('User').": ".&Apache::loncommon::plainname($1,$2);
                   3067: 		} else {
                   3068: 		    $section=&mt('Group/Section').': '.$issection;
                   3069: 		}
1.207     www      3070: 		$middle=~s/^\[(.*)\]//;
1.122     www      3071: 	    }
1.207     www      3072: 	    $middle=~s/\.+$//;
                   3073: 	    $middle=~s/^\.+//;
1.316     albertel 3074: 	    my $realm='<span class="LC_parm_scope_all">'.&mt('All Resources').'</span>';
1.122     www      3075: 	    if ($middle=~/^(.+)\_\_\_\(all\)$/) {
1.316     albertel 3076: 		$realm='<span class="LC_parm_scope_folder">'.&mt('Folder/Map').': '.&Apache::lonnet::gettitle($1).' <br /><span class="LC_parm_folder">('.$1.')</span></span>';
1.122     www      3077: 	    } elsif ($middle) {
1.174     albertel 3078: 		my ($map,$id,$url)=&Apache::lonnet::decode_symb($middle);
1.316     albertel 3079: 		$realm='<span class="LC_parm_scope_resource">'.&mt('Resource').': '.&Apache::lonnet::gettitle($middle).' <br /><span class="LC_parm_symb">('.$url.' in '.$map.' id: '.$id.')</span></span>';
1.122     www      3080: 	    }
1.214     www      3081: 	    if ($sortorder eq 'realmstudent') {
                   3082: 		if ($realm ne $oldrealm) {
                   3083: 		    $r->print(&tableend()."\n<hr /><h1>$realm</h1>");
                   3084: 		    $oldrealm=$realm;
                   3085: 		    $oldsection='';
                   3086: 		}
                   3087: 		if ($section ne $oldsection) {
                   3088: 		    $r->print(&tableend()."\n<h2>$section</h2>");
                   3089: 		    $oldsection=$section;
                   3090: 		    $oldpart='';
                   3091: 		}
                   3092: 	    } else {
                   3093: 		if ($section ne $oldsection) {
                   3094: 		    $r->print(&tableend()."\n<hr /><h1>$section</h1>");
                   3095: 		    $oldsection=$section;
                   3096: 		    $oldrealm='';
                   3097: 		}
                   3098: 		if ($realm ne $oldrealm) {
                   3099: 		    $r->print(&tableend()."\n<h2>$realm</h2>");
                   3100: 		    $oldrealm=$realm;
                   3101: 		    $oldpart='';
                   3102: 		}
1.122     www      3103: 	    }
                   3104: 	    if ($part ne $oldpart) {
1.124     www      3105: 		$r->print(&tableend().
1.316     albertel 3106: 			  "\n<span class=\"LC_parm_part\">".&mt('Part').": $part</span>");
1.122     www      3107: 		$oldpart=$part;
                   3108: 	    }
1.123     www      3109: #
                   3110: # Ready to print
                   3111: #
1.295     albertel 3112: 	    $r->print(&tablestart().
                   3113: 		      &Apache::loncommon::start_data_table_row().
                   3114: 		      '<td><b>'.&standard_parameter_names($name).
1.293     www      3115: 		      '</b></td><td><input type="checkbox" name="del_'.
1.124     www      3116: 		      $thiskey.'" /></td><td>');
1.145     www      3117: 	    $foundkeys++;
1.213     www      3118: 	    if (&isdateparm($thistype)) {
1.123     www      3119: 		my $jskey='key_'.$pointer;
                   3120: 		$pointer++;
                   3121: 		$r->print(
1.232     albertel 3122: 			  &Apache::lonhtmlcommon::date_setter('parmform',
1.123     www      3123: 							      $jskey,
1.219     www      3124: 						      $$resourcedata{$thiskey},
1.325     www      3125: 							      '',1,'','').
1.277     www      3126: '<input type="hidden" name="datepointer_'.$thiskey.'" value="'.$jskey.'" />'.
1.413     bisitz   3127: (($$resourcedata{$thiskey}!=0)?'<span class="LC_nobreak"><a href="/adm/parmset?&action=dateshift1&timebase='.$$resourcedata{$thiskey}.'">'.
                   3128: &mt('Shift all dates based on this date').'</a></span>':'').
1.277     www      3129: &date_sanity_info($$resourcedata{$thiskey})
1.123     www      3130: 			  );
1.385     albertel 3131: 	    } elsif ($thistype eq 'date_interval') {
                   3132: 		$r->print(&date_interval_selector($thiskey,
                   3133: 						  $$resourcedata{$thiskey}));
1.383     albertel 3134: 	    } elsif ($thistype =~ m/^string/) {
                   3135: 		$r->print(&string_selector($thistype,$thiskey,
                   3136: 					   $$resourcedata{$thiskey}));
1.123     www      3137: 	    } else {
1.383     albertel 3138: 		$r->print(&default_selector($thiskey,$$resourcedata{$thiskey}));
1.123     www      3139: 	    }
1.211     www      3140: 	    $r->print('<input type="hidden" name="typeof_'.$thiskey.'" value="'.
                   3141: 		      $thistype.'">');
1.295     albertel 3142: 	    $r->print('</td>'.&Apache::loncommon::end_data_table_row());
1.122     www      3143: 	}
1.121     www      3144:     }
1.208     www      3145:     return $foundkeys;
                   3146: }
                   3147: 
1.385     albertel 3148: 
                   3149: sub date_interval_selector {
                   3150:     my ($thiskey, $showval) = @_;
                   3151:     my $result;
                   3152:     foreach my $which (['days', 86400, 31],
                   3153: 		       ['hours', 3600, 23],
                   3154: 		       ['minutes', 60, 59],
                   3155: 		       ['seconds',  1, 59]) {
                   3156: 	my ($name, $factor, $max) = @{ $which };
                   3157: 	my $amount = int($showval/$factor);
                   3158: 	$showval  %= $factor;
                   3159: 	my %select = ((map {$_ => $_} (0..$max)),
                   3160: 		      'select_form_order' => [0..$max]);
                   3161: 	$result .= &Apache::loncommon::select_form($amount,$name.'_'.$thiskey,
                   3162: 						   %select);
                   3163: 	$result .= ' '.&mt($name);
                   3164:     }
                   3165:     $result .= '<input type="hidden" name="dateinterval_'.$thiskey.'" />';
                   3166:     return $result;
                   3167: 
                   3168: }
                   3169: 
                   3170: sub get_date_interval_from_form {
                   3171:     my ($key) = @_;
                   3172:     my $seconds = 0;
                   3173:     foreach my $which (['days', 86400],
                   3174: 		       ['hours', 3600],
                   3175: 		       ['minutes', 60],
                   3176: 		       ['seconds',  1]) {
                   3177: 	my ($name, $factor) = @{ $which };
                   3178: 	if (defined($env{'form.'.$name.'_'.$key})) {
                   3179: 	    $seconds += $env{'form.'.$name.'_'.$key} * $factor;
                   3180: 	}
                   3181:     }
                   3182:     return $seconds;
                   3183: }
                   3184: 
                   3185: 
1.383     albertel 3186: sub default_selector {
                   3187:     my ($thiskey, $showval) = @_;
1.385     albertel 3188:     return '<input type="text" name="set_'.$thiskey.'" value="'.$showval.'" />';
1.383     albertel 3189: }
                   3190: 
                   3191: my %strings = 
                   3192:     (
                   3193:      'string_yesno'
                   3194:              => [[ 'yes', 'Yes' ],
                   3195: 		 [ 'no', 'No' ]],
                   3196:      'string_problemstatus'
                   3197:              => [[ 'yes', 'Yes' ],
1.394     www      3198: 		 [ 'answer', 'Yes, and show correct answer if they exceed the maximum number of tries.' ],
1.383     albertel 3199: 		 [ 'no', 'No, don\'t show correct/incorrect feedback.' ],
                   3200: 		 [ 'no_feedback_ever', 'No, show no feedback at all.' ]],
                   3201:      );
                   3202: 
                   3203: 
                   3204: sub string_selector {
                   3205:     my ($thistype, $thiskey, $showval) = @_;
                   3206:     
                   3207:     if (!exists($strings{$thistype})) {
                   3208: 	return &default_selector($thiskey,$showval);
                   3209:     }
                   3210: 
                   3211:     my $result;
                   3212:     foreach my $possibilities (@{ $strings{$thistype} }) {
                   3213: 	my ($name, $description) = @{ $possibilities };
                   3214: 	$result .= '<label><input type="radio" name="set_'.$thiskey.
                   3215: 		  '" value="'.$name.'"';
                   3216: 	if ($showval eq $name) {
                   3217: 	    $result .= ' checked="checked"';
                   3218: 	}
                   3219: 	$result .= ' />'.&mt($description).'</label> ';
                   3220:     }
                   3221:     return $result;
                   3222: }
                   3223: 
1.389     www      3224: #
                   3225: # Shift all start and end dates by $shift
                   3226: #
                   3227: 
                   3228: sub dateshift {
                   3229:     my ($shift)=@_;
                   3230:     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3231:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
                   3232:     my %data=&Apache::lonnet::dump('resourcedata',$dom,$crs);
                   3233: # ugly retro fix for broken version of types
                   3234:     foreach my $key (keys %data) {
                   3235:         if ($key=~/\wtype$/) {
                   3236:             my $newkey=$key;
                   3237:             $newkey=~s/type$/\.type/;
                   3238:             $data{$newkey}=$data{$key};
                   3239:             delete $data{$key};
                   3240:         }
                   3241:     }
1.391     www      3242:     my %storecontent=();
1.389     www      3243: # go through all parameters and look for dates
                   3244:     foreach my $key (keys %data) {
                   3245:        if ($data{$key.'.type'}=~/^date_(start|end)$/) {
                   3246:           my $newdate=$data{$key}+$shift;
1.391     www      3247:           $storecontent{$key}=$newdate;
1.389     www      3248:        }
                   3249:     }
1.391     www      3250:     my $reply=&Apache::lonnet::cput
                   3251:                 ('resourcedata',\%storecontent,$dom,$crs);
                   3252:     if ($reply eq 'ok') {
                   3253:        &log_parmset(\%storecontent);
                   3254:     }
                   3255:     &Apache::lonnet::devalidatecourseresdata($crs,$dom);
                   3256:     return $reply;
1.389     www      3257: }
                   3258: 
1.208     www      3259: sub newoverview {
1.280     albertel 3260:     my ($r) = @_;
                   3261: 
1.208     www      3262:     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3263:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
1.414     droeschl 3264:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=setoverview',
                   3265:     	text=>"Overview Mode"});
1.280     albertel 3266:     my $start_page = &Apache::loncommon::start_page('Set Parameters');
1.298     albertel 3267:     my $breadcrumbs = &Apache::lonhtmlcommon::breadcrumbs('Overview');
1.208     www      3268:     $r->print(<<ENDOVER);
1.280     albertel 3269: $start_page
1.208     www      3270: $breadcrumbs
1.232     albertel 3271: <form method="post" action="/adm/parmset?action=newoverview" name="parmform">
1.208     www      3272: ENDOVER
1.211     www      3273:     my @ids=();
                   3274:     my %typep=();
                   3275:     my %keyp=();
                   3276:     my %allparms=();
                   3277:     my %allparts=();
                   3278:     my %allmaps=();
                   3279:     my %mapp=();
                   3280:     my %symbp=();
                   3281:     my %maptitles=();
                   3282:     my %uris=();
                   3283:     my %keyorder=&standardkeyorder();
                   3284:     my %defkeytype=();
                   3285: 
                   3286:     my %alllevs=();
                   3287:     $alllevs{'Resource Level'}='full';
1.215     www      3288:     $alllevs{'Map/Folder Level'}='map';
1.211     www      3289:     $alllevs{'Course Level'}='general';
                   3290: 
                   3291:     my $csec=$env{'form.csec'};
1.269     raeburn  3292:     my $cgroup=$env{'form.cgroup'};
1.211     www      3293: 
                   3294:     my @pscat=&Apache::loncommon::get_env_multiple('form.pscat');
                   3295:     my $pschp=$env{'form.pschp'};
                   3296:     my @psprt=&Apache::loncommon::get_env_multiple('form.psprt');
                   3297:     if (!@psprt) { $psprt[0]='0'; }
                   3298: 
                   3299:     my @selected_sections = 
                   3300: 	&Apache::loncommon::get_env_multiple('form.Section');
                   3301:     @selected_sections = ('all') if (! @selected_sections);
1.374     albertel 3302:     foreach my $sec (@selected_sections) {
                   3303:         if ($sec eq 'all') {
1.211     www      3304:             @selected_sections = ('all');
                   3305:         }
                   3306:     }
1.269     raeburn  3307:     my @selected_groups =
                   3308:         &Apache::loncommon::get_env_multiple('form.Group');
1.211     www      3309: 
                   3310:     my $pssymb='';
                   3311:     my $parmlev='';
                   3312:  
                   3313:     unless ($env{'form.parmlev'}) {
                   3314:         $parmlev = 'map';
                   3315:     } else {
                   3316:         $parmlev = $env{'form.parmlev'};
                   3317:     }
                   3318: 
                   3319:     &extractResourceInformation(\@ids, \%typep,\%keyp, \%allparms, \%allparts, \%allmaps, 
                   3320: 				\%mapp, \%symbp,\%maptitles,\%uris,
                   3321: 				\%keyorder,\%defkeytype);
                   3322: 
1.374     albertel 3323:     if (grep {$_ eq 'all'} (@psprt)) {
                   3324: 	@psprt = keys(%allparts);
                   3325:     }
1.211     www      3326: # Menu to select levels, etc
                   3327: 
1.317     albertel 3328:     $r->print('<table id="LC_parm_overview_scope">
                   3329:                <tr><td class="LC_parm_overview_level_menu">');
1.211     www      3330:     &levelmenu($r,\%alllevs,$parmlev);
                   3331:     if ($parmlev ne 'general') {
1.317     albertel 3332: 	$r->print('<td class="LC_parm_overview_map_menu">');
1.211     www      3333: 	&mapmenu($r,\%allmaps,$pschp,\%maptitles);
                   3334: 	$r->print('</td>');
                   3335:     }
                   3336:     $r->print('</td></tr></table>');
                   3337: 
1.317     albertel 3338:     $r->print('<table id="LC_parm_overview_controls">
                   3339:                <tr><td class="LC_parm_overview_parm_selectors">');  
1.211     www      3340:     &parmmenu($r,\%allparms,\@pscat,\%keyorder);
1.317     albertel 3341:     $r->print('</td><td class="LC_parm_overview_restrictions">
                   3342:                 <table class="LC_parm_overview_restrictions">'.
                   3343:               '<tr><th>'.&mt('Parts').'</th><th>'.&mt('Section(s)').
                   3344:               '</th><th>'.&mt('Group(s)').'</th></tr><tr><td>');
1.211     www      3345:     &partmenu($r,\%allparts,\@psprt);
1.317     albertel 3346:     $r->print('</td><td>');
1.211     www      3347:     &sectionmenu($r,\@selected_sections);
1.317     albertel 3348:     $r->print('</td><td>');
1.269     raeburn  3349:     &groupmenu($r,\@selected_groups);
                   3350:     $r->print('</td></tr></table>');
1.214     www      3351:     $r->print('</td></tr></table>');
                   3352:  
                   3353:     my $sortorder=$env{'form.sortorder'};
                   3354:     unless ($sortorder) { $sortorder='realmstudent'; }
                   3355:     &sortmenu($r,$sortorder);
                   3356: 
                   3357:     $r->print('<p><input type="submit" name="dis" value="'.&mt('Display').'" /></p>');
1.211     www      3358: 
                   3359: # Build the list data hash from the specified parms
                   3360: 
                   3361:     my $listdata;
                   3362:     %{$listdata}=();
                   3363: 
                   3364:     foreach my $cat (@pscat) {
1.269     raeburn  3365:         &secgroup_lister($cat,$pschp,$parmlev,$listdata,\@psprt,\@selected_sections,\%defkeytype,\%allmaps,\@ids,\%symbp);
                   3366:         &secgroup_lister($cat,$pschp,$parmlev,$listdata,\@psprt,\@selected_groups,\%defkeytype,\%allmaps,\@ids,\%symbp);
1.211     www      3367:     }
                   3368: 
1.212     www      3369:     if (($env{'form.store'}) || ($env{'form.dis'})) {
1.211     www      3370: 
1.212     www      3371: 	if ($env{'form.store'}) { &storedata($r,$crs,$dom); }
1.211     www      3372: 
                   3373: # Read modified data
                   3374: 
                   3375: 	my $resourcedata=&readdata($crs,$dom);
                   3376: 
                   3377: # List data
                   3378: 
1.214     www      3379: 	&listdata($r,$resourcedata,$listdata,$sortorder);
1.211     www      3380:     }
                   3381:     $r->print(&tableend().
1.365     albertel 3382: 	     ((($env{'form.store'}) || ($env{'form.dis'}))?'<p><input type="submit" name="store" value="'.&mt('Save').'" /></p>':'').
1.280     albertel 3383: 	      '</form>'.&Apache::loncommon::end_page());
1.208     www      3384: }
                   3385: 
1.269     raeburn  3386: sub secgroup_lister {
                   3387:     my ($cat,$pschp,$parmlev,$listdata,$psprt,$selections,$defkeytype,$allmaps,$ids,$symbp) = @_;
                   3388:     foreach my $item (@{$selections}) {
                   3389:         foreach my $part (@{$psprt}) {
                   3390:             my $rootparmkey=$env{'request.course.id'};
                   3391:             if (($item ne 'all') && ($item ne 'none') && ($item)) {
                   3392:                 $rootparmkey.='.['.$item.']';
                   3393:             }
                   3394:             if ($parmlev eq 'general') {
                   3395: # course-level parameter
                   3396:                 my $newparmkey=$rootparmkey.'.'.$part.'.'.$cat;
                   3397:                 $$listdata{$newparmkey}=1;
                   3398:                 $$listdata{$newparmkey.'.type'}=$$defkeytype{$cat};
                   3399:             } elsif ($parmlev eq 'map') {
                   3400: # map-level parameter
                   3401:                 foreach my $mapid (keys %{$allmaps}) {
                   3402:                     if (($pschp ne 'all') && ($pschp ne $mapid)) { next; }
                   3403:                     my $newparmkey=$rootparmkey.'.'.$$allmaps{$mapid}.'___(all).'.$part.'.'.$cat;
                   3404:                     $$listdata{$newparmkey}=1;
                   3405:                     $$listdata{$newparmkey.'.type'}=$$defkeytype{$cat};
                   3406:                 }
                   3407:             } else {
                   3408: # resource-level parameter
                   3409:                 foreach my $rid (@{$ids}) {
                   3410:                     my ($map,$resid,$url)=&Apache::lonnet::decode_symb($$symbp{$rid});
                   3411:                     if (($pschp ne 'all') && ($$allmaps{$pschp} ne $map)) { next; }
                   3412:                     my $newparmkey=$rootparmkey.'.'.$$symbp{$rid}.'.'.$part.'.'.$cat;
                   3413:                     $$listdata{$newparmkey}=1;
                   3414:                     $$listdata{$newparmkey.'.type'}=$$defkeytype{$cat};
                   3415:                 }
                   3416:             }
                   3417:         }
                   3418:     }
                   3419: }
                   3420: 
1.208     www      3421: sub overview {
1.280     albertel 3422:     my ($r) = @_;
1.208     www      3423:     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3424:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
1.280     albertel 3425: 
1.414     droeschl 3426:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=setoverview',
                   3427: 	text=>"Overview Mode"});
1.280     albertel 3428:     my $start_page=&Apache::loncommon::start_page('Modify Parameters');
1.298     albertel 3429:     my $breadcrumbs = &Apache::lonhtmlcommon::breadcrumbs('Overview');
1.208     www      3430:     $r->print(<<ENDOVER);
1.280     albertel 3431: $start_page
1.208     www      3432: $breadcrumbs
1.232     albertel 3433: <form method="post" action="/adm/parmset?action=setoverview" name="parmform">
1.208     www      3434: ENDOVER
                   3435: # Store modified
                   3436: 
                   3437:     &storedata($r,$crs,$dom);
                   3438: 
                   3439: # Read modified data
                   3440: 
                   3441:     my $resourcedata=&readdata($crs,$dom);
                   3442: 
1.214     www      3443: 
                   3444:     my $sortorder=$env{'form.sortorder'};
                   3445:     unless ($sortorder) { $sortorder='realmstudent'; }
                   3446:     &sortmenu($r,$sortorder);
                   3447: 
1.208     www      3448: # List data
                   3449: 
1.214     www      3450:     my $foundkeys=&listdata($r,$resourcedata,$resourcedata,$sortorder);
1.208     www      3451: 
1.145     www      3452:     $r->print(&tableend().'<p>'.
1.280     albertel 3453: 	($foundkeys?'<input type="submit" value="'.&mt('Modify Parameters').'" />':&mt('There are no parameters.')).'</p></form>'.
                   3454: 	      &Apache::loncommon::end_page());
1.120     www      3455: }
1.121     www      3456: 
1.333     albertel 3457: sub clean_parameters {
                   3458:     my ($r) = @_;
                   3459:     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3460:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
                   3461: 
1.414     droeschl 3462:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=cleanparameters',
                   3463:     	text=>"Clean Parameters"});
1.333     albertel 3464:     my $start_page=&Apache::loncommon::start_page('Clean Parameters');
                   3465:     my $breadcrumbs = &Apache::lonhtmlcommon::breadcrumbs('Clean');
                   3466:     $r->print(<<ENDOVER);
                   3467: $start_page
                   3468: $breadcrumbs
                   3469: <form method="post" action="/adm/parmset?action=cleanparameters" name="parmform">
                   3470: ENDOVER
                   3471: # Store modified
                   3472: 
                   3473:     &storedata($r,$crs,$dom);
                   3474: 
                   3475: # Read modified data
                   3476: 
                   3477:     my $resourcedata=&readdata($crs,$dom);
                   3478: 
                   3479: # List data
                   3480: 
                   3481:     $r->print('<h3>'.
                   3482: 	      &mt('These parameters refer to resources that do not exist.').
                   3483: 	      '</h3>'.
1.415     schafran 3484: 	      '<input type="submit" value="'.&mt('Delete Selected').'" />'.'<br />'.
1.333     albertel 3485: 	      '<br />');
                   3486:     $r->print(&Apache::loncommon::start_data_table().
                   3487: 	      '<tr>'.
                   3488: 	      '<th>'.&mt('Delete').'</th>'.
                   3489: 	      '<th>'.&mt('Parameter').'</th>'.
                   3490: 	      '</tr>');
                   3491:     foreach my $thiskey (sort(keys(%{$resourcedata}))) {
                   3492: 	next if (!exists($resourcedata->{$thiskey.'.type'})
                   3493: 		 && $thiskey=~/\.type$/);
                   3494: 	my %data = &parse_key($thiskey);
1.383     albertel 3495: 	if (1) { #exists($data{'realm_exists'})
                   3496: 	    #&& !$data{'realm_exists'}) {
1.333     albertel 3497: 	    $r->print(&Apache::loncommon::start_data_table_row().
                   3498: 		      '<tr>'.
                   3499: 		      '<td><input type="checkbox" name="del_'.$thiskey.'" /></td>'		      );
                   3500: 	    
                   3501: 	    $r->print('<td>');
1.362     albertel 3502: 	    my $display_value = $resourcedata->{$thiskey};
                   3503: 	    if (&isdateparm($resourcedata->{$thiskey.'.type'})) {
                   3504: 		$display_value = 
                   3505: 		    &Apache::lonlocal::locallocaltime($display_value);
                   3506: 	    }
1.333     albertel 3507: 	    $r->print(&mt('Parameter: "[_1]" with value: "[_2]"',
                   3508: 			  &standard_parameter_names($data{'parameter_name'}),
                   3509: 			  $resourcedata->{$thiskey}));
                   3510: 	    $r->print('<br />');
                   3511: 	    if ($data{'scope_type'} eq 'all') {
                   3512: 		$r->print(&mt('All users'));
                   3513: 	    } elsif ($data{'scope_type'} eq 'user') {
                   3514: 		$r->print(&mt('User: [_1]',join(':',@{$data{'scope'}})));
                   3515: 	    } elsif ($data{'scope_type'} eq 'section') {
                   3516: 		$r->print(&mt('Section: [_1]',$data{'scope'}));
                   3517: 	    } elsif ($data{'scope_type'} eq 'group') {
                   3518: 		$r->print(&mt('Group: [_1]',$data{'scope'}));
                   3519: 	    }
                   3520: 	    $r->print('<br />');
                   3521: 	    if ($data{'realm_type'} eq 'all') {
                   3522: 		$r->print(&mt('All Resources'));
                   3523: 	    } elsif ($data{'realm_type'} eq 'folder') {
                   3524: 		$r->print(&mt('Folder: [_1]'),$data{'realm'});
                   3525: 	    } elsif ($data{'realm_type'} eq 'symb') {
                   3526: 		my ($map,$resid,$url) =
                   3527: 		    &Apache::lonnet::decode_symb($data{'realm'});
                   3528: 		$r->print(&mt('Resource: [_1] <br />&nbsp;&nbsp;&nbsp;with ID: [_2] <br />&nbsp;&nbsp;&nbsp;in folder [_3]',
                   3529: 			      $url,$resid,$map));
                   3530: 	    }
1.362     albertel 3531: 	    $r->print(' <br />&nbsp;&nbsp;&nbsp;'.&mt('Part: [_1]',$data{'parameter_part'}));
1.333     albertel 3532: 	    $r->print('</td></tr>');
                   3533: 	
                   3534: 	}
                   3535:     }
                   3536:     $r->print(&Apache::loncommon::end_data_table().'<p>'.
1.415     schafran 3537: 	      '<input type="submit" value="'.&mt('Delete Selected').'" />'.
1.333     albertel 3538: 	      '</p></form>'.
                   3539: 	      &Apache::loncommon::end_page());
                   3540: }
                   3541: 
1.390     www      3542: sub date_shift_one {
                   3543:     my ($r) = @_;
                   3544:     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3545:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
                   3546: 
1.414     droeschl 3547:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=dateshift1&timebase='.$env{'form.timebase'},
                   3548:     	text=>"Shifting Dates"});
1.390     www      3549:     my $start_page=&Apache::loncommon::start_page('Shift Dates');
                   3550:     my $breadcrumbs = &Apache::lonhtmlcommon::breadcrumbs('Shift');
                   3551:     $r->print(<<ENDOVER);
                   3552: $start_page
                   3553: $breadcrumbs
                   3554: ENDOVER
                   3555:     $r->print('<form name="shiftform" method="post">'.
                   3556:               '<table><tr><td>'.&mt('Currently set date:').'</td><td>'.
                   3557:               &Apache::lonlocal::locallocaltime($env{'form.timebase'}).'</td></tr>'.
                   3558:               '<tr><td>'.&mt('Shifted date:').'</td><td>'.
                   3559:                     &Apache::lonhtmlcommon::date_setter('shiftform',
                   3560:                                                         'timeshifted',
                   3561:                                                         $env{'form.timebase'},,
                   3562:                                                         '').
                   3563:               '</td></tr></table>'.
                   3564:               '<input type="hidden" name="action" value="dateshift2" />'.
                   3565:               '<input type="hidden" name="timebase" value="'.$env{'form.timebase'}.'" />'.
                   3566:               '<input type="submit" value="'.&mt('Shift all dates accordingly').'" /></form>');
                   3567:     $r->print(&Apache::loncommon::end_page());
                   3568: }
                   3569: 
                   3570: sub date_shift_two {
                   3571:     my ($r) = @_;
                   3572:     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3573:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
1.414     droeschl 3574:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=dateshift1&timebase='.$env{'form.timebase'},
                   3575:     	text=>"Shifting Dates"});
1.390     www      3576:     my $start_page=&Apache::loncommon::start_page('Shift Dates');
                   3577:     my $breadcrumbs = &Apache::lonhtmlcommon::breadcrumbs('Shift');
                   3578:     $r->print(<<ENDOVER);
                   3579: $start_page
                   3580: $breadcrumbs
                   3581: ENDOVER
                   3582:     my $timeshifted=&Apache::lonhtmlcommon::get_date_from_form('timeshifted');
                   3583:     $r->print(&mt('Shifting all dates such that [_1] becomes [_2]',
                   3584:               &Apache::lonlocal::locallocaltime($env{'form.timebase'}),
                   3585:               &Apache::lonlocal::locallocaltime($timeshifted)));
                   3586:     my $delta=$timeshifted-$env{'form.timebase'};
                   3587:     &dateshift($delta);
                   3588:     $r->print(&Apache::loncommon::end_page());
                   3589: }
                   3590: 
1.333     albertel 3591: sub parse_key {
                   3592:     my ($key) = @_;
                   3593:     my %data;
                   3594:     my ($middle,$part,$name)=
                   3595: 	($key=~/^$env{'request.course.id'}\.(?:(.+)\.)*([\w\s]+)\.(\w+)$/);
                   3596:     $data{'scope_type'} = 'all';
                   3597:     if ($middle=~/^\[(.*)\]/) {
                   3598:        	$data{'scope'} = $1;
1.350     albertel 3599: 	if ($data{'scope'}=~/^useropt\:($match_username)\:($match_domain)/) {
1.333     albertel 3600: 	    $data{'scope_type'} = 'user';
                   3601: 	    $data{'scope'} = [$1,$2];
                   3602: 	} else {
                   3603: 	    #FIXME check for group scope
                   3604: 	    $data{'scope_type'} = 'section';
                   3605: 	}
                   3606: 	$middle=~s/^\[(.*)\]//;
                   3607:     }
                   3608:     $middle=~s/\.+$//;
                   3609:     $middle=~s/^\.+//;
                   3610:     $data{'realm_type'}='all';
                   3611:     if ($middle=~/^(.+)\_\_\_\(all\)$/) {
                   3612: 	$data{'realm'} = $1;
                   3613: 	$data{'realm_type'} = 'folder';
                   3614: 	$data{'realm_title'} = &Apache::lonnet::gettitle($data{'realm'});
                   3615: 	($data{'realm_exists'}) = &Apache::lonnet::is_on_map($data{'realm'});
                   3616:     } elsif ($middle) {
                   3617: 	$data{'realm'} = $middle;
                   3618: 	$data{'realm_type'} = 'symb';
                   3619: 	$data{'realm_title'} = &Apache::lonnet::gettitle($data{'realm'});
                   3620: 	my ($map,$resid,$url) = &Apache::lonnet::decode_symb($data{'realm'});
                   3621: 	$data{'realm_exists'} = &Apache::lonnet::symbverify($data{'realm'},$url);
                   3622:     }
                   3623:     
                   3624:     $data{'parameter_part'} = $part;
                   3625:     $data{'parameter_name'} = $name;
                   3626: 
                   3627:     return %data;
                   3628: }
                   3629: 
1.239     raeburn  3630: 
1.178     raeburn  3631: 
1.239     raeburn  3632: sub extract_cloners {
                   3633:     my ($clonelist,$allowclone) = @_;
                   3634:     if ($clonelist =~ /,/) {
1.380     albertel 3635:         @{$allowclone} = split(/,/,$clonelist);
1.239     raeburn  3636:     } else {
                   3637:         $$allowclone[0] = $clonelist;
                   3638:     }
                   3639: }
                   3640: 
                   3641: sub check_cloners {
                   3642:     my ($clonelist,$oldcloner) = @_;
1.379     raeburn  3643:     my ($clean_clonelist,%disallowed);
1.239     raeburn  3644:     my @allowclone = ();
                   3645:     &extract_cloners($$clonelist,\@allowclone);
                   3646:     foreach my $currclone (@allowclone) {
1.380     albertel 3647:         if (!grep(/^\Q$currclone\E$/,@$oldcloner)) {
1.379     raeburn  3648:             if ($currclone eq '*') {
                   3649:                 $clean_clonelist .= $currclone.',';
                   3650:             } else {
                   3651:                 my ($uname,$udom) = split(/:/,$currclone);
                   3652:                 if ($uname eq '*') {
                   3653:                     if ($udom =~ /^$match_domain$/) {
1.380     albertel 3654:                         if (!&Apache::lonnet::domain($udom)) {
1.379     raeburn  3655:                             $disallowed{'domain'} .= $currclone.',';
                   3656:                         } else {
                   3657:                             $clean_clonelist .= $currclone.',';
                   3658:                         }
                   3659:                     } else {
                   3660:                         $disallowed{'format'} .= $currclone.',';
                   3661:                     }
                   3662:                 } elsif ($currclone !~/^($match_username)\:($match_domain)$/) {
                   3663:                     $disallowed{'format'} .= $currclone.','; 
1.239     raeburn  3664:                 } else {
1.379     raeburn  3665:                     if (&Apache::lonnet::homeserver($uname,$udom) eq 'no_host') {
                   3666:                         $disallowed{'newuser'} .= $currclone.',';
                   3667:                     } else {
                   3668:                         $clean_clonelist .= $currclone.',';
                   3669:                     }
1.239     raeburn  3670:                 }
                   3671:             }
                   3672:         } else {
                   3673:             $clean_clonelist .= $currclone.',';
                   3674:         }
                   3675:     }
1.379     raeburn  3676:     foreach my $key (keys(%disallowed)) {
                   3677:         $disallowed{$key} =~ s/,$//;
1.239     raeburn  3678:     }
                   3679:     if ($clean_clonelist) {
                   3680:         $clean_clonelist =~ s/,$//;
                   3681:     }
                   3682:     $$clonelist = $clean_clonelist;
1.379     raeburn  3683:     return %disallowed;
                   3684: }
1.178     raeburn  3685: 
                   3686: sub change_clone {
                   3687:     my ($clonelist,$oldcloner) = @_;
                   3688:     my ($uname,$udom);
1.190     albertel 3689:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   3690:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
1.178     raeburn  3691:     my $clone_crs = $cnum.':'.$cdom;
                   3692:     
                   3693:     if ($cnum && $cdom) {
1.239     raeburn  3694:         my @allowclone;
                   3695:         &extract_cloners($clonelist,\@allowclone);
1.178     raeburn  3696:         foreach my $currclone (@allowclone) {
1.380     albertel 3697:             if (!grep(/^$currclone$/,@$oldcloner)) {
1.379     raeburn  3698:                 if ($currclone ne '*') {
1.380     albertel 3699:                     ($uname,$udom) = split(/:/,$currclone);
1.379     raeburn  3700:                     if ($uname && $udom && $uname ne '*') {
                   3701:                         if (&Apache::lonnet::homeserver($uname,$udom) ne 'no_host') {
                   3702:                             my %currclonecrs = &Apache::lonnet::dump('environment',$udom,$uname,'cloneable');
                   3703:                             if ($currclonecrs{'cloneable'} !~ /\Q$clone_crs\E/) {
                   3704:                                 if ($currclonecrs{'cloneable'} eq '') {
                   3705:                                     $currclonecrs{'cloneable'} = $clone_crs;
                   3706:                                 } else {
                   3707:                                     $currclonecrs{'cloneable'} .= ','.$clone_crs;
                   3708:                                 }
                   3709:                                 &Apache::lonnet::put('environment',\%currclonecrs,$udom,$uname);
1.178     raeburn  3710:                             }
                   3711:                         }
                   3712:                     }
                   3713:                 }
                   3714:             }
                   3715:         }
                   3716:         foreach my $oldclone (@$oldcloner) {
1.380     albertel 3717:             if (!grep(/^\Q$oldclone\E$/,@allowclone)) {
1.379     raeburn  3718:                 if ($oldclone ne '*') {
1.380     albertel 3719:                     ($uname,$udom) = split(/:/,$oldclone);
1.379     raeburn  3720:                     if ($uname && $udom && $uname ne '*' ) {
                   3721:                         if (&Apache::lonnet::homeserver($uname,$udom) ne 'no_host') {
                   3722:                             my %currclonecrs = &Apache::lonnet::dump('environment',$udom,$uname,'cloneable');
                   3723:                             my %newclonecrs = ();
                   3724:                             if ($currclonecrs{'cloneable'} =~ /\Q$clone_crs\E/) {
                   3725:                                 if ($currclonecrs{'cloneable'} =~ /,/) {
                   3726:                                     my @currclonecrs = split/,/,$currclonecrs{'cloneable'};
                   3727:                                     foreach my $crs (@currclonecrs) {
                   3728:                                         if ($crs ne $clone_crs) {
                   3729:                                             $newclonecrs{'cloneable'} .= $crs.',';
                   3730:                                         }
1.178     raeburn  3731:                                     }
1.379     raeburn  3732:                                     $newclonecrs{'cloneable'} =~ s/,$//;
                   3733:                                 } else {
                   3734:                                     $newclonecrs{'cloneable'} = '';
1.178     raeburn  3735:                                 }
1.379     raeburn  3736:                                 &Apache::lonnet::put('environment',\%newclonecrs,$udom,$uname);
1.178     raeburn  3737:                             }
                   3738:                         }
                   3739:                     }
                   3740:                 }
                   3741:             }
                   3742:         }
                   3743:     }
                   3744: }
                   3745: 
1.193     albertel 3746: 
                   3747: 
1.416     jms      3748: sub header {
                   3749:     return &Apache::loncommon::start_page('Parameter Manager');
                   3750: }
1.193     albertel 3751: 
                   3752: 
                   3753: 
                   3754: sub print_main_menu {
                   3755:     my ($r,$parm_permission)=@_;
                   3756:     #
1.414     droeschl 3757:     $r->print(&header());
                   3758:     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Parameter Manager'));
1.193     albertel 3759:     $r->print(<<ENDMAINFORMHEAD);
                   3760: <form method="post" enctype="multipart/form-data"
                   3761:       action="/adm/parmset" name="studentform">
                   3762: ENDMAINFORMHEAD
                   3763: #
1.195     albertel 3764:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   3765:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
1.268     albertel 3766:     my $vgr  = &Apache::lonnet::allowed('vgr',$env{'request.course.id'});
1.366     albertel 3767:     my $mgr  = &Apache::lonnet::allowed('mgr',$env{'request.course.id'});
1.268     albertel 3768: 
1.417     droeschl 3769: 
1.193     albertel 3770:     my @menu =
1.417     droeschl 3771:         ( { categorytitle=>'Settings for this Course',
1.414     droeschl 3772: 	    items => [
1.417     droeschl 3773: 		  { linktext => 'Course Environment',
1.414     droeschl 3774: 		    url => '/adm/parmset?action=crsenv',
                   3775: 		    permission => $parm_permission,
1.417     droeschl 3776: 		    linktitle =>'Edit environment settings for this course.'  ,
                   3777: 		    icon => 'preferences-desktop-remote-desktop.png'  ,
                   3778: 		    #help => 'Course_Environment',
1.414     droeschl 3779: 		    },
1.417     droeschl 3780: 		  { linktext => 'Portfolio Metadata',
1.414     droeschl 3781: 		    url => '/adm/parmset?action=setrestrictmeta',
                   3782: 		    permission => $parm_permission,
1.417     droeschl 3783: 		    linktitle => 'Restrict metadata for this course.' ,
                   3784: 		    icon =>'contact-new.png'   ,
1.414     droeschl 3785: 		    },
                   3786: 		  { linktext => 'Manage Course Slots',
                   3787: 		    url => '/adm/slotrequest?command=showslots',
                   3788: 		    permission => $vgr,
1.417     droeschl 3789: 		    linktitle =>'Manage slots for this course.'  ,
                   3790: 		    icon => 'format-justify-fill.png'  ,
1.414     droeschl 3791: 		    },
                   3792: 		  { linktext => 'Reset Student Access Times',
                   3793: 		    url => '/adm/helper/resettimes.helper',
                   3794: 		    permission => $mgr,
1.417     droeschl 3795: 		    linktitle =>'Reset access times for folders/maps, resources or the course.'  ,
                   3796: 		    icon => 'start-here.png'  ,
1.414     droeschl 3797: 		    },
                   3798: 
                   3799: 		  { linktext => 'Set Parameter Setting Default Actions',
                   3800: 		    url => '/adm/parmset?action=setdefaults',
                   3801: 		    permission => $parm_permission,
1.417     droeschl 3802: 		    linktitle =>'Set default actions for parameters.'  ,
                   3803: 		    icon => 'folder-new.png'  ,
1.414     droeschl 3804: 		    }]},          
1.417     droeschl 3805: 	  { categorytitle => 'New and Existing Parameter Settings for Resources',
1.414     droeschl 3806: 	    items => [
1.417     droeschl 3807: 		  { linktext => 'Edit Resource Parameters - Helper Mode',
1.414     droeschl 3808: 		    url => '/adm/helper/parameter.helper',
                   3809: 		    permission => $parm_permission,
1.417     droeschl 3810: 		    linktitle =>'Set/Modify resource parameters in helper mode.'  ,
                   3811: 		    icon => 'dialog-information.png'  ,
                   3812: 		    #help => 'Parameter_Helper',
1.414     droeschl 3813: 		    },
1.417     droeschl 3814: 		  { linktext => 'Edit Resource Parameters - Overview Mode',
1.414     droeschl 3815: 		    url => '/adm/parmset?action=newoverview',
                   3816: 		    permission => $parm_permission,
1.417     droeschl 3817: 		    linktitle =>'Set/Modify resource parameters in overview mode.'  ,
                   3818: 		    icon => 'edit-find.png'  ,
                   3819: 		    #help => 'Parameter_Overview',
1.414     droeschl 3820: 		    },
1.417     droeschl 3821: 		  { linktext => 'Edit Resource Parameters - Table Mode',
1.414     droeschl 3822: 		    url => '/adm/parmset?action=settable',
                   3823: 		    permission => $parm_permission,
1.417     droeschl 3824: 		    linktitle =>'Set/Modify resource parameters in table mode.'  ,
                   3825: 		    icon => 'edit-copy.png'  ,
                   3826: 		    #help => 'Table_Mode',
1.414     droeschl 3827: 		    }]},
1.417     droeschl 3828:            { categorytitle => 'Existing Parameter Settings for Resources',
1.414     droeschl 3829: 	     items => [
                   3830: 		  { linktext => 'Modify Resource Parameters - Overview Mode',
                   3831: 		    url => '/adm/parmset?action=setoverview',
                   3832: 		    permission => $parm_permission,
1.417     droeschl 3833: 		    linktitle =>'Set/Modify existing resource parameters in overview mode.'  ,
                   3834: 		    icon => 'preferences-desktop-wallpaper.png'  ,
                   3835: 		    #help => 'Parameter_Overview',
1.414     droeschl 3836: 		    },          
1.417     droeschl 3837: 		  { linktext => 'Change Log',
1.414     droeschl 3838: 		    url => '/adm/parmset?action=parameterchangelog',
                   3839: 		    permission => $parm_permission,
1.417     droeschl 3840: 		    linktitle =>'View parameter and course blog posting/user notification change log.'  ,
                   3841: 		    icon => 'emblem-system.png'   ,
1.414     droeschl 3842: 		    }]}
1.193     albertel 3843:           );
1.414     droeschl 3844:     $r->print(&Apache::lonhtmlcommon::generate_menu(@menu));
1.193     albertel 3845:     return;
                   3846: }
1.414     droeschl 3847: 
1.416     jms      3848: 
                   3849: 
1.252     banghart 3850: sub output_row {
1.347     banghart 3851:     my ($r, $field_name, $field_text, $added_flag) = @_;
1.252     banghart 3852:     my $output;
1.263     banghart 3853:     my $options=$env{'course.'.$env{'request.course.id'}.'.metadata.'.$field_name.'.options'};
                   3854:     my $values=$env{'course.'.$env{'request.course.id'}.'.metadata.'.$field_name.'.values'};
1.337     banghart 3855:     if (!defined($options)) {
1.254     banghart 3856:         $options = 'active,stuadd';
1.261     banghart 3857:         $values = '';
1.252     banghart 3858:     }
1.337     banghart 3859:     if (!($options =~ /deleted/)) {
                   3860:         my @options= ( ['active', 'Show to student'],
1.418     schafran 3861:                     ['stuadd', 'Provide text area for students to type metadata'],
1.351     banghart 3862:                     ['choices','Provide choices for students to select from']);
                   3863: #		   ['onlyone','Student may select only one choice']);
1.337     banghart 3864:         if ($added_flag) {
                   3865:             push @options,['deleted', 'Delete Metadata Field'];
                   3866:         }
1.351     banghart 3867:        $output = &Apache::loncommon::start_data_table_row();
                   3868:         $output .= '<td><span class="LC_metadata"><strong>'.$field_text.':</strong></span></td>';
                   3869:         $output .= &Apache::loncommon::end_data_table_row();
1.337     banghart 3870:         foreach my $opt (@options) {
                   3871: 	    my $checked = ($options =~ m/$opt->[0]/) ? ' checked="checked" ' : '' ;
1.347     banghart 3872: 	    $output .= &Apache::loncommon::continue_data_table_row();
1.351     banghart 3873: 	    $output .= '<td>'.('&nbsp;' x 5).'<span class="LC_metadata"><label>
                   3874: 	               <input type="checkbox" name="'.
                   3875: 	               $field_name.'_'.$opt->[0].'" value="yes"'.$checked.' />'.
                   3876: 	               &mt($opt->[1]).'</label></span> </td>';
1.347     banghart 3877: 	    $output .= &Apache::loncommon::end_data_table_row();
1.337     banghart 3878: 	}
1.351     banghart 3879:         $output .= &Apache::loncommon::continue_data_table_row();
                   3880:         $output .= '<td>'.('&nbsp;' x 10).'<span class="LC_metadata"><input name="'.$field_name.'_values" type="text" value="'.$values.'" size="80" /></span></td>';
                   3881:         $output .= &Apache::loncommon::end_data_table_row();
                   3882:         my $multiple_checked;
                   3883:         my $single_checked;
                   3884:         if ($options =~ m/onlyone/) {
                   3885:             $multiple_checked = "";
                   3886:             $single_checked = " CHECKED ";
                   3887:         } else {
                   3888:             $multiple_checked = " CHECKED ";
                   3889:             $single_checked = "";
                   3890:         }
                   3891: 	$output .= &Apache::loncommon::continue_data_table_row();
                   3892: 	$output .= '<td>'.('&nbsp;' x 10).'<span class="LC_metadata">
                   3893: 	            <input type="radio" name="'.$field_name.'_onlyone" value="multiple" '.$multiple_checked .'/>
1.418     schafran 3894: 	            '.&mt('Student may select multiple choices from list').'</span></td>';
1.351     banghart 3895: 	$output .= &Apache::loncommon::end_data_table_row();
                   3896: 	$output .= &Apache::loncommon::continue_data_table_row();
                   3897: 	$output .= '<td>'.('&nbsp;' x 10).'<span class="LC_metadata">
                   3898: 	            <input type="radio" name="'.$field_name.'_onlyone"  value="single" '.$single_checked.'/>
1.418     schafran 3899: 	            '.&mt('Student may select only one choice from list').'</span></td>';
1.351     banghart 3900: 	$output .= &Apache::loncommon::end_data_table_row();
1.252     banghart 3901:     }
                   3902:     return ($output);
                   3903: }
1.416     jms      3904: 
                   3905: 
                   3906: 
1.340     banghart 3907: sub order_meta_fields {
                   3908:     my ($r)=@_;
                   3909:     my $idx = 1;
                   3910:     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3911:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
1.341     banghart 3912:     $r->print(&Apache::loncommon::start_page('Order Metadata Fields'));
1.414     droeschl 3913:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=addmetadata',
                   3914:     	text=>"Add Metadata Field"});
1.345     banghart 3915:     &Apache::lonhtmlcommon::add_breadcrumb
                   3916:             ({href=>"/adm/parmset?action=setrestrictmeta",
                   3917:               text=>"Restrict Metadata"},
                   3918:              {text=>"Order Metadata"});
                   3919:     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Order Metadata'));
1.340     banghart 3920:     if ($env{'form.storeorder'}) {
                   3921:         my $newpos = $env{'form.newpos'} - 1;
                   3922:         my $currentpos = $env{'form.currentpos'} - 1;
                   3923:         my @neworder = ();
                   3924:         my @oldorder = split /,/,$env{'course.'.$env{'request.course.id'}.'.metadata.addedorder'};
                   3925:         my $i;
1.341     banghart 3926:         if ($newpos > $currentpos) {
1.340     banghart 3927:         # moving stuff up
                   3928:             for ($i=0;$i<$currentpos;$i++) {
                   3929:         	$neworder[$i]=$oldorder[$i];
                   3930:             }
                   3931:             for ($i=$currentpos;$i<$newpos;$i++) {
                   3932:         	$neworder[$i]=$oldorder[$i+1];
                   3933:             }
                   3934:             $neworder[$newpos]=$oldorder[$currentpos];
                   3935:             for ($i=$newpos+1;$i<=$#oldorder;$i++) {
                   3936:         	$neworder[$i]=$oldorder[$i];
                   3937:             }
                   3938:         } else {
                   3939:         # moving stuff down
                   3940:     	    for ($i=0;$i<$newpos;$i++) {
                   3941:     	        $neworder[$i]=$oldorder[$i];
                   3942:     	    }
                   3943:     	    $neworder[$newpos]=$oldorder[$currentpos];
                   3944:     	    for ($i=$newpos+1;$i<$currentpos+1;$i++) {
                   3945:     	        $neworder[$i]=$oldorder[$i-1];
                   3946:     	    }
                   3947:     	    for ($i=$currentpos+1;$i<=$#oldorder;$i++) {
                   3948:     	        $neworder[$i]=$oldorder[$i];
                   3949:     	    }
                   3950:         }
                   3951: 	my $ordered_fields = join ",", @neworder;
1.343     banghart 3952:         my $put_result = &Apache::lonnet::put('environment',
                   3953:                            {'metadata.addedorder'=>$ordered_fields},$dom,$crs); 	
1.393     raeburn  3954: 	&Apache::lonnet::appenv({'course.'.$env{'request.course.id'}.'.metadata.addedorder' => $ordered_fields});
1.340     banghart 3955:     }
1.357     raeburn  3956:     my $fields = &get_added_meta_fieldnames($env{'request.course.id'});
1.341     banghart 3957:     my $ordered_fields;
1.340     banghart 3958:     my @fields_in_order = split /,/,$env{'course.'.$env{'request.course.id'}.'.metadata.addedorder'};
                   3959:     if (!@fields_in_order) {
                   3960:         # no order found, pick sorted order then create metadata.addedorder key.
                   3961:         foreach my $key (sort keys %$fields) {
                   3962:             push @fields_in_order, $key;
1.341     banghart 3963:             $ordered_fields = join ",", @fields_in_order;
1.340     banghart 3964:         }
1.341     banghart 3965:         my $put_result = &Apache::lonnet::put('environment',
                   3966:                             {'metadata.addedorder'=>$ordered_fields},$dom,$crs); 
                   3967:     } 
1.340     banghart 3968:     $r->print('<table>');
                   3969:     my $num_fields = scalar(@fields_in_order);
                   3970:     foreach my $key (@fields_in_order) {
                   3971:         $r->print('<tr><td>');
                   3972:         $r->print('<form method="post" action="">');
                   3973:         $r->print('<select name="newpos" onChange="this.form.submit()">');
                   3974:         for (my $i = 1;$i le $num_fields;$i ++) {
                   3975:             if ($i eq $idx) {
                   3976:                 $r->print('<option value="'.$i.'"  SELECTED>('.$i.')</option>');
                   3977:             } else {
                   3978:                 $r->print('<option value="'.$i.'">'.$i.'</option>');
                   3979:             }
                   3980:         }
                   3981:         $r->print('</select></td><td>');
                   3982:         $r->print('<input type="hidden" name="currentpos" value="'.$idx.'" />');
                   3983:         $r->print('<input type="hidden" name="storeorder" value="true" />');
                   3984:         $r->print('</form>');
                   3985:         $r->print($$fields{$key}.'</td></tr>');
                   3986:         $idx ++;
                   3987:     }
                   3988:     $r->print('</table>');
                   3989:     return 'ok';
                   3990: }
1.416     jms      3991: 
                   3992: 
1.359     banghart 3993: sub continue {
                   3994:     my $output;
                   3995:     $output .= '<form action="" method="post">';
                   3996:     $output .= '<input type="hidden" name="action" value="setrestrictmeta" />';
                   3997:     $output .= '<input type="submit" value="Continue" />';
                   3998:     return ($output);
                   3999: }
1.416     jms      4000: 
                   4001: 
1.334     banghart 4002: sub addmetafield {
                   4003:     my ($r)=@_;
1.414     droeschl 4004:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=addmetadata',
                   4005:     	text=>"Add Metadata Field"});
1.334     banghart 4006:     $r->print(&Apache::loncommon::start_page('Add Metadata Field'));
                   4007:     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Add Metadata Field'));
1.335     banghart 4008:     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   4009:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
1.339     banghart 4010:     if (exists($env{'form.undelete'})) {
1.358     banghart 4011:         my @meta_fields = &Apache::loncommon::get_env_multiple('form.undeletefield');
1.339     banghart 4012:         foreach my $meta_field(@meta_fields) {
                   4013:             my $options = $env{'course.'.$env{'request.course.id'}.'.metadata.'.$meta_field.'.options'};
                   4014:             $options =~ s/deleted//;
                   4015:             $options =~ s/,,/,/;
                   4016:             my $put_result = &Apache::lonnet::put('environment',
                   4017:                                         {'metadata.'.$meta_field.'.options'=>$options},$dom,$crs);
                   4018:                                         
                   4019:             $r->print('Undeleted Metadata Field <strong>'.$env{'course.'.$env{'request.course.id'}.'.metadata.'.$meta_field.'.added'}."</strong> with result ".$put_result.'<br />');
                   4020:         }
1.359     banghart 4021:         $r->print(&continue());
1.339     banghart 4022:     } elsif (exists($env{'form.fieldname'})) {
1.335     banghart 4023:         my $meta_field = $env{'form.fieldname'};
                   4024:         my $display_field = $env{'form.fieldname'};
                   4025:         $meta_field =~ s/\W/_/g;
1.338     banghart 4026:         $meta_field =~ tr/A-Z/a-z/;
1.335     banghart 4027:         my $put_result = &Apache::lonnet::put('environment',
                   4028:                             {'metadata.'.$meta_field.'.values'=>"",
                   4029:                              'metadata.'.$meta_field.'.added'=>"$display_field",
                   4030:                              'metadata.'.$meta_field.'.options'=>""},$dom,$crs);
1.359     banghart 4031:         $r->print('Added new Metadata Field <strong>'.$env{'form.fieldname'}."</strong> with result ".$put_result.'<br />');
                   4032:         $r->print(&continue());
1.335     banghart 4033:     } else {
1.357     raeburn  4034:         my $fields = &get_deleted_meta_fieldnames($env{'request.course.id'});
1.339     banghart 4035:         if ($fields) {
                   4036:             $r->print('You may undelete previously deleted fields.<br />Check those you wish to undelete and click Undelete.<br />');
                   4037:             $r->print('<form method="post" action="">');
                   4038:             foreach my $key(keys(%$fields)) {
1.358     banghart 4039:                 $r->print('<input type="checkbox" name="undeletefield" value="'.$key.'" />'.$$fields{$key}.'<br /');
1.339     banghart 4040:             }
                   4041:             $r->print('<input type="submit" name="undelete" value="Undelete" />');
                   4042:             $r->print('</form>');
                   4043:         }
                   4044:         $r->print('<hr /><strong>Or</strong> you may enter a new metadata field name.<form method="post" action="/adm/parmset?action=addmetadata"');
1.335     banghart 4045:         $r->print('<input type="text" name="fieldname" /><br />');
                   4046:         $r->print('<input type="submit" value="Add Metadata Field" />');
1.334     banghart 4047:     }
1.361     albertel 4048:     $r->print('</form>');
1.334     banghart 4049: }
1.416     jms      4050: 
                   4051: 
                   4052: 
1.259     banghart 4053: sub setrestrictmeta {
1.240     banghart 4054:     my ($r)=@_;
1.242     banghart 4055:     my $next_meta;
1.244     banghart 4056:     my $output;
1.245     banghart 4057:     my $item_num;
1.246     banghart 4058:     my $put_result;
1.414     droeschl 4059:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=setrestrictmeta',
                   4060:     	text=>"Restrict Metadata"});
1.280     albertel 4061:     $r->print(&Apache::loncommon::start_page('Restrict Metadata'));
1.298     albertel 4062:     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Restrict Metadata'));
1.240     banghart 4063:     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   4064:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
1.259     banghart 4065:     my $key_base = $env{'course.'.$env{'request.course.id'}.'.'};
1.252     banghart 4066:     my $save_field = '';
1.259     banghart 4067:     if ($env{'form.restrictmeta'}) {
1.254     banghart 4068:         foreach my $field (sort(keys(%env))) {
1.252     banghart 4069:             if ($field=~m/^form.(.+)_(.+)$/) {
1.254     banghart 4070:                 my $options;
1.252     banghart 4071:                 my $meta_field = $1;
                   4072:                 my $meta_key = $2;
1.253     banghart 4073:                 if ($save_field ne $meta_field) {
1.252     banghart 4074:                     $save_field = $meta_field;
1.253     banghart 4075:             	    if ($env{'form.'.$meta_field.'_stuadd'}) {
1.254     banghart 4076:             	        $options.='stuadd,';
                   4077:             	    } 
1.351     banghart 4078:             	    if ($env{'form.'.$meta_field.'_choices'}) {
                   4079:             	        $options.='choices,';
                   4080:             	    } 
                   4081:             	    if ($env{'form.'.$meta_field.'_onlyone'} eq 'single') {
1.254     banghart 4082:             	        $options.='onlyone,';
                   4083:             	    } 
                   4084:             	    if ($env{'form.'.$meta_field.'_active'}) {
                   4085:             	        $options.='active,';
1.253     banghart 4086:             	    }
1.337     banghart 4087:             	    if ($env{'form.'.$meta_field.'_deleted'}) {
                   4088:             	        $options.='deleted,';
                   4089:             	    }
1.259     banghart 4090:                     my $name = $save_field;
1.253     banghart 4091:                      $put_result = &Apache::lonnet::put('environment',
1.262     banghart 4092:                                                   {'metadata.'.$meta_field.'.options'=>$options,
                   4093:                                                    'metadata.'.$meta_field.'.values'=>$env{'form.'.$meta_field.'_values'},
1.253     banghart 4094:                                                    },$dom,$crs);
1.252     banghart 4095:                 }
                   4096:             }
                   4097:         }
                   4098:     }
1.296     albertel 4099:     &Apache::lonnet::coursedescription($env{'request.course.id'},
                   4100: 				       {'freshen_cache' => 1});
1.335     banghart 4101:     # Get the default metadata fields
1.258     albertel 4102:     my %metadata_fields = &Apache::lonmeta::fieldnames('portfolio');
1.335     banghart 4103:     # Now get possible added metadata fields
1.357     raeburn  4104:     my $added_metadata_fields = &get_added_meta_fieldnames($env{'request.course.id'});
1.346     banghart 4105:     my $row_alt = 1;
1.347     banghart 4106:     $output .= &Apache::loncommon::start_data_table();
1.258     albertel 4107:     foreach my $field (sort(keys(%metadata_fields))) {
1.265     banghart 4108:         if ($field ne 'courserestricted') {
1.346     banghart 4109:             $row_alt = $row_alt ? 0 : 1;
1.347     banghart 4110: 	    $output.= &output_row($r, $field, $metadata_fields{$field});
1.265     banghart 4111: 	}
1.255     banghart 4112:     }
1.351     banghart 4113:     my $buttons = (<<ENDButtons);
                   4114:         <input type="submit" name="restrictmeta" value="Save" />
                   4115:         </form><br />
                   4116:         <form method="post" action="/adm/parmset?action=addmetadata" name="form1">
                   4117:         <input type="submit" name="restrictmeta" value="Add a Metadata Field" />
                   4118:         </form>
                   4119:         <br />
                   4120:         <form method="post" action="/adm/parmset?action=ordermetadata" name="form2">
                   4121:         <input type="submit" name="restrictmeta" value="Order Metadata Fields" />
                   4122: ENDButtons
1.337     banghart 4123:     my $added_flag = 1;
1.335     banghart 4124:     foreach my $field (sort(keys(%$added_metadata_fields))) {
1.346     banghart 4125:         $row_alt = $row_alt ? 0 : 1;
                   4126:         $output.= &output_row($r, $field, $$added_metadata_fields{$field},$added_flag, $row_alt);
1.335     banghart 4127:     }
1.347     banghart 4128:     $output .= &Apache::loncommon::end_data_table();
1.244     banghart 4129:     $r->print(<<ENDenv);       
1.259     banghart 4130:         <form method="post" action="/adm/parmset?action=setrestrictmeta" name="form">
1.244     banghart 4131:         $output
1.351     banghart 4132:         $buttons
1.340     banghart 4133:         </form>
1.244     banghart 4134: ENDenv
1.280     albertel 4135:     $r->print(&Apache::loncommon::end_page());
1.240     banghart 4136:     return 'ok';
                   4137: }
1.416     jms      4138: 
                   4139: 
                   4140: 
1.335     banghart 4141: sub get_added_meta_fieldnames {
1.357     raeburn  4142:     my ($cid) = @_;
1.335     banghart 4143:     my %fields;
                   4144:     foreach my $key(%env) {
1.357     raeburn  4145:         if ($key =~ m/\Q$cid\E\.metadata\.(.+)\.added$/) {
1.335     banghart 4146:             my $field_name = $1;
                   4147:             my ($display_field_name) = $env{$key};
                   4148:             $fields{$field_name} = $display_field_name;
                   4149:         }
                   4150:     }
                   4151:     return \%fields;
                   4152: }
1.416     jms      4153: 
                   4154: 
                   4155: 
1.339     banghart 4156: sub get_deleted_meta_fieldnames {
1.357     raeburn  4157:     my ($cid) = @_;
1.339     banghart 4158:     my %fields;
                   4159:     foreach my $key(%env) {
1.357     raeburn  4160:         if ($key =~ m/\Q$cid\E\.metadata\.(.+)\.added$/) {
1.339     banghart 4161:             my $field_name = $1;
                   4162:             if ($env{'course.'.$env{'request.course.id'}.'.metadata.'.$field_name.'.options'} =~ m/deleted/) {
                   4163:                 my ($display_field_name) = $env{$key};
                   4164:                 $fields{$field_name} = $display_field_name;
                   4165:             }
                   4166:         }
                   4167:     }
                   4168:     return \%fields;
                   4169: }
1.220     www      4170: sub defaultsetter {
1.280     albertel 4171:     my ($r) = @_;
                   4172: 
1.414     droeschl 4173:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=setdefaults',
                   4174:     	text=>"Set Defaults"});
1.280     albertel 4175:     my $start_page = 
                   4176: 	&Apache::loncommon::start_page('Parameter Setting Default Actions');
1.298     albertel 4177:     my $breadcrumbs = &Apache::lonhtmlcommon::breadcrumbs('Defaults');
1.220     www      4178:     $r->print(<<ENDDEFHEAD);
1.280     albertel 4179: $start_page
1.220     www      4180: $breadcrumbs
                   4181: <form method="post" action="/adm/parmset?action=setdefaults" name="defaultform">
                   4182: ENDDEFHEAD
1.280     albertel 4183: 
                   4184:     my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   4185:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
1.221     www      4186:     my @ids=();
                   4187:     my %typep=();
                   4188:     my %keyp=();
                   4189:     my %allparms=();
                   4190:     my %allparts=();
                   4191:     my %allmaps=();
                   4192:     my %mapp=();
                   4193:     my %symbp=();
                   4194:     my %maptitles=();
                   4195:     my %uris=();
                   4196:     my %keyorder=&standardkeyorder();
                   4197:     my %defkeytype=();
                   4198: 
                   4199:     &extractResourceInformation(\@ids, \%typep,\%keyp, \%allparms, \%allparts, \%allmaps, 
                   4200: 				\%mapp, \%symbp,\%maptitles,\%uris,
                   4201: 				\%keyorder,\%defkeytype);
1.224     www      4202:     if ($env{'form.storerules'}) {
                   4203: 	my %newrules=();
                   4204: 	my @delrules=();
1.226     www      4205: 	my %triggers=();
1.225     albertel 4206: 	foreach my $key (keys(%env)) {
                   4207:             if ($key=~/^form\.(\w+)\_action$/) {
1.224     www      4208: 		my $tempkey=$1;
1.226     www      4209: 		my $action=$env{$key};
                   4210:                 if ($action) {
                   4211: 		    $newrules{$tempkey.'_action'}=$action;
                   4212: 		    if ($action ne 'default') {
                   4213: 			my ($whichaction,$whichparm)=($action=~/^(.*\_)([^\_]+)$/);
                   4214: 			$triggers{$whichparm}.=$tempkey.':';
                   4215: 		    }
                   4216: 		    $newrules{$tempkey.'_type'}=$defkeytype{$tempkey};
1.224     www      4217: 		    if (&isdateparm($defkeytype{$tempkey})) {
1.227     www      4218: 			$newrules{$tempkey.'_days'}=$env{'form.'.$tempkey.'_days'};
1.224     www      4219: 			$newrules{$tempkey.'_hours'}=$env{'form.'.$tempkey.'_hours'};
                   4220: 			$newrules{$tempkey.'_min'}=$env{'form.'.$tempkey.'_min'};
                   4221: 			$newrules{$tempkey.'_sec'}=$env{'form.'.$tempkey.'_sec'};
                   4222: 		    } else {
                   4223: 			$newrules{$tempkey.'_value'}=$env{'form.'.$tempkey.'_value'};
1.227     www      4224: 			$newrules{$tempkey.'_triggervalue'}=$env{'form.'.$tempkey.'_triggervalue'};
1.224     www      4225: 		    }
                   4226: 		} else {
1.225     albertel 4227: 		    push(@delrules,$tempkey.'_action');
1.226     www      4228: 		    push(@delrules,$tempkey.'_type');
1.225     albertel 4229: 		    push(@delrules,$tempkey.'_hours');
                   4230: 		    push(@delrules,$tempkey.'_min');
                   4231: 		    push(@delrules,$tempkey.'_sec');
                   4232: 		    push(@delrules,$tempkey.'_value');
1.224     www      4233: 		}
                   4234: 	    }
                   4235: 	}
1.226     www      4236: 	foreach my $key (keys %allparms) {
                   4237: 	    $newrules{$key.'_triggers'}=$triggers{$key};
                   4238: 	}
1.224     www      4239: 	&Apache::lonnet::put('parmdefactions',\%newrules,$dom,$crs);
                   4240: 	&Apache::lonnet::del('parmdefactions',\@delrules,$dom,$crs);
                   4241: 	&resetrulescache();
                   4242:     }
1.227     www      4243:     my %lt=&Apache::lonlocal::texthash('days' => 'Days',
                   4244: 				       'hours' => 'Hours',
1.221     www      4245: 				       'min' => 'Minutes',
                   4246: 				       'sec' => 'Seconds',
                   4247: 				       'yes' => 'Yes',
                   4248: 				       'no' => 'No');
1.222     www      4249:     my @standardoptions=('','default');
                   4250:     my @standarddisplay=('',&mt('Default value when manually setting'));
                   4251:     my @dateoptions=('','default');
                   4252:     my @datedisplay=('',&mt('Default value when manually setting'));
                   4253:     foreach my $tempkey (&keysindisplayorder(\%allparms,\%keyorder)) {
                   4254: 	unless ($tempkey) { next; }
                   4255: 	push @standardoptions,'when_setting_'.$tempkey;
                   4256: 	push @standarddisplay,&mt('Automatically set when setting ').$tempkey;
                   4257: 	if (&isdateparm($defkeytype{$tempkey})) {
                   4258: 	    push @dateoptions,'later_than_'.$tempkey;
                   4259: 	    push @datedisplay,&mt('Automatically set later than ').$tempkey;
                   4260: 	    push @dateoptions,'earlier_than_'.$tempkey;
                   4261: 	    push @datedisplay,&mt('Automatically set earlier than ').$tempkey;
                   4262: 	} 
                   4263:     }
1.231     www      4264: $r->print(&mt('Manual setting rules apply to all interfaces.').'<br />'.
                   4265: 	  &mt('Automatic setting rules apply to table mode interfaces only.'));
1.318     albertel 4266:     $r->print("\n".&Apache::loncommon::start_data_table().
                   4267: 	      &Apache::loncommon::start_data_table_header_row().
                   4268: 	      "<th>".&mt('Rule for parameter').'</th><th>'.
                   4269: 	      &mt('Action').'</th><th>'.&mt('Value').'</th>'.
                   4270: 	      &Apache::loncommon::end_data_table_header_row());
1.221     www      4271:     foreach my $tempkey (&keysindisplayorder(\%allparms,\%keyorder)) {
1.222     www      4272: 	unless ($tempkey) { next; }
1.318     albertel 4273: 	$r->print("\n".&Apache::loncommon::start_data_table_row().
                   4274: 		  "<td>".$allparms{$tempkey}."\n<br />(".$tempkey.')</td><td>');
1.222     www      4275: 	my $action=&rulescache($tempkey.'_action');
                   4276: 	$r->print('<select name="'.$tempkey.'_action">');
                   4277: 	if (&isdateparm($defkeytype{$tempkey})) {
                   4278: 	    for (my $i=0;$i<=$#dateoptions;$i++) {
                   4279: 		if ($dateoptions[$i]=~/\_$tempkey$/) { next; }
                   4280: 		$r->print("\n<option value='$dateoptions[$i]'".
                   4281: 			  ($dateoptions[$i] eq $action?' selected="selected"':'').
                   4282: 			  ">$datedisplay[$i]</option>");
                   4283: 	    }
                   4284: 	} else {
                   4285: 	    for (my $i=0;$i<=$#standardoptions;$i++) {
                   4286: 		if ($standardoptions[$i]=~/\_$tempkey$/) { next; }
                   4287: 		$r->print("\n<option value='$standardoptions[$i]'".
                   4288: 			  ($standardoptions[$i] eq $action?' selected="selected"':'').
                   4289: 			  ">$standarddisplay[$i]</option>");
                   4290: 	    }
                   4291: 	}
                   4292: 	$r->print('</select>');
1.227     www      4293: 	unless (&isdateparm($defkeytype{$tempkey})) {
                   4294: 	    $r->print("\n<br />".&mt('Triggering value(s) of other parameter (optional, comma-separated):').
                   4295: 		      '<input type="text" size="20" name="'.$tempkey.'_triggervalue" value="'.&rulescache($tempkey.'_triggervalue').'" />');
                   4296: 	}
1.222     www      4297: 	$r->print("\n</td><td>\n");
                   4298: 
1.221     www      4299:         if (&isdateparm($defkeytype{$tempkey})) {
1.227     www      4300: 	    my $days=&rulescache($tempkey.'_days');
1.222     www      4301: 	    my $hours=&rulescache($tempkey.'_hours');
                   4302: 	    my $min=&rulescache($tempkey.'_min');
                   4303: 	    my $sec=&rulescache($tempkey.'_sec');
1.221     www      4304: 	    $r->print(<<ENDINPUTDATE);
1.227     www      4305: <input name="$tempkey\_days" type="text" size="4" value="$days" />$lt{'days'}<br />
1.222     www      4306: <input name="$tempkey\_hours" type="text" size="4" value="$hours" />$lt{'hours'}<br />
                   4307: <input name="$tempkey\_min" type="text" size="4" value="$min" />$lt{'min'}<br />
                   4308: <input name="$tempkey\_sec" type="text" size="4" value="$sec" />$lt{'sec'}
1.221     www      4309: ENDINPUTDATE
                   4310: 	} elsif ($defkeytype{$tempkey} eq 'string_yesno') {
1.222     www      4311:             my $yeschecked='';
                   4312:             my $nochecked='';
                   4313:             if (&rulescache($tempkey.'_value') eq 'yes') { $yeschecked='checked="checked"'; }
                   4314:             if (&rulescache($tempkey.'_value') eq 'no') { $nochecked='checked="checked"'; }
                   4315: 
1.221     www      4316: 	    $r->print(<<ENDYESNO);
1.224     www      4317: <label><input type="radio" name="$tempkey\_value" value="yes" $yeschecked /> $lt{'yes'}</label><br />
                   4318: <label><input type="radio" name="$tempkey\_value" value="no" $nochecked /> $lt{'no'}</label>
1.221     www      4319: ENDYESNO
                   4320:         } else {
1.224     www      4321: 	    $r->print('<input type="text" size="20" name="'.$tempkey.'_value" value="'.&rulescache($tempkey.'_value').'" />');
1.221     www      4322: 	}
1.318     albertel 4323:         $r->print('</td>'.&Apache::loncommon::end_data_table_row());
1.221     www      4324:     }
1.318     albertel 4325:     $r->print(&Apache::loncommon::end_data_table().
1.419     bisitz   4326: 	      "\n".'<input type="submit" name="storerules" value="'.
                   4327: 	      &mt('Save Rules').'" /></form>'."\n".
1.280     albertel 4328: 	      &Apache::loncommon::end_page());
1.220     www      4329:     return;
                   4330: }
1.193     albertel 4331: 
1.290     www      4332: sub components {
1.330     albertel 4333:     my ($key,$uname,$udom,$exeuser,$exedomain,$typeflag)=@_;
                   4334: 
                   4335:     if ($typeflag) {
1.290     www      4336: 	$key=~s/\.type$//;
                   4337:     }
1.330     albertel 4338: 
                   4339:     my ($middle,$part,$name)=
                   4340: 	($key=~/^$env{'request.course.id'}\.(?:(.+)\.)*([\w\s]+)\.(\w+)$/);
1.291     www      4341:     my $issection;
1.330     albertel 4342: 
1.290     www      4343:     my $section=&mt('All Students');
                   4344:     if ($middle=~/^\[(.*)\]/) {
1.291     www      4345: 	$issection=$1;
                   4346: 	$section=&mt('Group/Section').': '.$issection;
1.290     www      4347: 	$middle=~s/^\[(.*)\]//;
                   4348:     }
                   4349:     $middle=~s/\.+$//;
                   4350:     $middle=~s/^\.+//;
1.291     www      4351:     if ($uname) {
                   4352: 	$section=&mt('User').": ".&Apache::loncommon::plainname($uname,$udom);
                   4353: 	$issection='';
                   4354:     }
1.316     albertel 4355:     my $realm='<span class="LC_parm_scope_all">'.&mt('All Resources').'</span>';
1.304     www      4356:     my $realmdescription=&mt('all resources'); 
1.290     www      4357:     if ($middle=~/^(.+)\_\_\_\(all\)$/) {
1.316     albertel 4358: 	$realm='<span class="LC_parm_scope_folder">'.&mt('Folder/Map').': '.&Apache::lonnet::gettitle($1).' <span class="LC_parm_folder"><br />('.$1.')</span></span>';
1.304     www      4359:  	$realmdescription=&mt('folder').' '.&Apache::lonnet::gettitle($1);
                   4360:    } elsif ($middle) {
1.290     www      4361: 	my ($map,$id,$url)=&Apache::lonnet::decode_symb($middle);
1.316     albertel 4362: 	$realm='<span class="LC_parm_scope_resource">'.&mt('Resource').': '.&Apache::lonnet::gettitle($middle).' <br /><span class="LC_parm_symb">('.$url.' in '.$map.' id: '.$id.')</span></span>';
1.304     www      4363: 	$realmdescription=&mt('resource').' '.&Apache::lonnet::gettitle($middle);
1.290     www      4364:     }
1.291     www      4365:     my $what=$part.'.'.$name;
1.330     albertel 4366:     return ($realm,$section,$name,$part,
1.304     www      4367: 	    $what,$middle,$uname,$udom,$issection,$realmdescription);
1.290     www      4368: }
1.293     www      4369: 
1.328     albertel 4370: my %standard_parms;
1.416     jms      4371: 
                   4372: 
1.328     albertel 4373: sub load_parameter_names {
                   4374:     open(my $config,"<$Apache::lonnet::perlvar{'lonTabDir'}/packages.tab");
                   4375:     while (my $configline=<$config>) {
                   4376: 	if ($configline !~ /\S/ || $configline=~/^\#/) { next; }
                   4377: 	chomp($configline);
                   4378: 	my ($short,$plain)=split(/:/,$configline);
                   4379: 	my (undef,$name,$type)=split(/\&/,$short,3);
                   4380: 	if ($type eq 'display') {
                   4381: 	    $standard_parms{$name} = $plain;
                   4382: 	}
                   4383:     }
                   4384:     close($config);
                   4385:     $standard_parms{'int_pos'}      = 'Positive Integer';
                   4386:     $standard_parms{'int_zero_pos'} = 'Positive Integer or Zero';
                   4387:     %standard_parms=&Apache::lonlocal::texthash(%standard_parms);	
                   4388: }
                   4389: 
1.292     www      4390: sub standard_parameter_names {
                   4391:     my ($name)=@_;
1.328     albertel 4392:     if (!%standard_parms) {
                   4393: 	&load_parameter_names();
                   4394:     }
1.292     www      4395:     if ($standard_parms{$name}) {
                   4396: 	return $standard_parms{$name}; 
                   4397:     } else { 
                   4398: 	return $name; 
                   4399:     }
                   4400: }
1.290     www      4401: 
1.309     www      4402: 
                   4403: 
1.285     albertel 4404: sub parm_change_log {
1.284     www      4405:     my ($r)=@_;
1.414     droeschl 4406:     &Apache::lonhtmlcommon::add_breadcrumb({href=>'/adm/parmset?action=settable',
                   4407: 	text=>"Parameter Change Log"});
1.327     albertel 4408:     $r->print(&Apache::loncommon::start_page('Parameter Change Log'));
                   4409:     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Parameter Change Log'));
                   4410: 
1.286     www      4411:     my %parmlog=&Apache::lonnet::dump('nohist_parameterlog',
                   4412: 				      $env{'course.'.$env{'request.course.id'}.'.domain'},
                   4413: 				      $env{'course.'.$env{'request.course.id'}.'.num'});
1.311     albertel 4414: 
1.301     www      4415:     if ((keys(%parmlog))[0]=~/^error\:/) { undef(%parmlog); }
1.311     albertel 4416: 
1.327     albertel 4417:     $r->print('<form action="/adm/parmset?action=parameterchangelog"
                   4418:                      method="post" name="parameterlog">');
1.311     albertel 4419:     
                   4420:     my %saveable_parameters = ('show' => 'scalar',);
                   4421:     &Apache::loncommon::store_course_settings('parameter_log',
                   4422:                                               \%saveable_parameters);
                   4423:     &Apache::loncommon::restore_course_settings('parameter_log',
                   4424:                                                 \%saveable_parameters);
1.348     www      4425:     $r->print(&Apache::loncommon::display_filter().
1.326     www      4426:               '<label>'.&Apache::lonhtmlcommon::checkbox('includetypes',$env{'form.includetypes'},'1').
                   4427: 	      ' '.&mt('Include parameter types').'</label>'.
1.327     albertel 4428: 	      '<input type="submit" value="'.&mt('Display').'" /></form>');
1.301     www      4429: 
1.291     www      4430:     my $courseopt=&Apache::lonnet::get_courseresdata($env{'course.'.$env{'request.course.id'}.'.num'},
                   4431: 						     $env{'course.'.$env{'request.course.id'}.'.domain'});
1.301     www      4432:     $r->print(&Apache::loncommon::start_data_table().&Apache::loncommon::start_data_table_header_row().
                   4433: 	      '<th>'.&mt('Time').'</th><th>'.&mt('User').'</th><th>'.&mt('Extent').'</th><th>'.&mt('Users').'</th><th>'.
                   4434: 	      &mt('Parameter').'</th><th>'.&mt('Part').'</th><th>'.&mt('New Value').'</th><th>'.&mt('Announce').'</th>'.
                   4435: 	      &Apache::loncommon::end_data_table_header_row());
1.309     www      4436:     my $shown=0;
1.349     www      4437:     my $folder='';
                   4438:     if ($env{'form.displayfilter'} eq 'currentfolder') {
                   4439: 	my $last='';
                   4440: 	if (tie(my %hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
                   4441: 		&GDBM_READER(),0640)) {
                   4442: 	    $last=$hash{'last_known'};
                   4443: 	    untie(%hash);
                   4444: 	}
                   4445: 	if ($last) { ($folder) = &Apache::lonnet::decode_symb($last); }
                   4446:     }
1.356     albertel 4447:     foreach my $id (sort 
                   4448: 		    {
                   4449: 			if ($parmlog{$b}{'exe_time'} ne $parmlog{$a}{'exe_time'}) {
                   4450: 			    return $parmlog{$b}{'exe_time'} <=>$parmlog{$a}{'exe_time'}
                   4451: 			}
                   4452: 			my $aid = (split('00000',$a))[-1];
                   4453: 			my $bid = (split('00000',$b))[-1];
                   4454: 			return $bid<=>$aid;
                   4455: 		    } (keys(%parmlog))) {
1.294     www      4456:         my @changes=keys(%{$parmlog{$id}{'logentry'}});
1.332     albertel 4457: 	my $count = 0;
1.288     albertel 4458: 	my $time =
1.294     www      4459: 	    &Apache::lonlocal::locallocaltime($parmlog{$id}{'exe_time'});
1.289     www      4460: 	my $plainname = 
1.294     www      4461: 	    &Apache::loncommon::plainname($parmlog{$id}{'exe_uname'},
                   4462: 					  $parmlog{$id}{'exe_udom'});
1.288     albertel 4463: 	my $about_me_link = 
1.289     www      4464: 	    &Apache::loncommon::aboutmewrapper($plainname,
1.294     www      4465: 					       $parmlog{$id}{'exe_uname'},
                   4466: 					       $parmlog{$id}{'exe_udom'});
1.293     www      4467: 	my $send_msg_link='';
1.294     www      4468: 	if ((($parmlog{$id}{'exe_uname'} ne $env{'user.name'}) 
                   4469: 	     || ($parmlog{$id}{'exe_udom'} ne $env{'user.domain'}))) {
1.293     www      4470: 	    $send_msg_link ='<br />'.
1.288     albertel 4471: 		&Apache::loncommon::messagewrapper(&mt('Send message'),
1.294     www      4472: 						   $parmlog{$id}{'exe_uname'},
                   4473: 						   $parmlog{$id}{'exe_udom'});
1.288     albertel 4474: 	}
1.301     www      4475: 	my $row_start=&Apache::loncommon::start_data_table_row();
1.290     www      4476: 	my $makenewrow=0;
                   4477: 	my %istype=();
1.332     albertel 4478: 	my $output;
1.293     www      4479: 	foreach my $changed (reverse(sort(@changes))) {
1.330     albertel 4480:             my $value=$parmlog{$id}{'logentry'}{$changed};
1.331     albertel 4481: 	    my $typeflag = ($changed =~/\.type$/ &&
                   4482: 			    !exists($parmlog{$id}{'logentry'}{$changed.'.type'}));
1.330     albertel 4483:             my ($realm,$section,$parmname,$part,$what,$middle,$uname,$udom,$issection,$realmdescription)=
                   4484: 		&components($changed,$parmlog{$id}{'uname'},$parmlog{$id}{'udom'},undef,undef,$typeflag);
1.349     www      4485: 	    if ($env{'form.displayfilter'} eq 'currentfolder') {
                   4486: 		if ($folder) {
                   4487: 		    if ($middle!~/^\Q$folder\E/) { next; }
                   4488: 		}
                   4489: 	    }
1.326     www      4490: 	    if ($typeflag) {
1.329     albertel 4491: 		$istype{$parmname}=$value; 
1.326     www      4492: 		if (!$env{'form.includetypes'}) { next; } 
                   4493: 	    }
1.332     albertel 4494: 	    $count++;
                   4495: 	    if ($makenewrow) {
                   4496: 		$output .= $row_start;
                   4497: 	    } else {
                   4498: 		$makenewrow=1;
                   4499: 	    }
                   4500: 	    $output .='<td>'.$realm.'</td><td>'.$section.'</td><td>'.
1.292     www      4501: 		      &standard_parameter_names($parmname).'</td><td>'.
1.332     albertel 4502: 		      ($part?&mt('Part: [_1]',$part):&mt('All Parts')).'</td><td>';
1.291     www      4503: 	    my $stillactive=0;
1.332     albertel 4504: 	    if ($parmlog{$id}{'delflag'}) {
                   4505: 		$output .= &mt('Deleted');
1.288     albertel 4506: 	    } else {
1.290     www      4507: 		if ($typeflag) {
1.332     albertel 4508: 		    $output .= &mt('Type: [_1]',&standard_parameter_names($value));
1.290     www      4509: 		} else {
1.291     www      4510: 		    my ($level,@all)=&parmval_by_symb($what,$middle,&Apache::lonnet::metadata($middle,$what),
                   4511: 						      $uname,$udom,$issection,$issection,$courseopt);
                   4512: 		    if (&isdateparm($istype{$parmname})) {
1.332     albertel 4513: 			$output .= &Apache::lonlocal::locallocaltime($value);
1.291     www      4514: 		    } else {
1.332     albertel 4515: 			$output .= $value;
1.291     www      4516: 		    }
                   4517: 		    if ($value ne $all[$level]) {
1.332     albertel 4518: 			$output .= '<br /><span class="LC_warning">'.&mt('Not active anymore').'</span>';
1.291     www      4519: 		    } else {
                   4520: 			$stillactive=1;
                   4521: 		    }
1.290     www      4522: 		}
1.288     albertel 4523: 	    }
1.332     albertel 4524: 	    $output .= '</td><td>';
1.291     www      4525: 	    if ($stillactive) {
1.304     www      4526: 		my $title=&mt('Changed [_1]',&standard_parameter_names($parmname));
                   4527:                 my $description=&mt('Changed [_1] for [_2] to [_3]',&standard_parameter_names($parmname),$realmdescription,
                   4528: 				    (&isdateparm($istype{$parmname})?&Apache::lonlocal::locallocaltime($value):$value));
1.292     www      4529: 		if (($uname) && ($udom)) {
1.332     albertel 4530: 		    $output .= 
                   4531: 			&Apache::loncommon::messagewrapper('Notify User',
                   4532: 							   $uname,$udom,$title,
                   4533: 							   $description);
1.292     www      4534: 		} else {
1.332     albertel 4535: 		    $output .= 
                   4536: 			&Apache::lonrss::course_blog_link($id,$title,
                   4537: 							  $description);
1.292     www      4538: 		}
1.291     www      4539: 	    }
1.332     albertel 4540: 	    $output .= '</td>'.&Apache::loncommon::end_data_table_row();
1.288     albertel 4541: 	}
1.349     www      4542:         if ($env{'form.displayfilter'} eq 'containing') {
                   4543: 	    my $wholeentry=$about_me_link.':'.
                   4544: 		$parmlog{$id}{'exe_uname'}.':'.$parmlog{$id}{'exe_udom'}.':'.
                   4545: 		$output;
                   4546: 	    if ($wholeentry!~/\Q$env{'form.containingphrase'}\E/i) { next; }        
                   4547: 	}
                   4548:         if ($count) {
                   4549: 	    $r->print($row_start.'<td rowspan="'.$count.'">'.$time.'</td>
1.332     albertel 4550:                        <td rowspan="'.$count.'">'.$about_me_link.
                   4551: 		  '<br /><tt>'.$parmlog{$id}{'exe_uname'}.
                   4552: 			          ':'.$parmlog{$id}{'exe_udom'}.'</tt>'.
                   4553: 		  $send_msg_link.'</td>'.$output);
1.349     www      4554: 	    $shown++;
                   4555: 	}
1.311     albertel 4556: 	if (!($env{'form.show'} eq &mt('all') 
                   4557: 	      || $shown<=$env{'form.show'})) { last; }
1.286     www      4558:     }
1.301     www      4559:     $r->print(&Apache::loncommon::end_data_table());
1.284     www      4560:     $r->print(&Apache::loncommon::end_page());
                   4561: }
                   4562: 
1.355     albertel 4563: sub check_for_course_info {
                   4564:     my $navmap = Apache::lonnavmaps::navmap->new();
                   4565:     return 1 if ($navmap);
                   4566:     return 0;
                   4567: }
                   4568: 
1.259     banghart 4569: 
1.30      www      4570: sub handler {
1.43      albertel 4571:     my $r=shift;
1.30      www      4572: 
1.376     albertel 4573:     &reset_caches();
                   4574: 
1.414     droeschl 4575:     &Apache::loncommon::content_type($r,'text/html');
                   4576:     $r->send_http_header;
                   4577:     return OK if $r->header_only;
                   4578: 
1.193     albertel 4579:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.205     www      4580: 					    ['action','state',
                   4581:                                              'pres_marker',
                   4582:                                              'pres_value',
1.206     www      4583:                                              'pres_type',
1.390     www      4584:                                              'udom','uname','symb','serial','timebase']);
1.131     www      4585: 
1.83      bowersj2 4586: 
1.193     albertel 4587:     &Apache::lonhtmlcommon::clear_breadcrumbs();
1.194     albertel 4588:     &Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/parmset",
                   4589: 					    text=>"Parameter Manager",
1.204     www      4590: 					    faq=>10,
1.324     www      4591: 					    bug=>'Instructor Interface',
                   4592:                                             help => 'Parameter_Manager'});
1.203     www      4593: 
1.30      www      4594: # ----------------------------------------------------- Needs to be in a course
1.194     albertel 4595:     my $parm_permission =
                   4596: 	(&Apache::lonnet::allowed('opa',$env{'request.course.id'}) ||
1.190     albertel 4597: 	 &Apache::lonnet::allowed('opa',$env{'request.course.id'}.'/'.
1.193     albertel 4598: 				  $env{'request.course.sec'}));
1.355     albertel 4599:     my $exists = &check_for_course_info();
                   4600: 
                   4601:     if ($env{'request.course.id'} &&  $parm_permission && $exists) {
1.193     albertel 4602:         #
                   4603:         # Main switch on form.action and form.state, as appropriate
                   4604:         #
                   4605:         # Check first if coming from someone else headed directly for
                   4606:         #  the table mode
                   4607:         if ((($env{'form.command'} eq 'set') && ($env{'form.url'})
                   4608: 	     && (!$env{'form.dis'})) || ($env{'form.symb'})) {
                   4609: 	    &assessparms($r);
                   4610:         } elsif (! exists($env{'form.action'})) {
                   4611:             &print_main_menu($r,$parm_permission);
1.414     droeschl 4612:         } elsif ($env{'form.action'} eq 'crsenv') {
1.193     albertel 4613:             &crsenv($r); 
1.414     droeschl 4614:         } elsif ($env{'form.action'} eq 'setoverview') {
1.121     www      4615: 	    &overview($r);
1.414     droeschl 4616: 	} elsif ($env{'form.action'} eq 'addmetadata') {
1.334     banghart 4617: 	    &addmetafield($r);
1.414     droeschl 4618: 	} elsif ($env{'form.action'} eq 'ordermetadata') {
1.340     banghart 4619: 	    &order_meta_fields($r);
1.414     droeschl 4620:         } elsif ($env{'form.action'} eq 'setrestrictmeta') {
1.259     banghart 4621: 	    &setrestrictmeta($r);
1.414     droeschl 4622:         } elsif ($env{'form.action'} eq 'newoverview') {
1.208     www      4623: 	    &newoverview($r);
1.414     droeschl 4624:         } elsif ($env{'form.action'} eq 'setdefaults') {
1.220     www      4625: 	    &defaultsetter($r);
1.414     droeschl 4626: 	} elsif ($env{'form.action'} eq 'settable') {
1.121     www      4627: 	    &assessparms($r);
1.414     droeschl 4628:         } elsif ($env{'form.action'} eq 'parameterchangelog') {
1.285     albertel 4629: 	    &parm_change_log($r);
1.414     droeschl 4630:         } elsif ($env{'form.action'} eq 'cleanparameters') {
1.333     albertel 4631: 	    &clean_parameters($r);
1.414     droeschl 4632:         } elsif ($env{'form.action'} eq 'dateshift1') {
1.390     www      4633:             &date_shift_one($r);
1.414     droeschl 4634:         } elsif ($env{'form.action'} eq 'dateshift2') {
1.390     www      4635:             &date_shift_two($r);
1.414     droeschl 4636: 	} elsif ($env{'form.action'} eq 'categorizecourse') {
1.403     raeburn  4637:             &assign_course_categories($r);
                   4638:         } 
1.43      albertel 4639:     } else {
1.1       www      4640: # ----------------------------- Not in a course, or not allowed to modify parms
1.355     albertel 4641: 	if ($exists) {
                   4642: 	    $env{'user.error.msg'}=
                   4643: 		"/adm/parmset:opa:0:0:Cannot modify assessment parameters";
                   4644: 	} else {
                   4645: 	    $env{'user.error.msg'}=
                   4646: 		"/adm/parmset::0:1:Course environment gone, reinitialize the course";
                   4647: 	}
1.43      albertel 4648: 	return HTTP_NOT_ACCEPTABLE;
                   4649:     }
1.376     albertel 4650:     &reset_caches();
                   4651: 
1.43      albertel 4652:     return OK;
1.1       www      4653: }
                   4654: 
                   4655: 1;
                   4656: __END__
                   4657: 
                   4658: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>