File:  [LON-CAPA] / loncom / interface / loncommon.pm
Revision 1.565: download - view: text, annotated - select for diffs
Sat Aug 18 00:01:37 2007 UTC (16 years, 9 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- BUG#1993, editxml text area auto resizes itself to just fit inside the
            the space available in the window

    1: # The LearningOnline Network with CAPA
    2: # a pile of common routines
    3: #
    4: # $Id: loncommon.pm,v 1.565 2007/08/18 00:01:37 albertel Exp $
    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: #
   28: 
   29: # Makes a table out of the previous attempts
   30: # Inputs result_from_symbread, user, domain, course_id
   31: # Reads in non-network-related .tab files
   32: 
   33: # POD header:
   34: 
   35: =pod
   36: 
   37: =head1 NAME
   38: 
   39: Apache::loncommon - pile of common routines
   40: 
   41: =head1 SYNOPSIS
   42: 
   43: Common routines for manipulating connections, student answers,
   44:     domains, common Javascript fragments, etc.
   45: 
   46: =head1 OVERVIEW
   47: 
   48: A collection of commonly used subroutines that don't have a natural
   49: home anywhere else. This collection helps remove
   50: redundancy from other modules and increase efficiency of memory usage.
   51: 
   52: =cut 
   53: 
   54: # End of POD header
   55: package Apache::loncommon;
   56: 
   57: use strict;
   58: use Apache::lonnet;
   59: use GDBM_File;
   60: use POSIX qw(strftime mktime);
   61: use Apache::lonmenu();
   62: use Apache::lonenc();
   63: use Apache::lonlocal;
   64: use HTML::Entities;
   65: use Apache::lonhtmlcommon();
   66: use Apache::loncoursedata();
   67: use Apache::lontexconvert();
   68: use Apache::lonclonecourse();
   69: use LONCAPA qw(:DEFAULT :match);
   70: 
   71: # ---------------------------------------------- Designs
   72: use vars qw(%defaultdesign);
   73: 
   74: my $readit;
   75: 
   76: 
   77: ##
   78: ## Global Variables
   79: ##
   80: 
   81: # ----------------------------------------------- Filetypes/Languages/Copyright
   82: my %language;
   83: my %supported_language;
   84: my %cprtag;
   85: my %scprtag;
   86: my %fe; my %fd; my %fm;
   87: my %category_extensions;
   88: 
   89: # ---------------------------------------------- Thesaurus variables
   90: #
   91: # %Keywords:
   92: #      A hash used by &keyword to determine if a word is considered a keyword.
   93: # $thesaurus_db_file 
   94: #      Scalar containing the full path to the thesaurus database.
   95: 
   96: my %Keywords;
   97: my $thesaurus_db_file;
   98: 
   99: #
  100: # Initialize values from language.tab, copyright.tab, filetypes.tab,
  101: # thesaurus.tab, and filecategories.tab.
  102: #
  103: BEGIN {
  104:     # Variable initialization
  105:     $thesaurus_db_file = $Apache::lonnet::perlvar{'lonTabDir'}."/thesaurus.db";
  106:     #
  107:     unless ($readit) {
  108: # ------------------------------------------------------------------- languages
  109:     {
  110:         my $langtabfile = $Apache::lonnet::perlvar{'lonTabDir'}.
  111:                                    '/language.tab';
  112:         if ( open(my $fh,"<$langtabfile") ) {
  113:             while (my $line = <$fh>) {
  114:                 next if ($line=~/^\#/);
  115:                 chomp($line);
  116:                 my ($key,$two,$country,$three,$enc,$val,$sup)=(split(/\t/,$line));
  117:                 $language{$key}=$val.' - '.$enc;
  118:                 if ($sup) {
  119:                     $supported_language{$key}=$sup;
  120:                 }
  121:             }
  122:             close($fh);
  123:         }
  124:     }
  125: # ------------------------------------------------------------------ copyrights
  126:     {
  127:         my $copyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
  128:                                   '/copyright.tab';
  129:         if ( open (my $fh,"<$copyrightfile") ) {
  130:             while (my $line = <$fh>) {
  131:                 next if ($line=~/^\#/);
  132:                 chomp($line);
  133:                 my ($key,$val)=(split(/\s+/,$line,2));
  134:                 $cprtag{$key}=$val;
  135:             }
  136:             close($fh);
  137:         }
  138:     }
  139: # ----------------------------------------------------------- source copyrights
  140:     {
  141:         my $sourcecopyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
  142:                                   '/source_copyright.tab';
  143:         if ( open (my $fh,"<$sourcecopyrightfile") ) {
  144:             while (my $line = <$fh>) {
  145:                 next if ($line =~ /^\#/);
  146:                 chomp($line);
  147:                 my ($key,$val)=(split(/\s+/,$line,2));
  148:                 $scprtag{$key}=$val;
  149:             }
  150:             close($fh);
  151:         }
  152:     }
  153: 
  154: # -------------------------------------------------------------- default domain designs
  155:     my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
  156:     my $designfile = $designdir.'/default.tab';
  157:     if ( open (my $fh,"<$designfile") ) {
  158:         while (my $line = <$fh>) {
  159:             next if ($line =~ /^\#/);
  160:             chomp($line);
  161:             my ($key,$val)=(split(/\=/,$line));
  162:             if ($val) { $defaultdesign{$key}=$val; }
  163:         }
  164:         close($fh);
  165:     }
  166: 
  167: # ------------------------------------------------------------- file categories
  168:     {
  169:         my $categoryfile = $Apache::lonnet::perlvar{'lonTabDir'}.
  170:                                   '/filecategories.tab';
  171:         if ( open (my $fh,"<$categoryfile") ) {
  172: 	    while (my $line = <$fh>) {
  173: 		next if ($line =~ /^\#/);
  174: 		chomp($line);
  175:                 my ($extension,$category)=(split(/\s+/,$line,2));
  176:                 push @{$category_extensions{lc($category)}},$extension;
  177:             }
  178:             close($fh);
  179:         }
  180: 
  181:     }
  182: # ------------------------------------------------------------------ file types
  183:     {
  184:         my $typesfile = $Apache::lonnet::perlvar{'lonTabDir'}.
  185:                '/filetypes.tab';
  186:         if ( open (my $fh,"<$typesfile") ) {
  187:             while (my $line = <$fh>) {
  188: 		next if ($line =~ /^\#/);
  189: 		chomp($line);
  190:                 my ($ending,$emb,$mime,$descr)=split(/\s+/,$line,4);
  191:                 if ($descr ne '') {
  192:                     $fe{$ending}=lc($emb);
  193:                     $fd{$ending}=$descr;
  194:                     if ($mime ne 'unk') { $fm{$ending}=$mime; }
  195:                 }
  196:             }
  197:             close($fh);
  198:         }
  199:     }
  200:     &Apache::lonnet::logthis(
  201:               "<font color=yellow>INFO: Read file types</font>");
  202:     $readit=1;
  203:     }  # end of unless($readit) 
  204:     
  205: }
  206: 
  207: ###############################################################
  208: ##           HTML and Javascript Helper Functions            ##
  209: ###############################################################
  210: 
  211: =pod 
  212: 
  213: =head1 HTML and Javascript Functions
  214: 
  215: =over 4
  216: 
  217: =item * browser_and_searcher_javascript ()
  218: 
  219: X<browsing, javascript>X<searching, javascript>Returns a string
  220: containing javascript with two functions, C<openbrowser> and
  221: C<opensearcher>. Returned string does not contain E<lt>scriptE<gt>
  222: tags.
  223: 
  224: =item * openbrowser(formname,elementname,only,omit) [javascript]
  225: 
  226: inputs: formname, elementname, only, omit
  227: 
  228: formname and elementname indicate the name of the html form and name of
  229: the element that the results of the browsing selection are to be placed in. 
  230: 
  231: Specifying 'only' will restrict the browser to displaying only files
  232: with the given extension.  Can be a comma separated list.
  233: 
  234: Specifying 'omit' will restrict the browser to NOT displaying files
  235: with the given extension.  Can be a comma separated list.
  236: 
  237: =item * opensearcher(formname, elementname) [javascript]
  238: 
  239: Inputs: formname, elementname
  240: 
  241: formname and elementname specify the name of the html form and the name
  242: of the element the selection from the search results will be placed in.
  243: 
  244: =cut
  245: 
  246: sub browser_and_searcher_javascript {
  247:     my ($mode)=@_;
  248:     if (!defined($mode)) { $mode='edit'; }
  249:     my $resurl=&escape_single(&lastresurl());
  250:     return <<END;
  251: // <!-- BEGIN LON-CAPA Internal
  252:     var editbrowser = null;
  253:     function openbrowser(formname,elementname,only,omit,titleelement) {
  254:         var url = '$resurl/?';
  255:         if (editbrowser == null) {
  256:             url += 'launch=1&';
  257:         }
  258:         url += 'catalogmode=interactive&';
  259:         url += 'mode=$mode&';
  260:         url += 'form=' + formname + '&';
  261:         if (only != null) {
  262:             url += 'only=' + only + '&';
  263:         } else {
  264:             url += 'only=&';
  265: 	}
  266:         if (omit != null) {
  267:             url += 'omit=' + omit + '&';
  268:         } else {
  269:             url += 'omit=&';
  270: 	}
  271:         if (titleelement != null) {
  272:             url += 'titleelement=' + titleelement + '&';
  273:         } else {
  274: 	    url += 'titleelement=&';
  275: 	}
  276:         url += 'element=' + elementname + '';
  277:         var title = 'Browser';
  278:         var options = 'scrollbars=1,resizable=1,menubar=0,toolbar=1,location=1';
  279:         options += ',width=700,height=600';
  280:         editbrowser = open(url,title,options,'1');
  281:         editbrowser.focus();
  282:     }
  283:     var editsearcher;
  284:     function opensearcher(formname,elementname,titleelement) {
  285:         var url = '/adm/searchcat?';
  286:         if (editsearcher == null) {
  287:             url += 'launch=1&';
  288:         }
  289:         url += 'catalogmode=interactive&';
  290:         url += 'mode=$mode&';
  291:         url += 'form=' + formname + '&';
  292:         if (titleelement != null) {
  293:             url += 'titleelement=' + titleelement + '&';
  294:         } else {
  295: 	    url += 'titleelement=&';
  296: 	}
  297:         url += 'element=' + elementname + '';
  298:         var title = 'Search';
  299:         var options = 'scrollbars=1,resizable=1,menubar=0,toolbar=1,location=1';
  300:         options += ',width=700,height=600';
  301:         editsearcher = open(url,title,options,'1');
  302:         editsearcher.focus();
  303:     }
  304: // END LON-CAPA Internal -->
  305: END
  306: }
  307: 
  308: sub lastresurl {
  309:     if ($env{'environment.lastresurl'}) {
  310: 	return $env{'environment.lastresurl'}
  311:     } else {
  312: 	return '/res';
  313:     }
  314: }
  315: 
  316: sub storeresurl {
  317:     my $resurl=&Apache::lonnet::clutter(shift);
  318:     unless ($resurl=~/^\/res/) { return 0; }
  319:     $resurl=~s/\/$//;
  320:     &Apache::lonnet::put('environment',{'lastresurl' => $resurl});
  321:     &Apache::lonnet::appenv('environment.lastresurl' => $resurl);
  322:     return 1;
  323: }
  324: 
  325: sub studentbrowser_javascript {
  326:    unless (
  327:             (($env{'request.course.id'}) && 
  328:              (&Apache::lonnet::allowed('srm',$env{'request.course.id'})
  329: 	      || &Apache::lonnet::allowed('srm',$env{'request.course.id'}.
  330: 					  '/'.$env{'request.course.sec'})
  331: 	      ))
  332:          || ($env{'request.role'}=~/^(au|dc|su)/)
  333:           ) { return ''; }  
  334:    return (<<'ENDSTDBRW');
  335: <script type="text/javascript" language="Javascript" >
  336:     var stdeditbrowser;
  337:     function openstdbrowser(formname,uname,udom,roleflag,ignorefilter) {
  338:         var url = '/adm/pickstudent?';
  339:         var filter;
  340: 	if (!ignorefilter) {
  341: 	    eval('filter=document.'+formname+'.'+uname+'.value;');
  342: 	}
  343:         if (filter != null) {
  344:            if (filter != '') {
  345:                url += 'filter='+filter+'&';
  346: 	   }
  347:         }
  348:         url += 'form=' + formname + '&unameelement='+uname+
  349:                                     '&udomelement='+udom;
  350: 	if (roleflag) { url+="&roles=1"; }
  351:         var title = 'Student_Browser';
  352:         var options = 'scrollbars=1,resizable=1,menubar=0';
  353:         options += ',width=700,height=600';
  354:         stdeditbrowser = open(url,title,options,'1');
  355:         stdeditbrowser.focus();
  356:     }
  357: </script>
  358: ENDSTDBRW
  359: }
  360: 
  361: sub selectstudent_link {
  362:    my ($form,$unameele,$udomele)=@_;
  363:    if ($env{'request.course.id'}) {  
  364:        if (!&Apache::lonnet::allowed('srm',$env{'request.course.id'})
  365: 	   && !&Apache::lonnet::allowed('srm',$env{'request.course.id'}.
  366: 					'/'.$env{'request.course.sec'})) {
  367: 	   return '';
  368:        }
  369:        return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
  370:         '","'.$udomele.'","","1");'."'>".&mt('Select User')."</a>";
  371:    }
  372:    if ($env{'request.role'}=~/^(au|dc|su)/) {
  373:        return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
  374:         '","'.$udomele.'",1);'."'>".&mt('Select User')."</a>";
  375:    }
  376:    return '';
  377: }
  378: 
  379: sub coursebrowser_javascript {
  380:     my ($domainfilter,$sec_element,$formname)=@_;
  381:     my $crs_or_grp_alert = &mt('Please select the type of LON-CAPA entity - Course or Group - for which you wish to add/modify a user role');
  382:    my $output = '
  383: <script type="text/javascript">
  384:     var stdeditbrowser;'."\n";
  385:    $output .= <<"ENDSTDBRW";
  386:     function opencrsbrowser(formname,uname,udom,desc,extra_element,multflag,crstype) {
  387:         var url = '/adm/pickcourse?';
  388:         var domainfilter = '';
  389:         var formid = getFormIdByName(formname);
  390:         if (formid > -1) {
  391:             var domid = getIndexByName(formid,udom);
  392:             if (domid > -1) {
  393:                 if (document.forms[formid].elements[domid].type == 'select-one') {
  394:                     domainfilter=document.forms[formid].elements[domid].options[document.forms[formid].elements[domid].selectedIndex].value;
  395:                 }
  396:                 if (document.forms[formid].elements[domid].type == 'hidden') {
  397:                     domainfilter=document.forms[formid].elements[domid].value;
  398:                 }
  399:             }
  400:         }
  401:         if (domainfilter != null) {
  402:            if (domainfilter != '') {
  403:                url += 'domainfilter='+domainfilter+'&';
  404: 	   }
  405:         }
  406:         url += 'form=' + formname + '&cnumelement='+uname+
  407: 	                            '&cdomelement='+udom+
  408:                                     '&cnameelement='+desc;
  409:         if (extra_element !=null && extra_element != '') {
  410:             if (formname == 'rolechoice') {
  411:                 url += '&roleelement='+extra_element;
  412:                 if (domainfilter == null || domainfilter == '') {
  413:                     url += '&domainfilter='+extra_element;
  414:                 }
  415:             }
  416:             else {
  417:                 if (formname == 'portform') {
  418:                     url += '&setroles='+extra_element;
  419:                 }
  420:             }     
  421:         }
  422:         if (multflag !=null && multflag != '') {
  423:             url += '&multiple='+multflag;
  424:         }
  425:         if (crstype == 'Course/Group') {
  426:             if (formname == 'cu') {
  427:                 crstype = document.cu.crstype.options[document.cu.crstype.selectedIndex].value; 
  428:                 if (crstype == "") {
  429:                     alert("$crs_or_grp_alert");
  430:                     return;
  431:                 }
  432:             }
  433:         }
  434:         if (crstype !=null && crstype != '') {
  435:             url += '&type='+crstype;
  436:         }
  437:         var title = 'Course_Browser';
  438:         var options = 'scrollbars=1,resizable=1,menubar=0';
  439:         options += ',width=700,height=600';
  440:         stdeditbrowser = open(url,title,options,'1');
  441:         stdeditbrowser.focus();
  442:     }
  443: 
  444:     function getFormIdByName(formname) {
  445:         for (var i=0;i<document.forms.length;i++) {
  446:             if (document.forms[i].name == formname) {
  447:                 return i;
  448:             }
  449:         }
  450:         return -1; 
  451:     }
  452: 
  453:     function getIndexByName(formid,item) {
  454:         for (var i=0;i<document.forms[formid].elements.length;i++) {
  455:             if (document.forms[formid].elements[i].name == item) {
  456:                 return i;
  457:             }
  458:         }
  459:         return -1;
  460:     }
  461: ENDSTDBRW
  462:     if ($sec_element ne '') {
  463:         $output .= &setsec_javascript($sec_element,$formname);
  464:     }
  465:     $output .= '
  466: </script>';
  467:     return $output;
  468: }
  469: 
  470: sub setsec_javascript {
  471:     my ($sec_element,$formname) = @_;
  472:     my $setsections = qq|
  473: function setSect(sectionlist) {
  474:     var sectionsArray = sectionlist.split(",");
  475:     var numSections = sectionsArray.length;
  476:     document.$formname.$sec_element.length = 0;
  477:     if (numSections == 0) {
  478:         document.$formname.$sec_element.multiple=false;
  479:         document.$formname.$sec_element.size=1;
  480:         document.$formname.$sec_element.options[0] = new Option('No existing sections','',false,false)
  481:     } else {
  482:         if (numSections == 1) {
  483:             document.$formname.$sec_element.multiple=false;
  484:             document.$formname.$sec_element.size=1;
  485:             document.$formname.$sec_element.options[0] = new Option('Select','',true,true);
  486:             document.$formname.$sec_element.options[1] = new Option('No section','',false,false)
  487:             document.$formname.$sec_element.options[2] = new Option(sectionsArray[0],sectionsArray[0],false,false);
  488:         } else {
  489:             for (var i=0; i<numSections; i++) {
  490:                 document.$formname.$sec_element.options[i] = new Option(sectionsArray[i],sectionsArray[i],false,false)
  491:             }
  492:             document.$formname.$sec_element.multiple=true
  493:             if (numSections < 3) {
  494:                 document.$formname.$sec_element.size=numSections;
  495:             } else {
  496:                 document.$formname.$sec_element.size=3;
  497:             }
  498:             document.$formname.$sec_element.options[0].selected = false
  499:         }
  500:     }
  501: }
  502: |;
  503:     return $setsections;
  504: }
  505: 
  506: 
  507: sub selectcourse_link {
  508:    my ($form,$unameele,$udomele,$desc,$extra_element,$multflag,$selecttype)=@_;
  509:    return "<a href='".'javascript:opencrsbrowser("'.$form.'","'.$unameele.
  510:         '","'.$udomele.'","'.$desc.'","'.$extra_element.'","'.$multflag.'","'.$selecttype.'");'."'>".&mt('Select Course')."</a>";
  511: }
  512: 
  513: sub check_uncheck_jscript {
  514:     my $jscript = <<"ENDSCRT";
  515: function checkAll(field) {
  516:     if (field.length > 0) {
  517:         for (i = 0; i < field.length; i++) {
  518:             field[i].checked = true ;
  519:         }
  520:     } else {
  521:         field.checked = true
  522:     }
  523: }
  524:  
  525: function uncheckAll(field) {
  526:     if (field.length > 0) {
  527:         for (i = 0; i < field.length; i++) {
  528:             field[i].checked = false ;
  529:         }
  530:     } else {
  531:         field.checked = false ;
  532:     }
  533: }
  534: ENDSCRT
  535:     return $jscript;
  536: }
  537: 
  538: 
  539: =pod
  540: 
  541: =item * linked_select_forms(...)
  542: 
  543: linked_select_forms returns a string containing a <script></script> block
  544: and html for two <select> menus.  The select menus will be linked in that
  545: changing the value of the first menu will result in new values being placed
  546: in the second menu.  The values in the select menu will appear in alphabetical
  547: order.
  548: 
  549: linked_select_forms takes the following ordered inputs:
  550: 
  551: =over 4
  552: 
  553: =item * $formname, the name of the <form> tag
  554: 
  555: =item * $middletext, the text which appears between the <select> tags
  556: 
  557: =item * $firstdefault, the default value for the first menu
  558: 
  559: =item * $firstselectname, the name of the first <select> tag
  560: 
  561: =item * $secondselectname, the name of the second <select> tag
  562: 
  563: =item * $hashref, a reference to a hash containing the data for the menus.
  564: 
  565: =back 
  566: 
  567: Below is an example of such a hash.  Only the 'text', 'default', and 
  568: 'select2' keys must appear as stated.  keys(%menu) are the possible 
  569: values for the first select menu.  The text that coincides with the 
  570: first menu value is given in $menu{$choice1}->{'text'}.  The values 
  571: and text for the second menu are given in the hash pointed to by 
  572: $menu{$choice1}->{'select2'}.  
  573: 
  574:  my %menu = ( A1 => { text =>"Choice A1" ,
  575:                        default => "B3",
  576:                        select2 => { 
  577:                            B1 => "Choice B1",
  578:                            B2 => "Choice B2",
  579:                            B3 => "Choice B3",
  580:                            B4 => "Choice B4"
  581:                            }
  582:                    },
  583:                A2 => { text =>"Choice A2" ,
  584:                        default => "C2",
  585:                        select2 => { 
  586:                            C1 => "Choice C1",
  587:                            C2 => "Choice C2",
  588:                            C3 => "Choice C3"
  589:                            }
  590:                    },
  591:                A3 => { text =>"Choice A3" ,
  592:                        default => "D6",
  593:                        select2 => { 
  594:                            D1 => "Choice D1",
  595:                            D2 => "Choice D2",
  596:                            D3 => "Choice D3",
  597:                            D4 => "Choice D4",
  598:                            D5 => "Choice D5",
  599:                            D6 => "Choice D6",
  600:                            D7 => "Choice D7"
  601:                            }
  602:                    }
  603:                );
  604: 
  605: =cut
  606: 
  607: sub linked_select_forms {
  608:     my ($formname,
  609:         $middletext,
  610:         $firstdefault,
  611:         $firstselectname,
  612:         $secondselectname, 
  613:         $hashref
  614:         ) = @_;
  615:     my $second = "document.$formname.$secondselectname";
  616:     my $first = "document.$formname.$firstselectname";
  617:     # output the javascript to do the changing
  618:     my $result = '';
  619:     $result.="<script type=\"text/javascript\">\n";
  620:     $result.="var select2data = new Object();\n";
  621:     $" = '","';
  622:     my $debug = '';
  623:     foreach my $s1 (sort(keys(%$hashref))) {
  624:         $result.="select2data.d_$s1 = new Object();\n";        
  625:         $result.="select2data.d_$s1.def = new String('".
  626:             $hashref->{$s1}->{'default'}."');\n";
  627:         $result.="select2data.d_$s1.values = new Array(";        
  628:         my @s2values = sort(keys( %{ $hashref->{$s1}->{'select2'} } ));
  629:         $result.="\"@s2values\");\n";
  630:         $result.="select2data.d_$s1.texts = new Array(";        
  631:         my @s2texts;
  632:         foreach my $value (@s2values) {
  633:             push @s2texts, $hashref->{$s1}->{'select2'}->{$value};
  634:         }
  635:         $result.="\"@s2texts\");\n";
  636:     }
  637:     $"=' ';
  638:     $result.= <<"END";
  639: 
  640: function select1_changed() {
  641:     // Determine new choice
  642:     var newvalue = "d_" + $first.value;
  643:     // update select2
  644:     var values     = select2data[newvalue].values;
  645:     var texts      = select2data[newvalue].texts;
  646:     var select2def = select2data[newvalue].def;
  647:     var i;
  648:     // out with the old
  649:     for (i = 0; i < $second.options.length; i++) {
  650:         $second.options[i] = null;
  651:     }
  652:     // in with the nuclear
  653:     for (i=0;i<values.length; i++) {
  654:         $second.options[i] = new Option(values[i]);
  655:         $second.options[i].value = values[i];
  656:         $second.options[i].text = texts[i];
  657:         if (values[i] == select2def) {
  658:             $second.options[i].selected = true;
  659:         }
  660:     }
  661: }
  662: </script>
  663: END
  664:     # output the initial values for the selection lists
  665:     $result .= "<select size=\"1\" name=\"$firstselectname\" onchange=\"select1_changed()\">\n";
  666:     foreach my $value (sort(keys(%$hashref))) {
  667:         $result.="    <option value=\"$value\" ";
  668:         $result.=" selected=\"selected\" " if ($value eq $firstdefault);
  669:         $result.=">".&mt($hashref->{$value}->{'text'})."</option>\n";
  670:     }
  671:     $result .= "</select>\n";
  672:     my %select2 = %{$hashref->{$firstdefault}->{'select2'}};
  673:     $result .= $middletext;
  674:     $result .= "<select size=\"1\" name=\"$secondselectname\">\n";
  675:     my $seconddefault = $hashref->{$firstdefault}->{'default'};
  676:     foreach my $value (sort(keys(%select2))) {
  677:         $result.="    <option value=\"$value\" ";        
  678:         $result.=" selected=\"selected\" " if ($value eq $seconddefault);
  679:         $result.=">".&mt($select2{$value})."</option>\n";
  680:     }
  681:     $result .= "</select>\n";
  682:     #    return $debug;
  683:     return $result;
  684: }   #  end of sub linked_select_forms {
  685: 
  686: =pod
  687: 
  688: =item * help_open_topic($topic, $text, $stayOnPage, $width, $height)
  689: 
  690: Returns a string corresponding to an HTML link to the given help
  691: $topic, where $topic corresponds to the name of a .tex file in
  692: /home/httpd/html/adm/help/tex, with underscores replaced by
  693: spaces. 
  694: 
  695: $text will optionally be linked to the same topic, allowing you to
  696: link text in addition to the graphic. If you do not want to link
  697: text, but wish to specify one of the later parameters, pass an
  698: empty string. 
  699: 
  700: $stayOnPage is a value that will be interpreted as a boolean. If true,
  701: the link will not open a new window. If false, the link will open
  702: a new window using Javascript. (Default is false.) 
  703: 
  704: $width and $height are optional numerical parameters that will
  705: override the width and height of the popped up window, which may
  706: be useful for certain help topics with big pictures included. 
  707: 
  708: =cut
  709: 
  710: sub help_open_topic {
  711:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
  712:     $text = "" if (not defined $text);
  713:     $stayOnPage = 0 if (not defined $stayOnPage);
  714:     if ($env{'browser.interface'} eq 'textual') {
  715: 	$stayOnPage=1;
  716:     }
  717:     $width = 350 if (not defined $width);
  718:     $height = 400 if (not defined $height);
  719:     my $filename = $topic;
  720:     $filename =~ s/ /_/g;
  721: 
  722:     my $template = "";
  723:     my $link;
  724: 
  725:     $topic=~s/\W/\_/g;
  726: 
  727:     if (!$stayOnPage)
  728:     {
  729: 	$link = "javascript:void(open('/adm/help/${filename}.hlp', 'Help_for_$topic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
  730:     }
  731:     else
  732:     {
  733: 	$link = "/adm/help/${filename}.hlp";
  734:     }
  735: 
  736:     # Add the text
  737:     if ($text ne "")
  738:     {
  739: 	$template .= 
  740:   "<table bgcolor='#3333AA' cellspacing='1' cellpadding='1' border='0'><tr>".
  741:   "<td bgcolor='#5555FF'><a target=\"_top\" href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  742:     }
  743: 
  744:     # Add the graphic
  745:     my $title = &mt('Online Help');
  746:     my $helpicon=&lonhttpdurl("/adm/help/gif/smallHelp.gif");
  747:     $template .= <<"ENDTEMPLATE";
  748:  <a target="_top" href="$link" title="$title"><img src="$helpicon" border="0" alt="(Help: $topic)" /></a>
  749: ENDTEMPLATE
  750:     if ($text ne '') { $template.='</td></tr></table>' };
  751:     return $template;
  752: 
  753: }
  754: 
  755: # This is a quicky function for Latex cheatsheet editing, since it 
  756: # appears in at least four places
  757: sub helpLatexCheatsheet {
  758:     my $other = shift;
  759:     my $addOther = '';
  760:     if ($other) {
  761: 	$addOther = Apache::loncommon::help_open_topic($other, shift,
  762: 						       undef, undef, 600) .
  763: 							   '</td><td>';
  764:     }
  765:     return '<table><tr><td>'.
  766: 	$addOther .
  767: 	&Apache::loncommon::help_open_topic("Greek_Symbols",'Greek Symbols',
  768: 					    undef,undef,600)
  769: 	.'</td><td>'.
  770: 	&Apache::loncommon::help_open_topic("Other_Symbols",'Other Symbols',
  771: 					    undef,undef,600)
  772: 	.'</td></tr></table>';
  773: }
  774: 
  775: sub general_help {
  776:     my $helptopic='Student_Intro';
  777:     if ($env{'request.role'}=~/^(ca|au)/) {
  778: 	$helptopic='Authoring_Intro';
  779:     } elsif ($env{'request.role'}=~/^cc/) {
  780: 	$helptopic='Course_Coordination_Intro';
  781:     }
  782:     return $helptopic;
  783: }
  784: 
  785: sub update_help_link {
  786:     my ($topic,$component_help,$faq,$bug,$stayOnPage) = @_;
  787:     my $origurl = $ENV{'REQUEST_URI'};
  788:     $origurl=~s|^/~|/priv/|;
  789:     my $timestamp = time;
  790:     foreach my $datum (\$topic,\$component_help,\$faq,\$bug,\$origurl) {
  791:         $$datum = &escape($$datum);
  792:     }
  793: 
  794:     my $banner_link = "/adm/helpmenu?page=banner&amp;topic=$topic&amp;component_help=$component_help&amp;faq=$faq&amp;bug=$bug&amp;origurl=$origurl&amp;stamp=$timestamp&amp;stayonpage=$stayOnPage";
  795:     my $output .= <<"ENDOUTPUT";
  796: <script type="text/javascript">
  797: banner_link = '$banner_link';
  798: </script>
  799: ENDOUTPUT
  800:     return $output;
  801: }
  802: 
  803: # now just updates the help link and generates a blue icon
  804: sub help_open_menu {
  805:     my ($topic,$component_help,$faq,$bug,$stayOnPage,$width,$height,$text) 
  806: 	= @_;    
  807:     $stayOnPage = 0 if (not defined $stayOnPage);
  808:     # formerly only used pop-up help (stayOnPage = 0)
  809:     # if environment.remote is on (using remote control UI)
  810:     # if ($env{'browser.interface'} eq 'textual' ||
  811:     #	$env{'environment.remote'} eq 'off' ) {
  812:     #   $stayOnPage=1;
  813:     #}
  814:     # Now making pop-up help the default even with remote control
  815:     if ($env{'browser.interface'} eq 'textual') {
  816:         $stayOnPage=1;
  817:     }
  818:     my $output;
  819:     if ($component_help) {
  820: 	if (!$text) {
  821: 	    $output=&help_open_topic($component_help,undef,$stayOnPage,
  822: 				       $width,$height);
  823: 	} else {
  824: 	    my $help_text;
  825: 	    $help_text=&unescape($topic);
  826: 	    $output='<table><tr><td>'.
  827: 		&help_open_topic($component_help,$help_text,$stayOnPage,
  828: 				 $width,$height).'</td></tr></table>';
  829: 	}
  830:     }
  831:     my $banner_link = &update_help_link($topic,$component_help,$faq,$bug,$stayOnPage);
  832:     return $output.$banner_link;
  833: }
  834: 
  835: sub top_nav_help {
  836:     my ($text) = @_;
  837: 
  838:     $text = &mt($text);
  839: 
  840:     my $stayOnPage = 
  841: 	($env{'browser.interface'}  eq 'textual' ||
  842: 	 $env{'environment.remote'} eq 'off' );
  843:     my $link=  ($stayOnPage) ? "javascript:helpMenu('display')"
  844: 	                     : "javascript:helpMenu('open')";
  845:     my $banner_link = &update_help_link(undef,undef,undef,undef,$stayOnPage);
  846: 
  847:     my $title = &mt('Get help');
  848: 
  849:     return <<"END";
  850: $banner_link
  851:  <a href="$link" title="$title">$text</a>
  852: END
  853: }
  854: 
  855: sub help_menu_js {
  856:     my ($text) = @_;
  857: 
  858:     my $stayOnPage = 
  859: 	($env{'browser.interface'}  eq 'textual' ||
  860: 	 $env{'environment.remote'} eq 'off' );
  861: 
  862:     my $width = 620;
  863:     my $height = 600;
  864:     my $helptopic=&general_help();
  865:     my $details_link = '/adm/help/'.$helptopic.'.hlp';
  866:     my $nothing=&Apache::lonhtmlcommon::javascript_nothing();
  867:     my $start_page =
  868:         &Apache::loncommon::start_page('Help Menu', undef,
  869: 				       {'frameset'    => 1,
  870: 					'js_ready'    => 1,
  871: 					'add_entries' => {
  872: 					    'border' => '0',
  873: 					    'rows'   => "105,*",},});
  874:     my $end_page =
  875:         &Apache::loncommon::end_page({'frameset' => 1,
  876: 				      'js_ready' => 1,});
  877: 
  878:     my $template .= <<"ENDTEMPLATE";
  879: <script type="text/javascript">
  880: // <!-- BEGIN LON-CAPA Internal
  881: // <![CDATA[
  882: var banner_link = '';
  883: function helpMenu(target) {
  884:     var caller = this;
  885:     if (target == 'open') {
  886:         var newWindow = null;
  887:         try {
  888:             newWindow =  window.open($nothing,"helpmenu","HEIGHT=$height,WIDTH=$width,resizable=yes,scrollbars=yes" )
  889:         }
  890:         catch(error) {
  891:             writeHelp(caller);
  892:             return;
  893:         }
  894:         if (newWindow) {
  895:             caller = newWindow;
  896:         }
  897:     }
  898:     writeHelp(caller);
  899:     return;
  900: }
  901: function writeHelp(caller) {
  902:     caller.document.writeln('$start_page<frame name="bannerframe"  src="'+banner_link+'" /><frame name="bodyframe" src="$details_link" /> $end_page')
  903:     caller.document.close()
  904:     caller.focus()
  905: }
  906: // ]]>
  907: // END LON-CAPA Internal -->
  908: </script>
  909: ENDTEMPLATE
  910:     return $template;
  911: }
  912: 
  913: sub help_open_bug {
  914:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
  915:     unless ($env{'user.adv'}) { return ''; }
  916:     unless ($Apache::lonnet::perlvar{'BugzillaHost'}) { return ''; }
  917:     $text = "" if (not defined $text);
  918:     $stayOnPage = 0 if (not defined $stayOnPage);
  919:     if ($env{'browser.interface'} eq 'textual' ||
  920: 	$env{'environment.remote'} eq 'off' ) {
  921: 	$stayOnPage=1;
  922:     }
  923:     $width = 600 if (not defined $width);
  924:     $height = 600 if (not defined $height);
  925: 
  926:     $topic=~s/\W+/\+/g;
  927:     my $link='';
  928:     my $template='';
  929:     my $url=$Apache::lonnet::perlvar{'BugzillaHost'}.'enter_bug.cgi?product=LON-CAPA&amp;bug_file_loc='.
  930: 	&escape($ENV{'REQUEST_URI'}).'&amp;component='.$topic;
  931:     if (!$stayOnPage)
  932:     {
  933: 	$link = "javascript:void(open('$url', 'Bugzilla', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
  934:     }
  935:     else
  936:     {
  937: 	$link = $url;
  938:     }
  939:     # Add the text
  940:     if ($text ne "")
  941:     {
  942: 	$template .= 
  943:   "<table bgcolor='#AA3333' cellspacing='1' cellpadding='1' border='0'><tr>".
  944:   "<td bgcolor='#FF5555'><a target=\"_top\" href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  945:     }
  946: 
  947:     # Add the graphic
  948:     my $title = &mt('Report a Bug');
  949:     my $bugicon=&lonhttpdurl("/adm/lonMisc/smallBug.gif");
  950:     $template .= <<"ENDTEMPLATE";
  951:  <a target="_top" href="$link" title="$title"><img src="$bugicon" border="0" alt="(Bug: $topic)" /></a>
  952: ENDTEMPLATE
  953:     if ($text ne '') { $template.='</td></tr></table>' };
  954:     return $template;
  955: 
  956: }
  957: 
  958: sub help_open_faq {
  959:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
  960:     unless ($env{'user.adv'}) { return ''; }
  961:     unless ($Apache::lonnet::perlvar{'FAQHost'}) { return ''; }
  962:     $text = "" if (not defined $text);
  963:     $stayOnPage = 0 if (not defined $stayOnPage);
  964:     if ($env{'browser.interface'} eq 'textual' ||
  965: 	$env{'environment.remote'} eq 'off' ) {
  966: 	$stayOnPage=1;
  967:     }
  968:     $width = 350 if (not defined $width);
  969:     $height = 400 if (not defined $height);
  970: 
  971:     $topic=~s/\W+/\+/g;
  972:     my $link='';
  973:     my $template='';
  974:     my $url=$Apache::lonnet::perlvar{'FAQHost'}.'/fom/cache/'.$topic.'.html';
  975:     if (!$stayOnPage)
  976:     {
  977: 	$link = "javascript:void(open('$url', 'FAQ-O-Matic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
  978:     }
  979:     else
  980:     {
  981: 	$link = $url;
  982:     }
  983: 
  984:     # Add the text
  985:     if ($text ne "")
  986:     {
  987: 	$template .= 
  988:   "<table bgcolor='#337733' cellspacing='1' cellpadding='1' border='0'><tr>".
  989:   "<td bgcolor='#448844'><a target=\"_top\" href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  990:     }
  991: 
  992:     # Add the graphic
  993:     my $title = &mt('View the FAQ');
  994:     my $faqicon=&lonhttpdurl("/adm/lonMisc/smallFAQ.gif");
  995:     $template .= <<"ENDTEMPLATE";
  996:  <a target="_top" href="$link" title="$title"><img src="$faqicon" border="0" alt="(FAQ: $topic)" /></a>
  997: ENDTEMPLATE
  998:     if ($text ne '') { $template.='</td></tr></table>' };
  999:     return $template;
 1000: 
 1001: }
 1002: 
 1003: ###############################################################
 1004: ###############################################################
 1005: 
 1006: =pod
 1007: 
 1008: =item * change_content_javascript():
 1009: 
 1010: This and the next function allow you to create small sections of an
 1011: otherwise static HTML page that you can update on the fly with
 1012: Javascript, even in Netscape 4.
 1013: 
 1014: The Javascript fragment returned by this function (no E<lt>scriptE<gt> tag)
 1015: must be written to the HTML page once. It will prove the Javascript
 1016: function "change(name, content)". Calling the change function with the
 1017: name of the section 
 1018: you want to update, matching the name passed to C<changable_area>, and
 1019: the new content you want to put in there, will put the content into
 1020: that area.
 1021: 
 1022: B<Note>: Netscape 4 only reserves enough space for the changable area
 1023: to contain room for the original contents. You need to "make space"
 1024: for whatever changes you wish to make, and be B<sure> to check your
 1025: code in Netscape 4. This feature in Netscape 4 is B<not> powerful;
 1026: it's adequate for updating a one-line status display, but little more.
 1027: This script will set the space to 100% width, so you only need to
 1028: worry about height in Netscape 4.
 1029: 
 1030: Modern browsers are much less limiting, and if you can commit to the
 1031: user not using Netscape 4, this feature may be used freely with
 1032: pretty much any HTML.
 1033: 
 1034: =cut
 1035: 
 1036: sub change_content_javascript {
 1037:     # If we're on Netscape 4, we need to use Layer-based code
 1038:     if ($env{'browser.type'} eq 'netscape' &&
 1039: 	$env{'browser.version'} =~ /^4\./) {
 1040: 	return (<<NETSCAPE4);
 1041: 	function change(name, content) {
 1042: 	    doc = document.layers[name+"___escape"].layers[0].document;
 1043: 	    doc.open();
 1044: 	    doc.write(content);
 1045: 	    doc.close();
 1046: 	}
 1047: NETSCAPE4
 1048:     } else {
 1049: 	# Otherwise, we need to use semi-standards-compliant code
 1050: 	# (technically, "innerHTML" isn't standard but the equivalent
 1051: 	# is really scary, and every useful browser supports it
 1052: 	return (<<DOMBASED);
 1053: 	function change(name, content) {
 1054: 	    element = document.getElementById(name);
 1055: 	    element.innerHTML = content;
 1056: 	}
 1057: DOMBASED
 1058:     }
 1059: }
 1060: 
 1061: =pod
 1062: 
 1063: =item * changable_area($name, $origContent):
 1064: 
 1065: This provides a "changable area" that can be modified on the fly via
 1066: the Javascript code provided in C<change_content_javascript>. $name is
 1067: the name you will use to reference the area later; do not repeat the
 1068: same name on a given HTML page more then once. $origContent is what
 1069: the area will originally contain, which can be left blank.
 1070: 
 1071: =cut
 1072: 
 1073: sub changable_area {
 1074:     my ($name, $origContent) = @_;
 1075: 
 1076:     if ($env{'browser.type'} eq 'netscape' &&
 1077: 	$env{'browser.version'} =~ /^4\./) {
 1078: 	# If this is netscape 4, we need to use the Layer tag
 1079: 	return "<ilayer width='100%' id='${name}___escape' overflow='none'><layer width='100%' id='$name' overflow='none'>$origContent</layer></ilayer>";
 1080:     } else {
 1081: 	return "<span id='$name'>$origContent</span>";
 1082:     }
 1083: }
 1084: 
 1085: =pod
 1086: 
 1087: =item * resize_textarea_js
 1088: 
 1089: emits the needed javascript to resize a textarea to be as big as possible
 1090: 
 1091: creates a function resize_textrea that takes two IDs first should be
 1092: the id of the element to resize, second should be the id of a div that
 1093: surrounds everything that comes after the textarea, this routine needs
 1094: to be attached to the <body> for the onload and onresize events.
 1095: 
 1096: 
 1097: =cut
 1098: 
 1099: sub resize_textarea_js {
 1100:     return <<"RESIZE";
 1101:     <script type="text/javascript">
 1102: var Geometry = {};
 1103: function init_geometry() {
 1104:     if (Geometry.init) { return };
 1105:     Geometry.init=1;
 1106:     if (window.innerHeight) {
 1107: 	Geometry.getViewportHeight = function() { return window.innerHeight; };
 1108:     }
 1109:     else if (document.documentElement && document.documentElement.clientHeight) {
 1110: 	Geometry.getViewportHeight = 
 1111: 	    function() { return document.documentElement.clientHeight; };
 1112:     }
 1113:     else if (document.body.clientHeight) {
 1114: 	Geometry.getViewportHeight = 
 1115: 	    function() { return document.body.clientHeight; };
 1116:     }
 1117: }
 1118: 
 1119: function resize_textarea(textarea_id,bottom_id) {
 1120:     init_geometry();
 1121:     var textarea        = document.getElementById(textarea_id);
 1122:     //alert(textarea);
 1123: 
 1124:     var textarea_top    = textarea.offsetTop;
 1125:     var textarea_height = textarea.offsetHeight;
 1126:     var bottom          = document.getElementById(bottom_id);
 1127:     var bottom_top      = bottom.offsetTop;
 1128:     var bottom_height   = bottom.offsetHeight;
 1129:     var window_height   = Geometry.getViewportHeight();
 1130:     var fudge           = 23; 
 1131:     var new_height      = window_height-fudge-textarea_top-bottom_height;
 1132:     if (new_height < 300) {
 1133: 	new_height = 300;
 1134:     }
 1135:     textarea.style.height=new_height+'px';
 1136: }
 1137: </script>
 1138: RESIZE
 1139: 
 1140: }
 1141: 
 1142: =pod
 1143: 
 1144: =back
 1145:  
 1146: =head1 Excel and CSV file utility routines
 1147: 
 1148: =over 4
 1149: 
 1150: =cut
 1151: 
 1152: ###############################################################
 1153: ###############################################################
 1154: 
 1155: =pod
 1156: 
 1157: =item * csv_translate($text) 
 1158: 
 1159: Translate $text to allow it to be output as a 'comma separated values' 
 1160: format.
 1161: 
 1162: =cut
 1163: 
 1164: ###############################################################
 1165: ###############################################################
 1166: sub csv_translate {
 1167:     my $text = shift;
 1168:     $text =~ s/\"/\"\"/g;
 1169:     $text =~ s/\n/ /g;
 1170:     return $text;
 1171: }
 1172: 
 1173: ###############################################################
 1174: ###############################################################
 1175: 
 1176: =pod
 1177: 
 1178: =item * define_excel_formats
 1179: 
 1180: Define some commonly used Excel cell formats.
 1181: 
 1182: Currently supported formats:
 1183: 
 1184: =over 4
 1185: 
 1186: =item header
 1187: 
 1188: =item bold
 1189: 
 1190: =item h1
 1191: 
 1192: =item h2
 1193: 
 1194: =item h3
 1195: 
 1196: =item h4
 1197: 
 1198: =item i
 1199: 
 1200: =item date
 1201: 
 1202: =back
 1203: 
 1204: Inputs: $workbook
 1205: 
 1206: Returns: $format, a hash reference.
 1207: 
 1208: =cut
 1209: 
 1210: ###############################################################
 1211: ###############################################################
 1212: sub define_excel_formats {
 1213:     my ($workbook) = @_;
 1214:     my $format;
 1215:     $format->{'header'} = $workbook->add_format(bold      => 1, 
 1216:                                                 bottom    => 1,
 1217:                                                 align     => 'center');
 1218:     $format->{'bold'} = $workbook->add_format(bold=>1);
 1219:     $format->{'h1'}   = $workbook->add_format(bold=>1, size=>18);
 1220:     $format->{'h2'}   = $workbook->add_format(bold=>1, size=>16);
 1221:     $format->{'h3'}   = $workbook->add_format(bold=>1, size=>14);
 1222:     $format->{'h4'}   = $workbook->add_format(bold=>1, size=>12);
 1223:     $format->{'i'}    = $workbook->add_format(italic=>1);
 1224:     $format->{'date'} = $workbook->add_format(num_format=>
 1225:                                             'mm/dd/yyyy hh:mm:ss');
 1226:     return $format;
 1227: }
 1228: 
 1229: ###############################################################
 1230: ###############################################################
 1231: 
 1232: =pod
 1233: 
 1234: =item * create_workbook
 1235: 
 1236: Create an Excel worksheet.  If it fails, output message on the
 1237: request object and return undefs.
 1238: 
 1239: Inputs: Apache request object
 1240: 
 1241: Returns (undef) on failure, 
 1242:     Excel worksheet object, scalar with filename, and formats 
 1243:     from &Apache::loncommon::define_excel_formats on success
 1244: 
 1245: =cut
 1246: 
 1247: ###############################################################
 1248: ###############################################################
 1249: sub create_workbook {
 1250:     my ($r) = @_;
 1251:         #
 1252:     # Create the excel spreadsheet
 1253:     my $filename = '/prtspool/'.
 1254:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
 1255:         time.'_'.rand(1000000000).'.xls';
 1256:     my $workbook  = Spreadsheet::WriteExcel->new('/home/httpd'.$filename);
 1257:     if (! defined($workbook)) {
 1258:         $r->log_error("Error creating excel spreadsheet $filename: $!");
 1259:         $r->print('<p>'.&mt("Unable to create new Excel file.  ".
 1260:                             "This error has been logged.  ".
 1261:                             "Please alert your LON-CAPA administrator").
 1262:                   '</p>');
 1263:         return (undef);
 1264:     }
 1265:     #
 1266:     $workbook->set_tempdir('/home/httpd/perl/tmp');
 1267:     #
 1268:     my $format = &Apache::loncommon::define_excel_formats($workbook);
 1269:     return ($workbook,$filename,$format);
 1270: }
 1271: 
 1272: ###############################################################
 1273: ###############################################################
 1274: 
 1275: =pod
 1276: 
 1277: =item * create_text_file
 1278: 
 1279: Create a file to write to and eventually make available to the user.
 1280: If file creation fails, outputs an error message on the request object and 
 1281: return undefs.
 1282: 
 1283: Inputs: Apache request object, and file suffix
 1284: 
 1285: Returns (undef) on failure, 
 1286:     Filehandle and filename on success.
 1287: 
 1288: =cut
 1289: 
 1290: ###############################################################
 1291: ###############################################################
 1292: sub create_text_file {
 1293:     my ($r,$suffix) = @_;
 1294:     if (! defined($suffix)) { $suffix = 'txt'; };
 1295:     my $fh;
 1296:     my $filename = '/prtspool/'.
 1297:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
 1298:         time.'_'.rand(1000000000).'.'.$suffix;
 1299:     $fh = Apache::File->new('>/home/httpd'.$filename);
 1300:     if (! defined($fh)) {
 1301:         $r->log_error("Couldn't open $filename for output $!");
 1302:         $r->print("Problems occured in creating the output file.  ".
 1303:                   "This error has been logged.  ".
 1304:                   "Please alert your LON-CAPA administrator.");
 1305:     }
 1306:     return ($fh,$filename)
 1307: }
 1308: 
 1309: 
 1310: =pod 
 1311: 
 1312: =back
 1313: 
 1314: =cut
 1315: 
 1316: ###############################################################
 1317: ##        Home server <option> list generating code          ##
 1318: ###############################################################
 1319: 
 1320: # ------------------------------------------
 1321: 
 1322: sub domain_select {
 1323:     my ($name,$value,$multiple)=@_;
 1324:     my %domains=map { 
 1325: 	$_ => $_.' '. &Apache::lonnet::domain($_,'description') 
 1326:     } &Apache::lonnet::all_domains();
 1327:     if ($multiple) {
 1328: 	$domains{''}=&mt('Any domain');
 1329: 	$domains{'select_form_order'} = [sort {lc($a) cmp lc($b) } (keys(%domains))];
 1330: 	return &multiple_select_form($name,$value,4,\%domains);
 1331:     } else {
 1332: 	$domains{'select_form_order'} = [sort {lc($a) cmp lc($b) } (keys(%domains))];
 1333: 	return &select_form($name,$value,%domains);
 1334:     }
 1335: }
 1336: 
 1337: #-------------------------------------------
 1338: 
 1339: =pod
 1340: 
 1341: =head1 Routines for form select boxes
 1342: 
 1343: =over 4
 1344: 
 1345: =cut
 1346: 
 1347: =item * multiple_select_form($name,$value,$size,$hash,$order)
 1348: 
 1349: Returns a string containing a <select> element int multiple mode
 1350: 
 1351: 
 1352: Args:
 1353:   $name - name of the <select> element
 1354:   $value - scalar or array ref of values that should already be selected
 1355:   $size - number of rows long the select element is
 1356:   $hash - the elements should be 'option' => 'shown text'
 1357:           (shown text should already have been &mt())
 1358:   $order - (optional) array ref of the order to show the elements in
 1359: 
 1360: =cut
 1361: 
 1362: #-------------------------------------------
 1363: sub multiple_select_form {
 1364:     my ($name,$value,$size,$hash,$order)=@_;
 1365:     my %selected = map { $_ => 1 } ref($value)?@{$value}:($value);
 1366:     my $output='';
 1367:     if (! defined($size)) {
 1368:         $size = 4;
 1369:         if (scalar(keys(%$hash))<4) {
 1370:             $size = scalar(keys(%$hash));
 1371:         }
 1372:     }
 1373:     $output.="\n<select name='$name' size='$size' multiple='1'>";
 1374:     my @order;
 1375:     if (ref($order) eq 'ARRAY')  {
 1376:         @order = @{$order};
 1377:     } else {
 1378:         @order = sort(keys(%$hash));
 1379:     }
 1380:     if (exists($$hash{'select_form_order'})) {
 1381:         @order = @{$$hash{'select_form_order'}};
 1382:     }
 1383:         
 1384:     foreach my $key (@order) {
 1385:         $output.='<option value="'.&HTML::Entities::encode($key,'"<>&').'" ';
 1386:         $output.='selected="selected" ' if ($selected{$key});
 1387:         $output.='>'.$hash->{$key}."</option>\n";
 1388:     }
 1389:     $output.="</select>\n";
 1390:     return $output;
 1391: }
 1392: 
 1393: #-------------------------------------------
 1394: 
 1395: =pod
 1396: 
 1397: =item * select_form($defdom,$name,%hash)
 1398: 
 1399: Returns a string containing a <select name='$name' size='1'> form to 
 1400: allow a user to select options from a hash option_name => displayed text.  
 1401: See lonrights.pm for an example invocation and use.
 1402: 
 1403: =cut
 1404: 
 1405: #-------------------------------------------
 1406: sub select_form {
 1407:     my ($def,$name,%hash) = @_;
 1408:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
 1409:     my @keys;
 1410:     if (exists($hash{'select_form_order'})) {
 1411: 	@keys=@{$hash{'select_form_order'}};
 1412:     } else {
 1413: 	@keys=sort(keys(%hash));
 1414:     }
 1415:     foreach my $key (@keys) {
 1416:         $selectform.=
 1417: 	    '<option value="'.&HTML::Entities::encode($key,'"<>&').'" '.
 1418:             ($key eq $def ? 'selected="selected" ' : '').
 1419:                 ">".&mt($hash{$key})."</option>\n";
 1420:     }
 1421:     $selectform.="</select>";
 1422:     return $selectform;
 1423: }
 1424: 
 1425: # For display filters
 1426: 
 1427: sub display_filter {
 1428:     if (!$env{'form.show'}) { $env{'form.show'}=10; }
 1429:     if (!$env{'form.displayfilter'}) { $env{'form.displayfilter'}='currentfolder'; }
 1430:     return '<nobr><label>'.&mt('Records [_1]',
 1431: 			       &Apache::lonmeta::selectbox('show',$env{'form.show'},undef,
 1432: 							   (&mt('all'),10,20,50,100,1000,10000))).
 1433: 	   '</label></nobr> <nobr>'.
 1434:            &mt('Filter [_1]',
 1435: 	   &select_form($env{'form.displayfilter'},
 1436: 			'displayfilter',
 1437: 			('currentfolder' => 'Current folder/page',
 1438: 			 'containing' => 'Containing phrase',
 1439: 			 'none' => 'None'))).
 1440: 			 '<input type="text" name="containingphrase" size="30" value="'.&HTML::Entities::encode($env{'form.containingphrase'}).'" /></nobr>';
 1441: }
 1442: 
 1443: sub gradeleveldescription {
 1444:     my $gradelevel=shift;
 1445:     my %gradelevels=(0 => 'Not specified',
 1446: 		     1 => 'Grade 1',
 1447: 		     2 => 'Grade 2',
 1448: 		     3 => 'Grade 3',
 1449: 		     4 => 'Grade 4',
 1450: 		     5 => 'Grade 5',
 1451: 		     6 => 'Grade 6',
 1452: 		     7 => 'Grade 7',
 1453: 		     8 => 'Grade 8',
 1454: 		     9 => 'Grade 9',
 1455: 		     10 => 'Grade 10',
 1456: 		     11 => 'Grade 11',
 1457: 		     12 => 'Grade 12',
 1458: 		     13 => 'Grade 13',
 1459: 		     14 => '100 Level',
 1460: 		     15 => '200 Level',
 1461: 		     16 => '300 Level',
 1462: 		     17 => '400 Level',
 1463: 		     18 => 'Graduate Level');
 1464:     return &mt($gradelevels{$gradelevel});
 1465: }
 1466: 
 1467: sub select_level_form {
 1468:     my ($deflevel,$name)=@_;
 1469:     unless ($deflevel) { $deflevel=0; }
 1470:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
 1471:     for (my $i=0; $i<=18; $i++) {
 1472:         $selectform.="<option value=\"$i\" ".
 1473:             ($i==$deflevel ? 'selected="selected" ' : '').
 1474:                 ">".&gradeleveldescription($i)."</option>\n";
 1475:     }
 1476:     $selectform.="</select>";
 1477:     return $selectform;
 1478: }
 1479: 
 1480: #-------------------------------------------
 1481: 
 1482: =pod
 1483: 
 1484: =item * select_dom_form($defdom,$name,$includeempty,$showdomdesc)
 1485: 
 1486: Returns a string containing a <select name='$name' size='1'> form to 
 1487: allow a user to select the domain to preform an operation in.  
 1488: See loncreateuser.pm for an example invocation and use.
 1489: 
 1490: If the $includeempty flag is set, it also includes an empty choice ("no domain
 1491: selected");
 1492: 
 1493: If the $showdomdesc flag is set, the domain name is followed by the domain description. 
 1494: 
 1495: =cut
 1496: 
 1497: #-------------------------------------------
 1498: sub select_dom_form {
 1499:     my ($defdom,$name,$includeempty,$showdomdesc) = @_;
 1500:     my @domains = sort {lc($a) cmp lc($b)} (&Apache::lonnet::all_domains());
 1501:     if ($includeempty) { @domains=('',@domains); }
 1502:     my $selectdomain = "<select name=\"$name\" size=\"1\">\n";
 1503:     foreach my $dom (@domains) {
 1504:         $selectdomain.="<option value=\"$dom\" ".
 1505:             ($dom eq $defdom ? 'selected="selected" ' : '').'>'.$dom;
 1506:         if ($showdomdesc) {
 1507:             if ($dom ne '') {
 1508:                 my $domdesc = &Apache::lonnet::domain($dom,'description');
 1509:                 if ($domdesc ne '') {
 1510:                     $selectdomain .= ' ('.$domdesc.')';
 1511:                 }
 1512:             } 
 1513:         }
 1514:         $selectdomain .= "</option>\n";
 1515:     }
 1516:     $selectdomain.="</select>";
 1517:     return $selectdomain;
 1518: }
 1519: 
 1520: #-------------------------------------------
 1521: 
 1522: =pod
 1523: 
 1524: =item * home_server_option_list($domain)
 1525: 
 1526: returns a string which contains an <option> list to be used in a 
 1527: <select> form input.  See loncreateuser.pm for an example.
 1528: 
 1529: =cut
 1530: 
 1531: #-------------------------------------------
 1532: sub home_server_option_list {
 1533:     my $domain = shift;
 1534:     my %servers = &Apache::lonnet::get_servers($domain,'library');
 1535:     my $result = '';
 1536:     foreach my $hostid (sort(keys(%servers))) {
 1537:         $result.=
 1538:             '<option value="'.$hostid.'">'.
 1539: 	    $hostid.' '.$servers{$hostid}."</option>\n";
 1540:     }
 1541:     return $result;
 1542: }
 1543: 
 1544: =pod
 1545: 
 1546: =back 
 1547: 
 1548: =cut
 1549: 
 1550: ###############################################################
 1551: ##                  Decoding User Agent                      ##
 1552: ###############################################################
 1553: 
 1554: =pod
 1555: 
 1556: =head1 Decoding the User Agent
 1557: 
 1558: =over 4
 1559: 
 1560: =item * &decode_user_agent()
 1561: 
 1562: Inputs: $r
 1563: 
 1564: Outputs:
 1565: 
 1566: =over 4
 1567: 
 1568: =item * $httpbrowser
 1569: 
 1570: =item * $clientbrowser
 1571: 
 1572: =item * $clientversion
 1573: 
 1574: =item * $clientmathml
 1575: 
 1576: =item * $clientunicode
 1577: 
 1578: =item * $clientos
 1579: 
 1580: =back
 1581: 
 1582: =back 
 1583: 
 1584: =cut
 1585: 
 1586: ###############################################################
 1587: ###############################################################
 1588: sub decode_user_agent {
 1589:     my ($r)=@_;
 1590:     my @browsertype=split(/\&/,$Apache::lonnet::perlvar{"lonBrowsDet"});
 1591:     my %mathcap=split(/\&/,$$Apache::lonnet::perlvar{"lonMathML"});
 1592:     my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
 1593:     if (!$httpbrowser && $r) { $httpbrowser=$r->header_in('User-Agent'); }
 1594:     my $clientbrowser='unknown';
 1595:     my $clientversion='0';
 1596:     my $clientmathml='';
 1597:     my $clientunicode='0';
 1598:     for (my $i=0;$i<=$#browsertype;$i++) {
 1599:         my ($bname,$match,$notmatch,$vreg,$minv,$univ)=split(/\:/,$browsertype[$i]);
 1600: 	if (($httpbrowser=~/$match/i)  && ($httpbrowser!~/$notmatch/i)) {
 1601: 	    $clientbrowser=$bname;
 1602:             $httpbrowser=~/$vreg/i;
 1603: 	    $clientversion=$1;
 1604:             $clientmathml=($clientversion>=$minv);
 1605:             $clientunicode=($clientversion>=$univ);
 1606: 	}
 1607:     }
 1608:     my $clientos='unknown';
 1609:     if (($httpbrowser=~/linux/i) ||
 1610:         ($httpbrowser=~/unix/i) ||
 1611:         ($httpbrowser=~/ux/i) ||
 1612:         ($httpbrowser=~/solaris/i)) { $clientos='unix'; }
 1613:     if (($httpbrowser=~/vax/i) ||
 1614:         ($httpbrowser=~/vms/i)) { $clientos='vms'; }
 1615:     if ($httpbrowser=~/next/i) { $clientos='next'; }
 1616:     if (($httpbrowser=~/mac/i) ||
 1617:         ($httpbrowser=~/powerpc/i)) { $clientos='mac'; }
 1618:     if ($httpbrowser=~/win/i) { $clientos='win'; }
 1619:     if ($httpbrowser=~/embed/i) { $clientos='pda'; }
 1620:     return ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
 1621:             $clientunicode,$clientos,);
 1622: }
 1623: 
 1624: ###############################################################
 1625: ##    Authentication changing form generation subroutines    ##
 1626: ###############################################################
 1627: ##
 1628: ## All of the authform_xxxxxxx subroutines take their inputs in a
 1629: ## hash, and have reasonable default values.
 1630: ##
 1631: ##    formname = the name given in the <form> tag.
 1632: #-------------------------------------------
 1633: 
 1634: =pod
 1635: 
 1636: =head1 Authentication Routines
 1637: 
 1638: =over 4
 1639: 
 1640: =item * authform_xxxxxx
 1641: 
 1642: The authform_xxxxxx subroutines provide javascript and html forms which 
 1643: handle some of the conveniences required for authentication forms.  
 1644: This is not an optimal method, but it works.  
 1645: 
 1646: See loncreateuser.pm for invocation and use examples.
 1647: 
 1648: =over 4
 1649: 
 1650: =item * authform_header
 1651: 
 1652: =item * authform_authorwarning
 1653: 
 1654: =item * authform_nochange
 1655: 
 1656: =item * authform_kerberos
 1657: 
 1658: =item * authform_internal
 1659: 
 1660: =item * authform_filesystem
 1661: 
 1662: =back
 1663: 
 1664: =back 
 1665: 
 1666: =cut
 1667: 
 1668: #-------------------------------------------
 1669: sub authform_header{  
 1670:     my %in = (
 1671:         formname => 'cu',
 1672:         kerb_def_dom => '',
 1673:         @_,
 1674:     );
 1675:     $in{'formname'} = 'document.' . $in{'formname'};
 1676:     my $result='';
 1677: 
 1678: #---------------------------------------------- Code for upper case translation
 1679:     my $Javascript_toUpperCase;
 1680:     unless ($in{kerb_def_dom}) {
 1681:         $Javascript_toUpperCase =<<"END";
 1682:         switch (choice) {
 1683:            case 'krb': currentform.elements[choicearg].value =
 1684:                currentform.elements[choicearg].value.toUpperCase();
 1685:                break;
 1686:            default:
 1687:         }
 1688: END
 1689:     } else {
 1690:         $Javascript_toUpperCase = "";
 1691:     }
 1692: 
 1693:     my $radioval = "'nochange'";
 1694:     if (exists($in{'curr_authtype'}) &&
 1695:         defined($in{'curr_authtype'}) &&
 1696:         $in{'curr_authtype'} ne '') {
 1697:         $radioval = "'$in{'curr_authtype'}arg'";
 1698:     }
 1699:     my $argfield = 'null';
 1700:     if ( grep/^mode$/,(keys %in) ) {
 1701:         if ($in{'mode'} eq 'modifycourse')  {
 1702:             if ( grep/^curr_authtype$/,(keys %in) ) {
 1703:                 $radioval = "'$in{'curr_authtype'}'";
 1704:             }
 1705:             if ( grep/^curr_autharg$/,(keys %in) ) {
 1706:                 unless ($in{'curr_autharg'} eq '') {
 1707:                     $argfield = "'$in{'curr_autharg'}'";
 1708:                 }
 1709:             }
 1710:         }
 1711:     }
 1712: 
 1713:     $result.=<<"END";
 1714: var current = new Object();
 1715: current.radiovalue = $radioval;
 1716: current.argfield = $argfield;
 1717: 
 1718: function changed_radio(choice,currentform) {
 1719:     var choicearg = choice + 'arg';
 1720:     // If a radio button in changed, we need to change the argfield
 1721:     if (current.radiovalue != choice) {
 1722:         current.radiovalue = choice;
 1723:         if (current.argfield != null) {
 1724:             currentform.elements[current.argfield].value = '';
 1725:         }
 1726:         if (choice == 'nochange') {
 1727:             current.argfield = null;
 1728:         } else {
 1729:             current.argfield = choicearg;
 1730:             switch(choice) {
 1731:                 case 'krb': 
 1732:                     currentform.elements[current.argfield].value = 
 1733:                         "$in{'kerb_def_dom'}";
 1734:                 break;
 1735:               default:
 1736:                 break;
 1737:             }
 1738:         }
 1739:     }
 1740:     return;
 1741: }
 1742: 
 1743: function changed_text(choice,currentform) {
 1744:     var choicearg = choice + 'arg';
 1745:     if (currentform.elements[choicearg].value !='') {
 1746:         $Javascript_toUpperCase
 1747:         // clear old field
 1748:         if ((current.argfield != choicearg) && (current.argfield != null)) {
 1749:             currentform.elements[current.argfield].value = '';
 1750:         }
 1751:         current.argfield = choicearg;
 1752:     }
 1753:     set_auth_radio_buttons(choice,currentform);
 1754:     return;
 1755: }
 1756: 
 1757: function set_auth_radio_buttons(newvalue,currentform) {
 1758:     var i=0;
 1759:     while (i < currentform.login.length) {
 1760:         if (currentform.login[i].value == newvalue) { break; }
 1761:         i++;
 1762:     }
 1763:     if (i == currentform.login.length) {
 1764:         return;
 1765:     }
 1766:     current.radiovalue = newvalue;
 1767:     currentform.login[i].checked = true;
 1768:     return;
 1769: }
 1770: END
 1771:     return $result;
 1772: }
 1773: 
 1774: sub authform_authorwarning{
 1775:     my $result='';
 1776:     $result='<i>'.
 1777:         &mt('As a general rule, only authors or co-authors should be '.
 1778:             'filesystem authenticated '.
 1779:             '(which allows access to the server filesystem).')."</i>\n";
 1780:     return $result;
 1781: }
 1782: 
 1783: sub authform_nochange{  
 1784:     my %in = (
 1785:               formname => 'document.cu',
 1786:               kerb_def_dom => 'MSU.EDU',
 1787:               @_,
 1788:           );
 1789:     my $result = '<label>'.&mt('[_1] Do not change login data',
 1790:                      '<input type="radio" name="login" value="nochange" '.
 1791:                      'checked="checked" onclick="'.
 1792:             "javascript:changed_radio('nochange',$in{'formname'});".'" />').
 1793: 	    '</label>';
 1794:     return $result;
 1795: }
 1796: 
 1797: sub authform_kerberos{  
 1798:     my %in = (
 1799:               formname => 'document.cu',
 1800:               kerb_def_dom => 'MSU.EDU',
 1801:               kerb_def_auth => 'krb4',
 1802:               @_,
 1803:               );
 1804:     my ($check4,$check5,$krbarg);
 1805:     if ($in{'kerb_def_auth'} eq 'krb5') {
 1806:        $check5 = " checked=\"on\"";
 1807:     } else {
 1808:        $check4 = " checked=\"on\"";
 1809:     }
 1810:     $krbarg = $in{'kerb_def_dom'};
 1811: 
 1812:     my $krbcheck = "";
 1813:     if ( grep/^curr_authtype$/,(keys %in) ) {
 1814:         if ($in{'curr_authtype'} =~ m/^krb/) {
 1815:             $krbcheck = " checked=\"on\"";
 1816:             if ( grep/^curr_autharg$/,(keys %in) ) {
 1817:                 $krbarg = $in{'curr_autharg'};
 1818:             }
 1819:         }
 1820:     }
 1821: 
 1822:     my $jscall = "javascript:changed_radio('krb',$in{'formname'});";
 1823:     my $result .= &mt
 1824:         ('[_1] Kerberos authenticated with domain [_2] '.
 1825:          '[_3] Version 4 [_4] Version 5 [_5]',
 1826:          '<label><input type="radio" name="login" value="krb" '.
 1827:              'onclick="'.$jscall.'" onchange="'.$jscall.'"'.$krbcheck.' />',
 1828:          '</label><input type="text" size="10" name="krbarg" '.
 1829:              'value="'.$krbarg.'" '.
 1830:              'onchange="'.$jscall.'" />',
 1831:          '<label><input type="radio" name="krbver" value="4" '.$check4.' />',
 1832:          '</label><label><input type="radio" name="krbver" value="5" '.$check5.' />',
 1833: 	 '</label>');
 1834:     return $result;
 1835: }
 1836: 
 1837: sub authform_internal{  
 1838:     my %args = (
 1839:                 formname => 'document.cu',
 1840:                 kerb_def_dom => 'MSU.EDU',
 1841:                 @_,
 1842:                 );
 1843: 
 1844:     my $intcheck = "";
 1845:     my $intarg = 'value=""';
 1846:     if ( grep/^curr_authtype$/,(keys %args) ) {
 1847:         if ($args{'curr_authtype'} eq 'int') {
 1848:             $intcheck = " checked=\"on\"";
 1849:             if ( grep/^curr_autharg$/,(keys %args) ) {
 1850:                 $intarg = "value=\"$args{'curr_autharg'}\"";
 1851:             }
 1852:         }
 1853:     }
 1854: 
 1855:     my $jscall = "javascript:changed_radio('int',$args{'formname'});";
 1856:     my $result.=&mt
 1857:         ('[_1] Internally authenticated (with initial password [_2])',
 1858:          '<label><input type="radio" name="login" value="int" '.$intcheck.
 1859:              ' onchange="'.$jscall.'" onclick="'.$jscall.'" />',
 1860:          '</label><input type="text" size="10" name="intarg" '.$intarg.
 1861:              ' onchange="'.$jscall.'" />');
 1862:     return $result;
 1863: }
 1864: 
 1865: sub authform_local{  
 1866:     my %in = (
 1867:               formname => 'document.cu',
 1868:               kerb_def_dom => 'MSU.EDU',
 1869:               @_,
 1870:               );
 1871: 
 1872:     my $loccheck = "";
 1873:     my $locarg = 'value=""';
 1874:     if ( grep/^curr_authtype$/,(keys %in) ) {
 1875:         if ($in{'curr_authtype'} eq 'loc') {
 1876:             $loccheck = " checked=\"on\"";
 1877:             if ( grep/^curr_autharg$/,(keys %in) ) {
 1878:                 $locarg = "value=\"$in{'curr_autharg'}\"";
 1879:             }
 1880:         }
 1881:     }
 1882: 
 1883:     my $jscall = "javascript:changed_radio('loc',$in{'formname'});";
 1884:     my $result.=&mt('[_1] Local Authentication with argument [_2]',
 1885:                     '<label><input type="radio" name="login" value="loc" '.$loccheck.
 1886:                         ' onchange="'.$jscall.'" onclick="'.$jscall.'" />',
 1887:                     '</label><input type="text" size="10" name="locarg" '.$locarg.
 1888:                         ' onchange="'.$jscall.'" />');
 1889:     return $result;
 1890: }
 1891: 
 1892: sub authform_filesystem{  
 1893:     my %in = (
 1894:               formname => 'document.cu',
 1895:               kerb_def_dom => 'MSU.EDU',
 1896:               @_,
 1897:               );
 1898:     my $jscall = "javascript:changed_radio('fsys',$in{'formname'});";
 1899:     my $result.= &mt
 1900:         ('[_1] Filesystem Authenticated (with initial password [_2])',
 1901:          '<label><input type="radio" name="login" value="fsys" '.
 1902:          'onchange="'.$jscall.'" onclick="'.$jscall.'" />',
 1903:          '</label><input type="text" size="10" name="fsysarg" value="" '.
 1904:                   'onchange="'.$jscall.'" />');
 1905:     return $result;
 1906: }
 1907: 
 1908: ###############################################################
 1909: ##    Get Authentication Defaults for Domain                 ##
 1910: ###############################################################
 1911: 
 1912: =pod
 1913: 
 1914: =head1 Domains and Authentication
 1915: 
 1916: Returns default authentication type and an associated argument as
 1917: listed in file 'domain.tab'.
 1918: 
 1919: =over 4
 1920: 
 1921: =item * get_auth_defaults
 1922: 
 1923: get_auth_defaults($target_domain) returns the default authentication
 1924: type and an associated argument (initial password or a kerberos domain).
 1925: These values are stored in lonTabs/domain.tab
 1926: 
 1927: ($def_auth, $def_arg) = &get_auth_defaults($target_domain);
 1928: 
 1929: If target_domain is not found in domain.tab, returns nothing ('').
 1930: 
 1931: =cut
 1932: 
 1933: #-------------------------------------------
 1934: sub get_auth_defaults {
 1935:     my $domain=shift;
 1936:     return (&Apache::lonnet::domain($domain,'auth_def'),
 1937: 	    &Apache::lonnet::domain($domain,'auth_arg_def'));
 1938: 	    
 1939: }
 1940: ###############################################################
 1941: ##   End Get Authentication Defaults for Domain              ##
 1942: ###############################################################
 1943: 
 1944: ###############################################################
 1945: ##    Get Kerberos Defaults for Domain                 ##
 1946: ###############################################################
 1947: ##
 1948: ## Returns default kerberos version and an associated argument
 1949: ## as listed in file domain.tab. If not listed, provides
 1950: ## appropriate default domain and kerberos version.
 1951: ##
 1952: #-------------------------------------------
 1953: 
 1954: =pod
 1955: 
 1956: =item * get_kerberos_defaults
 1957: 
 1958: get_kerberos_defaults($target_domain) returns the default kerberos
 1959: version and domain. If not found in domain.tabs, it defaults to
 1960: version 4 and the domain of the server.
 1961: 
 1962: ($def_version, $def_krb_domain) = &get_kerberos_defaults($target_domain);
 1963: 
 1964: =cut
 1965: 
 1966: #-------------------------------------------
 1967: sub get_kerberos_defaults {
 1968:     my $domain=shift;
 1969:     my ($krbdef,$krbdefdom) =
 1970:         &Apache::loncommon::get_auth_defaults($domain);
 1971:     unless ($krbdef =~/^krb/ && $krbdefdom) {
 1972:         $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/;
 1973:         my $krbdefdom=$1;
 1974:         $krbdefdom=~tr/a-z/A-Z/;
 1975:         $krbdef = "krb4";
 1976:     }
 1977:     return ($krbdef,$krbdefdom);
 1978: }
 1979: 
 1980: =pod
 1981: 
 1982: =back
 1983: 
 1984: =cut
 1985: 
 1986: ###############################################################
 1987: ##                Thesaurus Functions                        ##
 1988: ###############################################################
 1989: 
 1990: =pod
 1991: 
 1992: =head1 Thesaurus Functions
 1993: 
 1994: =over 4
 1995: 
 1996: =item * initialize_keywords
 1997: 
 1998: Initializes the package variable %Keywords if it is empty.  Uses the
 1999: package variable $thesaurus_db_file.
 2000: 
 2001: =cut
 2002: 
 2003: ###################################################
 2004: 
 2005: sub initialize_keywords {
 2006:     return 1 if (scalar keys(%Keywords));
 2007:     # If we are here, %Keywords is empty, so fill it up
 2008:     #   Make sure the file we need exists...
 2009:     if (! -e $thesaurus_db_file) {
 2010:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file".
 2011:                                  " failed because it does not exist");
 2012:         return 0;
 2013:     }
 2014:     #   Set up the hash as a database
 2015:     my %thesaurus_db;
 2016:     if (! tie(%thesaurus_db,'GDBM_File',
 2017:               $thesaurus_db_file,&GDBM_READER(),0640)){
 2018:         &Apache::lonnet::logthis("Could not tie \%thesaurus_db to ".
 2019:                                  $thesaurus_db_file);
 2020:         return 0;
 2021:     } 
 2022:     #  Get the average number of appearances of a word.
 2023:     my $avecount = $thesaurus_db{'average.count'};
 2024:     #  Put keywords (those that appear > average) into %Keywords
 2025:     while (my ($word,$data)=each (%thesaurus_db)) {
 2026:         my ($count,undef) = split /:/,$data;
 2027:         $Keywords{$word}++ if ($count > $avecount);
 2028:     }
 2029:     untie %thesaurus_db;
 2030:     # Remove special values from %Keywords.
 2031:     foreach my $value ('total.count','average.count') {
 2032:         delete($Keywords{$value}) if (exists($Keywords{$value}));
 2033:     }
 2034:     return 1;
 2035: }
 2036: 
 2037: ###################################################
 2038: 
 2039: =pod
 2040: 
 2041: =item * keyword($word)
 2042: 
 2043: Returns true if $word is a keyword.  A keyword is a word that appears more 
 2044: than the average number of times in the thesaurus database.  Calls 
 2045: &initialize_keywords
 2046: 
 2047: =cut
 2048: 
 2049: ###################################################
 2050: 
 2051: sub keyword {
 2052:     return if (!&initialize_keywords());
 2053:     my $word=lc(shift());
 2054:     $word=~s/\W//g;
 2055:     return exists($Keywords{$word});
 2056: }
 2057: 
 2058: ###############################################################
 2059: 
 2060: =pod 
 2061: 
 2062: =item * get_related_words
 2063: 
 2064: Look up a word in the thesaurus.  Takes a scalar argument and returns
 2065: an array of words.  If the keyword is not in the thesaurus, an empty array
 2066: will be returned.  The order of the words returned is determined by the
 2067: database which holds them.
 2068: 
 2069: Uses global $thesaurus_db_file.
 2070: 
 2071: =cut
 2072: 
 2073: ###############################################################
 2074: sub get_related_words {
 2075:     my $keyword = shift;
 2076:     my %thesaurus_db;
 2077:     if (! -e $thesaurus_db_file) {
 2078:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file ".
 2079:                                  "failed because the file does not exist");
 2080:         return ();
 2081:     }
 2082:     if (! tie(%thesaurus_db,'GDBM_File',
 2083:               $thesaurus_db_file,&GDBM_READER(),0640)){
 2084:         return ();
 2085:     } 
 2086:     my @Words=();
 2087:     my $count=0;
 2088:     if (exists($thesaurus_db{$keyword})) {
 2089: 	# The first element is the number of times
 2090: 	# the word appears.  We do not need it now.
 2091: 	my (undef,@RelatedWords) = (split(/:/,$thesaurus_db{$keyword}));
 2092: 	my (undef,$mostfrequentcount)=split(/\,/,$RelatedWords[0]);
 2093: 	my $threshold=$mostfrequentcount/10;
 2094:         foreach my $possibleword (@RelatedWords) {
 2095:             my ($word,$wordcount)=split(/\,/,$possibleword);
 2096:             if ($wordcount>$threshold) {
 2097: 		push(@Words,$word);
 2098:                 $count++;
 2099:                 if ($count>10) { last; }
 2100: 	    }
 2101:         }
 2102:     }
 2103:     untie %thesaurus_db;
 2104:     return @Words;
 2105: }
 2106: 
 2107: =pod
 2108: 
 2109: =back
 2110: 
 2111: =cut
 2112: 
 2113: # -------------------------------------------------------------- Plaintext name
 2114: =pod
 2115: 
 2116: =head1 User Name Functions
 2117: 
 2118: =over 4
 2119: 
 2120: =item * plainname($uname,$udom,$first)
 2121: 
 2122: Takes a users logon name and returns it as a string in
 2123: "first middle last generation" form 
 2124: if $first is set to 'lastname' then it returns it as
 2125: 'lastname generation, firstname middlename' if their is a lastname
 2126: 
 2127: =cut
 2128: 
 2129: 
 2130: ###############################################################
 2131: sub plainname {
 2132:     my ($uname,$udom,$first)=@_;
 2133:     return if (!defined($uname) || !defined($udom));
 2134:     my %names=&getnames($uname,$udom);
 2135:     my $name=&Apache::lonnet::format_name($names{'firstname'},
 2136: 					  $names{'middlename'},
 2137: 					  $names{'lastname'},
 2138: 					  $names{'generation'},$first);
 2139:     $name=~s/^\s+//;
 2140:     $name=~s/\s+$//;
 2141:     $name=~s/\s+/ /g;
 2142:     if ($name !~ /\S/) { $name=$uname.':'.$udom; }
 2143:     return $name;
 2144: }
 2145: 
 2146: # -------------------------------------------------------------------- Nickname
 2147: =pod
 2148: 
 2149: =item * nickname($uname,$udom)
 2150: 
 2151: Gets a users name and returns it as a string as
 2152: 
 2153: "&quot;nickname&quot;"
 2154: 
 2155: if the user has a nickname or
 2156: 
 2157: "first middle last generation"
 2158: 
 2159: if the user does not
 2160: 
 2161: =cut
 2162: 
 2163: sub nickname {
 2164:     my ($uname,$udom)=@_;
 2165:     return if (!defined($uname) || !defined($udom));
 2166:     my %names=&getnames($uname,$udom);
 2167:     my $name=$names{'nickname'};
 2168:     if ($name) {
 2169:        $name='&quot;'.$name.'&quot;'; 
 2170:     } else {
 2171:        $name=$names{'firstname'}.' '.$names{'middlename'}.' '.
 2172: 	     $names{'lastname'}.' '.$names{'generation'};
 2173:        $name=~s/\s+$//;
 2174:        $name=~s/\s+/ /g;
 2175:     }
 2176:     return $name;
 2177: }
 2178: 
 2179: sub getnames {
 2180:     my ($uname,$udom)=@_;
 2181:     return if (!defined($uname) || !defined($udom));
 2182:     if ($udom eq 'public' && $uname eq 'public') {
 2183: 	return ('lastname' => &mt('Public'));
 2184:     }
 2185:     my $id=$uname.':'.$udom;
 2186:     my ($names,$cached)=&Apache::lonnet::is_cached_new('namescache',$id);
 2187:     if ($cached) {
 2188: 	return %{$names};
 2189:     } else {
 2190: 	my %loadnames=&Apache::lonnet::get('environment',
 2191:                     ['firstname','middlename','lastname','generation','nickname'],
 2192: 					 $udom,$uname);
 2193: 	&Apache::lonnet::do_cache_new('namescache',$id,\%loadnames);
 2194: 	return %loadnames;
 2195:     }
 2196: }
 2197: 
 2198: # -------------------------------------------------------------------- getemails
 2199: =pod
 2200: 
 2201: =item * getemails($uname,$udom)
 2202: 
 2203: Gets a user's email information and returns it as a hash with keys:
 2204: notification, critnotification, permanentemail
 2205: 
 2206: For notification and critnotification, values are comma-separated lists 
 2207: of e-mail address(es); for permanentemail, value is a single e-mail address.
 2208:  
 2209: =cut
 2210: 
 2211: sub getemails {
 2212:     my ($uname,$udom)=@_;
 2213:     if ($udom eq 'public' && $uname eq 'public') {
 2214: 	return;
 2215:     }
 2216:     if (!$udom) { $udom=$env{'user.domain'}; }
 2217:     if (!$uname) { $uname=$env{'user.name'}; }
 2218:     my $id=$uname.':'.$udom;
 2219:     my ($names,$cached)=&Apache::lonnet::is_cached_new('emailscache',$id);
 2220:     if ($cached) {
 2221: 	return %{$names};
 2222:     } else {
 2223: 	my %loadnames=&Apache::lonnet::get('environment',
 2224:                     			   ['notification','critnotification',
 2225: 					    'permanentemail'],
 2226: 					   $udom,$uname);
 2227: 	&Apache::lonnet::do_cache_new('emailscache',$id,\%loadnames);
 2228: 	return %loadnames;
 2229:     }
 2230: }
 2231: 
 2232: sub flush_email_cache {
 2233:     my ($uname,$udom)=@_;
 2234:     if (!$udom)  { $udom =$env{'user.domain'}; }
 2235:     if (!$uname) { $uname=$env{'user.name'};   }
 2236:     return if ($udom eq 'public' && $uname eq 'public');
 2237:     my $id=$uname.':'.$udom;
 2238:     &Apache::lonnet::devalidate_cache_new('emailscache',$id);
 2239: }
 2240: 
 2241: # ------------------------------------------------------------------ Screenname
 2242: 
 2243: =pod
 2244: 
 2245: =item * screenname($uname,$udom)
 2246: 
 2247: Gets a users screenname and returns it as a string
 2248: 
 2249: =cut
 2250: 
 2251: sub screenname {
 2252:     my ($uname,$udom)=@_;
 2253:     if ($uname eq $env{'user.name'} &&
 2254: 	$udom eq $env{'user.domain'}) {return $env{'environment.screenname'};}
 2255:     my %names=&Apache::lonnet::get('environment',['screenname'],$udom,$uname);
 2256:     return $names{'screenname'};
 2257: }
 2258: 
 2259: 
 2260: # ------------------------------------------------------------- Message Wrapper
 2261: 
 2262: sub messagewrapper {
 2263:     my ($link,$username,$domain,$subject,$text)=@_;
 2264:     return 
 2265:         '<a href="/adm/email?compose=individual&amp;'.
 2266:         'recname='.$username.'&amp;recdom='.$domain.
 2267: 	'&amp;subject='.&escape($subject).'&amp;text='.&escape($text).'" '.
 2268:         'title="'.&mt('Send message').'">'.$link.'</a>';
 2269: }
 2270: # --------------------------------------------------------------- Notes Wrapper
 2271: 
 2272: sub noteswrapper {
 2273:     my ($link,$un,$do)=@_;
 2274:     return 
 2275: "<a href='/adm/email?recordftf=retrieve&recname=$un&recdom=$do'>$link</a>";
 2276: }
 2277: # ------------------------------------------------------------- Aboutme Wrapper
 2278: 
 2279: sub aboutmewrapper {
 2280:     my ($link,$username,$domain,$target)=@_;
 2281:     if (!defined($username)  && !defined($domain)) {
 2282:         return;
 2283:     }
 2284:     return '<a href="/adm/'.$domain.'/'.$username.'/aboutme"'.
 2285: 	($target?' target="$target"':'').' title="'.&mt("View this user's personal page").'">'.$link.'</a>';
 2286: }
 2287: 
 2288: # ------------------------------------------------------------ Syllabus Wrapper
 2289: 
 2290: 
 2291: sub syllabuswrapper {
 2292:     my ($linktext,$coursedir,$domain,$fontcolor)=@_;
 2293:     if ($fontcolor) { 
 2294:         $linktext='<font color="'.$fontcolor.'">'.$linktext.'</font>'; 
 2295:     }
 2296:     return qq{<a href="/public/$domain/$coursedir/syllabus">$linktext</a>};
 2297: }
 2298: 
 2299: sub track_student_link {
 2300:     my ($linktext,$sname,$sdom,$target,$start) = @_;
 2301:     my $link ="/adm/trackstudent?";
 2302:     my $title = 'View recent activity';
 2303:     if (defined($sname) && $sname !~ /^\s*$/ &&
 2304:         defined($sdom)  && $sdom  !~ /^\s*$/) {
 2305:         $link .= "selected_student=$sname:$sdom";
 2306:         $title .= ' of this student';
 2307:     } 
 2308:     if (defined($target) && $target !~ /^\s*$/) {
 2309:         $target = qq{target="$target"};
 2310:     } else {
 2311:         $target = '';
 2312:     }
 2313:     if ($start) { $link.='&amp;start='.$start; }
 2314:     $title = &mt($title);
 2315:     $linktext = &mt($linktext);
 2316:     return qq{<a href="$link" title="$title" $target>$linktext</a>}.
 2317: 	&help_open_topic('View_recent_activity');
 2318: }
 2319: 
 2320: # ===================================================== Display a student photo
 2321: 
 2322: 
 2323: sub student_image_tag {
 2324:     my ($domain,$user)=@_;
 2325:     my $imgsrc=&Apache::lonnet::studentphoto($domain,$user,'jpg');
 2326:     if (($imgsrc) && ($imgsrc ne '/adm/lonKaputt/lonlogo_broken.gif')) {
 2327: 	return '<img src="'.$imgsrc.'" align="right" />';
 2328:     } else {
 2329: 	return '';
 2330:     }
 2331: }
 2332: 
 2333: =pod
 2334: 
 2335: =back
 2336: 
 2337: =head1 Access .tab File Data
 2338: 
 2339: =over 4
 2340: 
 2341: =item * languageids() 
 2342: 
 2343: returns list of all language ids
 2344: 
 2345: =cut
 2346: 
 2347: sub languageids {
 2348:     return sort(keys(%language));
 2349: }
 2350: 
 2351: =pod
 2352: 
 2353: =item * languagedescription() 
 2354: 
 2355: returns description of a specified language id
 2356: 
 2357: =cut
 2358: 
 2359: sub languagedescription {
 2360:     my $code=shift;
 2361:     return  ($supported_language{$code}?'* ':'').
 2362:             $language{$code}.
 2363: 	    ($supported_language{$code}?' ('.&mt('interface available').')':'');
 2364: }
 2365: 
 2366: sub plainlanguagedescription {
 2367:     my $code=shift;
 2368:     return $language{$code};
 2369: }
 2370: 
 2371: sub supportedlanguagecode {
 2372:     my $code=shift;
 2373:     return $supported_language{$code};
 2374: }
 2375: 
 2376: =pod
 2377: 
 2378: =item * copyrightids() 
 2379: 
 2380: returns list of all copyrights
 2381: 
 2382: =cut
 2383: 
 2384: sub copyrightids {
 2385:     return sort(keys(%cprtag));
 2386: }
 2387: 
 2388: =pod
 2389: 
 2390: =item * copyrightdescription() 
 2391: 
 2392: returns description of a specified copyright id
 2393: 
 2394: =cut
 2395: 
 2396: sub copyrightdescription {
 2397:     return &mt($cprtag{shift(@_)});
 2398: }
 2399: 
 2400: =pod
 2401: 
 2402: =item * source_copyrightids() 
 2403: 
 2404: returns list of all source copyrights
 2405: 
 2406: =cut
 2407: 
 2408: sub source_copyrightids {
 2409:     return sort(keys(%scprtag));
 2410: }
 2411: 
 2412: =pod
 2413: 
 2414: =item * source_copyrightdescription() 
 2415: 
 2416: returns description of a specified source copyright id
 2417: 
 2418: =cut
 2419: 
 2420: sub source_copyrightdescription {
 2421:     return &mt($scprtag{shift(@_)});
 2422: }
 2423: 
 2424: =pod
 2425: 
 2426: =item * filecategories() 
 2427: 
 2428: returns list of all file categories
 2429: 
 2430: =cut
 2431: 
 2432: sub filecategories {
 2433:     return sort(keys(%category_extensions));
 2434: }
 2435: 
 2436: =pod
 2437: 
 2438: =item * filecategorytypes() 
 2439: 
 2440: returns list of file types belonging to a given file
 2441: category
 2442: 
 2443: =cut
 2444: 
 2445: sub filecategorytypes {
 2446:     my ($cat) = @_;
 2447:     return @{$category_extensions{lc($cat)}};
 2448: }
 2449: 
 2450: =pod
 2451: 
 2452: =item * fileembstyle() 
 2453: 
 2454: returns embedding style for a specified file type
 2455: 
 2456: =cut
 2457: 
 2458: sub fileembstyle {
 2459:     return $fe{lc(shift(@_))};
 2460: }
 2461: 
 2462: sub filemimetype {
 2463:     return $fm{lc(shift(@_))};
 2464: }
 2465: 
 2466: 
 2467: sub filecategoryselect {
 2468:     my ($name,$value)=@_;
 2469:     return &select_form($value,$name,
 2470: 			'' => &mt('Any category'),
 2471: 			map { $_,$_ } sort(keys(%category_extensions)));
 2472: }
 2473: 
 2474: =pod
 2475: 
 2476: =item * filedescription() 
 2477: 
 2478: returns description for a specified file type
 2479: 
 2480: =cut
 2481: 
 2482: sub filedescription {
 2483:     my $file_description = $fd{lc(shift())};
 2484:     $file_description =~ s:([\[\]]):~$1:g;
 2485:     return &mt($file_description);
 2486: }
 2487: 
 2488: =pod
 2489: 
 2490: =item * filedescriptionex() 
 2491: 
 2492: returns description for a specified file type with
 2493: extra formatting
 2494: 
 2495: =cut
 2496: 
 2497: sub filedescriptionex {
 2498:     my $ex=shift;
 2499:     my $file_description = $fd{lc($ex)};
 2500:     $file_description =~ s:([\[\]]):~$1:g;
 2501:     return '.'.$ex.' '.&mt($file_description);
 2502: }
 2503: 
 2504: # End of .tab access
 2505: =pod
 2506: 
 2507: =back
 2508: 
 2509: =cut
 2510: 
 2511: # ------------------------------------------------------------------ File Types
 2512: sub fileextensions {
 2513:     return sort(keys(%fe));
 2514: }
 2515: 
 2516: # ----------------------------------------------------------- Display Languages
 2517: # returns a hash with all desired display languages
 2518: #
 2519: 
 2520: sub display_languages {
 2521:     my %languages=();
 2522:     foreach my $lang (&preferred_languages()) {
 2523: 	$languages{$lang}=1;
 2524:     }
 2525:     &get_unprocessed_cgi($ENV{'QUERY_STRING'},['displaylanguage']);
 2526:     if ($env{'form.displaylanguage'}) {
 2527: 	foreach my $lang (split(/\s*(\,|\;|\:)\s*/,$env{'form.displaylanguage'})) {
 2528: 	    $languages{$lang}=1;
 2529:         }
 2530:     }
 2531:     return %languages;
 2532: }
 2533: 
 2534: sub preferred_languages {
 2535:     my @languages=();
 2536:     if ($env{'course.'.$env{'request.course.id'}.'.languages'}) {
 2537: 	@languages=(@languages,split(/\s*(\,|\;|\:)\s*/,
 2538: 	         $env{'course.'.$env{'request.course.id'}.'.languages'}));
 2539:     }
 2540:     if ($env{'environment.languages'}) {
 2541: 	@languages=(@languages,
 2542: 		    split(/\s*(\,|\;|\:)\s*/,$env{'environment.languages'}));
 2543:     }
 2544:     my $browser=(split(/\;/,$ENV{'HTTP_ACCEPT_LANGUAGE'}))[0];
 2545:     if ($browser) {
 2546: 	@languages=(@languages,split(/\s*(\,|\;|\:)\s*/,$browser));
 2547:     }
 2548:     if (&Apache::lonnet::domain($env{'user.domain'},'lang_def')) {
 2549: 	@languages=(@languages,
 2550: 		    &Apache::lonnet::domain($env{'user.domain'},
 2551: 					    'lang_def'));
 2552:     }
 2553:     if (&Apache::lonnet::domain($env{'request.role.domain'},'lang_def')) {
 2554: 	@languages=(@languages,
 2555: 		    &Apache::lonnet::domain($env{'request.role.domain'},
 2556: 					    'lang_def'));
 2557:     }
 2558:     if (&Apache::lonnet::domain($Apache::lonnet::perlvar{'lonDefDomain'},
 2559: 				'lang_def')) {
 2560: 	@languages=(@languages,
 2561: 		    &Apache::lonnet::domain($Apache::lonnet::perlvar{'lonDefDomain'},
 2562: 					    'lang_def'));
 2563:     }
 2564: # turn "en-ca" into "en-ca,en"
 2565:     my @genlanguages;
 2566:     foreach my $lang (@languages) {
 2567: 	unless ($lang=~/\w/) { next; }
 2568: 	push (@genlanguages,$lang);
 2569: 	if ($lang=~/(\-|\_)/) {
 2570: 	    push(@genlanguages,(split(/(\-|\_)/,$lang))[0]);
 2571: 	}
 2572:     }
 2573:     return @genlanguages;
 2574: }
 2575: 
 2576: ###############################################################
 2577: ##               Student Answer Attempts                     ##
 2578: ###############################################################
 2579: 
 2580: =pod
 2581: 
 2582: =head1 Alternate Problem Views
 2583: 
 2584: =over 4
 2585: 
 2586: =item * get_previous_attempt($symb, $username, $domain, $course,
 2587:     $getattempt, $regexp, $gradesub)
 2588: 
 2589: Return string with previous attempt on problem. Arguments:
 2590: 
 2591: =over 4
 2592: 
 2593: =item * $symb: Problem, including path
 2594: 
 2595: =item * $username: username of the desired student
 2596: 
 2597: =item * $domain: domain of the desired student
 2598: 
 2599: =item * $course: Course ID
 2600: 
 2601: =item * $getattempt: Leave blank for all attempts, otherwise put
 2602:     something
 2603: 
 2604: =item * $regexp: if string matches this regexp, the string will be
 2605:     sent to $gradesub
 2606: 
 2607: =item * $gradesub: routine that processes the string if it matches $regexp
 2608: 
 2609: =back
 2610: 
 2611: The output string is a table containing all desired attempts, if any.
 2612: 
 2613: =cut
 2614: 
 2615: sub get_previous_attempt {
 2616:   my ($symb,$username,$domain,$course,$getattempt,$regexp,$gradesub)=@_;
 2617:   my $prevattempts='';
 2618:   no strict 'refs';
 2619:   if ($symb) {
 2620:     my (%returnhash)=
 2621:       &Apache::lonnet::restore($symb,$course,$domain,$username);
 2622:     if ($returnhash{'version'}) {
 2623:       my %lasthash=();
 2624:       my $version;
 2625:       for ($version=1;$version<=$returnhash{'version'};$version++) {
 2626:         foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
 2627: 	  $lasthash{$key}=$returnhash{$version.':'.$key};
 2628:         }
 2629:       }
 2630:       $prevattempts='<table border="0" width="100%"><tr><td bgcolor="#777777">';
 2631:       $prevattempts.='<table border="0" width="100%"><tr bgcolor="#e6ffff"><td>History</td>';
 2632:       foreach my $key (sort(keys(%lasthash))) {
 2633: 	my ($ign,@parts) = split(/\./,$key);
 2634: 	if ($#parts > 0) {
 2635: 	  my $data=$parts[-1];
 2636: 	  pop(@parts);
 2637: 	  $prevattempts.='<td>Part '.join('.',@parts).'<br />'.$data.'&nbsp;</td>';
 2638: 	} else {
 2639: 	  if ($#parts == 0) {
 2640: 	    $prevattempts.='<th>'.$parts[0].'</th>';
 2641: 	  } else {
 2642: 	    $prevattempts.='<th>'.$ign.'</th>';
 2643: 	  }
 2644: 	}
 2645:       }
 2646:       if ($getattempt eq '') {
 2647: 	for ($version=1;$version<=$returnhash{'version'};$version++) {
 2648: 	  $prevattempts.='</tr><tr bgcolor="#ffffe6"><td>Transaction '.$version.'</td>';
 2649: 	    foreach my $key (sort(keys(%lasthash))) {
 2650: 	       my $value;
 2651: 	       if ($key =~ /timestamp/) {
 2652: 		  $value=scalar(localtime($returnhash{$version.':'.$key}));
 2653: 	       } else {
 2654: 		  $value=$returnhash{$version.':'.$key};
 2655: 	       }
 2656: 	       $prevattempts.='<td>'.&unescape($value).'&nbsp;</td>';   
 2657: 	    }
 2658: 	 }
 2659:       }
 2660:       $prevattempts.='</tr><tr bgcolor="#ffffe6"><td>Current</td>';
 2661:       foreach my $key (sort(keys(%lasthash))) {
 2662: 	my $value;
 2663: 	if ($key =~ /timestamp/) {
 2664: 	  $value=scalar(localtime($lasthash{$key}));
 2665: 	} else {
 2666: 	  $value=$lasthash{$key};
 2667: 	}
 2668: 	$value=&unescape($value);
 2669: 	if ($key =~/$regexp$/ && (defined &$gradesub)) {$value = &$gradesub($value)}
 2670: 	$prevattempts.='<td>'.$value.'&nbsp;</td>';
 2671:       }
 2672:       $prevattempts.='</tr></table></td></tr></table>';
 2673:     } else {
 2674:       $prevattempts='Nothing submitted - no attempts.';
 2675:     }
 2676:   } else {
 2677:     $prevattempts='No data.';
 2678:   }
 2679: }
 2680: 
 2681: sub relative_to_absolute {
 2682:     my ($url,$output)=@_;
 2683:     my $parser=HTML::TokeParser->new(\$output);
 2684:     my $token;
 2685:     my $thisdir=$url;
 2686:     my @rlinks=();
 2687:     while ($token=$parser->get_token) {
 2688: 	if ($token->[0] eq 'S') {
 2689: 	    if ($token->[1] eq 'a') {
 2690: 		if ($token->[2]->{'href'}) {
 2691: 		    $rlinks[$#rlinks+1]=$token->[2]->{'href'};
 2692: 		}
 2693: 	    } elsif ($token->[1] eq 'img' || $token->[1] eq 'embed' ) {
 2694: 		$rlinks[$#rlinks+1]=$token->[2]->{'src'};
 2695: 	    } elsif ($token->[1] eq 'base') {
 2696: 		$thisdir=$token->[2]->{'href'};
 2697: 	    }
 2698: 	}
 2699:     }
 2700:     $thisdir=~s-/[^/]*$--;
 2701:     foreach my $link (@rlinks) {
 2702: 	unless (($link=~/^http:\/\//i) ||
 2703: 		($link=~/^\//) ||
 2704: 		($link=~/^javascript:/i) ||
 2705: 		($link=~/^mailto:/i) ||
 2706: 		($link=~/^\#/)) {
 2707: 	    my $newlocation=&Apache::lonnet::hreflocation($thisdir,$link);
 2708: 	    $output=~s/(\"|\'|\=\s*)\Q$link\E(\"|\'|\s|\>)/$1$newlocation$2/;
 2709: 	}
 2710:     }
 2711: # -------------------------------------------------- Deal with Applet codebases
 2712:     $output=~s/(\<applet[^\>]+)(codebase\=[^\S\>]+)*([^\>]*)\>/$1.($2?$2:' codebase="'.$thisdir.'"').$3.'>'/gei;
 2713:     return $output;
 2714: }
 2715: 
 2716: =pod
 2717: 
 2718: =item * get_student_view
 2719: 
 2720: show a snapshot of what student was looking at
 2721: 
 2722: =cut
 2723: 
 2724: sub get_student_view {
 2725:   my ($symb,$username,$domain,$courseid,$target,$moreenv) = @_;
 2726:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
 2727:   my (%form);
 2728:   my @elements=('symb','courseid','domain','username');
 2729:   foreach my $element (@elements) {
 2730:       $form{'grade_'.$element}=eval '$'.$element #'
 2731:   }
 2732:   if (defined($moreenv)) {
 2733:       %form=(%form,%{$moreenv});
 2734:   }
 2735:   if (defined($target)) { $form{'grade_target'} = $target; }
 2736:   $feedurl=&Apache::lonnet::clutter($feedurl);
 2737:   my $userview=&Apache::lonnet::ssi_body($feedurl,%form);
 2738:   $userview=~s/\<body[^\>]*\>//gi;
 2739:   $userview=~s/\<\/body\>//gi;
 2740:   $userview=~s/\<html\>//gi;
 2741:   $userview=~s/\<\/html\>//gi;
 2742:   $userview=~s/\<head\>//gi;
 2743:   $userview=~s/\<\/head\>//gi;
 2744:   $userview=~s/action\s*\=/would_be_action\=/gi;
 2745:   $userview=&relative_to_absolute($feedurl,$userview);
 2746:   return $userview;
 2747: }
 2748: 
 2749: =pod
 2750: 
 2751: =item * get_student_answers() 
 2752: 
 2753: show a snapshot of how student was answering problem
 2754: 
 2755: =cut
 2756: 
 2757: sub get_student_answers {
 2758:   my ($symb,$username,$domain,$courseid,%form) = @_;
 2759:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
 2760:   my (%moreenv);
 2761:   my @elements=('symb','courseid','domain','username');
 2762:   foreach my $element (@elements) {
 2763:     $moreenv{'grade_'.$element}=eval '$'.$element #'
 2764:   }
 2765:   $moreenv{'grade_target'}='answer';
 2766:   %moreenv=(%form,%moreenv);
 2767:   $feedurl = &Apache::lonnet::clutter($feedurl);
 2768:   my $userview=&Apache::lonnet::ssi($feedurl,%moreenv);
 2769:   return $userview;
 2770: }
 2771: 
 2772: =pod
 2773: 
 2774: =item * &submlink()
 2775: 
 2776: Inputs: $text $uname $udom $symb $target
 2777: 
 2778: Returns: A link to grades.pm such as to see the SUBM view of a student
 2779: 
 2780: =cut
 2781: 
 2782: ###############################################
 2783: sub submlink {
 2784:     my ($text,$uname,$udom,$symb,$target)=@_;
 2785:     if (!($uname && $udom)) {
 2786: 	(my $cursymb, my $courseid,$udom,$uname)=
 2787: 	    &Apache::lonnet::whichuser($symb);
 2788: 	if (!$symb) { $symb=$cursymb; }
 2789:     }
 2790:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
 2791:     $symb=&escape($symb);
 2792:     if ($target) { $target="target=\"$target\""; }
 2793:     return '<a href="/adm/grades?&command=submission&'.
 2794: 	'symb='.$symb.'&student='.$uname.
 2795: 	'&userdom='.$udom.'" '.$target.'>'.$text.'</a>';
 2796: }
 2797: ##############################################
 2798: 
 2799: =pod
 2800: 
 2801: =item * &pgrdlink()
 2802: 
 2803: Inputs: $text $uname $udom $symb $target
 2804: 
 2805: Returns: A link to grades.pm such as to see the PGRD view of a student
 2806: 
 2807: =cut
 2808: 
 2809: ###############################################
 2810: sub pgrdlink {
 2811:     my $link=&submlink(@_);
 2812:     $link=~s/(&command=submission)/$1&showgrading=yes/;
 2813:     return $link;
 2814: }
 2815: ##############################################
 2816: 
 2817: =pod
 2818: 
 2819: =item * &pprmlink()
 2820: 
 2821: Inputs: $text $uname $udom $symb $target
 2822: 
 2823: Returns: A link to parmset.pm such as to see the PPRM view of a
 2824: student and a specific resource
 2825: 
 2826: =cut
 2827: 
 2828: ###############################################
 2829: sub pprmlink {
 2830:     my ($text,$uname,$udom,$symb,$target)=@_;
 2831:     if (!($uname && $udom)) {
 2832: 	(my $cursymb, my $courseid,$udom,$uname)=
 2833: 	    &Apache::lonnet::whichuser($symb);
 2834: 	if (!$symb) { $symb=$cursymb; }
 2835:     }
 2836:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
 2837:     $symb=&escape($symb);
 2838:     if ($target) { $target="target=\"$target\""; }
 2839:     return '<a href="/adm/parmset?&command=set&'.
 2840: 	'symb='.$symb.'&uname='.$uname.
 2841: 	'&udom='.$udom.'" '.$target.'>'.$text.'</a>';
 2842: }
 2843: ##############################################
 2844: 
 2845: =pod
 2846: 
 2847: =back
 2848: 
 2849: =cut
 2850: 
 2851: ###############################################
 2852: 
 2853: 
 2854: sub timehash {
 2855:     my @ltime=localtime(shift);
 2856:     return ( 'seconds' => $ltime[0],
 2857:              'minutes' => $ltime[1],
 2858:              'hours'   => $ltime[2],
 2859:              'day'     => $ltime[3],
 2860:              'month'   => $ltime[4]+1,
 2861:              'year'    => $ltime[5]+1900,
 2862:              'weekday' => $ltime[6],
 2863:              'dayyear' => $ltime[7]+1,
 2864:              'dlsav'   => $ltime[8] );
 2865: }
 2866: 
 2867: sub utc_string {
 2868:     my ($date)=@_;
 2869:     return strftime("%Y%m%dT%H%M%SZ",gmtime($date));
 2870: }
 2871: 
 2872: sub maketime {
 2873:     my %th=@_;
 2874:     return POSIX::mktime(
 2875:         ($th{'seconds'},$th{'minutes'},$th{'hours'},
 2876:          $th{'day'},$th{'month'}-1,$th{'year'}-1900,0,0,-1));
 2877: }
 2878: 
 2879: #########################################
 2880: 
 2881: sub findallcourses {
 2882:     my ($roles,$uname,$udom) = @_;
 2883:     my %roles;
 2884:     if (ref($roles)) { %roles = map { $_ => 1 } @{$roles}; }
 2885:     my %courses;
 2886:     my $now=time;
 2887:     if (!defined($uname)) {
 2888:         $uname = $env{'user.name'};
 2889:     }
 2890:     if (!defined($udom)) {
 2891:         $udom = $env{'user.domain'};
 2892:     }
 2893:     if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
 2894:         my %roleshash = &Apache::lonnet::dump('roles',$udom,$uname);
 2895:         if (!%roles) {
 2896:             %roles = (
 2897:                        cc => 1,
 2898:                        in => 1,
 2899:                        ep => 1,
 2900:                        ta => 1,
 2901:                        cr => 1,
 2902:                        st => 1,
 2903:              );
 2904:         }
 2905:         foreach my $entry (keys(%roleshash)) {
 2906:             my ($trole,$tend,$tstart) = split(/_/,$roleshash{$entry});
 2907:             if ($trole =~ /^cr/) { 
 2908:                 next if (!exists($roles{$trole}) && !exists($roles{'cr'}));
 2909:             } else {
 2910:                 next if (!exists($roles{$trole}));
 2911:             }
 2912:             if ($tend) {
 2913:                 next if ($tend < $now);
 2914:             }
 2915:             if ($tstart) {
 2916:                 next if ($tstart > $now);
 2917:             }
 2918:             my ($cdom,$cnum,$sec,$cnumpart,$secpart,$role,$realsec);
 2919:             (undef,$cdom,$cnumpart,$secpart) = split(/\//,$entry);
 2920:             if ($secpart eq '') {
 2921:                 ($cnum,$role) = split(/_/,$cnumpart); 
 2922:                 $sec = 'none';
 2923:                 $realsec = '';
 2924:             } else {
 2925:                 $cnum = $cnumpart;
 2926:                 ($sec,$role) = split(/_/,$secpart);
 2927:                 $realsec = $sec;
 2928:             }
 2929:             $courses{$cdom.'_'.$cnum}{$sec} = $trole.'/'.$cdom.'/'.$cnum.'/'.$realsec;
 2930:         }
 2931:     } else {
 2932:         foreach my $key (keys(%env)) {
 2933: 	    if ( $key=~m{^user\.role\.(\w+)\./($match_domain)/($match_courseid)/?(\w*)$} ||
 2934:                  $key=~m{^user\.role\.(cr/$match_domain/$match_username/\w+)\./($match_domain)/($match_courseid)/?(\w*)$}) {
 2935: 	        my ($role,$cdom,$cnum,$sec) = ($1,$2,$3,$4);
 2936: 	        next if ($role eq 'ca' || $role eq 'aa');
 2937: 	        next if (%roles && !exists($roles{$role}));
 2938: 	        my ($starttime,$endtime)=split(/\./,$env{$key});
 2939:                 my $active=1;
 2940:                 if ($starttime) {
 2941: 		    if ($now<$starttime) { $active=0; }
 2942:                 }
 2943:                 if ($endtime) {
 2944:                     if ($now>$endtime) { $active=0; }
 2945:                 }
 2946:                 if ($active) {
 2947:                     if ($sec eq '') {
 2948:                         $sec = 'none';
 2949:                     }
 2950:                     $courses{$cdom.'_'.$cnum}{$sec} = 
 2951:                                      $role.'/'.$cdom.'/'.$cnum.'/'.$sec;
 2952:                 }
 2953:             }
 2954:         }
 2955:     }
 2956:     return %courses;
 2957: }
 2958: 
 2959: ###############################################
 2960: 
 2961: sub blockcheck {
 2962:     my ($setters,$activity,$uname,$udom) = @_;
 2963: 
 2964:     if (!defined($udom)) {
 2965:         $udom = $env{'user.domain'};
 2966:     }
 2967:     if (!defined($uname)) {
 2968:         $uname = $env{'user.name'};
 2969:     }
 2970: 
 2971:     # If uname and udom are for a course, check for blocks in the course.
 2972: 
 2973:     if (&Apache::lonnet::is_course($udom,$uname)) {
 2974:         my %records = &Apache::lonnet::dump('comm_block',$udom,$uname);
 2975:         my ($startblock,$endblock)=&get_blocks($setters,$activity,$udom,$uname);
 2976:         return ($startblock,$endblock);
 2977:     }
 2978: 
 2979:     my $startblock = 0;
 2980:     my $endblock = 0;
 2981:     my %live_courses = &findallcourses(undef,$uname,$udom);
 2982: 
 2983:     # If uname is for a user, and activity is course-specific, i.e.,
 2984:     # boards, chat or groups, check for blocking in current course only.
 2985: 
 2986:     if (($activity eq 'boards' || $activity eq 'chat' ||
 2987:          $activity eq 'groups') && ($env{'request.course.id'})) {
 2988:         foreach my $key (keys(%live_courses)) {
 2989:             if ($key ne $env{'request.course.id'}) {
 2990:                 delete($live_courses{$key});
 2991:             }
 2992:         }
 2993:     }
 2994: 
 2995:     my $otheruser = 0;
 2996:     my %own_courses;
 2997:     if ((($uname ne $env{'user.name'})) || ($udom ne $env{'user.domain'})) {
 2998:         # Resource belongs to user other than current user.
 2999:         $otheruser = 1;
 3000:         # Gather courses for current user
 3001:         %own_courses = 
 3002:             &findallcourses(undef,$env{'user.name'},$env{'user.domain'});
 3003:     }
 3004: 
 3005:     # Gather active course roles - course coordinator, instructor, 
 3006:     # exam proctor, ta, student, or custom role.
 3007: 
 3008:     foreach my $course (keys(%live_courses)) {
 3009:         my ($cdom,$cnum);
 3010:         if ((defined($env{'course.'.$course.'.domain'})) && (defined($env{'course.'.$course.'.num'}))) {
 3011:             $cdom = $env{'course.'.$course.'.domain'};
 3012:             $cnum = $env{'course.'.$course.'.num'};
 3013:         } else {
 3014:             ($cdom,$cnum) = split(/_/,$course); 
 3015:         }
 3016:         my $no_ownblock = 0;
 3017:         my $no_userblock = 0;
 3018:         if ($otheruser && $activity ne 'com') {
 3019:             # Check if current user has 'evb' priv for this
 3020:             if (defined($own_courses{$course})) {
 3021:                 foreach my $sec (keys(%{$own_courses{$course}})) {
 3022:                     my $checkrole = 'cm./'.$cdom.'/'.$cnum;
 3023:                     if ($sec ne 'none') {
 3024:                         $checkrole .= '/'.$sec;
 3025:                     }
 3026:                     if (&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) {
 3027:                         $no_ownblock = 1;
 3028:                         last;
 3029:                     }
 3030:                 }
 3031:             }
 3032:             # if they have 'evb' priv and are currently not playing student
 3033:             next if (($no_ownblock) &&
 3034:                  ($env{'request.role'} !~ m{^st\./$cdom/$cnum}));
 3035:         }
 3036:         foreach my $sec (keys(%{$live_courses{$course}})) {
 3037:             my $checkrole = 'cm./'.$cdom.'/'.$cnum;
 3038:             if ($sec ne 'none') {
 3039:                 $checkrole .= '/'.$sec;
 3040:             }
 3041:             if ($otheruser) {
 3042:                 # Resource belongs to user other than current user.
 3043:                 # Assemble privs for that user, and check for 'evb' priv.
 3044:                 my ($trole,$tdom,$tnum,$tsec);
 3045:                 my $entry = $live_courses{$course}{$sec};
 3046:                 if ($entry =~ /^cr/) {
 3047:                     ($trole,$tdom,$tnum,$tsec) = 
 3048:                       ($entry =~ m|^(cr/$match_domain/$match_username/\w+)\./($match_domain)/($match_username)/?(\w*)$|);
 3049:                 } else {
 3050:                     ($trole,$tdom,$tnum,$tsec) = split(/\//,$entry);
 3051:                 }
 3052:                 my ($spec,$area,$trest,%allroles,%userroles);
 3053:                 $area = '/'.$tdom.'/'.$tnum;
 3054:                 $trest = $tnum;
 3055:                 if ($tsec ne '') {
 3056:                     $area .= '/'.$tsec;
 3057:                     $trest .= '/'.$tsec;
 3058:                 }
 3059:                 $spec = $trole.'.'.$area;
 3060:                 if ($trole =~ /^cr/) {
 3061:                     &Apache::lonnet::custom_roleprivs(\%allroles,$trole,
 3062:                                                       $tdom,$spec,$trest,$area);
 3063:                 } else {
 3064:                     &Apache::lonnet::standard_roleprivs(\%allroles,$trole,
 3065:                                                        $tdom,$spec,$trest,$area);
 3066:                 }
 3067:                 my ($author,$adv) = &Apache::lonnet::set_userprivs(\%userroles,\%allroles);
 3068:                 if ($userroles{'user.priv.'.$checkrole} =~ /evb\&([^\:]*)/) {
 3069:                     if ($1) {
 3070:                         $no_userblock = 1;
 3071:                         last;
 3072:                     }
 3073:                 }
 3074:             } else {
 3075:                 # Resource belongs to current user
 3076:                 # Check for 'evb' priv via lonnet::allowed().
 3077:                 if (&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) {
 3078:                     $no_ownblock = 1;
 3079:                     last;
 3080:                 }
 3081:             }
 3082:         }
 3083:         # if they have the evb priv and are currently not playing student
 3084:         next if (($no_ownblock) &&
 3085:                  ($env{'request.role'} !~ m{^st\./\Q$cdom\E/\Q$cnum\E}));
 3086:         next if ($no_userblock);
 3087: 
 3088:         # Retrieve blocking times and identity of blocker for course
 3089:         # of specified user, unless user has 'evb' privilege.
 3090:         
 3091:         my ($start,$end)=&get_blocks($setters,$activity,$cdom,$cnum);
 3092:         if (($start != 0) && 
 3093:             (($startblock == 0) || ($startblock > $start))) {
 3094:             $startblock = $start;
 3095:         }
 3096:         if (($end != 0)  &&
 3097:             (($endblock == 0) || ($endblock < $end))) {
 3098:             $endblock = $end;
 3099:         }
 3100:     }
 3101:     return ($startblock,$endblock);
 3102: }
 3103: 
 3104: sub get_blocks {
 3105:     my ($setters,$activity,$cdom,$cnum) = @_;
 3106:     my $startblock = 0;
 3107:     my $endblock = 0;
 3108:     my $course = $cdom.'_'.$cnum;
 3109:     $setters->{$course} = {};
 3110:     $setters->{$course}{'staff'} = [];
 3111:     $setters->{$course}{'times'} = [];
 3112:     my %records = &Apache::lonnet::dump('comm_block',$cdom,$cnum);
 3113:     foreach my $record (keys(%records)) {
 3114:         my ($start,$end) = ($record =~ m/^(\d+)____(\d+)$/);
 3115:         if ($start <= time && $end >= time) {
 3116:             my ($staff_name,$staff_dom,$title,$blocks) =
 3117:                 &parse_block_record($records{$record});
 3118:             if ($blocks->{$activity} eq 'on') {
 3119:                 push(@{$$setters{$course}{'staff'}},[$staff_name,$staff_dom]);
 3120:                 push(@{$$setters{$course}{'times'}}, [$start,$end]);
 3121:                 if ( ($startblock == 0) || ($startblock > $start) ) {
 3122:                     $startblock = $start;
 3123:                 }
 3124:                 if ( ($endblock == 0) || ($endblock < $end) ) {
 3125:                     $endblock = $end;
 3126:                 }
 3127:             }
 3128:         }
 3129:     }
 3130:     return ($startblock,$endblock);
 3131: }
 3132: 
 3133: sub parse_block_record {
 3134:     my ($record) = @_;
 3135:     my ($setuname,$setudom,$title,$blocks);
 3136:     if (ref($record) eq 'HASH') {
 3137:         ($setuname,$setudom) = split(/:/,$record->{'setter'});
 3138:         $title = &unescape($record->{'event'});
 3139:         $blocks = $record->{'blocks'};
 3140:     } else {
 3141:         my @data = split(/:/,$record,3);
 3142:         if (scalar(@data) eq 2) {
 3143:             $title = $data[1];
 3144:             ($setuname,$setudom) = split(/@/,$data[0]);
 3145:         } else {
 3146:             ($setuname,$setudom,$title) = @data;
 3147:         }
 3148:         $blocks = { 'com' => 'on' };
 3149:     }
 3150:     return ($setuname,$setudom,$title,$blocks);
 3151: }
 3152: 
 3153: sub build_block_table {
 3154:     my ($startblock,$endblock,$setters) = @_;
 3155:     my %lt = &Apache::lonlocal::texthash(
 3156:         'cacb' => 'Currently active communication blocks',
 3157:         'cour' => 'Course',
 3158:         'dura' => 'Duration',
 3159:         'blse' => 'Block set by'
 3160:     );
 3161:     my $output;
 3162:     $output = '<br />'.$lt{'cacb'}.':<br />';
 3163:     $output .= &start_data_table();
 3164:     $output .= '
 3165: <tr>
 3166:  <th>'.$lt{'cour'}.'</th>
 3167:  <th>'.$lt{'dura'}.'</th>
 3168:  <th>'.$lt{'blse'}.'</th>
 3169: </tr>
 3170: ';
 3171:     foreach my $course (keys(%{$setters})) {
 3172:         my %courseinfo=&Apache::lonnet::coursedescription($course);
 3173:         for (my $i=0; $i<@{$$setters{$course}{staff}}; $i++) {
 3174:             my ($uname,$udom) = @{$$setters{$course}{staff}[$i]};
 3175:             my $fullname = &plainname($uname,$udom);
 3176:             if (defined($env{'user.name'}) && defined($env{'user.domain'})
 3177:                 && $env{'user.name'} ne 'public' 
 3178:                 && $env{'user.domain'} ne 'public') {
 3179:                 $fullname = &aboutmewrapper($fullname,$uname,$udom);
 3180:             }
 3181:             my ($openblock,$closeblock) = @{$$setters{$course}{times}[$i]};
 3182:             $openblock = &Apache::lonlocal::locallocaltime($openblock);
 3183:             $closeblock= &Apache::lonlocal::locallocaltime($closeblock);
 3184:             $output .= &Apache::loncommon::start_data_table_row().
 3185:                        '<td>'.$courseinfo{'description'}.'</td>'.
 3186:                        '<td>'.$openblock.' to '.$closeblock.'</td>'.
 3187:                        '<td>'.$fullname.'</td>'.
 3188:                         &Apache::loncommon::end_data_table_row();
 3189:         }
 3190:     }
 3191:     $output .= &end_data_table();
 3192: }
 3193: 
 3194: sub blocking_status {
 3195:     my ($activity,$uname,$udom) = @_;
 3196:     my %setters;
 3197:     my ($blocked,$output,$ownitem,$is_course);
 3198:     my ($startblock,$endblock)=&blockcheck(\%setters,$activity,$uname,$udom);
 3199:     if ($startblock && $endblock) {
 3200:         $blocked = 1;
 3201:         if (wantarray) {
 3202:             my $category;
 3203:             if ($activity eq 'boards') {
 3204:                 $category = 'Discussion posts in this course';
 3205:             } elsif ($activity eq 'blogs') {
 3206:                 $category = 'Blogs';
 3207:             } elsif ($activity eq 'port') {
 3208:                 if (defined($uname) && defined($udom)) {
 3209:                     if ($uname eq $env{'user.name'} &&
 3210:                         $udom eq $env{'user.domain'}) {
 3211:                         $ownitem = 1;
 3212:                     }
 3213:                 }
 3214:                 $is_course = &Apache::lonnet::is_course($udom,$uname);
 3215:                 if ($ownitem) { 
 3216:                     $category = 'Your portfolio files';  
 3217:                 } elsif ($is_course) {
 3218:                     my $coursedesc;
 3219:                     foreach my $course (keys(%setters)) {
 3220:                         my %courseinfo =
 3221:                              &Apache::lonnet::coursedescription($course);
 3222:                         $coursedesc = $courseinfo{'description'};
 3223:                     }
 3224:                     $category = "Group files in the course '$coursedesc'";
 3225:                 } else {
 3226:                     $category = 'Portfolio files belonging to ';
 3227:                     if ($env{'user.name'} eq 'public' && 
 3228:                         $env{'user.domain'} eq 'public') {
 3229:                         $category .= &plainname($uname,$udom);
 3230:                     } else {
 3231:                         $category .= &aboutmewrapper(&plainname($uname,$udom),$uname,$udom);  
 3232:                     }
 3233:                 }
 3234:             } elsif ($activity eq 'groups') {
 3235:                 $category = 'Groups in this course';
 3236:             }
 3237:             my $showstart = &Apache::lonlocal::locallocaltime($startblock);
 3238:             my $showend = &Apache::lonlocal::locallocaltime($endblock);
 3239:             $output = '<br />'.&mt('[_1] will be inaccessible between [_2] and [_3] because communication is being blocked.',$category,$showstart,$showend).'<br />';
 3240:             if (!($activity eq 'port' && !($ownitem) && !($is_course))) { 
 3241:                 $output .= &build_block_table($startblock,$endblock,\%setters);
 3242:             }
 3243:         }
 3244:     }
 3245:     if (wantarray) {
 3246:         return ($blocked,$output);
 3247:     } else {
 3248:         return $blocked;
 3249:     }
 3250: }
 3251: 
 3252: ###############################################
 3253: 
 3254: =pod
 3255: 
 3256: =head1 Domain Template Functions
 3257: 
 3258: =over 4
 3259: 
 3260: =item * &determinedomain()
 3261: 
 3262: Inputs: $domain (usually will be undef)
 3263: 
 3264: Returns: Determines which domain should be used for designs
 3265: 
 3266: =cut
 3267: 
 3268: ###############################################
 3269: sub determinedomain {
 3270:     my $domain=shift;
 3271:     if (! $domain) {
 3272:         # Determine domain if we have not been given one
 3273:         $domain = $Apache::lonnet::perlvar{'lonDefDomain'};
 3274:         if ($env{'user.domain'}) { $domain=$env{'user.domain'}; }
 3275:         if ($env{'request.role.domain'}) { 
 3276:             $domain=$env{'request.role.domain'}; 
 3277:         }
 3278:     }
 3279:     return $domain;
 3280: }
 3281: ###############################################
 3282: 
 3283: sub devalidate_domconfig_cache {
 3284:     my ($udom)=@_;
 3285:     &Apache::lonnet::devalidate_cache_new('domainconfig',$udom);
 3286: }
 3287: 
 3288: # ---------------------- Get domain configuration for a domain
 3289: sub get_domainconf {
 3290:     my ($udom) = @_;
 3291:     my $cachetime=1800;
 3292:     my ($result,$cached)=&Apache::lonnet::is_cached_new('domainconfig',$udom);
 3293:     if (defined($cached)) { return %{$result}; }
 3294: 
 3295:     my %domconfig = &Apache::lonnet::get_dom('configuration',
 3296: 					     ['login','rolecolors'],$udom);
 3297:     my %designhash;
 3298:     if (keys(%domconfig) > 0) {
 3299:         if (ref($domconfig{'login'}) eq 'HASH') {
 3300:             foreach my $key (keys(%{$domconfig{'login'}})) {
 3301:                 $designhash{$udom.'.login.'.$key}=$domconfig{'login'}{$key};
 3302:             }
 3303:         }
 3304:         if (ref($domconfig{'rolecolors'}) eq 'HASH') {
 3305:             foreach my $role (keys(%{$domconfig{'rolecolors'}})) {
 3306:                 if (ref($domconfig{'rolecolors'}{$role}) eq 'HASH') {
 3307:                     foreach my $item (keys(%{$domconfig{'rolecolors'}{$role}})) {
 3308:                         $designhash{$udom.'.'.$role.'.'.$item}=$domconfig{'rolecolors'}{$role}{$item};
 3309:                     }
 3310:                 }
 3311:             }
 3312:         }
 3313:     } else {
 3314:         my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
 3315:         my $designfile =  $designdir.'/'.$udom.'.tab';
 3316:         if (-e $designfile) {
 3317:             if ( open (my $fh,"<$designfile") ) {
 3318:                 while (my $line = <$fh>) {
 3319:                     next if ($line =~ /^\#/);
 3320:                     chomp($line);
 3321:                     my ($key,$val)=(split(/\=/,$line));
 3322:                     if ($val) { $designhash{$udom.'.'.$key}=$val; }
 3323:                 }
 3324:                 close($fh);
 3325:             }
 3326:         }
 3327:         if (-e '/home/httpd/html/adm/lonDomLogos/'.$udom.'.gif') {
 3328:             $designhash{$udom.'.login.domlogo'} = "/adm/lonDomLogos/$udom.gif";
 3329:         }
 3330:     }
 3331:     &Apache::lonnet::do_cache_new('domainconfig',$udom,\%designhash,
 3332: 				  $cachetime);
 3333:     return %designhash;
 3334: }
 3335: 
 3336: =pod
 3337: 
 3338: =item * &domainlogo()
 3339: 
 3340: Inputs: $domain (usually will be undef)
 3341: 
 3342: Returns: A link to a domain logo, if the domain logo exists.
 3343: If the domain logo does not exist, a description of the domain.
 3344: 
 3345: =cut
 3346: 
 3347: ###############################################
 3348: sub domainlogo {
 3349:     my $domain = &determinedomain(shift);
 3350:     my %designhash = &get_domainconf($domain);    
 3351:     # See if there is a logo
 3352:     if ($designhash{$domain.'.login.domlogo'} ne '') {
 3353:         my $imgsrc = $designhash{$domain.'.login.domlogo'};
 3354:         if ($imgsrc =~ m{^/(adm|res)/}) {
 3355: 	    if ($imgsrc =~ m{^/res/}) {
 3356: 		my $local_name = &Apache::lonnet::filelocation('',$imgsrc);
 3357: 		&Apache::lonnet::repcopy($local_name);
 3358: 	    }
 3359: 	   $imgsrc = &lonhttpdurl($imgsrc);
 3360:         } 
 3361:         return '<img src="'.$imgsrc.'" alt="'.$domain.'" />';
 3362:     } elsif (defined(&Apache::lonnet::domain($domain,'description'))) {
 3363:         return &Apache::lonnet::domain($domain,'description');
 3364:     } else {
 3365:         return '';
 3366:     }
 3367: }
 3368: ##############################################
 3369: 
 3370: =pod
 3371: 
 3372: =item * &designparm()
 3373: 
 3374: Inputs: $which parameter; $domain (usually will be undef)
 3375: 
 3376: Returns: value of designparamter $which
 3377: 
 3378: =cut
 3379: 
 3380: 
 3381: ##############################################
 3382: sub designparm {
 3383:     my ($which,$domain)=@_;
 3384:     if ($env{'browser.blackwhite'} eq 'on') {
 3385: 	if ($which=~/\.(font|alink|vlink|link)$/) {
 3386: 	    return '#000000';
 3387: 	}
 3388: 	if ($which=~/\.(pgbg|sidebg)$/) {
 3389: 	    return '#FFFFFF';
 3390: 	}
 3391: 	if ($which=~/\.tabbg$/) {
 3392: 	    return '#CCCCCC';
 3393: 	}
 3394:     }
 3395:     if (exists($env{'environment.color.'.$which})) {
 3396: 	return $env{'environment.color.'.$which};
 3397:     }
 3398:     $domain=&determinedomain($domain);
 3399:     my %domdesign = &get_domainconf($domain);
 3400:     my $output;
 3401:     if ($domdesign{$domain.'.'.$which} ne '') {
 3402: 	$output = $domdesign{$domain.'.'.$which};
 3403:     } else {
 3404:         $output = $defaultdesign{$which};
 3405:     }
 3406:     if (($which =~ /^(student|coordinator|author|admin)\.img$/) ||
 3407:         ($which =~ /login\.(img|logo|domlogo)/)) {
 3408:         if ($output =~ m{^/(adm|res)/}) {
 3409: 	    if ($output =~ m{^/res/}) {
 3410: 		my $local_name = &Apache::lonnet::filelocation('',$output);
 3411: 		&Apache::lonnet::repcopy($local_name);
 3412: 	    }
 3413:             $output = &lonhttpdurl($output);
 3414:         }
 3415:     }
 3416:     return $output;
 3417: }
 3418: 
 3419: ###############################################
 3420: ###############################################
 3421: 
 3422: =pod
 3423: 
 3424: =back
 3425: 
 3426: =head1 HTML Helpers
 3427: 
 3428: =over 4
 3429: 
 3430: =item * &bodytag()
 3431: 
 3432: Returns a uniform header for LON-CAPA web pages.
 3433: 
 3434: Inputs: 
 3435: 
 3436: =over 4
 3437: 
 3438: =item * $title, A title to be displayed on the page.
 3439: 
 3440: =item * $function, the current role (can be undef).
 3441: 
 3442: =item * $addentries, extra parameters for the <body> tag.
 3443: 
 3444: =item * $bodyonly, if defined, only return the <body> tag.
 3445: 
 3446: =item * $domain, if defined, force a given domain.
 3447: 
 3448: =item * $forcereg, if page should register as content page (relevant for 
 3449:             text interface only)
 3450: 
 3451: =item * $customtitle, alternate text to use instead of $title
 3452:                       in the title box that appears, this text
 3453:                       is not auto translated like the $title is
 3454: 
 3455: =item * $notopbar, if true, keep the 'what is this' info but remove the
 3456:                    navigational links
 3457: 
 3458: =item * $bgcolor, used to override the bgcolor on a webpage to a specific value
 3459: 
 3460: =item * $notitle, if true keep the nav controls, but remove the title bar
 3461: 
 3462: =item * $no_inline_link, if true and in remote mode, don't show the 
 3463:          'Switch To Inline Menu' link
 3464: 
 3465: =item * $args, optional argument valid values are
 3466:             no_auto_mt_title -> prevents &mt()ing the title arg
 3467:             inherit_jsmath -> when creating popup window in a page,
 3468:                               should it have jsmath forced on by the
 3469:                               current page
 3470: 
 3471: =back
 3472: 
 3473: Returns: A uniform header for LON-CAPA web pages.  
 3474: If $bodyonly is nonzero, a string containing a <body> tag will be returned.
 3475: If $bodyonly is undef or zero, an html string containing a <body> tag and 
 3476: other decorations will be returned.
 3477: 
 3478: =cut
 3479: 
 3480: sub bodytag {
 3481:     my ($title,$function,$addentries,$bodyonly,$domain,$forcereg,$customtitle,
 3482: 	$notopbar,$bgcolor,$notitle,$no_inline_link,$args)=@_;
 3483: 
 3484:     if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }
 3485: 
 3486:     $function = &get_users_function() if (!$function);
 3487:     my $img =    &designparm($function.'.img',$domain);
 3488:     my $font =   &designparm($function.'.font',$domain);
 3489:     my $pgbg   = $bgcolor || &designparm($function.'.pgbg',$domain);
 3490: 
 3491:     my %design = ( 'style'   => 'margin-top: 0px',
 3492: 		   'bgcolor' => $pgbg,
 3493: 		   'text'    => $font,
 3494:                    'alink'   => &designparm($function.'.alink',$domain),
 3495: 		   'vlink'   => &designparm($function.'.vlink',$domain),
 3496: 		   'link'    => &designparm($function.'.link',$domain),);
 3497:     @design{keys(%$addentries)} = @$addentries{keys(%$addentries)}; 
 3498: 
 3499:  # role and realm
 3500:     my ($role,$realm) = split(/\./,$env{'request.role'},2);
 3501:     if ($role  eq 'ca') {
 3502:         my ($rdom,$rname) = ($realm =~ m{^/($match_domain)/($match_username)$});
 3503:         $realm = &plainname($rname,$rdom);
 3504:     } 
 3505: # realm
 3506:     if ($env{'request.course.id'}) {
 3507:         if ($env{'request.role'} !~ /^cr/) {
 3508:             $role = &Apache::lonnet::plaintext($role,&course_type());
 3509:         }
 3510: 	$realm = $env{'course.'.$env{'request.course.id'}.'.description'};
 3511:     } else {
 3512:         $role = &Apache::lonnet::plaintext($role);
 3513:     }
 3514: 
 3515:     if (!$realm) { $realm='&nbsp;'; }
 3516: # Set messages
 3517:     my $messages=&domainlogo($domain);
 3518: # Port for miniserver
 3519:     my $lonhttpdPort=$Apache::lonnet::perlvar{'lonhttpdPort'};
 3520:     if (!defined($lonhttpdPort)) { $lonhttpdPort='8080'; }
 3521: 
 3522:     my $extra_body_attr = &make_attr_string($forcereg,\%design);
 3523: 
 3524: # construct main body tag
 3525:     my $bodytag = "<body $extra_body_attr>".
 3526: 	&Apache::lontexconvert::init_math_support($args->{'inherit_jsmath'});
 3527: 
 3528:     if ($bodyonly) {
 3529:         return $bodytag;
 3530:     } elsif ($env{'browser.interface'} eq 'textual') {
 3531: # Accessibility
 3532:           
 3533: 	$bodytag.=&Apache::lonmenu::menubuttons($forcereg,$forcereg);
 3534: 	if (!$notitle) {
 3535: 	    $bodytag.='<h1>LON-CAPA: '.$title.'</h1>';
 3536: 	}
 3537: 	return $bodytag;
 3538:     }
 3539: 
 3540:     my $name = &plainname($env{'user.name'},$env{'user.domain'});
 3541:     if ($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public') {
 3542: 	undef($role);
 3543:     } else {
 3544: 	$name = &aboutmewrapper($name,$env{'user.name'},$env{'user.domain'});
 3545:     }
 3546:     
 3547:     my $roleinfo=(<<ENDROLE);
 3548: <td class="LC_title_bar_who">
 3549: <div class="LC_title_bar_name">
 3550:     $name
 3551:     &nbsp;
 3552: </div>
 3553: <div class="LC_title_bar_role">
 3554: $role&nbsp;
 3555: </div>
 3556: <div class="LC_title_bar_realm">
 3557: $realm&nbsp;
 3558: </div>
 3559: </td>
 3560: ENDROLE
 3561: 
 3562:     my $titleinfo = '<span class="LC_title_bar_title">'.$title.'</span>';
 3563:     if ($customtitle) {
 3564:         $titleinfo = $customtitle;
 3565:     }
 3566:     #
 3567:     # Extra info if you are the DC
 3568:     my $dc_info = '';
 3569:     if ($env{'user.adv'} && exists($env{'user.role.dc./'.
 3570:                         $env{'course.'.$env{'request.course.id'}.
 3571:                                  '.domain'}.'/'})) {
 3572:         my $cid = $env{'request.course.id'};
 3573:         $dc_info.= $cid.' '.$env{'course.'.$cid.'.internal.coursecode'};
 3574:         $dc_info =~ s/\s+$//;
 3575:         $dc_info = '('.$dc_info.')';
 3576:     }
 3577: 
 3578:     if ($env{'environment.remote'} eq 'off') {
 3579:         # No Remote
 3580: 	if ($env{'request.state'} eq 'construct') {
 3581: 	    $forcereg=1;
 3582: 	}
 3583: 
 3584: 	if (!$customtitle && $env{'request.state'} eq 'construct') {
 3585: 	    # this is for resources; directories have customtitle, and crumbs
 3586:             # and select recent are created in lonpubdir.pm  
 3587: 	    my ($uname,$thisdisfn)=
 3588: 		($env{'request.filename'} =~ m|^/home/([^/]+)/public_html/(.*)|);
 3589: 	    my $formaction='/priv/'.$uname.'/'.$thisdisfn;
 3590: 	    $formaction=~s/\/+/\//g;
 3591: 
 3592: 	    my $parentpath = '';
 3593: 	    my $lastitem = '';
 3594: 	    if ($thisdisfn =~ m-(.+/)([^/]*)$-) {
 3595: 		$parentpath = $1;
 3596: 		$lastitem = $2;
 3597: 	    } else {
 3598: 		$lastitem = $thisdisfn;
 3599: 	    }
 3600: 	    $titleinfo = 
 3601: 		&Apache::loncommon::help_open_menu('','',3,'Authoring').
 3602: 		'<b>Construction Space</b>:&nbsp;'. 
 3603: 		'<form name="dirs" method="post" action="'.$formaction
 3604: 		.'" target="_top"><tt><b>'
 3605: 		.&Apache::lonhtmlcommon::crumbs($uname.'/'.$parentpath,'_top','/priv','','+1',1)."<font size=\"+1\">$lastitem</font></b></tt><br />"
 3606: 		.&Apache::lonhtmlcommon::select_recent('construct','recent','this.form.action=this.form.recent.value;this.form.submit()')
 3607: 		.'</form>'
 3608: 		.&Apache::lonmenu::constspaceform();
 3609:         }
 3610: 
 3611:         my $titletable;
 3612: 	if (!$notitle) {
 3613: 	    $titletable =
 3614: 		'<table id="LC_title_bar">'.
 3615:                          "<tr><td> $titleinfo $dc_info</td>".$roleinfo.
 3616: 			 '</tr></table>';
 3617: 	}
 3618: 	if ($notopbar) {
 3619: 	    $bodytag .= $titletable;
 3620: 	} else {
 3621: 	    if ($env{'request.state'} eq 'construct') {
 3622:                 $bodytag .= &Apache::lonmenu::menubuttons($forcereg,$forcereg,
 3623: 							  $titletable);
 3624:             } else {
 3625:                 $bodytag .= &Apache::lonmenu::menubuttons($forcereg,$forcereg).
 3626: 		    $titletable;
 3627:             }
 3628:         }
 3629:         return $bodytag;
 3630:     }
 3631: 
 3632: #
 3633: # Top frame rendering, Remote is up
 3634: #
 3635: 
 3636:     my $imgsrc = $img;
 3637:     if ($img =~ /^\/adm/) {
 3638:         $imgsrc = 'http://'.$ENV{'HTTP_HOST'}.':'.$lonhttpdPort.$img;
 3639:     }
 3640:     my $upperleft='<img src="'.$imgsrc.'" alt="'.$function.'" />';
 3641: 
 3642:     # Explicit link to get inline menu
 3643:     my $menu= ($no_inline_link?''
 3644: 	       :'<br /><a href="/adm/remote?action=collapse">'.&mt('Switch to Inline Menu Mode').'</a>');
 3645:     #
 3646:     if ($notitle) {
 3647: 	return $bodytag;
 3648:     }
 3649:     return(<<ENDBODY);
 3650: $bodytag
 3651: <table id="LC_title_bar" class="LC_with_remote">
 3652: <tr><td class="LC_title_bar_role_logo">$upperleft</td>
 3653:     <td class="LC_title_bar_domain_logo">$messages&nbsp;</td>
 3654: </tr>
 3655: <tr><td>$titleinfo $dc_info $menu</td>
 3656: $roleinfo
 3657: </tr>
 3658: </table>
 3659: ENDBODY
 3660: }
 3661: 
 3662: sub make_attr_string {
 3663:     my ($register,$attr_ref) = @_;
 3664: 
 3665:     if ($attr_ref && !ref($attr_ref)) {
 3666: 	die("addentries Must be a hash ref ".
 3667: 	    join(':',caller(1))." ".
 3668: 	    join(':',caller(0))." ");
 3669:     }
 3670: 
 3671:     if ($register) {
 3672: 	my ($on_load,$on_unload);
 3673: 	foreach my $key (keys(%{$attr_ref})) {
 3674: 	    if      (lc($key) eq 'onload') {
 3675: 		$on_load.=$attr_ref->{$key}.';';
 3676: 		delete($attr_ref->{$key});
 3677: 
 3678: 	    } elsif (lc($key) eq 'onunload') {
 3679: 		$on_unload.=$attr_ref->{$key}.';';
 3680: 		delete($attr_ref->{$key});
 3681: 	    }
 3682: 	}
 3683: 	$attr_ref->{'onload'}  =
 3684: 	    &Apache::lonmenu::loadevents().  $on_load;
 3685: 	$attr_ref->{'onunload'}=
 3686: 	    &Apache::lonmenu::unloadevents().$on_unload;
 3687:     }
 3688: 
 3689: # Accessibility font enhance
 3690:     if ($env{'browser.fontenhance'} eq 'on') {
 3691: 	my $style;
 3692: 	foreach my $key (keys(%{$attr_ref})) {
 3693: 	    if (lc($key) eq 'style') {
 3694: 		$style.=$attr_ref->{$key}.';';
 3695: 		delete($attr_ref->{$key});
 3696: 	    }
 3697: 	}
 3698: 	$attr_ref->{'style'}=$style.'; font-size: x-large;';
 3699:     }
 3700: 
 3701:     if ($env{'browser.blackwhite'} eq 'on') {
 3702: 	delete($attr_ref->{'font'});
 3703: 	delete($attr_ref->{'link'});
 3704: 	delete($attr_ref->{'alink'});
 3705: 	delete($attr_ref->{'vlink'});
 3706: 	delete($attr_ref->{'bgcolor'});
 3707: 	delete($attr_ref->{'background'});
 3708:     }
 3709: 
 3710:     my $attr_string;
 3711:     foreach my $attr (keys(%$attr_ref)) {
 3712: 	$attr_string .= " $attr=\"".$attr_ref->{$attr}.'" ';
 3713:     }
 3714:     return $attr_string;
 3715: }
 3716: 
 3717: 
 3718: ###############################################
 3719: ###############################################
 3720: 
 3721: =pod
 3722: 
 3723: =item * &endbodytag()
 3724: 
 3725: Returns a uniform footer for LON-CAPA web pages.
 3726: 
 3727: Inputs: none
 3728: 
 3729: =cut
 3730: 
 3731: sub endbodytag {
 3732:     my $endbodytag='</body>';
 3733:     $endbodytag=&Apache::lontexconvert::jsMath_process()."\n".$endbodytag;
 3734:     if ( exists( $env{'internal.head.redirect'} ) ) {
 3735: 	$endbodytag=
 3736: 	    "<br /><a href=\"$env{'internal.head.redirect'}\">".
 3737: 	    &mt('Continue').'</a>'.
 3738: 	    $endbodytag;
 3739:     }
 3740:     return $endbodytag;
 3741: }
 3742: 
 3743: =pod
 3744: 
 3745: =item * &standard_css()
 3746: 
 3747: Returns a style sheet
 3748: 
 3749: Inputs: (all optional)
 3750:             domain         -> force to color decorate a page for a specific
 3751:                                domain
 3752:             function       -> force usage of a specific rolish color scheme
 3753:             bgcolor        -> override the default page bgcolor
 3754: 
 3755: =cut
 3756: 
 3757: sub standard_css {
 3758:     my ($function,$domain,$bgcolor) = @_;
 3759:     $function  = &get_users_function() if (!$function);
 3760:     my $img    = &designparm($function.'.img',   $domain);
 3761:     my $tabbg  = &designparm($function.'.tabbg', $domain);
 3762:     my $font   = &designparm($function.'.font',  $domain);
 3763:     my $sidebg = &designparm($function.'.sidebg',$domain);
 3764:     my $pgbg_or_bgcolor =
 3765: 	         $bgcolor ||
 3766: 	         &designparm($function.'.pgbg',  $domain);
 3767:     my $pgbg   = &designparm($function.'.pgbg',  $domain);
 3768:     my $alink  = &designparm($function.'.alink', $domain);
 3769:     my $vlink  = &designparm($function.'.vlink', $domain);
 3770:     my $link   = &designparm($function.'.link',  $domain);
 3771: 
 3772:     my $sans                 = 'Arial,Helvetica,sans-serif';
 3773:     my $mono                 = 'monospace';
 3774:     my $data_table_head      = $tabbg;
 3775:     my $data_table_light     = '#EEEEEE';
 3776:     my $data_table_dark      = '#DDDDDD';
 3777:     my $data_table_darker    = '#CCCCCC';
 3778:     my $data_table_highlight = '#FFFF00';
 3779:     my $mail_new             = '#FFBB77';
 3780:     my $mail_new_hover       = '#DD9955';
 3781:     my $mail_read            = '#BBBB77';
 3782:     my $mail_read_hover      = '#999944';
 3783:     my $mail_replied         = '#AAAA88';
 3784:     my $mail_replied_hover   = '#888855';
 3785:     my $mail_other           = '#99BBBB';
 3786:     my $mail_other_hover     = '#669999';
 3787:     my $table_header         = '#DDDDDD';
 3788:     my $feedback_link_bg     = '#BBBBBB';
 3789: 
 3790:     my $border = ($env{'browser.type'} eq 'explorer') ? '0px 2px 0px 2px'
 3791: 	                                              : '0px 3px 0px 4px';
 3792: 
 3793: 
 3794:     return <<END;
 3795: h1, h2, h3, th { font-family: $sans }
 3796: a:focus { color: red; background: yellow } 
 3797: table.thinborder,
 3798: 
 3799: table.thinborder tr th {
 3800:   border-style: solid;
 3801:   border-width: 1px;
 3802:   background: $tabbg;
 3803: }
 3804: table.thinborder tr td {
 3805:   border-style: solid;
 3806:   border-width: 1px
 3807: }
 3808: 
 3809: form, .inline { display: inline; }
 3810: .center { text-align: center; }
 3811: .LC_filename {font-family: $mono;}
 3812: .LC_error {
 3813:   color: red;
 3814:   font-size: larger;
 3815: }
 3816: .LC_warning,
 3817: .LC_diff_removed {
 3818:   color: red;
 3819: }
 3820: 
 3821: .LC_info,
 3822: .LC_success,
 3823: .LC_diff_added {
 3824:   color: green;
 3825: }
 3826: .LC_unknown {
 3827:   color: yellow;
 3828: }
 3829: 
 3830: .LC_icon {
 3831:   border: 0px;
 3832: }
 3833: .LC_indexer_icon {
 3834:   border: 0px;
 3835:   height: 22px;
 3836: }
 3837: .LC_docs_spacer {
 3838:   width: 25px;
 3839:   height: 1px;
 3840:   border: 0px;
 3841: }
 3842: 
 3843: .LC_internal_info {
 3844:   color: #999;
 3845: }
 3846: 
 3847: table.LC_pastsubmission {
 3848:   border: 1px solid black;
 3849:   margin: 2px;
 3850: }
 3851: 
 3852: table#LC_top_nav, table#LC_menubuttons {
 3853:   width: 100%;
 3854:   background: $pgbg;
 3855:   border: 2px;
 3856:   border-collapse: separate;
 3857:   padding: 0px;
 3858: }
 3859: 
 3860: table#LC_title_bar, table.LC_breadcrumbs, table#LC_nav_location,
 3861: table#LC_title_bar.LC_with_remote {
 3862:   width: 100%;
 3863:   border-color: $pgbg;
 3864:   border-style: solid;
 3865:   border-width: $border;
 3866: 
 3867:   background: $pgbg;
 3868:   font-family: $sans;
 3869:   border-collapse: collapse;
 3870:   padding: 0px;
 3871: }
 3872: 
 3873: table.LC_docs_path {
 3874:   width: 100%;
 3875:   border: 0;
 3876:   background: $pgbg;
 3877:   font-family: $sans;
 3878:   border-collapse: collapse;
 3879:   padding: 0px;
 3880: }
 3881: 
 3882: table#LC_title_bar td {
 3883:   background: $tabbg;
 3884: }
 3885: table#LC_title_bar td.LC_title_bar_who {
 3886:   background: $tabbg;
 3887:   color: $font;
 3888:   font: small $sans;
 3889:   text-align: right;
 3890: }
 3891: span.LC_metadata {
 3892:     font-family: $sans;
 3893: }
 3894: span.LC_title_bar_title {
 3895:   font: bold x-large $sans;
 3896: }
 3897: table#LC_title_bar td.LC_title_bar_domain_logo {
 3898:   background: $sidebg;
 3899:   text-align: right;
 3900:   padding: 0px;
 3901: }
 3902: table#LC_title_bar td.LC_title_bar_role_logo {
 3903:   background: $sidebg;
 3904:   padding: 0px;
 3905: }
 3906: 
 3907: table#LC_menubuttons_mainmenu {
 3908:   width: 100%;
 3909:   border: 0px;
 3910:   border-spacing: 1px;
 3911:   padding: 0px 1px;
 3912:   margin: 0px;
 3913:   border-collapse: separate;
 3914: }
 3915: table#LC_menubuttons img, table#LC_menubuttons_mainmenu img {
 3916:   border: 0px;
 3917: }
 3918: table#LC_top_nav td {
 3919:   background: $tabbg;
 3920:   border: 0px;
 3921:   font-size: small;
 3922: }
 3923: table#LC_top_nav td a, div#LC_top_nav a {
 3924:   color: $font;
 3925:   font-family: $sans;
 3926: }
 3927: table#LC_top_nav td.LC_top_nav_logo {
 3928:   background: $tabbg;
 3929:   text-align: left;
 3930:   white-space: nowrap;
 3931:   width: 31px;
 3932: }
 3933: table#LC_top_nav td.LC_top_nav_logo img {
 3934:   border: 0px;
 3935:   vertical-align: bottom;
 3936: }
 3937: table#LC_top_nav td.LC_top_nav_exit,
 3938: table#LC_top_nav td.LC_top_nav_help {
 3939:   width: 2.0em;
 3940: }
 3941: table#LC_top_nav td.LC_top_nav_login {
 3942:   width: 4.0em;
 3943:   text-align: center;
 3944: }
 3945: table.LC_breadcrumbs td, table.LC_docs_path td  {
 3946:   background: $tabbg;
 3947:   color: $font;
 3948:   font-family: $sans;
 3949:   font-size: smaller;
 3950: }
 3951: table.LC_breadcrumbs td.LC_breadcrumbs_component,
 3952: table.LC_docs_path td.LC_docs_path_component {
 3953:   background: $tabbg;
 3954:   color: $font;
 3955:   font-family: $sans;
 3956:   font-size: larger;
 3957:   text-align: right;
 3958: }
 3959: td.LC_table_cell_checkbox {
 3960:   text-align: center;
 3961: }
 3962: 
 3963: table#LC_mainmenu td.LC_mainmenu_column {
 3964:     vertical-align: top;
 3965: }
 3966: 
 3967: .LC_menubuttons_inline_text {
 3968:   color: $font;
 3969:   font-family: $sans;
 3970:   font-size: smaller;
 3971: }
 3972: 
 3973: .LC_menubuttons_link {
 3974:   text-decoration: none;
 3975: }
 3976: 
 3977: .LC_menubuttons_category {
 3978:   color: $font;
 3979:   background: $pgbg;
 3980:   font-family: $sans;
 3981:   font-size: larger;
 3982:   font-weight: bold;
 3983: }
 3984: 
 3985: td.LC_menubuttons_text {
 3986:   width: 90%;
 3987:   color: $font;
 3988:   font-family: $sans;
 3989: }
 3990: 
 3991: td.LC_menubuttons_img {
 3992: }
 3993: 
 3994: .LC_current_location {
 3995:   font-family: $sans;
 3996:   background: $tabbg;
 3997: }
 3998: .LC_new_mail {
 3999:   font-family: $sans;
 4000:   font-weight: bold;
 4001: }
 4002: 
 4003: .LC_rolesmenu_is {
 4004:   font-family: $sans;
 4005: }
 4006: 
 4007: .LC_rolesmenu_selected {
 4008:   font-family: $sans;
 4009: }
 4010: 
 4011: .LC_rolesmenu_future {
 4012:   font-family: $sans;
 4013: }
 4014: 
 4015: 
 4016: .LC_rolesmenu_will {
 4017:   font-family: $sans;
 4018: }
 4019: 
 4020: .LC_rolesmenu_will_not {
 4021:   font-family: $sans;
 4022: }
 4023: 
 4024: .LC_rolesmenu_expired {
 4025:   font-family: $sans;
 4026: }
 4027: 
 4028: .LC_rolesinfo {
 4029:   font-family: $sans;
 4030: }
 4031: 
 4032: .LC_dropadd_labeltext {
 4033:   font-family: $sans;
 4034:   text-align: right;
 4035: }
 4036: 
 4037: .LC_preferences_labeltext {
 4038:   font-family: $sans;
 4039:   text-align: right;
 4040: }
 4041: 
 4042: table.LC_aboutme_port {
 4043:   border: 0px;
 4044:   border-collapse: collapse;
 4045:   border-spacing: 0px;
 4046: }
 4047: table.LC_data_table, table.LC_mail_list {
 4048:   border: 1px solid #000000;
 4049:   border-collapse: separate;
 4050:   border-spacing: 1px;
 4051: }
 4052: .LC_data_table_dense {
 4053:   font-size: small;
 4054: }
 4055: table.LC_nested_outer {
 4056:   border: 1px solid #000000;
 4057:   border-collapse: separate;
 4058:   border-spacing: 0px;
 4059:   width: 100%;
 4060: }
 4061: table.LC_nested {
 4062:   border: 0px;
 4063:   border-collapse: separate;
 4064:   border-spacing: 0px;
 4065:   width: 100%;
 4066: }
 4067: table.LC_data_table tr th, table.LC_calendar tr th, table.LC_mail_list tr th,
 4068: table.LC_prior_tries tr th {
 4069:   font-weight: bold;
 4070:   background-color: $data_table_head;
 4071:   font-size: smaller;
 4072: }
 4073: table.LC_data_table tr td, 
 4074: table.LC_aboutme_port tr td {
 4075:   background-color: $data_table_light;
 4076:   padding: 2px;
 4077: }
 4078: table.LC_data_table tr.LC_even_row td,
 4079: table.LC_aboutme_port tr.LC_even_row td {
 4080:   background-color: $data_table_dark;
 4081: }
 4082: table.LC_data_table tr.LC_data_table_highlight td {
 4083:   background-color: $data_table_darker;
 4084: }
 4085: table.LC_data_table tr.LC_empty_row td,
 4086: table.LC_nested tr.LC_empty_row td {
 4087:   background-color: #FFFFFF;
 4088:   font-weight: bold;
 4089:   font-style: italic;
 4090:   text-align: center;
 4091:   padding: 8px;
 4092: }
 4093: table.LC_nested tr.LC_empty_row td {
 4094:   padding: 4ex
 4095: }
 4096: table.LC_nested_outer tr th {
 4097:   font-weight: bold;
 4098:   background-color: $data_table_head;
 4099:   font-size: smaller;
 4100:   border-bottom: 1px solid #000000;
 4101: }
 4102: table.LC_nested_outer tr td.LC_subheader {
 4103:   background-color: $data_table_head;
 4104:   font-weight: bold;
 4105:   font-size: small;
 4106:   border-bottom: 1px solid #000000;
 4107:   text-align: right;
 4108: }
 4109: table.LC_nested tr.LC_info_row td {
 4110:   background-color: #CCC;
 4111:   font-weight: bold;
 4112:   font-size: small;
 4113:   text-align: center;
 4114: }
 4115: table.LC_nested tr.LC_info_row td.LC_left_item {
 4116:   text-align: left;
 4117: }
 4118: table.LC_nested td {
 4119:   background-color: #FFF;
 4120:   font-size: small;
 4121: }
 4122: table.LC_nested_outer tr th.LC_right_item,
 4123: table.LC_nested tr.LC_info_row td.LC_right_item,
 4124: table.LC_nested tr.LC_odd_row td.LC_right_item,
 4125: table.LC_nested tr td.LC_right_item {
 4126:   text-align: right;
 4127: }
 4128: 
 4129: table.LC_nested tr.LC_odd_row td {
 4130:   background-color: #EEE;
 4131: }
 4132: 
 4133: table.LC_createuser {
 4134: }
 4135: 
 4136: table.LC_createuser tr.LC_section_row td {
 4137:   font-size: smaller;
 4138: }
 4139: 
 4140: table.LC_createuser tr.LC_info_row td  {
 4141:   background-color: #CCC;
 4142:   font-weight: bold;
 4143:   text-align: center;
 4144: }
 4145: 
 4146: table.LC_calendar {
 4147:   border: 1px solid #000000;
 4148:   border-collapse: collapse;
 4149: }
 4150: table.LC_calendar_pickdate {
 4151:   font-size: xx-small;
 4152: }
 4153: table.LC_calendar tr td {
 4154:   border: 1px solid #000000;
 4155:   vertical-align: top;
 4156: }
 4157: table.LC_calendar tr td.LC_calendar_day_empty {
 4158:   background-color: $data_table_dark;
 4159: }
 4160: table.LC_calendar tr td.LC_calendar_day_current {
 4161:   background-color: $data_table_highlight;
 4162: }
 4163: 
 4164: table.LC_mail_list tr.LC_mail_new {
 4165:   background-color: $mail_new;
 4166: }
 4167: table.LC_mail_list tr.LC_mail_new:hover {
 4168:   background-color: $mail_new_hover;
 4169: }
 4170: table.LC_mail_list tr.LC_mail_read {
 4171:   background-color: $mail_read;
 4172: }
 4173: table.LC_mail_list tr.LC_mail_read:hover {
 4174:   background-color: $mail_read_hover;
 4175: }
 4176: table.LC_mail_list tr.LC_mail_replied {
 4177:   background-color: $mail_replied;
 4178: }
 4179: table.LC_mail_list tr.LC_mail_replied:hover {
 4180:   background-color: $mail_replied_hover;
 4181: }
 4182: table.LC_mail_list tr.LC_mail_other {
 4183:   background-color: $mail_other;
 4184: }
 4185: table.LC_mail_list tr.LC_mail_other:hover {
 4186:   background-color: $mail_other_hover;
 4187: }
 4188: table.LC_mail_list tr.LC_mail_even {
 4189: }
 4190: table.LC_mail_list tr.LC_mail_odd {
 4191: }
 4192: 
 4193: 
 4194: table#LC_portfolio_actions {
 4195:   width: auto;
 4196:   background: $pgbg;
 4197:   border: 0px;
 4198:   border-spacing: 2px 2px;
 4199:   padding: 0px;
 4200:   margin: 0px;
 4201:   border-collapse: separate;
 4202: }
 4203: table#LC_portfolio_actions td.LC_label {
 4204:   background: $tabbg;
 4205:   text-align: right;
 4206: }
 4207: table#LC_portfolio_actions td.LC_value {
 4208:   background: $tabbg;
 4209: }
 4210: 
 4211: table#LC_cstr_controls {
 4212:   width: 100%;
 4213:   border-collapse: collapse;
 4214: }
 4215: table#LC_cstr_controls tr td {
 4216:   border: 4px solid $pgbg;
 4217:   padding: 4px;
 4218:   text-align: center;
 4219:   background: $tabbg;
 4220: }
 4221: table#LC_cstr_controls tr th {
 4222:   border: 4px solid $pgbg;
 4223:   background: $table_header;
 4224:   text-align: center;
 4225:   font-family: $sans;
 4226:   font-size: smaller;
 4227: }
 4228: 
 4229: table#LC_browser {
 4230:  
 4231: }
 4232: table#LC_browser tr th {
 4233:   background: $table_header;
 4234: }
 4235: table#LC_browser tr td {
 4236:   padding: 2px;
 4237: }
 4238: table#LC_browser tr.LC_browser_file,
 4239: table#LC_browser tr.LC_browser_file_published {
 4240:   background: #CCFF88;
 4241: }
 4242: table#LC_browser tr.LC_browser_file_locked,
 4243: table#LC_browser tr.LC_browser_file_unpublished {
 4244:   background: #FFAA99;
 4245: }
 4246: table#LC_browser tr.LC_browser_file_obsolete {
 4247:   background: #AAAAAA;
 4248: }
 4249: table#LC_browser tr.LC_browser_file_modified,
 4250: table#LC_browser tr.LC_browser_file_metamodified {
 4251:   background: #FFFF77;
 4252: }
 4253: table#LC_browser tr.LC_browser_folder {
 4254:   background: #CCCCFF;
 4255: }
 4256: span.LC_current_location {
 4257:   font-size: x-large;
 4258:   background: $pgbg;
 4259: }
 4260: 
 4261: span.LC_parm_menu_item {
 4262:   font-size: larger;
 4263:   font-family: $sans;
 4264: }
 4265: span.LC_parm_scope_all {
 4266:   color: red;
 4267: }
 4268: span.LC_parm_scope_folder {
 4269:   color: green;
 4270: }
 4271: span.LC_parm_scope_resource {
 4272:   color: orange;
 4273: }
 4274: span.LC_parm_part {
 4275:   color: blue;
 4276: }
 4277: span.LC_parm_folder, span.LC_parm_symb {
 4278:   font-size: x-small;
 4279:   font-family: $mono;
 4280:   color: #AAAAAA;
 4281: }
 4282: 
 4283: td.LC_parm_overview_level_menu, td.LC_parm_overview_map_menu,
 4284: td.LC_parm_overview_parm_selectors, td.LC_parm_overview_parm_restrictions {
 4285:   border: 1px solid black;
 4286:   border-collapse: collapse;
 4287: }
 4288: table.LC_parm_overview_restrictions td {
 4289:   border-width: 1px 4px 1px 4px;
 4290:   border-style: solid;
 4291:   border-color: $pgbg;
 4292:   text-align: center;
 4293: }
 4294: table.LC_parm_overview_restrictions th {
 4295:   background: $tabbg;
 4296:   border-width: 1px 4px 1px 4px;
 4297:   border-style: solid;
 4298:   border-color: $pgbg;
 4299: }
 4300: table#LC_helpmenu {
 4301:   border: 0px;
 4302:   height: 55px;
 4303:   border-spacing: 0px;
 4304: }
 4305: 
 4306: table#LC_helpmenu fieldset legend {
 4307:   font-size: larger;
 4308:   font-weight: bold;
 4309: }
 4310: table#LC_helpmenu_links {
 4311:   width: 100%;
 4312:   border: 1px solid black;
 4313:   background: $pgbg;
 4314:   padding: 0px;
 4315:   border-spacing: 1px;
 4316: }
 4317: table#LC_helpmenu_links tr td {
 4318:   padding: 1px;
 4319:   background: $tabbg;
 4320:   text-align: center;
 4321:   font-weight: bold;
 4322: }
 4323: 
 4324: table#LC_helpmenu_links a:link, table#LC_helpmenu_links a:visited,
 4325: table#LC_helpmenu_links a:active {
 4326:   text-decoration: none;
 4327:   color: $font;
 4328: }
 4329: table#LC_helpmenu_links a:hover {
 4330:   text-decoration: underline;
 4331:   color: $vlink;
 4332: }
 4333: 
 4334: .LC_chrt_popup_exists {
 4335:   border: 1px solid #339933;
 4336:   margin: -1px;
 4337: }
 4338: .LC_chrt_popup_up {
 4339:   border: 1px solid yellow;
 4340:   margin: -1px;
 4341: }
 4342: .LC_chrt_popup {
 4343:   border: 1px solid #8888FF;
 4344:   background: #CCCCFF;
 4345: }
 4346: 
 4347: table.LC_pick_box {
 4348:   width: 100%;
 4349:   border-collapse: separate;
 4350:   background: white;
 4351:   border: 1px solid black;
 4352:   border-spacing: 1px;
 4353: }
 4354: table.LC_pick_box td.LC_pick_box_title {
 4355:   background: $tabbg;
 4356:   font-weight: bold;
 4357:   text-align: right;
 4358:   width: 184px;
 4359:   padding: 8px;
 4360: }
 4361: table.LC_pick_box td.LC_pick_box_separator {
 4362:   padding: 0px;
 4363:   height: 1px;
 4364:   background: black;
 4365: }
 4366: table.LC_pick_box td.LC_pick_box_submit {
 4367:   text-align: right;
 4368: }
 4369: 
 4370: table.LC_group_priv_box {
 4371:   background: white;
 4372:   border: 1px solid black;
 4373:   border-spacing: 1px;
 4374: }
 4375: table.LC_group_priv_box td.LC_pick_box_title {
 4376:   background: $tabbg;
 4377:   font-weight: bold;
 4378:   text-align: right;
 4379:   width: 184px;
 4380: }
 4381: table.LC_group_priv_box td.LC_groups_fixed {
 4382:   background: $data_table_light;
 4383:   text-align: center;
 4384: }
 4385: table.LC_group_priv_box td.LC_groups_optional {
 4386:   background: $data_table_dark;
 4387:   text-align: center;
 4388: }
 4389: table.LC_group_priv_box td.LC_groups_functionality {
 4390:   background: $data_table_darker;
 4391:   text-align: center;
 4392:   font-weight: bold;
 4393: }
 4394: table.LC_group_priv td {
 4395:   text-align: left;
 4396:   padding: 0px;
 4397: }
 4398: 
 4399: table.LC_notify_front_page {
 4400:   background: white;
 4401:   border: 1px solid black;
 4402:   padding: 8px;
 4403: }
 4404: table.LC_notify_front_page td {
 4405:   padding: 8px;
 4406: }
 4407: .LC_navbuttons {
 4408:   margin: 2ex 0ex 2ex 0ex;
 4409: }
 4410: .LC_topic_bar {
 4411:   font-family: $sans;
 4412:   font-weight: bold;
 4413:   width: 100%;
 4414:   background: $tabbg;
 4415:   vertical-align: middle;
 4416:   margin: 2ex 0ex 2ex 0ex;
 4417: }
 4418: .LC_topic_bar span {
 4419:   vertical-align: middle;
 4420: }
 4421: .LC_topic_bar img {
 4422:   vertical-align: bottom;
 4423: }
 4424: table.LC_course_group_status {
 4425:   margin: 20px;
 4426: }
 4427: table.LC_status_selector td {
 4428:   vertical-align: top;
 4429:   text-align: center;
 4430:   padding: 4px;
 4431: }
 4432: table.LC_descriptive_input td.LC_description {
 4433:   vertical-align: top;
 4434:   text-align: right;
 4435:   font-weight: bold;
 4436: }
 4437: table.LC_feedback_link {
 4438:     background: $feedback_link_bg;
 4439: }
 4440: span.LC_feedback_link {
 4441:     background: $feedback_link_bg;
 4442:     font-size: larger;
 4443: }
 4444: 
 4445: table.LC_prior_tries {
 4446:   border: 1px solid #000000;
 4447:   border-collapse: separate;
 4448:   border-spacing: 1px;
 4449: }
 4450: 
 4451: table.LC_prior_tries td {
 4452:   padding: 2px;
 4453: }
 4454: 
 4455: .LC_answer_correct {
 4456:   background: #AAFFAA;
 4457:   color: black;
 4458: }
 4459: .LC_answer_charged_try {
 4460:   background: #FFAAAA ! important;
 4461:   color: black;
 4462: }
 4463: .LC_answer_not_charged_try, 
 4464: .LC_answer_no_grade,
 4465: .LC_answer_late {
 4466:   background: #FFFFAA;
 4467:   color: black;
 4468: }
 4469: .LC_answer_previous {
 4470:   background: #AAAAFF;
 4471:   color: black;
 4472: }
 4473: .LC_answer_no_message {
 4474:   background: #FFFFFF;
 4475:   color: black;
 4476: }
 4477: .LC_answer_unknown {
 4478:   background: orange;
 4479:   color: black;
 4480: }
 4481: 
 4482: 
 4483: span.LC_prior_numerical,
 4484: span.LC_prior_string,
 4485: span.LC_prior_custom,
 4486: span.LC_prior_reaction,
 4487: span.LC_prior_math {
 4488:   font-family: monospace;
 4489:   white-space: pre;
 4490: }
 4491: 
 4492: span.LC_prior_string {
 4493:   font-family: monospace;
 4494:   white-space: pre;
 4495: }
 4496: 
 4497: table.LC_prior_option {
 4498:   width: 100%;
 4499:   border-collapse: collapse;
 4500: }
 4501: table.LC_prior_rank, table.LC_prior_match {
 4502:   border-collapse: collapse;
 4503: }
 4504: table.LC_prior_option tr td,
 4505: table.LC_prior_rank tr td,
 4506: table.LC_prior_match tr td {
 4507:   border: 1px solid #000000;
 4508: }
 4509: 
 4510: span.LC_nobreak {
 4511:   white-space: nowrap;
 4512: }
 4513: 
 4514: table.LC_docs_documents {
 4515:   background: #BBBBBB;
 4516:   border-width: 0px;
 4517:   border-collapse: collapse;
 4518: }
 4519: 
 4520: table.LC_docs_documents td.LC_docs_document {
 4521:   border: 2px solid black;
 4522:   padding: 4px;
 4523: }
 4524: 
 4525: .LC_docs_course_commands div {
 4526:   float: left;
 4527:   border: 4px solid #AAAAAA;
 4528:   padding: 4px;
 4529:   background: #DDDDCC;
 4530: }
 4531: 
 4532: .LC_docs_entry_move {
 4533:   border: 0px;
 4534:   border-collapse: collapse;
 4535: }
 4536: 
 4537: .LC_docs_entry_move td {
 4538:   border: 2px solid #BBBBBB;
 4539:   background: #DDDDDD;
 4540: }
 4541: 
 4542: .LC_docs_editor td.LC_docs_entry_commands {
 4543:   background: #DDDDDD;
 4544:   font-size: x-small;
 4545: }
 4546: .LC_docs_copy {
 4547:   color: #000099;
 4548: }
 4549: .LC_docs_cut {
 4550:   color: #550044;
 4551: }
 4552: .LC_docs_rename {
 4553:   color: #009900;
 4554: }
 4555: .LC_docs_remove {
 4556:   color: #990000;
 4557: }
 4558: 
 4559: .LC_docs_reinit_warn,
 4560: .LC_docs_ext_edit {
 4561:   font-size: x-small;
 4562: }
 4563: 
 4564: .LC_docs_editor td.LC_docs_entry_title,
 4565: .LC_docs_editor td.LC_docs_entry_icon {
 4566:   background: #FFFFBB;
 4567: }
 4568: .LC_docs_editor td.LC_docs_entry_parameter {
 4569:   background: #BBBBFF;
 4570:   font-size: x-small;
 4571:   white-space: nowrap;
 4572: }
 4573: 
 4574: table.LC_docs_adddocs td,
 4575: table.LC_docs_adddocs th {
 4576:   border: 1px solid #BBBBBB;
 4577:   padding: 4px;
 4578:   background: #DDDDDD;
 4579: }
 4580: 
 4581: END
 4582: }
 4583: 
 4584: =pod
 4585: 
 4586: =item * &headtag()
 4587: 
 4588: Returns a uniform footer for LON-CAPA web pages.
 4589: 
 4590: Inputs: $title - optional title for the head
 4591:         $head_extra - optional extra HTML to put inside the <head>
 4592:         $args - optional arguments
 4593:             force_register - if is true call registerurl so the remote is 
 4594:                              informed
 4595:             redirect       -> array ref of
 4596:                                    1- seconds before redirect occurs
 4597:                                    2- url to redirect to
 4598:                                    3- whether the side effect should occur
 4599:                            (side effect of setting 
 4600:                                $env{'internal.head.redirect'} to the url 
 4601:                                redirected too)
 4602:             domain         -> force to color decorate a page for a specific
 4603:                                domain
 4604:             function       -> force usage of a specific rolish color scheme
 4605:             bgcolor        -> override the default page bgcolor
 4606:             no_auto_mt_title
 4607:                            -> prevent &mt()ing the title arg
 4608: 
 4609: =cut
 4610: 
 4611: sub headtag {
 4612:     my ($title,$head_extra,$args) = @_;
 4613:     
 4614:     my $function = $args->{'function'} || &get_users_function();
 4615:     my $domain   = $args->{'domain'}   || &determinedomain();
 4616:     my $bgcolor  = $args->{'bgcolor'}  || &designparm($function.'.pgbg',$domain);
 4617:     my $url = join(':',$env{'user.name'},$env{'user.domain'},
 4618: 		   $Apache::lonnet::perlvar{'lonVersion'},
 4619: 		   #time(),
 4620: 		   $env{'environment.color.timestamp'},
 4621: 		   $function,$domain,$bgcolor);
 4622: 
 4623:     $url = '/adm/css/'.&escape($url).'.css';
 4624: 
 4625:     my $result =
 4626: 	'<head>'.
 4627: 	&font_settings();
 4628: 
 4629:     if (!$args->{'frameset'}) {
 4630: 	$result .= &Apache::lonhtmlcommon::htmlareaheaders();
 4631:     }
 4632:     if ($args->{'force_register'}) {
 4633: 	$result .= &Apache::lonmenu::registerurl(1);
 4634:     }
 4635:     if (!$args->{'no_nav_bar'} 
 4636: 	&& !$args->{'only_body'}
 4637: 	&& !$args->{'frameset'}) {
 4638: 	$result .= &help_menu_js();
 4639:     }
 4640: 
 4641:     if (ref($args->{'redirect'})) {
 4642: 	my ($time,$url,$inhibit_continue) = @{$args->{'redirect'}};
 4643: 	$url = &Apache::lonenc::check_encrypt($url);
 4644: 	if (!$inhibit_continue) {
 4645: 	    $env{'internal.head.redirect'} = $url;
 4646: 	}
 4647: 	$result.=<<ADDMETA
 4648: <meta http-equiv="pragma" content="no-cache" />
 4649: <meta http-equiv="Refresh" content="$time; url=$url" />
 4650: ADDMETA
 4651:     }
 4652:     if (!defined($title)) {
 4653: 	$title = 'The LearningOnline Network with CAPA';
 4654:     }
 4655:     if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }
 4656:     $result .= '<title> LON-CAPA '.$title.'</title>'
 4657: 	.'<link rel="stylesheet" type="text/css" href="'.$url.'" />'
 4658: 	.$head_extra;
 4659:     return $result;
 4660: }
 4661: 
 4662: =pod
 4663: 
 4664: =item * &font_settings()
 4665: 
 4666: Returns neccessary <meta> to set the proper encoding
 4667: 
 4668: Inputs: none
 4669: 
 4670: =cut
 4671: 
 4672: sub font_settings {
 4673:     my $headerstring='';
 4674:     if (($env{'browser.os'} eq 'mac') && (!$env{'browser.mathml'})) { 
 4675: 	$headerstring.=
 4676: 	    '<meta Content-Type="text/html; charset=x-mac-roman" />';
 4677:     } elsif (!$env{'browser.mathml'} && $env{'browser.unicode'}) {
 4678: 	$headerstring.=
 4679: 	    '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
 4680:     }
 4681:     return $headerstring;
 4682: }
 4683: 
 4684: =pod
 4685: 
 4686: =item * &xml_begin()
 4687: 
 4688: Returns the needed doctype and <html>
 4689: 
 4690: Inputs: none
 4691: 
 4692: =cut
 4693: 
 4694: sub xml_begin {
 4695:     my $output='';
 4696: 
 4697:     &Apache::lonhtmlcommon::init_htmlareafields();
 4698: 
 4699:     if ($env{'browser.mathml'}) {
 4700: 	$output='<?xml version="1.0"?>'
 4701:             #.'<?xml-stylesheet type="text/css" href="/adm/MathML/mathml.css"?>'."\n"
 4702: #            .'<!DOCTYPE html SYSTEM "/adm/MathML/mathml.dtd" '
 4703:             
 4704: #	    .'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" [<!ENTITY mathns "http://www.w3.org/1998/Math/MathML">] >'
 4705: 	    .'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">'
 4706:             .'<html xmlns:math="http://www.w3.org/1998/Math/MathML" ' 
 4707: 	    .'xmlns="http://www.w3.org/1999/xhtml">';
 4708:     } else {
 4709: 	$output='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html>';
 4710:     }
 4711:     return $output;
 4712: }
 4713: 
 4714: =pod
 4715: 
 4716: =item * &endheadtag()
 4717: 
 4718: Returns a uniform </head> for LON-CAPA web pages.
 4719: 
 4720: Inputs: none
 4721: 
 4722: =cut
 4723: 
 4724: sub endheadtag {
 4725:     return '</head>';
 4726: }
 4727: 
 4728: =pod
 4729: 
 4730: =item * &head()
 4731: 
 4732: Returns a uniform complete <head>..</head> section for LON-CAPA web pages.
 4733: 
 4734: Inputs: $title - optional title for the page
 4735:         $head_extra - optional extra HTML to put inside the <head>
 4736: 
 4737: =cut
 4738: 
 4739: sub head {
 4740:     my ($title,$head_extra,$args) = @_;
 4741:     return &headtag($title,$head_extra,$args).&endheadtag();
 4742: }
 4743: 
 4744: =pod
 4745: 
 4746: =item * &start_page()
 4747: 
 4748: Returns a complete <html> .. <body> section for LON-CAPA web pages.
 4749: 
 4750: Inputs: $title - optional title for the page
 4751:         $head_extra - optional extra HTML to incude inside the <head>
 4752:         $args - additional optional args supported are:
 4753:                   only_body      -> is true will set &bodytag() onlybodytag
 4754:                                     arg on
 4755:                   no_nav_bar     -> is true will set &bodytag() notopbar arg on
 4756:                   add_entries    -> additional attributes to add to the  <body>
 4757:                   domain         -> force to color decorate a page for a 
 4758:                                     specific domain
 4759:                   function       -> force usage of a specific rolish color
 4760:                                     scheme
 4761:                   redirect       -> see &headtag()
 4762:                   bgcolor        -> override the default page bg color
 4763:                   js_ready       -> return a string ready for being used in 
 4764:                                     a javascript writeln
 4765:                   html_encode    -> return a string ready for being used in 
 4766:                                     a html attribute
 4767:                   force_register -> if is true will turn on the &bodytag()
 4768:                                     $forcereg arg
 4769:                   body_title     -> alternate text to use instead of $title
 4770:                                     in the title box that appears, this text
 4771:                                     is not auto translated like the $title is
 4772:                   frameset       -> if true will start with a <frameset>
 4773:                                     rather than <body>
 4774:                   no_title       -> if true the title bar won't be shown
 4775:                   skip_phases    -> hash ref of 
 4776:                                     head -> skip the <html><head> generation
 4777:                                     body -> skip all <body> generation
 4778: 
 4779:                   no_inline_link -> if true and in remote mode, don't show the 
 4780:                                     'Switch To Inline Menu' link
 4781: 
 4782:                   no_auto_mt_title -> prevent &mt()ing the title arg
 4783: 
 4784:                   inherit_jsmath -> when creating popup window in a page,
 4785:                                     should it have jsmath forced on by the
 4786:                                     current page
 4787: 
 4788: =cut
 4789: 
 4790: sub start_page {
 4791:     my ($title,$head_extra,$args) = @_;
 4792:     #&Apache::lonnet::logthis("start_page ".join(':',caller(0)));
 4793:     my %head_args;
 4794:     foreach my $arg ('redirect','force_register','domain','function',
 4795: 		     'bgcolor','frameset','no_nav_bar','only_body',
 4796: 		     'no_auto_mt_title') {
 4797: 	if (defined($args->{$arg})) {
 4798: 	    $head_args{$arg} = $args->{$arg};
 4799: 	}
 4800:     }
 4801: 
 4802:     $env{'internal.start_page'}++;
 4803:     my $result;
 4804:     if (! exists($args->{'skip_phases'}{'head'}) ) {
 4805: 	$result.=
 4806: 	    &xml_begin().
 4807: 	    &headtag($title,$head_extra,\%head_args).&endheadtag();
 4808:     }
 4809:     
 4810:     if (! exists($args->{'skip_phases'}{'body'}) ) {
 4811: 	if ($args->{'frameset'}) {
 4812: 	    my $attr_string = &make_attr_string($args->{'force_register'},
 4813: 						$args->{'add_entries'});
 4814: 	    $result .= "\n<frameset $attr_string>\n";
 4815: 	} else {
 4816: 	    $result .=
 4817: 		&bodytag($title, 
 4818: 			 $args->{'function'},       $args->{'add_entries'},
 4819: 			 $args->{'only_body'},      $args->{'domain'},
 4820: 			 $args->{'force_register'}, $args->{'body_title'},
 4821: 			 $args->{'no_nav_bar'},     $args->{'bgcolor'},
 4822: 			 $args->{'no_title'},       $args->{'no_inline_link'},
 4823: 			 $args);
 4824: 	}
 4825:     }
 4826: 
 4827:     if ($args->{'js_ready'}) {
 4828: 	$result = &js_ready($result);
 4829:     }
 4830:     if ($args->{'html_encode'}) {
 4831: 	$result = &html_encode($result);
 4832:     }
 4833:     return $result;
 4834: }
 4835: 
 4836: 
 4837: =pod
 4838: 
 4839: =item * &head()
 4840: 
 4841: Returns a complete </body></html> section for LON-CAPA web pages.
 4842: 
 4843: Inputs:         $args - additional optional args supported are:
 4844:                  js_ready     -> return a string ready for being used in 
 4845:                                  a javascript writeln
 4846:                  html_encode  -> return a string ready for being used in 
 4847:                                  a html attribute
 4848:                  frameset     -> if true will start with a <frameset>
 4849:                                  rather than <body>
 4850:                  dicsussion   -> if true will get discussion from
 4851:                                   lonxml::xmlend
 4852:                                  (you can pass the target and parser arguments
 4853:                                   through optional 'target' and 'parser' args
 4854:                                   to this routine)
 4855: 
 4856: =cut
 4857: 
 4858: sub end_page {
 4859:     my ($args) = @_;
 4860:     $env{'internal.end_page'}++;
 4861:     my $result;
 4862:     if ($args->{'discussion'}) {
 4863: 	my ($target,$parser);
 4864: 	if (ref($args->{'discussion'})) {
 4865: 	    ($target,$parser) =($args->{'discussion'}{'target'},
 4866: 				$args->{'discussion'}{'parser'});
 4867: 	}
 4868: 	$result .= &Apache::lonxml::xmlend($target,$parser);
 4869:     }
 4870: 
 4871:     if ($args->{'frameset'}) {
 4872: 	$result .= '</frameset>';
 4873:     } else {
 4874: 	$result .= &endbodytag();
 4875:     }
 4876:     $result .= "\n</html>";
 4877: 
 4878:     if ($args->{'js_ready'}) {
 4879: 	$result = &js_ready($result);
 4880:     }
 4881: 
 4882:     if ($args->{'html_encode'}) {
 4883: 	$result = &html_encode($result);
 4884:     }
 4885: 
 4886:     return $result;
 4887: }
 4888: 
 4889: sub html_encode {
 4890:     my ($result) = @_;
 4891: 
 4892:     $result = &HTML::Entities::encode($result,'<>&"');
 4893:     
 4894:     return $result;
 4895: }
 4896: sub js_ready {
 4897:     my ($result) = @_;
 4898: 
 4899:     $result =~ s/[\n\r]/ /xmsg;
 4900:     $result =~ s/\\/\\\\/xmsg;
 4901:     $result =~ s/'/\\'/xmsg;
 4902:     $result =~ s{</}{<\\/}xmsg;
 4903:     
 4904:     return $result;
 4905: }
 4906: 
 4907: sub validate_page {
 4908:     if (  exists($env{'internal.start_page'})
 4909: 	  &&     $env{'internal.start_page'} > 1) {
 4910: 	&Apache::lonnet::logthis('start_page called multiple times '.
 4911: 				 $env{'internal.start_page'}.' '.
 4912: 				 $ENV{'request.filename'});
 4913:     }
 4914:     if (  exists($env{'internal.end_page'})
 4915: 	  &&     $env{'internal.end_page'} > 1) {
 4916: 	&Apache::lonnet::logthis('end_page called multiple times '.
 4917: 				 $env{'internal.end_page'}.' '.
 4918: 				 $env{'request.filename'});
 4919:     }
 4920:     if (     exists($env{'internal.start_page'})
 4921: 	&& ! exists($env{'internal.end_page'})) {
 4922: 	&Apache::lonnet::logthis('start_page called without end_page '.
 4923: 				 $env{'request.filename'});
 4924:     }
 4925:     if (   ! exists($env{'internal.start_page'})
 4926: 	&&   exists($env{'internal.end_page'})) {
 4927: 	&Apache::lonnet::logthis('end_page called without start_page'.
 4928: 				 $env{'request.filename'});
 4929:     }
 4930: }
 4931: 
 4932: sub simple_error_page {
 4933:     my ($r,$title,$msg) = @_;
 4934:     my $page =
 4935: 	&Apache::loncommon::start_page($title).
 4936: 	&mt($msg).
 4937: 	&Apache::loncommon::end_page();
 4938:     if (ref($r)) {
 4939: 	$r->print($page);
 4940: 	return;
 4941:     }
 4942:     return $page;
 4943: }
 4944: 
 4945: {
 4946:     my $row_count;
 4947:     sub start_data_table {
 4948: 	my ($add_class) = @_;
 4949: 	my $css_class = (join(' ','LC_data_table',$add_class));
 4950: 	undef($row_count);
 4951: 	return '<table class="'.$css_class.'">'."\n";
 4952:     }
 4953: 
 4954:     sub end_data_table {
 4955: 	undef($row_count);
 4956: 	return '</table>'."\n";;
 4957:     }
 4958: 
 4959:     sub start_data_table_row {
 4960: 	my ($add_class) = @_;
 4961: 	$row_count++;
 4962: 	my $css_class = ($row_count % 2)?'':'LC_even_row';
 4963: 	$css_class = (join(' ',$css_class,$add_class));
 4964: 	return  '<tr class="'.$css_class.'">'."\n";;
 4965:     }
 4966:     
 4967:     sub continue_data_table_row {
 4968: 	my ($add_class) = @_;
 4969: 	my $css_class = ($row_count % 2)?'':'LC_even_row';
 4970: 	$css_class = (join(' ',$css_class,$add_class));
 4971: 	return  '<tr class="'.$css_class.'">'."\n";;
 4972:     }
 4973: 
 4974:     sub end_data_table_row {
 4975: 	return '</tr>'."\n";;
 4976:     }
 4977: 
 4978:     sub start_data_table_empty_row {
 4979: 	$row_count++;
 4980: 	return  '<tr class="LC_empty_row" >'."\n";;
 4981:     }
 4982: 
 4983:     sub end_data_table_empty_row {
 4984: 	return '</tr>'."\n";;
 4985:     }
 4986: 
 4987:     sub start_data_table_header_row {
 4988: 	return  '<tr class="LC_header_row">'."\n";;
 4989:     }
 4990: 
 4991:     sub end_data_table_header_row {
 4992: 	return '</tr>'."\n";;
 4993:     }
 4994: }
 4995: 
 4996: =pod
 4997: 
 4998: =item * &inhibit_menu_check($arg)
 4999: 
 5000: Checks for a inhibitmenu state and generates output to preserve it
 5001: 
 5002: Inputs:         $arg - can be any of
 5003:                      - undef - in which case the return value is a string 
 5004:                                to add  into arguments list of a uri
 5005:                      - 'input' - in which case the return value is a HTML
 5006:                                  <form> <input> field of type hidden to
 5007:                                  preserve the value
 5008:                      - a url - in which case the return value is the url with
 5009:                                the neccesary cgi args added to preserve the
 5010:                                inhibitmenu state
 5011:                      - a ref to a url - no return value, but the string is
 5012:                                         updated to include the neccessary cgi
 5013:                                         args to preserve the inhibitmenu state
 5014: 
 5015: =cut
 5016: 
 5017: sub inhibit_menu_check {
 5018:     my ($arg) = @_;
 5019:     &get_unprocessed_cgi($ENV{'QUERY_STRING'}, ['inhibitmenu']);
 5020:     if ($arg eq 'input') {
 5021: 	if ($env{'form.inhibitmenu'}) {
 5022: 	    return '<input type="hidden" name="inhibitmenu" value="'.$env{'form.inhibitmenu'}.'" />';
 5023: 	} else {
 5024: 	    return
 5025: 	}
 5026:     }
 5027:     if ($env{'form.inhibitmenu'}) {
 5028: 	if (ref($arg)) {
 5029: 	    $$arg .= '?inhibitmenu='.$env{'form.inhibitmenu'};
 5030: 	} elsif ($arg eq '') {
 5031: 	    $arg .= 'inhibitmenu='.$env{'form.inhibitmenu'};
 5032: 	} else {
 5033: 	    $arg .= '?inhibitmenu='.$env{'form.inhibitmenu'};
 5034: 	}
 5035:     }
 5036:     if (!ref($arg)) {
 5037: 	return $arg;
 5038:     }
 5039: }
 5040: 
 5041: ###############################################
 5042: 
 5043: =pod
 5044: 
 5045: =back
 5046: 
 5047: =head1 User Information Routines
 5048: 
 5049: =over 4
 5050: 
 5051: =item * &get_users_function()
 5052: 
 5053: Used by &bodytag to determine the current users primary role.
 5054: Returns either 'student','coordinator','admin', or 'author'.
 5055: 
 5056: =cut
 5057: 
 5058: ###############################################
 5059: sub get_users_function {
 5060:     my $function = 'student';
 5061:     if ($env{'request.role'}=~/^(cc|in|ta|ep)/) {
 5062:         $function='coordinator';
 5063:     }
 5064:     if ($env{'request.role'}=~/^(su|dc|ad|li)/) {
 5065:         $function='admin';
 5066:     }
 5067:     if (($env{'request.role'}=~/^(au|ca)/) ||
 5068:         ($ENV{'REQUEST_URI'}=~/^(\/priv|\~)/)) {
 5069:         $function='author';
 5070:     }
 5071:     return $function;
 5072: }
 5073: 
 5074: ###############################################
 5075: 
 5076: =pod
 5077: 
 5078: =item * &check_user_status()
 5079: 
 5080: Determines current status of supplied role for a
 5081: specific user. Roles can be active, previous or future.
 5082: 
 5083: Inputs: 
 5084: user's domain, user's username, course's domain,
 5085: course's number, optional section ID.
 5086: 
 5087: Outputs:
 5088: role status: active, previous or future. 
 5089: 
 5090: =cut
 5091: 
 5092: sub check_user_status {
 5093:     my ($udom,$uname,$cdom,$crs,$role,$sec) = @_;
 5094:     my %userinfo = &Apache::lonnet::dump('roles',$udom,$uname);
 5095:     my @uroles = keys %userinfo;
 5096:     my $srchstr;
 5097:     my $active_chk = 'none';
 5098:     my $now = time;
 5099:     if (@uroles > 0) {
 5100:         if (($role eq 'cc') || ($sec eq '') || (!defined($sec))) {
 5101:             $srchstr = '/'.$cdom.'/'.$crs.'_'.$role;
 5102:         } else {
 5103:             $srchstr = '/'.$cdom.'/'.$crs.'/'.$sec.'_'.$role;
 5104:         }
 5105:         if (grep/^\Q$srchstr\E$/,@uroles) {
 5106:             my $role_end = 0;
 5107:             my $role_start = 0;
 5108:             $active_chk = 'active';
 5109:             if ($userinfo{$srchstr} =~ m/^\Q$role\E_(\d+)/) {
 5110:                 $role_end = $1;
 5111:                 if ($userinfo{$srchstr} =~ m/^\Q$role\E_\Q$role_end\E_(\d+)$/) {
 5112:                     $role_start = $1;
 5113:                 }
 5114:             }
 5115:             if ($role_start > 0) {
 5116:                 if ($now < $role_start) {
 5117:                     $active_chk = 'future';
 5118:                 }
 5119:             }
 5120:             if ($role_end > 0) {
 5121:                 if ($now > $role_end) {
 5122:                     $active_chk = 'previous';
 5123:                 }
 5124:             }
 5125:         }
 5126:     }
 5127:     return $active_chk;
 5128: }
 5129: 
 5130: ###############################################
 5131: 
 5132: =pod
 5133: 
 5134: =item * &get_sections()
 5135: 
 5136: Determines all the sections for a course including
 5137: sections with students and sections containing other roles.
 5138: Incoming parameters: 
 5139: 
 5140: 1. domain
 5141: 2. course number 
 5142: 3. reference to array containing roles for which sections should 
 5143: be gathered (optional).
 5144: 4. reference to array containing status types for which sections 
 5145: should be gathered (optional).
 5146: 
 5147: If the third argument is undefined, sections are gathered for any role. 
 5148: If the fourth argument is undefined, sections are gathered for any status.
 5149: Permissible values are 'active' or 'future' or 'previous'.
 5150:  
 5151: Returns section hash (keys are section IDs, values are
 5152: number of users in each section), subject to the
 5153: optional roles filter, optional status filter 
 5154: 
 5155: =cut
 5156: 
 5157: ###############################################
 5158: sub get_sections {
 5159:     my ($cdom,$cnum,$possible_roles,$possible_status) = @_;
 5160:     if (!defined($cdom) || !defined($cnum)) {
 5161:         my $cid =  $env{'request.course.id'};
 5162: 
 5163: 	return if (!defined($cid));
 5164: 
 5165:         $cdom = $env{'course.'.$cid.'.domain'};
 5166:         $cnum = $env{'course.'.$cid.'.num'};
 5167:     }
 5168: 
 5169:     my %sectioncount;
 5170:     my $now = time;
 5171: 
 5172:     if (!defined($possible_roles) || (grep(/^st$/,@$possible_roles))) {
 5173: 	my ($classlist) = &Apache::loncoursedata::get_classlist($cdom,$cnum);
 5174: 	my $sec_index = &Apache::loncoursedata::CL_SECTION();
 5175: 	my $status_index = &Apache::loncoursedata::CL_STATUS();
 5176:         my $start_index = &Apache::loncoursedata::CL_START();
 5177:         my $end_index = &Apache::loncoursedata::CL_END();
 5178:         my $status;
 5179: 	while (my ($student,$data) = each(%$classlist)) {
 5180: 	    my ($section,$stu_status,$start,$end) = ($data->[$sec_index],
 5181: 				                     $data->[$status_index],
 5182:                                                      $data->[$start_index],
 5183:                                                      $data->[$end_index]);
 5184:             if ($stu_status eq 'Active') {
 5185:                 $status = 'active';
 5186:             } elsif ($end < $now) {
 5187:                 $status = 'previous';
 5188:             } elsif ($start > $now) {
 5189:                 $status = 'future';
 5190:             } 
 5191: 	    if ($section ne '-1' && $section !~ /^\s*$/) {
 5192:                 if ((!defined($possible_status)) || (($status ne '') && 
 5193:                     (grep/^\Q$status\E$/,@{$possible_status}))) { 
 5194: 		    $sectioncount{$section}++;
 5195:                 }
 5196: 	    }
 5197: 	}
 5198:     }
 5199:     my %courseroles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
 5200:     foreach my $user (sort(keys(%courseroles))) {
 5201: 	if ($user !~ /^(\w{2})/) { next; }
 5202: 	my ($role) = ($user =~ /^(\w{2})/);
 5203: 	if ($possible_roles && !(grep(/^$role$/,@$possible_roles))) { next; }
 5204: 	my ($section,$status);
 5205: 	if ($role eq 'cr' &&
 5206: 	    $user =~ m-^$role/[^/]*/[^/]*/[^/]*:[^:]*:[^:]*:(\w+)-) {
 5207: 	    $section=$1;
 5208: 	}
 5209: 	if ($user =~ /^$role:[^:]*:[^:]*:(\w+)/) { $section=$1; }
 5210: 	if (!defined($section) || $section eq '-1') { next; }
 5211:         my ($end,$start) = ($courseroles{$user} =~ /^([^:]*):([^:]*)$/);
 5212:         if ($end == -1 && $start == -1) {
 5213:             next; #deleted role
 5214:         }
 5215:         if (!defined($possible_status)) { 
 5216:             $sectioncount{$section}++;
 5217:         } else {
 5218:             if ((!$end || $end >= $now) && (!$start || $start <= $now)) {
 5219:                 $status = 'active';
 5220:             } elsif ($end < $now) {
 5221:                 $status = 'future';
 5222:             } elsif ($start > $now) {
 5223:                 $status = 'previous';
 5224:             }
 5225:             if (($status ne '') && (grep/^\Q$status\E$/,@{$possible_status})) {
 5226:                 $sectioncount{$section}++;
 5227:             }
 5228:         }
 5229:     }
 5230:     return %sectioncount;
 5231: }
 5232: 
 5233: ###############################################
 5234: 
 5235: =pod
 5236: 
 5237: =item * &get_course_users()
 5238: 
 5239: Retrieves usernames:domains for users in the specified course
 5240: with specific role(s), and access status. 
 5241: 
 5242: Incoming parameters:
 5243: 1. course domain
 5244: 2. course number
 5245: 3. access status: users must have - either active, 
 5246: previous, future, or all.
 5247: 4. reference to array of permissible roles
 5248: 5. reference to array of section restrictions (optional)
 5249: 6. reference to results object (hash of hashes).
 5250: 7. reference to optional userdata hash
 5251: Keys of top level hash are roles.
 5252: Keys of inner hashes are username:domain, with 
 5253: values set to access type.
 5254: Optional userdata hash returns an array with arguments in the 
 5255: same order as loncoursedata::get_classlist() for student data.
 5256: 
 5257: Entries for end, start, section and status are blank because
 5258: of the possibility of multiple values for non-student roles.
 5259: 
 5260: =cut
 5261: 
 5262: ###############################################
 5263: 
 5264: sub get_course_users {
 5265:     my ($cdom,$cnum,$types,$roles,$sections,$users,$userdata) = @_;
 5266:     my %idx = ();
 5267:     my %seclists;
 5268: 
 5269:     $idx{udom} = &Apache::loncoursedata::CL_SDOM();
 5270:     $idx{uname} =  &Apache::loncoursedata::CL_SNAME();
 5271:     $idx{end} = &Apache::loncoursedata::CL_END();
 5272:     $idx{start} = &Apache::loncoursedata::CL_START();
 5273:     $idx{id} = &Apache::loncoursedata::CL_ID();
 5274:     $idx{section} = &Apache::loncoursedata::CL_SECTION();
 5275:     $idx{fullname} = &Apache::loncoursedata::CL_FULLNAME();
 5276:     $idx{status} = &Apache::loncoursedata::CL_STATUS();
 5277: 
 5278:     if (grep(/^st$/,@{$roles})) {
 5279:         my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist($cdom,$cnum);
 5280:         my $now = time;
 5281:         foreach my $student (keys(%{$classlist})) {
 5282:             my $match = 0;
 5283:             my $secmatch = 0;
 5284:             my $section = $$classlist{$student}[$idx{section}];
 5285:             if ($section eq '') {
 5286:                 $section = 'none';
 5287:             }
 5288:             if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
 5289:                 if (grep(/^all$/,@{$sections})) {
 5290:                     $secmatch = 1;
 5291:                 } elsif ($$classlist{$student}[$idx{section}] eq '') {
 5292:                     if (grep(/^none$/,@{$sections})) {
 5293:                         $secmatch = 1;
 5294:                     }
 5295:                 } else {  
 5296: 		    if (grep(/^\Q$section\E$/,@{$sections})) {
 5297: 		        $secmatch = 1;
 5298:                     }
 5299: 		}
 5300:                 if (!$secmatch) {
 5301:                     next;
 5302:                 }
 5303:             }
 5304:             push(@{$seclists{$student}},$section); 
 5305:             if (defined($$types{'active'})) {
 5306:                 if ($$classlist{$student}[$idx{status}] eq 'Active') {
 5307:                     push(@{$$users{st}{$student}},'active');
 5308:                     $match = 1;
 5309:                 }
 5310:             }
 5311:             if (defined($$types{'previous'})) {
 5312:                 if ($$classlist{$student}[$idx{end}] <= $now) {
 5313:                     push(@{$$users{st}{$student}},'previous');
 5314:                     $match = 1;
 5315:                 }
 5316:             }
 5317:             if (defined($$types{'future'})) {
 5318:                 if (($$classlist{$student}[$idx{start}] > $now) && ($$classlist{$student}[$idx{end}] > $now) || ($$classlist{$student}[$idx{end}] == 0) || ($$classlist{$student}[$idx{end}] eq '')) {
 5319:                     push(@{$$users{st}{$student}},'future');
 5320:                     $match = 1;
 5321:                 }
 5322:             }
 5323:             if ($match && ref($userdata) eq 'HASH') {
 5324:                 $$userdata{$student} = $$classlist{$student};
 5325:             }
 5326:         }
 5327:     }
 5328:     if ((@{$roles} > 1) || ((@{$roles} == 1) && ($$roles[0] ne "st"))) {
 5329:         my %coursepersonnel = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
 5330:         my $now = time;
 5331:         foreach my $person (sort(keys(%coursepersonnel))) {
 5332:             my $match = 0;
 5333:             my $secmatch = 0;
 5334:             my $status;
 5335:             my ($role,$user,$usec) = ($person =~ /^([^:]*):([^:]+:[^:]+):([^:]*)/);
 5336:             $user =~ s/:$//;
 5337:             my ($end,$start) = split(/:/,$coursepersonnel{$person});
 5338:             if ($end == -1 || $start == -1) {
 5339:                 next;
 5340:             }
 5341:             if (($role) && ((grep(/^\Q$role\E$/,@{$roles})) ||
 5342:                 (grep(/^cr$/,@{$roles}) && $role =~ /^cr\//))) {
 5343:                 my ($uname,$udom) = split(/:/,$user);
 5344:                 if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
 5345:                     if (grep(/^all$/,@{$sections})) {
 5346:                         $secmatch = 1;
 5347:                     } elsif ($usec eq '') {
 5348:                         if (grep(/^none$/,@{$sections})) {
 5349:                             $secmatch = 1;
 5350:                         }
 5351:                     } else {
 5352:                         if (grep(/^\Q$usec\E$/,@{$sections})) {
 5353:                             $secmatch = 1;
 5354:                         }
 5355:                     }
 5356:                     if (!$secmatch) {
 5357:                         next;
 5358:                     }
 5359:                 }
 5360:                 if ($usec eq '') {
 5361:                     $usec = 'none';
 5362:                 }
 5363:                 if ($uname ne '' && $udom ne '') {
 5364:                     if ($end > 0 && $end < $now) {
 5365:                         $status = 'previous';
 5366:                     } elsif ($start > $now) {
 5367:                         $status = 'future';
 5368:                     } else {
 5369:                         $status = 'active';
 5370:                     }
 5371:                     foreach my $type (keys(%{$types})) { 
 5372:                         if ($status eq $type) {
 5373:                             if (!grep(/^\Q$type\E$/,@{$$users{$role}{$user}})) {
 5374:                                 push(@{$$users{$role}{$user}},$type);
 5375:                             }
 5376:                             $match = 1;
 5377:                         }
 5378:                     }
 5379:                     if (($match) && (ref($userdata) eq 'HASH')) {
 5380:                         if (!exists($$userdata{$uname.':'.$udom})) {
 5381: 			    &get_user_info($udom,$uname,\%idx,$userdata);
 5382:                         }
 5383:                         if (!grep(/^\Q$usec\E$/,@{$seclists{$uname.':'.$udom}})) {
 5384:                             push(@{$seclists{$uname.':'.$udom}},$usec);
 5385:                         }
 5386:                     }
 5387:                 }
 5388:             }
 5389:         }
 5390:         if (grep(/^ow$/,@{$roles})) {
 5391:             if ((defined($cdom)) && (defined($cnum))) {
 5392:                 my %csettings = &Apache::lonnet::get('environment',['internal.courseowner'],$cdom,$cnum);
 5393:                 if ( defined($csettings{'internal.courseowner'}) ) {
 5394:                     my $owner = $csettings{'internal.courseowner'};
 5395:                     if ($owner !~ /^[^:]+:[^:]+$/) {
 5396:                         $owner = $owner.':'.$cdom;
 5397:                     }
 5398:                     @{$$users{'ow'}{$owner}} = 'any';
 5399:                     if (defined($userdata) && 
 5400: 			!exists($$userdata{$owner.':'.$cdom})) {
 5401: 			&get_user_info($cdom,$owner,\%idx,$userdata);
 5402:                         if (!grep(/^none$/,@{$seclists{$owner.':'.$cdom}})) {
 5403:                             push(@{$seclists{$owner.':'.$cdom}},'none');
 5404:                         }
 5405: 		    }
 5406:                 }
 5407:             }
 5408:         }
 5409:         foreach my $user (keys(%seclists)) {
 5410:             @{$seclists{$user}} = (sort {$a <=> $b} @{$seclists{$user}});
 5411:             $$userdata{$user}[$idx{section}] = join(',',@{$seclists{$user}});
 5412:         }
 5413:     }
 5414:     return;
 5415: }
 5416: 
 5417: sub get_user_info {
 5418:     my ($udom,$uname,$idx,$userdata) = @_;
 5419:     $$userdata{$uname.':'.$udom}[$$idx{fullname}] = 
 5420: 	&plainname($uname,$udom,'lastname');
 5421:     $$userdata{$uname.':'.$udom}[$$idx{uname}] = $uname;
 5422:     $$userdata{$uname.':'.$udom}[$$idx{udom}] = $udom;
 5423:     return;
 5424: }
 5425: 
 5426: ###############################################
 5427: 
 5428: =pod
 5429: 
 5430: =item * &get_user_quota()
 5431: 
 5432: Retrieves quota assigned for storage of portfolio files for a user  
 5433: 
 5434: Incoming parameters:
 5435: 1. user's username
 5436: 2. user's domain
 5437: 
 5438: Returns:
 5439: 1. Disk quota (in Mb) assigned to student.
 5440: 2. (Optional) Type of setting: custom or default
 5441:    (individually assigned or default for user's 
 5442:    institutional status).
 5443: 3. (Optional) - User's institutional status (e.g., faculty, staff
 5444:    or student - types as defined in localenroll::inst_usertypes 
 5445:    for user's domain, which determines default quota for user.
 5446: 4. (Optional) - Default quota which would apply to the user.
 5447: 
 5448: If a value has been stored in the user's environment, 
 5449: it will return that, otherwise it returns the maximal default
 5450: defined for the user's instituional status(es) in the domain.
 5451: 
 5452: =cut
 5453: 
 5454: ###############################################
 5455: 
 5456: 
 5457: sub get_user_quota {
 5458:     my ($uname,$udom) = @_;
 5459:     my ($quota,$quotatype,$settingstatus,$defquota);
 5460:     if (!defined($udom)) {
 5461:         $udom = $env{'user.domain'};
 5462:     }
 5463:     if (!defined($uname)) {
 5464:         $uname = $env{'user.name'};
 5465:     }
 5466:     if (($udom eq '' || $uname eq '') ||
 5467:         ($udom eq 'public') && ($uname eq 'public')) {
 5468:         $quota = 0;
 5469:         $quotatype = 'default';
 5470:         $defquota = 0; 
 5471:     } else {
 5472:         my $inststatus;
 5473:         if ($udom eq $env{'user.domain'} && $uname eq $env{'user.name'}) {
 5474:             $quota = $env{'environment.portfolioquota'};
 5475:             $inststatus = $env{'environment.inststatus'};
 5476:         } else {
 5477:             my %userenv = 
 5478:                 &Apache::lonnet::get('environment',['portfolioquota',
 5479:                                      'inststatus'],$udom,$uname);
 5480:             my ($tmp) = keys(%userenv);
 5481:             if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
 5482:                 $quota = $userenv{'portfolioquota'};
 5483:                 $inststatus = $userenv{'inststatus'};
 5484:             } else {
 5485:                 undef(%userenv);
 5486:             }
 5487:         }
 5488:         ($defquota,$settingstatus) = &default_quota($udom,$inststatus);
 5489:         if ($quota eq '') {
 5490:             $quota = $defquota;
 5491:             $quotatype = 'default';
 5492:         } else {
 5493:             $quotatype = 'custom';
 5494:         }
 5495:     }
 5496:     if (wantarray) {
 5497:         return ($quota,$quotatype,$settingstatus,$defquota);
 5498:     } else {
 5499:         return $quota;
 5500:     }
 5501: }
 5502: 
 5503: ###############################################
 5504: 
 5505: =pod
 5506: 
 5507: =item * &default_quota()
 5508: 
 5509: Retrieves default quota assigned for storage of user portfolio files,
 5510: given an (optional) user's institutional status.
 5511: 
 5512: Incoming parameters:
 5513: 1. domain
 5514: 2. (Optional) institutional status(es).  This is a : separated list of 
 5515:    status types (e.g., faculty, staff, student etc.)
 5516:    which apply to the user for whom the default is being retrieved.
 5517:    If the institutional status string in undefined, the domain
 5518:    default quota will be returned. 
 5519: 
 5520: Returns:
 5521: 1. Default disk quota (in Mb) for user portfolios in the domain.
 5522: 2. (Optional) institutional type which determined the value of the
 5523:    default quota.
 5524: 
 5525: If a value has been stored in the domain's configuration db,
 5526: it will return that, otherwise it returns 20 (for backwards 
 5527: compatibility with domains which have not set up a configuration
 5528: db file; the original statically defined portfolio quota was 20 Mb). 
 5529: 
 5530: If the user's status includes multiple types (e.g., staff and student),
 5531: the largest default quota which applies to the user determines the
 5532: default quota returned.
 5533: 
 5534: =cut
 5535: 
 5536: ###############################################
 5537: 
 5538: 
 5539: sub default_quota {
 5540:     my ($udom,$inststatus) = @_;
 5541:     my ($defquota,$settingstatus);
 5542:     my %quotahash = &Apache::lonnet::get_dom('configuration',
 5543:                                             ['quota'],$udom);
 5544:     if (ref($quotahash{'quota'}) eq 'HASH') {
 5545:         if ($inststatus ne '') {
 5546:             my @statuses = split(/:/,$inststatus);
 5547:             foreach my $item (@statuses) {
 5548:                 if ($quotahash{'quota'}{$item} ne '') {
 5549:                     if ($defquota eq '') {
 5550:                         $defquota = $quotahash{'quota'}{$item};
 5551:                         $settingstatus = $item;
 5552:                     } elsif ($quotahash{'quota'}{$item} > $defquota) {
 5553:                         $defquota = $quotahash{'quota'}{$item};
 5554:                         $settingstatus = $item;
 5555:                     }
 5556:                 }
 5557:             }
 5558:         }
 5559:         if ($defquota eq '') {
 5560:             $defquota = $quotahash{'quota'}{'default'};
 5561:             $settingstatus = 'default';
 5562:         }
 5563:     } else {
 5564:         $settingstatus = 'default';
 5565:         $defquota = 20;
 5566:     }
 5567:     if (wantarray) {
 5568:         return ($defquota,$settingstatus);
 5569:     } else {
 5570:         return $defquota;
 5571:     }
 5572: }
 5573: 
 5574: sub get_secgrprole_info {
 5575:     my ($cdom,$cnum,$needroles,$type)  = @_;
 5576:     my %sections_count = &get_sections($cdom,$cnum);
 5577:     my @sections =  (sort {$a <=> $b} keys(%sections_count));
 5578:     my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum);
 5579:     my @groups = sort(keys(%curr_groups));
 5580:     my $allroles = [];
 5581:     my $rolehash;
 5582:     my $accesshash = {
 5583:                      active => 'Currently has access',
 5584:                      future => 'Will have future access',
 5585:                      previous => 'Previously had access',
 5586:                   };
 5587:     if ($needroles) {
 5588:         $rolehash = {'all' => 'all'};
 5589:         my %user_roles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
 5590: 	if (&Apache::lonnet::error(%user_roles)) {
 5591: 	    undef(%user_roles);
 5592: 	}
 5593:         foreach my $item (keys(%user_roles)) {
 5594:             my ($role)=split(/\:/,$item,2);
 5595:             if ($role eq 'cr') { next; }
 5596:             if ($role =~ /^cr/) {
 5597:                 $$rolehash{$role} = (split('/',$role))[3];
 5598:             } else {
 5599:                 $$rolehash{$role} = &Apache::lonnet::plaintext($role,$type);
 5600:             }
 5601:         }
 5602:         foreach my $key (sort(keys(%{$rolehash}))) {
 5603:             push(@{$allroles},$key);
 5604:         }
 5605:         push (@{$allroles},'st');
 5606:         $$rolehash{'st'} = &Apache::lonnet::plaintext('st',$type);
 5607:     }
 5608:     return (\@sections,\@groups,$allroles,$rolehash,$accesshash);
 5609: }
 5610: 
 5611: sub user_picker {
 5612:     my ($dom,$srch,$forcenewuser) = @_;
 5613:     my $currdom = $dom;
 5614:     my %curr_selected = (
 5615:                         srchin => 'dom',
 5616:                         srchby => 'uname',
 5617:                       );
 5618:     my $srchterm;
 5619:     if (ref($srch) eq 'HASH') {
 5620:         if ($srch->{'srchby'} ne '') {
 5621:             $curr_selected{'srchby'} = $srch->{'srchby'};
 5622:         }
 5623:         if ($srch->{'srchin'} ne '') {
 5624:             $curr_selected{'srchin'} = $srch->{'srchin'};
 5625:         }
 5626:         if ($srch->{'srchtype'} ne '') {
 5627:             $curr_selected{'srchtype'} = $srch->{'srchtype'};
 5628:         }
 5629:         if ($srch->{'srchdomain'} ne '') {
 5630:             $currdom = $srch->{'srchdomain'};
 5631:         }
 5632:         $srchterm = $srch->{'srchterm'};
 5633:     }
 5634:     my %lt=&Apache::lonlocal::texthash(
 5635:                     'doma'      => 'Domain/institution to search',
 5636:                     'uname'     => 'username',
 5637:                     'lastname'  => 'last name',
 5638:                     'lastfirst' => 'last name, first name',
 5639:                     'crs'       => 'in this course',
 5640:                     'dom'       => 'in this domain', 
 5641:                     'alc'       => 'all LON-CAPA',
 5642:                     'instd'     => 'in institutional directory',
 5643:                     'exact'     => 'is',
 5644:                     'contains'  => 'contains',
 5645:                                        );
 5646:     my $domform = &select_dom_form($currdom,'srchdomain',1,1);
 5647:     my $srchinsel = ' <select name="srchin">';
 5648: 
 5649:     my @srchins = ('crs','dom','alc','instd');
 5650: 
 5651:     foreach my $option (@srchins) {
 5652:         # FIXME 'alc' option unavailable until 
 5653:         #       loncreateuser::print_user_query_page()
 5654:         #       has been completed.
 5655:         next if ($option eq 'alc');
 5656:         next if ($option eq 'crs' && !$env{'request.course.id'});
 5657:         if ($curr_selected{'srchin'} eq $option) {
 5658:             $srchinsel .= ' 
 5659:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
 5660:         } else {
 5661:             $srchinsel .= '
 5662:    <option value="'.$option.'">'.$lt{$option}.'</option>';
 5663:         }
 5664:     }
 5665:     $srchinsel .= "\n  </select>\n";
 5666: 
 5667:     my $srchbysel =  ' <select name="srchby">';
 5668:     foreach my $option ('uname','lastname','lastfirst') {
 5669:         if ($curr_selected{'srchby'} eq $option) {
 5670:             $srchbysel .= '
 5671:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
 5672:         } else {
 5673:             $srchbysel .= '
 5674:    <option value="'.$option.'">'.$lt{$option}.'</option>';
 5675:          }
 5676:     }
 5677:     $srchbysel .= "\n  </select>\n";
 5678: 
 5679:     my $srchtypesel = ' <select name="srchtype">';
 5680:     foreach my $option ('exact','contains') {
 5681:         if ($curr_selected{'srchtype'} eq $option) {
 5682:             $srchtypesel .= '
 5683:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
 5684:         } else {
 5685:             $srchtypesel .= '
 5686:    <option value="'.$option.'">'.$lt{$option}.'</option>';
 5687:         }
 5688:     }
 5689:     $srchtypesel .= "\n  </select>\n";
 5690: 
 5691:     my ($newuserscript,$new_user_create);
 5692: 
 5693:     if ($forcenewuser) {
 5694: 	$new_user_create = '<p> <input type="submit" name="forcenew" value="'.&HTML::Entities::encode(&mt('Make new user "[_1]"',$srchterm),'<>&"').'" onclick="javascript:setSearch(\'1\');" /> </p>';
 5695:         $newuserscript = <<"ENDSCRIPT";
 5696: 
 5697: function setSearch(createnew) {
 5698:     if (createnew == 1) {
 5699:         for (var i=0; i<document.crtuser.srchby.length; i++) {
 5700:             if (document.crtuser.srchby.options[i].value == 'uname') {
 5701:                 document.crtuser.srchby.selectedIndex = i;
 5702:             }
 5703:         }
 5704:         for (var i=0; i<document.crtuser.srchin.length; i++) {
 5705:             if ( document.crtuser.srchin.options[i].value == 'dom') {
 5706: 		document.crtuser.srchin.selectedIndex = i;
 5707:             }
 5708:         }
 5709:         for (var i=0; i<document.crtuser.srchtype.length; i++) {
 5710:             if (document.crtuser.srchtype.options[i].value == 'exact') {
 5711:                 document.crtuser.srchtype.selectedIndex = i;
 5712:             }
 5713:         }
 5714:         for (var i=0; i<document.crtuser.srchdomain.length; i++) {
 5715:             if (document.crtuser.srchdomain.options[i].value == '$env{'request.role.domain'}') {
 5716:                 document.crtuser.srchdomain.selectedIndex = i;
 5717:             }
 5718:         }
 5719:     }
 5720: }
 5721: ENDSCRIPT
 5722: 
 5723:     }
 5724: 
 5725:     my $output = <<"END_BLOCK";
 5726: <script type="text/javascript">
 5727: function validateEntry() {
 5728: 
 5729:     var checkok = 1;
 5730:     var srchin;
 5731:     for (var i=0; i<document.crtuser.srchin.length; i++) {
 5732: 	if ( document.crtuser.srchin[i].checked ) {
 5733: 	    srchin = document.crtuser.srchin[i].value;
 5734: 	}
 5735:     }
 5736: 
 5737:     var srchtype = document.crtuser.srchtype.options[document.crtuser.srchtype.selectedIndex].value;
 5738:     var srchby = document.crtuser.srchby.options[document.crtuser.srchby.selectedIndex].value;
 5739:     var srchdomain = document.crtuser.srchdomain.options[document.crtuser.srchdomain.selectedIndex].value;
 5740:     var srchterm =  document.crtuser.srchterm.value;
 5741:     var srchin = document.crtuser.srchin.options[document.crtuser.srchin.selectedIndex].value;
 5742:     var msg = "";
 5743: 
 5744:     if (srchterm == "") {
 5745:         checkok = 0;
 5746:         msg += "You must include some text to search for.\\n";
 5747:     }
 5748: 
 5749:     if (srchtype== 'contains') {
 5750:         if (srchterm.length < 3) {
 5751:             checkok = 0;
 5752:             msg += "The text you are searching for must contain at least three characters when using a 'contains' type search.\\n";
 5753:         }
 5754:     }
 5755:     if (srchin == 'instd') {
 5756:         if (srchdomain == '') {
 5757:             checkok = 0;
 5758:             msg += "You must choose a domain when using an institutional directory search.\\n";
 5759:         }
 5760:     }
 5761:     if (srchin == 'dom') {
 5762:         if (srchdomain == '') {
 5763:             checkok = 0;
 5764:             msg += "You must choose a domain when using a domain search.\\n";
 5765:         }
 5766:     }
 5767:     if (srchby == 'lastfirst') {
 5768:         if (srchterm.indexOf(",") == -1) {
 5769:             checkok = 0;
 5770:             msg += "When using searching by last,first you must include a comma as separator between last name and first name.\\n";
 5771:         }
 5772:         if (srchterm.indexOf(",") == srchterm.length -1) {
 5773:             checkok = 0;
 5774:             msg += "When searching by last,first you must include at least one character in the first name.\\n";
 5775:         }
 5776:     }
 5777:     if (checkok == 0) {
 5778:         alert("The following need to be corrected before the search can be run:\\n"+msg);
 5779:         return;
 5780:     }
 5781:     if (checkok == 1) {
 5782:         document.crtuser.submit();
 5783:     }
 5784: }
 5785: 
 5786: $newuserscript
 5787: 
 5788: </script>
 5789: 
 5790: $new_user_create
 5791: 
 5792: <table>
 5793:  <tr>
 5794:   <td>$srchbysel
 5795:       $srchtypesel 
 5796:       <input type="text" size="15" name="srchterm" value="$srchterm" />
 5797:       $srchinsel 
 5798:   </td>
 5799:  </tr>
 5800:  <tr>
 5801:   <td>$lt{'doma'}: $domform</td>
 5802:   </td>
 5803:  </tr>
 5804: </table>
 5805: <br />
 5806: END_BLOCK
 5807: 
 5808:     return $output;
 5809: }
 5810: 
 5811: 
 5812: 
 5813: =pod
 5814: 
 5815: =back
 5816: 
 5817: =head1 HTTP Helpers
 5818: 
 5819: =over 4
 5820: 
 5821: =item * get_unprocessed_cgi($query,$possible_names)
 5822: 
 5823: Modify the %env hash to contain unprocessed CGI form parameters held in
 5824: $query.  The parameters listed in $possible_names (an array reference),
 5825: will be set in $env{'form.name'} if they do not already exist.
 5826: 
 5827: Typically called with $ENV{'QUERY_STRING'} as the first parameter.  
 5828: $possible_names is an ref to an array of form element names.  As an example:
 5829: get_unprocessed_cgi($ENV{'QUERY_STRING'},['uname','udom']);
 5830: will result in $env{'form.uname'} and $env{'form.udom'} being set.
 5831: 
 5832: =cut
 5833: 
 5834: sub get_unprocessed_cgi {
 5835:   my ($query,$possible_names)= @_;
 5836:   # $Apache::lonxml::debug=1;
 5837:   foreach my $pair (split(/&/,$query)) {
 5838:     my ($name, $value) = split(/=/,$pair);
 5839:     $name = &unescape($name);
 5840:     if (!defined($possible_names) || (grep {$_ eq $name} @$possible_names)) {
 5841:       $value =~ tr/+/ /;
 5842:       $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
 5843:       unless (defined($env{'form.'.$name})) { &add_to_env('form.'.$name,$value) };
 5844:     }
 5845:   }
 5846: }
 5847: 
 5848: =pod
 5849: 
 5850: =item * cacheheader() 
 5851: 
 5852: returns cache-controlling header code
 5853: 
 5854: =cut
 5855: 
 5856: sub cacheheader {
 5857:     unless ($env{'request.method'} eq 'GET') { return ''; }
 5858:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime);
 5859:     my $output .='<meta HTTP-EQUIV="Expires" CONTENT="'.$date.'" />
 5860:                 <meta HTTP-EQUIV="Cache-control" CONTENT="no-cache" />
 5861:                 <meta HTTP-EQUIV="Pragma" CONTENT="no-cache" />';
 5862:     return $output;
 5863: }
 5864: 
 5865: =pod
 5866: 
 5867: =item * no_cache($r) 
 5868: 
 5869: specifies header code to not have cache
 5870: 
 5871: =cut
 5872: 
 5873: sub no_cache {
 5874:     my ($r) = @_;
 5875:     if ($ENV{'REQUEST_METHOD'} ne 'GET' &&
 5876: 	$env{'request.method'} ne 'GET') { return ''; }
 5877:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime(time));
 5878:     $r->no_cache(1);
 5879:     $r->header_out("Expires" => $date);
 5880:     $r->header_out("Pragma" => "no-cache");
 5881: }
 5882: 
 5883: sub content_type {
 5884:     my ($r,$type,$charset) = @_;
 5885:     if ($r) {
 5886: 	#  Note that printout.pl calls this with undef for $r.
 5887: 	&no_cache($r);
 5888:     }
 5889:     if ($env{'browser.mathml'} && $type eq 'text/html') { $type='text/xml'; }
 5890:     unless ($charset) {
 5891: 	$charset=&Apache::lonlocal::current_encoding;
 5892:     }
 5893:     if ($charset) { $type.='; charset='.$charset; }
 5894:     if ($r) {
 5895: 	$r->content_type($type);
 5896:     } else {
 5897: 	print("Content-type: $type\n\n");
 5898:     }
 5899: }
 5900: 
 5901: =pod
 5902: 
 5903: =item * add_to_env($name,$value) 
 5904: 
 5905: adds $name to the %env hash with value
 5906: $value, if $name already exists, the entry is converted to an array
 5907: reference and $value is added to the array.
 5908: 
 5909: =cut
 5910: 
 5911: sub add_to_env {
 5912:   my ($name,$value)=@_;
 5913:   if (defined($env{$name})) {
 5914:     if (ref($env{$name})) {
 5915:       #already have multiple values
 5916:       push(@{ $env{$name} },$value);
 5917:     } else {
 5918:       #first time seeing multiple values, convert hash entry to an arrayref
 5919:       my $first=$env{$name};
 5920:       undef($env{$name});
 5921:       push(@{ $env{$name} },$first,$value);
 5922:     }
 5923:   } else {
 5924:     $env{$name}=$value;
 5925:   }
 5926: }
 5927: 
 5928: =pod
 5929: 
 5930: =item * get_env_multiple($name) 
 5931: 
 5932: gets $name from the %env hash, it seemlessly handles the cases where multiple
 5933: values may be defined and end up as an array ref.
 5934: 
 5935: returns an array of values
 5936: 
 5937: =cut
 5938: 
 5939: sub get_env_multiple {
 5940:     my ($name) = @_;
 5941:     my @values;
 5942:     if (defined($env{$name})) {
 5943:         # exists is it an array
 5944:         if (ref($env{$name})) {
 5945:             @values=@{ $env{$name} };
 5946:         } else {
 5947:             $values[0]=$env{$name};
 5948:         }
 5949:     }
 5950:     return(@values);
 5951: }
 5952: 
 5953: 
 5954: =pod
 5955: 
 5956: =back
 5957: 
 5958: =head1 CSV Upload/Handling functions
 5959: 
 5960: =over 4
 5961: 
 5962: =item * upfile_store($r)
 5963: 
 5964: Store uploaded file, $r should be the HTTP Request object,
 5965: needs $env{'form.upfile'}
 5966: returns $datatoken to be put into hidden field
 5967: 
 5968: =cut
 5969: 
 5970: sub upfile_store {
 5971:     my $r=shift;
 5972:     $env{'form.upfile'}=~s/\r/\n/gs;
 5973:     $env{'form.upfile'}=~s/\f/\n/gs;
 5974:     $env{'form.upfile'}=~s/\n+/\n/gs;
 5975:     $env{'form.upfile'}=~s/\n+$//gs;
 5976: 
 5977:     my $datatoken=$env{'user.name'}.'_'.$env{'user.domain'}.
 5978: 	'_enroll_'.$env{'request.course.id'}.'_'.time.'_'.$$;
 5979:     {
 5980:         my $datafile = $r->dir_config('lonDaemons').
 5981:                            '/tmp/'.$datatoken.'.tmp';
 5982:         if ( open(my $fh,">$datafile") ) {
 5983:             print $fh $env{'form.upfile'};
 5984:             close($fh);
 5985:         }
 5986:     }
 5987:     return $datatoken;
 5988: }
 5989: 
 5990: =pod
 5991: 
 5992: =item * load_tmp_file($r)
 5993: 
 5994: Load uploaded file from tmp, $r should be the HTTP Request object,
 5995: needs $env{'form.datatoken'},
 5996: sets $env{'form.upfile'} to the contents of the file
 5997: 
 5998: =cut
 5999: 
 6000: sub load_tmp_file {
 6001:     my $r=shift;
 6002:     my @studentdata=();
 6003:     {
 6004:         my $studentfile = $r->dir_config('lonDaemons').
 6005:                               '/tmp/'.$env{'form.datatoken'}.'.tmp';
 6006:         if ( open(my $fh,"<$studentfile") ) {
 6007:             @studentdata=<$fh>;
 6008:             close($fh);
 6009:         }
 6010:     }
 6011:     $env{'form.upfile'}=join('',@studentdata);
 6012: }
 6013: 
 6014: =pod
 6015: 
 6016: =item * upfile_record_sep()
 6017: 
 6018: Separate uploaded file into records
 6019: returns array of records,
 6020: needs $env{'form.upfile'} and $env{'form.upfiletype'}
 6021: 
 6022: =cut
 6023: 
 6024: sub upfile_record_sep {
 6025:     if ($env{'form.upfiletype'} eq 'xml') {
 6026:     } else {
 6027: 	my @records;
 6028: 	foreach my $line (split(/\n/,$env{'form.upfile'})) {
 6029: 	    if ($line=~/^\s*$/) { next; }
 6030: 	    push(@records,$line);
 6031: 	}
 6032: 	return @records;
 6033:     }
 6034: }
 6035: 
 6036: =pod
 6037: 
 6038: =item * record_sep($record)
 6039: 
 6040: Separate a record into fields $record should be an item from the upfile_record_sep(), needs $env{'form.upfiletype'}
 6041: 
 6042: =cut
 6043: 
 6044: sub takeleft {
 6045:     my $index=shift;
 6046:     return substr('0000'.$index,-4,4);
 6047: }
 6048: 
 6049: sub record_sep {
 6050:     my $record=shift;
 6051:     my %components=();
 6052:     if ($env{'form.upfiletype'} eq 'xml') {
 6053:     } elsif ($env{'form.upfiletype'} eq 'space') {
 6054:         my $i=0;
 6055:         foreach my $field (split(/\s+/,$record)) {
 6056:             $field=~s/^(\"|\')//;
 6057:             $field=~s/(\"|\')$//;
 6058:             $components{&takeleft($i)}=$field;
 6059:             $i++;
 6060:         }
 6061:     } elsif ($env{'form.upfiletype'} eq 'tab') {
 6062:         my $i=0;
 6063:         foreach my $field (split(/\t/,$record)) {
 6064:             $field=~s/^(\"|\')//;
 6065:             $field=~s/(\"|\')$//;
 6066:             $components{&takeleft($i)}=$field;
 6067:             $i++;
 6068:         }
 6069:     } else {
 6070:         my $separator=',';
 6071:         if ($env{'form.upfiletype'} eq 'semisv') {
 6072:             $separator=';';
 6073:         }
 6074:         my $i=0;
 6075: # the character we are looking for to indicate the end of a quote or a record 
 6076:         my $looking_for=$separator;
 6077: # do not add the characters to the fields
 6078:         my $ignore=0;
 6079: # we just encountered a separator (or the beginning of the record)
 6080:         my $just_found_separator=1;
 6081: # store the field we are working on here
 6082:         my $field='';
 6083: # work our way through all characters in record
 6084:         foreach my $character ($record=~/(.)/g) {
 6085:             if ($character eq $looking_for) {
 6086:                if ($character ne $separator) {
 6087: # Found the end of a quote, again looking for separator
 6088:                   $looking_for=$separator;
 6089:                   $ignore=1;
 6090:                } else {
 6091: # Found a separator, store away what we got
 6092:                   $components{&takeleft($i)}=$field;
 6093: 	          $i++;
 6094:                   $just_found_separator=1;
 6095:                   $ignore=0;
 6096:                   $field='';
 6097:                }
 6098:                next;
 6099:             }
 6100: # single or double quotation marks after a separator indicate beginning of a quote
 6101: # we are now looking for the end of the quote and need to ignore separators
 6102:             if ((($character eq '"') || ($character eq "'")) && ($just_found_separator))  {
 6103:                $looking_for=$character;
 6104:                next;
 6105:             }
 6106: # ignore would be true after we reached the end of a quote
 6107:             if ($ignore) { next; }
 6108:             if (($just_found_separator) && ($character=~/\s/)) { next; }
 6109:             $field.=$character;
 6110:             $just_found_separator=0; 
 6111:         }
 6112: # catch the very last entry, since we never encountered the separator
 6113:         $components{&takeleft($i)}=$field;
 6114:     }
 6115:     return %components;
 6116: }
 6117: 
 6118: ######################################################
 6119: ######################################################
 6120: 
 6121: =pod
 6122: 
 6123: =item * upfile_select_html()
 6124: 
 6125: Return HTML code to select a file from the users machine and specify 
 6126: the file type.
 6127: 
 6128: =cut
 6129: 
 6130: ######################################################
 6131: ######################################################
 6132: sub upfile_select_html {
 6133:     my %Types = (
 6134:                  csv   => &mt('CSV (comma separated values, spreadsheet)'),
 6135:                  semisv => &mt('Semicolon separated values'),
 6136:                  space => &mt('Space separated'),
 6137:                  tab   => &mt('Tabulator separated'),
 6138: #                 xml   => &mt('HTML/XML'),
 6139:                  );
 6140:     my $Str = '<input type="file" name="upfile" size="50" />'.
 6141:         '<br />Type: <select name="upfiletype">';
 6142:     foreach my $type (sort(keys(%Types))) {
 6143:         $Str .= '<option value="'.$type.'" >'.$Types{$type}."</option>\n";
 6144:     }
 6145:     $Str .= "</select>\n";
 6146:     return $Str;
 6147: }
 6148: 
 6149: sub get_samples {
 6150:     my ($records,$toget) = @_;
 6151:     my @samples=({});
 6152:     my $got=0;
 6153:     foreach my $rec (@$records) {
 6154: 	my %temp = &record_sep($rec);
 6155: 	if (! grep(/\S/, values(%temp))) { next; }
 6156: 	if (%temp) {
 6157: 	    $samples[$got]=\%temp;
 6158: 	    $got++;
 6159: 	    if ($got == $toget) { last; }
 6160: 	}
 6161:     }
 6162:     return \@samples;
 6163: }
 6164: 
 6165: ######################################################
 6166: ######################################################
 6167: 
 6168: =pod
 6169: 
 6170: =item * csv_print_samples($r,$records)
 6171: 
 6172: Prints a table of sample values from each column uploaded $r is an
 6173: Apache Request ref, $records is an arrayref from
 6174: &Apache::loncommon::upfile_record_sep
 6175: 
 6176: =cut
 6177: 
 6178: ######################################################
 6179: ######################################################
 6180: sub csv_print_samples {
 6181:     my ($r,$records) = @_;
 6182:     my $samples = &get_samples($records,3);
 6183: 
 6184:     $r->print(&mt('Samples').'<br /><table border="2"><tr>');
 6185:     foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) { 
 6186:         $r->print('<th>'.&mt('Column&nbsp;[_1]',($sample+1)).'</th>'); }
 6187:     $r->print('</tr>');
 6188:     foreach my $hash (@$samples) {
 6189: 	$r->print('<tr>');
 6190: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
 6191: 	    $r->print('<td>');
 6192: 	    if (defined($$hash{$sample})) { $r->print($$hash{$sample}); }
 6193: 	    $r->print('</td>');
 6194: 	}
 6195: 	$r->print('</tr>');
 6196:     }
 6197:     $r->print('</tr></table><br />'."\n");
 6198: }
 6199: 
 6200: ######################################################
 6201: ######################################################
 6202: 
 6203: =pod
 6204: 
 6205: =item * csv_print_select_table($r,$records,$d)
 6206: 
 6207: Prints a table to create associations between values and table columns.
 6208: 
 6209: $r is an Apache Request ref,
 6210: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
 6211: $d is an array of 2 element arrays (internal name, displayed name,defaultcol)
 6212: 
 6213: =cut
 6214: 
 6215: ######################################################
 6216: ######################################################
 6217: sub csv_print_select_table {
 6218:     my ($r,$records,$d) = @_;
 6219:     my $i=0;
 6220:     my $samples = &get_samples($records,1);
 6221:     $r->print(&mt('Associate columns with student attributes.')."\n".
 6222: 	     '<table border="2"><tr>'.
 6223:               '<th>'.&mt('Attribute').'</th>'.
 6224:               '<th>'.&mt('Column').'</th></tr>'."\n");
 6225:     foreach my $array_ref (@$d) {
 6226: 	my ($value,$display,$defaultcol)=@{ $array_ref };
 6227: 	$r->print('<tr><td>'.$display.'</td>');
 6228: 
 6229: 	$r->print('<td><select name=f'.$i.
 6230: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
 6231: 	$r->print('<option value="none"></option>');
 6232: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
 6233: 	    $r->print('<option value="'.$sample.'"'.
 6234:                       ($sample eq $defaultcol ? ' selected="selected" ' : '').
 6235:                       '>Column '.($sample+1).'</option>');
 6236: 	}
 6237: 	$r->print('</select></td></tr>'."\n");
 6238: 	$i++;
 6239:     }
 6240:     $i--;
 6241:     return $i;
 6242: }
 6243: 
 6244: ######################################################
 6245: ######################################################
 6246: 
 6247: =pod
 6248: 
 6249: =item * csv_samples_select_table($r,$records,$d)
 6250: 
 6251: Prints a table of sample values from the upload and can make associate samples to internal names.
 6252: 
 6253: $r is an Apache Request ref,
 6254: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
 6255: $d is an array of 2 element arrays (internal name, displayed name)
 6256: 
 6257: =cut
 6258: 
 6259: ######################################################
 6260: ######################################################
 6261: sub csv_samples_select_table {
 6262:     my ($r,$records,$d) = @_;
 6263:     my $i=0;
 6264:     #
 6265:     my $samples = &get_samples($records,3);
 6266:     $r->print('<table border=2><tr><th>'.
 6267:               &mt('Field').'</th><th>'.&mt('Samples').'</th></tr>');
 6268: 
 6269:     foreach my $key (sort(keys(%{ $samples->[0] }))) {
 6270: 	$r->print('<tr><td><select name="f'.$i.'"'.
 6271: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
 6272: 	foreach my $option (@$d) {
 6273: 	    my ($value,$display,$defaultcol)=@{ $option };
 6274: 	    $r->print('<option value="'.$value.'"'.
 6275:                       ($i eq $defaultcol ? ' selected="selected" ':'').'>'.
 6276:                       $display.'</option>');
 6277: 	}
 6278: 	$r->print('</select></td><td>');
 6279: 	foreach my $line (0..2) {
 6280: 	    if (defined($samples->[$line]{$key})) { 
 6281: 		$r->print($samples->[$line]{$key}."<br />\n"); 
 6282: 	    }
 6283: 	}
 6284: 	$r->print('</td></tr>');
 6285: 	$i++;
 6286:     }
 6287:     $i--;
 6288:     return($i);
 6289: }
 6290: 
 6291: ######################################################
 6292: ######################################################
 6293: 
 6294: =pod
 6295: 
 6296: =item clean_excel_name($name)
 6297: 
 6298: Returns a replacement for $name which does not contain any illegal characters.
 6299: 
 6300: =cut
 6301: 
 6302: ######################################################
 6303: ######################################################
 6304: sub clean_excel_name {
 6305:     my ($name) = @_;
 6306:     $name =~ s/[:\*\?\/\\]//g;
 6307:     if (length($name) > 31) {
 6308:         $name = substr($name,0,31);
 6309:     }
 6310:     return $name;
 6311: }
 6312: 
 6313: =pod
 6314: 
 6315: =item * check_if_partid_hidden($id,$symb,$udom,$uname)
 6316: 
 6317: Returns either 1 or undef
 6318: 
 6319: 1 if the part is to be hidden, undef if it is to be shown
 6320: 
 6321: Arguments are:
 6322: 
 6323: $id the id of the part to be checked
 6324: $symb, optional the symb of the resource to check
 6325: $udom, optional the domain of the user to check for
 6326: $uname, optional the username of the user to check for
 6327: 
 6328: =cut
 6329: 
 6330: sub check_if_partid_hidden {
 6331:     my ($id,$symb,$udom,$uname) = @_;
 6332:     my $hiddenparts=&Apache::lonnet::EXT('resource.0.hiddenparts',
 6333: 					 $symb,$udom,$uname);
 6334:     my $truth=1;
 6335:     #if the string starts with !, then the list is the list to show not hide
 6336:     if ($hiddenparts=~s/^\s*!//) { $truth=undef; }
 6337:     my @hiddenlist=split(/,/,$hiddenparts);
 6338:     foreach my $checkid (@hiddenlist) {
 6339: 	if ($checkid =~ /^\s*\Q$id\E\s*$/) { return $truth; }
 6340:     }
 6341:     return !$truth;
 6342: }
 6343: 
 6344: 
 6345: ############################################################
 6346: ############################################################
 6347: 
 6348: =pod
 6349: 
 6350: =back 
 6351: 
 6352: =head1 cgi-bin script and graphing routines
 6353: 
 6354: =over 4
 6355: 
 6356: =item get_cgi_id
 6357: 
 6358: Inputs: none
 6359: 
 6360: Returns an id which can be used to pass environment variables
 6361: to various cgi-bin scripts.  These environment variables will
 6362: be removed from the users environment after a given time by
 6363: the routine &Apache::lonnet::transfer_profile_to_env.
 6364: 
 6365: =cut
 6366: 
 6367: ############################################################
 6368: ############################################################
 6369: my $uniq=0;
 6370: sub get_cgi_id {
 6371:     $uniq=($uniq+1)%100000;
 6372:     return (time.'_'.$$.'_'.$uniq);
 6373: }
 6374: 
 6375: ############################################################
 6376: ############################################################
 6377: 
 6378: =pod
 6379: 
 6380: =item DrawBarGraph
 6381: 
 6382: Facilitates the plotting of data in a (stacked) bar graph.
 6383: Puts plot definition data into the users environment in order for 
 6384: graph.png to plot it.  Returns an <img> tag for the plot.
 6385: The bars on the plot are labeled '1','2',...,'n'.
 6386: 
 6387: Inputs:
 6388: 
 6389: =over 4
 6390: 
 6391: =item $Title: string, the title of the plot
 6392: 
 6393: =item $xlabel: string, text describing the X-axis of the plot
 6394: 
 6395: =item $ylabel: string, text describing the Y-axis of the plot
 6396: 
 6397: =item $Max: scalar, the maximum Y value to use in the plot
 6398: If $Max is < any data point, the graph will not be rendered.
 6399: 
 6400: =item $colors: array ref holding the colors to be used for the data sets when
 6401: they are plotted.  If undefined, default values will be used.
 6402: 
 6403: =item $labels: array ref holding the labels to use on the x-axis for the bars.
 6404: 
 6405: =item @Values: An array of array references.  Each array reference holds data
 6406: to be plotted in a stacked bar chart.
 6407: 
 6408: =item If the final element of @Values is a hash reference the key/value
 6409: pairs will be added to the graph definition.
 6410: 
 6411: =back
 6412: 
 6413: Returns:
 6414: 
 6415: An <img> tag which references graph.png and the appropriate identifying
 6416: information for the plot.
 6417: 
 6418: =cut
 6419: 
 6420: ############################################################
 6421: ############################################################
 6422: sub DrawBarGraph {
 6423:     my ($Title,$xlabel,$ylabel,$Max,$colors,$labels,@Values)=@_;
 6424:     #
 6425:     if (! defined($colors)) {
 6426:         $colors = ['#33ff00', 
 6427:                   '#0033cc', '#990000', '#aaaa66', '#663399', '#ff9933',
 6428:                   '#66ccff', '#ff9999', '#cccc33', '#660000', '#33cc66',
 6429:                   ]; 
 6430:     }
 6431:     my $extra_settings = {};
 6432:     if (ref($Values[-1]) eq 'HASH') {
 6433:         $extra_settings = pop(@Values);
 6434:     }
 6435:     #
 6436:     my $identifier = &get_cgi_id();
 6437:     my $id = 'cgi.'.$identifier;        
 6438:     if (! @Values || ref($Values[0]) ne 'ARRAY') {
 6439:         return '';
 6440:     }
 6441:     #
 6442:     my @Labels;
 6443:     if (defined($labels)) {
 6444:         @Labels = @$labels;
 6445:     } else {
 6446:         for (my $i=0;$i<@{$Values[0]};$i++) {
 6447:             push (@Labels,$i+1);
 6448:         }
 6449:     }
 6450:     #
 6451:     my $NumBars = scalar(@{$Values[0]});
 6452:     if ($NumBars < scalar(@Labels)) { $NumBars = scalar(@Labels); }
 6453:     my %ValuesHash;
 6454:     my $NumSets=1;
 6455:     foreach my $array (@Values) {
 6456:         next if (! ref($array));
 6457:         $ValuesHash{$id.'.data.'.$NumSets++} = 
 6458:             join(',',@$array);
 6459:     }
 6460:     #
 6461:     my ($height,$width,$xskip,$bar_width) = (200,120,1,15);
 6462:     if ($NumBars < 3) {
 6463:         $width = 120+$NumBars*32;
 6464:         $xskip = 1;
 6465:         $bar_width = 30;
 6466:     } elsif ($NumBars < 5) {
 6467:         $width = 120+$NumBars*20;
 6468:         $xskip = 1;
 6469:         $bar_width = 20;
 6470:     } elsif ($NumBars < 10) {
 6471:         $width = 120+$NumBars*15;
 6472:         $xskip = 1;
 6473:         $bar_width = 15;
 6474:     } elsif ($NumBars <= 25) {
 6475:         $width = 120+$NumBars*11;
 6476:         $xskip = 5;
 6477:         $bar_width = 8;
 6478:     } elsif ($NumBars <= 50) {
 6479:         $width = 120+$NumBars*8;
 6480:         $xskip = 5;
 6481:         $bar_width = 4;
 6482:     } else {
 6483:         $width = 120+$NumBars*8;
 6484:         $xskip = 5;
 6485:         $bar_width = 4;
 6486:     }
 6487:     #
 6488:     $Max = 1 if ($Max < 1);
 6489:     if ( int($Max) < $Max ) {
 6490:         $Max++;
 6491:         $Max = int($Max);
 6492:     }
 6493:     $Title  = '' if (! defined($Title));
 6494:     $xlabel = '' if (! defined($xlabel));
 6495:     $ylabel = '' if (! defined($ylabel));
 6496:     $ValuesHash{$id.'.title'}    = &escape($Title);
 6497:     $ValuesHash{$id.'.xlabel'}   = &escape($xlabel);
 6498:     $ValuesHash{$id.'.ylabel'}   = &escape($ylabel);
 6499:     $ValuesHash{$id.'.y_max_value'} = $Max;
 6500:     $ValuesHash{$id.'.NumBars'}  = $NumBars;
 6501:     $ValuesHash{$id.'.NumSets'}  = $NumSets;
 6502:     $ValuesHash{$id.'.PlotType'} = 'bar';
 6503:     $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
 6504:     $ValuesHash{$id.'.height'}   = $height;
 6505:     $ValuesHash{$id.'.width'}    = $width;
 6506:     $ValuesHash{$id.'.xskip'}    = $xskip;
 6507:     $ValuesHash{$id.'.bar_width'} = $bar_width;
 6508:     $ValuesHash{$id.'.labels'} = join(',',@Labels);
 6509:     #
 6510:     # Deal with other parameters
 6511:     while (my ($key,$value) = each(%$extra_settings)) {
 6512:         $ValuesHash{$id.'.'.$key} = $value;
 6513:     }
 6514:     #
 6515:     &Apache::lonnet::appenv(%ValuesHash);
 6516:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
 6517: }
 6518: 
 6519: ############################################################
 6520: ############################################################
 6521: 
 6522: =pod
 6523: 
 6524: =item DrawXYGraph
 6525: 
 6526: Facilitates the plotting of data in an XY graph.
 6527: Puts plot definition data into the users environment in order for 
 6528: graph.png to plot it.  Returns an <img> tag for the plot.
 6529: 
 6530: Inputs:
 6531: 
 6532: =over 4
 6533: 
 6534: =item $Title: string, the title of the plot
 6535: 
 6536: =item $xlabel: string, text describing the X-axis of the plot
 6537: 
 6538: =item $ylabel: string, text describing the Y-axis of the plot
 6539: 
 6540: =item $Max: scalar, the maximum Y value to use in the plot
 6541: If $Max is < any data point, the graph will not be rendered.
 6542: 
 6543: =item $colors: Array ref containing the hex color codes for the data to be 
 6544: plotted in.  If undefined, default values will be used.
 6545: 
 6546: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
 6547: 
 6548: =item $Ydata: Array ref containing Array refs.  
 6549: Each of the contained arrays will be plotted as a separate curve.
 6550: 
 6551: =item %Values: hash indicating or overriding any default values which are 
 6552: passed to graph.png.  
 6553: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
 6554: 
 6555: =back
 6556: 
 6557: Returns:
 6558: 
 6559: An <img> tag which references graph.png and the appropriate identifying
 6560: information for the plot.
 6561: 
 6562: =cut
 6563: 
 6564: ############################################################
 6565: ############################################################
 6566: sub DrawXYGraph {
 6567:     my ($Title,$xlabel,$ylabel,$Max,$colors,$Xlabels,$Ydata,%Values)=@_;
 6568:     #
 6569:     # Create the identifier for the graph
 6570:     my $identifier = &get_cgi_id();
 6571:     my $id = 'cgi.'.$identifier;
 6572:     #
 6573:     $Title  = '' if (! defined($Title));
 6574:     $xlabel = '' if (! defined($xlabel));
 6575:     $ylabel = '' if (! defined($ylabel));
 6576:     my %ValuesHash = 
 6577:         (
 6578:          $id.'.title'  => &escape($Title),
 6579:          $id.'.xlabel' => &escape($xlabel),
 6580:          $id.'.ylabel' => &escape($ylabel),
 6581:          $id.'.y_max_value'=> $Max,
 6582:          $id.'.labels'     => join(',',@$Xlabels),
 6583:          $id.'.PlotType'   => 'XY',
 6584:          );
 6585:     #
 6586:     if (defined($colors) && ref($colors) eq 'ARRAY') {
 6587:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
 6588:     }
 6589:     #
 6590:     if (! ref($Ydata) || ref($Ydata) ne 'ARRAY') {
 6591:         return '';
 6592:     }
 6593:     my $NumSets=1;
 6594:     foreach my $array (@{$Ydata}){
 6595:         next if (! ref($array));
 6596:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
 6597:     }
 6598:     $ValuesHash{$id.'.NumSets'} = $NumSets-1;
 6599:     #
 6600:     # Deal with other parameters
 6601:     while (my ($key,$value) = each(%Values)) {
 6602:         $ValuesHash{$id.'.'.$key} = $value;
 6603:     }
 6604:     #
 6605:     &Apache::lonnet::appenv(%ValuesHash);
 6606:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
 6607: }
 6608: 
 6609: ############################################################
 6610: ############################################################
 6611: 
 6612: =pod
 6613: 
 6614: =item DrawXYYGraph
 6615: 
 6616: Facilitates the plotting of data in an XY graph with two Y axes.
 6617: Puts plot definition data into the users environment in order for 
 6618: graph.png to plot it.  Returns an <img> tag for the plot.
 6619: 
 6620: Inputs:
 6621: 
 6622: =over 4
 6623: 
 6624: =item $Title: string, the title of the plot
 6625: 
 6626: =item $xlabel: string, text describing the X-axis of the plot
 6627: 
 6628: =item $ylabel: string, text describing the Y-axis of the plot
 6629: 
 6630: =item $colors: Array ref containing the hex color codes for the data to be 
 6631: plotted in.  If undefined, default values will be used.
 6632: 
 6633: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
 6634: 
 6635: =item $Ydata1: The first data set
 6636: 
 6637: =item $Min1: The minimum value of the left Y-axis
 6638: 
 6639: =item $Max1: The maximum value of the left Y-axis
 6640: 
 6641: =item $Ydata2: The second data set
 6642: 
 6643: =item $Min2: The minimum value of the right Y-axis
 6644: 
 6645: =item $Max2: The maximum value of the left Y-axis
 6646: 
 6647: =item %Values: hash indicating or overriding any default values which are 
 6648: passed to graph.png.  
 6649: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
 6650: 
 6651: =back
 6652: 
 6653: Returns:
 6654: 
 6655: An <img> tag which references graph.png and the appropriate identifying
 6656: information for the plot.
 6657: 
 6658: =cut
 6659: 
 6660: ############################################################
 6661: ############################################################
 6662: sub DrawXYYGraph {
 6663:     my ($Title,$xlabel,$ylabel,$colors,$Xlabels,$Ydata1,$Min1,$Max1,
 6664:                                         $Ydata2,$Min2,$Max2,%Values)=@_;
 6665:     #
 6666:     # Create the identifier for the graph
 6667:     my $identifier = &get_cgi_id();
 6668:     my $id = 'cgi.'.$identifier;
 6669:     #
 6670:     $Title  = '' if (! defined($Title));
 6671:     $xlabel = '' if (! defined($xlabel));
 6672:     $ylabel = '' if (! defined($ylabel));
 6673:     my %ValuesHash = 
 6674:         (
 6675:          $id.'.title'  => &escape($Title),
 6676:          $id.'.xlabel' => &escape($xlabel),
 6677:          $id.'.ylabel' => &escape($ylabel),
 6678:          $id.'.labels' => join(',',@$Xlabels),
 6679:          $id.'.PlotType' => 'XY',
 6680:          $id.'.NumSets' => 2,
 6681:          $id.'.two_axes' => 1,
 6682:          $id.'.y1_max_value' => $Max1,
 6683:          $id.'.y1_min_value' => $Min1,
 6684:          $id.'.y2_max_value' => $Max2,
 6685:          $id.'.y2_min_value' => $Min2,
 6686:          );
 6687:     #
 6688:     if (defined($colors) && ref($colors) eq 'ARRAY') {
 6689:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
 6690:     }
 6691:     #
 6692:     if (! ref($Ydata1) || ref($Ydata1) ne 'ARRAY' ||
 6693:         ! ref($Ydata2) || ref($Ydata2) ne 'ARRAY'){
 6694:         return '';
 6695:     }
 6696:     my $NumSets=1;
 6697:     foreach my $array ($Ydata1,$Ydata2){
 6698:         next if (! ref($array));
 6699:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
 6700:     }
 6701:     #
 6702:     # Deal with other parameters
 6703:     while (my ($key,$value) = each(%Values)) {
 6704:         $ValuesHash{$id.'.'.$key} = $value;
 6705:     }
 6706:     #
 6707:     &Apache::lonnet::appenv(%ValuesHash);
 6708:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
 6709: }
 6710: 
 6711: ############################################################
 6712: ############################################################
 6713: 
 6714: =pod
 6715: 
 6716: =back 
 6717: 
 6718: =head1 Statistics helper routines?  
 6719: 
 6720: Bad place for them but what the hell.
 6721: 
 6722: =over 4
 6723: 
 6724: =item &chartlink
 6725: 
 6726: Returns a link to the chart for a specific student.  
 6727: 
 6728: Inputs:
 6729: 
 6730: =over 4
 6731: 
 6732: =item $linktext: The text of the link
 6733: 
 6734: =item $sname: The students username
 6735: 
 6736: =item $sdomain: The students domain
 6737: 
 6738: =back
 6739: 
 6740: =back
 6741: 
 6742: =cut
 6743: 
 6744: ############################################################
 6745: ############################################################
 6746: sub chartlink {
 6747:     my ($linktext, $sname, $sdomain) = @_;
 6748:     my $link = '<a href="/adm/statistics?reportSelected=student_assessment'.
 6749:         '&amp;SelectedStudent='.&escape($sname.':'.$sdomain).
 6750:         '&amp;chartoutputmode='.HTML::Entities::encode('html, with all links').
 6751:        '">'.$linktext.'</a>';
 6752: }
 6753: 
 6754: #######################################################
 6755: #######################################################
 6756: 
 6757: =pod
 6758: 
 6759: =head1 Course Environment Routines
 6760: 
 6761: =over 4
 6762: 
 6763: =item &restore_course_settings 
 6764: 
 6765: =item &store_course_settings
 6766: 
 6767: Restores/Store indicated form parameters from the course environment.
 6768: Will not overwrite existing values of the form parameters.
 6769: 
 6770: Inputs: 
 6771: a scalar describing the data (e.g. 'chart', 'problem_analysis')
 6772: 
 6773: a hash ref describing the data to be stored.  For example:
 6774:    
 6775: %Save_Parameters = ('Status' => 'scalar',
 6776:     'chartoutputmode' => 'scalar',
 6777:     'chartoutputdata' => 'scalar',
 6778:     'Section' => 'array',
 6779:     'Group' => 'array',
 6780:     'StudentData' => 'array',
 6781:     'Maps' => 'array');
 6782: 
 6783: Returns: both routines return nothing
 6784: 
 6785: =cut
 6786: 
 6787: #######################################################
 6788: #######################################################
 6789: sub store_course_settings {
 6790:     return &store_settings($env{'request.course.id'},@_);
 6791: }
 6792: 
 6793: sub store_settings {
 6794:     # save to the environment
 6795:     # appenv the same items, just to be safe
 6796:     my $udom  = $env{'user.domain'};
 6797:     my $uname = $env{'user.name'};
 6798:     my ($context,$prefix,$Settings) = @_;
 6799:     my %SaveHash;
 6800:     my %AppHash;
 6801:     while (my ($setting,$type) = each(%$Settings)) {
 6802:         my $basename = join('.','internal',$context,$prefix,$setting);
 6803:         my $envname = 'environment.'.$basename;
 6804:         if (exists($env{'form.'.$setting})) {
 6805:             # Save this value away
 6806:             if ($type eq 'scalar' &&
 6807:                 (! exists($env{$envname}) || 
 6808:                  $env{$envname} ne $env{'form.'.$setting})) {
 6809:                 $SaveHash{$basename} = $env{'form.'.$setting};
 6810:                 $AppHash{$envname}   = $env{'form.'.$setting};
 6811:             } elsif ($type eq 'array') {
 6812:                 my $stored_form;
 6813:                 if (ref($env{'form.'.$setting})) {
 6814:                     $stored_form = join(',',
 6815:                                         map {
 6816:                                             &escape($_);
 6817:                                         } sort(@{$env{'form.'.$setting}}));
 6818:                 } else {
 6819:                     $stored_form = 
 6820:                         &escape($env{'form.'.$setting});
 6821:                 }
 6822:                 # Determine if the array contents are the same.
 6823:                 if ($stored_form ne $env{$envname}) {
 6824:                     $SaveHash{$basename} = $stored_form;
 6825:                     $AppHash{$envname}   = $stored_form;
 6826:                 }
 6827:             }
 6828:         }
 6829:     }
 6830:     my $put_result = &Apache::lonnet::put('environment',\%SaveHash,
 6831:                                           $udom,$uname);
 6832:     if ($put_result !~ /^(ok|delayed)/) {
 6833:         &Apache::lonnet::logthis('unable to save form parameters, '.
 6834:                                  'got error:'.$put_result);
 6835:     }
 6836:     # Make sure these settings stick around in this session, too
 6837:     &Apache::lonnet::appenv(%AppHash);
 6838:     return;
 6839: }
 6840: 
 6841: sub restore_course_settings {
 6842:     return &restore_settings($env{'request.course.id'},@_);
 6843: }
 6844: 
 6845: sub restore_settings {
 6846:     my ($context,$prefix,$Settings) = @_;
 6847:     while (my ($setting,$type) = each(%$Settings)) {
 6848:         next if (exists($env{'form.'.$setting}));
 6849:         my $envname = 'environment.internal.'.$context.'.'.$prefix.
 6850:             '.'.$setting;
 6851:         if (exists($env{$envname})) {
 6852:             if ($type eq 'scalar') {
 6853:                 $env{'form.'.$setting} = $env{$envname};
 6854:             } elsif ($type eq 'array') {
 6855:                 $env{'form.'.$setting} = [ 
 6856:                                            map { 
 6857:                                                &unescape($_); 
 6858:                                            } split(',',$env{$envname})
 6859:                                            ];
 6860:             }
 6861:         }
 6862:     }
 6863: }
 6864: 
 6865: ############################################################
 6866: ############################################################
 6867: 
 6868: sub commit_customrole {
 6869:     my ($udom,$uname,$url,$three,$four,$five,$start,$end) = @_;
 6870:     my $output = &mt('Assigning custom role').' "'.$five.'" by '.$four.'@'.$three.' in '.$url.
 6871:                          ($start?', '.&mt('starting').' '.localtime($start):'').
 6872:                          ($end?', ending '.localtime($end):'').': <b>'.
 6873:               &Apache::lonnet::assigncustomrole(
 6874:                  $udom,$uname,$url,$three,$four,$five,$end,$start).
 6875:                  '</b><br />';
 6876:     return $output;
 6877: }
 6878: 
 6879: sub commit_standardrole {
 6880:     my ($udom,$uname,$url,$three,$start,$end,$one,$two,$sec,$context) = @_;
 6881:     my ($output,$logmsg,$linefeed);
 6882:     if ($context eq 'auto') {
 6883:         $linefeed = "\n";
 6884:     } else {
 6885:         $linefeed = "<br />\n";
 6886:     }  
 6887:     if ($three eq 'st') {
 6888:         my $result = &commit_studentrole(\$logmsg,$udom,$uname,$url,$three,$start,$end,
 6889:                                          $one,$two,$sec,$context);
 6890:         if (($result =~ /^error/) || ($result eq 'not_in_class') || 
 6891:             ($result eq 'unknown_course')) {
 6892:             $output = "Error: $result\n"; 
 6893:         } else {
 6894:             $output = $logmsg.$linefeed.&mt('Assigning').' '.$three.' in '.$url.
 6895:                ($start?', '.&mt('starting').' '.localtime($start):'').
 6896:                ($end?', '.&mt('ending').' '.localtime($end):'').': ';
 6897:             if ($context eq 'auto') {
 6898:                 $output .= $result.$linefeed.&mt('Add to classlist').': ok';
 6899:             } else {
 6900:                $output .= '<b>'.$result.'</b>'.$linefeed.
 6901:                &mt('Add to classlist').': <b>ok</b>';
 6902:             }
 6903:             $output .= $linefeed;
 6904:         }
 6905:     } else {
 6906:         $output = &mt('Assigning').' '.$three.' in '.$url.
 6907:                ($start?', '.&mt('starting').' '.localtime($start):'').
 6908:                ($end?', '.&mt('ending').' '.localtime($end):'').': ';
 6909:         my $result = &Apache::lonnet::assignrole($udom,$uname,$url,$three,$end,$start);
 6910:         if ($context eq 'auto') {
 6911:             $output .= $result.$linefeed;
 6912:         } else {
 6913:             $output .= '<b>'.$result.'</b>'.$linefeed;
 6914:         }
 6915:     }
 6916:     return $output;
 6917: }
 6918: 
 6919: sub commit_studentrole {
 6920:     my ($logmsg,$udom,$uname,$url,$three,$start,$end,$one,$two,$sec,$context) = @_;
 6921:     my ($result,$linefeed);
 6922:     if ($context eq 'auto') {
 6923:         $linefeed = "\n";
 6924:     } else {
 6925:         $linefeed = '<br />'."\n";
 6926:     }
 6927:     if (defined($one) && defined($two)) {
 6928:         my $cid=$one.'_'.$two;
 6929:         my $oldsec=&Apache::lonnet::getsection($udom,$uname,$cid);
 6930:         my $secchange = 0;
 6931:         my $expire_role_result;
 6932:         my $modify_section_result;
 6933:         unless ($oldsec eq '-1') {
 6934:             unless ($sec eq $oldsec) {
 6935:                 $secchange = 1;
 6936:                 my $uurl='/'.$cid;
 6937:                 $uurl=~s/\_/\//g;
 6938:                 if ($oldsec) {
 6939:                     $uurl.='/'.$oldsec;
 6940:                 }
 6941:                 $expire_role_result = &Apache::lonnet::assignrole($udom,$uname,$uurl,'st',time);
 6942:                 $result = $expire_role_result;
 6943:             }
 6944:         }
 6945:         if (($expire_role_result eq 'ok') || ($secchange == 0)) {
 6946:             $modify_section_result = &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$end,$start,'','',$cid);
 6947:             if ($modify_section_result =~ /^ok/) {
 6948:                 if ($secchange == 1) {
 6949:                     $$logmsg .= "Section for $uname switched from old section: $oldsec to new section: $sec".$linefeed;
 6950:                 } elsif ($oldsec eq '-1') {
 6951:                     $$logmsg .= "New student role for $uname in section $sec in course $cid".$linefeed;
 6952:                 } else {
 6953:                     $$logmsg .= "Student $uname assigned to unchanged section $sec in course $cid".$linefeed;
 6954:                 }
 6955:             } else {
 6956:                 $$logmsg .= "Error when attempting section change for $uname from old section $oldsec to new section: $sec in course $cid -error: $modify_section_result".$linefeed;
 6957:             }
 6958:             $result = $modify_section_result;
 6959:         } elsif ($secchange == 1) {
 6960:             $$logmsg .= "Error when attempting to expire role for $uname in old section $oldsec in course $cid -error: $expire_role_result".$linefeed;
 6961:         }
 6962:     } else {
 6963:         $$logmsg .= "Incomplete course id defined.  Addition of user $uname from domain $udom to course $one\_$two, section $sec not completed.$linefeed";
 6964:         $result = "error: incomplete course id\n";
 6965:     }
 6966:     return $result;
 6967: }
 6968: 
 6969: ############################################################
 6970: ############################################################
 6971: 
 6972: sub construct_course {
 6973:     my ($args,$logmsg,$courseid,$crsudom,$crsunum,$udom,$uname,$context) = @_;
 6974:     my $outcome;
 6975:     my $linefeed =  '<br />'."\n";
 6976:     if ($context eq 'auto') {
 6977:         $linefeed = "\n";
 6978:     }
 6979: #
 6980: # Open course
 6981: #
 6982:     my $crstype = lc($args->{'crstype'});
 6983:     my %cenv=();
 6984:     $$courseid=&Apache::lonnet::createcourse($args->{'course_domain'},
 6985:                                              $args->{'cdescr'},
 6986:                                              $args->{'curl'},
 6987:                                              $args->{'course_home'},
 6988:                                              $args->{'nonstandard'},
 6989:                                              $args->{'crscode'},
 6990:                                              $args->{'ccuname'}.':'.
 6991:                                              $args->{'ccdomain'},
 6992:                                              $args->{'crstype'});
 6993: 
 6994:     # Note: The testing routines depend on this being output; see 
 6995:     # Utils::Course. This needs to at least be output as a comment
 6996:     # if anyone ever decides to not show this, and Utils::Course::new
 6997:     # will need to be suitably modified.
 6998:     $outcome .= &mt('New LON-CAPA [_1] ID: [_2]',$crstype,$$courseid).$linefeed;
 6999: 
 7000: #
 7001: # Check if created correctly
 7002: #
 7003:     ($$crsudom,$$crsunum)= &LONCAPA::split_courseid($$courseid);
 7004:     my $crsuhome=&Apache::lonnet::homeserver($$crsunum,$$crsudom);
 7005:     $outcome .= &mt('Created on').': '.$crsuhome.$linefeed;
 7006: #
 7007: # Are we cloning?
 7008: #
 7009:     my $cloneid='';
 7010:     if (($args->{'clonecourse'}) && ($args->{'clonedomain'})) {
 7011:         my $can_clone = 0;
 7012: 	$cloneid='/'.$args->{'clonedomain'}.'/'.$args->{'clonecourse'};
 7013:         my ($clonecrsudom,$clonecrsunum)= &LONCAPA::split_courseid($cloneid);
 7014: 	my $clonehome=&Apache::lonnet::homeserver($clonecrsunum,$clonecrsudom);
 7015:         my $clonemsg;
 7016: 	if ($clonehome eq 'no_host') {
 7017:             $clonemsg = &mt('Attempting to clone non-existing [_1]',$crstype);
 7018:             if ($context eq 'auto') {
 7019:                 $outcome .= $clonemsg;
 7020:             } else {
 7021: 	        $outcome .= '<font color="red">'.$clonemsg.'</font>';
 7022:             }
 7023:             $outcome .= $linefeed;
 7024: 	} else {
 7025:             my %clonedesc = &Apache::lonnet::coursedescription($cloneid,{'one_time' => 1});
 7026:             if ($env{'request.role.domain'} eq $args->{'form.clonedomain'}) {
 7027:                 $can_clone = 1;
 7028:             } else {
 7029:                 my %clonehash = &Apache::lonnet::get('environment',['cloners'],
 7030:                             $args->{'clonedomain'},$args->{'clonecourse'});
 7031:                 my @cloners = split(/,/,$clonehash{'cloners'});
 7032:                 my %roleshash =
 7033:                     &Apache::lonnet::get_my_roles($args->{'ccuname'},
 7034:                         $args->{'ccdomain'},'userroles',['active'],['cc'],
 7035:                         [$args->{'clonedomain'}]);
 7036:                 if (($roleshash{$args->{'clonecourse'}.':'.$args->{'clonedomain'}.':cc'}) || (grep(/^\Q$args->{'ccuname'}\E:\Q$args->{'ccdomain'}\E$/,@cloners))) {
 7037:                     $can_clone = 1;
 7038:                 } else {
 7039:                     $clonemsg = &mt('The new course was not cloned from an existing course because the course owner ([_1]) does not have cloning rights in the existing course ([_2]).',$args->{'ccuname'}.':'.$args->{'ccdomain'},$clonedesc{'description'});
 7040:                     if ($context eq 'auto') {
 7041:                         $outcome .= $clonemsg;
 7042:                     } else {
 7043:                         $outcome .= '<font color="red">'.$clonemsg.'</font>';
 7044:                     }
 7045:                     $outcome .= $linefeed;
 7046:                 }
 7047:             }
 7048:         }
 7049:         if ($can_clone) {
 7050: 	    $clonemsg = &mt('Cloning [_1] from [_2]',$crstype,$clonehome);
 7051:             if ($context eq 'auto') {
 7052:                 $outcome = $clonemsg;
 7053:             } else { 
 7054:                 $outcome .= '<font color="green">'.$clonemsg.'</font>';
 7055:             }
 7056:             $outcome .= $linefeed;
 7057: 	    my %oldcenv=&Apache::lonnet::dump('environment',$$crsudom,$$crsunum);
 7058: # Copy all files
 7059: 	    &Apache::lonclonecourse::copycoursefiles($cloneid,$$courseid);
 7060: # Restore URL
 7061: 	    $cenv{'url'}=$oldcenv{'url'};
 7062: # Restore title
 7063: 	    $cenv{'description'}=$oldcenv{'description'};
 7064: # restore grading mode
 7065: 	    if (defined($oldcenv{'grading'})) {
 7066: 		$cenv{'grading'}=$oldcenv{'grading'};
 7067: 	    }
 7068: # Mark as cloned
 7069: 	    $cenv{'clonedfrom'}=$cloneid;
 7070: 	    delete($cenv{'default_enrollment_start_date'});
 7071: 	    delete($cenv{'default_enrollment_end_date'});
 7072: 	}
 7073:     }
 7074: #
 7075: # Set environment (will override cloned, if existing)
 7076: #
 7077:     my @sections = ();
 7078:     my @xlists = ();
 7079:     if ($args->{'crstype'}) {
 7080:         $cenv{'type'}=$args->{'crstype'};
 7081:     }
 7082:     if ($args->{'crsid'}) {
 7083:         $cenv{'courseid'}=$args->{'crsid'};
 7084:     }
 7085:     if ($args->{'crscode'}) {
 7086:         $cenv{'internal.coursecode'}=$args->{'crscode'};
 7087:     }
 7088:     if ($args->{'crsquota'} ne '') {
 7089:         $cenv{'internal.coursequota'}=$args->{'crsquota'};
 7090:     } else {
 7091:         $cenv{'internal.coursequota'}=$args->{'crsquota'} = 20;
 7092:     }
 7093:     if ($args->{'ccuname'}) {
 7094:         $cenv{'internal.courseowner'} = $args->{'ccuname'}.
 7095:                                         ':'.$args->{'ccdomain'};
 7096:     } else {
 7097:         $cenv{'internal.courseowner'} = $args->{'curruser'};
 7098:     }
 7099: 
 7100:     my @badclasses = (); # Used to accumulate sections/crosslistings that did not pass classlist access check for course owner.
 7101:     if ($args->{'crssections'}) {
 7102:         $cenv{'internal.sectionnums'} = '';
 7103:         if ($args->{'crssections'} =~ m/,/) {
 7104:             @sections = split/,/,$args->{'crssections'};
 7105:         } else {
 7106:             $sections[0] = $args->{'crssections'};
 7107:         }
 7108:         if (@sections > 0) {
 7109:             foreach my $item (@sections) {
 7110:                 my ($sec,$gp) = split/:/,$item;
 7111:                 my $class = $args->{'crscode'}.$sec;
 7112:                 my $addcheck = &Apache::lonnet::auto_new_course($$crsunum,$$crsudom,$class,$cenv{'internal.courseowner'});
 7113:                 $cenv{'internal.sectionnums'} .= $item.',';
 7114:                 unless ($addcheck eq 'ok') {
 7115:                     push @badclasses, $class;
 7116:                 }
 7117:             }
 7118:             $cenv{'internal.sectionnums'} =~ s/,$//;
 7119:         }
 7120:     }
 7121: # do not hide course coordinator from staff listing, 
 7122: # even if privileged
 7123:     $cenv{'nothideprivileged'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
 7124: # add crosslistings
 7125:     if ($args->{'crsxlist'}) {
 7126:         $cenv{'internal.crosslistings'}='';
 7127:         if ($args->{'crsxlist'} =~ m/,/) {
 7128:             @xlists = split/,/,$args->{'crsxlist'};
 7129:         } else {
 7130:             $xlists[0] = $args->{'crsxlist'};
 7131:         }
 7132:         if (@xlists > 0) {
 7133:             foreach my $item (@xlists) {
 7134:                 my ($xl,$gp) = split/:/,$item;
 7135:                 my $addcheck =  &Apache::lonnet::auto_new_course($$crsunum,$$crsudom,$xl,$cenv{'internal.courseowner'});
 7136:                 $cenv{'internal.crosslistings'} .= $item.',';
 7137:                 unless ($addcheck eq 'ok') {
 7138:                     push @badclasses, $xl;
 7139:                 }
 7140:             }
 7141:             $cenv{'internal.crosslistings'} =~ s/,$//;
 7142:         }
 7143:     }
 7144:     if ($args->{'autoadds'}) {
 7145:         $cenv{'internal.autoadds'}=$args->{'autoadds'};
 7146:     }
 7147:     if ($args->{'autodrops'}) {
 7148:         $cenv{'internal.autodrops'}=$args->{'autodrops'};
 7149:     }
 7150: # check for notification of enrollment changes
 7151:     my @notified = ();
 7152:     if ($args->{'notify_owner'}) {
 7153:         if ($args->{'ccuname'} ne '') {
 7154:             push(@notified,$args->{'ccuname'}.':'.$args->{'ccdomain'});
 7155:         }
 7156:     }
 7157:     if ($args->{'notify_dc'}) {
 7158:         if ($uname ne '') { 
 7159:             push(@notified,$uname.'@'.$udom);
 7160:         }
 7161:     }
 7162:     if (@notified > 0) {
 7163:         my $notifylist;
 7164:         if (@notified > 1) {
 7165:             $notifylist = join(',',@notified);
 7166:         } else {
 7167:             $notifylist = $notified[0];
 7168:         }
 7169:         $cenv{'internal.notifylist'} = $notifylist;
 7170:     }
 7171:     if (@badclasses > 0) {
 7172:         my %lt=&Apache::lonlocal::texthash(
 7173:                 'tclb' => 'The courses listed below were included as sections or crosslistings affiliated with your new LON-CAPA course.  However, if automated course roster updates are enabled for this class, these particular sections/crosslistings will not contribute towards enrollment, because the user identified as the course owner for this LON-CAPA course',
 7174:                 'dnhr' => 'does not have rights to access enrollment in these classes',
 7175:                 'adby' => 'as determined by the policies of your institution on access to official classlists'
 7176:         );
 7177:         my $badclass_msg = $cenv{'internal.courseowner'}.') - '.$lt{'dnhr'}.
 7178:                            ' ('.$lt{'adby'}.')';
 7179:         if ($context eq 'auto') {
 7180:             $outcome .= $badclass_msg.$linefeed;
 7181:             $outcome .= '<font color="red">'.$badclass_msg.$linefeed.'<ul>'."\n";
 7182:             foreach my $item (@badclasses) {
 7183:                 if ($context eq 'auto') {
 7184:                     $outcome .= " - $item\n";
 7185:                 } else {
 7186:                     $outcome .= "<li>$item</li>\n";
 7187:                 }
 7188:             }
 7189:             if ($context eq 'auto') {
 7190:                 $outcome .= $linefeed;
 7191:             } else {
 7192:                 $outcome .= "</ul><br /><br /></font>\n";
 7193:             }
 7194:         } 
 7195:     }
 7196:     if ($args->{'no_end_date'}) {
 7197:         $args->{'endaccess'} = 0;
 7198:     }
 7199:     $cenv{'internal.autostart'}=$args->{'enrollstart'};
 7200:     $cenv{'internal.autoend'}=$args->{'enrollend'};
 7201:     $cenv{'default_enrollment_start_date'}=$args->{'startaccess'};
 7202:     $cenv{'default_enrollment_end_date'}=$args->{'endaccess'};
 7203:     if ($args->{'showphotos'}) {
 7204:       $cenv{'internal.showphotos'}=$args->{'showphotos'};
 7205:     }
 7206:     $cenv{'internal.authtype'} = $args->{'authtype'};
 7207:     $cenv{'internal.autharg'} = $args->{'autharg'}; 
 7208:     if ( ($cenv{'internal.authtype'} =~ /^krb/) && ($cenv{'internal.autoadds'} == 1)) {
 7209:         if (! defined($cenv{'internal.autharg'}) || $cenv{'internal.autharg'}  eq '') {
 7210:             my $krb_msg = &mt('As you did not include the default Kerberos domain to be used for authentication in this class, the institutional data used by the automated enrollment process must include the Kerberos domain for each new student'); 
 7211:             if ($context eq 'auto') {
 7212:                 $outcome .= $krb_msg;
 7213:             } else {
 7214:                 $outcome .= '<font color="red" size="+1">'.$krb_msg.'</font>';
 7215:             }
 7216:             $outcome .= $linefeed;
 7217:         }
 7218:     }
 7219:     if (($args->{'ccdomain'}) && ($args->{'ccuname'})) {
 7220:        if ($args->{'setpolicy'}) {
 7221:            $cenv{'policy.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
 7222:        }
 7223:        if ($args->{'setcontent'}) {
 7224:            $cenv{'question.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
 7225:        }
 7226:     }
 7227:     if ($args->{'reshome'}) {
 7228: 	$cenv{'reshome'}=$args->{'reshome'}.'/';
 7229: 	$cenv{'reshome'}=~s/\/+$/\//;
 7230:     }
 7231: #
 7232: # course has keyed access
 7233: #
 7234:     if ($args->{'setkeys'}) {
 7235:        $cenv{'keyaccess'}='yes';
 7236:     }
 7237: # if specified, key authority is not course, but user
 7238: # only active if keyaccess is yes
 7239:     if ($args->{'keyauth'}) {
 7240: 	my ($user,$domain) = split(':',$args->{'keyauth'});
 7241: 	$user = &LONCAPA::clean_username($user);
 7242: 	$domain = &LONCAPA::clean_username($domain);
 7243: 	if ($user ne '' && $domain ne '') {
 7244: 	    $cenv{'keyauth'}=$user.':'.$domain;
 7245: 	}
 7246:     }
 7247: 
 7248:     if ($args->{'disresdis'}) {
 7249:         $cenv{'pch.roles.denied'}='st';
 7250:     }
 7251:     if ($args->{'disablechat'}) {
 7252:         $cenv{'plc.roles.denied'}='st';
 7253:     }
 7254: 
 7255:     # Record we've not yet viewed the Course Initialization Helper for this 
 7256:     # course
 7257:     $cenv{'course.helper.not.run'} = 1;
 7258:     #
 7259:     # Use new Randomseed
 7260:     #
 7261:     $cenv{'rndseed'}=&Apache::lonnet::latest_rnd_algorithm_id();;
 7262:     $cenv{'receiptalg'}=&Apache::lonnet::latest_receipt_algorithm_id();;
 7263:     #
 7264:     # The encryption code and receipt prefix for this course
 7265:     #
 7266:     $cenv{'internal.encseed'}=$Apache::lonnet::perlvar{'lonReceipt'}.$$.time.int(rand(9999));
 7267:     $cenv{'internal.encpref'}=100+int(9*rand(99));
 7268:     #
 7269:     # By default, use standard grading
 7270:     if (!defined($cenv{'grading'})) { $cenv{'grading'} = 'standard'; }
 7271: 
 7272:     $outcome .= $linefeed.&mt('Setting environment').': '.                 
 7273:           &Apache::lonnet::put('environment',\%cenv,$$crsudom,$$crsunum).$linefeed;
 7274: #
 7275: # Open all assignments
 7276: #
 7277:     if ($args->{'openall'}) {
 7278:        my $storeunder=$$crsudom.'_'.$$crsunum.'.0.opendate';
 7279:        my %storecontent = ($storeunder         => time,
 7280:                            $storeunder.'.type' => 'date_start');
 7281:        
 7282:        $outcome .= &mt('Opening all assignments').': '.&Apache::lonnet::cput
 7283:                  ('resourcedata',\%storecontent,$$crsudom,$$crsunum).$linefeed;
 7284:    }
 7285: #
 7286: # Set first page
 7287: #
 7288:     unless (($args->{'nonstandard'}) || ($args->{'firstres'} eq 'blank')
 7289: 	    || ($cloneid)) {
 7290: 	use LONCAPA::map;
 7291: 	$outcome .= &mt('Setting first resource').': ';
 7292: 
 7293: 	my $map = '/uploaded/'.$$crsudom.'/'.$$crsunum.'/default.sequence';
 7294:         my ($errtext,$fatal)=&LONCAPA::map::mapread($map);
 7295: 
 7296:         $outcome .= ($fatal?$errtext:'read ok').' - ';
 7297:         my $title; my $url;
 7298:         if ($args->{'firstres'} eq 'syl') {
 7299: 	    $title='Syllabus';
 7300:             $url='/public/'.$$crsudom.'/'.$$crsunum.'/syllabus';
 7301:         } else {
 7302:             $title='Navigate Contents';
 7303:             $url='/adm/navmaps';
 7304:         }
 7305: 
 7306:         $LONCAPA::map::resources[1]=$title.':'.$url.':false:start:res';
 7307: 	(my $outtext,$errtext) = &LONCAPA::map::storemap($map,1);
 7308: 
 7309: 	if ($errtext) { $fatal=2; }
 7310:         $outcome .= ($fatal?$errtext:'write ok').$linefeed;
 7311:     }
 7312:     return $outcome;
 7313: }
 7314: 
 7315: ############################################################
 7316: ############################################################
 7317: 
 7318: sub course_type {
 7319:     my ($cid) = @_;
 7320:     if (!defined($cid)) {
 7321:         $cid = $env{'request.course.id'};
 7322:     }
 7323:     if (defined($env{'course.'.$cid.'.type'})) {
 7324:         return $env{'course.'.$cid.'.type'};
 7325:     } else {
 7326:         return 'Course';
 7327:     }
 7328: }
 7329: 
 7330: sub group_term {
 7331:     my $crstype = &course_type();
 7332:     my %names = (
 7333:                   'Course' => 'group',
 7334:                   'Group' => 'team',
 7335:                 );
 7336:     return $names{$crstype};
 7337: }
 7338: 
 7339: sub icon {
 7340:     my ($file)=@_;
 7341:     my $curfext = lc((split(/\./,$file))[-1]);
 7342:     my $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/unknown.gif';
 7343:     my $embstyle = &Apache::loncommon::fileembstyle($curfext);
 7344:     if (!(!defined($embstyle) || $embstyle eq 'unk' || $embstyle eq 'hdn')) {
 7345: 	if (-e  $Apache::lonnet::perlvar{'lonDocRoot'}.'/'.
 7346: 	          $Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
 7347: 	            $curfext.".gif") {
 7348: 	    $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
 7349: 		$curfext.".gif";
 7350: 	}
 7351:     }
 7352:     return &lonhttpdurl($iconname);
 7353: } 
 7354: 
 7355: sub lonhttpdurl {
 7356:     my ($url)=@_;
 7357:     my $lonhttpd_port=$Apache::lonnet::perlvar{'lonhttpdPort'};
 7358:     if (!defined($lonhttpd_port)) { $lonhttpd_port='8080'; }
 7359:     return 'http://'.$ENV{'SERVER_NAME'}.':'.$lonhttpd_port.$url;
 7360: }
 7361: 
 7362: sub connection_aborted {
 7363:     my ($r)=@_;
 7364:     $r->print(" ");$r->rflush();
 7365:     my $c = $r->connection;
 7366:     return $c->aborted();
 7367: }
 7368: 
 7369: #    Escapes strings that may have embedded 's that will be put into
 7370: #    strings as 'strings'.
 7371: sub escape_single {
 7372:     my ($input) = @_;
 7373:     $input =~ s/\\/\\\\/g;	# Escape the \'s..(must be first)>
 7374:     $input =~ s/\'/\\\'/g;	# Esacpe the 's....
 7375:     return $input;
 7376: }
 7377: 
 7378: #  Same as escape_single, but escape's "'s  This 
 7379: #  can be used for  "strings"
 7380: sub escape_double {
 7381:     my ($input) = @_;
 7382:     $input =~ s/\\/\\\\/g;	# Escape the /'s..(must be first)>
 7383:     $input =~ s/\"/\\\"/g;	# Esacpe the "s....
 7384:     return $input;
 7385: }
 7386:  
 7387: #   Escapes the last element of a full URL.
 7388: sub escape_url {
 7389:     my ($url)   = @_;
 7390:     my @urlslices = split(/\//, $url,-1);
 7391:     my $lastitem = &escape(pop(@urlslices));
 7392:     return join('/',@urlslices).'/'.$lastitem;
 7393: }
 7394: 
 7395: # -------------------------------------------------------- Initliaze user login
 7396: sub init_user_environment {
 7397:     my ($r, $username, $domain, $authhost, $form, $args) = @_;
 7398:     my $lonids=$Apache::lonnet::perlvar{'lonIDsDir'};
 7399: 
 7400:     my $public=($username eq 'public' && $domain eq 'public');
 7401: 
 7402: # See if old ID present, if so, remove
 7403: 
 7404:     my ($filename,$cookie,$userroles);
 7405:     my $now=time;
 7406: 
 7407:     if ($public) {
 7408: 	my $max_public=100;
 7409: 	my $oldest;
 7410: 	my $oldest_time=0;
 7411: 	for(my $next=1;$next<=$max_public;$next++) {
 7412: 	    if (-e $lonids."/publicuser_$next.id") {
 7413: 		my $mtime=(stat($lonids."/publicuser_$next.id"))[9];
 7414: 		if ($mtime<$oldest_time || !$oldest_time) {
 7415: 		    $oldest_time=$mtime;
 7416: 		    $oldest=$next;
 7417: 		}
 7418: 	    } else {
 7419: 		$cookie="publicuser_$next";
 7420: 		last;
 7421: 	    }
 7422: 	}
 7423: 	if (!$cookie) { $cookie="publicuser_$oldest"; }
 7424:     } else {
 7425: 	# if this isn't a robot, kill any existing non-robot sessions
 7426: 	if (!$args->{'robot'}) {
 7427: 	    opendir(DIR,$lonids);
 7428: 	    while ($filename=readdir(DIR)) {
 7429: 		if ($filename=~/^$username\_\d+\_$domain\_$authhost\.id$/) {
 7430: 		    unlink($lonids.'/'.$filename);
 7431: 		}
 7432: 	    }
 7433: 	    closedir(DIR);
 7434: 	}
 7435: # Give them a new cookie
 7436: 	my $id = ($args->{'robot'} ? 'robot'.$args->{'robot'}
 7437: 		                   : $now);
 7438: 	$cookie="$username\_$id\_$domain\_$authhost";
 7439:     
 7440: # Initialize roles
 7441: 
 7442: 	$userroles=&Apache::lonnet::rolesinit($domain,$username,$authhost);
 7443:     }
 7444: # ------------------------------------ Check browser type and MathML capability
 7445: 
 7446:     my ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
 7447:         $clientunicode,$clientos) = &decode_user_agent($r);
 7448: 
 7449: # -------------------------------------- Any accessibility options to remember?
 7450:     if (($form->{'interface'}) && ($form->{'remember'} eq 'true')) {
 7451: 	foreach my $option ('imagesuppress','appletsuppress',
 7452: 			    'embedsuppress','fontenhance','blackwhite') {
 7453: 	    if ($form->{$option} eq 'true') {
 7454: 		&Apache::lonnet::put('environment',{$option => 'on'},
 7455: 				     $domain,$username);
 7456: 	    } else {
 7457: 		&Apache::lonnet::del('environment',[$option],
 7458: 				     $domain,$username);
 7459: 	    }
 7460: 	}
 7461:     }
 7462: # ------------------------------------------------------------- Get environment
 7463: 
 7464:     my %userenv = &Apache::lonnet::dump('environment',$domain,$username);
 7465:     my ($tmp) = keys(%userenv);
 7466:     if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
 7467: 	# default remote control to off
 7468: 	if ($userenv{'remote'} ne 'on') { $userenv{'remote'} = 'off'; }
 7469:     } else {
 7470: 	undef(%userenv);
 7471:     }
 7472:     if (($userenv{'interface'}) && (!$form->{'interface'})) {
 7473: 	$form->{'interface'}=$userenv{'interface'};
 7474:     }
 7475:     $env{'environment.remote'}=$userenv{'remote'};
 7476:     if ($userenv{'texengine'} eq 'ttm') { $clientmathml=1; }
 7477: 
 7478: # --------------- Do not trust query string to be put directly into environment
 7479:     foreach my $option ('imagesuppress','appletsuppress',
 7480: 			'embedsuppress','fontenhance','blackwhite',
 7481: 			'interface','localpath','localres') {
 7482: 	$form->{$option}=~s/[\n\r\=]//gs;
 7483:     }
 7484: # --------------------------------------------------------- Write first profile
 7485: 
 7486:     {
 7487: 	my %initial_env = 
 7488: 	    ("user.name"          => $username,
 7489: 	     "user.domain"        => $domain,
 7490: 	     "user.home"          => $authhost,
 7491: 	     "browser.type"       => $clientbrowser,
 7492: 	     "browser.version"    => $clientversion,
 7493: 	     "browser.mathml"     => $clientmathml,
 7494: 	     "browser.unicode"    => $clientunicode,
 7495: 	     "browser.os"         => $clientos,
 7496: 	     "server.domain"      => $Apache::lonnet::perlvar{'lonDefDomain'},
 7497: 	     "request.course.fn"  => '',
 7498: 	     "request.course.uri" => '',
 7499: 	     "request.course.sec" => '',
 7500: 	     "request.role"       => 'cm',
 7501: 	     "request.role.adv"   => $env{'user.adv'},
 7502: 	     "request.host"       => $ENV{'REMOTE_ADDR'},);
 7503: 
 7504:         if ($form->{'localpath'}) {
 7505: 	    $initial_env{"browser.localpath"}  = $form->{'localpath'};
 7506: 	    $initial_env{"browser.localres"}   = $form->{'localres'};
 7507:         }
 7508: 	
 7509: 	if ($public) {
 7510: 	    $initial_env{"environment.remote"} = "off";
 7511: 	}
 7512: 	if ($form->{'interface'}) {
 7513: 	    $form->{'interface'}=~s/\W//gs;
 7514: 	    $initial_env{"browser.interface"} = $form->{'interface'};
 7515: 	    $env{'browser.interface'}=$form->{'interface'};
 7516: 	    foreach my $option ('imagesuppress','appletsuppress',
 7517: 				'embedsuppress','fontenhance','blackwhite') {
 7518: 		if (($form->{$option} eq 'true') ||
 7519: 		    ($userenv{$option} eq 'on')) {
 7520: 		    $initial_env{"browser.$option"} = "on";
 7521: 		}
 7522: 	    }
 7523: 	}
 7524: 
 7525: 	$env{'user.environment'} = "$lonids/$cookie.id";
 7526: 	
 7527: 	if (tie(my %disk_env,'GDBM_File',"$lonids/$cookie.id",
 7528: 		 &GDBM_WRCREAT(),0640)) {
 7529: 	    &_add_to_env(\%disk_env,\%initial_env);
 7530: 	    &_add_to_env(\%disk_env,\%userenv,'environment.');
 7531: 	    &_add_to_env(\%disk_env,$userroles);
 7532: 	    if (ref($args->{'extra_env'})) {
 7533: 		&_add_to_env(\%disk_env,$args->{'extra_env'});
 7534: 	    }
 7535: 	    untie(%disk_env);
 7536: 	} else {
 7537: 	    &Apache::lonnet::logthis("<font color=\"blue\">WARNING: ".
 7538: 			   'Could not create environment storage in lonauth: '.$!.'</font>');
 7539: 	    return 'error: '.$!;
 7540: 	}
 7541:     }
 7542:     $env{'request.role'}='cm';
 7543:     $env{'request.role.adv'}=$env{'user.adv'};
 7544:     $env{'browser.type'}=$clientbrowser;
 7545: 
 7546:     return $cookie;
 7547: 
 7548: }
 7549: 
 7550: sub _add_to_env {
 7551:     my ($idf,$env_data,$prefix) = @_;
 7552:     while (my ($key,$value) = each(%$env_data)) {
 7553: 	$idf->{$prefix.$key} = $value;
 7554: 	$env{$prefix.$key}   = $value;
 7555:     }
 7556: }
 7557: 
 7558: 
 7559: =pod
 7560: 
 7561: =back
 7562: 
 7563: =cut
 7564: 
 7565: 1;
 7566: __END__;
 7567: 

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