File:  [LON-CAPA] / loncom / interface / loncommon.pm
Revision 1.247: download - view: text, annotated - select for diffs
Tue Jan 25 00:27:59 2005 UTC (19 years, 3 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- setup the browser.* attributes for public users

    1: # The LearningOnline Network with CAPA
    2: # a pile of common routines
    3: #
    4: # $Id: loncommon.pm,v 1.247 2005/01/25 00:27:59 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::Constants qw(:common :http :methods);
   62: use Apache::lonmenu();
   63: use Apache::lonlocal;
   64: use HTML::Entities;
   65: 
   66: my $readit;
   67: 
   68: ##
   69: ## Global Variables
   70: ##
   71: 
   72: # ----------------------------------------------- Filetypes/Languages/Copyright
   73: my %language;
   74: my %supported_language;
   75: my %cprtag;
   76: my %scprtag;
   77: my %fe; my %fd;
   78: my %category_extensions;
   79: 
   80: # ---------------------------------------------- Designs
   81: 
   82: my %designhash;
   83: 
   84: # ---------------------------------------------- Thesaurus variables
   85: #
   86: # %Keywords:
   87: #      A hash used by &keyword to determine if a word is considered a keyword.
   88: # $thesaurus_db_file 
   89: #      Scalar containing the full path to the thesaurus database.
   90: 
   91: my %Keywords;
   92: my $thesaurus_db_file;
   93: 
   94: #
   95: # Initialize values from language.tab, copyright.tab, filetypes.tab,
   96: # thesaurus.tab, and filecategories.tab.
   97: #
   98: BEGIN {
   99:     # Variable initialization
  100:     $thesaurus_db_file = $Apache::lonnet::perlvar{'lonTabDir'}."/thesaurus.db";
  101:     #
  102:     unless ($readit) {
  103: # ------------------------------------------------------------------- languages
  104:     {
  105:         my $langtabfile = $Apache::lonnet::perlvar{'lonTabDir'}.
  106:                                    '/language.tab';
  107:         if ( open(my $fh,"<$langtabfile") ) {
  108:             while (<$fh>) {
  109:                 next if /^\#/;
  110:                 chomp;
  111:                 my ($key,$two,$country,$three,$enc,$val,$sup)=(split(/\t/,$_));
  112:                 $language{$key}=$val.' - '.$enc;
  113:                 if ($sup) {
  114:                     $supported_language{$key}=$sup;
  115:                 }
  116:             }
  117:             close($fh);
  118:         }
  119:     }
  120: # ------------------------------------------------------------------ copyrights
  121:     {
  122:         my $copyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
  123:                                   '/copyright.tab';
  124:         if ( open (my $fh,"<$copyrightfile") ) {
  125:             while (<$fh>) {
  126:                 next if /^\#/;
  127:                 chomp;
  128:                 my ($key,$val)=(split(/\s+/,$_,2));
  129:                 $cprtag{$key}=$val;
  130:             }
  131:             close($fh);
  132:         }
  133:     }
  134: # ------------------------------------------------------------------ source copyrights
  135:     {
  136:         my $sourcecopyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
  137:                                   '/source_copyright.tab';
  138:         if ( open (my $fh,"<$sourcecopyrightfile") ) {
  139:             while (<$fh>) {
  140:                 next if /^\#/;
  141:                 chomp;
  142:                 my ($key,$val)=(split(/\s+/,$_,2));
  143:                 $scprtag{$key}=$val;
  144:             }
  145:             close($fh);
  146:         }
  147:     }
  148: 
  149: # -------------------------------------------------------------- domain designs
  150: 
  151:     my $filename;
  152:     my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
  153:     opendir(DIR,$designdir);
  154:     while ($filename=readdir(DIR)) {
  155: 	my ($domain)=($filename=~/^(\w+)\./);
  156:     {
  157:         my $designfile = $designdir.'/'.$filename;
  158:         if ( open (my $fh,"<$designfile") ) {
  159:             while (<$fh>) {
  160:                 next if /^\#/;
  161:                 chomp;
  162:                 my ($key,$val)=(split(/\=/,$_));
  163:                 if ($val) { $designhash{$domain.'.'.$key}=$val; }
  164:             }
  165:             close($fh);
  166:         }
  167:     }
  168: 
  169:     }
  170:     closedir(DIR);
  171: 
  172: 
  173: # ------------------------------------------------------------- file categories
  174:     {
  175:         my $categoryfile = $Apache::lonnet::perlvar{'lonTabDir'}.
  176:                                   '/filecategories.tab';
  177:         if ( open (my $fh,"<$categoryfile") ) {
  178:             while (<$fh>) {
  179:                 next if /^\#/;
  180:                 chomp;
  181:                 my ($extension,$category)=(split(/\s+/,$_,2));
  182:                 push @{$category_extensions{lc($category)}},$extension;
  183:             }
  184:             close($fh);
  185:         }
  186: 
  187:     }
  188: # ------------------------------------------------------------------ file types
  189:     {
  190:         my $typesfile = $Apache::lonnet::perlvar{'lonTabDir'}.
  191:                '/filetypes.tab';
  192:         if ( open (my $fh,"<$typesfile") ) {
  193:             while (<$fh>) {
  194:                 next if (/^\#/);
  195:                 chomp;
  196:                 my ($ending,$emb,$descr)=split(/\s+/,$_,3);
  197:                 if ($descr ne '') {
  198:                     $fe{$ending}=lc($emb);
  199:                     $fd{$ending}=$descr;
  200:                 }
  201:             }
  202:             close($fh);
  203:         }
  204:     }
  205:     &Apache::lonnet::logthis(
  206:               "<font color=yellow>INFO: Read file types</font>");
  207:     $readit=1;
  208:     }  # end of unless($readit) 
  209:     
  210: }
  211: 
  212: ###############################################################
  213: ##           HTML and Javascript Helper Functions            ##
  214: ###############################################################
  215: 
  216: =pod 
  217: 
  218: =head1 HTML and Javascript Functions
  219: 
  220: =over 4
  221: 
  222: =item * browser_and_searcher_javascript ()
  223: 
  224: X<browsing, javascript>X<searching, javascript>Returns a string
  225: containing javascript with two functions, C<openbrowser> and
  226: C<opensearcher>. Returned string does not contain E<lt>scriptE<gt>
  227: tags.
  228: 
  229: =item * openbrowser(formname,elementname,only,omit) [javascript]
  230: 
  231: inputs: formname, elementname, only, omit
  232: 
  233: formname and elementname indicate the name of the html form and name of
  234: the element that the results of the browsing selection are to be placed in. 
  235: 
  236: Specifying 'only' will restrict the browser to displaying only files
  237: with the given extension.  Can be a comma separated list.
  238: 
  239: Specifying 'omit' will restrict the browser to NOT displaying files
  240: with the given extension.  Can be a comma separated list.
  241: 
  242: =item * opensearcher(formname, elementname) [javascript]
  243: 
  244: Inputs: formname, elementname
  245: 
  246: formname and elementname specify the name of the html form and the name
  247: of the element the selection from the search results will be placed in.
  248: 
  249: =cut
  250: 
  251: sub browser_and_searcher_javascript {
  252:     my ($mode)=@_;
  253:     if (!defined($mode)) { $mode='edit'; }
  254:     my $resurl=&lastresurl();
  255:     return <<END;
  256: // <!-- BEGIN LON-CAPA Internal
  257:     var editbrowser = null;
  258:     function openbrowser(formname,elementname,only,omit,titleelement) {
  259:         var url = '$resurl/?';
  260:         if (editbrowser == null) {
  261:             url += 'launch=1&';
  262:         }
  263:         url += 'catalogmode=interactive&';
  264:         url += 'mode=$mode&';
  265:         url += 'form=' + formname + '&';
  266:         if (only != null) {
  267:             url += 'only=' + only + '&';
  268:         } else {
  269:             url += 'only=&';
  270: 	}
  271:         if (omit != null) {
  272:             url += 'omit=' + omit + '&';
  273:         } else {
  274:             url += 'omit=&';
  275: 	}
  276:         if (titleelement != null) {
  277:             url += 'titleelement=' + titleelement + '&';
  278:         } else {
  279: 	    url += 'titleelement=&';
  280: 	}
  281:         url += 'element=' + elementname + '';
  282:         var title = 'Browser';
  283:         var options = 'scrollbars=1,resizable=1,menubar=1,location=1';
  284:         options += ',width=700,height=600';
  285:         editbrowser = open(url,title,options,'1');
  286:         editbrowser.focus();
  287:     }
  288:     var editsearcher;
  289:     function opensearcher(formname,elementname,titleelement) {
  290:         var url = '/adm/searchcat?';
  291:         if (editsearcher == null) {
  292:             url += 'launch=1&';
  293:         }
  294:         url += 'catalogmode=interactive&';
  295:         url += 'mode=$mode&';
  296:         url += 'form=' + formname + '&';
  297:         if (titleelement != null) {
  298:             url += 'titleelement=' + titleelement + '&';
  299:         } else {
  300: 	    url += 'titleelement=&';
  301: 	}
  302:         url += 'element=' + elementname + '';
  303:         var title = 'Search';
  304:         var options = 'scrollbars=1,resizable=1,menubar=0';
  305:         options += ',width=700,height=600';
  306:         editsearcher = open(url,title,options,'1');
  307:         editsearcher.focus();
  308:     }
  309: // END LON-CAPA Internal -->
  310: END
  311: }
  312: 
  313: sub lastresurl {
  314:     if ($ENV{'environment.lastresurl'}) {
  315: 	return $ENV{'environment.lastresurl'}
  316:     } else {
  317: 	return '/res';
  318:     }
  319: }
  320: 
  321: sub storeresurl {
  322:     my $resurl=&Apache::lonnet::clutter(shift);
  323:     unless ($resurl=~/^\/res/) { return 0; }
  324:     $resurl=~s/\/$//;
  325:     &Apache::lonnet::put('environment',{'lastresurl' => $resurl});
  326:     &Apache::lonnet::appenv('environment.lastresurl' => $resurl);
  327:     return 1;
  328: }
  329: 
  330: sub studentbrowser_javascript {
  331:    unless (
  332:             (($ENV{'request.course.id'}) && 
  333:              (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})))
  334:          || ($ENV{'request.role'}=~/^(au|dc|su)/)
  335:           ) { return ''; }  
  336:    return (<<'ENDSTDBRW');
  337: <script type="text/javascript" language="Javascript" >
  338:     var stdeditbrowser;
  339:     function openstdbrowser(formname,uname,udom,roleflag) {
  340:         var url = '/adm/pickstudent?';
  341:         var filter;
  342:         eval('filter=document.'+formname+'.'+uname+'.value;');
  343:         if (filter != null) {
  344:            if (filter != '') {
  345:                url += 'filter='+filter+'&';
  346: 	   }
  347:         }
  348:         url += 'form=' + formname + '&unameelement='+uname+
  349:                                     '&udomelement='+udom;
  350: 	if (roleflag) { url+="&roles=1"; }
  351:         var title = 'Student_Browser';
  352:         var options = 'scrollbars=1,resizable=1,menubar=0';
  353:         options += ',width=700,height=600';
  354:         stdeditbrowser = open(url,title,options,'1');
  355:         stdeditbrowser.focus();
  356:     }
  357: </script>
  358: ENDSTDBRW
  359: }
  360: 
  361: sub selectstudent_link {
  362:    my ($form,$unameele,$udomele)=@_;
  363:    if ($ENV{'request.course.id'}) {  
  364:        unless (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
  365: 	   return '';
  366:        }
  367:        return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
  368:         '","'.$udomele.'");'."'>".&mt('Select User')."</a>";
  369:    }
  370:    if ($ENV{'request.role'}=~/^(au|dc|su)/) {
  371:        return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
  372:         '","'.$udomele.'",1);'."'>".&mt('Select User')."</a>";
  373:    }
  374:    return '';
  375: }
  376: 
  377: sub coursebrowser_javascript {
  378:     my ($domainfilter)=@_;
  379:    return (<<ENDSTDBRW);
  380: <script type="text/javascript" language="Javascript" >
  381:     var stdeditbrowser;
  382:     function opencrsbrowser(formname,uname,udom,desc,extra_element) {
  383:         var url = '/adm/pickcourse?';
  384:         var filter;
  385:         if (filter != null) {
  386:            if (filter != '') {
  387:                url += 'filter='+filter+'&';
  388: 	   }
  389:         }
  390:         var domainfilter='$domainfilter';
  391:         if (domainfilter != null) {
  392:            if (domainfilter != '') {
  393:                url += 'domainfilter='+domainfilter+'&';
  394: 	   }
  395:         }
  396:         url += 'form=' + formname + '&cnumelement='+uname+
  397: 	                            '&cdomelement='+udom+
  398:                                     '&cnameelement='+desc;
  399:         if (extra_element !=null && extra_element != '' && formname == 'rolechoice') {
  400:             url += '&roleelement='+extra_element;
  401:             if (domainfilter == null || domainfilter == '') {
  402:                 url += '&domainfilter='+extra_element;
  403:             }
  404:         }
  405:         var title = 'Course_Browser';
  406:         var options = 'scrollbars=1,resizable=1,menubar=0';
  407:         options += ',width=700,height=600';
  408:         stdeditbrowser = open(url,title,options,'1');
  409:         stdeditbrowser.focus();
  410:     }
  411: </script>
  412: ENDSTDBRW
  413: }
  414: 
  415: sub selectcourse_link {
  416:    my ($form,$unameele,$udomele,$desc,$extra_element)=@_;
  417:     return "<a href='".'javascript:opencrsbrowser("'.$form.'","'.$unameele.
  418:         '","'.$udomele.'","'.$desc.'","'.$extra_element.'");'."'>".&mt('Select Course')."</a>";
  419: }
  420: 
  421: =pod
  422: 
  423: =item * linked_select_forms(...)
  424: 
  425: linked_select_forms returns a string containing a <script></script> block
  426: and html for two <select> menus.  The select menus will be linked in that
  427: changing the value of the first menu will result in new values being placed
  428: in the second menu.  The values in the select menu will appear in alphabetical
  429: order.
  430: 
  431: linked_select_forms takes the following ordered inputs:
  432: 
  433: =over 4
  434: 
  435: =item * $formname, the name of the <form> tag
  436: 
  437: =item * $middletext, the text which appears between the <select> tags
  438: 
  439: =item * $firstdefault, the default value for the first menu
  440: 
  441: =item * $firstselectname, the name of the first <select> tag
  442: 
  443: =item * $secondselectname, the name of the second <select> tag
  444: 
  445: =item * $hashref, a reference to a hash containing the data for the menus.
  446: 
  447: =back 
  448: 
  449: Below is an example of such a hash.  Only the 'text', 'default', and 
  450: 'select2' keys must appear as stated.  keys(%menu) are the possible 
  451: values for the first select menu.  The text that coincides with the 
  452: first menu value is given in $menu{$choice1}->{'text'}.  The values 
  453: and text for the second menu are given in the hash pointed to by 
  454: $menu{$choice1}->{'select2'}.  
  455: 
  456:  my %menu = ( A1 => { text =>"Choice A1" ,
  457:                        default => "B3",
  458:                        select2 => { 
  459:                            B1 => "Choice B1",
  460:                            B2 => "Choice B2",
  461:                            B3 => "Choice B3",
  462:                            B4 => "Choice B4"
  463:                            }
  464:                    },
  465:                A2 => { text =>"Choice A2" ,
  466:                        default => "C2",
  467:                        select2 => { 
  468:                            C1 => "Choice C1",
  469:                            C2 => "Choice C2",
  470:                            C3 => "Choice C3"
  471:                            }
  472:                    },
  473:                A3 => { text =>"Choice A3" ,
  474:                        default => "D6",
  475:                        select2 => { 
  476:                            D1 => "Choice D1",
  477:                            D2 => "Choice D2",
  478:                            D3 => "Choice D3",
  479:                            D4 => "Choice D4",
  480:                            D5 => "Choice D5",
  481:                            D6 => "Choice D6",
  482:                            D7 => "Choice D7"
  483:                            }
  484:                    }
  485:                );
  486: 
  487: =cut
  488: 
  489: sub linked_select_forms {
  490:     my ($formname,
  491:         $middletext,
  492:         $firstdefault,
  493:         $firstselectname,
  494:         $secondselectname, 
  495:         $hashref
  496:         ) = @_;
  497:     my $second = "document.$formname.$secondselectname";
  498:     my $first = "document.$formname.$firstselectname";
  499:     # output the javascript to do the changing
  500:     my $result = '';
  501:     $result.="<script type=\"text/javascript\">\n";
  502:     $result.="var select2data = new Object();\n";
  503:     $" = '","';
  504:     my $debug = '';
  505:     foreach my $s1 (sort(keys(%$hashref))) {
  506:         $result.="select2data.d_$s1 = new Object();\n";        
  507:         $result.="select2data.d_$s1.def = new String('".
  508:             $hashref->{$s1}->{'default'}."');\n";
  509:         $result.="select2data.d_$s1.values = new Array(";        
  510:         my @s2values = sort(keys( %{ $hashref->{$s1}->{'select2'} } ));
  511:         $result.="\"@s2values\");\n";
  512:         $result.="select2data.d_$s1.texts = new Array(";        
  513:         my @s2texts;
  514:         foreach my $value (@s2values) {
  515:             push @s2texts, $hashref->{$s1}->{'select2'}->{$value};
  516:         }
  517:         $result.="\"@s2texts\");\n";
  518:     }
  519:     $"=' ';
  520:     $result.= <<"END";
  521: 
  522: function select1_changed() {
  523:     // Determine new choice
  524:     var newvalue = "d_" + $first.value;
  525:     // update select2
  526:     var values     = select2data[newvalue].values;
  527:     var texts      = select2data[newvalue].texts;
  528:     var select2def = select2data[newvalue].def;
  529:     var i;
  530:     // out with the old
  531:     for (i = 0; i < $second.options.length; i++) {
  532:         $second.options[i] = null;
  533:     }
  534:     // in with the nuclear
  535:     for (i=0;i<values.length; i++) {
  536:         $second.options[i] = new Option(values[i]);
  537:         $second.options[i].value = values[i];
  538:         $second.options[i].text = texts[i];
  539:         if (values[i] == select2def) {
  540:             $second.options[i].selected = true;
  541:         }
  542:     }
  543: }
  544: </script>
  545: END
  546:     # output the initial values for the selection lists
  547:     $result .= "<select size=\"1\" name=\"$firstselectname\" onchange=\"select1_changed()\">\n";
  548:     foreach my $value (sort(keys(%$hashref))) {
  549:         $result.="    <option value=\"$value\" ";
  550:         $result.=" selected=\"true\" " if ($value eq $firstdefault);
  551:         $result.=">".&mt($hashref->{$value}->{'text'})."</option>\n";
  552:     }
  553:     $result .= "</select>\n";
  554:     my %select2 = %{$hashref->{$firstdefault}->{'select2'}};
  555:     $result .= $middletext;
  556:     $result .= "<select size=\"1\" name=\"$secondselectname\">\n";
  557:     my $seconddefault = $hashref->{$firstdefault}->{'default'};
  558:     foreach my $value (sort(keys(%select2))) {
  559:         $result.="    <option value=\"$value\" ";        
  560:         $result.=" selected=\"true\" " if ($value eq $seconddefault);
  561:         $result.=">".&mt($select2{$value})."</option>\n";
  562:     }
  563:     $result .= "</select>\n";
  564:     #    return $debug;
  565:     return $result;
  566: }   #  end of sub linked_select_forms {
  567: 
  568: =pod
  569: 
  570: =item * help_open_topic($topic, $text, $stayOnPage, $width, $height)
  571: 
  572: Returns a string corresponding to an HTML link to the given help
  573: $topic, where $topic corresponds to the name of a .tex file in
  574: /home/httpd/html/adm/help/tex, with underscores replaced by
  575: spaces. 
  576: 
  577: $text will optionally be linked to the same topic, allowing you to
  578: link text in addition to the graphic. If you do not want to link
  579: text, but wish to specify one of the later parameters, pass an
  580: empty string. 
  581: 
  582: $stayOnPage is a value that will be interpreted as a boolean. If true,
  583: the link will not open a new window. If false, the link will open
  584: a new window using Javascript. (Default is false.) 
  585: 
  586: $width and $height are optional numerical parameters that will
  587: override the width and height of the popped up window, which may
  588: be useful for certain help topics with big pictures included. 
  589: 
  590: =cut
  591: 
  592: sub help_open_topic {
  593:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
  594:     $text = "" if (not defined $text);
  595:     $stayOnPage = 0 if (not defined $stayOnPage);
  596:     if ($ENV{'browser.interface'} eq 'textual' ||
  597: 	$ENV{'environment.remote'} eq 'off' ) {
  598: 	$stayOnPage=1;
  599:     }
  600:     $width = 350 if (not defined $width);
  601:     $height = 400 if (not defined $height);
  602:     my $filename = $topic;
  603:     $filename =~ s/ /_/g;
  604: 
  605:     my $template = "";
  606:     my $link;
  607: 
  608:     $topic=~s/\W/\_/g;
  609: 
  610:     if (!$stayOnPage)
  611:     {
  612: 	$link = "javascript:void(open('/adm/help/${filename}.hlp', 'Help_for_$topic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
  613:     }
  614:     else
  615:     {
  616: 	$link = "/adm/help/${filename}.hlp";
  617:     }
  618: 
  619:     # Add the text
  620:     if ($text ne "")
  621:     {
  622: 	$template .= 
  623:   "<table bgcolor='#3333AA' cellspacing='1' cellpadding='1' border='0'><tr>".
  624:   "<td bgcolor='#5555FF'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  625:     }
  626: 
  627:     # Add the graphic
  628:     my $title = &mt('Online Help');
  629:     my $helpicon=&lonhttpdurl("/adm/help/gif/smallHelp.gif");
  630:     $template .= <<"ENDTEMPLATE";
  631:  <a href="$link" title="$title"><img src="$helpicon" border="0" alt="(Help: $topic)" /></a>
  632: ENDTEMPLATE
  633:     if ($text ne '') { $template.='</td></tr></table>' };
  634:     return $template;
  635: 
  636: }
  637: 
  638: # This is a quicky function for Latex cheatsheet editing, since it 
  639: # appears in at least four places
  640: sub helpLatexCheatsheet {
  641:     my $other = shift;
  642:     my $addOther = '';
  643:     if ($other) {
  644: 	$addOther = Apache::loncommon::help_open_topic($other, shift,
  645: 						       undef, undef, 600) .
  646: 							   '</td><td>';
  647:     }
  648:     return '<table><tr><td>'.
  649: 	$addOther .
  650: 	&Apache::loncommon::help_open_topic("Greek_Symbols",'Greek Symbols',
  651: 					    undef,undef,600)
  652: 	.'</td><td>'.
  653: 	&Apache::loncommon::help_open_topic("Other_Symbols",'Other Symbols',
  654: 					    undef,undef,600)
  655: 	.'</td></tr></table>';
  656: }
  657: 
  658: sub help_open_menu {
  659:     my ($color,$topic,$component_help,$function,$faq,$bug,$stayOnPage,$width,$height,$text) = @_;
  660:     $text = "" if (not defined $text);
  661:     $stayOnPage = 0 if (not defined $stayOnPage);
  662:     if ($ENV{'browser.interface'} eq 'textual' ||
  663:         $ENV{'environment.remote'} eq 'off' ) {
  664:         $stayOnPage=1;
  665:     }
  666:     $width = 620 if (not defined $width);
  667:     $height = 600 if (not defined $height);
  668:     my $link='';
  669:     my $title = &mt('Get help');
  670:     my $origurl = $ENV{'REQUEST_URI'};
  671:     $origurl=~s|^/~|/priv/|;
  672:     my $timestamp = time;
  673:     foreach (\$color,\$function,\$topic,\$component_help,\$faq,\$bug,\$origurl) {
  674:         $$_ = &Apache::lonnet::escape($$_);
  675:     }
  676: 
  677:     if (!$stayOnPage) {
  678:          $link = "javascript:helpMenu('open')";
  679:     } else {
  680:         $link = "javascript:helpMenu('display')";
  681:     }
  682:     my $banner_link = "/adm/helpmenu?page=banner&color=$color&function=$function&topic=$topic&component_help=$component_help&faq=$faq&bug=$bug&origurl=$origurl&stamp=$timestamp&stayonpage=$stayOnPage";
  683:     my $details_link = "/adm/helpmenu?page=body&color=$color&function=$function&topic=$topic&component_help=$component_help&faq=$faq&bug=$bug&origurl=$origurl&stamp=$timestamp";
  684:     my $template;
  685:     if ($text ne "") {
  686: 	$template .= 
  687:   "<table bgcolor='#773311' cellspacing='1' cellpadding='1' border='0'><tr>".
  688:   "<td bgcolor='#886622'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  689:     }
  690:     my $helpicon=&lonhttpdurl("/adm/lonIcons/helpgateway.gif");
  691:     $template .= <<"ENDTEMPLATE";
  692:  <script type="text/javascript">
  693: //<!-- BEGIN LON-CAPA Internal
  694: function helpMenu(target) {
  695:     var caller = this;
  696:     if (target == 'open') {
  697:         var newWindow = null;
  698:         try {
  699:             newWindow =  window.open("","helpmenu","HEIGHT=$height,WIDTH=$width,resizable=yes,scrollbars=yes" )
  700:         }
  701:         catch(error) {
  702:             writeHelp(caller);
  703:             return;
  704:         }
  705:         if (newWindow) {
  706:             caller = newWindow;
  707:         }
  708:     }
  709:     writeHelp(caller);
  710:     return;
  711: }
  712: function writeHelp(caller) {
  713:     caller.document.write("<html><head><title>LON-CAPA Help Menu</title><meta http-equiv='pragma' content='no-cache'></head>")
  714:     caller.document.write("<frameset rows='105,*' border='0'><frame name='bannerframe'  src='$banner_link'><frame name='bodyframe' src='$details_link'></frameset>")
  715:     caller.document.write("</html>")
  716:     caller.document.close()
  717:     caller.focus()
  718: }
  719: // END LON-CAPA Internal -->
  720:  </script>
  721:  <a href="$link" title="$title"><img src="$helpicon" border="0" alt="(Help Menu)" /></a>
  722: ENDTEMPLATE
  723:     if ($component_help) {
  724: 	if (!$text) {
  725: 	    $template=&help_open_topic($component_help,undef,$stayOnPage,
  726: 				       $width,$height).' '.$template;
  727: 	} else {
  728: 	    my $help_text;
  729: 	    $help_text=&Apache::lonnet::unescape($topic);
  730: 	    $template='<table><tr><td>'.
  731: 		&help_open_topic($component_help,$help_text,$stayOnPage,
  732: 				 $width,$height).'</td><td>'.$template.
  733: 				 '</td></tr></table>';
  734: 	}
  735:     }
  736:     if ($text ne '') { $template.='</td></tr></table>' };
  737:     return $template;
  738: }
  739: 
  740: sub help_open_bug {
  741:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
  742:     unless ($ENV{'user.adv'}) { return ''; }
  743:     unless ($Apache::lonnet::perlvar{'BugzillaHost'}) { return ''; }
  744:     $text = "" if (not defined $text);
  745:     $stayOnPage = 0 if (not defined $stayOnPage);
  746:     if ($ENV{'browser.interface'} eq 'textual' ||
  747: 	$ENV{'environment.remote'} eq 'off' ) {
  748: 	$stayOnPage=1;
  749:     }
  750:     $width = 600 if (not defined $width);
  751:     $height = 600 if (not defined $height);
  752: 
  753:     $topic=~s/\W+/\+/g;
  754:     my $link='';
  755:     my $template='';
  756:     my $url=$Apache::lonnet::perlvar{'BugzillaHost'}.'enter_bug.cgi?product=LON-CAPA&bug_file_loc='.
  757: 	&Apache::lonnet::escape($ENV{'REQUEST_URI'}).'&component='.$topic;
  758:     if (!$stayOnPage)
  759:     {
  760: 	$link = "javascript:void(open('$url', 'Bugzilla', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
  761:     }
  762:     else
  763:     {
  764: 	$link = $url;
  765:     }
  766:     # Add the text
  767:     if ($text ne "")
  768:     {
  769: 	$template .= 
  770:   "<table bgcolor='#AA3333' cellspacing='1' cellpadding='1' border='0'><tr>".
  771:   "<td bgcolor='#FF5555'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  772:     }
  773: 
  774:     # Add the graphic
  775:     my $title = &mt('Report a Bug');
  776:     my $bugicon=&lonhttpdurl("/adm/lonMisc/smallBug.gif");
  777:     $template .= <<"ENDTEMPLATE";
  778:  <a href="$link" title="$title"><img src="$bugicon" border="0" alt="(Bug: $topic)" /></a>
  779: ENDTEMPLATE
  780:     if ($text ne '') { $template.='</td></tr></table>' };
  781:     return $template;
  782: 
  783: }
  784: 
  785: sub help_open_faq {
  786:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
  787:     unless ($ENV{'user.adv'}) { return ''; }
  788:     unless ($Apache::lonnet::perlvar{'FAQHost'}) { return ''; }
  789:     $text = "" if (not defined $text);
  790:     $stayOnPage = 0 if (not defined $stayOnPage);
  791:     if ($ENV{'browser.interface'} eq 'textual' ||
  792: 	$ENV{'environment.remote'} eq 'off' ) {
  793: 	$stayOnPage=1;
  794:     }
  795:     $width = 350 if (not defined $width);
  796:     $height = 400 if (not defined $height);
  797: 
  798:     $topic=~s/\W+/\+/g;
  799:     my $link='';
  800:     my $template='';
  801:     my $url=$Apache::lonnet::perlvar{'FAQHost'}.'/fom/cache/'.$topic.'.html';
  802:     if (!$stayOnPage)
  803:     {
  804: 	$link = "javascript:void(open('$url', 'FAQ-O-Matic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
  805:     }
  806:     else
  807:     {
  808: 	$link = $url;
  809:     }
  810: 
  811:     # Add the text
  812:     if ($text ne "")
  813:     {
  814: 	$template .= 
  815:   "<table bgcolor='#337733' cellspacing='1' cellpadding='1' border='0'><tr>".
  816:   "<td bgcolor='#448844'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  817:     }
  818: 
  819:     # Add the graphic
  820:     my $title = &mt('View the FAQ');
  821:     my $faqicon=&lonhttpdurl("/adm/lonMisc/smallFAQ.gif");
  822:     $template .= <<"ENDTEMPLATE";
  823:  <a href="$link" title="$title"><img src="$faqicon" border="0" alt="(FAQ: $topic)" /></a>
  824: ENDTEMPLATE
  825:     if ($text ne '') { $template.='</td></tr></table>' };
  826:     return $template;
  827: 
  828: }
  829: 
  830: ###############################################################
  831: ###############################################################
  832: 
  833: =pod
  834: 
  835: =item * csv_translate($text) 
  836: 
  837: Translate $text to allow it to be output as a 'comma separated values' 
  838: format.
  839: 
  840: =cut
  841: 
  842: ###############################################################
  843: ###############################################################
  844: sub csv_translate {
  845:     my $text = shift;
  846:     $text =~ s/\"/\"\"/g;
  847:     $text =~ s/\n/ /g;
  848:     return $text;
  849: }
  850: 
  851: 
  852: ###############################################################
  853: ###############################################################
  854: 
  855: =pod
  856: 
  857: =item * define_excel_formats
  858: 
  859: Define some commonly used Excel cell formats.
  860: 
  861: Currently supported formats:
  862: 
  863: =over 4
  864: 
  865: =item header
  866: 
  867: =item bold
  868: 
  869: =item h1
  870: 
  871: =item h2
  872: 
  873: =item h3
  874: 
  875: =item date
  876: 
  877: =back
  878: 
  879: Inputs: $workbook
  880: 
  881: Returns: $format, a hash reference.
  882: 
  883: =cut
  884: 
  885: ###############################################################
  886: ###############################################################
  887: sub define_excel_formats {
  888:     my ($workbook) = @_;
  889:     my $format;
  890:     $format->{'header'} = $workbook->add_format(bold      => 1, 
  891:                                                 bottom    => 1,
  892:                                                 align     => 'center');
  893:     $format->{'bold'} = $workbook->add_format(bold=>1);
  894:     $format->{'h1'}   = $workbook->add_format(bold=>1, size=>18);
  895:     $format->{'h2'}   = $workbook->add_format(bold=>1, size=>16);
  896:     $format->{'h3'}   = $workbook->add_format(bold=>1, size=>14);
  897:     $format->{'i'}    = $workbook->add_format(italic=>1);
  898:     $format->{'date'} = $workbook->add_format(num_format=>
  899:                                             'mm/dd/yyyy hh:mm:ss');
  900:     return $format;
  901: }
  902: 
  903: ###############################################################
  904: ###############################################################
  905: 
  906: =pod
  907: 
  908: =item * change_content_javascript():
  909: 
  910: This and the next function allow you to create small sections of an
  911: otherwise static HTML page that you can update on the fly with
  912: Javascript, even in Netscape 4.
  913: 
  914: The Javascript fragment returned by this function (no E<lt>scriptE<gt> tag)
  915: must be written to the HTML page once. It will prove the Javascript
  916: function "change(name, content)". Calling the change function with the
  917: name of the section 
  918: you want to update, matching the name passed to C<changable_area>, and
  919: the new content you want to put in there, will put the content into
  920: that area.
  921: 
  922: B<Note>: Netscape 4 only reserves enough space for the changable area
  923: to contain room for the original contents. You need to "make space"
  924: for whatever changes you wish to make, and be B<sure> to check your
  925: code in Netscape 4. This feature in Netscape 4 is B<not> powerful;
  926: it's adequate for updating a one-line status display, but little more.
  927: This script will set the space to 100% width, so you only need to
  928: worry about height in Netscape 4.
  929: 
  930: Modern browsers are much less limiting, and if you can commit to the
  931: user not using Netscape 4, this feature may be used freely with
  932: pretty much any HTML.
  933: 
  934: =cut
  935: 
  936: sub change_content_javascript {
  937:     # If we're on Netscape 4, we need to use Layer-based code
  938:     if ($ENV{'browser.type'} eq 'netscape' &&
  939: 	$ENV{'browser.version'} =~ /^4\./) {
  940: 	return (<<NETSCAPE4);
  941: 	function change(name, content) {
  942: 	    doc = document.layers[name+"___escape"].layers[0].document;
  943: 	    doc.open();
  944: 	    doc.write(content);
  945: 	    doc.close();
  946: 	}
  947: NETSCAPE4
  948:     } else {
  949: 	# Otherwise, we need to use semi-standards-compliant code
  950: 	# (technically, "innerHTML" isn't standard but the equivalent
  951: 	# is really scary, and every useful browser supports it
  952: 	return (<<DOMBASED);
  953: 	function change(name, content) {
  954: 	    element = document.getElementById(name);
  955: 	    element.innerHTML = content;
  956: 	}
  957: DOMBASED
  958:     }
  959: }
  960: 
  961: =pod
  962: 
  963: =item * changable_area($name, $origContent):
  964: 
  965: This provides a "changable area" that can be modified on the fly via
  966: the Javascript code provided in C<change_content_javascript>. $name is
  967: the name you will use to reference the area later; do not repeat the
  968: same name on a given HTML page more then once. $origContent is what
  969: the area will originally contain, which can be left blank.
  970: 
  971: =cut
  972: 
  973: sub changable_area {
  974:     my ($name, $origContent) = @_;
  975: 
  976:     if ($ENV{'browser.type'} eq 'netscape' &&
  977: 	$ENV{'browser.version'} =~ /^4\./) {
  978: 	# If this is netscape 4, we need to use the Layer tag
  979: 	return "<ilayer width='100%' id='${name}___escape' overflow='none'><layer width='100%' id='$name' overflow='none'>$origContent</layer></ilayer>";
  980:     } else {
  981: 	return "<span id='$name'>$origContent</span>";
  982:     }
  983: }
  984: 
  985: =pod
  986: 
  987: =back
  988: 
  989: =cut
  990: 
  991: ###############################################################
  992: ##        Home server <option> list generating code          ##
  993: ###############################################################
  994: 
  995: =pod
  996: 
  997: =head1 Home Server option list generating code
  998: 
  999: =over 4
 1000: 
 1001: =item * get_domains()
 1002: 
 1003: Returns an array containing each of the domains listed in the hosts.tab
 1004: file.
 1005: 
 1006: =cut
 1007: 
 1008: #-------------------------------------------
 1009: sub get_domains {
 1010:     # The code below was stolen from "The Perl Cookbook", p 102, 1st ed.
 1011:     my @domains;
 1012:     my %seen;
 1013:     foreach (sort values(%Apache::lonnet::hostdom)) {
 1014: 	push (@domains,$_) unless $seen{$_}++;
 1015:     }
 1016:     return @domains;
 1017: }
 1018: 
 1019: # ------------------------------------------
 1020: 
 1021: sub domain_select {
 1022:     my ($name,$value,$multiple)=@_;
 1023:     my %domains=map { 
 1024: 	$_ => $_.' '.$Apache::lonnet::domaindescription{$_} 
 1025:     } &get_domains;
 1026:     if ($multiple) {
 1027: 	$domains{''}=&mt('Any domain');
 1028: 	return &multiple_select_form($name,$value,4,%domains);
 1029:     } else {
 1030: 	return &select_form($name,$value,%domains);
 1031:     }
 1032: }
 1033: 
 1034: sub multiple_select_form {
 1035:     my ($name,$value,$size,%hash)=@_;
 1036:     my %selected = map { $_ => 1 } ref($value)?@{$value}:($value);
 1037:     my $output='';
 1038:     if (! defined($size)) {
 1039:         $size = 4;
 1040:         if (scalar(keys(%hash))<4) {
 1041:             $size = scalar(keys(%hash));
 1042:         }
 1043:     }
 1044:     $output.="\n<select name='$name' size='$size' multiple='1'>";
 1045:     foreach (sort(keys(%hash))) {
 1046:         $output.='<option value="'.$_.'" ';
 1047:         $output.='selected ' if ($selected{$_});
 1048:         $output.='>'.$hash{$_}."</option>\n";
 1049:     }
 1050:     $output.="</select>\n";
 1051:     return $output;
 1052: }
 1053: 
 1054: #-------------------------------------------
 1055: 
 1056: =pod
 1057: 
 1058: =item * select_form($defdom,$name,%hash)
 1059: 
 1060: Returns a string containing a <select name='$name' size='1'> form to 
 1061: allow a user to select options from a hash option_name => displayed text.  
 1062: See lonrights.pm for an example invocation and use.
 1063: 
 1064: =cut
 1065: 
 1066: #-------------------------------------------
 1067: sub select_form {
 1068:     my ($def,$name,%hash) = @_;
 1069:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
 1070:     my @keys;
 1071:     if (exists($hash{'select_form_order'})) {
 1072: 	@keys=@{$hash{'select_form_order'}};
 1073:     } else {
 1074: 	@keys=sort(keys(%hash));
 1075:     }
 1076:     foreach (@keys) {
 1077:         $selectform.="<option value=\"$_\" ".
 1078:             ($_ eq $def ? 'selected' : '').
 1079:                 ">".&mt($hash{$_})."</option>\n";
 1080:     }
 1081:     $selectform.="</select>";
 1082:     return $selectform;
 1083: }
 1084: 
 1085: sub gradeleveldescription {
 1086:     my $gradelevel=shift;
 1087:     my %gradelevels=(0 => 'Not specified',
 1088: 		     1 => 'Grade 1',
 1089: 		     2 => 'Grade 2',
 1090: 		     3 => 'Grade 3',
 1091: 		     4 => 'Grade 4',
 1092: 		     5 => 'Grade 5',
 1093: 		     6 => 'Grade 6',
 1094: 		     7 => 'Grade 7',
 1095: 		     8 => 'Grade 8',
 1096: 		     9 => 'Grade 9',
 1097: 		     10 => 'Grade 10',
 1098: 		     11 => 'Grade 11',
 1099: 		     12 => 'Grade 12',
 1100: 		     13 => 'Grade 13',
 1101: 		     14 => '100 Level',
 1102: 		     15 => '200 Level',
 1103: 		     16 => '300 Level',
 1104: 		     17 => '400 Level',
 1105: 		     18 => 'Graduate Level');
 1106:     return &mt($gradelevels{$gradelevel});
 1107: }
 1108: 
 1109: sub select_level_form {
 1110:     my ($deflevel,$name)=@_;
 1111:     unless ($deflevel) { $deflevel=0; }
 1112:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
 1113:     for (my $i=0; $i<=18; $i++) {
 1114:         $selectform.="<option value=\"$i\" ".
 1115:             ($i==$deflevel ? 'selected' : '').
 1116:                 ">".&gradeleveldescription($i)."</option>\n";
 1117:     }
 1118:     $selectform.="</select>";
 1119:     return $selectform;
 1120: }
 1121: 
 1122: #-------------------------------------------
 1123: 
 1124: =pod
 1125: 
 1126: =item * select_dom_form($defdom,$name,$includeempty)
 1127: 
 1128: Returns a string containing a <select name='$name' size='1'> form to 
 1129: allow a user to select the domain to preform an operation in.  
 1130: See loncreateuser.pm for an example invocation and use.
 1131: 
 1132: If the $includeempty flag is set, it also includes an empty choice ("no domain
 1133: selected");
 1134: 
 1135: =cut
 1136: 
 1137: #-------------------------------------------
 1138: sub select_dom_form {
 1139:     my ($defdom,$name,$includeempty) = @_;
 1140:     my @domains = get_domains();
 1141:     if ($includeempty) { @domains=('',@domains); }
 1142:     my $selectdomain = "<select name=\"$name\" size=\"1\">\n";
 1143:     foreach (@domains) {
 1144:         $selectdomain.="<option value=\"$_\" ".
 1145:             ($_ eq $defdom ? 'selected' : '').
 1146:                 ">$_</option>\n";
 1147:     }
 1148:     $selectdomain.="</select>";
 1149:     return $selectdomain;
 1150: }
 1151: 
 1152: #-------------------------------------------
 1153: 
 1154: =pod
 1155: 
 1156: =item * get_library_servers($domain)
 1157: 
 1158: Returns a hash which contains keys like '103l3' and values like 
 1159: 'kirk.lite.msu.edu'.  All of the keys will be for machines in the
 1160: given $domain.
 1161: 
 1162: =cut
 1163: 
 1164: #-------------------------------------------
 1165: sub get_library_servers {
 1166:     my $domain = shift;
 1167:     my %library_servers;
 1168:     foreach (keys(%Apache::lonnet::libserv)) {
 1169:         if ($Apache::lonnet::hostdom{$_} eq $domain) {
 1170:             $library_servers{$_} = $Apache::lonnet::hostname{$_};
 1171:         }
 1172:     }
 1173:     return %library_servers;
 1174: }
 1175: 
 1176: #-------------------------------------------
 1177: 
 1178: =pod
 1179: 
 1180: =item * home_server_option_list($domain)
 1181: 
 1182: returns a string which contains an <option> list to be used in a 
 1183: <select> form input.  See loncreateuser.pm for an example.
 1184: 
 1185: =cut
 1186: 
 1187: #-------------------------------------------
 1188: sub home_server_option_list {
 1189:     my $domain = shift;
 1190:     my %servers = &get_library_servers($domain);
 1191:     my $result = '';
 1192:     foreach (sort keys(%servers)) {
 1193:         $result.=
 1194:             '<option value="'.$_.'">'.$_.' '.$servers{$_}."</option>\n";
 1195:     }
 1196:     return $result;
 1197: }
 1198: 
 1199: =pod
 1200: 
 1201: =back
 1202: 
 1203: =cut
 1204: 
 1205: ###############################################################
 1206: ##                  Decoding User Agent                      ##
 1207: ###############################################################
 1208: 
 1209: =pod
 1210: 
 1211: =head1 Decoding the User Agent
 1212: 
 1213: =over 4
 1214: 
 1215: =item * &decode_user_agent()
 1216: 
 1217: Inputs: $r
 1218: 
 1219: Outputs:
 1220: 
 1221: =over 4
 1222: 
 1223: =item * $httpbrowser
 1224: 
 1225: =item * $clientbrowser
 1226: 
 1227: =item * $clientversion
 1228: 
 1229: =item * $clientmathml
 1230: 
 1231: =item * $clientunicode
 1232: 
 1233: =item * $clientos
 1234: 
 1235: =back
 1236: 
 1237: =back 
 1238: 
 1239: =cut
 1240: 
 1241: ###############################################################
 1242: ###############################################################
 1243: sub decode_user_agent {
 1244:     my ($r)=@_;
 1245:     my @browsertype=split(/\&/,$Apache::lonnet::perlvar{"lonBrowsDet"});
 1246:     my %mathcap=split(/\&/,$$Apache::lonnet::perlvar{"lonMathML"});
 1247:     my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
 1248:     if (!$httpbrowser && $r) { $httpbrowser=$r->header_in('User-Agent'); }
 1249:     my $clientbrowser='unknown';
 1250:     my $clientversion='0';
 1251:     my $clientmathml='';
 1252:     my $clientunicode='0';
 1253:     for (my $i=0;$i<=$#browsertype;$i++) {
 1254:         my ($bname,$match,$notmatch,$vreg,$minv,$univ)=split(/\:/,$browsertype[$i]);
 1255: 	if (($httpbrowser=~/$match/i)  && ($httpbrowser!~/$notmatch/i)) {
 1256: 	    $clientbrowser=$bname;
 1257:             $httpbrowser=~/$vreg/i;
 1258: 	    $clientversion=$1;
 1259:             $clientmathml=($clientversion>=$minv);
 1260:             $clientunicode=($clientversion>=$univ);
 1261: 	}
 1262:     }
 1263:     my $clientos='unknown';
 1264:     if (($httpbrowser=~/linux/i) ||
 1265:         ($httpbrowser=~/unix/i) ||
 1266:         ($httpbrowser=~/ux/i) ||
 1267:         ($httpbrowser=~/solaris/i)) { $clientos='unix'; }
 1268:     if (($httpbrowser=~/vax/i) ||
 1269:         ($httpbrowser=~/vms/i)) { $clientos='vms'; }
 1270:     if ($httpbrowser=~/next/i) { $clientos='next'; }
 1271:     if (($httpbrowser=~/mac/i) ||
 1272:         ($httpbrowser=~/powerpc/i)) { $clientos='mac'; }
 1273:     if ($httpbrowser=~/win/i) { $clientos='win'; }
 1274:     if ($httpbrowser=~/embed/i) { $clientos='pda'; }
 1275:     return ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
 1276:             $clientunicode,$clientos,);
 1277: }
 1278: 
 1279: ###############################################################
 1280: ##    Authentication changing form generation subroutines    ##
 1281: ###############################################################
 1282: ##
 1283: ## All of the authform_xxxxxxx subroutines take their inputs in a
 1284: ## hash, and have reasonable default values.
 1285: ##
 1286: ##    formname = the name given in the <form> tag.
 1287: #-------------------------------------------
 1288: 
 1289: =pod
 1290: 
 1291: =head1 Authentication Routines
 1292: 
 1293: =over 4
 1294: 
 1295: =item * authform_xxxxxx
 1296: 
 1297: The authform_xxxxxx subroutines provide javascript and html forms which 
 1298: handle some of the conveniences required for authentication forms.  
 1299: This is not an optimal method, but it works.  
 1300: 
 1301: See loncreateuser.pm for invocation and use examples.
 1302: 
 1303: =over 4
 1304: 
 1305: =item * authform_header
 1306: 
 1307: =item * authform_authorwarning
 1308: 
 1309: =item * authform_nochange
 1310: 
 1311: =item * authform_kerberos
 1312: 
 1313: =item * authform_internal
 1314: 
 1315: =item * authform_filesystem
 1316: 
 1317: =back
 1318: 
 1319: =back 
 1320: 
 1321: =cut
 1322: 
 1323: #-------------------------------------------
 1324: sub authform_header{  
 1325:     my %in = (
 1326:         formname => 'cu',
 1327:         kerb_def_dom => '',
 1328:         @_,
 1329:     );
 1330:     $in{'formname'} = 'document.' . $in{'formname'};
 1331:     my $result='';
 1332: 
 1333: #---------------------------------------------- Code for upper case translation
 1334:     my $Javascript_toUpperCase;
 1335:     unless ($in{kerb_def_dom}) {
 1336:         $Javascript_toUpperCase =<<"END";
 1337:         switch (choice) {
 1338:            case 'krb': currentform.elements[choicearg].value =
 1339:                currentform.elements[choicearg].value.toUpperCase();
 1340:                break;
 1341:            default:
 1342:         }
 1343: END
 1344:     } else {
 1345:         $Javascript_toUpperCase = "";
 1346:     }
 1347: 
 1348:     my $radioval = "'nochange'";
 1349:     if (exists($in{'curr_authtype'}) &&
 1350:         defined($in{'curr_authtype'}) &&
 1351:         $in{'curr_authtype'} ne '') {
 1352:         $radioval = "'$in{'curr_authtype'}arg'";
 1353:     }
 1354:     my $argfield = 'null';
 1355:     if ( grep/^mode$/,(keys %in) ) {
 1356:         if ($in{'mode'} eq 'modifycourse')  {
 1357:             if ( grep/^curr_authtype$/,(keys %in) ) {
 1358:                 $radioval = "'$in{'curr_authtype'}'";
 1359:             }
 1360:             if ( grep/^curr_autharg$/,(keys %in) ) {
 1361:                 unless ($in{'curr_autharg'} eq '') {
 1362:                     $argfield = "'$in{'curr_autharg'}'";
 1363:                 }
 1364:             }
 1365:         }
 1366:     }
 1367: 
 1368:     $result.=<<"END";
 1369: var current = new Object();
 1370: current.radiovalue = $radioval;
 1371: current.argfield = $argfield;
 1372: 
 1373: function changed_radio(choice,currentform) {
 1374:     var choicearg = choice + 'arg';
 1375:     // If a radio button in changed, we need to change the argfield
 1376:     if (current.radiovalue != choice) {
 1377:         current.radiovalue = choice;
 1378:         if (current.argfield != null) {
 1379:             currentform.elements[current.argfield].value = '';
 1380:         }
 1381:         if (choice == 'nochange') {
 1382:             current.argfield = null;
 1383:         } else {
 1384:             current.argfield = choicearg;
 1385:             switch(choice) {
 1386:                 case 'krb': 
 1387:                     currentform.elements[current.argfield].value = 
 1388:                         "$in{'kerb_def_dom'}";
 1389:                 break;
 1390:               default:
 1391:                 break;
 1392:             }
 1393:         }
 1394:     }
 1395:     return;
 1396: }
 1397: 
 1398: function changed_text(choice,currentform) {
 1399:     var choicearg = choice + 'arg';
 1400:     if (currentform.elements[choicearg].value !='') {
 1401:         $Javascript_toUpperCase
 1402:         // clear old field
 1403:         if ((current.argfield != choicearg) && (current.argfield != null)) {
 1404:             currentform.elements[current.argfield].value = '';
 1405:         }
 1406:         current.argfield = choicearg;
 1407:     }
 1408:     set_auth_radio_buttons(choice,currentform);
 1409:     return;
 1410: }
 1411: 
 1412: function set_auth_radio_buttons(newvalue,currentform) {
 1413:     var i=0;
 1414:     while (i < currentform.login.length) {
 1415:         if (currentform.login[i].value == newvalue) { break; }
 1416:         i++;
 1417:     }
 1418:     if (i == currentform.login.length) {
 1419:         return;
 1420:     }
 1421:     current.radiovalue = newvalue;
 1422:     currentform.login[i].checked = true;
 1423:     return;
 1424: }
 1425: END
 1426:     return $result;
 1427: }
 1428: 
 1429: sub authform_authorwarning{
 1430:     my $result='';
 1431:     $result='<i>'.
 1432:         &mt('As a general rule, only authors or co-authors should be '.
 1433:             'filesystem authenticated '.
 1434:             '(which allows access to the server filesystem).')."</i>\n";
 1435:     return $result;
 1436: }
 1437: 
 1438: sub authform_nochange{  
 1439:     my %in = (
 1440:               formname => 'document.cu',
 1441:               kerb_def_dom => 'MSU.EDU',
 1442:               @_,
 1443:           );
 1444:     my $result = &mt('[_1] Do not change login data',
 1445:                      '<input type="radio" name="login" value="nochange" '.
 1446:                      'checked="checked" onclick="'.
 1447:             "javascript:changed_radio('nochange',$in{'formname'});".'" />');
 1448:     return $result;
 1449: }
 1450: 
 1451: sub authform_kerberos{  
 1452:     my %in = (
 1453:               formname => 'document.cu',
 1454:               kerb_def_dom => 'MSU.EDU',
 1455:               kerb_def_auth => 'krb4',
 1456:               @_,
 1457:               );
 1458:     my ($check4,$check5,$krbarg);
 1459:     if ($in{'kerb_def_auth'} eq 'krb5') {
 1460:        $check5 = " checked=\"on\"";
 1461:     } else {
 1462:        $check4 = " checked=\"on\"";
 1463:     }
 1464:     $krbarg = $in{'kerb_def_dom'};
 1465: 
 1466:     my $krbcheck = "";
 1467:     if ( grep/^curr_authtype$/,(keys %in) ) {
 1468:         if ($in{'curr_authtype'} =~ m/^krb/) {
 1469:             $krbcheck = " checked=\"on\"";
 1470:             if ( grep/^curr_autharg$/,(keys %in) ) {
 1471:                 $krbarg = $in{'curr_autharg'};
 1472:             }
 1473:         }
 1474:     }
 1475: 
 1476:     my $jscall = "javascript:changed_radio('krb',$in{'formname'});";
 1477:     my $result .= &mt
 1478:         ('[_1] Kerberos authenticated with domain [_2] '.
 1479:          '[_3] Version 4 [_4] Version 5',
 1480:          '<input type="radio" name="login" value="krb" '.
 1481:              'onclick="'.$jscall.'" onchange="'.$jscall.'"'.$krbcheck.' />',
 1482:          '<input type="text" size="10" name="krbarg" '.
 1483:              'value="'.$krbarg.'" '.
 1484:              'onchange="'.$jscall.'" />',
 1485:          '<input type="radio" name="krbver" value="4" '.$check4.' />',
 1486:          '<input type="radio" name="krbver" value="5" '.$check5.' />');
 1487:     return $result;
 1488: }
 1489: 
 1490: sub authform_internal{  
 1491:     my %args = (
 1492:                 formname => 'document.cu',
 1493:                 kerb_def_dom => 'MSU.EDU',
 1494:                 @_,
 1495:                 );
 1496: 
 1497:     my $intcheck = "";
 1498:     my $intarg = 'value=""';
 1499:     if ( grep/^curr_authtype$/,(keys %args) ) {
 1500:         if ($args{'curr_authtype'} eq 'int') {
 1501:             $intcheck = " checked=\"on\"";
 1502:             if ( grep/^curr_autharg$/,(keys %args) ) {
 1503:                 $intarg = "value=\"$args{'curr_autharg'}\"";
 1504:             }
 1505:         }
 1506:     }
 1507: 
 1508:     my $jscall = "javascript:changed_radio('int',$args{'formname'});";
 1509:     my $result.=&mt
 1510:         ('[_1] Internally authenticated (with initial password [_2])',
 1511:          '<input type="radio" name="login" value="int" '.$intcheck.
 1512:              ' onchange="'.$jscall.'" onclick="'.$jscall.'" />',
 1513:          '<input type="text" size="10" name="intarg" '.$intarg.
 1514:              ' onchange="'.$jscall.'" />');
 1515:     return $result;
 1516: }
 1517: 
 1518: sub authform_local{  
 1519:     my %in = (
 1520:               formname => 'document.cu',
 1521:               kerb_def_dom => 'MSU.EDU',
 1522:               @_,
 1523:               );
 1524: 
 1525:     my $loccheck = "";
 1526:     my $locarg = 'value=""';
 1527:     if ( grep/^curr_authtype$/,(keys %in) ) {
 1528:         if ($in{'curr_authtype'} eq 'loc') {
 1529:             $loccheck = " checked=\"on\"";
 1530:             if ( grep/^curr_autharg$/,(keys %in) ) {
 1531:                 $locarg = "value=\"$in{'curr_autharg'}\"";
 1532:             }
 1533:         }
 1534:     }
 1535: 
 1536:     my $jscall = "javascript:changed_radio('loc',$in{'formname'});";
 1537:     my $result.=&mt('[_1] Local Authentication with argument [_2]',
 1538:                     '<input type="radio" name="login" value="loc" '.$loccheck.
 1539:                         ' onchange="'.$jscall.'" onclick="'.$jscall.'" />',
 1540:                     '<input type="text" size="10" name="locarg" '.$locarg.
 1541:                         ' onchange="'.$jscall.'" />');
 1542:     return $result;
 1543: }
 1544: 
 1545: sub authform_filesystem{  
 1546:     my %in = (
 1547:               formname => 'document.cu',
 1548:               kerb_def_dom => 'MSU.EDU',
 1549:               @_,
 1550:               );
 1551:     my $jscall = "javascript:changed_radio('fsys',$in{'formname'});";
 1552:     my $result.= &mt
 1553:         ('[_1] Filesystem Authenticated (with initial password [_2])',
 1554:          '<input type="radio" name="login" value="fsys" '.
 1555:          'onchange="'.$jscall.'" onclick="'.$jscall.'" />',
 1556:          '<input type="text" size="10" name="fsysarg" value="" '.
 1557:                   'onchange="'.$jscall.'" />');
 1558:     return $result;
 1559: }
 1560: 
 1561: ###############################################################
 1562: ##    Get Authentication Defaults for Domain                 ##
 1563: ###############################################################
 1564: 
 1565: =pod
 1566: 
 1567: =head1 Domains and Authentication
 1568: 
 1569: Returns default authentication type and an associated argument as
 1570: listed in file 'domain.tab'.
 1571: 
 1572: =over 4
 1573: 
 1574: =item * get_auth_defaults
 1575: 
 1576: get_auth_defaults($target_domain) returns the default authentication
 1577: type and an associated argument (initial password or a kerberos domain).
 1578: These values are stored in lonTabs/domain.tab
 1579: 
 1580: ($def_auth, $def_arg) = &get_auth_defaults($target_domain);
 1581: 
 1582: If target_domain is not found in domain.tab, returns nothing ('').
 1583: 
 1584: =cut
 1585: 
 1586: #-------------------------------------------
 1587: sub get_auth_defaults {
 1588:     my $domain=shift;
 1589:     return ($Apache::lonnet::domain_auth_def{$domain},$Apache::lonnet::domain_auth_arg_def{$domain});
 1590: }
 1591: ###############################################################
 1592: ##   End Get Authentication Defaults for Domain              ##
 1593: ###############################################################
 1594: 
 1595: ###############################################################
 1596: ##    Get Kerberos Defaults for Domain                 ##
 1597: ###############################################################
 1598: ##
 1599: ## Returns default kerberos version and an associated argument
 1600: ## as listed in file domain.tab. If not listed, provides
 1601: ## appropriate default domain and kerberos version.
 1602: ##
 1603: #-------------------------------------------
 1604: 
 1605: =pod
 1606: 
 1607: =item * get_kerberos_defaults
 1608: 
 1609: get_kerberos_defaults($target_domain) returns the default kerberos
 1610: version and domain. If not found in domain.tabs, it defaults to
 1611: version 4 and the domain of the server.
 1612: 
 1613: ($def_version, $def_krb_domain) = &get_kerberos_defaults($target_domain);
 1614: 
 1615: =cut
 1616: 
 1617: #-------------------------------------------
 1618: sub get_kerberos_defaults {
 1619:     my $domain=shift;
 1620:     my ($krbdef,$krbdefdom) =
 1621:         &Apache::loncommon::get_auth_defaults($domain);
 1622:     unless ($krbdef =~/^krb/ && $krbdefdom) {
 1623:         $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/;
 1624:         my $krbdefdom=$1;
 1625:         $krbdefdom=~tr/a-z/A-Z/;
 1626:         $krbdef = "krb4";
 1627:     }
 1628:     return ($krbdef,$krbdefdom);
 1629: }
 1630: 
 1631: =pod
 1632: 
 1633: =back
 1634: 
 1635: =cut
 1636: 
 1637: ###############################################################
 1638: ##                Thesaurus Functions                        ##
 1639: ###############################################################
 1640: 
 1641: =pod
 1642: 
 1643: =head1 Thesaurus Functions
 1644: 
 1645: =over 4
 1646: 
 1647: =item * initialize_keywords
 1648: 
 1649: Initializes the package variable %Keywords if it is empty.  Uses the
 1650: package variable $thesaurus_db_file.
 1651: 
 1652: =cut
 1653: 
 1654: ###################################################
 1655: 
 1656: sub initialize_keywords {
 1657:     return 1 if (scalar keys(%Keywords));
 1658:     # If we are here, %Keywords is empty, so fill it up
 1659:     #   Make sure the file we need exists...
 1660:     if (! -e $thesaurus_db_file) {
 1661:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file".
 1662:                                  " failed because it does not exist");
 1663:         return 0;
 1664:     }
 1665:     #   Set up the hash as a database
 1666:     my %thesaurus_db;
 1667:     if (! tie(%thesaurus_db,'GDBM_File',
 1668:               $thesaurus_db_file,&GDBM_READER(),0640)){
 1669:         &Apache::lonnet::logthis("Could not tie \%thesaurus_db to ".
 1670:                                  $thesaurus_db_file);
 1671:         return 0;
 1672:     } 
 1673:     #  Get the average number of appearances of a word.
 1674:     my $avecount = $thesaurus_db{'average.count'};
 1675:     #  Put keywords (those that appear > average) into %Keywords
 1676:     while (my ($word,$data)=each (%thesaurus_db)) {
 1677:         my ($count,undef) = split /:/,$data;
 1678:         $Keywords{$word}++ if ($count > $avecount);
 1679:     }
 1680:     untie %thesaurus_db;
 1681:     # Remove special values from %Keywords.
 1682:     foreach ('total.count','average.count') {
 1683:         delete($Keywords{$_}) if (exists($Keywords{$_}));
 1684:     }
 1685:     return 1;
 1686: }
 1687: 
 1688: ###################################################
 1689: 
 1690: =pod
 1691: 
 1692: =item * keyword($word)
 1693: 
 1694: Returns true if $word is a keyword.  A keyword is a word that appears more 
 1695: than the average number of times in the thesaurus database.  Calls 
 1696: &initialize_keywords
 1697: 
 1698: =cut
 1699: 
 1700: ###################################################
 1701: 
 1702: sub keyword {
 1703:     return if (!&initialize_keywords());
 1704:     my $word=lc(shift());
 1705:     $word=~s/\W//g;
 1706:     return exists($Keywords{$word});
 1707: }
 1708: 
 1709: ###############################################################
 1710: 
 1711: =pod 
 1712: 
 1713: =item * get_related_words
 1714: 
 1715: Look up a word in the thesaurus.  Takes a scalar argument and returns
 1716: an array of words.  If the keyword is not in the thesaurus, an empty array
 1717: will be returned.  The order of the words returned is determined by the
 1718: database which holds them.
 1719: 
 1720: Uses global $thesaurus_db_file.
 1721: 
 1722: =cut
 1723: 
 1724: ###############################################################
 1725: sub get_related_words {
 1726:     my $keyword = shift;
 1727:     my %thesaurus_db;
 1728:     if (! -e $thesaurus_db_file) {
 1729:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file ".
 1730:                                  "failed because the file does not exist");
 1731:         return ();
 1732:     }
 1733:     if (! tie(%thesaurus_db,'GDBM_File',
 1734:               $thesaurus_db_file,&GDBM_READER(),0640)){
 1735:         return ();
 1736:     } 
 1737:     my @Words=();
 1738:     if (exists($thesaurus_db{$keyword})) {
 1739:         $_ = $thesaurus_db{$keyword};
 1740:         (undef,@Words) = split/:/;  # The first element is the number of times
 1741:                                     # the word appears.  We do not need it now.
 1742:         for (my $i=0;$i<=$#Words;$i++) {
 1743:             ($Words[$i],undef)= split/\,/,$Words[$i];
 1744:         }
 1745:     }
 1746:     untie %thesaurus_db;
 1747:     return @Words;
 1748: }
 1749: 
 1750: =pod
 1751: 
 1752: =back
 1753: 
 1754: =cut
 1755: 
 1756: # -------------------------------------------------------------- Plaintext name
 1757: =pod
 1758: 
 1759: =head1 User Name Functions
 1760: 
 1761: =over 4
 1762: 
 1763: =item * plainname($uname,$udom,$first)
 1764: 
 1765: Takes a users logon name and returns it as a string in
 1766: "first middle last generation" form 
 1767: if $first is set to 'lastname' then it returns it as
 1768: 'lastname generation, firstname middlename' if their is a lastname
 1769: 
 1770: =cut
 1771: 
 1772: ###############################################################
 1773: sub plainname {
 1774:     my ($uname,$udom,$first)=@_;
 1775:     my %names=&Apache::lonnet::get('environment',
 1776:                     ['firstname','middlename','lastname','generation'],
 1777: 					 $udom,$uname);
 1778:     my $name=&Apache::lonnet::format_name($names{'firstname'},
 1779: 					  $names{'middlename'},
 1780: 					  $names{'lastname'},
 1781: 					  $names{'generation'},$first);
 1782:     $name=~s/^\s+//;
 1783:     $name=~s/\s+$//;
 1784:     $name=~s/\s+/ /g;
 1785:     if ($name !~ /\S/) { $name=$uname.'@'.$udom; }
 1786:     return $name;
 1787: }
 1788: 
 1789: # -------------------------------------------------------------------- Nickname
 1790: =pod
 1791: 
 1792: =item * nickname($uname,$udom)
 1793: 
 1794: Gets a users name and returns it as a string as
 1795: 
 1796: "&quot;nickname&quot;"
 1797: 
 1798: if the user has a nickname or
 1799: 
 1800: "first middle last generation"
 1801: 
 1802: if the user does not
 1803: 
 1804: =cut
 1805: 
 1806: sub nickname {
 1807:     my ($uname,$udom)=@_;
 1808:     my %names;
 1809:     if ($uname eq $ENV{'user.name'} &&
 1810: 	$udom eq $ENV{'user.domain'}) {
 1811: 	%names=('nickname'   => $ENV{'environment.nickname'}  ,
 1812: 		'firstname'  => $ENV{'environment.firstname'} ,
 1813: 		'middlename' => $ENV{'environment.middlename'},
 1814: 		'lastname'   => $ENV{'environment.lastname'}  ,
 1815: 		'generation' => $ENV{'environment.generation'});
 1816:     } else {
 1817: 	%names=&Apache::lonnet::get('environment',
 1818: 				    ['nickname','firstname','middlename',
 1819: 				     'lastname','generation'],$udom,$uname);
 1820:     }
 1821:     my $name=$names{'nickname'};
 1822:     if ($name) {
 1823:        $name='&quot;'.$name.'&quot;'; 
 1824:     } else {
 1825:        $name=$names{'firstname'}.' '.$names{'middlename'}.' '.
 1826: 	     $names{'lastname'}.' '.$names{'generation'};
 1827:        $name=~s/\s+$//;
 1828:        $name=~s/\s+/ /g;
 1829:     }
 1830:     return $name;
 1831: }
 1832: 
 1833: 
 1834: # ------------------------------------------------------------------ Screenname
 1835: 
 1836: =pod
 1837: 
 1838: =item * screenname($uname,$udom)
 1839: 
 1840: Gets a users screenname and returns it as a string
 1841: 
 1842: =cut
 1843: 
 1844: sub screenname {
 1845:     my ($uname,$udom)=@_;
 1846:     if ($uname eq $ENV{'user.name'} &&
 1847: 	$udom eq $ENV{'user.domain'}) {return $ENV{'environment.screenname'};}
 1848:     my %names=&Apache::lonnet::get('environment',['screenname'],$udom,$uname);
 1849:     return $names{'screenname'};
 1850: }
 1851: 
 1852: 
 1853: # ------------------------------------------------------------- Message Wrapper
 1854: 
 1855: sub messagewrapper {
 1856:     my ($link,$username,$domain)=@_;
 1857:     return 
 1858:         '<a href="/adm/email?compose=individual&'.
 1859:         'recname='.$username.'&recdom='.$domain.'" '.
 1860:         'title="'.&mt('Send message').'">'.$link.'</a>';
 1861: }
 1862: # --------------------------------------------------------------- Notes Wrapper
 1863: 
 1864: sub noteswrapper {
 1865:     my ($link,$un,$do)=@_;
 1866:     return 
 1867: "<a href='/adm/email?recordftf=retrieve&recname=$un&recdom=$do'>$link</a>";
 1868: }
 1869: # ------------------------------------------------------------- Aboutme Wrapper
 1870: 
 1871: sub aboutmewrapper {
 1872:     my ($link,$username,$domain,$target)=@_;
 1873:     return '<a href="/adm/'.$domain.'/'.$username.'/aboutme"'.
 1874: 	($target?' target="$target"':'').' title="'.&mt('View this users personal page').'">'.$link.'</a>';
 1875: }
 1876: 
 1877: # ------------------------------------------------------------ Syllabus Wrapper
 1878: 
 1879: 
 1880: sub syllabuswrapper {
 1881:     my ($linktext,$coursedir,$domain,$fontcolor)=@_;
 1882:     if ($fontcolor) { 
 1883:         $linktext='<font color="'.$fontcolor.'">'.$linktext.'</font>'; 
 1884:     }
 1885:     return qq{<a href="/public/$domain/$coursedir/syllabus">$linktext</a>};
 1886: }
 1887: 
 1888: sub track_student_link {
 1889:     my ($linktext,$sname,$sdom,$target) = @_;
 1890:     my $link ="/adm/trackstudent";
 1891:     my $title = 'View recent activity';
 1892:     if (defined($sname) && $sname !~ /^\s*$/ &&
 1893:         defined($sdom)  && $sdom  !~ /^\s*$/) {
 1894:         $link .= "?selected_student=$sname:$sdom";
 1895:         $title .= ' of this student';
 1896:     }
 1897:     if (defined($target) && $target !~ /^\s*$/) {
 1898:         $target = qq{target="$target"};
 1899:     } else {
 1900:         $target = '';
 1901:     }
 1902:     return qq{<a href="$link" title="$title" $target>$linktext</a>};
 1903: }
 1904: 
 1905: 
 1906: 
 1907: =pod
 1908: 
 1909: =back
 1910: 
 1911: =head1 Access .tab File Data
 1912: 
 1913: =over 4
 1914: 
 1915: =item * languageids() 
 1916: 
 1917: returns list of all language ids
 1918: 
 1919: =cut
 1920: 
 1921: sub languageids {
 1922:     return sort(keys(%language));
 1923: }
 1924: 
 1925: =pod
 1926: 
 1927: =item * languagedescription() 
 1928: 
 1929: returns description of a specified language id
 1930: 
 1931: =cut
 1932: 
 1933: sub languagedescription {
 1934:     my $code=shift;
 1935:     return  ($supported_language{$code}?'* ':'').
 1936:             $language{$code}.
 1937: 	    ($supported_language{$code}?' ('.&mt('interface available').')':'');
 1938: }
 1939: 
 1940: sub plainlanguagedescription {
 1941:     my $code=shift;
 1942:     return $language{$code};
 1943: }
 1944: 
 1945: sub supportedlanguagecode {
 1946:     my $code=shift;
 1947:     return $supported_language{$code};
 1948: }
 1949: 
 1950: =pod
 1951: 
 1952: =item * copyrightids() 
 1953: 
 1954: returns list of all copyrights
 1955: 
 1956: =cut
 1957: 
 1958: sub copyrightids {
 1959:     return sort(keys(%cprtag));
 1960: }
 1961: 
 1962: =pod
 1963: 
 1964: =item * copyrightdescription() 
 1965: 
 1966: returns description of a specified copyright id
 1967: 
 1968: =cut
 1969: 
 1970: sub copyrightdescription {
 1971:     return &mt($cprtag{shift(@_)});
 1972: }
 1973: 
 1974: =pod
 1975: 
 1976: =item * source_copyrightids() 
 1977: 
 1978: returns list of all source copyrights
 1979: 
 1980: =cut
 1981: 
 1982: sub source_copyrightids {
 1983:     return sort(keys(%scprtag));
 1984: }
 1985: 
 1986: =pod
 1987: 
 1988: =item * source_copyrightdescription() 
 1989: 
 1990: returns description of a specified source copyright id
 1991: 
 1992: =cut
 1993: 
 1994: sub source_copyrightdescription {
 1995:     return &mt($scprtag{shift(@_)});
 1996: }
 1997: 
 1998: =pod
 1999: 
 2000: =item * filecategories() 
 2001: 
 2002: returns list of all file categories
 2003: 
 2004: =cut
 2005: 
 2006: sub filecategories {
 2007:     return sort(keys(%category_extensions));
 2008: }
 2009: 
 2010: =pod
 2011: 
 2012: =item * filecategorytypes() 
 2013: 
 2014: returns list of file types belonging to a given file
 2015: category
 2016: 
 2017: =cut
 2018: 
 2019: sub filecategorytypes {
 2020:     return @{$category_extensions{lc($_[0])}};
 2021: }
 2022: 
 2023: =pod
 2024: 
 2025: =item * fileembstyle() 
 2026: 
 2027: returns embedding style for a specified file type
 2028: 
 2029: =cut
 2030: 
 2031: sub fileembstyle {
 2032:     return $fe{lc(shift(@_))};
 2033: }
 2034: 
 2035: 
 2036: sub filecategoryselect {
 2037:     my ($name,$value)=@_;
 2038:     return &select_form($value,$name,
 2039: 			'' => &mt('Any category'),
 2040: 			map { $_,$_ } sort(keys(%category_extensions)));
 2041: }
 2042: 
 2043: =pod
 2044: 
 2045: =item * filedescription() 
 2046: 
 2047: returns description for a specified file type
 2048: 
 2049: =cut
 2050: 
 2051: sub filedescription {
 2052:     my $file_description = $fd{lc(shift())};
 2053:     $file_description =~ s:([\[\]]):~$1:g;
 2054:     return &mt($file_description);
 2055: }
 2056: 
 2057: =pod
 2058: 
 2059: =item * filedescriptionex() 
 2060: 
 2061: returns description for a specified file type with
 2062: extra formatting
 2063: 
 2064: =cut
 2065: 
 2066: sub filedescriptionex {
 2067:     my $ex=shift;
 2068:     my $file_description = $fd{lc($ex)};
 2069:     $file_description =~ s:([\[\]]):~$1:g;
 2070:     return '.'.$ex.' '.&mt($file_description);
 2071: }
 2072: 
 2073: # End of .tab access
 2074: =pod
 2075: 
 2076: =back
 2077: 
 2078: =cut
 2079: 
 2080: # ------------------------------------------------------------------ File Types
 2081: sub fileextensions {
 2082:     return sort(keys(%fe));
 2083: }
 2084: 
 2085: # ----------------------------------------------------------- Display Languages
 2086: # returns a hash with all desired display languages
 2087: #
 2088: 
 2089: sub display_languages {
 2090:     my %languages=();
 2091:     foreach (&preferred_languages()) {
 2092: 	$languages{$_}=1;
 2093:     }
 2094:     &get_unprocessed_cgi($ENV{'QUERY_STRING'},['displaylanguage']);
 2095:     if ($ENV{'form.displaylanguage'}) {
 2096: 	foreach (split(/\s*(\,|\;|\:)\s*/,$ENV{'form.displaylanguage'})) {
 2097: 	    $languages{$_}=1;
 2098:         }
 2099:     }
 2100:     return %languages;
 2101: }
 2102: 
 2103: sub preferred_languages {
 2104:     my @languages=();
 2105:     if ($ENV{'course.'.$ENV{'request.course.id'}.'.languages'}) {
 2106: 	@languages=(@languages,split(/\s*(\,|\;|\:)\s*/,
 2107: 	         $ENV{'course.'.$ENV{'request.course.id'}.'.languages'}));
 2108:     }
 2109:     if ($ENV{'environment.languages'}) {
 2110: 	@languages=split(/\s*(\,|\;|\:)\s*/,$ENV{'environment.languages'});
 2111:     }
 2112:     my $browser=(split(/\;/,$ENV{'HTTP_ACCEPT_LANGUAGE'}))[0];
 2113:     if ($browser) {
 2114: 	@languages=(@languages,split(/\s*(\,|\;|\:)\s*/,$browser));
 2115:     }
 2116:     if ($Apache::lonnet::domain_lang_def{$ENV{'user.domain'}}) {
 2117: 	@languages=(@languages,
 2118: 		$Apache::lonnet::domain_lang_def{$ENV{'user.domain'}});
 2119:     }
 2120:     if ($Apache::lonnet::domain_lang_def{$ENV{'request.role.domain'}}) {
 2121: 	@languages=(@languages,
 2122: 		$Apache::lonnet::domain_lang_def{$ENV{'request.role.domain'}});
 2123:     }
 2124:     if ($Apache::lonnet::domain_lang_def{
 2125: 	                          $Apache::lonnet::perlvar{'lonDefDomain'}}) {
 2126: 	@languages=(@languages,
 2127: 		$Apache::lonnet::domain_lang_def{
 2128:                                   $Apache::lonnet::perlvar{'lonDefDomain'}});
 2129:     }
 2130: # turn "en-ca" into "en-ca,en"
 2131:     my @genlanguages;
 2132:     foreach (@languages) {
 2133: 	unless ($_=~/\w/) { next; }
 2134: 	push (@genlanguages,$_);
 2135: 	if ($_=~/(\-|\_)/) {
 2136: 	    push (@genlanguages,(split(/(\-|\_)/,$_))[0]);
 2137: 	}
 2138:     }
 2139:     return @genlanguages;
 2140: }
 2141: 
 2142: ###############################################################
 2143: ##               Student Answer Attempts                     ##
 2144: ###############################################################
 2145: 
 2146: =pod
 2147: 
 2148: =head1 Alternate Problem Views
 2149: 
 2150: =over 4
 2151: 
 2152: =item * get_previous_attempt($symb, $username, $domain, $course,
 2153:     $getattempt, $regexp, $gradesub)
 2154: 
 2155: Return string with previous attempt on problem. Arguments:
 2156: 
 2157: =over 4
 2158: 
 2159: =item * $symb: Problem, including path
 2160: 
 2161: =item * $username: username of the desired student
 2162: 
 2163: =item * $domain: domain of the desired student
 2164: 
 2165: =item * $course: Course ID
 2166: 
 2167: =item * $getattempt: Leave blank for all attempts, otherwise put
 2168:     something
 2169: 
 2170: =item * $regexp: if string matches this regexp, the string will be
 2171:     sent to $gradesub
 2172: 
 2173: =item * $gradesub: routine that processes the string if it matches $regexp
 2174: 
 2175: =back
 2176: 
 2177: The output string is a table containing all desired attempts, if any.
 2178: 
 2179: =cut
 2180: 
 2181: sub get_previous_attempt {
 2182:   my ($symb,$username,$domain,$course,$getattempt,$regexp,$gradesub)=@_;
 2183:   my $prevattempts='';
 2184:   no strict 'refs';
 2185:   if ($symb) {
 2186:     my (%returnhash)=
 2187:       &Apache::lonnet::restore($symb,$course,$domain,$username);
 2188:     if ($returnhash{'version'}) {
 2189:       my %lasthash=();
 2190:       my $version;
 2191:       for ($version=1;$version<=$returnhash{'version'};$version++) {
 2192:         foreach (sort(split(/\:/,$returnhash{$version.':keys'}))) {
 2193: 	  $lasthash{$_}=$returnhash{$version.':'.$_};
 2194:         }
 2195:       }
 2196:       $prevattempts='<table border="0" width="100%"><tr><td bgcolor="#777777">';
 2197:       $prevattempts.='<table border="0" width="100%"><tr bgcolor="#e6ffff"><td>History</td>';
 2198:       foreach (sort(keys %lasthash)) {
 2199: 	my ($ign,@parts) = split(/\./,$_);
 2200: 	if ($#parts > 0) {
 2201: 	  my $data=$parts[-1];
 2202: 	  pop(@parts);
 2203: 	  $prevattempts.='<td>Part '.join('.',@parts).'<br />'.$data.'&nbsp;</td>';
 2204: 	} else {
 2205: 	  if ($#parts == 0) {
 2206: 	    $prevattempts.='<th>'.$parts[0].'</th>';
 2207: 	  } else {
 2208: 	    $prevattempts.='<th>'.$ign.'</th>';
 2209: 	  }
 2210: 	}
 2211:       }
 2212:       if ($getattempt eq '') {
 2213: 	for ($version=1;$version<=$returnhash{'version'};$version++) {
 2214: 	  $prevattempts.='</tr><tr bgcolor="#ffffe6"><td>Transaction '.$version.'</td>';
 2215: 	    foreach (sort(keys %lasthash)) {
 2216: 	       my $value;
 2217: 	       if ($_ =~ /timestamp/) {
 2218: 		  $value=scalar(localtime($returnhash{$version.':'.$_}));
 2219: 	       } else {
 2220: 		  $value=$returnhash{$version.':'.$_};
 2221: 	       }
 2222: 	       $prevattempts.='<td>'.&Apache::lonnet::unescape($value).'&nbsp;</td>';   
 2223: 	    }
 2224: 	 }
 2225:       }
 2226:       $prevattempts.='</tr><tr bgcolor="#ffffe6"><td>Current</td>';
 2227:       foreach (sort(keys %lasthash)) {
 2228: 	my $value;
 2229: 	if ($_ =~ /timestamp/) {
 2230: 	  $value=scalar(localtime($lasthash{$_}));
 2231: 	} else {
 2232: 	  $value=$lasthash{$_};
 2233: 	}
 2234: 	$value=&Apache::lonnet::unescape($value);
 2235: 	if ($_ =~/$regexp$/ && (defined &$gradesub)) {$value = &$gradesub($value)}
 2236: 	$prevattempts.='<td>'.$value.'&nbsp;</td>';
 2237:       }
 2238:       $prevattempts.='</tr></table></td></tr></table>';
 2239:     } else {
 2240:       $prevattempts='Nothing submitted - no attempts.';
 2241:     }
 2242:   } else {
 2243:     $prevattempts='No data.';
 2244:   }
 2245: }
 2246: 
 2247: sub relative_to_absolute {
 2248:     my ($url,$output)=@_;
 2249:     my $parser=HTML::TokeParser->new(\$output);
 2250:     my $token;
 2251:     my $thisdir=$url;
 2252:     my @rlinks=();
 2253:     while ($token=$parser->get_token) {
 2254: 	if ($token->[0] eq 'S') {
 2255: 	    if ($token->[1] eq 'a') {
 2256: 		if ($token->[2]->{'href'}) {
 2257: 		    $rlinks[$#rlinks+1]=$token->[2]->{'href'};
 2258: 		}
 2259: 	    } elsif ($token->[1] eq 'img' || $token->[1] eq 'embed' ) {
 2260: 		$rlinks[$#rlinks+1]=$token->[2]->{'src'};
 2261: 	    } elsif ($token->[1] eq 'base') {
 2262: 		$thisdir=$token->[2]->{'href'};
 2263: 	    }
 2264: 	}
 2265:     }
 2266:     $thisdir=~s-/[^/]*$--;
 2267:     foreach (@rlinks) {
 2268: 	unless (($_=~/^http:\/\//i) ||
 2269: 		($_=~/^\//) ||
 2270: 		($_=~/^javascript:/i) ||
 2271: 		($_=~/^mailto:/i) ||
 2272: 		($_=~/^\#/)) {
 2273: 	    my $newlocation=&Apache::lonnet::hreflocation($thisdir,$_);
 2274: 	    $output=~s/(\"|\'|\=\s*)$_(\"|\'|\s|\>)/$1$newlocation$2/;
 2275: 	}
 2276:     }
 2277: # -------------------------------------------------- Deal with Applet codebases
 2278:     $output=~s/(\<applet[^\>]+)(codebase\=[^\S\>]+)*([^\>]*)\>/$1.($2?$2:' codebase="'.$thisdir.'"').$3.'>'/gei;
 2279:     return $output;
 2280: }
 2281: 
 2282: =pod
 2283: 
 2284: =item * get_student_view
 2285: 
 2286: show a snapshot of what student was looking at
 2287: 
 2288: =cut
 2289: 
 2290: sub get_student_view {
 2291:   my ($symb,$username,$domain,$courseid,$target,$moreenv) = @_;
 2292:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
 2293:   my (%form);
 2294:   my @elements=('symb','courseid','domain','username');
 2295:   foreach my $element (@elements) {
 2296:       $form{'grade_'.$element}=eval '$'.$element #'
 2297:   }
 2298:   if (defined($moreenv)) {
 2299:       %form=(%form,%{$moreenv});
 2300:   }
 2301:   if (defined($target)) { $form{'grade_target'} = $target; }
 2302:   $feedurl=&Apache::lonnet::clutter($feedurl);
 2303:   my $userview=&Apache::lonnet::ssi_body($feedurl,%form);
 2304:   $userview=~s/\<body[^\>]*\>//gi;
 2305:   $userview=~s/\<\/body\>//gi;
 2306:   $userview=~s/\<html\>//gi;
 2307:   $userview=~s/\<\/html\>//gi;
 2308:   $userview=~s/\<head\>//gi;
 2309:   $userview=~s/\<\/head\>//gi;
 2310:   $userview=~s/action\s*\=/would_be_action\=/gi;
 2311:   $userview=&relative_to_absolute($feedurl,$userview);
 2312:   return $userview;
 2313: }
 2314: 
 2315: =pod
 2316: 
 2317: =item * get_student_answers() 
 2318: 
 2319: show a snapshot of how student was answering problem
 2320: 
 2321: =cut
 2322: 
 2323: sub get_student_answers {
 2324:   my ($symb,$username,$domain,$courseid,%form) = @_;
 2325:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
 2326:   my (%moreenv);
 2327:   my @elements=('symb','courseid','domain','username');
 2328:   foreach my $element (@elements) {
 2329:     $moreenv{'grade_'.$element}=eval '$'.$element #'
 2330:   }
 2331:   $moreenv{'grade_target'}='answer';
 2332:   %moreenv=(%form,%moreenv);
 2333:   my $userview=&Apache::lonnet::ssi('/res/'.$feedurl,%moreenv);
 2334:   return $userview;
 2335: }
 2336: 
 2337: =pod
 2338: 
 2339: =item * &submlink()
 2340: 
 2341: Inputs: $text $uname $udom $symb $target
 2342: 
 2343: Returns: A link to grades.pm such as to see the SUBM view of a student
 2344: 
 2345: =cut
 2346: 
 2347: ###############################################
 2348: sub submlink {
 2349:     my ($text,$uname,$udom,$symb,$target)=@_;
 2350:     if (!($uname && $udom)) {
 2351: 	(my $cursymb, my $courseid,$udom,$uname)=
 2352: 	    &Apache::lonxml::whichuser($symb);
 2353: 	if (!$symb) { $symb=$cursymb; }
 2354:     }
 2355:     if (!$symb) { $symb=&symbread(); }
 2356:     $symb=&Apache::lonnet::escape($symb);
 2357:     if ($target) { $target="target=\"$target\""; }
 2358:     return '<a href="/adm/grades?&command=submission&'.
 2359: 	'symb='.$symb.'&student='.$uname.
 2360: 	'&userdom='.$udom.'" '.$target.'>'.$text.'</a>';
 2361: }
 2362: ##############################################
 2363: 
 2364: =pod
 2365: 
 2366: =item * &pgrdlink()
 2367: 
 2368: Inputs: $text $uname $udom $symb $target
 2369: 
 2370: Returns: A link to grades.pm such as to see the PGRD view of a student
 2371: 
 2372: =cut
 2373: 
 2374: ###############################################
 2375: sub pgrdlink {
 2376:     my $link=&submlink(@_);
 2377:     $link=~s/(&command=submission)/$1&showgrading=yes/;
 2378:     return $link;
 2379: }
 2380: ##############################################
 2381: 
 2382: =pod
 2383: 
 2384: =item * &pprmlink()
 2385: 
 2386: Inputs: $text $uname $udom $symb $target
 2387: 
 2388: Returns: A link to parmset.pm such as to see the PPRM view of a
 2389: student andn resource
 2390: 
 2391: =cut
 2392: 
 2393: ###############################################
 2394: sub pprmlink {
 2395:     my ($text,$uname,$udom,$symb,$target)=@_;
 2396:     if (!($uname && $udom)) {
 2397: 	(my $cursymb, my $courseid,$udom,$uname)=
 2398: 	    &Apache::lonxml::whichuser($symb);
 2399: 	if (!$symb) { $symb=$cursymb; }
 2400:     }
 2401:     if (!$symb) { $symb=&symbread(); }
 2402:     $symb=&Apache::lonnet::escape($symb);
 2403:     if ($target) { $target="target=\"$target\""; }
 2404:     return '<a href="/adm/parmset?&command=set&'.
 2405: 	'symb='.$symb.'&uname='.$uname.
 2406: 	'&udom='.$udom.'" '.$target.'>'.$text.'</a>';
 2407: }
 2408: ##############################################
 2409: 
 2410: =pod
 2411: 
 2412: =back
 2413: 
 2414: =cut
 2415: 
 2416: ###############################################
 2417: 
 2418: 
 2419: sub timehash {
 2420:     my @ltime=localtime(shift);
 2421:     return ( 'seconds' => $ltime[0],
 2422:              'minutes' => $ltime[1],
 2423:              'hours'   => $ltime[2],
 2424:              'day'     => $ltime[3],
 2425:              'month'   => $ltime[4]+1,
 2426:              'year'    => $ltime[5]+1900,
 2427:              'weekday' => $ltime[6],
 2428:              'dayyear' => $ltime[7]+1,
 2429:              'dlsav'   => $ltime[8] );
 2430: }
 2431: 
 2432: sub maketime {
 2433:     my %th=@_;
 2434:     return POSIX::mktime(
 2435:         ($th{'seconds'},$th{'minutes'},$th{'hours'},
 2436:          $th{'day'},$th{'month'}-1,$th{'year'}-1900,0,0,-1));
 2437: }
 2438: 
 2439: #########################################
 2440: 
 2441: sub findallcourses {
 2442:     my %courses=();
 2443:     my $now=time;
 2444:     foreach (keys %ENV) {
 2445: 	if ($_=~/^user\.role\.\w+\.\/(\w+)\/(\w+)/) {
 2446: 	    my ($starttime,$endtime)=$ENV{$_};
 2447:             my $active=1;
 2448:             if ($starttime) {
 2449: 		if ($now<$starttime) { $active=0; }
 2450:             }
 2451:             if ($endtime) {
 2452:                 if ($now>$endtime) { $active=0; }
 2453:             }
 2454:             if ($active) { $courses{$1.'_'.$2}=1; }
 2455:         }
 2456:     }
 2457:     return keys %courses;
 2458: }
 2459: 
 2460: ###############################################
 2461: ###############################################
 2462: 
 2463: =pod
 2464: 
 2465: =head1 Domain Template Functions
 2466: 
 2467: =over 4
 2468: 
 2469: =item * &determinedomain()
 2470: 
 2471: Inputs: $domain (usually will be undef)
 2472: 
 2473: Returns: Determines which domain should be used for designs
 2474: 
 2475: =cut
 2476: 
 2477: ###############################################
 2478: sub determinedomain {
 2479:     my $domain=shift;
 2480:    if (! $domain) {
 2481:         # Determine domain if we have not been given one
 2482:         $domain = $Apache::lonnet::perlvar{'lonDefDomain'};
 2483:         if ($ENV{'user.domain'}) { $domain=$ENV{'user.domain'}; }
 2484:         if ($ENV{'request.role.domain'}) { 
 2485:             $domain=$ENV{'request.role.domain'}; 
 2486:         }
 2487:     }
 2488:     return $domain;
 2489: }
 2490: ###############################################
 2491: =pod
 2492: 
 2493: =item * &domainlogo()
 2494: 
 2495: Inputs: $domain (usually will be undef)
 2496: 
 2497: Returns: A link to a domain logo, if the domain logo exists.
 2498: If the domain logo does not exist, a description of the domain.
 2499: 
 2500: =cut
 2501: 
 2502: ###############################################
 2503: sub domainlogo {
 2504:     my $domain = &determinedomain(shift);    
 2505:      # See if there is a logo
 2506:     if (-e '/home/httpd/html/adm/lonDomLogos/'.$domain.'.gif') {
 2507: 	my $logo=&lonhttpdurl("/adm/lonDomLogos/$domain.gif");
 2508:         return '<img src="'.$logo.'" alt="'.$domain.'" />';
 2509:     } elsif(exists($Apache::lonnet::domaindescription{$domain})) {
 2510:         return $Apache::lonnet::domaindescription{$domain};
 2511:     } else {
 2512:         return '';
 2513:     }
 2514: }
 2515: ##############################################
 2516: 
 2517: =pod
 2518: 
 2519: =item * &designparm()
 2520: 
 2521: Inputs: $which parameter; $domain (usually will be undef)
 2522: 
 2523: Returns: value of designparamter $which
 2524: 
 2525: =cut
 2526: 
 2527: ##############################################
 2528: sub designparm {
 2529:     my ($which,$domain)=@_;
 2530:     if ($ENV{'browser.blackwhite'} eq 'on') {
 2531: 	if ($which=~/\.(font|alink|vlink|link)$/) {
 2532: 	    return '#000000';
 2533: 	}
 2534: 	if ($which=~/\.(pgbg|sidebg)$/) {
 2535: 	    return '#FFFFFF';
 2536: 	}
 2537: 	if ($which=~/\.tabbg$/) {
 2538: 	    return '#CCCCCC';
 2539: 	}
 2540:     }
 2541:     if ($ENV{'environment.color.'.$which}) {
 2542: 	return $ENV{'environment.color.'.$which};
 2543:     }
 2544:     $domain=&determinedomain($domain);
 2545:     if ($designhash{$domain.'.'.$which}) {
 2546: 	return $designhash{$domain.'.'.$which};
 2547:     } else {
 2548:         return $designhash{'default.'.$which};
 2549:     }
 2550: }
 2551: 
 2552: ###############################################
 2553: ###############################################
 2554: 
 2555: =pod
 2556: 
 2557: =back
 2558: 
 2559: =head1 HTTP Helpers
 2560: 
 2561: =over 4
 2562: 
 2563: =item * &bodytag()
 2564: 
 2565: Returns a uniform header for LON-CAPA web pages.
 2566: 
 2567: Inputs: 
 2568: 
 2569: =over 4
 2570: 
 2571: =item * $title, A title to be displayed on the page.
 2572: 
 2573: =item * $function, the current role (can be undef).
 2574: 
 2575: =item * $addentries, extra parameters for the <body> tag.
 2576: 
 2577: =item * $bodyonly, if defined, only return the <body> tag.
 2578: 
 2579: =item * $domain, if defined, force a given domain.
 2580: 
 2581: =item * $forcereg, if page should register as content page (relevant for 
 2582:             text interface only)
 2583: 
 2584: =back
 2585: 
 2586: Returns: A uniform header for LON-CAPA web pages.  
 2587: If $bodyonly is nonzero, a string containing a <body> tag will be returned.
 2588: If $bodyonly is undef or zero, an html string containing a <body> tag and 
 2589: other decorations will be returned.
 2590: 
 2591: =cut
 2592: 
 2593: sub bodytag {
 2594:     my ($title,$function,$addentries,$bodyonly,$domain,$forcereg,$customtitle)=@_;
 2595:     $title=&mt($title);
 2596:     $function = &get_users_function() if (!$function);
 2597:     my $img=&designparm($function.'.img',$domain);
 2598:     my $pgbg=&designparm($function.'.pgbg',$domain);
 2599:     my $tabbg=&designparm($function.'.tabbg',$domain);
 2600:     my $font=&designparm($function.'.font',$domain);
 2601:     my $link=&designparm($function.'.link',$domain);
 2602:     my $alink=&designparm($function.'.alink',$domain);
 2603:     my $vlink=&designparm($function.'.vlink',$domain);
 2604:     my $sidebg=&designparm($function.'.sidebg',$domain);
 2605: # Accessibility font enhance
 2606:     unless ($addentries) { $addentries=''; }
 2607:     my $addstyle='';
 2608:     if ($ENV{'browser.fontenhance'} eq 'on') {
 2609: 	$addstyle=' font-size: x-large;';
 2610:     }
 2611:  # role and realm
 2612:     my ($role,$realm)
 2613:        =&Apache::lonnet::plaintext((split(/\./,$ENV{'request.role'}))[0]);
 2614: # realm
 2615:     if ($ENV{'request.course.id'}) {
 2616: 	$realm=
 2617:          $ENV{'course.'.$ENV{'request.course.id'}.'.description'};
 2618:     }
 2619:     unless ($realm) { $realm='&nbsp;'; }
 2620: # Set messages
 2621:     my $messages=&domainlogo($domain);
 2622: # Port for miniserver
 2623:     my $lonhttpdPort=$Apache::lonnet::perlvar{'lonhttpdPort'};
 2624:     if (!defined($lonhttpdPort)) { $lonhttpdPort='8080'; }
 2625: # construct main body tag
 2626:     my $bodytag = <<END;
 2627: <style type="text/css">
 2628: h1, h2, h3, th { font-family: Arial, Helvetica, sans-serif }
 2629: a:focus { color: red; background: yellow } 
 2630: </style>
 2631: <body bgcolor="$pgbg" text="$font" alink="$alink" vlink="$vlink" link="$link"
 2632: style="margin-top: 0px;$addstyle" $addentries>
 2633: END
 2634:     my $upperleft='<img src="http://'.$ENV{'HTTP_HOST'}.':'.
 2635:                    $lonhttpdPort.$img.'" alt="'.$function.'" />';
 2636:     if ($bodyonly) {
 2637:         return $bodytag;
 2638:     } elsif ($ENV{'browser.interface'} eq 'textual') {
 2639: # Accessibility
 2640:           
 2641:         return $bodytag.&Apache::lonmenu::menubuttons($forcereg,'web',
 2642:                                                       $forcereg).
 2643:                '<h1>LON-CAPA: '.$title.'</h1>';
 2644:     } elsif ($ENV{'environment.remote'} eq 'off') {
 2645: # No Remote
 2646: 	my $roleinfo=(<<ENDROLE);
 2647: <td bgcolor="$tabbg" align="right">
 2648: <font size="2" face="Arial, Helvetica, sans-serif">
 2649:     $ENV{'environment.firstname'}
 2650:     $ENV{'environment.middlename'}
 2651:     $ENV{'environment.lastname'}
 2652:     $ENV{'environment.generation'}
 2653:     </font>&nbsp;
 2654: <br />
 2655: <font size="2" face="Arial, Helvetica, sans-serif">$role</font>&nbsp;
 2656: <br />
 2657: <font size="2" face="Arial, Helvetica, sans-serif">$realm</font>&nbsp;
 2658: </td>
 2659: ENDROLE
 2660:         my $titleinfo = '<font face="Arial, Helvetica, sans-serif" size="+3" color="'.
 2661: 		$font.'"><b>'.$title.'</b></font>';
 2662:         if ($customtitle) {
 2663:             $titleinfo = $customtitle;
 2664:         }
 2665: 
 2666: 	if ($ENV{'request.state'} eq 'construct') {
 2667: 	    my ($uname,$thisdisfn)=
 2668: 		($ENV{'request.filename'} =~ m|^/home/([^/]+)/public_html/(.*)|);
 2669: 	    my $formaction='/priv/'.$uname.'/'.$thisdisfn;
 2670: 	    $formaction=~s/\/+/\//g;
 2671:             unless ($customtitle) {  #this is for resources; directories have customtitle, and crumbs and select recent are created in lonpubdir.pm  
 2672:                 my $parentpath = '';
 2673:                 my $lastitem = '';
 2674:                 if ($thisdisfn =~ m-(.+/)([^/]*)$-) {
 2675:                     $parentpath = $1;
 2676:                     $lastitem = $2;
 2677:                 } else {
 2678:                     $lastitem = $thisdisfn;
 2679:                 }
 2680: 	        $titleinfo = &Apache::loncommon::help_open_menu('','','','',3,'Authoring').
 2681:                       '<font face="Arial, Helvetica, sans-serif"><b>Construction Space</b>:</font>&nbsp;'. 
 2682:                       '<form name="dirs" method="post" action="'.$formaction
 2683: 		    .'" target="_top"><tt><b>'
 2684: 		    .&Apache::lonhtmlcommon::crumbs($uname.'/'.$parentpath,'_top','/priv','','+1',1)."<font size=\"+1\">$lastitem</font></b></tt><br />"
 2685: 		    .&Apache::lonhtmlcommon::select_recent('construct','recent','this.form.action=this.form.recent.value;this.form.submit()')
 2686: 		    .'</form>'
 2687: 		    .&Apache::lonmenu::constspaceform();
 2688: 
 2689:             }
 2690: 	    $forcereg=1;
 2691:         }
 2692:         my $titletable = '<table bgcolor="'.$pgbg.'" width="100%" border="0" '.
 2693:                          'cellspacing="3" cellpadding="3">'.
 2694:                          '<tr><td rowspan="3" bgcolor="'.$tabbg.'">'.
 2695:                          $titleinfo.'</td>'.$roleinfo.'</tr></table>';
 2696:         if ($ENV{'request.state'} eq 'construct') {
 2697:             $bodytag .= &Apache::lonmenu::menubuttons($forcereg,'web',$forcereg,$titletable);
 2698: 	} else {
 2699:             $bodytag .= &Apache::lonmenu::menubuttons($forcereg,'web',$forcereg).
 2700:                         $titletable;
 2701:         }
 2702:         return $bodytag;
 2703:     }
 2704: 
 2705: #
 2706: # Top frame rendering, Remote is up
 2707: #
 2708:     my $titleinfo = '&nbsp;<font size="5" face="Arial, Helvetica, sans-serif"><b>'.$title.'</b></font>';
 2709:     if ($customtitle) {
 2710:         $titleinfo = $customtitle;
 2711:     }
 2712:     #
 2713:     # Extra info if you are the DC
 2714:     my $dc_info = '';
 2715:     if ($ENV{'user.adv'} && exists($ENV{'user.role.dc./'.
 2716:                         $ENV{'course.'.$ENV{'request.course.id'}.
 2717:                                  '.domain'}.'/'})) {
 2718:         my $cid = $ENV{'request.course.id'};
 2719:         $dc_info.= $cid.' '.$ENV{'course.'.$cid.'.internal.coursecode'};
 2720:         $dc_info = '('.$dc_info.')';
 2721:     }
 2722:     #
 2723:     return(<<ENDBODY);
 2724: $bodytag
 2725: <table width="100%" cellspacing="0" border="0" cellpadding="0">
 2726: <tr><td bgcolor="$sidebg">
 2727: $upperleft</td>
 2728: <td bgcolor="$sidebg" align="right">$messages&nbsp;</td>
 2729: </tr>
 2730: <tr>
 2731: <td rowspan="3" bgcolor="$tabbg">
 2732: $titleinfo $dc_info
 2733: <td bgcolor="$tabbg" align="right">
 2734: <font size="2" face="Arial, Helvetica, sans-serif">
 2735:     $ENV{'environment.firstname'}
 2736:     $ENV{'environment.middlename'}
 2737:     $ENV{'environment.lastname'}
 2738:     $ENV{'environment.generation'}
 2739:     </font>&nbsp;
 2740: </td>
 2741: </tr>
 2742: <tr><td bgcolor="$tabbg" align="right">
 2743: <font size="2" face="Arial, Helvetica, sans-serif">$role</font>&nbsp;
 2744: </td></tr>
 2745: <tr>
 2746: <td bgcolor="$tabbg" align="right"><font size="2" face="Arial, Helvetica, sans-serif">$realm</font>&nbsp;</td></tr>
 2747: </table><br />
 2748: ENDBODY
 2749: }
 2750: 
 2751: ###############################################
 2752: 
 2753: =pod
 2754: 
 2755: =item get_users_function
 2756: 
 2757: Used by &bodytag to determine the current users primary role.
 2758: Returns either 'student','coordinator','admin', or 'author'.
 2759: 
 2760: =cut
 2761: 
 2762: ###############################################
 2763: sub get_users_function {
 2764:     my $function = 'student';
 2765:     if ($ENV{'request.role'}=~/^(cc|in|ta|ep)/) {
 2766:         $function='coordinator';
 2767:     }
 2768:     if ($ENV{'request.role'}=~/^(su|dc|ad|li)/) {
 2769:         $function='admin';
 2770:     }
 2771:     if (($ENV{'request.role'}=~/^(au|ca)/) ||
 2772:         ($ENV{'REQUEST_URI'}=~/^(\/priv|\~)/)) {
 2773:         $function='author';
 2774:     }
 2775:     return $function;
 2776: }
 2777: 
 2778: ###############################################
 2779: 
 2780: =pod
 2781: 
 2782: =item get_sections
 2783: 
 2784: Determines all the sections for a course including
 2785: sections with students and sections containing other roles.
 2786: Incoming parameters: domain, course number, reference to 
 2787: section hash (keys to be section/group IDs), reference to 
 2788: array containing roles for which sections should be gathered
 2789: (optional). If the fourth argument is undefined, sections
 2790: are gathered for any role.
 2791:  
 2792: Returns number of sections.
 2793: 
 2794: =cut
 2795: 
 2796: ###############################################
 2797: sub get_sections {
 2798:     my ($cdom,$cnum,$sectioncount,$possible_roles) = @_;
 2799:     if (!($cdom && $cnum)) { return 0; }
 2800:     my $cid = $cdom.'_'.$cnum;
 2801:     my $numsections = 0;
 2802: 
 2803:     if (!defined($possible_roles) || (grep/^st$/,@$possible_roles)) {
 2804: 	my ($classlist) = &Apache::loncoursedata::get_classlist($cid,$cdom,$cnum);
 2805: 	my $sec_index = &Apache::loncoursedata::CL_SECTION();
 2806: 	my $status_index = &Apache::loncoursedata::CL_STATUS();
 2807: 	while (my ($student,$data) = each %$classlist) {
 2808: 	    my ($section,$status) = ($data->[$sec_index],
 2809: 				     $data->[$status_index]);
 2810: 	    unless ($section eq '-1' || $section =~ /^\s*$/) {
 2811: 		if (!defined($$sectioncount{$section})) { $numsections++; }
 2812: 		$$sectioncount{$section}++;
 2813: 	    }
 2814: 	}
 2815:     }
 2816:     my %courseroles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
 2817:     foreach my $user (sort(keys(%courseroles))) {
 2818: 	if ($user !~ /^(\w{2})/) { next; }
 2819: 	my ($role) = ($user =~ /^(\w{2})/);
 2820: 	if ($possible_roles && !(grep(/^$role$/,@$possible_roles))) { next; }
 2821: 	my $section;
 2822: 	if ($role eq 'cr' &&
 2823: 	    $user =~ m-^$role/[^/]*/[^/]*/[^/]*:[^:]*:[^:]*:(\w+)-) {
 2824: 	    $section=$1;
 2825: 	}
 2826: 	if ($user =~ /^$role:[^:]*:[^:]*:(\w+)/) { $section=$1; }
 2827: 	if (!defined($section) || $section eq '-1') { next; }
 2828: 	if (!defined($$sectioncount{$section})) { $numsections++; } 
 2829: 	$$sectioncount{$section}++;
 2830:     }
 2831:     return $numsections;
 2832: }
 2833: 
 2834: 
 2835: sub get_posted_cgi {
 2836:     my $r=shift;
 2837: 
 2838:     my $buffer;
 2839:     
 2840:     $r->read($buffer,$r->header_in('Content-length'),0);
 2841:     unless ($buffer=~/^(\-+\w+)\s+Content\-Disposition\:\s*form\-data/si) {
 2842: 	my @pairs=split(/&/,$buffer);
 2843: 	my $pair;
 2844: 	foreach $pair (@pairs) {
 2845: 	    my ($name,$value) = split(/=/,$pair);
 2846: 	    $value =~ tr/+/ /;
 2847: 	    $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
 2848: 	    $name  =~ tr/+/ /;
 2849: 	    $name  =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
 2850: 	    &add_to_env("form.$name",$value);
 2851: 	}
 2852:     } else {
 2853: 	my $contentsep=$1;
 2854: 	my @lines = split (/\n/,$buffer);
 2855: 	my $name='';
 2856: 	my $value='';
 2857: 	my $fname='';
 2858: 	my $fmime='';
 2859: 	my $i;
 2860: 	for ($i=0;$i<=$#lines;$i++) {
 2861: 	    if ($lines[$i]=~/^$contentsep/) {
 2862: 		if ($name) {
 2863: 		    chomp($value);
 2864: 		    if ($fname) {
 2865: 			$ENV{"form.$name.filename"}=$fname;
 2866: 			$ENV{"form.$name.mimetype"}=$fmime;
 2867: 		    } else {
 2868: 			$value=~s/\s+$//s;
 2869: 		    }
 2870: 		    &add_to_env("form.$name",$value);
 2871: 		}
 2872: 		if ($i<$#lines) {
 2873: 		    $i++;
 2874: 		    $lines[$i]=~
 2875: 		/Content\-Disposition\:\s*form\-data\;\s*name\=\"([^\"]+)\"/i;
 2876: 		    $name=$1;
 2877: 		    $value='';
 2878: 		    if ($lines[$i]=~/filename\=\"([^\"]+)\"/i) {
 2879: 			$fname=$1;
 2880: 			if 
 2881:                             ($lines[$i+1]=~/Content\-Type\:\s*([\w\-\/]+)/i) {
 2882: 				$fmime=$1;
 2883: 				$i++;
 2884: 			    } else {
 2885: 				$fmime='';
 2886: 			    }
 2887: 		    } else {
 2888: 			$fname='';
 2889: 			$fmime='';
 2890: 		    }
 2891: 		    $i++;
 2892: 		}
 2893: 	    } else {
 2894: 		$value.=$lines[$i]."\n";
 2895: 	    }
 2896: 	}
 2897:     }
 2898:     $ENV{'request.method'}=$ENV{'REQUEST_METHOD'};
 2899:     $r->method_number(M_GET);
 2900:     $r->method('GET');
 2901:     $r->headers_in->unset('Content-length');
 2902: }
 2903: 
 2904: =pod
 2905: 
 2906: =item * get_unprocessed_cgi($query,$possible_names)
 2907: 
 2908: Modify the %ENV hash to contain unprocessed CGI form parameters held in
 2909: $query.  The parameters listed in $possible_names (an array reference),
 2910: will be set in $ENV{'form.name'} if they do not already exist.
 2911: 
 2912: Typically called with $ENV{'QUERY_STRING'} as the first parameter.  
 2913: $possible_names is an ref to an array of form element names.  As an example:
 2914: get_unprocessed_cgi($ENV{'QUERY_STRING'},['uname','udom']);
 2915: will result in $ENV{'form.uname'} and $ENV{'form.udom'} being set.
 2916: 
 2917: =cut
 2918: 
 2919: sub get_unprocessed_cgi {
 2920:   my ($query,$possible_names)= @_;
 2921:   # $Apache::lonxml::debug=1;
 2922:   foreach (split(/&/,$query)) {
 2923:     my ($name, $value) = split(/=/,$_);
 2924:     $name = &Apache::lonnet::unescape($name);
 2925:     if (!defined($possible_names) || (grep {$_ eq $name} @$possible_names)) {
 2926:       $value =~ tr/+/ /;
 2927:       $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
 2928:       &Apache::lonxml::debug("Seting :$name: to :$value:");
 2929:       unless (defined($ENV{'form.'.$name})) { &add_to_env('form.'.$name,$value) };
 2930:     }
 2931:   }
 2932: }
 2933: 
 2934: =pod
 2935: 
 2936: =item * cacheheader() 
 2937: 
 2938: returns cache-controlling header code
 2939: 
 2940: =cut
 2941: 
 2942: sub cacheheader {
 2943:     unless ($ENV{'request.method'} eq 'GET') { return ''; }
 2944:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime);
 2945:     my $output .='<meta HTTP-EQUIV="Expires" CONTENT="'.$date.'" />
 2946:                 <meta HTTP-EQUIV="Cache-control" CONTENT="no-cache" />
 2947:                 <meta HTTP-EQUIV="Pragma" CONTENT="no-cache" />';
 2948:     return $output;
 2949: }
 2950: 
 2951: =pod
 2952: 
 2953: =item * no_cache($r) 
 2954: 
 2955: specifies header code to not have cache
 2956: 
 2957: =cut
 2958: 
 2959: sub no_cache {
 2960:     my ($r) = @_;
 2961:     if ($ENV{'REQUEST_METHOD'} ne 'GET' &&
 2962: 	$ENV{'request.method'} ne 'GET') { return ''; }
 2963:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime(time));
 2964:     $r->no_cache(1);
 2965:     $r->header_out("Expires" => $date);
 2966:     $r->header_out("Pragma" => "no-cache");
 2967: }
 2968: 
 2969: sub content_type {
 2970:     my ($r,$type,$charset) = @_;
 2971:     unless ($charset) {
 2972: 	$charset=&Apache::lonlocal::current_encoding;
 2973:     }
 2974:     if ($charset) { $type.='; charset='.$charset; }
 2975:     if ($r) {
 2976: 	$r->content_type($type);
 2977:     } else {
 2978: 	print("Content-type: $type\n\n");
 2979:     }
 2980: }
 2981: 
 2982: =pod
 2983: 
 2984: =item * add_to_env($name,$value) 
 2985: 
 2986: adds $name to the %ENV hash with value
 2987: $value, if $name already exists, the entry is converted to an array
 2988: reference and $value is added to the array.
 2989: 
 2990: =cut
 2991: 
 2992: sub add_to_env {
 2993:   my ($name,$value)=@_;
 2994:   if (defined($ENV{$name})) {
 2995:     if (ref($ENV{$name})) {
 2996:       #already have multiple values
 2997:       push(@{ $ENV{$name} },$value);
 2998:     } else {
 2999:       #first time seeing multiple values, convert hash entry to an arrayref
 3000:       my $first=$ENV{$name};
 3001:       undef($ENV{$name});
 3002:       push(@{ $ENV{$name} },$first,$value);
 3003:     }
 3004:   } else {
 3005:     $ENV{$name}=$value;
 3006:   }
 3007: }
 3008: 
 3009: =pod
 3010: 
 3011: =item * get_env_multiple($name) 
 3012: 
 3013: gets $name from the %ENV hash, it seemlessly handles the cases where multiple
 3014: values may be defined and end up as an array ref.
 3015: 
 3016: returns an array of values
 3017: 
 3018: =cut
 3019: 
 3020: sub get_env_multiple {
 3021:     my ($name) = @_;
 3022:     my @values;
 3023:     if (defined($ENV{$name})) {
 3024:         # exists is it an array
 3025:         if (ref($ENV{$name})) {
 3026:             @values=@{ $ENV{$name} };
 3027:         } else {
 3028:             $values[0]=$ENV{$name};
 3029:         }
 3030:     }
 3031:     return(@values);
 3032: }
 3033: 
 3034: 
 3035: =pod
 3036: 
 3037: =back 
 3038: 
 3039: =head1 CSV Upload/Handling functions
 3040: 
 3041: =over 4
 3042: 
 3043: =item * upfile_store($r)
 3044: 
 3045: Store uploaded file, $r should be the HTTP Request object,
 3046: needs $ENV{'form.upfile'}
 3047: returns $datatoken to be put into hidden field
 3048: 
 3049: =cut
 3050: 
 3051: sub upfile_store {
 3052:     my $r=shift;
 3053:     $ENV{'form.upfile'}=~s/\r/\n/gs;
 3054:     $ENV{'form.upfile'}=~s/\f/\n/gs;
 3055:     $ENV{'form.upfile'}=~s/\n+/\n/gs;
 3056:     $ENV{'form.upfile'}=~s/\n+$//gs;
 3057: 
 3058:     my $datatoken=$ENV{'user.name'}.'_'.$ENV{'user.domain'}.
 3059: 	'_enroll_'.$ENV{'request.course.id'}.'_'.time.'_'.$$;
 3060:     {
 3061:         my $datafile = $r->dir_config('lonDaemons').
 3062:                            '/tmp/'.$datatoken.'.tmp';
 3063:         if ( open(my $fh,">$datafile") ) {
 3064:             print $fh $ENV{'form.upfile'};
 3065:             close($fh);
 3066:         }
 3067:     }
 3068:     return $datatoken;
 3069: }
 3070: 
 3071: =pod
 3072: 
 3073: =item * load_tmp_file($r)
 3074: 
 3075: Load uploaded file from tmp, $r should be the HTTP Request object,
 3076: needs $ENV{'form.datatoken'},
 3077: sets $ENV{'form.upfile'} to the contents of the file
 3078: 
 3079: =cut
 3080: 
 3081: sub load_tmp_file {
 3082:     my $r=shift;
 3083:     my @studentdata=();
 3084:     {
 3085:         my $studentfile = $r->dir_config('lonDaemons').
 3086:                               '/tmp/'.$ENV{'form.datatoken'}.'.tmp';
 3087:         if ( open(my $fh,"<$studentfile") ) {
 3088:             @studentdata=<$fh>;
 3089:             close($fh);
 3090:         }
 3091:     }
 3092:     $ENV{'form.upfile'}=join('',@studentdata);
 3093: }
 3094: 
 3095: =pod
 3096: 
 3097: =item * upfile_record_sep()
 3098: 
 3099: Separate uploaded file into records
 3100: returns array of records,
 3101: needs $ENV{'form.upfile'} and $ENV{'form.upfiletype'}
 3102: 
 3103: =cut
 3104: 
 3105: sub upfile_record_sep {
 3106:     if ($ENV{'form.upfiletype'} eq 'xml') {
 3107:     } else {
 3108: 	return split(/\n/,$ENV{'form.upfile'});
 3109:     }
 3110: }
 3111: 
 3112: =pod
 3113: 
 3114: =item * record_sep($record)
 3115: 
 3116: Separate a record into fields $record should be an item from the upfile_record_sep(), needs $ENV{'form.upfiletype'}
 3117: 
 3118: =cut
 3119: 
 3120: sub record_sep {
 3121:     my $record=shift;
 3122:     my %components=();
 3123:     if ($ENV{'form.upfiletype'} eq 'xml') {
 3124:     } elsif ($ENV{'form.upfiletype'} eq 'space') {
 3125:         my $i=0;
 3126:         foreach (split(/\s+/,$record)) {
 3127:             my $field=$_;
 3128:             $field=~s/^(\"|\')//;
 3129:             $field=~s/(\"|\')$//;
 3130:             $components{$i}=$field;
 3131:             $i++;
 3132:         }
 3133:     } elsif ($ENV{'form.upfiletype'} eq 'tab') {
 3134:         my $i=0;
 3135:         foreach (split(/\t/,$record)) {
 3136:             my $field=$_;
 3137:             $field=~s/^(\"|\')//;
 3138:             $field=~s/(\"|\')$//;
 3139:             $components{$i}=$field;
 3140:             $i++;
 3141:         }
 3142:     } else {
 3143:         my @allfields=split(/\,/,$record);
 3144:         my $i=0;
 3145:         my $j;
 3146:         for ($j=0;$j<=$#allfields;$j++) {
 3147:             my $field=$allfields[$j];
 3148:             if ($field=~/^\s*(\"|\')/) {
 3149: 		my $delimiter=$1;
 3150:                 while (($field!~/$delimiter$/) && ($j<$#allfields)) {
 3151: 		    $j++;
 3152: 		    $field.=','.$allfields[$j];
 3153: 		}
 3154:                 $field=~s/^\s*$delimiter//;
 3155:                 $field=~s/$delimiter\s*$//;
 3156:             }
 3157:             $components{$i}=$field;
 3158: 	    $i++;
 3159:         }
 3160:     }
 3161:     return %components;
 3162: }
 3163: 
 3164: ######################################################
 3165: ######################################################
 3166: 
 3167: =pod
 3168: 
 3169: =item * upfile_select_html()
 3170: 
 3171: Return HTML code to select a file from the users machine and specify 
 3172: the file type.
 3173: 
 3174: =cut
 3175: 
 3176: ######################################################
 3177: ######################################################
 3178: sub upfile_select_html {
 3179:     my %Types = (
 3180:                  csv   => &mt('CSV (comma separated values, spreadsheet)'),
 3181:                  space => &mt('Space separated'),
 3182:                  tab   => &mt('Tabulator separated'),
 3183: #                 xml   => &mt('HTML/XML'),
 3184:                  );
 3185:     my $Str = '<input type="file" name="upfile" size="50" />'.
 3186:         '<br />Type: <select name="upfiletype">';
 3187:     foreach my $type (sort(keys(%Types))) {
 3188:         $Str .= '<option value="'.$type.'" >'.$Types{$type}."</option>\n";
 3189:     }
 3190:     $Str .= "</select>\n";
 3191:     return $Str;
 3192: }
 3193: 
 3194: ######################################################
 3195: ######################################################
 3196: 
 3197: =pod
 3198: 
 3199: =item * csv_print_samples($r,$records)
 3200: 
 3201: Prints a table of sample values from each column uploaded $r is an
 3202: Apache Request ref, $records is an arrayref from
 3203: &Apache::loncommon::upfile_record_sep
 3204: 
 3205: =cut
 3206: 
 3207: ######################################################
 3208: ######################################################
 3209: sub csv_print_samples {
 3210:     my ($r,$records) = @_;
 3211:     my (%sone,%stwo,%sthree);
 3212:     %sone=&record_sep($$records[0]);
 3213:     if (defined($$records[1])) {%stwo=&record_sep($$records[1]);}
 3214:     if (defined($$records[2])) {%sthree=&record_sep($$records[2]);}
 3215:     #
 3216:     $r->print(&mt('Samples').'<br /><table border="2"><tr>');
 3217:     foreach (sort({$a <=> $b} keys(%sone))) { 
 3218:         $r->print('<th>'.&mt('Column&nbsp;[_1]',($_+1)).'</th>'); }
 3219:     $r->print('</tr>');
 3220:     foreach my $hash (\%sone,\%stwo,\%sthree) {
 3221: 	$r->print('<tr>');
 3222: 	foreach (sort({$a <=> $b} keys(%sone))) {
 3223: 	    $r->print('<td>');
 3224: 	    if (defined($$hash{$_})) { $r->print($$hash{$_}); }
 3225: 	    $r->print('</td>');
 3226: 	}
 3227: 	$r->print('</tr>');
 3228:     }
 3229:     $r->print('</tr></table><br />'."\n");
 3230: }
 3231: 
 3232: ######################################################
 3233: ######################################################
 3234: 
 3235: =pod
 3236: 
 3237: =item * csv_print_select_table($r,$records,$d)
 3238: 
 3239: Prints a table to create associations between values and table columns.
 3240: 
 3241: $r is an Apache Request ref,
 3242: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
 3243: $d is an array of 2 element arrays (internal name, displayed name,defaultcol)
 3244: 
 3245: =cut
 3246: 
 3247: ######################################################
 3248: ######################################################
 3249: sub csv_print_select_table {
 3250:     my ($r,$records,$d) = @_;
 3251:     my $i=0;my %sone;
 3252:     %sone=&record_sep($$records[0]);
 3253:     $r->print(&mt('Associate columns with student attributes.')."\n".
 3254: 	     '<table border="2"><tr>'.
 3255:               '<th>'.&mt('Attribute').'</th>'.
 3256:               '<th>'.&mt('Column').'</th></tr>'."\n");
 3257:     foreach (@$d) {
 3258: 	my ($value,$display,$defaultcol)=@{ $_ };
 3259: 	$r->print('<tr><td>'.$display.'</td>');
 3260: 
 3261: 	$r->print('<td><select name=f'.$i.
 3262: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
 3263: 	$r->print('<option value="none"></option>');
 3264: 	foreach (sort({$a <=> $b} keys(%sone))) {
 3265: 	    $r->print('<option value="'.$_.'"'.
 3266:                       ($_ eq $defaultcol ? ' selected ' : '').
 3267:                       '>Column '.($_+1).'</option>');
 3268: 	}
 3269: 	$r->print('</select></td></tr>'."\n");
 3270: 	$i++;
 3271:     }
 3272:     $i--;
 3273:     return $i;
 3274: }
 3275: 
 3276: ######################################################
 3277: ######################################################
 3278: 
 3279: =pod
 3280: 
 3281: =item * csv_samples_select_table($r,$records,$d)
 3282: 
 3283: Prints a table of sample values from the upload and can make associate samples to internal names.
 3284: 
 3285: $r is an Apache Request ref,
 3286: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
 3287: $d is an array of 2 element arrays (internal name, displayed name)
 3288: 
 3289: =cut
 3290: 
 3291: ######################################################
 3292: ######################################################
 3293: sub csv_samples_select_table {
 3294:     my ($r,$records,$d) = @_;
 3295:     my %sone; my %stwo; my %sthree;
 3296:     my $i=0;
 3297:     #
 3298:     $r->print('<table border=2><tr><th>'.
 3299:               &mt('Field').'</th><th>'.&mt('Samples').'</th></tr>');
 3300:     %sone=&record_sep($$records[0]);
 3301:     if (defined($$records[1])) {%stwo=&record_sep($$records[1]);}
 3302:     if (defined($$records[2])) {%sthree=&record_sep($$records[2]);}
 3303:     #
 3304:     foreach (sort keys %sone) {
 3305: 	$r->print('<tr><td><select name="f'.$i.'"'.
 3306: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
 3307: 	foreach (@$d) {
 3308: 	    my ($value,$display,$defaultcol)=@{ $_ };
 3309: 	    $r->print('<option value="'.$value.'"'.
 3310:                       ($i eq $defaultcol ? ' selected ':'').'>'.
 3311:                       $display.'</option>');
 3312: 	}
 3313: 	$r->print('</select></td><td>');
 3314: 	if (defined($sone{$_})) { $r->print($sone{$_}."</br>\n"); }
 3315: 	if (defined($stwo{$_})) { $r->print($stwo{$_}."</br>\n"); }
 3316: 	if (defined($sthree{$_})) { $r->print($sthree{$_}."</br>\n"); }
 3317: 	$r->print('</td></tr>');
 3318: 	$i++;
 3319:     }
 3320:     $i--;
 3321:     return($i);
 3322: }
 3323: 
 3324: ######################################################
 3325: ######################################################
 3326: 
 3327: =pod
 3328: 
 3329: =item clean_excel_name($name)
 3330: 
 3331: Returns a replacement for $name which does not contain any illegal characters.
 3332: 
 3333: =cut
 3334: 
 3335: ######################################################
 3336: ######################################################
 3337: sub clean_excel_name {
 3338:     my ($name) = @_;
 3339:     $name =~ s/[:\*\?\/\\]//g;
 3340:     if (length($name) > 31) {
 3341:         $name = substr($name,0,31);
 3342:     }
 3343:     return $name;
 3344: }
 3345: 
 3346: =pod
 3347: 
 3348: =item * check_if_partid_hidden($id,$symb,$udom,$uname)
 3349: 
 3350: Returns either 1 or undef
 3351: 
 3352: 1 if the part is to be hidden, undef if it is to be shown
 3353: 
 3354: Arguments are:
 3355: 
 3356: $id the id of the part to be checked
 3357: $symb, optional the symb of the resource to check
 3358: $udom, optional the domain of the user to check for
 3359: $uname, optional the username of the user to check for
 3360: 
 3361: =cut
 3362: 
 3363: sub check_if_partid_hidden {
 3364:     my ($id,$symb,$udom,$uname) = @_;
 3365:     my $hiddenparts=&Apache::lonnet::EXT('resource.0.hiddenparts',
 3366: 					 $symb,$udom,$uname);
 3367:     my $truth=1;
 3368:     #if the string starts with !, then the list is the list to show not hide
 3369:     if ($hiddenparts=~s/^\s*!//) { $truth=undef; }
 3370:     my @hiddenlist=split(/,/,$hiddenparts);
 3371:     foreach my $checkid (@hiddenlist) {
 3372: 	if ($checkid =~ /^\s*\Q$id\E\s*$/) { return $truth; }
 3373:     }
 3374:     return !$truth;
 3375: }
 3376: 
 3377: 
 3378: ############################################################
 3379: ############################################################
 3380: 
 3381: =pod
 3382: 
 3383: =back 
 3384: 
 3385: =head1 cgi-bin script and graphing routines
 3386: 
 3387: =over 4
 3388: 
 3389: =item get_cgi_id
 3390: 
 3391: Inputs: none
 3392: 
 3393: Returns an id which can be used to pass environment variables
 3394: to various cgi-bin scripts.  These environment variables will
 3395: be removed from the users environment after a given time by
 3396: the routine &Apache::lonnet::transfer_profile_to_env.
 3397: 
 3398: =cut
 3399: 
 3400: ############################################################
 3401: ############################################################
 3402: my $uniq=0;
 3403: sub get_cgi_id {
 3404:     $uniq=($uniq+1)%100000;
 3405:     return (time.'_'.$uniq);
 3406: }
 3407: 
 3408: ############################################################
 3409: ############################################################
 3410: 
 3411: =pod
 3412: 
 3413: =item DrawBarGraph
 3414: 
 3415: Facilitates the plotting of data in a (stacked) bar graph.
 3416: Puts plot definition data into the users environment in order for 
 3417: graph.png to plot it.  Returns an <img> tag for the plot.
 3418: The bars on the plot are labeled '1','2',...,'n'.
 3419: 
 3420: Inputs:
 3421: 
 3422: =over 4
 3423: 
 3424: =item $Title: string, the title of the plot
 3425: 
 3426: =item $xlabel: string, text describing the X-axis of the plot
 3427: 
 3428: =item $ylabel: string, text describing the Y-axis of the plot
 3429: 
 3430: =item $Max: scalar, the maximum Y value to use in the plot
 3431: If $Max is < any data point, the graph will not be rendered.
 3432: 
 3433: =item $colors: array ref holding the colors to be used for the data sets when
 3434: they are plotted.  If undefined, default values will be used.
 3435: 
 3436: =item $labels: array ref holding the labels to use on the x-axis for the bars.
 3437: 
 3438: =item @Values: An array of array references.  Each array reference holds data
 3439: to be plotted in a stacked bar chart.
 3440: 
 3441: =item If the final element of @Values is a hash reference the key/value
 3442: pairs will be added to the graph definition.
 3443: 
 3444: =back
 3445: 
 3446: Returns:
 3447: 
 3448: An <img> tag which references graph.png and the appropriate identifying
 3449: information for the plot.
 3450: 
 3451: =cut
 3452: 
 3453: ############################################################
 3454: ############################################################
 3455: sub DrawBarGraph {
 3456:     my ($Title,$xlabel,$ylabel,$Max,$colors,$labels,@Values)=@_;
 3457:     #
 3458:     if (! defined($colors)) {
 3459:         $colors = ['#33ff00', 
 3460:                   '#0033cc', '#990000', '#aaaa66', '#663399', '#ff9933',
 3461:                   '#66ccff', '#ff9999', '#cccc33', '#660000', '#33cc66',
 3462:                   ]; 
 3463:     }
 3464:     my $extra_settings = {};
 3465:     if (ref($Values[-1]) eq 'HASH') {
 3466:         $extra_settings = pop(@Values);
 3467:     }
 3468:     #
 3469:     my $identifier = &get_cgi_id();
 3470:     my $id = 'cgi.'.$identifier;        
 3471:     if (! @Values || ref($Values[0]) ne 'ARRAY') {
 3472:         return '';
 3473:     }
 3474:     #
 3475:     my @Labels;
 3476:     if (defined($labels)) {
 3477:         @Labels = @$labels;
 3478:     } else {
 3479:         for (my $i=0;$i<@{$Values[0]};$i++) {
 3480:             push (@Labels,$i+1);
 3481:         }
 3482:     }
 3483:     #
 3484:     my $NumBars = scalar(@{$Values[0]});
 3485:     if ($NumBars < scalar(@Labels)) { $NumBars = scalar(@Labels); }
 3486:     my %ValuesHash;
 3487:     my $NumSets=1;
 3488:     foreach my $array (@Values) {
 3489:         next if (! ref($array));
 3490:         $ValuesHash{$id.'.data.'.$NumSets++} = 
 3491:             join(',',@$array);
 3492:     }
 3493:     #
 3494:     my ($height,$width,$xskip,$bar_width) = (200,120,1,15);
 3495:     if ($NumBars < 3) {
 3496:         $width = 120+$NumBars*32;
 3497:         $xskip = 1;
 3498:         $bar_width = 30;
 3499:     } elsif ($NumBars < 5) {
 3500:         $width = 120+$NumBars*20;
 3501:         $xskip = 1;
 3502:         $bar_width = 20;
 3503:     } elsif ($NumBars < 10) {
 3504:         $width = 120+$NumBars*15;
 3505:         $xskip = 1;
 3506:         $bar_width = 15;
 3507:     } elsif ($NumBars <= 25) {
 3508:         $width = 120+$NumBars*11;
 3509:         $xskip = 5;
 3510:         $bar_width = 8;
 3511:     } elsif ($NumBars <= 50) {
 3512:         $width = 120+$NumBars*8;
 3513:         $xskip = 5;
 3514:         $bar_width = 4;
 3515:     } else {
 3516:         $width = 120+$NumBars*8;
 3517:         $xskip = 5;
 3518:         $bar_width = 4;
 3519:     }
 3520:     #
 3521:     $Max = 1 if ($Max < 1);
 3522:     if ( int($Max) < $Max ) {
 3523:         $Max++;
 3524:         $Max = int($Max);
 3525:     }
 3526:     $Title  = '' if (! defined($Title));
 3527:     $xlabel = '' if (! defined($xlabel));
 3528:     $ylabel = '' if (! defined($ylabel));
 3529:     $ValuesHash{$id.'.title'}    = &Apache::lonnet::escape($Title);
 3530:     $ValuesHash{$id.'.xlabel'}   = &Apache::lonnet::escape($xlabel);
 3531:     $ValuesHash{$id.'.ylabel'}   = &Apache::lonnet::escape($ylabel);
 3532:     $ValuesHash{$id.'.y_max_value'} = $Max;
 3533:     $ValuesHash{$id.'.NumBars'}  = $NumBars;
 3534:     $ValuesHash{$id.'.NumSets'}  = $NumSets;
 3535:     $ValuesHash{$id.'.PlotType'} = 'bar';
 3536:     $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
 3537:     $ValuesHash{$id.'.height'}   = $height;
 3538:     $ValuesHash{$id.'.width'}    = $width;
 3539:     $ValuesHash{$id.'.xskip'}    = $xskip;
 3540:     $ValuesHash{$id.'.bar_width'} = $bar_width;
 3541:     $ValuesHash{$id.'.labels'} = join(',',@Labels);
 3542:     #
 3543:     # Deal with other parameters
 3544:     while (my ($key,$value) = each(%$extra_settings)) {
 3545:         $ValuesHash{$id.'.'.$key} = $value;
 3546:     }
 3547:     #
 3548:     &Apache::lonnet::appenv(%ValuesHash);
 3549:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
 3550: }
 3551: 
 3552: ############################################################
 3553: ############################################################
 3554: 
 3555: =pod
 3556: 
 3557: =item DrawXYGraph
 3558: 
 3559: Facilitates the plotting of data in an XY graph.
 3560: Puts plot definition data into the users environment in order for 
 3561: graph.png to plot it.  Returns an <img> tag for the plot.
 3562: 
 3563: Inputs:
 3564: 
 3565: =over 4
 3566: 
 3567: =item $Title: string, the title of the plot
 3568: 
 3569: =item $xlabel: string, text describing the X-axis of the plot
 3570: 
 3571: =item $ylabel: string, text describing the Y-axis of the plot
 3572: 
 3573: =item $Max: scalar, the maximum Y value to use in the plot
 3574: If $Max is < any data point, the graph will not be rendered.
 3575: 
 3576: =item $colors: Array ref containing the hex color codes for the data to be 
 3577: plotted in.  If undefined, default values will be used.
 3578: 
 3579: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
 3580: 
 3581: =item $Ydata: Array ref containing Array refs.  
 3582: Each of the contained arrays will be plotted as a separate curve.
 3583: 
 3584: =item %Values: hash indicating or overriding any default values which are 
 3585: passed to graph.png.  
 3586: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
 3587: 
 3588: =back
 3589: 
 3590: Returns:
 3591: 
 3592: An <img> tag which references graph.png and the appropriate identifying
 3593: information for the plot.
 3594: 
 3595: =cut
 3596: 
 3597: ############################################################
 3598: ############################################################
 3599: sub DrawXYGraph {
 3600:     my ($Title,$xlabel,$ylabel,$Max,$colors,$Xlabels,$Ydata,%Values)=@_;
 3601:     #
 3602:     # Create the identifier for the graph
 3603:     my $identifier = &get_cgi_id();
 3604:     my $id = 'cgi.'.$identifier;
 3605:     #
 3606:     $Title  = '' if (! defined($Title));
 3607:     $xlabel = '' if (! defined($xlabel));
 3608:     $ylabel = '' if (! defined($ylabel));
 3609:     my %ValuesHash = 
 3610:         (
 3611:          $id.'.title'  => &Apache::lonnet::escape($Title),
 3612:          $id.'.xlabel' => &Apache::lonnet::escape($xlabel),
 3613:          $id.'.ylabel' => &Apache::lonnet::escape($ylabel),
 3614:          $id.'.y_max_value'=> $Max,
 3615:          $id.'.labels'     => join(',',@$Xlabels),
 3616:          $id.'.PlotType'   => 'XY',
 3617:          );
 3618:     #
 3619:     if (defined($colors) && ref($colors) eq 'ARRAY') {
 3620:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
 3621:     }
 3622:     #
 3623:     if (! ref($Ydata) || ref($Ydata) ne 'ARRAY') {
 3624:         return '';
 3625:     }
 3626:     my $NumSets=1;
 3627:     foreach my $array (@{$Ydata}){
 3628:         next if (! ref($array));
 3629:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
 3630:     }
 3631:     $ValuesHash{$id.'.NumSets'} = $NumSets-1;
 3632:     #
 3633:     # Deal with other parameters
 3634:     while (my ($key,$value) = each(%Values)) {
 3635:         $ValuesHash{$id.'.'.$key} = $value;
 3636:     }
 3637:     #
 3638:     &Apache::lonnet::appenv(%ValuesHash);
 3639:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
 3640: }
 3641: 
 3642: ############################################################
 3643: ############################################################
 3644: 
 3645: =pod
 3646: 
 3647: =item DrawXYYGraph
 3648: 
 3649: Facilitates the plotting of data in an XY graph with two Y axes.
 3650: Puts plot definition data into the users environment in order for 
 3651: graph.png to plot it.  Returns an <img> tag for the plot.
 3652: 
 3653: Inputs:
 3654: 
 3655: =over 4
 3656: 
 3657: =item $Title: string, the title of the plot
 3658: 
 3659: =item $xlabel: string, text describing the X-axis of the plot
 3660: 
 3661: =item $ylabel: string, text describing the Y-axis of the plot
 3662: 
 3663: =item $colors: Array ref containing the hex color codes for the data to be 
 3664: plotted in.  If undefined, default values will be used.
 3665: 
 3666: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
 3667: 
 3668: =item $Ydata1: The first data set
 3669: 
 3670: =item $Min1: The minimum value of the left Y-axis
 3671: 
 3672: =item $Max1: The maximum value of the left Y-axis
 3673: 
 3674: =item $Ydata2: The second data set
 3675: 
 3676: =item $Min2: The minimum value of the right Y-axis
 3677: 
 3678: =item $Max2: The maximum value of the left Y-axis
 3679: 
 3680: =item %Values: hash indicating or overriding any default values which are 
 3681: passed to graph.png.  
 3682: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
 3683: 
 3684: =back
 3685: 
 3686: Returns:
 3687: 
 3688: An <img> tag which references graph.png and the appropriate identifying
 3689: information for the plot.
 3690: 
 3691: =cut
 3692: 
 3693: ############################################################
 3694: ############################################################
 3695: sub DrawXYYGraph {
 3696:     my ($Title,$xlabel,$ylabel,$colors,$Xlabels,$Ydata1,$Min1,$Max1,
 3697:                                         $Ydata2,$Min2,$Max2,%Values)=@_;
 3698:     #
 3699:     # Create the identifier for the graph
 3700:     my $identifier = &get_cgi_id();
 3701:     my $id = 'cgi.'.$identifier;
 3702:     #
 3703:     $Title  = '' if (! defined($Title));
 3704:     $xlabel = '' if (! defined($xlabel));
 3705:     $ylabel = '' if (! defined($ylabel));
 3706:     my %ValuesHash = 
 3707:         (
 3708:          $id.'.title'  => &Apache::lonnet::escape($Title),
 3709:          $id.'.xlabel' => &Apache::lonnet::escape($xlabel),
 3710:          $id.'.ylabel' => &Apache::lonnet::escape($ylabel),
 3711:          $id.'.labels' => join(',',@$Xlabels),
 3712:          $id.'.PlotType' => 'XY',
 3713:          $id.'.NumSets' => 2,
 3714:          $id.'.two_axes' => 1,
 3715:          $id.'.y1_max_value' => $Max1,
 3716:          $id.'.y1_min_value' => $Min1,
 3717:          $id.'.y2_max_value' => $Max2,
 3718:          $id.'.y2_min_value' => $Min2,
 3719:          );
 3720:     #
 3721:     if (defined($colors) && ref($colors) eq 'ARRAY') {
 3722:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
 3723:     }
 3724:     #
 3725:     if (! ref($Ydata1) || ref($Ydata1) ne 'ARRAY' ||
 3726:         ! ref($Ydata2) || ref($Ydata2) ne 'ARRAY'){
 3727:         return '';
 3728:     }
 3729:     my $NumSets=1;
 3730:     foreach my $array ($Ydata1,$Ydata2){
 3731:         next if (! ref($array));
 3732:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
 3733:     }
 3734:     #
 3735:     # Deal with other parameters
 3736:     while (my ($key,$value) = each(%Values)) {
 3737:         $ValuesHash{$id.'.'.$key} = $value;
 3738:     }
 3739:     #
 3740:     &Apache::lonnet::appenv(%ValuesHash);
 3741:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
 3742: }
 3743: 
 3744: ############################################################
 3745: ############################################################
 3746: 
 3747: =pod
 3748: 
 3749: =back 
 3750: 
 3751: =head1 Statistics helper routines?  
 3752: 
 3753: Bad place for them but what the hell.
 3754: 
 3755: =over 4
 3756: 
 3757: =item &chartlink
 3758: 
 3759: Returns a link to the chart for a specific student.  
 3760: 
 3761: Inputs:
 3762: 
 3763: =over 4
 3764: 
 3765: =item $linktext: The text of the link
 3766: 
 3767: =item $sname: The students username
 3768: 
 3769: =item $sdomain: The students domain
 3770: 
 3771: =back
 3772: 
 3773: =back
 3774: 
 3775: =cut
 3776: 
 3777: ############################################################
 3778: ############################################################
 3779: sub chartlink {
 3780:     my ($linktext, $sname, $sdomain) = @_;
 3781:     my $link = '<a href="/adm/statistics?reportSelected=student_assessment'.
 3782:         '&amp;SelectedStudent='.&Apache::lonnet::escape($sname.':'.$sdomain).
 3783:         '&amp;chartoutputmode='.HTML::Entities::encode('html, with all links').
 3784:        '">'.$linktext.'</a>';
 3785: }
 3786: 
 3787: #######################################################
 3788: #######################################################
 3789: 
 3790: =pod
 3791: 
 3792: =head1 Course Environment Routines
 3793: 
 3794: =over 4
 3795: 
 3796: =item &restore_course_settings 
 3797: 
 3798: =item &store_course_settings
 3799: 
 3800: Restores/Store indicated form parameters from the course environment.
 3801: Will not overwrite existing values of the form parameters.
 3802: 
 3803: Inputs: 
 3804: a scalar describing the data (e.g. 'chart', 'problem_analysis')
 3805: 
 3806: a hash ref describing the data to be stored.  For example:
 3807:    
 3808: %Save_Parameters = ('Status' => 'scalar',
 3809:     'chartoutputmode' => 'scalar',
 3810:     'chartoutputdata' => 'scalar',
 3811:     'Section' => 'array',
 3812:     'StudentData' => 'array',
 3813:     'Maps' => 'array');
 3814: 
 3815: Returns: both routines return nothing
 3816: 
 3817: =cut
 3818: 
 3819: #######################################################
 3820: #######################################################
 3821: sub store_course_settings {
 3822:     # save to the environment
 3823:     # appenv the same items, just to be safe
 3824:     my $courseid = $ENV{'request.course.id'};
 3825:     my $coursedom = $ENV{'course.'.$courseid.'.domain'};
 3826:     my ($prefix,$Settings) = @_;
 3827:     my %SaveHash;
 3828:     my %AppHash;
 3829:     while (my ($setting,$type) = each(%$Settings)) {
 3830:         my $basename = 'internal.'.$prefix.'.'.$setting;
 3831:         my $envname = 'course.'.$courseid.'.'.$basename;
 3832:         if (exists($ENV{'form.'.$setting})) {
 3833:             # Save this value away
 3834:             if ($type eq 'scalar' &&
 3835:                 (! exists($ENV{$envname}) || 
 3836:                  $ENV{$envname} ne $ENV{'form.'.$setting})) {
 3837:                 $SaveHash{$basename} = $ENV{'form.'.$setting};
 3838:                 $AppHash{$envname}   = $ENV{'form.'.$setting};
 3839:             } elsif ($type eq 'array') {
 3840:                 my $stored_form;
 3841:                 if (ref($ENV{'form.'.$setting})) {
 3842:                     $stored_form = join(',',
 3843:                                         map {
 3844:                                             &Apache::lonnet::escape($_);
 3845:                                         } sort(@{$ENV{'form.'.$setting}}));
 3846:                 } else {
 3847:                     $stored_form = 
 3848:                         &Apache::lonnet::escape($ENV{'form.'.$setting});
 3849:                 }
 3850:                 # Determine if the array contents are the same.
 3851:                 if ($stored_form ne $ENV{$envname}) {
 3852:                     $SaveHash{$basename} = $stored_form;
 3853:                     $AppHash{$envname}   = $stored_form;
 3854:                 }
 3855:             }
 3856:         }
 3857:     }
 3858:     my $put_result = &Apache::lonnet::put('environment',\%SaveHash,
 3859:                                           $coursedom,
 3860:                                           $ENV{'course.'.$courseid.'.num'});
 3861:     if ($put_result !~ /^(ok|delayed)/) {
 3862:         &Apache::lonnet::logthis('unable to save form parameters, '.
 3863:                                  'got error:'.$put_result);
 3864:     }
 3865:     # Make sure these settings stick around in this session, too
 3866:     &Apache::lonnet::appenv(%AppHash);
 3867:     return;
 3868: }
 3869: 
 3870: sub restore_course_settings {
 3871:     my $courseid = $ENV{'request.course.id'};
 3872:     my ($prefix,$Settings) = @_;
 3873:     while (my ($setting,$type) = each(%$Settings)) {
 3874:         next if (exists($ENV{'form.'.$setting}));
 3875:         my $envname = 'course.'.$courseid.'.internal.'.$prefix.
 3876:             '.'.$setting;
 3877:         if (exists($ENV{$envname})) {
 3878:             if ($type eq 'scalar') {
 3879:                 $ENV{'form.'.$setting} = $ENV{$envname};
 3880:             } elsif ($type eq 'array') {
 3881:                 $ENV{'form.'.$setting} = [ 
 3882:                                            map { 
 3883:                                                &Apache::lonnet::unescape($_); 
 3884:                                            } split(',',$ENV{$envname})
 3885:                                            ];
 3886:             }
 3887:         }
 3888:     }
 3889: }
 3890: 
 3891: ############################################################
 3892: ############################################################
 3893: 
 3894: sub propath {
 3895:     my ($udom,$uname)=@_;
 3896:     $udom=~s/\W//g;
 3897:     $uname=~s/\W//g;
 3898:     my $subdir=$uname.'__';
 3899:     $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
 3900:     my $proname="$Apache::lonnet::perlvar{'lonUsersDir'}/$udom/$subdir/$uname";
 3901:     return $proname;
 3902: } 
 3903: 
 3904: sub icon {
 3905:     my ($file)=@_;
 3906:     my $curfext = (split(/\./,$file))[-1];
 3907:     my $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/unknown.gif';
 3908:     my $embstyle = &Apache::loncommon::fileembstyle($curfext);
 3909:     if (!(!defined($embstyle) || $embstyle eq 'unk' || $embstyle eq 'hdn')) {
 3910: 	if (-e  $Apache::lonnet::perlvar{'lonDocRoot'}.'/'.
 3911: 	          $Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
 3912: 	            $curfext.".gif") {
 3913: 	    $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
 3914: 		$curfext.".gif";
 3915: 	}
 3916:     }
 3917:     return $iconname;
 3918: } 
 3919: 
 3920: sub lonhttpdurl {
 3921:     my ($url)=@_;
 3922:     my $lonhttpd_port=$Apache::lonnet::perlvar{'lonhttpdPort'};
 3923:     if (!defined($lonhttpd_port)) { $lonhttpd_port='8080'; }
 3924:     return 'http://'.$ENV{'SERVER_NAME'}.':'.$lonhttpd_port.$url;
 3925: }
 3926: 
 3927: sub connection_aborted {
 3928:     my ($r)=@_;
 3929:     $r->print(" ");$r->rflush();
 3930:     my $c = $r->connection;
 3931:     return $c->aborted();
 3932: }
 3933: 
 3934: #    Escapes strings that may have embedded 's that will be put into
 3935: #    strings as 'strings'.
 3936: sub escape_single {
 3937:     my ($input) = @_;
 3938:     $input =~ s/\\/\\\\/g;	# Escape the \'s..(must be first)>
 3939:     $input =~ s/\'/\\\'/g;	# Esacpe the 's....
 3940:     return $input;
 3941: }
 3942: 
 3943: #  Same as escape_single, but escape's "'s  This 
 3944: #  can be used for  "strings"
 3945: sub escape_double {
 3946:     my ($input) = @_;
 3947:     $input =~ s/\\/\\\\/g;	# Escape the /'s..(must be first)>
 3948:     $input =~ s/\"/\\\"/g;	# Esacpe the "s....
 3949:     return $input;
 3950: }
 3951:  
 3952: #   Escapes the last element of a full URL.
 3953: sub escape_url {
 3954:     my ($url)   = @_;
 3955:     my @urlslices = split(/\//, $url,-1);
 3956:     my $lastitem = &Apache::lonnet::escape(pop(@urlslices));
 3957:     return join('/',@urlslices).'/'.$lastitem;
 3958: }
 3959: =pod
 3960: 
 3961: =back
 3962: 
 3963: =cut
 3964: 
 3965: 1;
 3966: __END__;
 3967: 

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