File:  [LON-CAPA] / loncom / interface / loncommon.pm
Revision 1.415: download - view: text, annotated - select for diffs
Mon Jul 3 00:46:00 2006 UTC (17 years, 10 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- update docs on redirect

    1: # The LearningOnline Network with CAPA
    2: # a pile of common routines
    3: #
    4: # $Id: loncommon.pm,v 1.415 2006/07/03 00:46:00 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::lonlocal;
   63: use HTML::Entities;
   64: use Apache::lonhtmlcommon();
   65: use Apache::loncoursedata();
   66: use Apache::lontexconvert();
   67: use LONCAPA;
   68: 
   69: my $readit;
   70: 
   71: ##
   72: ## Global Variables
   73: ##
   74: 
   75: # ----------------------------------------------- Filetypes/Languages/Copyright
   76: my %language;
   77: my %supported_language;
   78: my %cprtag;
   79: my %scprtag;
   80: my %fe; my %fd; my %fm;
   81: my %category_extensions;
   82: 
   83: # ---------------------------------------------- Designs
   84: 
   85: my %designhash;
   86: 
   87: # ---------------------------------------------- Thesaurus variables
   88: #
   89: # %Keywords:
   90: #      A hash used by &keyword to determine if a word is considered a keyword.
   91: # $thesaurus_db_file 
   92: #      Scalar containing the full path to the thesaurus database.
   93: 
   94: my %Keywords;
   95: my $thesaurus_db_file;
   96: 
   97: #
   98: # Initialize values from language.tab, copyright.tab, filetypes.tab,
   99: # thesaurus.tab, and filecategories.tab.
  100: #
  101: BEGIN {
  102:     # Variable initialization
  103:     $thesaurus_db_file = $Apache::lonnet::perlvar{'lonTabDir'}."/thesaurus.db";
  104:     #
  105:     unless ($readit) {
  106: # ------------------------------------------------------------------- languages
  107:     {
  108:         my $langtabfile = $Apache::lonnet::perlvar{'lonTabDir'}.
  109:                                    '/language.tab';
  110:         if ( open(my $fh,"<$langtabfile") ) {
  111:             while (my $line = <$fh>) {
  112:                 next if ($line=~/^\#/);
  113:                 chomp($line);
  114:                 my ($key,$two,$country,$three,$enc,$val,$sup)=(split(/\t/,$line));
  115:                 $language{$key}=$val.' - '.$enc;
  116:                 if ($sup) {
  117:                     $supported_language{$key}=$sup;
  118:                 }
  119:             }
  120:             close($fh);
  121:         }
  122:     }
  123: # ------------------------------------------------------------------ copyrights
  124:     {
  125:         my $copyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
  126:                                   '/copyright.tab';
  127:         if ( open (my $fh,"<$copyrightfile") ) {
  128:             while (my $line = <$fh>) {
  129:                 next if ($line=~/^\#/);
  130:                 chomp($line);
  131:                 my ($key,$val)=(split(/\s+/,$line,2));
  132:                 $cprtag{$key}=$val;
  133:             }
  134:             close($fh);
  135:         }
  136:     }
  137: # ----------------------------------------------------------- source copyrights
  138:     {
  139:         my $sourcecopyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
  140:                                   '/source_copyright.tab';
  141:         if ( open (my $fh,"<$sourcecopyrightfile") ) {
  142:             while (my $line = <$fh>) {
  143:                 next if ($line =~ /^\#/);
  144:                 chomp($line);
  145:                 my ($key,$val)=(split(/\s+/,$line,2));
  146:                 $scprtag{$key}=$val;
  147:             }
  148:             close($fh);
  149:         }
  150:     }
  151: 
  152: # -------------------------------------------------------------- domain designs
  153: 
  154:     my $filename;
  155:     my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
  156:     opendir(DIR,$designdir);
  157:     while ($filename=readdir(DIR)) {
  158: 	if ($filename!~/\.tab$/) { next; }
  159: 	my ($domain)=($filename=~/^(\w+)\./);
  160: 	{
  161: 	    my $designfile = $designdir.'/'.$filename;
  162: 	    if ( open (my $fh,"<$designfile") ) {
  163: 		while (my $line = <$fh>) {
  164: 		    next if ($line =~ /^\#/);
  165: 		    chomp($line);
  166: 		    my ($key,$val)=(split(/\=/,$line));
  167: 		    if ($val) { $designhash{$domain.'.'.$key}=$val; }
  168: 		}
  169: 		close($fh);
  170: 	    }
  171: 	}
  172: 
  173:     }
  174:     closedir(DIR);
  175: 
  176: 
  177: # ------------------------------------------------------------- file categories
  178:     {
  179:         my $categoryfile = $Apache::lonnet::perlvar{'lonTabDir'}.
  180:                                   '/filecategories.tab';
  181:         if ( open (my $fh,"<$categoryfile") ) {
  182: 	    while (my $line = <$fh>) {
  183: 		next if ($line =~ /^\#/);
  184: 		chomp($line);
  185:                 my ($extension,$category)=(split(/\s+/,$line,2));
  186:                 push @{$category_extensions{lc($category)}},$extension;
  187:             }
  188:             close($fh);
  189:         }
  190: 
  191:     }
  192: # ------------------------------------------------------------------ file types
  193:     {
  194:         my $typesfile = $Apache::lonnet::perlvar{'lonTabDir'}.
  195:                '/filetypes.tab';
  196:         if ( open (my $fh,"<$typesfile") ) {
  197:             while (my $line = <$fh>) {
  198: 		next if ($line =~ /^\#/);
  199: 		chomp($line);
  200:                 my ($ending,$emb,$mime,$descr)=split(/\s+/,$line,4);
  201:                 if ($descr ne '') {
  202:                     $fe{$ending}=lc($emb);
  203:                     $fd{$ending}=$descr;
  204:                     if ($mime ne 'unk') { $fm{$ending}=$mime; }
  205:                 }
  206:             }
  207:             close($fh);
  208:         }
  209:     }
  210:     &Apache::lonnet::logthis(
  211:               "<font color=yellow>INFO: Read file types</font>");
  212:     $readit=1;
  213:     }  # end of unless($readit) 
  214:     
  215: }
  216: 
  217: ###############################################################
  218: ##           HTML and Javascript Helper Functions            ##
  219: ###############################################################
  220: 
  221: =pod 
  222: 
  223: =head1 HTML and Javascript Functions
  224: 
  225: =over 4
  226: 
  227: =item * browser_and_searcher_javascript ()
  228: 
  229: X<browsing, javascript>X<searching, javascript>Returns a string
  230: containing javascript with two functions, C<openbrowser> and
  231: C<opensearcher>. Returned string does not contain E<lt>scriptE<gt>
  232: tags.
  233: 
  234: =item * openbrowser(formname,elementname,only,omit) [javascript]
  235: 
  236: inputs: formname, elementname, only, omit
  237: 
  238: formname and elementname indicate the name of the html form and name of
  239: the element that the results of the browsing selection are to be placed in. 
  240: 
  241: Specifying 'only' will restrict the browser to displaying only files
  242: with the given extension.  Can be a comma separated list.
  243: 
  244: Specifying 'omit' will restrict the browser to NOT displaying files
  245: with the given extension.  Can be a comma separated list.
  246: 
  247: =item * opensearcher(formname, elementname) [javascript]
  248: 
  249: Inputs: formname, elementname
  250: 
  251: formname and elementname specify the name of the html form and the name
  252: of the element the selection from the search results will be placed in.
  253: 
  254: =cut
  255: 
  256: sub browser_and_searcher_javascript {
  257:     my ($mode)=@_;
  258:     if (!defined($mode)) { $mode='edit'; }
  259:     my $resurl=&lastresurl();
  260:     return <<END;
  261: // <!-- BEGIN LON-CAPA Internal
  262:     var editbrowser = null;
  263:     function openbrowser(formname,elementname,only,omit,titleelement) {
  264:         var url = '$resurl/?';
  265:         if (editbrowser == null) {
  266:             url += 'launch=1&';
  267:         }
  268:         url += 'catalogmode=interactive&';
  269:         url += 'mode=$mode&';
  270:         url += 'form=' + formname + '&';
  271:         if (only != null) {
  272:             url += 'only=' + only + '&';
  273:         } else {
  274:             url += 'only=&';
  275: 	}
  276:         if (omit != null) {
  277:             url += 'omit=' + omit + '&';
  278:         } else {
  279:             url += 'omit=&';
  280: 	}
  281:         if (titleelement != null) {
  282:             url += 'titleelement=' + titleelement + '&';
  283:         } else {
  284: 	    url += 'titleelement=&';
  285: 	}
  286:         url += 'element=' + elementname + '';
  287:         var title = 'Browser';
  288:         var options = 'scrollbars=1,resizable=1,menubar=1,location=1';
  289:         options += ',width=700,height=600';
  290:         editbrowser = open(url,title,options,'1');
  291:         editbrowser.focus();
  292:     }
  293:     var editsearcher;
  294:     function opensearcher(formname,elementname,titleelement) {
  295:         var url = '/adm/searchcat?';
  296:         if (editsearcher == null) {
  297:             url += 'launch=1&';
  298:         }
  299:         url += 'catalogmode=interactive&';
  300:         url += 'mode=$mode&';
  301:         url += 'form=' + formname + '&';
  302:         if (titleelement != null) {
  303:             url += 'titleelement=' + titleelement + '&';
  304:         } else {
  305: 	    url += 'titleelement=&';
  306: 	}
  307:         url += 'element=' + elementname + '';
  308:         var title = 'Search';
  309:         var options = 'scrollbars=1,resizable=1,menubar=0';
  310:         options += ',width=700,height=600';
  311:         editsearcher = open(url,title,options,'1');
  312:         editsearcher.focus();
  313:     }
  314: // END LON-CAPA Internal -->
  315: END
  316: }
  317: 
  318: sub lastresurl {
  319:     if ($env{'environment.lastresurl'}) {
  320: 	return $env{'environment.lastresurl'}
  321:     } else {
  322: 	return '/res';
  323:     }
  324: }
  325: 
  326: sub storeresurl {
  327:     my $resurl=&Apache::lonnet::clutter(shift);
  328:     unless ($resurl=~/^\/res/) { return 0; }
  329:     $resurl=~s/\/$//;
  330:     &Apache::lonnet::put('environment',{'lastresurl' => $resurl});
  331:     &Apache::lonnet::appenv('environment.lastresurl' => $resurl);
  332:     return 1;
  333: }
  334: 
  335: sub studentbrowser_javascript {
  336:    unless (
  337:             (($env{'request.course.id'}) && 
  338:              (&Apache::lonnet::allowed('srm',$env{'request.course.id'})
  339: 	      || &Apache::lonnet::allowed('srm',$env{'request.course.id'}.
  340: 					  '/'.$env{'request.course.sec'})
  341: 	      ))
  342:          || ($env{'request.role'}=~/^(au|dc|su)/)
  343:           ) { return ''; }  
  344:    return (<<'ENDSTDBRW');
  345: <script type="text/javascript" language="Javascript" >
  346:     var stdeditbrowser;
  347:     function openstdbrowser(formname,uname,udom,roleflag) {
  348:         var url = '/adm/pickstudent?';
  349:         var filter;
  350:         eval('filter=document.'+formname+'.'+uname+'.value;');
  351:         if (filter != null) {
  352:            if (filter != '') {
  353:                url += 'filter='+filter+'&';
  354: 	   }
  355:         }
  356:         url += 'form=' + formname + '&unameelement='+uname+
  357:                                     '&udomelement='+udom;
  358: 	if (roleflag) { url+="&roles=1"; }
  359:         var title = 'Student_Browser';
  360:         var options = 'scrollbars=1,resizable=1,menubar=0';
  361:         options += ',width=700,height=600';
  362:         stdeditbrowser = open(url,title,options,'1');
  363:         stdeditbrowser.focus();
  364:     }
  365: </script>
  366: ENDSTDBRW
  367: }
  368: 
  369: sub selectstudent_link {
  370:    my ($form,$unameele,$udomele)=@_;
  371:    if ($env{'request.course.id'}) {  
  372:        if (!&Apache::lonnet::allowed('srm',$env{'request.course.id'})
  373: 	   && !&Apache::lonnet::allowed('srm',$env{'request.course.id'}.
  374: 					'/'.$env{'request.course.sec'})) {
  375: 	   return '';
  376:        }
  377:        return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
  378:         '","'.$udomele.'");'."'>".&mt('Select User')."</a>";
  379:    }
  380:    if ($env{'request.role'}=~/^(au|dc|su)/) {
  381:        return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
  382:         '","'.$udomele.'",1);'."'>".&mt('Select User')."</a>";
  383:    }
  384:    return '';
  385: }
  386: 
  387: sub coursebrowser_javascript {
  388:     my ($domainfilter)=@_;
  389:     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');
  390:    return (<<ENDSTDBRW);
  391: <script type="text/javascript" language="Javascript" >
  392:     var stdeditbrowser;
  393:     function opencrsbrowser(formname,uname,udom,desc,extra_element,multflag,crstype) {
  394:         var url = '/adm/pickcourse?';
  395:         var filter;
  396:         if (filter != null) {
  397:            if (filter != '') {
  398:                url += 'filter='+filter+'&';
  399: 	   }
  400:         }
  401:         var domainfilter='$domainfilter';
  402:         if (domainfilter != null) {
  403:            if (domainfilter != '') {
  404:                url += 'domainfilter='+domainfilter+'&';
  405: 	   }
  406:         }
  407:         url += 'form=' + formname + '&cnumelement='+uname+
  408: 	                            '&cdomelement='+udom+
  409:                                     '&cnameelement='+desc;
  410:         if (extra_element !=null && extra_element != '' && formname == 'rolechoice') {
  411:             url += '&roleelement='+extra_element;
  412:             if (domainfilter == null || domainfilter == '') {
  413:                 url += '&domainfilter='+extra_element;
  414:             }
  415:         }
  416:         if (multflag !=null && multflag != '') {
  417:             url += '&multiple='+multflag;
  418:         }
  419:         if (crstype == 'Course/Group') {
  420:             if (formname == 'cu') {
  421:                 crstype = document.cu.crstype.options[document.cu.crstype.selectedIndex].value; 
  422:                 if (crstype == "") {
  423:                     alert("$crs_or_grp_alert");
  424:                     return;
  425:                 }
  426:             }
  427:         }
  428:         if (crstype !=null && crstype != '') {
  429:             url += '&type='+crstype;
  430:         }
  431:         var title = 'Course_Browser';
  432:         var options = 'scrollbars=1,resizable=1,menubar=0';
  433:         options += ',width=700,height=600';
  434:         stdeditbrowser = open(url,title,options,'1');
  435:         stdeditbrowser.focus();
  436:     }
  437: </script>
  438: ENDSTDBRW
  439: }
  440: 
  441: sub selectcourse_link {
  442:    my ($form,$unameele,$udomele,$desc,$extra_element,$multflag,$selecttype)=@_;
  443:     return "<a href='".'javascript:opencrsbrowser("'.$form.'","'.$unameele.
  444:         '","'.$udomele.'","'.$desc.'","'.$extra_element.'","'.$multflag.'","'.$selecttype.'");'."'>".&mt('Select [_1]',$selecttype)."</a>";
  445: }
  446: 
  447: sub check_uncheck_jscript {
  448:     my $jscript = <<"ENDSCRT";
  449: function checkAll(field) {
  450:     if (field.length > 0) {
  451:         for (i = 0; i < field.length; i++) {
  452:             field[i].checked = true ;
  453:         }
  454:     } else {
  455:         field.checked = true
  456:     }
  457: }
  458:  
  459: function uncheckAll(field) {
  460:     if (field.length > 0) {
  461:         for (i = 0; i < field.length; i++) {
  462:             field[i].checked = false ;
  463:         }     } else {
  464:         field.checked = false ;
  465:     }
  466: }
  467: ENDSCRT
  468:     return $jscript;
  469: }
  470: 
  471: 
  472: =pod
  473: 
  474: =item * linked_select_forms(...)
  475: 
  476: linked_select_forms returns a string containing a <script></script> block
  477: and html for two <select> menus.  The select menus will be linked in that
  478: changing the value of the first menu will result in new values being placed
  479: in the second menu.  The values in the select menu will appear in alphabetical
  480: order.
  481: 
  482: linked_select_forms takes the following ordered inputs:
  483: 
  484: =over 4
  485: 
  486: =item * $formname, the name of the <form> tag
  487: 
  488: =item * $middletext, the text which appears between the <select> tags
  489: 
  490: =item * $firstdefault, the default value for the first menu
  491: 
  492: =item * $firstselectname, the name of the first <select> tag
  493: 
  494: =item * $secondselectname, the name of the second <select> tag
  495: 
  496: =item * $hashref, a reference to a hash containing the data for the menus.
  497: 
  498: =back 
  499: 
  500: Below is an example of such a hash.  Only the 'text', 'default', and 
  501: 'select2' keys must appear as stated.  keys(%menu) are the possible 
  502: values for the first select menu.  The text that coincides with the 
  503: first menu value is given in $menu{$choice1}->{'text'}.  The values 
  504: and text for the second menu are given in the hash pointed to by 
  505: $menu{$choice1}->{'select2'}.  
  506: 
  507:  my %menu = ( A1 => { text =>"Choice A1" ,
  508:                        default => "B3",
  509:                        select2 => { 
  510:                            B1 => "Choice B1",
  511:                            B2 => "Choice B2",
  512:                            B3 => "Choice B3",
  513:                            B4 => "Choice B4"
  514:                            }
  515:                    },
  516:                A2 => { text =>"Choice A2" ,
  517:                        default => "C2",
  518:                        select2 => { 
  519:                            C1 => "Choice C1",
  520:                            C2 => "Choice C2",
  521:                            C3 => "Choice C3"
  522:                            }
  523:                    },
  524:                A3 => { text =>"Choice A3" ,
  525:                        default => "D6",
  526:                        select2 => { 
  527:                            D1 => "Choice D1",
  528:                            D2 => "Choice D2",
  529:                            D3 => "Choice D3",
  530:                            D4 => "Choice D4",
  531:                            D5 => "Choice D5",
  532:                            D6 => "Choice D6",
  533:                            D7 => "Choice D7"
  534:                            }
  535:                    }
  536:                );
  537: 
  538: =cut
  539: 
  540: sub linked_select_forms {
  541:     my ($formname,
  542:         $middletext,
  543:         $firstdefault,
  544:         $firstselectname,
  545:         $secondselectname, 
  546:         $hashref
  547:         ) = @_;
  548:     my $second = "document.$formname.$secondselectname";
  549:     my $first = "document.$formname.$firstselectname";
  550:     # output the javascript to do the changing
  551:     my $result = '';
  552:     $result.="<script type=\"text/javascript\">\n";
  553:     $result.="var select2data = new Object();\n";
  554:     $" = '","';
  555:     my $debug = '';
  556:     foreach my $s1 (sort(keys(%$hashref))) {
  557:         $result.="select2data.d_$s1 = new Object();\n";        
  558:         $result.="select2data.d_$s1.def = new String('".
  559:             $hashref->{$s1}->{'default'}."');\n";
  560:         $result.="select2data.d_$s1.values = new Array(";        
  561:         my @s2values = sort(keys( %{ $hashref->{$s1}->{'select2'} } ));
  562:         $result.="\"@s2values\");\n";
  563:         $result.="select2data.d_$s1.texts = new Array(";        
  564:         my @s2texts;
  565:         foreach my $value (@s2values) {
  566:             push @s2texts, $hashref->{$s1}->{'select2'}->{$value};
  567:         }
  568:         $result.="\"@s2texts\");\n";
  569:     }
  570:     $"=' ';
  571:     $result.= <<"END";
  572: 
  573: function select1_changed() {
  574:     // Determine new choice
  575:     var newvalue = "d_" + $first.value;
  576:     // update select2
  577:     var values     = select2data[newvalue].values;
  578:     var texts      = select2data[newvalue].texts;
  579:     var select2def = select2data[newvalue].def;
  580:     var i;
  581:     // out with the old
  582:     for (i = 0; i < $second.options.length; i++) {
  583:         $second.options[i] = null;
  584:     }
  585:     // in with the nuclear
  586:     for (i=0;i<values.length; i++) {
  587:         $second.options[i] = new Option(values[i]);
  588:         $second.options[i].value = values[i];
  589:         $second.options[i].text = texts[i];
  590:         if (values[i] == select2def) {
  591:             $second.options[i].selected = true;
  592:         }
  593:     }
  594: }
  595: </script>
  596: END
  597:     # output the initial values for the selection lists
  598:     $result .= "<select size=\"1\" name=\"$firstselectname\" onchange=\"select1_changed()\">\n";
  599:     foreach my $value (sort(keys(%$hashref))) {
  600:         $result.="    <option value=\"$value\" ";
  601:         $result.=" selected=\"selected\" " if ($value eq $firstdefault);
  602:         $result.=">".&mt($hashref->{$value}->{'text'})."</option>\n";
  603:     }
  604:     $result .= "</select>\n";
  605:     my %select2 = %{$hashref->{$firstdefault}->{'select2'}};
  606:     $result .= $middletext;
  607:     $result .= "<select size=\"1\" name=\"$secondselectname\">\n";
  608:     my $seconddefault = $hashref->{$firstdefault}->{'default'};
  609:     foreach my $value (sort(keys(%select2))) {
  610:         $result.="    <option value=\"$value\" ";        
  611:         $result.=" selected=\"selected\" " if ($value eq $seconddefault);
  612:         $result.=">".&mt($select2{$value})."</option>\n";
  613:     }
  614:     $result .= "</select>\n";
  615:     #    return $debug;
  616:     return $result;
  617: }   #  end of sub linked_select_forms {
  618: 
  619: =pod
  620: 
  621: =item * help_open_topic($topic, $text, $stayOnPage, $width, $height)
  622: 
  623: Returns a string corresponding to an HTML link to the given help
  624: $topic, where $topic corresponds to the name of a .tex file in
  625: /home/httpd/html/adm/help/tex, with underscores replaced by
  626: spaces. 
  627: 
  628: $text will optionally be linked to the same topic, allowing you to
  629: link text in addition to the graphic. If you do not want to link
  630: text, but wish to specify one of the later parameters, pass an
  631: empty string. 
  632: 
  633: $stayOnPage is a value that will be interpreted as a boolean. If true,
  634: the link will not open a new window. If false, the link will open
  635: a new window using Javascript. (Default is false.) 
  636: 
  637: $width and $height are optional numerical parameters that will
  638: override the width and height of the popped up window, which may
  639: be useful for certain help topics with big pictures included. 
  640: 
  641: =cut
  642: 
  643: sub help_open_topic {
  644:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
  645:     $text = "" if (not defined $text);
  646:     $stayOnPage = 0 if (not defined $stayOnPage);
  647:     if ($env{'browser.interface'} eq 'textual' ||
  648: 	$env{'environment.remote'} eq 'off' ) {
  649: 	$stayOnPage=1;
  650:     }
  651:     $width = 350 if (not defined $width);
  652:     $height = 400 if (not defined $height);
  653:     my $filename = $topic;
  654:     $filename =~ s/ /_/g;
  655: 
  656:     my $template = "";
  657:     my $link;
  658: 
  659:     $topic=~s/\W/\_/g;
  660: 
  661:     if (!$stayOnPage)
  662:     {
  663: 	$link = "javascript:void(open('/adm/help/${filename}.hlp', 'Help_for_$topic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
  664:     }
  665:     else
  666:     {
  667: 	$link = "/adm/help/${filename}.hlp";
  668:     }
  669: 
  670:     # Add the text
  671:     if ($text ne "")
  672:     {
  673: 	$template .= 
  674:   "<table bgcolor='#3333AA' cellspacing='1' cellpadding='1' border='0'><tr>".
  675:   "<td bgcolor='#5555FF'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  676:     }
  677: 
  678:     # Add the graphic
  679:     my $title = &mt('Online Help');
  680:     my $helpicon=&lonhttpdurl("/adm/help/gif/smallHelp.gif");
  681:     $template .= <<"ENDTEMPLATE";
  682:  <a href="$link" title="$title"><img src="$helpicon" border="0" alt="(Help: $topic)" /></a>
  683: ENDTEMPLATE
  684:     if ($text ne '') { $template.='</td></tr></table>' };
  685:     return $template;
  686: 
  687: }
  688: 
  689: # This is a quicky function for Latex cheatsheet editing, since it 
  690: # appears in at least four places
  691: sub helpLatexCheatsheet {
  692:     my $other = shift;
  693:     my $addOther = '';
  694:     if ($other) {
  695: 	$addOther = Apache::loncommon::help_open_topic($other, shift,
  696: 						       undef, undef, 600) .
  697: 							   '</td><td>';
  698:     }
  699:     return '<table><tr><td>'.
  700: 	$addOther .
  701: 	&Apache::loncommon::help_open_topic("Greek_Symbols",'Greek Symbols',
  702: 					    undef,undef,600)
  703: 	.'</td><td>'.
  704: 	&Apache::loncommon::help_open_topic("Other_Symbols",'Other Symbols',
  705: 					    undef,undef,600)
  706: 	.'</td></tr></table>';
  707: }
  708: 
  709: sub help_open_menu {
  710:     my ($topic,$component_help,$faq,$bug,$stayOnPage,$width,$height,$text) = @_;
  711:     $text = "" if (not defined $text);
  712:     $stayOnPage = 0 if (not defined $stayOnPage);
  713:     if ($env{'browser.interface'} eq 'textual' ||
  714:         $env{'environment.remote'} eq 'off' ) {
  715:         $stayOnPage=1;
  716:     }
  717:     $width = 620 if (not defined $width);
  718:     $height = 600 if (not defined $height);
  719:     my $link='';
  720:     my $title = &mt('Get help');
  721:     my $origurl = $ENV{'REQUEST_URI'};
  722:     $origurl=~s|^/~|/priv/|;
  723:     my $timestamp = time;
  724:     foreach my $datum (\$topic,\$component_help,\$faq,\$bug,\$origurl) {
  725:         $$datum = &escape($$datum);
  726:     }
  727:     if (!$stayOnPage) {
  728:          $link = "javascript:helpMenu('open')";
  729:     } else {
  730:         $link = "javascript:helpMenu('display')";
  731:     }
  732:     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";
  733:     my $details_link = "/adm/helpmenu?page=body&amp;topic=$topic&amp;component_help=$component_help&amp;faq=$faq&amp;bug=$bug&amp;origurl=$origurl&amp;stamp=$timestamp";
  734:     my $template;
  735:     if ($text ne "") {
  736: 	$template .= 
  737:   "<table bgcolor='#CC3300' cellspacing='1' cellpadding='1' border='0'><tr>".
  738:   "<td bgcolor='#CC6600'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  739:     }
  740:     my $nothing=&Apache::lonhtmlcommon::javascript_nothing();
  741:     my $helpicon=&lonhttpdurl("/adm/lonIcons/helpgateway.gif");
  742:     my $start_page =
  743:         &Apache::loncommon::start_page('Help Menu', undef,
  744: 				       {'frameset'    => 1,
  745: 					'js_ready'    => 1,
  746: 					'add_entries' => {
  747: 					    'border' => '0',
  748: 					    'rows'   => "105,*",},});
  749:     my $end_page =
  750:         &Apache::loncommon::end_page({'frameset' => 1,
  751: 				      'js_ready' => 1,});
  752: 
  753:     $template .= <<"ENDTEMPLATE";
  754:  <script type="text/javascript">
  755: // <!-- BEGIN LON-CAPA Internal
  756: // <![CDATA[
  757: function helpMenu(target) {
  758:     var caller = this;
  759:     if (target == 'open') {
  760:         var newWindow = null;
  761:         try {
  762:             newWindow =  window.open($nothing,"helpmenu","HEIGHT=$height,WIDTH=$width,resizable=yes,scrollbars=yes" )
  763:         }
  764:         catch(error) {
  765:             writeHelp(caller);
  766:             return;
  767:         }
  768:         if (newWindow) {
  769:             caller = newWindow;
  770:         }
  771:     }
  772:     writeHelp(caller);
  773:     return;
  774: }
  775: function writeHelp(caller) {
  776:     caller.document.writeln('$start_page<frame name="bannerframe"  src="$banner_link" /><frame name="bodyframe" src="$details_link" /> $end_page')
  777:     caller.document.close()
  778:     caller.focus()
  779: }
  780: // ]]>
  781: // END LON-CAPA Internal -->
  782:  </script>
  783:  <a href="$link" title="$title"><img src="$helpicon" border="0" alt="(Help Menu)" /></a>
  784: ENDTEMPLATE
  785:     if ($component_help) {
  786: 	if (!$text) {
  787: 	    $template=&help_open_topic($component_help,undef,$stayOnPage,
  788: 				       $width,$height).' '.$template;
  789: 	} else {
  790: 	    my $help_text;
  791: 	    $help_text=&unescape($topic);
  792: 	    $template='<table><tr><td>'.
  793: 		&help_open_topic($component_help,$help_text,$stayOnPage,
  794: 				 $width,$height).'</td><td>'.$template.
  795: 				 '</td></tr></table>';
  796: 	}
  797:     }
  798:     if ($text ne '') { $template.='</td></tr></table>' };
  799:     return $template;
  800: }
  801: 
  802: sub help_open_bug {
  803:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
  804:     unless ($env{'user.adv'}) { return ''; }
  805:     unless ($Apache::lonnet::perlvar{'BugzillaHost'}) { return ''; }
  806:     $text = "" if (not defined $text);
  807:     $stayOnPage = 0 if (not defined $stayOnPage);
  808:     if ($env{'browser.interface'} eq 'textual' ||
  809: 	$env{'environment.remote'} eq 'off' ) {
  810: 	$stayOnPage=1;
  811:     }
  812:     $width = 600 if (not defined $width);
  813:     $height = 600 if (not defined $height);
  814: 
  815:     $topic=~s/\W+/\+/g;
  816:     my $link='';
  817:     my $template='';
  818:     my $url=$Apache::lonnet::perlvar{'BugzillaHost'}.'enter_bug.cgi?product=LON-CAPA&amp;bug_file_loc='.
  819: 	&escape($ENV{'REQUEST_URI'}).'&amp;component='.$topic;
  820:     if (!$stayOnPage)
  821:     {
  822: 	$link = "javascript:void(open('$url', 'Bugzilla', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
  823:     }
  824:     else
  825:     {
  826: 	$link = $url;
  827:     }
  828:     # Add the text
  829:     if ($text ne "")
  830:     {
  831: 	$template .= 
  832:   "<table bgcolor='#AA3333' cellspacing='1' cellpadding='1' border='0'><tr>".
  833:   "<td bgcolor='#FF5555'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  834:     }
  835: 
  836:     # Add the graphic
  837:     my $title = &mt('Report a Bug');
  838:     my $bugicon=&lonhttpdurl("/adm/lonMisc/smallBug.gif");
  839:     $template .= <<"ENDTEMPLATE";
  840:  <a href="$link" title="$title"><img src="$bugicon" border="0" alt="(Bug: $topic)" /></a>
  841: ENDTEMPLATE
  842:     if ($text ne '') { $template.='</td></tr></table>' };
  843:     return $template;
  844: 
  845: }
  846: 
  847: sub help_open_faq {
  848:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
  849:     unless ($env{'user.adv'}) { return ''; }
  850:     unless ($Apache::lonnet::perlvar{'FAQHost'}) { return ''; }
  851:     $text = "" if (not defined $text);
  852:     $stayOnPage = 0 if (not defined $stayOnPage);
  853:     if ($env{'browser.interface'} eq 'textual' ||
  854: 	$env{'environment.remote'} eq 'off' ) {
  855: 	$stayOnPage=1;
  856:     }
  857:     $width = 350 if (not defined $width);
  858:     $height = 400 if (not defined $height);
  859: 
  860:     $topic=~s/\W+/\+/g;
  861:     my $link='';
  862:     my $template='';
  863:     my $url=$Apache::lonnet::perlvar{'FAQHost'}.'/fom/cache/'.$topic.'.html';
  864:     if (!$stayOnPage)
  865:     {
  866: 	$link = "javascript:void(open('$url', 'FAQ-O-Matic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
  867:     }
  868:     else
  869:     {
  870: 	$link = $url;
  871:     }
  872: 
  873:     # Add the text
  874:     if ($text ne "")
  875:     {
  876: 	$template .= 
  877:   "<table bgcolor='#337733' cellspacing='1' cellpadding='1' border='0'><tr>".
  878:   "<td bgcolor='#448844'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  879:     }
  880: 
  881:     # Add the graphic
  882:     my $title = &mt('View the FAQ');
  883:     my $faqicon=&lonhttpdurl("/adm/lonMisc/smallFAQ.gif");
  884:     $template .= <<"ENDTEMPLATE";
  885:  <a href="$link" title="$title"><img src="$faqicon" border="0" alt="(FAQ: $topic)" /></a>
  886: ENDTEMPLATE
  887:     if ($text ne '') { $template.='</td></tr></table>' };
  888:     return $template;
  889: 
  890: }
  891: 
  892: ###############################################################
  893: ###############################################################
  894: 
  895: =pod
  896: 
  897: =item * change_content_javascript():
  898: 
  899: This and the next function allow you to create small sections of an
  900: otherwise static HTML page that you can update on the fly with
  901: Javascript, even in Netscape 4.
  902: 
  903: The Javascript fragment returned by this function (no E<lt>scriptE<gt> tag)
  904: must be written to the HTML page once. It will prove the Javascript
  905: function "change(name, content)". Calling the change function with the
  906: name of the section 
  907: you want to update, matching the name passed to C<changable_area>, and
  908: the new content you want to put in there, will put the content into
  909: that area.
  910: 
  911: B<Note>: Netscape 4 only reserves enough space for the changable area
  912: to contain room for the original contents. You need to "make space"
  913: for whatever changes you wish to make, and be B<sure> to check your
  914: code in Netscape 4. This feature in Netscape 4 is B<not> powerful;
  915: it's adequate for updating a one-line status display, but little more.
  916: This script will set the space to 100% width, so you only need to
  917: worry about height in Netscape 4.
  918: 
  919: Modern browsers are much less limiting, and if you can commit to the
  920: user not using Netscape 4, this feature may be used freely with
  921: pretty much any HTML.
  922: 
  923: =cut
  924: 
  925: sub change_content_javascript {
  926:     # If we're on Netscape 4, we need to use Layer-based code
  927:     if ($env{'browser.type'} eq 'netscape' &&
  928: 	$env{'browser.version'} =~ /^4\./) {
  929: 	return (<<NETSCAPE4);
  930: 	function change(name, content) {
  931: 	    doc = document.layers[name+"___escape"].layers[0].document;
  932: 	    doc.open();
  933: 	    doc.write(content);
  934: 	    doc.close();
  935: 	}
  936: NETSCAPE4
  937:     } else {
  938: 	# Otherwise, we need to use semi-standards-compliant code
  939: 	# (technically, "innerHTML" isn't standard but the equivalent
  940: 	# is really scary, and every useful browser supports it
  941: 	return (<<DOMBASED);
  942: 	function change(name, content) {
  943: 	    element = document.getElementById(name);
  944: 	    element.innerHTML = content;
  945: 	}
  946: DOMBASED
  947:     }
  948: }
  949: 
  950: =pod
  951: 
  952: =item * changable_area($name, $origContent):
  953: 
  954: This provides a "changable area" that can be modified on the fly via
  955: the Javascript code provided in C<change_content_javascript>. $name is
  956: the name you will use to reference the area later; do not repeat the
  957: same name on a given HTML page more then once. $origContent is what
  958: the area will originally contain, which can be left blank.
  959: 
  960: =cut
  961: 
  962: sub changable_area {
  963:     my ($name, $origContent) = @_;
  964: 
  965:     if ($env{'browser.type'} eq 'netscape' &&
  966: 	$env{'browser.version'} =~ /^4\./) {
  967: 	# If this is netscape 4, we need to use the Layer tag
  968: 	return "<ilayer width='100%' id='${name}___escape' overflow='none'><layer width='100%' id='$name' overflow='none'>$origContent</layer></ilayer>";
  969:     } else {
  970: 	return "<span id='$name'>$origContent</span>";
  971:     }
  972: }
  973: 
  974: =pod
  975: 
  976: =back
  977: 
  978: =head1 Excel and CSV file utility routines
  979: 
  980: =over 4
  981: 
  982: =cut
  983: 
  984: ###############################################################
  985: ###############################################################
  986: 
  987: =pod
  988: 
  989: =item * csv_translate($text) 
  990: 
  991: Translate $text to allow it to be output as a 'comma separated values' 
  992: format.
  993: 
  994: =cut
  995: 
  996: ###############################################################
  997: ###############################################################
  998: sub csv_translate {
  999:     my $text = shift;
 1000:     $text =~ s/\"/\"\"/g;
 1001:     $text =~ s/\n/ /g;
 1002:     return $text;
 1003: }
 1004: 
 1005: ###############################################################
 1006: ###############################################################
 1007: 
 1008: =pod
 1009: 
 1010: =item * define_excel_formats
 1011: 
 1012: Define some commonly used Excel cell formats.
 1013: 
 1014: Currently supported formats:
 1015: 
 1016: =over 4
 1017: 
 1018: =item header
 1019: 
 1020: =item bold
 1021: 
 1022: =item h1
 1023: 
 1024: =item h2
 1025: 
 1026: =item h3
 1027: 
 1028: =item h4
 1029: 
 1030: =item i
 1031: 
 1032: =item date
 1033: 
 1034: =back
 1035: 
 1036: Inputs: $workbook
 1037: 
 1038: Returns: $format, a hash reference.
 1039: 
 1040: =cut
 1041: 
 1042: ###############################################################
 1043: ###############################################################
 1044: sub define_excel_formats {
 1045:     my ($workbook) = @_;
 1046:     my $format;
 1047:     $format->{'header'} = $workbook->add_format(bold      => 1, 
 1048:                                                 bottom    => 1,
 1049:                                                 align     => 'center');
 1050:     $format->{'bold'} = $workbook->add_format(bold=>1);
 1051:     $format->{'h1'}   = $workbook->add_format(bold=>1, size=>18);
 1052:     $format->{'h2'}   = $workbook->add_format(bold=>1, size=>16);
 1053:     $format->{'h3'}   = $workbook->add_format(bold=>1, size=>14);
 1054:     $format->{'h4'}   = $workbook->add_format(bold=>1, size=>12);
 1055:     $format->{'i'}    = $workbook->add_format(italic=>1);
 1056:     $format->{'date'} = $workbook->add_format(num_format=>
 1057:                                             'mm/dd/yyyy hh:mm:ss');
 1058:     return $format;
 1059: }
 1060: 
 1061: ###############################################################
 1062: ###############################################################
 1063: 
 1064: =pod
 1065: 
 1066: =item * create_workbook
 1067: 
 1068: Create an Excel worksheet.  If it fails, output message on the
 1069: request object and return undefs.
 1070: 
 1071: Inputs: Apache request object
 1072: 
 1073: Returns (undef) on failure, 
 1074:     Excel worksheet object, scalar with filename, and formats 
 1075:     from &Apache::loncommon::define_excel_formats on success
 1076: 
 1077: =cut
 1078: 
 1079: ###############################################################
 1080: ###############################################################
 1081: sub create_workbook {
 1082:     my ($r) = @_;
 1083:         #
 1084:     # Create the excel spreadsheet
 1085:     my $filename = '/prtspool/'.
 1086:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
 1087:         time.'_'.rand(1000000000).'.xls';
 1088:     my $workbook  = Spreadsheet::WriteExcel->new('/home/httpd'.$filename);
 1089:     if (! defined($workbook)) {
 1090:         $r->log_error("Error creating excel spreadsheet $filename: $!");
 1091:         $r->print('<p>'.&mt("Unable to create new Excel file.  ".
 1092:                             "This error has been logged.  ".
 1093:                             "Please alert your LON-CAPA administrator").
 1094:                   '</p>');
 1095:         return (undef);
 1096:     }
 1097:     #
 1098:     $workbook->set_tempdir('/home/httpd/perl/tmp');
 1099:     #
 1100:     my $format = &Apache::loncommon::define_excel_formats($workbook);
 1101:     return ($workbook,$filename,$format);
 1102: }
 1103: 
 1104: ###############################################################
 1105: ###############################################################
 1106: 
 1107: =pod
 1108: 
 1109: =item * create_text_file
 1110: 
 1111: Create a file to write to and eventually make available to the usre.
 1112: If file creation fails, outputs an error message on the request object and 
 1113: return undefs.
 1114: 
 1115: Inputs: Apache request object, and file suffix
 1116: 
 1117: Returns (undef) on failure, 
 1118:     Filehandle and filename on success.
 1119: 
 1120: =cut
 1121: 
 1122: ###############################################################
 1123: ###############################################################
 1124: sub create_text_file {
 1125:     my ($r,$suffix) = @_;
 1126:     if (! defined($suffix)) { $suffix = 'txt'; };
 1127:     my $fh;
 1128:     my $filename = '/prtspool/'.
 1129:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
 1130:         time.'_'.rand(1000000000).'.'.$suffix;
 1131:     $fh = Apache::File->new('>/home/httpd'.$filename);
 1132:     if (! defined($fh)) {
 1133:         $r->log_error("Couldn't open $filename for output $!");
 1134:         $r->print("Problems occured in creating the output file.  ".
 1135:                   "This error has been logged.  ".
 1136:                   "Please alert your LON-CAPA administrator.");
 1137:     }
 1138:     return ($fh,$filename)
 1139: }
 1140: 
 1141: 
 1142: =pod 
 1143: 
 1144: =back
 1145: 
 1146: =cut
 1147: 
 1148: ###############################################################
 1149: ##        Home server <option> list generating code          ##
 1150: ###############################################################
 1151: 
 1152: =pod
 1153: 
 1154: =head1 Home Server option list generating code
 1155: 
 1156: =over 4
 1157: 
 1158: =item * get_domains()
 1159: 
 1160: Returns an array containing each of the domains listed in the hosts.tab
 1161: file.
 1162: 
 1163: =cut
 1164: 
 1165: #-------------------------------------------
 1166: sub get_domains {
 1167:     # The code below was stolen from "The Perl Cookbook", p 102, 1st ed.
 1168:     my @domains;
 1169:     my %seen;
 1170:     foreach my $dom (sort(values(%Apache::lonnet::hostdom))) {
 1171: 	push(@domains,$dom) unless $seen{$dom}++;
 1172:     }
 1173:     return @domains;
 1174: }
 1175: 
 1176: # ------------------------------------------
 1177: 
 1178: sub domain_select {
 1179:     my ($name,$value,$multiple)=@_;
 1180:     my %domains=map { 
 1181: 	$_ => $_.' '.$Apache::lonnet::domaindescription{$_} 
 1182:     } &get_domains;
 1183:     if ($multiple) {
 1184: 	$domains{''}=&mt('Any domain');
 1185: 	return &multiple_select_form($name,$value,4,\%domains);
 1186:     } else {
 1187: 	return &select_form($name,$value,%domains);
 1188:     }
 1189: }
 1190: 
 1191: #-------------------------------------------
 1192: 
 1193: =pod
 1194: 
 1195: =item * multiple_select_form($name,$value,$size,$hash,$order)
 1196: 
 1197: Returns a string containing a <select> element int multiple mode
 1198: 
 1199: 
 1200: Args:
 1201:   $name - name of the <select> element
 1202:   $value - sclara or array ref of values that should already be selected
 1203:   $size - number of rows long the select element is
 1204:   $hash - the elements should be 'option' => 'shown text'
 1205:           (shown text should already have been &mt())
 1206:   $order - (optional) array ref of the order to show the elments in
 1207: 
 1208: =cut
 1209: 
 1210: #-------------------------------------------
 1211: sub multiple_select_form {
 1212:     my ($name,$value,$size,$hash,$order)=@_;
 1213:     my %selected = map { $_ => 1 } ref($value)?@{$value}:($value);
 1214:     my $output='';
 1215:     if (! defined($size)) {
 1216:         $size = 4;
 1217:         if (scalar(keys(%$hash))<4) {
 1218:             $size = scalar(keys(%$hash));
 1219:         }
 1220:     }
 1221:     $output.="\n<select name='$name' size='$size' multiple='1'>";
 1222:     my @order = ref($order) ? @$order
 1223:                             : sort(keys(%$hash));
 1224:     foreach my $key (@order) {
 1225:         $output.='<option value="'.&HTML::Entities::encode($key,'"<>&').'" ';
 1226:         $output.='selected="selected" ' if ($selected{$key});
 1227:         $output.='>'.$hash->{$key}."</option>\n";
 1228:     }
 1229:     $output.="</select>\n";
 1230:     return $output;
 1231: }
 1232: 
 1233: #-------------------------------------------
 1234: 
 1235: =pod
 1236: 
 1237: =item * select_form($defdom,$name,%hash)
 1238: 
 1239: Returns a string containing a <select name='$name' size='1'> form to 
 1240: allow a user to select options from a hash option_name => displayed text.  
 1241: See lonrights.pm for an example invocation and use.
 1242: 
 1243: =cut
 1244: 
 1245: #-------------------------------------------
 1246: sub select_form {
 1247:     my ($def,$name,%hash) = @_;
 1248:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
 1249:     my @keys;
 1250:     if (exists($hash{'select_form_order'})) {
 1251: 	@keys=@{$hash{'select_form_order'}};
 1252:     } else {
 1253: 	@keys=sort(keys(%hash));
 1254:     }
 1255:     foreach my $key (@keys) {
 1256:         $selectform.=
 1257: 	    '<option value="'.&HTML::Entities::encode($key,'"<>&').'" '.
 1258:             ($key eq $def ? 'selected="selected" ' : '').
 1259:                 ">".&mt($hash{$key})."</option>\n";
 1260:     }
 1261:     $selectform.="</select>";
 1262:     return $selectform;
 1263: }
 1264: 
 1265: sub gradeleveldescription {
 1266:     my $gradelevel=shift;
 1267:     my %gradelevels=(0 => 'Not specified',
 1268: 		     1 => 'Grade 1',
 1269: 		     2 => 'Grade 2',
 1270: 		     3 => 'Grade 3',
 1271: 		     4 => 'Grade 4',
 1272: 		     5 => 'Grade 5',
 1273: 		     6 => 'Grade 6',
 1274: 		     7 => 'Grade 7',
 1275: 		     8 => 'Grade 8',
 1276: 		     9 => 'Grade 9',
 1277: 		     10 => 'Grade 10',
 1278: 		     11 => 'Grade 11',
 1279: 		     12 => 'Grade 12',
 1280: 		     13 => 'Grade 13',
 1281: 		     14 => '100 Level',
 1282: 		     15 => '200 Level',
 1283: 		     16 => '300 Level',
 1284: 		     17 => '400 Level',
 1285: 		     18 => 'Graduate Level');
 1286:     return &mt($gradelevels{$gradelevel});
 1287: }
 1288: 
 1289: sub select_level_form {
 1290:     my ($deflevel,$name)=@_;
 1291:     unless ($deflevel) { $deflevel=0; }
 1292:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
 1293:     for (my $i=0; $i<=18; $i++) {
 1294:         $selectform.="<option value=\"$i\" ".
 1295:             ($i==$deflevel ? 'selected="selected" ' : '').
 1296:                 ">".&gradeleveldescription($i)."</option>\n";
 1297:     }
 1298:     $selectform.="</select>";
 1299:     return $selectform;
 1300: }
 1301: 
 1302: #-------------------------------------------
 1303: 
 1304: =pod
 1305: 
 1306: =item * select_dom_form($defdom,$name,$includeempty)
 1307: 
 1308: Returns a string containing a <select name='$name' size='1'> form to 
 1309: allow a user to select the domain to preform an operation in.  
 1310: See loncreateuser.pm for an example invocation and use.
 1311: 
 1312: If the $includeempty flag is set, it also includes an empty choice ("no domain
 1313: selected");
 1314: 
 1315: =cut
 1316: 
 1317: #-------------------------------------------
 1318: sub select_dom_form {
 1319:     my ($defdom,$name,$includeempty) = @_;
 1320:     my @domains = get_domains();
 1321:     if ($includeempty) { @domains=('',@domains); }
 1322:     my $selectdomain = "<select name=\"$name\" size=\"1\">\n";
 1323:     foreach my $dom (@domains) {
 1324:         $selectdomain.="<option value=\"$dom\" ".
 1325:             ($dom eq $defdom ? 'selected="selected" ' : '').
 1326:                 ">$dom</option>\n";
 1327:     }
 1328:     $selectdomain.="</select>";
 1329:     return $selectdomain;
 1330: }
 1331: 
 1332: #-------------------------------------------
 1333: 
 1334: =pod
 1335: 
 1336: =item * get_library_servers($domain)
 1337: 
 1338: Returns a hash which contains keys like '103l3' and values like 
 1339: 'kirk.lite.msu.edu'.  All of the keys will be for machines in the
 1340: given $domain.
 1341: 
 1342: =cut
 1343: 
 1344: #-------------------------------------------
 1345: sub get_library_servers {
 1346:     my $domain = shift;
 1347:     my %library_servers;
 1348:     foreach my $hostid (keys(%Apache::lonnet::libserv)) {
 1349:         if ($Apache::lonnet::hostdom{$hostid} eq $domain) {
 1350:             $library_servers{$hostid} = $Apache::lonnet::hostname{$hostid};
 1351:         }
 1352:     }
 1353:     return %library_servers;
 1354: }
 1355: 
 1356: #-------------------------------------------
 1357: 
 1358: =pod
 1359: 
 1360: =item * home_server_option_list($domain)
 1361: 
 1362: returns a string which contains an <option> list to be used in a 
 1363: <select> form input.  See loncreateuser.pm for an example.
 1364: 
 1365: =cut
 1366: 
 1367: #-------------------------------------------
 1368: sub home_server_option_list {
 1369:     my $domain = shift;
 1370:     my %servers = &get_library_servers($domain);
 1371:     my $result = '';
 1372:     foreach my $hostid (sort(keys(%servers))) {
 1373:         $result.=
 1374:             '<option value="'.$hostid.'">'.
 1375: 	    $hostid.' '.$servers{$hostid}."</option>\n";
 1376:     }
 1377:     return $result;
 1378: }
 1379: 
 1380: =pod
 1381: 
 1382: =back
 1383: 
 1384: =cut
 1385: 
 1386: ###############################################################
 1387: ##                  Decoding User Agent                      ##
 1388: ###############################################################
 1389: 
 1390: =pod
 1391: 
 1392: =head1 Decoding the User Agent
 1393: 
 1394: =over 4
 1395: 
 1396: =item * &decode_user_agent()
 1397: 
 1398: Inputs: $r
 1399: 
 1400: Outputs:
 1401: 
 1402: =over 4
 1403: 
 1404: =item * $httpbrowser
 1405: 
 1406: =item * $clientbrowser
 1407: 
 1408: =item * $clientversion
 1409: 
 1410: =item * $clientmathml
 1411: 
 1412: =item * $clientunicode
 1413: 
 1414: =item * $clientos
 1415: 
 1416: =back
 1417: 
 1418: =back 
 1419: 
 1420: =cut
 1421: 
 1422: ###############################################################
 1423: ###############################################################
 1424: sub decode_user_agent {
 1425:     my ($r)=@_;
 1426:     my @browsertype=split(/\&/,$Apache::lonnet::perlvar{"lonBrowsDet"});
 1427:     my %mathcap=split(/\&/,$$Apache::lonnet::perlvar{"lonMathML"});
 1428:     my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
 1429:     if (!$httpbrowser && $r) { $httpbrowser=$r->header_in('User-Agent'); }
 1430:     my $clientbrowser='unknown';
 1431:     my $clientversion='0';
 1432:     my $clientmathml='';
 1433:     my $clientunicode='0';
 1434:     for (my $i=0;$i<=$#browsertype;$i++) {
 1435:         my ($bname,$match,$notmatch,$vreg,$minv,$univ)=split(/\:/,$browsertype[$i]);
 1436: 	if (($httpbrowser=~/$match/i)  && ($httpbrowser!~/$notmatch/i)) {
 1437: 	    $clientbrowser=$bname;
 1438:             $httpbrowser=~/$vreg/i;
 1439: 	    $clientversion=$1;
 1440:             $clientmathml=($clientversion>=$minv);
 1441:             $clientunicode=($clientversion>=$univ);
 1442: 	}
 1443:     }
 1444:     my $clientos='unknown';
 1445:     if (($httpbrowser=~/linux/i) ||
 1446:         ($httpbrowser=~/unix/i) ||
 1447:         ($httpbrowser=~/ux/i) ||
 1448:         ($httpbrowser=~/solaris/i)) { $clientos='unix'; }
 1449:     if (($httpbrowser=~/vax/i) ||
 1450:         ($httpbrowser=~/vms/i)) { $clientos='vms'; }
 1451:     if ($httpbrowser=~/next/i) { $clientos='next'; }
 1452:     if (($httpbrowser=~/mac/i) ||
 1453:         ($httpbrowser=~/powerpc/i)) { $clientos='mac'; }
 1454:     if ($httpbrowser=~/win/i) { $clientos='win'; }
 1455:     if ($httpbrowser=~/embed/i) { $clientos='pda'; }
 1456:     return ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
 1457:             $clientunicode,$clientos,);
 1458: }
 1459: 
 1460: ###############################################################
 1461: ##    Authentication changing form generation subroutines    ##
 1462: ###############################################################
 1463: ##
 1464: ## All of the authform_xxxxxxx subroutines take their inputs in a
 1465: ## hash, and have reasonable default values.
 1466: ##
 1467: ##    formname = the name given in the <form> tag.
 1468: #-------------------------------------------
 1469: 
 1470: =pod
 1471: 
 1472: =head1 Authentication Routines
 1473: 
 1474: =over 4
 1475: 
 1476: =item * authform_xxxxxx
 1477: 
 1478: The authform_xxxxxx subroutines provide javascript and html forms which 
 1479: handle some of the conveniences required for authentication forms.  
 1480: This is not an optimal method, but it works.  
 1481: 
 1482: See loncreateuser.pm for invocation and use examples.
 1483: 
 1484: =over 4
 1485: 
 1486: =item * authform_header
 1487: 
 1488: =item * authform_authorwarning
 1489: 
 1490: =item * authform_nochange
 1491: 
 1492: =item * authform_kerberos
 1493: 
 1494: =item * authform_internal
 1495: 
 1496: =item * authform_filesystem
 1497: 
 1498: =back
 1499: 
 1500: =back 
 1501: 
 1502: =cut
 1503: 
 1504: #-------------------------------------------
 1505: sub authform_header{  
 1506:     my %in = (
 1507:         formname => 'cu',
 1508:         kerb_def_dom => '',
 1509:         @_,
 1510:     );
 1511:     $in{'formname'} = 'document.' . $in{'formname'};
 1512:     my $result='';
 1513: 
 1514: #---------------------------------------------- Code for upper case translation
 1515:     my $Javascript_toUpperCase;
 1516:     unless ($in{kerb_def_dom}) {
 1517:         $Javascript_toUpperCase =<<"END";
 1518:         switch (choice) {
 1519:            case 'krb': currentform.elements[choicearg].value =
 1520:                currentform.elements[choicearg].value.toUpperCase();
 1521:                break;
 1522:            default:
 1523:         }
 1524: END
 1525:     } else {
 1526:         $Javascript_toUpperCase = "";
 1527:     }
 1528: 
 1529:     my $radioval = "'nochange'";
 1530:     if (exists($in{'curr_authtype'}) &&
 1531:         defined($in{'curr_authtype'}) &&
 1532:         $in{'curr_authtype'} ne '') {
 1533:         $radioval = "'$in{'curr_authtype'}arg'";
 1534:     }
 1535:     my $argfield = 'null';
 1536:     if ( grep/^mode$/,(keys %in) ) {
 1537:         if ($in{'mode'} eq 'modifycourse')  {
 1538:             if ( grep/^curr_authtype$/,(keys %in) ) {
 1539:                 $radioval = "'$in{'curr_authtype'}'";
 1540:             }
 1541:             if ( grep/^curr_autharg$/,(keys %in) ) {
 1542:                 unless ($in{'curr_autharg'} eq '') {
 1543:                     $argfield = "'$in{'curr_autharg'}'";
 1544:                 }
 1545:             }
 1546:         }
 1547:     }
 1548: 
 1549:     $result.=<<"END";
 1550: var current = new Object();
 1551: current.radiovalue = $radioval;
 1552: current.argfield = $argfield;
 1553: 
 1554: function changed_radio(choice,currentform) {
 1555:     var choicearg = choice + 'arg';
 1556:     // If a radio button in changed, we need to change the argfield
 1557:     if (current.radiovalue != choice) {
 1558:         current.radiovalue = choice;
 1559:         if (current.argfield != null) {
 1560:             currentform.elements[current.argfield].value = '';
 1561:         }
 1562:         if (choice == 'nochange') {
 1563:             current.argfield = null;
 1564:         } else {
 1565:             current.argfield = choicearg;
 1566:             switch(choice) {
 1567:                 case 'krb': 
 1568:                     currentform.elements[current.argfield].value = 
 1569:                         "$in{'kerb_def_dom'}";
 1570:                 break;
 1571:               default:
 1572:                 break;
 1573:             }
 1574:         }
 1575:     }
 1576:     return;
 1577: }
 1578: 
 1579: function changed_text(choice,currentform) {
 1580:     var choicearg = choice + 'arg';
 1581:     if (currentform.elements[choicearg].value !='') {
 1582:         $Javascript_toUpperCase
 1583:         // clear old field
 1584:         if ((current.argfield != choicearg) && (current.argfield != null)) {
 1585:             currentform.elements[current.argfield].value = '';
 1586:         }
 1587:         current.argfield = choicearg;
 1588:     }
 1589:     set_auth_radio_buttons(choice,currentform);
 1590:     return;
 1591: }
 1592: 
 1593: function set_auth_radio_buttons(newvalue,currentform) {
 1594:     var i=0;
 1595:     while (i < currentform.login.length) {
 1596:         if (currentform.login[i].value == newvalue) { break; }
 1597:         i++;
 1598:     }
 1599:     if (i == currentform.login.length) {
 1600:         return;
 1601:     }
 1602:     current.radiovalue = newvalue;
 1603:     currentform.login[i].checked = true;
 1604:     return;
 1605: }
 1606: END
 1607:     return $result;
 1608: }
 1609: 
 1610: sub authform_authorwarning{
 1611:     my $result='';
 1612:     $result='<i>'.
 1613:         &mt('As a general rule, only authors or co-authors should be '.
 1614:             'filesystem authenticated '.
 1615:             '(which allows access to the server filesystem).')."</i>\n";
 1616:     return $result;
 1617: }
 1618: 
 1619: sub authform_nochange{  
 1620:     my %in = (
 1621:               formname => 'document.cu',
 1622:               kerb_def_dom => 'MSU.EDU',
 1623:               @_,
 1624:           );
 1625:     my $result = '<label>'.&mt('[_1] Do not change login data',
 1626:                      '<input type="radio" name="login" value="nochange" '.
 1627:                      'checked="checked" onclick="'.
 1628:             "javascript:changed_radio('nochange',$in{'formname'});".'" />').
 1629: 	    '</label>';
 1630:     return $result;
 1631: }
 1632: 
 1633: sub authform_kerberos{  
 1634:     my %in = (
 1635:               formname => 'document.cu',
 1636:               kerb_def_dom => 'MSU.EDU',
 1637:               kerb_def_auth => 'krb4',
 1638:               @_,
 1639:               );
 1640:     my ($check4,$check5,$krbarg);
 1641:     if ($in{'kerb_def_auth'} eq 'krb5') {
 1642:        $check5 = " checked=\"on\"";
 1643:     } else {
 1644:        $check4 = " checked=\"on\"";
 1645:     }
 1646:     $krbarg = $in{'kerb_def_dom'};
 1647: 
 1648:     my $krbcheck = "";
 1649:     if ( grep/^curr_authtype$/,(keys %in) ) {
 1650:         if ($in{'curr_authtype'} =~ m/^krb/) {
 1651:             $krbcheck = " checked=\"on\"";
 1652:             if ( grep/^curr_autharg$/,(keys %in) ) {
 1653:                 $krbarg = $in{'curr_autharg'};
 1654:             }
 1655:         }
 1656:     }
 1657: 
 1658:     my $jscall = "javascript:changed_radio('krb',$in{'formname'});";
 1659:     my $result .= &mt
 1660:         ('[_1] Kerberos authenticated with domain [_2] '.
 1661:          '[_3] Version 4 [_4] Version 5 [_5]',
 1662:          '<label><input type="radio" name="login" value="krb" '.
 1663:              'onclick="'.$jscall.'" onchange="'.$jscall.'"'.$krbcheck.' />',
 1664:          '</label><input type="text" size="10" name="krbarg" '.
 1665:              'value="'.$krbarg.'" '.
 1666:              'onchange="'.$jscall.'" />',
 1667:          '<label><input type="radio" name="krbver" value="4" '.$check4.' />',
 1668:          '</label><label><input type="radio" name="krbver" value="5" '.$check5.' />',
 1669: 	 '</label>');
 1670:     return $result;
 1671: }
 1672: 
 1673: sub authform_internal{  
 1674:     my %args = (
 1675:                 formname => 'document.cu',
 1676:                 kerb_def_dom => 'MSU.EDU',
 1677:                 @_,
 1678:                 );
 1679: 
 1680:     my $intcheck = "";
 1681:     my $intarg = 'value=""';
 1682:     if ( grep/^curr_authtype$/,(keys %args) ) {
 1683:         if ($args{'curr_authtype'} eq 'int') {
 1684:             $intcheck = " checked=\"on\"";
 1685:             if ( grep/^curr_autharg$/,(keys %args) ) {
 1686:                 $intarg = "value=\"$args{'curr_autharg'}\"";
 1687:             }
 1688:         }
 1689:     }
 1690: 
 1691:     my $jscall = "javascript:changed_radio('int',$args{'formname'});";
 1692:     my $result.=&mt
 1693:         ('[_1] Internally authenticated (with initial password [_2])',
 1694:          '<label><input type="radio" name="login" value="int" '.$intcheck.
 1695:              ' onchange="'.$jscall.'" onclick="'.$jscall.'" />',
 1696:          '</label><input type="text" size="10" name="intarg" '.$intarg.
 1697:              ' onchange="'.$jscall.'" />');
 1698:     return $result;
 1699: }
 1700: 
 1701: sub authform_local{  
 1702:     my %in = (
 1703:               formname => 'document.cu',
 1704:               kerb_def_dom => 'MSU.EDU',
 1705:               @_,
 1706:               );
 1707: 
 1708:     my $loccheck = "";
 1709:     my $locarg = 'value=""';
 1710:     if ( grep/^curr_authtype$/,(keys %in) ) {
 1711:         if ($in{'curr_authtype'} eq 'loc') {
 1712:             $loccheck = " checked=\"on\"";
 1713:             if ( grep/^curr_autharg$/,(keys %in) ) {
 1714:                 $locarg = "value=\"$in{'curr_autharg'}\"";
 1715:             }
 1716:         }
 1717:     }
 1718: 
 1719:     my $jscall = "javascript:changed_radio('loc',$in{'formname'});";
 1720:     my $result.=&mt('[_1] Local Authentication with argument [_2]',
 1721:                     '<label><input type="radio" name="login" value="loc" '.$loccheck.
 1722:                         ' onchange="'.$jscall.'" onclick="'.$jscall.'" />',
 1723:                     '</label><input type="text" size="10" name="locarg" '.$locarg.
 1724:                         ' onchange="'.$jscall.'" />');
 1725:     return $result;
 1726: }
 1727: 
 1728: sub authform_filesystem{  
 1729:     my %in = (
 1730:               formname => 'document.cu',
 1731:               kerb_def_dom => 'MSU.EDU',
 1732:               @_,
 1733:               );
 1734:     my $jscall = "javascript:changed_radio('fsys',$in{'formname'});";
 1735:     my $result.= &mt
 1736:         ('[_1] Filesystem Authenticated (with initial password [_2])',
 1737:          '<label><input type="radio" name="login" value="fsys" '.
 1738:          'onchange="'.$jscall.'" onclick="'.$jscall.'" />',
 1739:          '</label><input type="text" size="10" name="fsysarg" value="" '.
 1740:                   'onchange="'.$jscall.'" />');
 1741:     return $result;
 1742: }
 1743: 
 1744: ###############################################################
 1745: ##    Get Authentication Defaults for Domain                 ##
 1746: ###############################################################
 1747: 
 1748: =pod
 1749: 
 1750: =head1 Domains and Authentication
 1751: 
 1752: Returns default authentication type and an associated argument as
 1753: listed in file 'domain.tab'.
 1754: 
 1755: =over 4
 1756: 
 1757: =item * get_auth_defaults
 1758: 
 1759: get_auth_defaults($target_domain) returns the default authentication
 1760: type and an associated argument (initial password or a kerberos domain).
 1761: These values are stored in lonTabs/domain.tab
 1762: 
 1763: ($def_auth, $def_arg) = &get_auth_defaults($target_domain);
 1764: 
 1765: If target_domain is not found in domain.tab, returns nothing ('').
 1766: 
 1767: =cut
 1768: 
 1769: #-------------------------------------------
 1770: sub get_auth_defaults {
 1771:     my $domain=shift;
 1772:     return ($Apache::lonnet::domain_auth_def{$domain},$Apache::lonnet::domain_auth_arg_def{$domain});
 1773: }
 1774: ###############################################################
 1775: ##   End Get Authentication Defaults for Domain              ##
 1776: ###############################################################
 1777: 
 1778: ###############################################################
 1779: ##    Get Kerberos Defaults for Domain                 ##
 1780: ###############################################################
 1781: ##
 1782: ## Returns default kerberos version and an associated argument
 1783: ## as listed in file domain.tab. If not listed, provides
 1784: ## appropriate default domain and kerberos version.
 1785: ##
 1786: #-------------------------------------------
 1787: 
 1788: =pod
 1789: 
 1790: =item * get_kerberos_defaults
 1791: 
 1792: get_kerberos_defaults($target_domain) returns the default kerberos
 1793: version and domain. If not found in domain.tabs, it defaults to
 1794: version 4 and the domain of the server.
 1795: 
 1796: ($def_version, $def_krb_domain) = &get_kerberos_defaults($target_domain);
 1797: 
 1798: =cut
 1799: 
 1800: #-------------------------------------------
 1801: sub get_kerberos_defaults {
 1802:     my $domain=shift;
 1803:     my ($krbdef,$krbdefdom) =
 1804:         &Apache::loncommon::get_auth_defaults($domain);
 1805:     unless ($krbdef =~/^krb/ && $krbdefdom) {
 1806:         $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/;
 1807:         my $krbdefdom=$1;
 1808:         $krbdefdom=~tr/a-z/A-Z/;
 1809:         $krbdef = "krb4";
 1810:     }
 1811:     return ($krbdef,$krbdefdom);
 1812: }
 1813: 
 1814: =pod
 1815: 
 1816: =back
 1817: 
 1818: =cut
 1819: 
 1820: ###############################################################
 1821: ##                Thesaurus Functions                        ##
 1822: ###############################################################
 1823: 
 1824: =pod
 1825: 
 1826: =head1 Thesaurus Functions
 1827: 
 1828: =over 4
 1829: 
 1830: =item * initialize_keywords
 1831: 
 1832: Initializes the package variable %Keywords if it is empty.  Uses the
 1833: package variable $thesaurus_db_file.
 1834: 
 1835: =cut
 1836: 
 1837: ###################################################
 1838: 
 1839: sub initialize_keywords {
 1840:     return 1 if (scalar keys(%Keywords));
 1841:     # If we are here, %Keywords is empty, so fill it up
 1842:     #   Make sure the file we need exists...
 1843:     if (! -e $thesaurus_db_file) {
 1844:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file".
 1845:                                  " failed because it does not exist");
 1846:         return 0;
 1847:     }
 1848:     #   Set up the hash as a database
 1849:     my %thesaurus_db;
 1850:     if (! tie(%thesaurus_db,'GDBM_File',
 1851:               $thesaurus_db_file,&GDBM_READER(),0640)){
 1852:         &Apache::lonnet::logthis("Could not tie \%thesaurus_db to ".
 1853:                                  $thesaurus_db_file);
 1854:         return 0;
 1855:     } 
 1856:     #  Get the average number of appearances of a word.
 1857:     my $avecount = $thesaurus_db{'average.count'};
 1858:     #  Put keywords (those that appear > average) into %Keywords
 1859:     while (my ($word,$data)=each (%thesaurus_db)) {
 1860:         my ($count,undef) = split /:/,$data;
 1861:         $Keywords{$word}++ if ($count > $avecount);
 1862:     }
 1863:     untie %thesaurus_db;
 1864:     # Remove special values from %Keywords.
 1865:     foreach my $value ('total.count','average.count') {
 1866:         delete($Keywords{$value}) if (exists($Keywords{$value}));
 1867:     }
 1868:     return 1;
 1869: }
 1870: 
 1871: ###################################################
 1872: 
 1873: =pod
 1874: 
 1875: =item * keyword($word)
 1876: 
 1877: Returns true if $word is a keyword.  A keyword is a word that appears more 
 1878: than the average number of times in the thesaurus database.  Calls 
 1879: &initialize_keywords
 1880: 
 1881: =cut
 1882: 
 1883: ###################################################
 1884: 
 1885: sub keyword {
 1886:     return if (!&initialize_keywords());
 1887:     my $word=lc(shift());
 1888:     $word=~s/\W//g;
 1889:     return exists($Keywords{$word});
 1890: }
 1891: 
 1892: ###############################################################
 1893: 
 1894: =pod 
 1895: 
 1896: =item * get_related_words
 1897: 
 1898: Look up a word in the thesaurus.  Takes a scalar argument and returns
 1899: an array of words.  If the keyword is not in the thesaurus, an empty array
 1900: will be returned.  The order of the words returned is determined by the
 1901: database which holds them.
 1902: 
 1903: Uses global $thesaurus_db_file.
 1904: 
 1905: =cut
 1906: 
 1907: ###############################################################
 1908: sub get_related_words {
 1909:     my $keyword = shift;
 1910:     my %thesaurus_db;
 1911:     if (! -e $thesaurus_db_file) {
 1912:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file ".
 1913:                                  "failed because the file does not exist");
 1914:         return ();
 1915:     }
 1916:     if (! tie(%thesaurus_db,'GDBM_File',
 1917:               $thesaurus_db_file,&GDBM_READER(),0640)){
 1918:         return ();
 1919:     } 
 1920:     my @Words=();
 1921:     if (exists($thesaurus_db{$keyword})) {
 1922: 	# The first element is the number of times
 1923: 	# the word appears.  We do not need it now.
 1924: 	(undef,@Words) = (split(/:/,$thesaurus_db{$keyword}));
 1925:         for (my $i=0;$i<=$#Words;$i++) {
 1926:             ($Words[$i],undef)= split(/\,/,$Words[$i]);
 1927:         }
 1928:     }
 1929:     untie %thesaurus_db;
 1930:     return @Words;
 1931: }
 1932: 
 1933: =pod
 1934: 
 1935: =back
 1936: 
 1937: =cut
 1938: 
 1939: # -------------------------------------------------------------- Plaintext name
 1940: =pod
 1941: 
 1942: =head1 User Name Functions
 1943: 
 1944: =over 4
 1945: 
 1946: =item * plainname($uname,$udom,$first)
 1947: 
 1948: Takes a users logon name and returns it as a string in
 1949: "first middle last generation" form 
 1950: if $first is set to 'lastname' then it returns it as
 1951: 'lastname generation, firstname middlename' if their is a lastname
 1952: 
 1953: =cut
 1954: 
 1955: 
 1956: ###############################################################
 1957: sub plainname {
 1958:     my ($uname,$udom,$first)=@_;
 1959:     my %names=&getnames($uname,$udom);
 1960:     my $name=&Apache::lonnet::format_name($names{'firstname'},
 1961: 					  $names{'middlename'},
 1962: 					  $names{'lastname'},
 1963: 					  $names{'generation'},$first);
 1964:     $name=~s/^\s+//;
 1965:     $name=~s/\s+$//;
 1966:     $name=~s/\s+/ /g;
 1967:     if ($name !~ /\S/) { $name=$uname.':'.$udom; }
 1968:     return $name;
 1969: }
 1970: 
 1971: # -------------------------------------------------------------------- Nickname
 1972: =pod
 1973: 
 1974: =item * nickname($uname,$udom)
 1975: 
 1976: Gets a users name and returns it as a string as
 1977: 
 1978: "&quot;nickname&quot;"
 1979: 
 1980: if the user has a nickname or
 1981: 
 1982: "first middle last generation"
 1983: 
 1984: if the user does not
 1985: 
 1986: =cut
 1987: 
 1988: sub nickname {
 1989:     my ($uname,$udom)=@_;
 1990:     my %names=&getnames($uname,$udom);
 1991:     my $name=$names{'nickname'};
 1992:     if ($name) {
 1993:        $name='&quot;'.$name.'&quot;'; 
 1994:     } else {
 1995:        $name=$names{'firstname'}.' '.$names{'middlename'}.' '.
 1996: 	     $names{'lastname'}.' '.$names{'generation'};
 1997:        $name=~s/\s+$//;
 1998:        $name=~s/\s+/ /g;
 1999:     }
 2000:     return $name;
 2001: }
 2002: 
 2003: sub getnames {
 2004:     my ($uname,$udom)=@_;
 2005:     my $id=$uname.':'.$udom;
 2006:     my ($names,$cached)=&Apache::lonnet::is_cached_new('namescache',$id);
 2007:     if ($cached) {
 2008: 	return %{$names};
 2009:     } else {
 2010: 	my %loadnames=&Apache::lonnet::get('environment',
 2011:                     ['firstname','middlename','lastname','generation','nickname'],
 2012: 					 $udom,$uname);
 2013: 	&Apache::lonnet::do_cache_new('namescache',$id,\%loadnames);
 2014: 	return %loadnames;
 2015:     }
 2016: }
 2017: 
 2018: # ------------------------------------------------------------------ Screenname
 2019: 
 2020: =pod
 2021: 
 2022: =item * screenname($uname,$udom)
 2023: 
 2024: Gets a users screenname and returns it as a string
 2025: 
 2026: =cut
 2027: 
 2028: sub screenname {
 2029:     my ($uname,$udom)=@_;
 2030:     if ($uname eq $env{'user.name'} &&
 2031: 	$udom eq $env{'user.domain'}) {return $env{'environment.screenname'};}
 2032:     my %names=&Apache::lonnet::get('environment',['screenname'],$udom,$uname);
 2033:     return $names{'screenname'};
 2034: }
 2035: 
 2036: 
 2037: # ------------------------------------------------------------- Message Wrapper
 2038: 
 2039: sub messagewrapper {
 2040:     my ($link,$username,$domain,$subject,$text)=@_;
 2041:     return 
 2042:         '<a href="/adm/email?compose=individual&'.
 2043:         'recname='.$username.'&recdom='.$domain.
 2044: 	'&subject='.&escape($subject).'&text='.&escape($text).'" '.
 2045:         'title="'.&mt('Send message').'">'.$link.'</a>';
 2046: }
 2047: # --------------------------------------------------------------- Notes Wrapper
 2048: 
 2049: sub noteswrapper {
 2050:     my ($link,$un,$do)=@_;
 2051:     return 
 2052: "<a href='/adm/email?recordftf=retrieve&recname=$un&recdom=$do'>$link</a>";
 2053: }
 2054: # ------------------------------------------------------------- Aboutme Wrapper
 2055: 
 2056: sub aboutmewrapper {
 2057:     my ($link,$username,$domain,$target)=@_;
 2058:     return '<a href="/adm/'.$domain.'/'.$username.'/aboutme"'.
 2059: 	($target?' target="$target"':'').' title="'.&mt('View this users personal page').'">'.$link.'</a>';
 2060: }
 2061: 
 2062: # ------------------------------------------------------------ Syllabus Wrapper
 2063: 
 2064: 
 2065: sub syllabuswrapper {
 2066:     my ($linktext,$coursedir,$domain,$fontcolor)=@_;
 2067:     if ($fontcolor) { 
 2068:         $linktext='<font color="'.$fontcolor.'">'.$linktext.'</font>'; 
 2069:     }
 2070:     return qq{<a href="/public/$domain/$coursedir/syllabus">$linktext</a>};
 2071: }
 2072: 
 2073: sub track_student_link {
 2074:     my ($linktext,$sname,$sdom,$target,$start) = @_;
 2075:     my $link ="/adm/trackstudent?";
 2076:     my $title = 'View recent activity';
 2077:     if (defined($sname) && $sname !~ /^\s*$/ &&
 2078:         defined($sdom)  && $sdom  !~ /^\s*$/) {
 2079:         $link .= "selected_student=$sname:$sdom";
 2080:         $title .= ' of this student';
 2081:     } 
 2082:     if (defined($target) && $target !~ /^\s*$/) {
 2083:         $target = qq{target="$target"};
 2084:     } else {
 2085:         $target = '';
 2086:     }
 2087:     if ($start) { $link.='&amp;start='.$start; }
 2088:     return qq{<a href="$link" title="$title" $target>$linktext</a>};
 2089: }
 2090: 
 2091: =pod
 2092: 
 2093: =back
 2094: 
 2095: =head1 Access .tab File Data
 2096: 
 2097: =over 4
 2098: 
 2099: =item * languageids() 
 2100: 
 2101: returns list of all language ids
 2102: 
 2103: =cut
 2104: 
 2105: sub languageids {
 2106:     return sort(keys(%language));
 2107: }
 2108: 
 2109: =pod
 2110: 
 2111: =item * languagedescription() 
 2112: 
 2113: returns description of a specified language id
 2114: 
 2115: =cut
 2116: 
 2117: sub languagedescription {
 2118:     my $code=shift;
 2119:     return  ($supported_language{$code}?'* ':'').
 2120:             $language{$code}.
 2121: 	    ($supported_language{$code}?' ('.&mt('interface available').')':'');
 2122: }
 2123: 
 2124: sub plainlanguagedescription {
 2125:     my $code=shift;
 2126:     return $language{$code};
 2127: }
 2128: 
 2129: sub supportedlanguagecode {
 2130:     my $code=shift;
 2131:     return $supported_language{$code};
 2132: }
 2133: 
 2134: =pod
 2135: 
 2136: =item * copyrightids() 
 2137: 
 2138: returns list of all copyrights
 2139: 
 2140: =cut
 2141: 
 2142: sub copyrightids {
 2143:     return sort(keys(%cprtag));
 2144: }
 2145: 
 2146: =pod
 2147: 
 2148: =item * copyrightdescription() 
 2149: 
 2150: returns description of a specified copyright id
 2151: 
 2152: =cut
 2153: 
 2154: sub copyrightdescription {
 2155:     return &mt($cprtag{shift(@_)});
 2156: }
 2157: 
 2158: =pod
 2159: 
 2160: =item * source_copyrightids() 
 2161: 
 2162: returns list of all source copyrights
 2163: 
 2164: =cut
 2165: 
 2166: sub source_copyrightids {
 2167:     return sort(keys(%scprtag));
 2168: }
 2169: 
 2170: =pod
 2171: 
 2172: =item * source_copyrightdescription() 
 2173: 
 2174: returns description of a specified source copyright id
 2175: 
 2176: =cut
 2177: 
 2178: sub source_copyrightdescription {
 2179:     return &mt($scprtag{shift(@_)});
 2180: }
 2181: 
 2182: =pod
 2183: 
 2184: =item * filecategories() 
 2185: 
 2186: returns list of all file categories
 2187: 
 2188: =cut
 2189: 
 2190: sub filecategories {
 2191:     return sort(keys(%category_extensions));
 2192: }
 2193: 
 2194: =pod
 2195: 
 2196: =item * filecategorytypes() 
 2197: 
 2198: returns list of file types belonging to a given file
 2199: category
 2200: 
 2201: =cut
 2202: 
 2203: sub filecategorytypes {
 2204:     my ($cat) = @_;
 2205:     return @{$category_extensions{lc($cat)}};
 2206: }
 2207: 
 2208: =pod
 2209: 
 2210: =item * fileembstyle() 
 2211: 
 2212: returns embedding style for a specified file type
 2213: 
 2214: =cut
 2215: 
 2216: sub fileembstyle {
 2217:     return $fe{lc(shift(@_))};
 2218: }
 2219: 
 2220: sub filemimetype {
 2221:     return $fm{lc(shift(@_))};
 2222: }
 2223: 
 2224: 
 2225: sub filecategoryselect {
 2226:     my ($name,$value)=@_;
 2227:     return &select_form($value,$name,
 2228: 			'' => &mt('Any category'),
 2229: 			map { $_,$_ } sort(keys(%category_extensions)));
 2230: }
 2231: 
 2232: =pod
 2233: 
 2234: =item * filedescription() 
 2235: 
 2236: returns description for a specified file type
 2237: 
 2238: =cut
 2239: 
 2240: sub filedescription {
 2241:     my $file_description = $fd{lc(shift())};
 2242:     $file_description =~ s:([\[\]]):~$1:g;
 2243:     return &mt($file_description);
 2244: }
 2245: 
 2246: =pod
 2247: 
 2248: =item * filedescriptionex() 
 2249: 
 2250: returns description for a specified file type with
 2251: extra formatting
 2252: 
 2253: =cut
 2254: 
 2255: sub filedescriptionex {
 2256:     my $ex=shift;
 2257:     my $file_description = $fd{lc($ex)};
 2258:     $file_description =~ s:([\[\]]):~$1:g;
 2259:     return '.'.$ex.' '.&mt($file_description);
 2260: }
 2261: 
 2262: # End of .tab access
 2263: =pod
 2264: 
 2265: =back
 2266: 
 2267: =cut
 2268: 
 2269: # ------------------------------------------------------------------ File Types
 2270: sub fileextensions {
 2271:     return sort(keys(%fe));
 2272: }
 2273: 
 2274: # ----------------------------------------------------------- Display Languages
 2275: # returns a hash with all desired display languages
 2276: #
 2277: 
 2278: sub display_languages {
 2279:     my %languages=();
 2280:     foreach my $lang (&preferred_languages()) {
 2281: 	$languages{$lang}=1;
 2282:     }
 2283:     &get_unprocessed_cgi($ENV{'QUERY_STRING'},['displaylanguage']);
 2284:     if ($env{'form.displaylanguage'}) {
 2285: 	foreach my $lang (split(/\s*(\,|\;|\:)\s*/,$env{'form.displaylanguage'})) {
 2286: 	    $languages{$lang}=1;
 2287:         }
 2288:     }
 2289:     return %languages;
 2290: }
 2291: 
 2292: sub preferred_languages {
 2293:     my @languages=();
 2294:     if ($env{'course.'.$env{'request.course.id'}.'.languages'}) {
 2295: 	@languages=(@languages,split(/\s*(\,|\;|\:)\s*/,
 2296: 	         $env{'course.'.$env{'request.course.id'}.'.languages'}));
 2297:     }
 2298:     if ($env{'environment.languages'}) {
 2299: 	@languages=split(/\s*(\,|\;|\:)\s*/,$env{'environment.languages'});
 2300:     }
 2301:     my $browser=(split(/\;/,$ENV{'HTTP_ACCEPT_LANGUAGE'}))[0];
 2302:     if ($browser) {
 2303: 	@languages=(@languages,split(/\s*(\,|\;|\:)\s*/,$browser));
 2304:     }
 2305:     if ($Apache::lonnet::domain_lang_def{$env{'user.domain'}}) {
 2306: 	@languages=(@languages,
 2307: 		$Apache::lonnet::domain_lang_def{$env{'user.domain'}});
 2308:     }
 2309:     if ($Apache::lonnet::domain_lang_def{$env{'request.role.domain'}}) {
 2310: 	@languages=(@languages,
 2311: 		$Apache::lonnet::domain_lang_def{$env{'request.role.domain'}});
 2312:     }
 2313:     if ($Apache::lonnet::domain_lang_def{
 2314: 	                          $Apache::lonnet::perlvar{'lonDefDomain'}}) {
 2315: 	@languages=(@languages,
 2316: 		$Apache::lonnet::domain_lang_def{
 2317:                                   $Apache::lonnet::perlvar{'lonDefDomain'}});
 2318:     }
 2319: # turn "en-ca" into "en-ca,en"
 2320:     my @genlanguages;
 2321:     foreach my $lang (@languages) {
 2322: 	unless ($lang=~/\w/) { next; }
 2323: 	push (@genlanguages,$lang);
 2324: 	if ($lang=~/(\-|\_)/) {
 2325: 	    push(@genlanguages,(split(/(\-|\_)/,$lang))[0]);
 2326: 	}
 2327:     }
 2328:     return @genlanguages;
 2329: }
 2330: 
 2331: ###############################################################
 2332: ##               Student Answer Attempts                     ##
 2333: ###############################################################
 2334: 
 2335: =pod
 2336: 
 2337: =head1 Alternate Problem Views
 2338: 
 2339: =over 4
 2340: 
 2341: =item * get_previous_attempt($symb, $username, $domain, $course,
 2342:     $getattempt, $regexp, $gradesub)
 2343: 
 2344: Return string with previous attempt on problem. Arguments:
 2345: 
 2346: =over 4
 2347: 
 2348: =item * $symb: Problem, including path
 2349: 
 2350: =item * $username: username of the desired student
 2351: 
 2352: =item * $domain: domain of the desired student
 2353: 
 2354: =item * $course: Course ID
 2355: 
 2356: =item * $getattempt: Leave blank for all attempts, otherwise put
 2357:     something
 2358: 
 2359: =item * $regexp: if string matches this regexp, the string will be
 2360:     sent to $gradesub
 2361: 
 2362: =item * $gradesub: routine that processes the string if it matches $regexp
 2363: 
 2364: =back
 2365: 
 2366: The output string is a table containing all desired attempts, if any.
 2367: 
 2368: =cut
 2369: 
 2370: sub get_previous_attempt {
 2371:   my ($symb,$username,$domain,$course,$getattempt,$regexp,$gradesub)=@_;
 2372:   my $prevattempts='';
 2373:   no strict 'refs';
 2374:   if ($symb) {
 2375:     my (%returnhash)=
 2376:       &Apache::lonnet::restore($symb,$course,$domain,$username);
 2377:     if ($returnhash{'version'}) {
 2378:       my %lasthash=();
 2379:       my $version;
 2380:       for ($version=1;$version<=$returnhash{'version'};$version++) {
 2381:         foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
 2382: 	  $lasthash{$key}=$returnhash{$version.':'.$key};
 2383:         }
 2384:       }
 2385:       $prevattempts='<table border="0" width="100%"><tr><td bgcolor="#777777">';
 2386:       $prevattempts.='<table border="0" width="100%"><tr bgcolor="#e6ffff"><td>History</td>';
 2387:       foreach my $key (sort(keys(%lasthash))) {
 2388: 	my ($ign,@parts) = split(/\./,$key);
 2389: 	if ($#parts > 0) {
 2390: 	  my $data=$parts[-1];
 2391: 	  pop(@parts);
 2392: 	  $prevattempts.='<td>Part '.join('.',@parts).'<br />'.$data.'&nbsp;</td>';
 2393: 	} else {
 2394: 	  if ($#parts == 0) {
 2395: 	    $prevattempts.='<th>'.$parts[0].'</th>';
 2396: 	  } else {
 2397: 	    $prevattempts.='<th>'.$ign.'</th>';
 2398: 	  }
 2399: 	}
 2400:       }
 2401:       if ($getattempt eq '') {
 2402: 	for ($version=1;$version<=$returnhash{'version'};$version++) {
 2403: 	  $prevattempts.='</tr><tr bgcolor="#ffffe6"><td>Transaction '.$version.'</td>';
 2404: 	    foreach my $key (sort(keys(%lasthash))) {
 2405: 	       my $value;
 2406: 	       if ($key =~ /timestamp/) {
 2407: 		  $value=scalar(localtime($returnhash{$version.':'.$key}));
 2408: 	       } else {
 2409: 		  $value=$returnhash{$version.':'.$key};
 2410: 	       }
 2411: 	       $prevattempts.='<td>'.&unescape($value).'&nbsp;</td>';   
 2412: 	    }
 2413: 	 }
 2414:       }
 2415:       $prevattempts.='</tr><tr bgcolor="#ffffe6"><td>Current</td>';
 2416:       foreach my $key (sort(keys(%lasthash))) {
 2417: 	my $value;
 2418: 	if ($key =~ /timestamp/) {
 2419: 	  $value=scalar(localtime($lasthash{$key}));
 2420: 	} else {
 2421: 	  $value=$lasthash{$key};
 2422: 	}
 2423: 	$value=&unescape($value);
 2424: 	if ($key =~/$regexp$/ && (defined &$gradesub)) {$value = &$gradesub($value)}
 2425: 	$prevattempts.='<td>'.$value.'&nbsp;</td>';
 2426:       }
 2427:       $prevattempts.='</tr></table></td></tr></table>';
 2428:     } else {
 2429:       $prevattempts='Nothing submitted - no attempts.';
 2430:     }
 2431:   } else {
 2432:     $prevattempts='No data.';
 2433:   }
 2434: }
 2435: 
 2436: sub relative_to_absolute {
 2437:     my ($url,$output)=@_;
 2438:     my $parser=HTML::TokeParser->new(\$output);
 2439:     my $token;
 2440:     my $thisdir=$url;
 2441:     my @rlinks=();
 2442:     while ($token=$parser->get_token) {
 2443: 	if ($token->[0] eq 'S') {
 2444: 	    if ($token->[1] eq 'a') {
 2445: 		if ($token->[2]->{'href'}) {
 2446: 		    $rlinks[$#rlinks+1]=$token->[2]->{'href'};
 2447: 		}
 2448: 	    } elsif ($token->[1] eq 'img' || $token->[1] eq 'embed' ) {
 2449: 		$rlinks[$#rlinks+1]=$token->[2]->{'src'};
 2450: 	    } elsif ($token->[1] eq 'base') {
 2451: 		$thisdir=$token->[2]->{'href'};
 2452: 	    }
 2453: 	}
 2454:     }
 2455:     $thisdir=~s-/[^/]*$--;
 2456:     foreach my $link (@rlinks) {
 2457: 	unless (($link=~/^http:\/\//i) ||
 2458: 		($link=~/^\//) ||
 2459: 		($link=~/^javascript:/i) ||
 2460: 		($link=~/^mailto:/i) ||
 2461: 		($link=~/^\#/)) {
 2462: 	    my $newlocation=&Apache::lonnet::hreflocation($thisdir,$link);
 2463: 	    $output=~s/(\"|\'|\=\s*)\Q$link\E(\"|\'|\s|\>)/$1$newlocation$2/;
 2464: 	}
 2465:     }
 2466: # -------------------------------------------------- Deal with Applet codebases
 2467:     $output=~s/(\<applet[^\>]+)(codebase\=[^\S\>]+)*([^\>]*)\>/$1.($2?$2:' codebase="'.$thisdir.'"').$3.'>'/gei;
 2468:     return $output;
 2469: }
 2470: 
 2471: =pod
 2472: 
 2473: =item * get_student_view
 2474: 
 2475: show a snapshot of what student was looking at
 2476: 
 2477: =cut
 2478: 
 2479: sub get_student_view {
 2480:   my ($symb,$username,$domain,$courseid,$target,$moreenv) = @_;
 2481:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
 2482:   my (%form);
 2483:   my @elements=('symb','courseid','domain','username');
 2484:   foreach my $element (@elements) {
 2485:       $form{'grade_'.$element}=eval '$'.$element #'
 2486:   }
 2487:   if (defined($moreenv)) {
 2488:       %form=(%form,%{$moreenv});
 2489:   }
 2490:   if (defined($target)) { $form{'grade_target'} = $target; }
 2491:   $feedurl=&Apache::lonnet::clutter($feedurl);
 2492:   my $userview=&Apache::lonnet::ssi_body($feedurl,%form);
 2493:   $userview=~s/\<body[^\>]*\>//gi;
 2494:   $userview=~s/\<\/body\>//gi;
 2495:   $userview=~s/\<html\>//gi;
 2496:   $userview=~s/\<\/html\>//gi;
 2497:   $userview=~s/\<head\>//gi;
 2498:   $userview=~s/\<\/head\>//gi;
 2499:   $userview=~s/action\s*\=/would_be_action\=/gi;
 2500:   $userview=&relative_to_absolute($feedurl,$userview);
 2501:   return $userview;
 2502: }
 2503: 
 2504: =pod
 2505: 
 2506: =item * get_student_answers() 
 2507: 
 2508: show a snapshot of how student was answering problem
 2509: 
 2510: =cut
 2511: 
 2512: sub get_student_answers {
 2513:   my ($symb,$username,$domain,$courseid,%form) = @_;
 2514:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
 2515:   my (%moreenv);
 2516:   my @elements=('symb','courseid','domain','username');
 2517:   foreach my $element (@elements) {
 2518:     $moreenv{'grade_'.$element}=eval '$'.$element #'
 2519:   }
 2520:   $moreenv{'grade_target'}='answer';
 2521:   %moreenv=(%form,%moreenv);
 2522:   my $userview=&Apache::lonnet::ssi('/res/'.$feedurl,%moreenv);
 2523:   return $userview;
 2524: }
 2525: 
 2526: =pod
 2527: 
 2528: =item * &submlink()
 2529: 
 2530: Inputs: $text $uname $udom $symb $target
 2531: 
 2532: Returns: A link to grades.pm such as to see the SUBM view of a student
 2533: 
 2534: =cut
 2535: 
 2536: ###############################################
 2537: sub submlink {
 2538:     my ($text,$uname,$udom,$symb,$target)=@_;
 2539:     if (!($uname && $udom)) {
 2540: 	(my $cursymb, my $courseid,$udom,$uname)=
 2541: 	    &Apache::lonxml::whichuser($symb);
 2542: 	if (!$symb) { $symb=$cursymb; }
 2543:     }
 2544:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
 2545:     $symb=&escape($symb);
 2546:     if ($target) { $target="target=\"$target\""; }
 2547:     return '<a href="/adm/grades?&command=submission&'.
 2548: 	'symb='.$symb.'&student='.$uname.
 2549: 	'&userdom='.$udom.'" '.$target.'>'.$text.'</a>';
 2550: }
 2551: ##############################################
 2552: 
 2553: =pod
 2554: 
 2555: =item * &pgrdlink()
 2556: 
 2557: Inputs: $text $uname $udom $symb $target
 2558: 
 2559: Returns: A link to grades.pm such as to see the PGRD view of a student
 2560: 
 2561: =cut
 2562: 
 2563: ###############################################
 2564: sub pgrdlink {
 2565:     my $link=&submlink(@_);
 2566:     $link=~s/(&command=submission)/$1&showgrading=yes/;
 2567:     return $link;
 2568: }
 2569: ##############################################
 2570: 
 2571: =pod
 2572: 
 2573: =item * &pprmlink()
 2574: 
 2575: Inputs: $text $uname $udom $symb $target
 2576: 
 2577: Returns: A link to parmset.pm such as to see the PPRM view of a
 2578: student and a specific resource
 2579: 
 2580: =cut
 2581: 
 2582: ###############################################
 2583: sub pprmlink {
 2584:     my ($text,$uname,$udom,$symb,$target)=@_;
 2585:     if (!($uname && $udom)) {
 2586: 	(my $cursymb, my $courseid,$udom,$uname)=
 2587: 	    &Apache::lonxml::whichuser($symb);
 2588: 	if (!$symb) { $symb=$cursymb; }
 2589:     }
 2590:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
 2591:     $symb=&escape($symb);
 2592:     if ($target) { $target="target=\"$target\""; }
 2593:     return '<a href="/adm/parmset?&command=set&'.
 2594: 	'symb='.$symb.'&uname='.$uname.
 2595: 	'&udom='.$udom.'" '.$target.'>'.$text.'</a>';
 2596: }
 2597: ##############################################
 2598: 
 2599: =pod
 2600: 
 2601: =back
 2602: 
 2603: =cut
 2604: 
 2605: ###############################################
 2606: 
 2607: 
 2608: sub timehash {
 2609:     my @ltime=localtime(shift);
 2610:     return ( 'seconds' => $ltime[0],
 2611:              'minutes' => $ltime[1],
 2612:              'hours'   => $ltime[2],
 2613:              'day'     => $ltime[3],
 2614:              'month'   => $ltime[4]+1,
 2615:              'year'    => $ltime[5]+1900,
 2616:              'weekday' => $ltime[6],
 2617:              'dayyear' => $ltime[7]+1,
 2618:              'dlsav'   => $ltime[8] );
 2619: }
 2620: 
 2621: sub utc_string {
 2622:     my ($date)=@_;
 2623:     return strftime("%Y%m%dT%H%M%SZ",gmtime($date));
 2624: }
 2625: 
 2626: sub maketime {
 2627:     my %th=@_;
 2628:     return POSIX::mktime(
 2629:         ($th{'seconds'},$th{'minutes'},$th{'hours'},
 2630:          $th{'day'},$th{'month'}-1,$th{'year'}-1900,0,0,-1));
 2631: }
 2632: 
 2633: #########################################
 2634: 
 2635: sub findallcourses {
 2636:     my ($roles) = @_;
 2637:     my %roles;
 2638:     if (ref($roles)) { %roles = map { $_ => 1 } @{$roles}; }
 2639:     my %courses;
 2640:     my $now=time;
 2641:     foreach my $key (keys(%env)) {
 2642: 	if ( $key=~m{^user\.role\.(\w+)\./(\w+)/(\w+)} ) {
 2643: 	    my ($role,$domain,$id) = ($1,$2,$3);
 2644: 	    next if ($role eq 'ca' || $role eq 'aa');
 2645: 	    next if (%roles && !exists($roles{$role}));
 2646: 	    my ($starttime,$endtime)=split(/\./,$env{$key});
 2647:             my $active=1;
 2648:             if ($starttime) {
 2649: 		if ($now<$starttime) { $active=0; }
 2650:             }
 2651:             if ($endtime) {
 2652:                 if ($now>$endtime) { $active=0; }
 2653:             }
 2654:             if ($active) { $courses{$domain.'_'.$id}=1; }
 2655:         }
 2656:     }
 2657:     return keys(%courses);
 2658: }
 2659: 
 2660: ###############################################
 2661: ###############################################
 2662: 
 2663: =pod
 2664: 
 2665: =head1 Domain Template Functions
 2666: 
 2667: =over 4
 2668: 
 2669: =item * &determinedomain()
 2670: 
 2671: Inputs: $domain (usually will be undef)
 2672: 
 2673: Returns: Determines which domain should be used for designs
 2674: 
 2675: =cut
 2676: 
 2677: ###############################################
 2678: sub determinedomain {
 2679:     my $domain=shift;
 2680:    if (! $domain) {
 2681:         # Determine domain if we have not been given one
 2682:         $domain = $Apache::lonnet::perlvar{'lonDefDomain'};
 2683:         if ($env{'user.domain'}) { $domain=$env{'user.domain'}; }
 2684:         if ($env{'request.role.domain'}) { 
 2685:             $domain=$env{'request.role.domain'}; 
 2686:         }
 2687:     }
 2688:     return $domain;
 2689: }
 2690: ###############################################
 2691: =pod
 2692: 
 2693: =item * &domainlogo()
 2694: 
 2695: Inputs: $domain (usually will be undef)
 2696: 
 2697: Returns: A link to a domain logo, if the domain logo exists.
 2698: If the domain logo does not exist, a description of the domain.
 2699: 
 2700: =cut
 2701: 
 2702: ###############################################
 2703: sub domainlogo {
 2704:     my $domain = &determinedomain(shift);    
 2705:      # See if there is a logo
 2706:     if (-e '/home/httpd/html/adm/lonDomLogos/'.$domain.'.gif') {
 2707: 	my $logo=&lonhttpdurl("/adm/lonDomLogos/$domain.gif");
 2708:         return '<img src="'.$logo.'" alt="'.$domain.'" />';
 2709:     } elsif(exists($Apache::lonnet::domaindescription{$domain})) {
 2710:         return $Apache::lonnet::domaindescription{$domain};
 2711:     } else {
 2712:         return '';
 2713:     }
 2714: }
 2715: ##############################################
 2716: 
 2717: =pod
 2718: 
 2719: =item * &designparm()
 2720: 
 2721: Inputs: $which parameter; $domain (usually will be undef)
 2722: 
 2723: Returns: value of designparamter $which
 2724: 
 2725: =cut
 2726: 
 2727: 
 2728: ##############################################
 2729: sub designparm {
 2730:     my ($which,$domain)=@_;
 2731:     if ($env{'browser.blackwhite'} eq 'on') {
 2732: 	if ($which=~/\.(font|alink|vlink|link)$/) {
 2733: 	    return '#000000';
 2734: 	}
 2735: 	if ($which=~/\.(pgbg|sidebg)$/) {
 2736: 	    return '#FFFFFF';
 2737: 	}
 2738: 	if ($which=~/\.tabbg$/) {
 2739: 	    return '#CCCCCC';
 2740: 	}
 2741:     }
 2742:     if (exists($env{'environment.color.'.$which})) {
 2743: 	return $env{'environment.color.'.$which};
 2744:     }
 2745:     $domain=&determinedomain($domain);
 2746:     if (exists($designhash{$domain.'.'.$which})) {
 2747: 	return $designhash{$domain.'.'.$which};
 2748:     } else {
 2749:         return $designhash{'default.'.$which};
 2750:     }
 2751: }
 2752: 
 2753: ###############################################
 2754: ###############################################
 2755: 
 2756: =pod
 2757: 
 2758: =back
 2759: 
 2760: =head1 HTTP Helpers
 2761: 
 2762: =over 4
 2763: 
 2764: =item * &bodytag()
 2765: 
 2766: Returns a uniform header for LON-CAPA web pages.
 2767: 
 2768: Inputs: 
 2769: 
 2770: =over 4
 2771: 
 2772: =item * $title, A title to be displayed on the page.
 2773: 
 2774: =item * $function, the current role (can be undef).
 2775: 
 2776: =item * $addentries, extra parameters for the <body> tag.
 2777: 
 2778: =item * $bodyonly, if defined, only return the <body> tag.
 2779: 
 2780: =item * $domain, if defined, force a given domain.
 2781: 
 2782: =item * $forcereg, if page should register as content page (relevant for 
 2783:             text interface only)
 2784: 
 2785: =item * $customtitle, alternate text to use instead of $title
 2786:                       in the title box that appears, this text
 2787:                       is not auto translated like the $title is
 2788: 
 2789: =item * $notopbar, if true, keep the 'what is this' info but remove the
 2790:                    navigational links
 2791: 
 2792: =item * $bgcolor, used to override the bgcolor on a webpage to a specific value
 2793: 
 2794: =item * $notitle, if true keep the nav controls, but remove the title bar
 2795: 
 2796: =item * $no_inline_link, if true and in remote mode, don't show the 
 2797:          'Switch To Inline Menu' link
 2798: 
 2799: =back
 2800: 
 2801: Returns: A uniform header for LON-CAPA web pages.  
 2802: If $bodyonly is nonzero, a string containing a <body> tag will be returned.
 2803: If $bodyonly is undef or zero, an html string containing a <body> tag and 
 2804: other decorations will be returned.
 2805: 
 2806: =cut
 2807: 
 2808: sub bodytag {
 2809:     my ($title,$function,$addentries,$bodyonly,$domain,$forcereg,$customtitle,
 2810: 	$notopbar,$bgcolor,$notitle,$no_inline_link)=@_;
 2811: 
 2812:     $title=&mt($title);
 2813: 
 2814:     $function = &get_users_function() if (!$function);
 2815:     my $img =    &designparm($function.'.img',$domain);
 2816:     my $font =   &designparm($function.'.font',$domain);
 2817:     my $pgbg   = $bgcolor || &designparm($function.'.pgbg',$domain);
 2818: 
 2819:     my %design = ( 'style'   => 'margin-top: 0px',
 2820: 		   'bgcolor' => $pgbg,
 2821: 		   'text'    => $font,
 2822:                    'alink'   => &designparm($function.'.alink',$domain),
 2823: 		   'vlink'   => &designparm($function.'.vlink',$domain),
 2824: 		   'link'    => &designparm($function.'.link',$domain),);
 2825:     @$addentries{keys(%design)} = @design{keys(%design)};
 2826: 
 2827:  # role and realm
 2828:     my ($role,$realm) = split(/\./,$env{'request.role'},2);
 2829:     if ($role  eq 'ca') {
 2830:         my ($rdom,$rname) = ($realm =~ m-^/(\w+)/(\w+)$-);
 2831:         $realm = &plainname($rname,$rdom).':'.$rdom;
 2832:     } 
 2833: # realm
 2834:     if ($env{'request.course.id'}) {
 2835:         if ($env{'request.role'} !~ /^cr/) {
 2836:             $role = &Apache::lonnet::plaintext($role,&course_type());
 2837:         }
 2838: 	$realm = $env{'course.'.$env{'request.course.id'}.'.description'};
 2839:     } else {
 2840:         $role = &Apache::lonnet::plaintext($role);
 2841:     }
 2842:     if (!$realm) { $realm='&nbsp;'; }
 2843: # Set messages
 2844:     my $messages=&domainlogo($domain);
 2845: # Port for miniserver
 2846:     my $lonhttpdPort=$Apache::lonnet::perlvar{'lonhttpdPort'};
 2847:     if (!defined($lonhttpdPort)) { $lonhttpdPort='8080'; }
 2848: 
 2849:     my $extra_body_attr = &make_attr_string($forcereg,$addentries);
 2850: 
 2851: # construct main body tag
 2852:     my $bodytag = "<body $extra_body_attr>".
 2853: 	&Apache::lontexconvert::init_math_support();
 2854: 
 2855:     if ($bodyonly 
 2856: 	|| ($env{'request.state'} eq 'construct' 
 2857: 	    && $env{'environment.remote'} ne 'off' )) {
 2858:         return $bodytag;
 2859:     } elsif ($env{'browser.interface'} eq 'textual') {
 2860: # Accessibility
 2861:           
 2862: 	$bodytag.=&Apache::lonmenu::menubuttons($forcereg,$forcereg);
 2863: 	if (!$notitle) {
 2864: 	    $bodytag.='<h1>LON-CAPA: '.$title.'</h1>';
 2865: 	}
 2866: 	return $bodytag;
 2867:     }
 2868: 
 2869:     my $name = &plainname($env{'user.name'},$env{'user.domain'});
 2870:     
 2871:     my $roleinfo=(<<ENDROLE);
 2872: <td class="LC_title_bar_who">
 2873: <div class="LC_title_bar_name">
 2874:     $name
 2875:     &nbsp;
 2876: </div>
 2877: <div class="LC_title_bar_role">
 2878: $role&nbsp;
 2879: </div>
 2880: <div class="LC_title_bar_realm">
 2881: $realm&nbsp;
 2882: </div>
 2883: </td>
 2884: ENDROLE
 2885: 
 2886:     my $titleinfo = '<span class="LC_title_bar_title">'.$title.'</span>';
 2887:     if ($customtitle) {
 2888:         $titleinfo = $customtitle;
 2889:     }
 2890:     #
 2891:     # Extra info if you are the DC
 2892:     my $dc_info = '';
 2893:     if ($env{'user.adv'} && exists($env{'user.role.dc./'.
 2894:                         $env{'course.'.$env{'request.course.id'}.
 2895:                                  '.domain'}.'/'})) {
 2896:         my $cid = $env{'request.course.id'};
 2897:         $dc_info.= $cid.' '.$env{'course.'.$cid.'.internal.coursecode'};
 2898:         $dc_info =~ s/\s+$//;
 2899:         $dc_info = '('.$dc_info.')';
 2900:     }
 2901: 
 2902:     if ($env{'environment.remote'} eq 'off') {
 2903:         # No Remote
 2904: 	if ($env{'request.state'} eq 'construct') {
 2905: 	    $forcereg=1;
 2906: 	}
 2907: 
 2908: 	if (!$customtitle && $env{'request.state'} eq 'construct') {
 2909: 	    # this is for resources; directories have customtitle, and crumbs
 2910:             # and select recent are created in lonpubdir.pm  
 2911: 	    my ($uname,$thisdisfn)=
 2912: 		($env{'request.filename'} =~ m|^/home/([^/]+)/public_html/(.*)|);
 2913: 	    my $formaction='/priv/'.$uname.'/'.$thisdisfn;
 2914: 	    $formaction=~s/\/+/\//g;
 2915: 
 2916: 	    my $parentpath = '';
 2917: 	    my $lastitem = '';
 2918: 	    if ($thisdisfn =~ m-(.+/)([^/]*)$-) {
 2919: 		$parentpath = $1;
 2920: 		$lastitem = $2;
 2921: 	    } else {
 2922: 		$lastitem = $thisdisfn;
 2923: 	    }
 2924: 	    $titleinfo = 
 2925: 		&Apache::loncommon::help_open_menu('','',3,'Authoring').
 2926: 		'<b>Construction Space</b>:&nbsp;'. 
 2927: 		'<form name="dirs" method="post" action="'.$formaction
 2928: 		.'" target="_top"><tt><b>'
 2929: 		.&Apache::lonhtmlcommon::crumbs($uname.'/'.$parentpath,'_top','/priv','','+1',1)."<font size=\"+1\">$lastitem</font></b></tt><br />"
 2930: 		.&Apache::lonhtmlcommon::select_recent('construct','recent','this.form.action=this.form.recent.value;this.form.submit()')
 2931: 		.'</form>'
 2932: 		.&Apache::lonmenu::constspaceform();
 2933:         }
 2934: 
 2935:         my $titletable;
 2936: 	if (!$notitle) {
 2937: 	    $titletable =
 2938: 		'<table id="LC_title_bar">'.
 2939:                          "<tr><td> $titleinfo $dc_info</td>".$roleinfo.
 2940: 			 '</tr></table>';
 2941: 	}
 2942: 	if ($notopbar) {
 2943: 	    $bodytag .= $titletable;
 2944: 	} else {
 2945: 	    if ($env{'request.state'} eq 'construct') {
 2946:                 $bodytag .= &Apache::lonmenu::menubuttons($forcereg,$forcereg,
 2947: 							  $titletable);
 2948:             } else {
 2949:                 $bodytag .= &Apache::lonmenu::menubuttons($forcereg,$forcereg).
 2950: 		    $titletable;
 2951:             }
 2952:         }
 2953:         return $bodytag;
 2954:     }
 2955: 
 2956: #
 2957: # Top frame rendering, Remote is up
 2958: #
 2959: 
 2960:     my $upperleft='<img src="http://'.$ENV{'HTTP_HOST'}.':'.
 2961:         $lonhttpdPort.$img.'" alt="'.$function.'" />';
 2962: 
 2963:     # Explicit link to get inline menu
 2964:     my $menu= ($no_inline_link?''
 2965: 	       :'<br /><a href="/adm/remote?action=collapse">'.&mt('Switch to Inline Menu Mode').'</a>');
 2966:     #
 2967:     if ($notitle) {
 2968: 	return $bodytag;
 2969:     }
 2970:     return(<<ENDBODY);
 2971: $bodytag
 2972: <table id="LC_title_bar" class="LC_with_remote">
 2973: <tr><td class="LC_title_bar_role_logo">$upperleft</td>
 2974:     <td class="LC_title_bar_domain_logo">$messages&nbsp;</td>
 2975: </tr>
 2976: <tr><td>$titleinfo $dc_info $menu</td>
 2977: $roleinfo
 2978: </tr>
 2979: </table>
 2980: ENDBODY
 2981: }
 2982: 
 2983: sub make_attr_string {
 2984:     my ($register,$attr_ref) = @_;
 2985: 
 2986:     if ($attr_ref && !ref($attr_ref)) {
 2987: 	die("addentries Must be a hash ref ".
 2988: 	    join(':',caller(1))." ".
 2989: 	    join(':',caller(0))." ");
 2990:     }
 2991: 
 2992:     if ($register) {
 2993: 	my ($on_load,$on_unload);
 2994: 	foreach my $key (keys(%{$attr_ref})) {
 2995: 	    if      (lc($key) eq 'onload') {
 2996: 		$on_load.=$attr_ref->{$key}.';';
 2997: 		delete($attr_ref->{$key});
 2998: 
 2999: 	    } elsif (lc($key) eq 'onunload') {
 3000: 		$on_unload.=$attr_ref->{$key}.';';
 3001: 		delete($attr_ref->{$key});
 3002: 	    }
 3003: 	}
 3004: 	$attr_ref->{'onload'}  =
 3005: 	    &Apache::lonmenu::loadevents().  $on_load;
 3006: 	$attr_ref->{'onunload'}=
 3007: 	    &Apache::lonmenu::unloadevents().$on_unload;
 3008:     }
 3009: 
 3010: # Accessibility font enhance
 3011:     if ($env{'browser.fontenhance'} eq 'on') {
 3012: 	my $style;
 3013: 	foreach my $key (keys(%{$attr_ref})) {
 3014: 	    if (lc($key) eq 'style') {
 3015: 		$style.=$attr_ref->{$key}.';';
 3016: 		delete($attr_ref->{$key});
 3017: 	    }
 3018: 	}
 3019: 	$attr_ref->{'style'}=$style.'; font-size: x-large;';
 3020:     }
 3021: 
 3022:     if ($env{'browser.blackwhite'} eq 'on') {
 3023: 	delete($attr_ref->{'font'});
 3024: 	delete($attr_ref->{'link'});
 3025: 	delete($attr_ref->{'alink'});
 3026: 	delete($attr_ref->{'vlink'});
 3027: 	delete($attr_ref->{'bgcolor'});
 3028: 	delete($attr_ref->{'background'});
 3029:     }
 3030: 
 3031:     my $attr_string;
 3032:     foreach my $attr (keys(%$attr_ref)) {
 3033: 	$attr_string .= " $attr=\"".$attr_ref->{$attr}.'" ';
 3034:     }
 3035:     return $attr_string;
 3036: }
 3037: 
 3038: 
 3039: ###############################################
 3040: ###############################################
 3041: 
 3042: =pod
 3043: 
 3044: =back
 3045: 
 3046: =head1 HTML Helpers
 3047: 
 3048: =over 4
 3049: 
 3050: =item * &endbodytag()
 3051: 
 3052: Returns a uniform footer for LON-CAPA web pages.
 3053: 
 3054: Inputs: none
 3055: 
 3056: =back
 3057: 
 3058: =cut
 3059: 
 3060: sub endbodytag {
 3061:     my $endbodytag='</body>';
 3062:     $endbodytag=&Apache::lontexconvert::jsMath_process()."\n".$endbodytag;
 3063:     if ( exists( $env{'internal.head.redirect'} ) ) {
 3064: 	$endbodytag=
 3065: 	    "<br /><a href=\"$env{'internal.head.redirect'}\">".
 3066: 	    &mt('Continue').'</a>'.
 3067: 	    $endbodytag;
 3068:     }
 3069:     return $endbodytag;
 3070: }
 3071: 
 3072: =pod
 3073: 
 3074: =over 4
 3075: 
 3076: =item * &standard_css()
 3077: 
 3078: Returns a style sheet
 3079: 
 3080: Inputs: (all optional)
 3081:             domain         -> force to color decorate a page for a specific
 3082:                                domain
 3083:             function       -> force usage of a specific rolish color scheme
 3084:             bgcolor        -> override the default page bgcolor
 3085: 
 3086: =back
 3087: 
 3088: =cut
 3089: 
 3090: sub standard_css {
 3091:     my ($function,$domain,$bgcolor) = @_;
 3092:     $function  = &get_users_function() if (!$function);
 3093:     my $img    = &designparm($function.'.img',   $domain);
 3094:     my $tabbg  = &designparm($function.'.tabbg', $domain);
 3095:     my $font   = &designparm($function.'.font',  $domain);
 3096:     my $sidebg = &designparm($function.'.sidebg',$domain);
 3097:     my $pgbg_or_bgcolor =
 3098: 	         $bgcolor ||
 3099: 	         &designparm($function.'.pgbg',  $domain);
 3100:     my $pgbg   = &designparm($function.'.pgbg',  $domain);
 3101:     my $alink  = &designparm($function.'.alink', $domain);
 3102:     my $vlink  = &designparm($function.'.vlink', $domain);
 3103:     my $link   = &designparm($function.'.link',  $domain);
 3104: 
 3105:     my $sans                 = 'Arial,Helvetica,sans-serif';
 3106:     my $mono                 = 'monospace';
 3107:     my $data_table_head      = $tabbg;
 3108:     my $data_table_light     = '#EEEEEE';
 3109:     my $data_table_dark      = '#DDD';
 3110:     my $data_table_highlight = '#FFFF00';
 3111:     my $mail_new             = '#FFBB77';
 3112:     my $mail_new_hover       = '#DD9955';
 3113:     my $mail_read            = '#BBBB77';
 3114:     my $mail_read_hover      = '#999944';
 3115:     my $mail_replied         = '#AAAA88';
 3116:     my $mail_replied_hover   = '#888855';
 3117:     my $mail_other           = '#99BBBB';
 3118:     my $mail_other_hover     = '#669999';
 3119:     my $table_header         = '#DDDDDD';
 3120: 
 3121:     my $border = ($env{'browser.type'} eq 'explorer') ? '0px 2px 0px 2px'
 3122: 	                                              : '0px 3px 0px 4px';
 3123:     return <<END;
 3124: h1, h2, h3, th { font-family: $sans }
 3125: a:focus { color: red; background: yellow } 
 3126: table.thinborder { border-collapse: collapse; }
 3127: table.thinborder tr th, table.thinborder tr td { border-style: solid; border-width: 1px}
 3128: form, .inline { display: inline; }
 3129: .center { text-align: center; }
 3130: .LC_filename {font-family: $mono;}
 3131: .LC_error {
 3132:   color: red;
 3133:   font-size: larger;
 3134: }
 3135: .LC_warning {
 3136:   color: red;
 3137: }
 3138: .LC_success {
 3139:   color: green;
 3140: }
 3141: 
 3142: table#LC_top_nav, table#LC_menubuttons {
 3143:   width: 100%;
 3144:   background: $pgbg;
 3145:   border: 2px;
 3146:   border-collapse: separate;
 3147:   padding: 0px;
 3148: }
 3149: 
 3150: table#LC_title_bar, table.LC_breadcrumbs, table#LC_nav_location,
 3151: table#LC_title_bar.LC_with_remote {
 3152:   width: 100%;
 3153:   border-color: $pgbg;
 3154:   border-style: solid;
 3155:   border-width: $border;
 3156: 
 3157:   background: $pgbg;
 3158:   font-family: $sans;
 3159:   border-collapse: collapse;
 3160:   padding: 0px;
 3161: }
 3162: 
 3163: table.LC_docs_path {
 3164:   width: 100%;
 3165:   border: 0;
 3166:   background: $pgbg;
 3167:   font-family: $sans;
 3168:   border-collapse: collapse;
 3169:   padding: 0px;
 3170: }
 3171: 
 3172: table#LC_title_bar td {
 3173:   background: $tabbg;
 3174: }
 3175: table#LC_title_bar td.LC_title_bar_who {
 3176:   background: $tabbg;
 3177:   color: $font;
 3178:   font: medium $sans;
 3179:   text-align: right;
 3180: }
 3181: span.LC_title_bar_title {
 3182:   font: bold xx-large $sans;
 3183: }
 3184: table#LC_title_bar td.LC_title_bar_domain_logo {
 3185:   background: $sidebg;
 3186:   text-align: right;
 3187:   padding: 0px;
 3188: }
 3189: table#LC_title_bar td.LC_title_bar_role_logo {
 3190:   background: $sidebg;
 3191:   padding: 0px;
 3192: }
 3193: 
 3194: table#LC_menubuttons_mainmenu {
 3195:   background: $pgbg;
 3196:   border: 0px;
 3197:   border-spacing: 1px;
 3198:   padding: 0px 1px;
 3199:   margin: 0px;
 3200:   border-collapse: separate;
 3201: }
 3202: table#LC_menubuttons img, table#LC_menubuttons_mainmenu img {
 3203:   border: 0px;
 3204: }
 3205: table#LC_top_nav td {
 3206:   background: $tabbg;
 3207:   border: 0px;
 3208:   font-size: small;
 3209: }
 3210: table#LC_top_nav td a, div#LC_top_nav a {
 3211:   color: $font;
 3212:   font-family: $sans;
 3213: }
 3214: table#LC_top_nav td.LC_top_nav_logo {
 3215:   background: $tabbg;
 3216:   text-align: right;
 3217:   white-space: nowrap;
 3218:   font-weight: bold;
 3219: }
 3220: table#LC_top_nav td.LC_top_nav_logo img {
 3221:   margin-left: 0.2em;
 3222:   vertical-align: bottom;
 3223: }
 3224: table.LC_breadcrumbs td, table.LC_docs_path td  {
 3225:   background: $tabbg;
 3226:   color: $font;
 3227:   font-family: $sans;
 3228:   font-size: smaller;
 3229: }
 3230: table.LC_breadcrumbs td.LC_breadcrumbs_component,
 3231: table.LC_docs_path td.LC_docs_path_component {
 3232:   background: $tabbg;
 3233:   color: $font;
 3234:   font-family: $sans;
 3235:   font-size: larger;
 3236:   text-align: right;
 3237: }
 3238: td.LC_table_cell_checkbox {
 3239:   text-align: center;
 3240: }
 3241: 
 3242: .LC_menubuttons_inline_text {
 3243:   color: $font;
 3244:   font-family: $sans;
 3245:   font-size: smaller;
 3246: }
 3247: 
 3248: td.LC_menubuttons_text {
 3249:   color: $font;
 3250:   font-family: $sans;
 3251: }
 3252: td.LC_menubuttons_img {
 3253:   background: $tabbg;
 3254: }
 3255: .LC_current_location {
 3256:   font-family: $sans;
 3257:   background: $tabbg;
 3258: }
 3259: .LC_new_mail {
 3260:   font-family: $sans;
 3261:   font-weight: bold;
 3262: }
 3263: 
 3264: table.LC_data_table, table.LC_mail_list {
 3265:   border: 1px solid #000000;
 3266:   border-collapse: separate;
 3267: }
 3268: table.LC_data_table tr th, table.LC_calendar tr th, table.LC_mail_list tr th {
 3269:   font-weight: bold;
 3270:   background-color: $data_table_head;
 3271: }
 3272: table.LC_data_table tr td {
 3273:   background-color: $data_table_light;
 3274: }
 3275: table.LC_data_table tr.LC_even_row td {
 3276:   background-color: $data_table_dark;
 3277: }
 3278: table.LC_data_table tr.LC_empty td {
 3279:   background-color: #FFFFFF;
 3280: }
 3281: 
 3282: table.LC_calendar {
 3283:   border: 1px solid #000000;
 3284:   border-collapse: collapse;
 3285: }
 3286: table.LC_calendar_pickdate {
 3287:   font-size: xx-small;
 3288: }
 3289: table.LC_calendar tr td {
 3290:   border: 1px solid #000000;
 3291:   vertical-align: top;
 3292: }
 3293: table.LC_calendar tr td.LC_calendar_day_empty {
 3294:   background-color: $data_table_dark;
 3295: }
 3296: table.LC_calendar tr td.LC_calendar_day_current {
 3297:   background-color: $data_table_highlight;
 3298: }
 3299: 
 3300: table.LC_mail_list tr.LC_mail_new {
 3301:   background-color: $mail_new;
 3302: }
 3303: table.LC_mail_list tr.LC_mail_new:hover {
 3304:   background-color: $mail_new_hover;
 3305: }
 3306: table.LC_mail_list tr.LC_mail_read {
 3307:   background-color: $mail_read;
 3308: }
 3309: table.LC_mail_list tr.LC_mail_read:hover {
 3310:   background-color: $mail_read_hover;
 3311: }
 3312: table.LC_mail_list tr.LC_mail_replied {
 3313:   background-color: $mail_replied;
 3314: }
 3315: table.LC_mail_list tr.LC_mail_replied:hover {
 3316:   background-color: $mail_replied_hover;
 3317: }
 3318: table.LC_mail_list tr.LC_mail_other {
 3319:   background-color: $mail_other;
 3320: }
 3321: table.LC_mail_list tr.LC_mail_other:hover {
 3322:   background-color: $mail_other_hover;
 3323: }
 3324: 
 3325: table#LC_portfolio_actions {
 3326:   width: auto;
 3327:   background: $pgbg;
 3328:   border: 0px;
 3329:   border-spacing: 2px 2px;
 3330:   padding: 0px;
 3331:   margin: 0px;
 3332:   border-collapse: separate;
 3333: }
 3334: table#LC_portfolio_actions td.LC_label {
 3335:   background: $tabbg;
 3336:   text-align: right;
 3337: }
 3338: table#LC_portfolio_actions td.LC_value {
 3339:   background: $tabbg;
 3340: }
 3341: 
 3342: table#LC_cstr_controls {
 3343:   width: 100%;
 3344:   border-collapse: collapse;
 3345: }
 3346: table#LC_cstr_controls tr td {
 3347:   border: 4px solid $pgbg;
 3348:   padding: 4px;
 3349:   text-align: center;
 3350:   background: $tabbg;
 3351: }
 3352: table#LC_cstr_controls tr th {
 3353:   border: 4px solid $pgbg;
 3354:   background: $table_header;
 3355:   text-align: center;
 3356:   font-family: $sans;
 3357:   font-size: smaller;
 3358: }
 3359: 
 3360: table#LC_browser {
 3361:  
 3362: }
 3363: table#LC_browser tr th {
 3364:   background: $table_header;
 3365: }
 3366: table#LC_browser tr td {
 3367:   padding: 2px;
 3368: }
 3369: table#LC_browser tr.LC_browser_file,
 3370: table#LC_browser tr.LC_browser_file_published {
 3371:   background: #CCFF88;
 3372: }
 3373: table#LC_browser tr.LC_browser_file_locked,
 3374: table#LC_browser tr.LC_browser_file_unpublished {
 3375:   background: #FFAA99;
 3376: }
 3377: table#LC_browser tr.LC_browser_file_obsolete {
 3378:   background: #AAAAAA;
 3379: }
 3380: table#LC_browser tr.LC_browser_file_modified {
 3381:   background: #FFFF77;
 3382: }
 3383: table#LC_browser tr.LC_browser_folder {
 3384:   background: #CCCCFF;
 3385: }
 3386: span.LC_current_location {
 3387:   font-size: x-large;
 3388:   background: $pgbg;
 3389: }
 3390: 
 3391: span.LC_parm_menu_item {
 3392:   font-size: larger;
 3393:   font-family: $sans;
 3394: }
 3395: span.LC_parm_scope_all {
 3396:   color: red;
 3397: }
 3398: span.LC_parm_scope_folder {
 3399:   color: green;
 3400: }
 3401: span.LC_parm_scope_resource {
 3402:   color: orange;
 3403: }
 3404: span.LC_parm_part {
 3405:   color: blue;
 3406: }
 3407: span.LC_parm_folder, span.LC_parm_symb {
 3408:   font-size: x-small;
 3409:   font-family: $mono;
 3410:   color: #AAAAAA;
 3411: }
 3412: 
 3413: td.LC_parm_overview_level_menu, td.LC_parm_overview_map_menu,
 3414: td.LC_parm_overview_parm_selectors, td.LC_parm_overview_parm_restrictions {
 3415:   border: 1px solid black;
 3416:   border-collapse: collapse;
 3417: }
 3418: table.LC_parm_overview_restrictions td {
 3419:   border-width: 1px 4px 1px 4px;
 3420:   border-style: solid;
 3421:   border-color: $pgbg;
 3422:   text-align: center;
 3423: }
 3424: table.LC_parm_overview_restrictions th {
 3425:   background: $tabbg;
 3426:   border-width: 1px 4px 1px 4px;
 3427:   border-style: solid;
 3428:   border-color: $pgbg;
 3429: }
 3430: table#LC_helpmenu {
 3431:   border: 0px;
 3432:   height: 55px;
 3433:   border-spacing: 0px;
 3434: }
 3435: 
 3436: table#LC_helpmenu fieldset legend {
 3437:   font-size: larger;
 3438:   font-weight: bold;
 3439: }
 3440: table#LC_helpmenu_links {
 3441:   width: 100%;
 3442:   border: 1px solid black;
 3443:   background: $pgbg;
 3444:   padding: 0px;
 3445:   border-spacing: 1px;
 3446: }
 3447: table#LC_helpmenu_links tr td {
 3448:   padding: 1px;
 3449:   background: $tabbg;
 3450:   text-align: center;
 3451:   font-weight: bold;
 3452: }
 3453: 
 3454: table#LC_helpmenu_links a:link, table#LC_helpmenu_links a:visited,
 3455: table#LC_helpmenu_links a:active {
 3456:   text-decoration: none;
 3457:   color: $font;
 3458: }
 3459: table#LC_helpmenu_links a:hover {
 3460:   text-decoration: underline;
 3461:   color: $vlink;
 3462: }
 3463: 
 3464: END
 3465: }
 3466: 
 3467: =pod
 3468: 
 3469: =over 4
 3470: 
 3471: =item * &headtag()
 3472: 
 3473: Returns a uniform footer for LON-CAPA web pages.
 3474: 
 3475: Inputs: $title - optional title for the head
 3476:         $head_extra - optional extra HTML to put inside the <head>
 3477:         $args - optional arguments
 3478:             force_register - if is true call registerurl so the remote is 
 3479:                              informed
 3480:             redirect       -> array ref of
 3481:                                    1- seconds before redirect occurs
 3482:                                    2- url to redirect to
 3483:                                    3- whether the side effect should occur
 3484:                            (side effect of setting 
 3485:                                $env{'internal.head.redirect'} to the url 
 3486:                                redirected too)
 3487:             domain         -> force to color decorate a page for a specific
 3488:                                domain
 3489:             function       -> force usage of a specific rolish color scheme
 3490:             bgcolor        -> override the default page bgcolor
 3491: 
 3492: =back
 3493: 
 3494: =cut
 3495: 
 3496: sub headtag {
 3497:     my ($title,$head_extra,$args) = @_;
 3498:     
 3499:     my $function = $args->{'function'} || &get_users_function();
 3500:     my $domain   = $args->{'domain'}   || &determinedomain();
 3501:     my $bgcolor  = $args->{'bgcolor'}  || &designparm($function.'.pgbg',$domain);
 3502:     my $url = join(':',$env{'user.name'},$env{'user.domain'},time(),
 3503: 		   #$env{'environment.color.timestamp'},
 3504: 		   $function,$domain,$bgcolor);
 3505: 
 3506:     $url = '/adm/css/'.&escape($url).'.css';
 3507: 
 3508:     my $result =
 3509: 	'<head>'.
 3510: 	&font_settings().
 3511: 	&Apache::lonhtmlcommon::htmlareaheaders();
 3512: 
 3513:     if ($args->{'force_register'}) {
 3514: 	$result .= &Apache::lonmenu::registerurl(1);
 3515:     }
 3516: 
 3517:     if (ref($args->{'redirect'})) {
 3518: 	my ($time,$url,$inhibit_continue) = @{$args->{'redirect'}};
 3519: 	$url = &Apache::lonenc::check_encrypt($url);
 3520: 	if (!$inhibit_continue) {
 3521: 	    $env{'internal.head.redirect'} = $url;
 3522: 	}
 3523: 	$result.=<<ADDMETA
 3524: <meta http-equiv="pragma" content="no-cache" />
 3525: <meta http-equiv="Refresh" content="$time; url=$url" />
 3526: ADDMETA
 3527:     }
 3528:     if (!defined($title)) {
 3529: 	$title = 'The LearningOnline Network with CAPA';
 3530:     }
 3531:     
 3532:     $result .= '<title> LON-CAPA '.&mt($title).'</title>'
 3533: 	.'<link rel="stylesheet" type="text/css" href="'.$url.'" />'
 3534: 	.$head_extra;
 3535:     return $result;
 3536: }
 3537: 
 3538: =pod
 3539: 
 3540: =over 4
 3541: 
 3542: =item * &font_settings()
 3543: 
 3544: Returns neccessary <meta> to set the proper encoding
 3545: 
 3546: Inputs: none
 3547: 
 3548: =back
 3549: 
 3550: =cut
 3551: 
 3552: sub font_settings {
 3553:     my $headerstring='';
 3554:     if (($env{'browser.os'} eq 'mac') && (!$env{'browser.mathml'})) { 
 3555: 	$headerstring.=
 3556: 	    '<meta Content-Type="text/html; charset=x-mac-roman" />';
 3557:     } elsif (!$env{'browser.mathml'} && $env{'browser.unicode'}) {
 3558: 	$headerstring.=
 3559: 	    '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
 3560:     }
 3561:     return $headerstring;
 3562: }
 3563: 
 3564: =pod
 3565: 
 3566: =over 4
 3567: 
 3568: =item * &xml_begin()
 3569: 
 3570: Returns the needed doctype and <html>
 3571: 
 3572: Inputs: none
 3573: 
 3574: =back
 3575: 
 3576: =cut
 3577: 
 3578: sub xml_begin {
 3579:     my $output='';
 3580: 
 3581:     &Apache::lonhtmlcommon::init_htmlareafields();
 3582: 
 3583:     if ($env{'browser.mathml'}) {
 3584: 	$output='<?xml version="1.0"?>'
 3585:             #.'<?xml-stylesheet type="text/css" href="/adm/MathML/mathml.css"?>'."\n"
 3586: #            .'<!DOCTYPE html SYSTEM "/adm/MathML/mathml.dtd" '
 3587:             
 3588: #	    .'<!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">] >'
 3589: 	    .'<!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">'
 3590:             .'<html xmlns:math="http://www.w3.org/1998/Math/MathML" ' 
 3591: 	    .'xmlns="http://www.w3.org/1999/xhtml">';
 3592:     } else {
 3593: 	$output='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html>';
 3594:     }
 3595:     return $output;
 3596: }
 3597: 
 3598: =pod
 3599: 
 3600: =over 4
 3601: 
 3602: =item * &endheadtag()
 3603: 
 3604: Returns a uniform </head> for LON-CAPA web pages.
 3605: 
 3606: Inputs: none
 3607: 
 3608: =back
 3609: 
 3610: =cut
 3611: 
 3612: sub endheadtag {
 3613:     return '</head>';
 3614: }
 3615: 
 3616: =pod
 3617: 
 3618: =over 4
 3619: 
 3620: =item * &head()
 3621: 
 3622: Returns a uniform complete <head>..</head> section for LON-CAPA web pages.
 3623: 
 3624: Inputs: $title - optional title for the page
 3625:         $head_extra - optional extra HTML to put inside the <head>
 3626: 
 3627: =back
 3628: 
 3629: =cut
 3630: 
 3631: sub head {
 3632:     my ($title,$head_extra,$args) = @_;
 3633:     return &headtag($title,$head_extra,$args).&endheadtag();
 3634: }
 3635: 
 3636: =pod
 3637: 
 3638: =over 4
 3639: 
 3640: =item * &start_page()
 3641: 
 3642: Returns a complete <html> .. <body> section for LON-CAPA web pages.
 3643: 
 3644: Inputs: $title - optional title for the page
 3645:         $head_extra - optional extra HTML to incude inside the <head>
 3646:         $args - additional optional args supported are:
 3647:                   only_body      -> is true will set &bodytag() onlybodytag
 3648:                                     arg on
 3649:                   no_nav_bar     -> is true will set &bodytag() notopbar arg on
 3650:                   add_entries    -> additional attributes to add to the  <body>
 3651:                   domain         -> force to color decorate a page for a 
 3652:                                     specific domain
 3653:                   function       -> force usage of a specific rolish color
 3654:                                     scheme
 3655:                   redirect       -> see &headtag()
 3656:                   bgcolor        -> override the default page bg color
 3657:                   js_ready       -> return a string ready for being used in 
 3658:                                     a javascript writeln
 3659:                   html_encode    -> return a string ready for being used in 
 3660:                                     a html attribute
 3661:                   force_register -> if is true will turn on the &bodytag()
 3662:                                     $forcereg arg
 3663:                   body_title     -> alternate text to use instead of $title
 3664:                                     in the title box that appears, this text
 3665:                                     is not auto translated like the $title is
 3666:                   frameset       -> if true will start with a <frameset>
 3667:                                     rather than <body>
 3668:                   no_title       -> if true the title bar won't be shown
 3669:                   skip_phases    -> hash ref of 
 3670:                                     head -> skip the <html><head> generation
 3671:                                     body -> skip all <body> generation
 3672: 
 3673:                   no_inline_link -> if true and in remote mode, don't show the 
 3674:                                     'Switch To Inline Menu' link
 3675: 
 3676: =back
 3677: 
 3678: =cut
 3679: 
 3680: sub start_page {
 3681:     my ($title,$head_extra,$args) = @_;
 3682:     #&Apache::lonnet::logthis("start_page ".join(':',caller(0)));
 3683:     my %head_args;
 3684:     foreach my $arg ('redirect','force_register','domain','function',
 3685: 		     'bgcolor') {
 3686: 	if (defined($args->{$arg})) {
 3687: 	    $head_args{$arg} = $args->{$arg};
 3688: 	}
 3689:     }
 3690: 
 3691:     $env{'internal.start_page'}++;
 3692:     my $result;
 3693:     if (! exists($args->{'skip_phases'}{'head'}) ) {
 3694: 	$result.=
 3695: 	    &xml_begin().
 3696: 	    &headtag($title,$head_extra,\%head_args).&endheadtag();
 3697:     }
 3698:     
 3699:     if (! exists($args->{'skip_phases'}{'body'}) ) {
 3700: 	if ($args->{'frameset'}) {
 3701: 	    my $attr_string = &make_attr_string($args->{'force_register'},
 3702: 						$args->{'add_entries'});
 3703: 	    $result .= "\n<frameset $attr_string>\n";
 3704: 	} else {
 3705: 	    $result .=
 3706: 		&bodytag($title, 
 3707: 			 $args->{'function'},       $args->{'add_entries'},
 3708: 			 $args->{'only_body'},      $args->{'domain'},
 3709: 			 $args->{'force_register'}, $args->{'body_title'},
 3710: 			 $args->{'no_nav_bar'},     $args->{'bgcolor'},
 3711: 			 $args->{'no_title'},       $args->{'no_inline_link'});
 3712: 	}
 3713:     }
 3714: 
 3715:     if ($args->{'js_ready'}) {
 3716: 	$result = &js_ready($result);
 3717:     }
 3718:     if ($args->{'html_encode'}) {
 3719: 	$result = &html_encode($result);
 3720:     }
 3721:     return $result;
 3722: }
 3723: 
 3724: 
 3725: =pod
 3726: 
 3727: =over 4
 3728: 
 3729: =item * &head()
 3730: 
 3731: Returns a complete </body></html> section for LON-CAPA web pages.
 3732: 
 3733: Inputs:         $args - additional optional args supported are:
 3734:                  js_ready     -> return a string ready for being used in 
 3735:                                  a javascript writeln
 3736:                  html_encode  -> return a string ready for being used in 
 3737:                                  a html attribute
 3738:                  frameset     -> if true will start with a <frameset>
 3739:                                  rather than <body>
 3740: 
 3741: =cut
 3742: 
 3743: sub end_page {
 3744:     my ($args) = @_;
 3745:     $env{'internal.end_page'}++;
 3746:     my $result;
 3747:     if ($args->{'discussion'}) {
 3748: 	my ($target,$parser);
 3749: 	if (ref($args->{'discussion'})) {
 3750: 	    ($target,$parser) =($args->{'discussion'}{'target'},
 3751: 				$args->{'discussion'}{'parser'});
 3752: 	}
 3753: 	$result .= &Apache::lonxml::xmlend($target,$parser);
 3754:     }
 3755: 
 3756:     if ($args->{'frameset'}) {
 3757: 	$result .= '</frameset>';
 3758:     } else {
 3759: 	$result .= &endbodytag();
 3760:     }
 3761:     $result .= "\n</html>";
 3762: 
 3763:     if ($args->{'js_ready'}) {
 3764: 	$result = &js_ready($result);
 3765:     }
 3766: 
 3767:     if ($args->{'html_encode'}) {
 3768: 	$result = &html_encode($result);
 3769:     }
 3770: 
 3771:     return $result;
 3772: }
 3773: 
 3774: sub html_encode {
 3775:     my ($result) = @_;
 3776: 
 3777:     $result = &HTML::Entities::encode($result,'<>&"');
 3778:     
 3779:     return $result;
 3780: }
 3781: sub js_ready {
 3782:     my ($result) = @_;
 3783: 
 3784:     $result =~ s/[\n\r]/ /xmsg;
 3785:     $result =~ s/\\/\\\\/xmsg;
 3786:     $result =~ s/'/\\'/xmsg;
 3787:     $result =~ s{</}{<\\/}xmsg;
 3788:     
 3789:     return $result;
 3790: }
 3791: 
 3792: sub validate_page {
 3793:     if (  exists($env{'internal.start_page'})
 3794: 	  &&     $env{'internal.start_page'} > 1) {
 3795: 	&Apache::lonnet::logthis('start_page called multiple times '.
 3796: 				 $env{'internal.start_page'}.' '.
 3797: 				 $ENV{'request.filename'});
 3798:     }
 3799:     if (  exists($env{'internal.end_page'})
 3800: 	  &&     $env{'internal.end_page'} > 1) {
 3801: 	&Apache::lonnet::logthis('end_page called multiple times '.
 3802: 				 $env{'internal.end_page'}.' '.
 3803: 				 $env{'request.filename'});
 3804:     }
 3805:     if (     exists($env{'internal.start_page'})
 3806: 	&& ! exists($env{'internal.end_page'})) {
 3807: 	&Apache::lonnet::logthis('start_page called without end_page '.
 3808: 				 $env{'request.filename'});
 3809:     }
 3810:     if (   ! exists($env{'internal.start_page'})
 3811: 	&&   exists($env{'internal.end_page'})) {
 3812: 	&Apache::lonnet::logthis('end_page called without start_page'.
 3813: 				 $env{'request.filename'});
 3814:     }
 3815: }
 3816: 
 3817: sub simple_error_page {
 3818:     my ($r,$title,$msg) = @_;
 3819:     my $page =
 3820: 	&Apache::loncommon::start_page($title).
 3821: 	&mt($msg).
 3822: 	&Apache::loncommon::end_page();
 3823:     if (ref($r)) {
 3824: 	$r->print($page);
 3825: 	return;
 3826:     }
 3827:     return $page;
 3828: }
 3829: 
 3830: {
 3831:     my $row_count;
 3832:     sub start_data_table {
 3833: 	undef($row_count);
 3834: 	return '<table class="LC_data_table">'."\n";
 3835:     }
 3836: 
 3837:     sub end_data_table {
 3838: 	undef($row_count);
 3839: 	return '</table>'."\n";;
 3840:     }
 3841: 
 3842:     sub start_data_table_row {
 3843: 	$row_count++;
 3844: 	return  '<tr '.(($row_count % 2)?'':'class="LC_even_row"').'>'."\n";;
 3845:     }
 3846: 
 3847:     sub end_data_table_row {
 3848: 	return '</tr>'."\n";;
 3849:     }
 3850: 
 3851:     sub start_data_table_header_row {
 3852: 	return  '<tr class="LC_header_row">'."\n";;
 3853:     }
 3854: 
 3855:     sub end_data_table_header_row {
 3856: 	return '</tr>'."\n";;
 3857:     }
 3858: }
 3859: 
 3860: ###############################################
 3861: 
 3862: =pod
 3863: 
 3864: =item * &get_users_function()
 3865: 
 3866: Used by &bodytag to determine the current users primary role.
 3867: Returns either 'student','coordinator','admin', or 'author'.
 3868: 
 3869: =cut
 3870: 
 3871: ###############################################
 3872: sub get_users_function {
 3873:     my $function = 'student';
 3874:     if ($env{'request.role'}=~/^(cc|in|ta|ep)/) {
 3875:         $function='coordinator';
 3876:     }
 3877:     if ($env{'request.role'}=~/^(su|dc|ad|li)/) {
 3878:         $function='admin';
 3879:     }
 3880:     if (($env{'request.role'}=~/^(au|ca)/) ||
 3881:         ($ENV{'REQUEST_URI'}=~/^(\/priv|\~)/)) {
 3882:         $function='author';
 3883:     }
 3884:     return $function;
 3885: }
 3886: 
 3887: ###############################################
 3888: 
 3889: =pod
 3890: 
 3891: =item * &check_user_status
 3892: 
 3893: Determines current status of supplied role for a
 3894: specific user. Roles can be active, previous or future.
 3895: 
 3896: Inputs: 
 3897: user's domain, user's username, course's domain,
 3898: course's number, optional section ID.
 3899: 
 3900: Outputs:
 3901: role status: active, previous or future. 
 3902: 
 3903: =cut
 3904: 
 3905: sub check_user_status {
 3906:     my ($udom,$uname,$cdom,$crs,$role,$sec) = @_;
 3907:     my %userinfo = &Apache::lonnet::dump('roles',$udom,$uname);
 3908:     my @uroles = keys %userinfo;
 3909:     my $srchstr;
 3910:     my $active_chk = 'none';
 3911:     my $now = time;
 3912:     if (@uroles > 0) {
 3913:         if (($role eq 'cc') || ($sec eq '') || (!defined($sec))) {
 3914:             $srchstr = '/'.$cdom.'/'.$crs.'_'.$role;
 3915:         } else {
 3916:             $srchstr = '/'.$cdom.'/'.$crs.'/'.$sec.'_'.$role;
 3917:         }
 3918:         if (grep/^\Q$srchstr\E$/,@uroles) {
 3919:             my $role_end = 0;
 3920:             my $role_start = 0;
 3921:             $active_chk = 'active';
 3922:             if ($userinfo{$srchstr} =~ m/^\Q$role\E_(\d+)/) {
 3923:                 $role_end = $1;
 3924:                 if ($userinfo{$srchstr} =~ m/^\Q$role\E_\Q$role_end\E_(\d+)$/) {
 3925:                     $role_start = $1;
 3926:                 }
 3927:             }
 3928:             if ($role_start > 0) {
 3929:                 if ($now < $role_start) {
 3930:                     $active_chk = 'future';
 3931:                 }
 3932:             }
 3933:             if ($role_end > 0) {
 3934:                 if ($now > $role_end) {
 3935:                     $active_chk = 'previous';
 3936:                 }
 3937:             }
 3938:         }
 3939:     }
 3940:     return $active_chk;
 3941: }
 3942: 
 3943: ###############################################
 3944: 
 3945: =pod
 3946: 
 3947: =item * &get_sections()
 3948: 
 3949: Determines all the sections for a course including
 3950: sections with students and sections containing other roles.
 3951: Incoming parameters: domain, course number, 
 3952: reference to array containing roles for which sections should 
 3953: be gathered (optional). If the third argument is undefined,
 3954: sections are gathered for any role.
 3955:  
 3956: Returns section hash (keys are section IDs, values are
 3957: number of users in each section), subject to the
 3958: optional roles filter.
 3959: 
 3960: =cut
 3961: 
 3962: ###############################################
 3963: sub get_sections {
 3964:     my ($cdom,$cnum,$possible_roles) = @_;
 3965:     if (!defined($cdom) || !defined($cnum)) {
 3966:         my $cid =  $env{'request.course.id'};
 3967: 
 3968: 	return if (!defined($cid));
 3969: 
 3970:         $cdom = $env{'course.'.$cid.'.domain'};
 3971:         $cnum = $env{'course.'.$cid.'.num'};
 3972:     }
 3973: 
 3974:     my %sectioncount;
 3975: 
 3976:     if (!defined($possible_roles) || (grep(/^st$/,@$possible_roles))) {
 3977: 	my ($classlist) = &Apache::loncoursedata::get_classlist($cdom,$cnum);
 3978: 	my $sec_index = &Apache::loncoursedata::CL_SECTION();
 3979: 	my $status_index = &Apache::loncoursedata::CL_STATUS();
 3980: 	while (my ($student,$data) = each(%$classlist)) {
 3981: 	    my ($section,$status) = ($data->[$sec_index],
 3982: 				     $data->[$status_index]);
 3983: 	    unless ($section eq '-1' || $section =~ /^\s*$/) {
 3984: 		$sectioncount{$section}++;
 3985: 	    }
 3986: 	}
 3987:     }
 3988:     my %courseroles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
 3989:     foreach my $user (sort(keys(%courseroles))) {
 3990: 	if ($user !~ /^(\w{2})/) { next; }
 3991: 	my ($role) = ($user =~ /^(\w{2})/);
 3992: 	if ($possible_roles && !(grep(/^$role$/,@$possible_roles))) { next; }
 3993: 	my $section;
 3994: 	if ($role eq 'cr' &&
 3995: 	    $user =~ m-^$role/[^/]*/[^/]*/[^/]*:[^:]*:[^:]*:(\w+)-) {
 3996: 	    $section=$1;
 3997: 	}
 3998: 	if ($user =~ /^$role:[^:]*:[^:]*:(\w+)/) { $section=$1; }
 3999: 	if (!defined($section) || $section eq '-1') { next; }
 4000: 	$sectioncount{$section}++;
 4001:     }
 4002:     return %sectioncount;
 4003: }
 4004: 
 4005: ###############################################
 4006: 
 4007: =pod
 4008: 
 4009: =item * &get_course_users()
 4010: 
 4011: Retrieves usernames:domains for users in the specified course
 4012: with specific role(s), and access status. 
 4013: 
 4014: Incoming parameters:
 4015: 1. course domain
 4016: 2. course number
 4017: 3. access status: users must have - either active, 
 4018: previous, future, or all.
 4019: 4. reference to array of permissible roles
 4020: 5. reference to array of section restrictions (optional)
 4021: 6. reference to results object (hash of hashes).
 4022: 7. reference to optional userdata hash
 4023: Keys of top level hash are roles.
 4024: Keys of inner hashes are username:domain, with 
 4025: values set to access type.
 4026: Optional userdata hash returns an array with arguments in the 
 4027: same order as loncoursedata::get_classlist() for student data.
 4028: 
 4029: Entries for end, start, section and status are blank because
 4030: of the possibility of multiple values for non-student roles.
 4031: 
 4032: =cut
 4033: 
 4034: ###############################################
 4035: 
 4036: sub get_course_users {
 4037:     my ($cdom,$cnum,$types,$roles,$sections,$users,$userdata) = @_;
 4038:     my %idx = ();
 4039: 
 4040:     $idx{udom} = &Apache::loncoursedata::CL_SDOM();
 4041:     $idx{uname} =  &Apache::loncoursedata::CL_SNAME();
 4042:     $idx{end} = &Apache::loncoursedata::CL_END();
 4043:     $idx{start} = &Apache::loncoursedata::CL_START();
 4044:     $idx{id} = &Apache::loncoursedata::CL_ID();
 4045:     $idx{section} = &Apache::loncoursedata::CL_SECTION();
 4046:     $idx{fullname} = &Apache::loncoursedata::CL_FULLNAME();
 4047:     $idx{status} = &Apache::loncoursedata::CL_STATUS();
 4048: 
 4049:     if (grep(/^st$/,@{$roles})) {
 4050:         my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist($cdom,$cnum);
 4051:         my $now = time;
 4052:         foreach my $student (keys(%{$classlist})) {
 4053:             my $match = 0;
 4054:             my $secmatch = 0;
 4055:             if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
 4056:                 if (grep/^all$/,@{$sections}) {
 4057:                     $secmatch = 1;
 4058:                 } elsif ($$classlist{$student}[$idx{section}] eq '') {
 4059:                     if (grep/^none$/,@{$sections}) {
 4060:                         $secmatch = 1;
 4061:                     }
 4062:                 } else {  
 4063: 		    if (grep(/^\Q$$classlist{$student}[$idx{section}]\E$/,
 4064: 			    @{$sections})) {
 4065: 		        $secmatch = 1;
 4066:                     }
 4067: 		}
 4068:                 if (!$secmatch) {
 4069:                     next;
 4070:                 }
 4071:             } 
 4072:             if (defined($$types{'active'})) {
 4073:                 if ($$classlist{$student}[$idx{status}] eq 'Active') {
 4074:                     push(@{$$users{st}{$student}},'active');
 4075:                     $match = 1;
 4076:                 }
 4077:             }
 4078:             if (defined($$types{'previous'})) {
 4079:                 if ($$classlist{$student}[$idx{end}] <= $now) {
 4080:                     push(@{$$users{st}{$student}},'previous');
 4081:                     $match = 1;
 4082:                 }
 4083:             }
 4084:             if (defined($$types{'future'})) {
 4085:                 if (($$classlist{$student}[$idx{start}] > $now) && ($$classlist{$student}[$idx{end}] > $now) || ($$classlist{$student}[$idx{end}] == 0) || ($$classlist{$student}[$idx{end}] eq '')) {
 4086:                     push(@{$$users{st}{$student}},'future');
 4087:                     $match = 1;
 4088:                 }
 4089:             }
 4090:             if ($match && ref($userdata) eq 'HASH') {
 4091:                 $$userdata{$student} = $$classlist{$student};
 4092:             }
 4093:         }
 4094:     }
 4095:     if ((@{$roles} > 1) || ((@{$roles} == 1) && ($$roles[0] ne "st"))) {
 4096:         my @coursepersonnel = &Apache::lonnet::getkeys('nohist_userroles',$cdom,$cnum);
 4097:         foreach my $person (@coursepersonnel) {
 4098:             my $match = 0;
 4099:             my $secmatch = 0;
 4100:             my ($role,$user,$usec) = ($person =~ /^([^:]*):([^:]+:[^:]+):([^:]*)/);
 4101:             $user =~ s/:$//;
 4102:             if (($role) && (grep(/^\Q$role\E$/,@{$roles}))) {
 4103:                 my ($uname,$udom) = split(/:/,$user);
 4104:                 if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
 4105:                     if (grep/^all$/,@{$sections}) {
 4106:                         $secmatch = 1;
 4107:                     } elsif ($usec eq '') {
 4108:                         if (grep/^none$/,@{$sections}) {
 4109:                             $secmatch = 1;
 4110:                         }
 4111:                     } else {
 4112:                         if (grep(/^\Q$usec\E$/,@{$sections})) {
 4113:                             $secmatch = 1;
 4114:                         }
 4115:                     }
 4116:                     if (!$secmatch) {
 4117:                         next;
 4118:                     }
 4119:                 }
 4120:                 if ($uname ne '' && $udom ne '') {
 4121:                     my $status = &check_user_status($udom,$uname,$cdom,$cnum,$role,
 4122:                                                     $usec);
 4123:                     foreach my $type (keys(%{$types})) { 
 4124:                         if ($status eq $type) {
 4125:                             @{$$users{$role}{$user}} = $type;
 4126:                             $match = 1;
 4127:                         }
 4128:                     }
 4129:                     if (($match) && (ref($userdata) eq 'HASH') &&
 4130:                         (!exists($$userdata{$uname.':'.$udom}))) {
 4131: 			&get_user_info($udom,$uname,\%idx,$userdata);
 4132:                     }
 4133:                 }
 4134:             }
 4135:         }
 4136:         if (grep(/^ow$/,@{$roles})) {
 4137:             if ((defined($cdom)) && (defined($cnum))) {
 4138:                 my %csettings = &Apache::lonnet::get('environment',['internal.courseowner'],$cdom,$cnum);
 4139:                 if ( defined($csettings{'internal.courseowner'}) ) {
 4140:                     my $owner = $csettings{'internal.courseowner'};
 4141:                     @{$$users{'ow'}{$owner.':'.$cdom}} = 'any';
 4142:                     if (defined($userdata) && 
 4143: 			!exists($$userdata{$owner.':'.$cdom})) {
 4144: 			&get_user_info($cdom,$owner,\%idx,$userdata);
 4145: 		    }
 4146:                 }
 4147:             }
 4148:         }
 4149:     }
 4150:     return;
 4151: }
 4152: 
 4153: sub get_user_info {
 4154:     my ($udom,$uname,$idx,$userdata) = @_;
 4155:     $$userdata{$uname.':'.$udom}[$$idx{fullname}] = 
 4156: 	&plainname($uname,$udom,'lastname');
 4157:     $$userdata{$uname.':'.$udom}[$$idx{uname}] = $uname;
 4158:     $$userdata{$uname.':'.$udom}[$$idx{udom}] = $udom;
 4159:     return;
 4160: }
 4161: 
 4162: sub get_secgrprole_info {
 4163:     my ($cdom,$cnum,$needroles,$type)  = @_;
 4164:     my %sections_count = &get_sections($cdom,$cnum);
 4165:     my @sections =  (sort {$a <=> $b} keys(%sections_count));
 4166:     my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum);
 4167:     my @groups = sort(keys(%curr_groups));
 4168:     my $allroles = [];
 4169:     my $rolehash;
 4170:     my $accesshash = {
 4171:                      active => 'Currently has access',
 4172:                      future => 'Will have future access',
 4173:                      previous => 'Previously had access',
 4174:                   };
 4175:     if ($needroles) {
 4176:         $rolehash = {'all' => 'all'};
 4177:         my %user_roles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
 4178: 	if (&Apache::lonnet::error(%user_roles)) {
 4179: 	    undef(%user_roles);
 4180: 	}
 4181:         foreach my $item (keys(%user_roles)) {
 4182:             my ($role)=split(/\:/,$item,2);
 4183:             if ($role eq 'cr') { next; }
 4184:             if ($role =~ /^cr/) {
 4185:                 $$rolehash{$role} = (split('/',$role))[3];
 4186:             } else {
 4187:                 $$rolehash{$role} = &Apache::lonnet::plaintext($role,$type);
 4188:             }
 4189:         }
 4190:         foreach my $key (sort(keys(%{$rolehash}))) {
 4191:             push(@{$allroles},$key);
 4192:         }
 4193:         push (@{$allroles},'st');
 4194:         $$rolehash{'st'} = &Apache::lonnet::plaintext('st',$type);
 4195:     }
 4196:     return (\@sections,\@groups,$allroles,$rolehash,$accesshash);
 4197: }
 4198: 
 4199: =pod
 4200: 
 4201: =item * get_unprocessed_cgi($query,$possible_names)
 4202: 
 4203: Modify the %env hash to contain unprocessed CGI form parameters held in
 4204: $query.  The parameters listed in $possible_names (an array reference),
 4205: will be set in $env{'form.name'} if they do not already exist.
 4206: 
 4207: Typically called with $ENV{'QUERY_STRING'} as the first parameter.  
 4208: $possible_names is an ref to an array of form element names.  As an example:
 4209: get_unprocessed_cgi($ENV{'QUERY_STRING'},['uname','udom']);
 4210: will result in $env{'form.uname'} and $env{'form.udom'} being set.
 4211: 
 4212: =cut
 4213: 
 4214: sub get_unprocessed_cgi {
 4215:   my ($query,$possible_names)= @_;
 4216:   # $Apache::lonxml::debug=1;
 4217:   foreach my $pair (split(/&/,$query)) {
 4218:     my ($name, $value) = split(/=/,$pair);
 4219:     $name = &unescape($name);
 4220:     if (!defined($possible_names) || (grep {$_ eq $name} @$possible_names)) {
 4221:       $value =~ tr/+/ /;
 4222:       $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
 4223:       unless (defined($env{'form.'.$name})) { &add_to_env('form.'.$name,$value) };
 4224:     }
 4225:   }
 4226: }
 4227: 
 4228: =pod
 4229: 
 4230: =item * cacheheader() 
 4231: 
 4232: returns cache-controlling header code
 4233: 
 4234: =cut
 4235: 
 4236: sub cacheheader {
 4237:     unless ($env{'request.method'} eq 'GET') { return ''; }
 4238:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime);
 4239:     my $output .='<meta HTTP-EQUIV="Expires" CONTENT="'.$date.'" />
 4240:                 <meta HTTP-EQUIV="Cache-control" CONTENT="no-cache" />
 4241:                 <meta HTTP-EQUIV="Pragma" CONTENT="no-cache" />';
 4242:     return $output;
 4243: }
 4244: 
 4245: =pod
 4246: 
 4247: =item * no_cache($r) 
 4248: 
 4249: specifies header code to not have cache
 4250: 
 4251: =cut
 4252: 
 4253: sub no_cache {
 4254:     my ($r) = @_;
 4255:     if ($ENV{'REQUEST_METHOD'} ne 'GET' &&
 4256: 	$env{'request.method'} ne 'GET') { return ''; }
 4257:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime(time));
 4258:     $r->no_cache(1);
 4259:     $r->header_out("Expires" => $date);
 4260:     $r->header_out("Pragma" => "no-cache");
 4261: }
 4262: 
 4263: sub content_type {
 4264:     my ($r,$type,$charset) = @_;
 4265:     if ($r) {
 4266: 	#  Note that printout.pl calls this with undef for $r.
 4267: 	&no_cache($r);
 4268:     }
 4269:     if ($env{'browser.mathml'} && $type eq 'text/html') { $type='text/xml'; }
 4270:     unless ($charset) {
 4271: 	$charset=&Apache::lonlocal::current_encoding;
 4272:     }
 4273:     if ($charset) { $type.='; charset='.$charset; }
 4274:     if ($r) {
 4275: 	$r->content_type($type);
 4276:     } else {
 4277: 	print("Content-type: $type\n\n");
 4278:     }
 4279: }
 4280: 
 4281: =pod
 4282: 
 4283: =item * add_to_env($name,$value) 
 4284: 
 4285: adds $name to the %env hash with value
 4286: $value, if $name already exists, the entry is converted to an array
 4287: reference and $value is added to the array.
 4288: 
 4289: =cut
 4290: 
 4291: sub add_to_env {
 4292:   my ($name,$value)=@_;
 4293:   if (defined($env{$name})) {
 4294:     if (ref($env{$name})) {
 4295:       #already have multiple values
 4296:       push(@{ $env{$name} },$value);
 4297:     } else {
 4298:       #first time seeing multiple values, convert hash entry to an arrayref
 4299:       my $first=$env{$name};
 4300:       undef($env{$name});
 4301:       push(@{ $env{$name} },$first,$value);
 4302:     }
 4303:   } else {
 4304:     $env{$name}=$value;
 4305:   }
 4306: }
 4307: 
 4308: =pod
 4309: 
 4310: =item * get_env_multiple($name) 
 4311: 
 4312: gets $name from the %env hash, it seemlessly handles the cases where multiple
 4313: values may be defined and end up as an array ref.
 4314: 
 4315: returns an array of values
 4316: 
 4317: =cut
 4318: 
 4319: sub get_env_multiple {
 4320:     my ($name) = @_;
 4321:     my @values;
 4322:     if (defined($env{$name})) {
 4323:         # exists is it an array
 4324:         if (ref($env{$name})) {
 4325:             @values=@{ $env{$name} };
 4326:         } else {
 4327:             $values[0]=$env{$name};
 4328:         }
 4329:     }
 4330:     return(@values);
 4331: }
 4332: 
 4333: 
 4334: =pod
 4335: 
 4336: =back 
 4337: 
 4338: =head1 CSV Upload/Handling functions
 4339: 
 4340: =over 4
 4341: 
 4342: =item * upfile_store($r)
 4343: 
 4344: Store uploaded file, $r should be the HTTP Request object,
 4345: needs $env{'form.upfile'}
 4346: returns $datatoken to be put into hidden field
 4347: 
 4348: =cut
 4349: 
 4350: sub upfile_store {
 4351:     my $r=shift;
 4352:     $env{'form.upfile'}=~s/\r/\n/gs;
 4353:     $env{'form.upfile'}=~s/\f/\n/gs;
 4354:     $env{'form.upfile'}=~s/\n+/\n/gs;
 4355:     $env{'form.upfile'}=~s/\n+$//gs;
 4356: 
 4357:     my $datatoken=$env{'user.name'}.'_'.$env{'user.domain'}.
 4358: 	'_enroll_'.$env{'request.course.id'}.'_'.time.'_'.$$;
 4359:     {
 4360:         my $datafile = $r->dir_config('lonDaemons').
 4361:                            '/tmp/'.$datatoken.'.tmp';
 4362:         if ( open(my $fh,">$datafile") ) {
 4363:             print $fh $env{'form.upfile'};
 4364:             close($fh);
 4365:         }
 4366:     }
 4367:     return $datatoken;
 4368: }
 4369: 
 4370: =pod
 4371: 
 4372: =item * load_tmp_file($r)
 4373: 
 4374: Load uploaded file from tmp, $r should be the HTTP Request object,
 4375: needs $env{'form.datatoken'},
 4376: sets $env{'form.upfile'} to the contents of the file
 4377: 
 4378: =cut
 4379: 
 4380: sub load_tmp_file {
 4381:     my $r=shift;
 4382:     my @studentdata=();
 4383:     {
 4384:         my $studentfile = $r->dir_config('lonDaemons').
 4385:                               '/tmp/'.$env{'form.datatoken'}.'.tmp';
 4386:         if ( open(my $fh,"<$studentfile") ) {
 4387:             @studentdata=<$fh>;
 4388:             close($fh);
 4389:         }
 4390:     }
 4391:     $env{'form.upfile'}=join('',@studentdata);
 4392: }
 4393: 
 4394: =pod
 4395: 
 4396: =item * upfile_record_sep()
 4397: 
 4398: Separate uploaded file into records
 4399: returns array of records,
 4400: needs $env{'form.upfile'} and $env{'form.upfiletype'}
 4401: 
 4402: =cut
 4403: 
 4404: sub upfile_record_sep {
 4405:     if ($env{'form.upfiletype'} eq 'xml') {
 4406:     } else {
 4407: 	my @records;
 4408: 	foreach my $line (split(/\n/,$env{'form.upfile'})) {
 4409: 	    if ($line=~/^\s*$/) { next; }
 4410: 	    push(@records,$line);
 4411: 	}
 4412: 	return @records;
 4413:     }
 4414: }
 4415: 
 4416: =pod
 4417: 
 4418: =item * record_sep($record)
 4419: 
 4420: Separate a record into fields $record should be an item from the upfile_record_sep(), needs $env{'form.upfiletype'}
 4421: 
 4422: =cut
 4423: 
 4424: sub takeleft {
 4425:     my $index=shift;
 4426:     return substr('0000'.$index,-4,4);
 4427: }
 4428: 
 4429: sub record_sep {
 4430:     my $record=shift;
 4431:     my %components=();
 4432:     if ($env{'form.upfiletype'} eq 'xml') {
 4433:     } elsif ($env{'form.upfiletype'} eq 'space') {
 4434:         my $i=0;
 4435:         foreach my $field (split(/\s+/,$record)) {
 4436:             $field=~s/^(\"|\')//;
 4437:             $field=~s/(\"|\')$//;
 4438:             $components{&takeleft($i)}=$field;
 4439:             $i++;
 4440:         }
 4441:     } elsif ($env{'form.upfiletype'} eq 'tab') {
 4442:         my $i=0;
 4443:         foreach my $field (split(/\t/,$record)) {
 4444:             $field=~s/^(\"|\')//;
 4445:             $field=~s/(\"|\')$//;
 4446:             $components{&takeleft($i)}=$field;
 4447:             $i++;
 4448:         }
 4449:     } else {
 4450:         my @allfields=split(/\,/,$record);
 4451:         my $i=0;
 4452:         my $j;
 4453:         for ($j=0;$j<=$#allfields;$j++) {
 4454:             my $field=$allfields[$j];
 4455:             if ($field=~/^\s*(\"|\')/) {
 4456: 		my $delimiter=$1;
 4457:                 while (($field!~/$delimiter$/) && ($j<$#allfields)) {
 4458: 		    $j++;
 4459: 		    $field.=','.$allfields[$j];
 4460: 		}
 4461:                 $field=~s/^\s*$delimiter//;
 4462:                 $field=~s/$delimiter\s*$//;
 4463:             }
 4464:             $components{&takeleft($i)}=$field;
 4465: 	    $i++;
 4466:         }
 4467:     }
 4468:     return %components;
 4469: }
 4470: 
 4471: ######################################################
 4472: ######################################################
 4473: 
 4474: =pod
 4475: 
 4476: =item * upfile_select_html()
 4477: 
 4478: Return HTML code to select a file from the users machine and specify 
 4479: the file type.
 4480: 
 4481: =cut
 4482: 
 4483: ######################################################
 4484: ######################################################
 4485: sub upfile_select_html {
 4486:     my %Types = (
 4487:                  csv   => &mt('CSV (comma separated values, spreadsheet)'),
 4488:                  space => &mt('Space separated'),
 4489:                  tab   => &mt('Tabulator separated'),
 4490: #                 xml   => &mt('HTML/XML'),
 4491:                  );
 4492:     my $Str = '<input type="file" name="upfile" size="50" />'.
 4493:         '<br />Type: <select name="upfiletype">';
 4494:     foreach my $type (sort(keys(%Types))) {
 4495:         $Str .= '<option value="'.$type.'" >'.$Types{$type}."</option>\n";
 4496:     }
 4497:     $Str .= "</select>\n";
 4498:     return $Str;
 4499: }
 4500: 
 4501: sub get_samples {
 4502:     my ($records,$toget) = @_;
 4503:     my @samples=({});
 4504:     my $got=0;
 4505:     foreach my $rec (@$records) {
 4506: 	my %temp = &record_sep($rec);
 4507: 	if (! grep(/\S/, values(%temp))) { next; }
 4508: 	if (%temp) {
 4509: 	    $samples[$got]=\%temp;
 4510: 	    $got++;
 4511: 	    if ($got == $toget) { last; }
 4512: 	}
 4513:     }
 4514:     return \@samples;
 4515: }
 4516: 
 4517: ######################################################
 4518: ######################################################
 4519: 
 4520: =pod
 4521: 
 4522: =item * csv_print_samples($r,$records)
 4523: 
 4524: Prints a table of sample values from each column uploaded $r is an
 4525: Apache Request ref, $records is an arrayref from
 4526: &Apache::loncommon::upfile_record_sep
 4527: 
 4528: =cut
 4529: 
 4530: ######################################################
 4531: ######################################################
 4532: sub csv_print_samples {
 4533:     my ($r,$records) = @_;
 4534:     my $samples = &get_samples($records,3);
 4535: 
 4536:     $r->print(&mt('Samples').'<br /><table border="2"><tr>');
 4537:     foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) { 
 4538:         $r->print('<th>'.&mt('Column&nbsp;[_1]',($sample+1)).'</th>'); }
 4539:     $r->print('</tr>');
 4540:     foreach my $hash (@$samples) {
 4541: 	$r->print('<tr>');
 4542: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
 4543: 	    $r->print('<td>');
 4544: 	    if (defined($$hash{$sample})) { $r->print($$hash{$sample}); }
 4545: 	    $r->print('</td>');
 4546: 	}
 4547: 	$r->print('</tr>');
 4548:     }
 4549:     $r->print('</tr></table><br />'."\n");
 4550: }
 4551: 
 4552: ######################################################
 4553: ######################################################
 4554: 
 4555: =pod
 4556: 
 4557: =item * csv_print_select_table($r,$records,$d)
 4558: 
 4559: Prints a table to create associations between values and table columns.
 4560: 
 4561: $r is an Apache Request ref,
 4562: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
 4563: $d is an array of 2 element arrays (internal name, displayed name,defaultcol)
 4564: 
 4565: =cut
 4566: 
 4567: ######################################################
 4568: ######################################################
 4569: sub csv_print_select_table {
 4570:     my ($r,$records,$d) = @_;
 4571:     my $i=0;
 4572:     my $samples = &get_samples($records,1);
 4573:     $r->print(&mt('Associate columns with student attributes.')."\n".
 4574: 	     '<table border="2"><tr>'.
 4575:               '<th>'.&mt('Attribute').'</th>'.
 4576:               '<th>'.&mt('Column').'</th></tr>'."\n");
 4577:     foreach my $array_ref (@$d) {
 4578: 	my ($value,$display,$defaultcol)=@{ $array_ref };
 4579: 	$r->print('<tr><td>'.$display.'</td>');
 4580: 
 4581: 	$r->print('<td><select name=f'.$i.
 4582: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
 4583: 	$r->print('<option value="none"></option>');
 4584: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
 4585: 	    $r->print('<option value="'.$sample.'"'.
 4586:                       ($sample eq $defaultcol ? ' selected="selected" ' : '').
 4587:                       '>Column '.($sample+1).'</option>');
 4588: 	}
 4589: 	$r->print('</select></td></tr>'."\n");
 4590: 	$i++;
 4591:     }
 4592:     $i--;
 4593:     return $i;
 4594: }
 4595: 
 4596: ######################################################
 4597: ######################################################
 4598: 
 4599: =pod
 4600: 
 4601: =item * csv_samples_select_table($r,$records,$d)
 4602: 
 4603: Prints a table of sample values from the upload and can make associate samples to internal names.
 4604: 
 4605: $r is an Apache Request ref,
 4606: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
 4607: $d is an array of 2 element arrays (internal name, displayed name)
 4608: 
 4609: =cut
 4610: 
 4611: ######################################################
 4612: ######################################################
 4613: sub csv_samples_select_table {
 4614:     my ($r,$records,$d) = @_;
 4615:     my $i=0;
 4616:     #
 4617:     my $samples = &get_samples($records,3);
 4618:     $r->print('<table border=2><tr><th>'.
 4619:               &mt('Field').'</th><th>'.&mt('Samples').'</th></tr>');
 4620: 
 4621:     foreach my $key (sort(keys(%{ $samples->[0] }))) {
 4622: 	$r->print('<tr><td><select name="f'.$i.'"'.
 4623: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
 4624: 	foreach my $option (@$d) {
 4625: 	    my ($value,$display,$defaultcol)=@{ $option };
 4626: 	    $r->print('<option value="'.$value.'"'.
 4627:                       ($i eq $defaultcol ? ' selected="selected" ':'').'>'.
 4628:                       $display.'</option>');
 4629: 	}
 4630: 	$r->print('</select></td><td>');
 4631: 	foreach my $line (0..2) {
 4632: 	    if (defined($samples->[$line]{$key})) { 
 4633: 		$r->print($samples->[$line]{$key}."<br />\n"); 
 4634: 	    }
 4635: 	}
 4636: 	$r->print('</td></tr>');
 4637: 	$i++;
 4638:     }
 4639:     $i--;
 4640:     return($i);
 4641: }
 4642: 
 4643: ######################################################
 4644: ######################################################
 4645: 
 4646: =pod
 4647: 
 4648: =item clean_excel_name($name)
 4649: 
 4650: Returns a replacement for $name which does not contain any illegal characters.
 4651: 
 4652: =cut
 4653: 
 4654: ######################################################
 4655: ######################################################
 4656: sub clean_excel_name {
 4657:     my ($name) = @_;
 4658:     $name =~ s/[:\*\?\/\\]//g;
 4659:     if (length($name) > 31) {
 4660:         $name = substr($name,0,31);
 4661:     }
 4662:     return $name;
 4663: }
 4664: 
 4665: =pod
 4666: 
 4667: =item * check_if_partid_hidden($id,$symb,$udom,$uname)
 4668: 
 4669: Returns either 1 or undef
 4670: 
 4671: 1 if the part is to be hidden, undef if it is to be shown
 4672: 
 4673: Arguments are:
 4674: 
 4675: $id the id of the part to be checked
 4676: $symb, optional the symb of the resource to check
 4677: $udom, optional the domain of the user to check for
 4678: $uname, optional the username of the user to check for
 4679: 
 4680: =cut
 4681: 
 4682: sub check_if_partid_hidden {
 4683:     my ($id,$symb,$udom,$uname) = @_;
 4684:     my $hiddenparts=&Apache::lonnet::EXT('resource.0.hiddenparts',
 4685: 					 $symb,$udom,$uname);
 4686:     my $truth=1;
 4687:     #if the string starts with !, then the list is the list to show not hide
 4688:     if ($hiddenparts=~s/^\s*!//) { $truth=undef; }
 4689:     my @hiddenlist=split(/,/,$hiddenparts);
 4690:     foreach my $checkid (@hiddenlist) {
 4691: 	if ($checkid =~ /^\s*\Q$id\E\s*$/) { return $truth; }
 4692:     }
 4693:     return !$truth;
 4694: }
 4695: 
 4696: 
 4697: ############################################################
 4698: ############################################################
 4699: 
 4700: =pod
 4701: 
 4702: =back 
 4703: 
 4704: =head1 cgi-bin script and graphing routines
 4705: 
 4706: =over 4
 4707: 
 4708: =item get_cgi_id
 4709: 
 4710: Inputs: none
 4711: 
 4712: Returns an id which can be used to pass environment variables
 4713: to various cgi-bin scripts.  These environment variables will
 4714: be removed from the users environment after a given time by
 4715: the routine &Apache::lonnet::transfer_profile_to_env.
 4716: 
 4717: =cut
 4718: 
 4719: ############################################################
 4720: ############################################################
 4721: my $uniq=0;
 4722: sub get_cgi_id {
 4723:     $uniq=($uniq+1)%100000;
 4724:     return (time.'_'.$$.'_'.$uniq);
 4725: }
 4726: 
 4727: ############################################################
 4728: ############################################################
 4729: 
 4730: =pod
 4731: 
 4732: =item DrawBarGraph
 4733: 
 4734: Facilitates the plotting of data in a (stacked) bar graph.
 4735: Puts plot definition data into the users environment in order for 
 4736: graph.png to plot it.  Returns an <img> tag for the plot.
 4737: The bars on the plot are labeled '1','2',...,'n'.
 4738: 
 4739: Inputs:
 4740: 
 4741: =over 4
 4742: 
 4743: =item $Title: string, the title of the plot
 4744: 
 4745: =item $xlabel: string, text describing the X-axis of the plot
 4746: 
 4747: =item $ylabel: string, text describing the Y-axis of the plot
 4748: 
 4749: =item $Max: scalar, the maximum Y value to use in the plot
 4750: If $Max is < any data point, the graph will not be rendered.
 4751: 
 4752: =item $colors: array ref holding the colors to be used for the data sets when
 4753: they are plotted.  If undefined, default values will be used.
 4754: 
 4755: =item $labels: array ref holding the labels to use on the x-axis for the bars.
 4756: 
 4757: =item @Values: An array of array references.  Each array reference holds data
 4758: to be plotted in a stacked bar chart.
 4759: 
 4760: =item If the final element of @Values is a hash reference the key/value
 4761: pairs will be added to the graph definition.
 4762: 
 4763: =back
 4764: 
 4765: Returns:
 4766: 
 4767: An <img> tag which references graph.png and the appropriate identifying
 4768: information for the plot.
 4769: 
 4770: =cut
 4771: 
 4772: ############################################################
 4773: ############################################################
 4774: sub DrawBarGraph {
 4775:     my ($Title,$xlabel,$ylabel,$Max,$colors,$labels,@Values)=@_;
 4776:     #
 4777:     if (! defined($colors)) {
 4778:         $colors = ['#33ff00', 
 4779:                   '#0033cc', '#990000', '#aaaa66', '#663399', '#ff9933',
 4780:                   '#66ccff', '#ff9999', '#cccc33', '#660000', '#33cc66',
 4781:                   ]; 
 4782:     }
 4783:     my $extra_settings = {};
 4784:     if (ref($Values[-1]) eq 'HASH') {
 4785:         $extra_settings = pop(@Values);
 4786:     }
 4787:     #
 4788:     my $identifier = &get_cgi_id();
 4789:     my $id = 'cgi.'.$identifier;        
 4790:     if (! @Values || ref($Values[0]) ne 'ARRAY') {
 4791:         return '';
 4792:     }
 4793:     #
 4794:     my @Labels;
 4795:     if (defined($labels)) {
 4796:         @Labels = @$labels;
 4797:     } else {
 4798:         for (my $i=0;$i<@{$Values[0]};$i++) {
 4799:             push (@Labels,$i+1);
 4800:         }
 4801:     }
 4802:     #
 4803:     my $NumBars = scalar(@{$Values[0]});
 4804:     if ($NumBars < scalar(@Labels)) { $NumBars = scalar(@Labels); }
 4805:     my %ValuesHash;
 4806:     my $NumSets=1;
 4807:     foreach my $array (@Values) {
 4808:         next if (! ref($array));
 4809:         $ValuesHash{$id.'.data.'.$NumSets++} = 
 4810:             join(',',@$array);
 4811:     }
 4812:     #
 4813:     my ($height,$width,$xskip,$bar_width) = (200,120,1,15);
 4814:     if ($NumBars < 3) {
 4815:         $width = 120+$NumBars*32;
 4816:         $xskip = 1;
 4817:         $bar_width = 30;
 4818:     } elsif ($NumBars < 5) {
 4819:         $width = 120+$NumBars*20;
 4820:         $xskip = 1;
 4821:         $bar_width = 20;
 4822:     } elsif ($NumBars < 10) {
 4823:         $width = 120+$NumBars*15;
 4824:         $xskip = 1;
 4825:         $bar_width = 15;
 4826:     } elsif ($NumBars <= 25) {
 4827:         $width = 120+$NumBars*11;
 4828:         $xskip = 5;
 4829:         $bar_width = 8;
 4830:     } elsif ($NumBars <= 50) {
 4831:         $width = 120+$NumBars*8;
 4832:         $xskip = 5;
 4833:         $bar_width = 4;
 4834:     } else {
 4835:         $width = 120+$NumBars*8;
 4836:         $xskip = 5;
 4837:         $bar_width = 4;
 4838:     }
 4839:     #
 4840:     $Max = 1 if ($Max < 1);
 4841:     if ( int($Max) < $Max ) {
 4842:         $Max++;
 4843:         $Max = int($Max);
 4844:     }
 4845:     $Title  = '' if (! defined($Title));
 4846:     $xlabel = '' if (! defined($xlabel));
 4847:     $ylabel = '' if (! defined($ylabel));
 4848:     $ValuesHash{$id.'.title'}    = &escape($Title);
 4849:     $ValuesHash{$id.'.xlabel'}   = &escape($xlabel);
 4850:     $ValuesHash{$id.'.ylabel'}   = &escape($ylabel);
 4851:     $ValuesHash{$id.'.y_max_value'} = $Max;
 4852:     $ValuesHash{$id.'.NumBars'}  = $NumBars;
 4853:     $ValuesHash{$id.'.NumSets'}  = $NumSets;
 4854:     $ValuesHash{$id.'.PlotType'} = 'bar';
 4855:     $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
 4856:     $ValuesHash{$id.'.height'}   = $height;
 4857:     $ValuesHash{$id.'.width'}    = $width;
 4858:     $ValuesHash{$id.'.xskip'}    = $xskip;
 4859:     $ValuesHash{$id.'.bar_width'} = $bar_width;
 4860:     $ValuesHash{$id.'.labels'} = join(',',@Labels);
 4861:     #
 4862:     # Deal with other parameters
 4863:     while (my ($key,$value) = each(%$extra_settings)) {
 4864:         $ValuesHash{$id.'.'.$key} = $value;
 4865:     }
 4866:     #
 4867:     &Apache::lonnet::appenv(%ValuesHash);
 4868:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
 4869: }
 4870: 
 4871: ############################################################
 4872: ############################################################
 4873: 
 4874: =pod
 4875: 
 4876: =item DrawXYGraph
 4877: 
 4878: Facilitates the plotting of data in an XY graph.
 4879: Puts plot definition data into the users environment in order for 
 4880: graph.png to plot it.  Returns an <img> tag for the plot.
 4881: 
 4882: Inputs:
 4883: 
 4884: =over 4
 4885: 
 4886: =item $Title: string, the title of the plot
 4887: 
 4888: =item $xlabel: string, text describing the X-axis of the plot
 4889: 
 4890: =item $ylabel: string, text describing the Y-axis of the plot
 4891: 
 4892: =item $Max: scalar, the maximum Y value to use in the plot
 4893: If $Max is < any data point, the graph will not be rendered.
 4894: 
 4895: =item $colors: Array ref containing the hex color codes for the data to be 
 4896: plotted in.  If undefined, default values will be used.
 4897: 
 4898: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
 4899: 
 4900: =item $Ydata: Array ref containing Array refs.  
 4901: Each of the contained arrays will be plotted as a separate curve.
 4902: 
 4903: =item %Values: hash indicating or overriding any default values which are 
 4904: passed to graph.png.  
 4905: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
 4906: 
 4907: =back
 4908: 
 4909: Returns:
 4910: 
 4911: An <img> tag which references graph.png and the appropriate identifying
 4912: information for the plot.
 4913: 
 4914: =cut
 4915: 
 4916: ############################################################
 4917: ############################################################
 4918: sub DrawXYGraph {
 4919:     my ($Title,$xlabel,$ylabel,$Max,$colors,$Xlabels,$Ydata,%Values)=@_;
 4920:     #
 4921:     # Create the identifier for the graph
 4922:     my $identifier = &get_cgi_id();
 4923:     my $id = 'cgi.'.$identifier;
 4924:     #
 4925:     $Title  = '' if (! defined($Title));
 4926:     $xlabel = '' if (! defined($xlabel));
 4927:     $ylabel = '' if (! defined($ylabel));
 4928:     my %ValuesHash = 
 4929:         (
 4930:          $id.'.title'  => &escape($Title),
 4931:          $id.'.xlabel' => &escape($xlabel),
 4932:          $id.'.ylabel' => &escape($ylabel),
 4933:          $id.'.y_max_value'=> $Max,
 4934:          $id.'.labels'     => join(',',@$Xlabels),
 4935:          $id.'.PlotType'   => 'XY',
 4936:          );
 4937:     #
 4938:     if (defined($colors) && ref($colors) eq 'ARRAY') {
 4939:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
 4940:     }
 4941:     #
 4942:     if (! ref($Ydata) || ref($Ydata) ne 'ARRAY') {
 4943:         return '';
 4944:     }
 4945:     my $NumSets=1;
 4946:     foreach my $array (@{$Ydata}){
 4947:         next if (! ref($array));
 4948:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
 4949:     }
 4950:     $ValuesHash{$id.'.NumSets'} = $NumSets-1;
 4951:     #
 4952:     # Deal with other parameters
 4953:     while (my ($key,$value) = each(%Values)) {
 4954:         $ValuesHash{$id.'.'.$key} = $value;
 4955:     }
 4956:     #
 4957:     &Apache::lonnet::appenv(%ValuesHash);
 4958:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
 4959: }
 4960: 
 4961: ############################################################
 4962: ############################################################
 4963: 
 4964: =pod
 4965: 
 4966: =item DrawXYYGraph
 4967: 
 4968: Facilitates the plotting of data in an XY graph with two Y axes.
 4969: Puts plot definition data into the users environment in order for 
 4970: graph.png to plot it.  Returns an <img> tag for the plot.
 4971: 
 4972: Inputs:
 4973: 
 4974: =over 4
 4975: 
 4976: =item $Title: string, the title of the plot
 4977: 
 4978: =item $xlabel: string, text describing the X-axis of the plot
 4979: 
 4980: =item $ylabel: string, text describing the Y-axis of the plot
 4981: 
 4982: =item $colors: Array ref containing the hex color codes for the data to be 
 4983: plotted in.  If undefined, default values will be used.
 4984: 
 4985: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
 4986: 
 4987: =item $Ydata1: The first data set
 4988: 
 4989: =item $Min1: The minimum value of the left Y-axis
 4990: 
 4991: =item $Max1: The maximum value of the left Y-axis
 4992: 
 4993: =item $Ydata2: The second data set
 4994: 
 4995: =item $Min2: The minimum value of the right Y-axis
 4996: 
 4997: =item $Max2: The maximum value of the left Y-axis
 4998: 
 4999: =item %Values: hash indicating or overriding any default values which are 
 5000: passed to graph.png.  
 5001: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
 5002: 
 5003: =back
 5004: 
 5005: Returns:
 5006: 
 5007: An <img> tag which references graph.png and the appropriate identifying
 5008: information for the plot.
 5009: 
 5010: =cut
 5011: 
 5012: ############################################################
 5013: ############################################################
 5014: sub DrawXYYGraph {
 5015:     my ($Title,$xlabel,$ylabel,$colors,$Xlabels,$Ydata1,$Min1,$Max1,
 5016:                                         $Ydata2,$Min2,$Max2,%Values)=@_;
 5017:     #
 5018:     # Create the identifier for the graph
 5019:     my $identifier = &get_cgi_id();
 5020:     my $id = 'cgi.'.$identifier;
 5021:     #
 5022:     $Title  = '' if (! defined($Title));
 5023:     $xlabel = '' if (! defined($xlabel));
 5024:     $ylabel = '' if (! defined($ylabel));
 5025:     my %ValuesHash = 
 5026:         (
 5027:          $id.'.title'  => &escape($Title),
 5028:          $id.'.xlabel' => &escape($xlabel),
 5029:          $id.'.ylabel' => &escape($ylabel),
 5030:          $id.'.labels' => join(',',@$Xlabels),
 5031:          $id.'.PlotType' => 'XY',
 5032:          $id.'.NumSets' => 2,
 5033:          $id.'.two_axes' => 1,
 5034:          $id.'.y1_max_value' => $Max1,
 5035:          $id.'.y1_min_value' => $Min1,
 5036:          $id.'.y2_max_value' => $Max2,
 5037:          $id.'.y2_min_value' => $Min2,
 5038:          );
 5039:     #
 5040:     if (defined($colors) && ref($colors) eq 'ARRAY') {
 5041:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
 5042:     }
 5043:     #
 5044:     if (! ref($Ydata1) || ref($Ydata1) ne 'ARRAY' ||
 5045:         ! ref($Ydata2) || ref($Ydata2) ne 'ARRAY'){
 5046:         return '';
 5047:     }
 5048:     my $NumSets=1;
 5049:     foreach my $array ($Ydata1,$Ydata2){
 5050:         next if (! ref($array));
 5051:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
 5052:     }
 5053:     #
 5054:     # Deal with other parameters
 5055:     while (my ($key,$value) = each(%Values)) {
 5056:         $ValuesHash{$id.'.'.$key} = $value;
 5057:     }
 5058:     #
 5059:     &Apache::lonnet::appenv(%ValuesHash);
 5060:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
 5061: }
 5062: 
 5063: ############################################################
 5064: ############################################################
 5065: 
 5066: =pod
 5067: 
 5068: =back 
 5069: 
 5070: =head1 Statistics helper routines?  
 5071: 
 5072: Bad place for them but what the hell.
 5073: 
 5074: =over 4
 5075: 
 5076: =item &chartlink
 5077: 
 5078: Returns a link to the chart for a specific student.  
 5079: 
 5080: Inputs:
 5081: 
 5082: =over 4
 5083: 
 5084: =item $linktext: The text of the link
 5085: 
 5086: =item $sname: The students username
 5087: 
 5088: =item $sdomain: The students domain
 5089: 
 5090: =back
 5091: 
 5092: =back
 5093: 
 5094: =cut
 5095: 
 5096: ############################################################
 5097: ############################################################
 5098: sub chartlink {
 5099:     my ($linktext, $sname, $sdomain) = @_;
 5100:     my $link = '<a href="/adm/statistics?reportSelected=student_assessment'.
 5101:         '&amp;SelectedStudent='.&escape($sname.':'.$sdomain).
 5102:         '&amp;chartoutputmode='.HTML::Entities::encode('html, with all links').
 5103:        '">'.$linktext.'</a>';
 5104: }
 5105: 
 5106: #######################################################
 5107: #######################################################
 5108: 
 5109: =pod
 5110: 
 5111: =head1 Course Environment Routines
 5112: 
 5113: =over 4
 5114: 
 5115: =item &restore_course_settings 
 5116: 
 5117: =item &store_course_settings
 5118: 
 5119: Restores/Store indicated form parameters from the course environment.
 5120: Will not overwrite existing values of the form parameters.
 5121: 
 5122: Inputs: 
 5123: a scalar describing the data (e.g. 'chart', 'problem_analysis')
 5124: 
 5125: a hash ref describing the data to be stored.  For example:
 5126:    
 5127: %Save_Parameters = ('Status' => 'scalar',
 5128:     'chartoutputmode' => 'scalar',
 5129:     'chartoutputdata' => 'scalar',
 5130:     'Section' => 'array',
 5131:     'Group' => 'array',
 5132:     'StudentData' => 'array',
 5133:     'Maps' => 'array');
 5134: 
 5135: Returns: both routines return nothing
 5136: 
 5137: =cut
 5138: 
 5139: #######################################################
 5140: #######################################################
 5141: sub store_course_settings {
 5142:     # save to the environment
 5143:     # appenv the same items, just to be safe
 5144:     my $courseid = $env{'request.course.id'};
 5145:     my $udom  = $env{'user.domain'};
 5146:     my $uname = $env{'user.name'};
 5147:     my ($prefix,$Settings) = @_;
 5148:     my %SaveHash;
 5149:     my %AppHash;
 5150:     while (my ($setting,$type) = each(%$Settings)) {
 5151:         my $basename = join('.','internal',$courseid,$prefix,$setting);
 5152:         my $envname = 'environment.'.$basename;
 5153:         if (exists($env{'form.'.$setting})) {
 5154:             # Save this value away
 5155:             if ($type eq 'scalar' &&
 5156:                 (! exists($env{$envname}) || 
 5157:                  $env{$envname} ne $env{'form.'.$setting})) {
 5158:                 $SaveHash{$basename} = $env{'form.'.$setting};
 5159:                 $AppHash{$envname}   = $env{'form.'.$setting};
 5160:             } elsif ($type eq 'array') {
 5161:                 my $stored_form;
 5162:                 if (ref($env{'form.'.$setting})) {
 5163:                     $stored_form = join(',',
 5164:                                         map {
 5165:                                             &escape($_);
 5166:                                         } sort(@{$env{'form.'.$setting}}));
 5167:                 } else {
 5168:                     $stored_form = 
 5169:                         &escape($env{'form.'.$setting});
 5170:                 }
 5171:                 # Determine if the array contents are the same.
 5172:                 if ($stored_form ne $env{$envname}) {
 5173:                     $SaveHash{$basename} = $stored_form;
 5174:                     $AppHash{$envname}   = $stored_form;
 5175:                 }
 5176:             }
 5177:         }
 5178:     }
 5179:     my $put_result = &Apache::lonnet::put('environment',\%SaveHash,
 5180:                                           $udom,$uname);
 5181:     if ($put_result !~ /^(ok|delayed)/) {
 5182:         &Apache::lonnet::logthis('unable to save form parameters, '.
 5183:                                  'got error:'.$put_result);
 5184:     }
 5185:     # Make sure these settings stick around in this session, too
 5186:     &Apache::lonnet::appenv(%AppHash);
 5187:     return;
 5188: }
 5189: 
 5190: sub restore_course_settings {
 5191:     my $courseid = $env{'request.course.id'};
 5192:     my ($prefix,$Settings) = @_;
 5193:     while (my ($setting,$type) = each(%$Settings)) {
 5194:         next if (exists($env{'form.'.$setting}));
 5195:         my $envname = 'environment.internal.'.$courseid.'.'.$prefix.
 5196:             '.'.$setting;
 5197:         if (exists($env{$envname})) {
 5198:             if ($type eq 'scalar') {
 5199:                 $env{'form.'.$setting} = $env{$envname};
 5200:             } elsif ($type eq 'array') {
 5201:                 $env{'form.'.$setting} = [ 
 5202:                                            map { 
 5203:                                                &unescape($_); 
 5204:                                            } split(',',$env{$envname})
 5205:                                            ];
 5206:             }
 5207:         }
 5208:     }
 5209: }
 5210: 
 5211: ############################################################
 5212: ############################################################
 5213: 
 5214: sub course_type {
 5215:     my ($cid) = @_;
 5216:     if (!defined($cid)) {
 5217:         $cid = $env{'request.course.id'};
 5218:     }
 5219:     if (defined($env{'course.'.$cid.'.type'})) {
 5220:         return $env{'course.'.$cid.'.type'};
 5221:     } else {
 5222:         return 'Course';
 5223:     }
 5224: }
 5225: 
 5226: sub group_term {
 5227:     my $crstype = &course_type();
 5228:     my %names = (
 5229:                   'Course' => 'group',
 5230:                   'Group' => 'team',
 5231:                 );
 5232:     return $names{$crstype};
 5233: }
 5234: 
 5235: sub icon {
 5236:     my ($file)=@_;
 5237:     my $curfext = (split(/\./,$file))[-1];
 5238:     my $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/unknown.gif';
 5239:     my $embstyle = &Apache::loncommon::fileembstyle($curfext);
 5240:     if (!(!defined($embstyle) || $embstyle eq 'unk' || $embstyle eq 'hdn')) {
 5241: 	if (-e  $Apache::lonnet::perlvar{'lonDocRoot'}.'/'.
 5242: 	          $Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
 5243: 	            $curfext.".gif") {
 5244: 	    $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
 5245: 		$curfext.".gif";
 5246: 	}
 5247:     }
 5248:     return &lonhttpdurl($iconname);
 5249: } 
 5250: 
 5251: sub lonhttpdurl {
 5252:     my ($url)=@_;
 5253:     my $lonhttpd_port=$Apache::lonnet::perlvar{'lonhttpdPort'};
 5254:     if (!defined($lonhttpd_port)) { $lonhttpd_port='8080'; }
 5255:     return 'http://'.$ENV{'SERVER_NAME'}.':'.$lonhttpd_port.$url;
 5256: }
 5257: 
 5258: sub connection_aborted {
 5259:     my ($r)=@_;
 5260:     $r->print(" ");$r->rflush();
 5261:     my $c = $r->connection;
 5262:     return $c->aborted();
 5263: }
 5264: 
 5265: #    Escapes strings that may have embedded 's that will be put into
 5266: #    strings as 'strings'.
 5267: sub escape_single {
 5268:     my ($input) = @_;
 5269:     $input =~ s/\\/\\\\/g;	# Escape the \'s..(must be first)>
 5270:     $input =~ s/\'/\\\'/g;	# Esacpe the 's....
 5271:     return $input;
 5272: }
 5273: 
 5274: #  Same as escape_single, but escape's "'s  This 
 5275: #  can be used for  "strings"
 5276: sub escape_double {
 5277:     my ($input) = @_;
 5278:     $input =~ s/\\/\\\\/g;	# Escape the /'s..(must be first)>
 5279:     $input =~ s/\"/\\\"/g;	# Esacpe the "s....
 5280:     return $input;
 5281: }
 5282:  
 5283: #   Escapes the last element of a full URL.
 5284: sub escape_url {
 5285:     my ($url)   = @_;
 5286:     my @urlslices = split(/\//, $url,-1);
 5287:     my $lastitem = &escape(pop(@urlslices));
 5288:     return join('/',@urlslices).'/'.$lastitem;
 5289: }
 5290: =pod
 5291: 
 5292: =back
 5293: 
 5294: =cut
 5295: 
 5296: 1;
 5297: __END__;
 5298: 

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