File:  [LON-CAPA] / loncom / interface / loncommon.pm
Revision 1.124: download - view: text, annotated - select for diffs
Sat Oct 4 22:34:02 2003 UTC (20 years, 8 months ago) by www
Branches: MAIN
CVS tags: HEAD
Mark the languages which we support in the interface

    1: # The LearningOnline Network with CAPA
    2: # a pile of common routines
    3: #
    4: # $Id: loncommon.pm,v 1.124 2003/10/04 22:34:02 www 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: # YEAR=2001
   29: # 2/13-12/7 Guy Albertelli
   30: # 12/21 Gerd Kortemeyer
   31: # 12/25,12/28 Gerd Kortemeyer
   32: # YEAR=2002
   33: # 1/4 Gerd Kortemeyer
   34: # 6/24,7/2 H. K. Ng
   35: 
   36: # Makes a table out of the previous attempts
   37: # Inputs result_from_symbread, user, domain, course_id
   38: # Reads in non-network-related .tab files
   39: 
   40: # POD header:
   41: 
   42: =pod
   43: 
   44: =head1 NAME
   45: 
   46: Apache::loncommon - pile of common routines
   47: 
   48: =head1 SYNOPSIS
   49: 
   50: Common routines for manipulating connections, student answers,
   51:     domains, common Javascript fragments, etc.
   52: 
   53: =head1 OVERVIEW
   54: 
   55: A collection of commonly used subroutines that don't have a natural
   56: home anywhere else. This collection helps remove
   57: redundancy from other modules and increase efficiency of memory usage.
   58: 
   59: =cut 
   60: 
   61: # End of POD header
   62: package Apache::loncommon;
   63: 
   64: use strict;
   65: use Apache::lonnet();
   66: use GDBM_File;
   67: use POSIX qw(strftime mktime);
   68: use Apache::Constants qw(:common :http :methods);
   69: use Apache::lonmsg();
   70: use Apache::lonmenu();
   71: use Apache::lonlocal;
   72: 
   73: my $readit;
   74: 
   75: =pod 
   76: 
   77: =head1 Global Variables
   78: 
   79: =cut
   80: 
   81: # ----------------------------------------------- Filetypes/Languages/Copyright
   82: my %language;
   83: my %supported_language;
   84: my %cprtag;
   85: my %fe; my %fd;
   86: my %category_extensions;
   87: 
   88: # ---------------------------------------------- Designs
   89: 
   90: my %designhash;
   91: 
   92: # ---------------------------------------------- Thesaurus variables
   93: 
   94: # FIXME: I don't think it's necessary to document these things;
   95: # they're privately used - Jeremy
   96: 
   97: =pod
   98: 
   99: =over 4
  100: 
  101: =item * %Keywords  
  102: 
  103: A hash used by &keyword to determine if a word is considered a keyword.
  104: 
  105: =item * $thesaurus_db_file
  106: 
  107: Scalar containing the full path to the thesaurus database.                 
  108: 
  109: =back
  110: 
  111: =cut
  112: 
  113: my %Keywords;
  114: my $thesaurus_db_file;
  115: 
  116: # ----------------------------------------------------------------------- BEGIN
  117: 
  118: # FIXME: I don't think this needs to be documented, it prepares
  119: # private data structures - Jeremy
  120: =pod
  121: 
  122: =head1 General Subroutines
  123: 
  124: =over 4
  125: 
  126: =item * BEGIN() 
  127: 
  128: Initialize values from language.tab, copyright.tab, filetypes.tab,
  129: thesaurus.tab, and filecategories.tab.
  130: 
  131: =back
  132: 
  133: =cut
  134: 
  135: # ----------------------------------------------------------------------- BEGIN
  136: 
  137: BEGIN {
  138:     # Variable initialization
  139:     $thesaurus_db_file = $Apache::lonnet::perlvar{'lonTabDir'}."/thesaurus.db";
  140:     #
  141:     unless ($readit) {
  142: # ------------------------------------------------------------------- languages
  143:     {
  144: 	my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.
  145: 				 '/language.tab');
  146: 	if ($fh) {
  147: 	    while (<$fh>) {
  148: 		next if /^\#/;
  149: 		chomp;
  150: 		my ($key,$two,$country,$three,$enc,$val,$sup)=(split(/\t/,$_));
  151: 		$language{$key}=$val.' - '.$enc;
  152: 		if ($sup) {
  153: 		    $supported_language{$key}=$sup;
  154: 		}
  155: 	    }
  156: 	}
  157:     }
  158: # ------------------------------------------------------------------ copyrights
  159:     {
  160: 	my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonIncludes'}.
  161: 				  '/copyright.tab');
  162: 	if ($fh) {
  163: 	    while (<$fh>) {
  164: 		next if /^\#/;
  165: 		chomp;
  166: 		my ($key,$val)=(split(/\s+/,$_,2));
  167: 		$cprtag{$key}=$val;
  168: 	    }
  169: 	}
  170:     }
  171: 
  172: # -------------------------------------------------------------- domain designs
  173: 
  174:     my $filename;
  175:     my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
  176:     opendir(DIR,$designdir);
  177:     while ($filename=readdir(DIR)) {
  178: 	my ($domain)=($filename=~/^(\w+)\./);
  179:     {
  180: 	my $fh=Apache::File->new($designdir.'/'.$filename);
  181: 	if ($fh) {
  182: 	    while (<$fh>) {
  183: 		next if /^\#/;
  184: 		chomp;
  185: 		my ($key,$val)=(split(/\=/,$_));
  186: 		if ($val) { $designhash{$domain.'.'.$key}=$val; }
  187: 	    }
  188: 	}
  189:     }
  190: 
  191:     }
  192:     closedir(DIR);
  193: 
  194: 
  195: # ------------------------------------------------------------- file categories
  196:     {
  197: 	my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.
  198: 				  '/filecategories.tab');
  199: 	if ($fh) {
  200: 	    while (<$fh>) {
  201: 		next if /^\#/;
  202: 		chomp;
  203: 		my ($extension,$category)=(split(/\s+/,$_,2));
  204: 		push @{$category_extensions{lc($category)}},$extension;
  205: 	    }
  206: 	}
  207:     }
  208: # ------------------------------------------------------------------ file types
  209:     {
  210: 	my $fh=Apache::File->new($Apache::lonnet::perlvar{'lonTabDir'}.
  211: 	       '/filetypes.tab');
  212: 	if ($fh) {
  213:             while (<$fh>) {
  214: 		next if (/^\#/);
  215: 		chomp;
  216: 		my ($ending,$emb,$descr)=split(/\s+/,$_,3);
  217: 		if ($descr ne '') { 
  218: 		    $fe{$ending}=lc($emb);
  219: 		    $fd{$ending}=$descr;
  220: 		}
  221: 	    }
  222: 	}
  223:     }
  224:     &Apache::lonnet::logthis(
  225:               "<font color=yellow>INFO: Read file types</font>");
  226:     $readit=1;
  227:     }  # end of unless($readit) 
  228:     
  229: }
  230: 
  231: ###############################################################
  232: ##           HTML and Javascript Helper Functions            ##
  233: ###############################################################
  234: 
  235: =pod 
  236: 
  237: =head1 HTML and Javascript Functions
  238: 
  239: =over 4
  240: 
  241: =item * browser_and_searcher_javascript ()
  242: 
  243: X<browsing, javascript>X<searching, javascript>Returns a string
  244: containing javascript with two functions, C<openbrowser> and
  245: C<opensearcher>. Returned string does not contain E<lt>scriptE<gt>
  246: tags.
  247: 
  248: =over 4
  249: 
  250: =item * openbrowser(formname,elementname,only,omit) [javascript]
  251: 
  252: inputs: formname, elementname, only, omit
  253: 
  254: formname and elementname indicate the name of the html form and name of
  255: the element that the results of the browsing selection are to be placed in. 
  256: 
  257: Specifying 'only' will restrict the browser to displaying only files
  258: with the given extension.  Can be a comma seperated list.
  259: 
  260: Specifying 'omit' will restrict the browser to NOT displaying files
  261: with the given extension.  Can be a comma seperated list.
  262: 
  263: =item * opensearcher(formname, elementname) [javascript]
  264: 
  265: Inputs: formname, elementname
  266: 
  267: formname and elementname specify the name of the html form and the name
  268: of the element the selection from the search results will be placed in.
  269: 
  270: =back
  271: 
  272: =cut
  273: 
  274: sub browser_and_searcher_javascript {
  275:     return <<END;
  276:     var editbrowser = null;
  277:     function openbrowser(formname,elementname,only,omit) {
  278:         var url = '/res/?';
  279:         if (editbrowser == null) {
  280:             url += 'launch=1&';
  281:         }
  282:         url += 'catalogmode=interactive&';
  283:         url += 'mode=edit&';
  284:         url += 'form=' + formname + '&';
  285:         if (only != null) {
  286:             url += 'only=' + only + '&';
  287:         } 
  288:         if (omit != null) {
  289:             url += 'omit=' + omit + '&';
  290:         }
  291:         url += 'element=' + elementname + '';
  292:         var title = 'Browser';
  293:         var options = 'scrollbars=1,resizable=1,menubar=0';
  294:         options += ',width=700,height=600';
  295:         editbrowser = open(url,title,options,'1');
  296:         editbrowser.focus();
  297:     }
  298:     var editsearcher;
  299:     function opensearcher(formname,elementname) {
  300:         var url = '/adm/searchcat?';
  301:         if (editsearcher == null) {
  302:             url += 'launch=1&';
  303:         }
  304:         url += 'catalogmode=interactive&';
  305:         url += 'mode=edit&';
  306:         url += 'form=' + formname + '&';
  307:         url += 'element=' + elementname + '';
  308:         var title = 'Search';
  309:         var options = 'scrollbars=1,resizable=1,menubar=0';
  310:         options += ',width=700,height=600';
  311:         editsearcher = open(url,title,options,'1');
  312:         editsearcher.focus();
  313:     }
  314: END
  315: }
  316: 
  317: sub studentbrowser_javascript {
  318:    unless (
  319:             (($ENV{'request.course.id'}) && 
  320:              (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})))
  321:          || ($ENV{'request.role'}=~/^(au|dc|su)/)
  322:           ) { return ''; }  
  323:    return (<<'ENDSTDBRW');
  324: <script type="text/javascript" language="Javascript" >
  325:     var stdeditbrowser;
  326:     function openstdbrowser(formname,uname,udom,roleflag) {
  327:         var url = '/adm/pickstudent?';
  328:         var filter;
  329:         eval('filter=document.'+formname+'.'+uname+'.value;');
  330:         if (filter != null) {
  331:            if (filter != '') {
  332:                url += 'filter='+filter+'&';
  333: 	   }
  334:         }
  335:         url += 'form=' + formname + '&unameelement='+uname+
  336:                                     '&udomelement='+udom;
  337: 	if (roleflag) { url+="&roles=1"; }
  338:         var title = 'Student_Browser';
  339:         var options = 'scrollbars=1,resizable=1,menubar=0';
  340:         options += ',width=700,height=600';
  341:         stdeditbrowser = open(url,title,options,'1');
  342:         stdeditbrowser.focus();
  343:     }
  344: </script>
  345: ENDSTDBRW
  346: }
  347: 
  348: sub selectstudent_link {
  349:    my ($form,$unameele,$udomele)=@_;
  350:    if ($ENV{'request.course.id'}) {  
  351:        unless (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
  352: 	   return '';
  353:        }
  354:        return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
  355:         '","'.$udomele.'");'."'>".&mt('Select User')."</a>";
  356:    }
  357:    if ($ENV{'request.role'}=~/^(au|dc|su)/) {
  358:        return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
  359:         '","'.$udomele.'",1);'."'>".&mt('Select User')."</a>";
  360:    }
  361:    return '';
  362: }
  363: 
  364: sub coursebrowser_javascript {
  365:    return (<<'ENDSTDBRW');
  366: <script type="text/javascript" language="Javascript" >
  367:     var stdeditbrowser;
  368:     function opencrsbrowser(formname,uname,udom) {
  369:         var url = '/adm/pickcourse?';
  370:         var filter;
  371:         if (filter != null) {
  372:            if (filter != '') {
  373:                url += 'filter='+filter+'&';
  374: 	   }
  375:         }
  376:         url += 'form=' + formname + '&cnumelement='+uname+
  377:                                     '&cdomelement='+udom;
  378:         var title = 'Course_Browser';
  379:         var options = 'scrollbars=1,resizable=1,menubar=0';
  380:         options += ',width=700,height=600';
  381:         stdeditbrowser = open(url,title,options,'1');
  382:         stdeditbrowser.focus();
  383:     }
  384: </script>
  385: ENDSTDBRW
  386: }
  387: 
  388: sub selectcourse_link {
  389:    my ($form,$unameele,$udomele)=@_;
  390:     return "<a href='".'javascript:opencrsbrowser("'.$form.'","'.$unameele.
  391:         '","'.$udomele.'");'."'>".&mt('Select Course')."</a>";
  392: }
  393: 
  394: =pod
  395: 
  396: =item * linked_select_forms(...)
  397: 
  398: linked_select_forms returns a string containing a <script></script> block
  399: and html for two <select> menus.  The select menus will be linked in that
  400: changing the value of the first menu will result in new values being placed
  401: in the second menu.  The values in the select menu will appear in alphabetical
  402: order.
  403: 
  404: linked_select_forms takes the following ordered inputs:
  405: 
  406: =over 4
  407: 
  408: =item * $formname, the name of the <form> tag
  409: 
  410: =item * $middletext, the text which appears between the <select> tags
  411: 
  412: =item * $firstdefault, the default value for the first menu
  413: 
  414: =item * $firstselectname, the name of the first <select> tag
  415: 
  416: =item * $secondselectname, the name of the second <select> tag
  417: 
  418: =item * $hashref, a reference to a hash containing the data for the menus.
  419: 
  420: =back 
  421: 
  422: Below is an example of such a hash.  Only the 'text', 'default', and 
  423: 'select2' keys must appear as stated.  keys(%menu) are the possible 
  424: values for the first select menu.  The text that coincides with the 
  425: first menu value is given in $menu{$choice1}->{'text'}.  The values 
  426: and text for the second menu are given in the hash pointed to by 
  427: $menu{$choice1}->{'select2'}.  
  428: 
  429:  my %menu = ( A1 => { text =>"Choice A1" ,
  430:                        default => "B3",
  431:                        select2 => { 
  432:                            B1 => "Choice B1",
  433:                            B2 => "Choice B2",
  434:                            B3 => "Choice B3",
  435:                            B4 => "Choice B4"
  436:                            }
  437:                    },
  438:                A2 => { text =>"Choice A2" ,
  439:                        default => "C2",
  440:                        select2 => { 
  441:                            C1 => "Choice C1",
  442:                            C2 => "Choice C2",
  443:                            C3 => "Choice C3"
  444:                            }
  445:                    },
  446:                A3 => { text =>"Choice A3" ,
  447:                        default => "D6",
  448:                        select2 => { 
  449:                            D1 => "Choice D1",
  450:                            D2 => "Choice D2",
  451:                            D3 => "Choice D3",
  452:                            D4 => "Choice D4",
  453:                            D5 => "Choice D5",
  454:                            D6 => "Choice D6",
  455:                            D7 => "Choice D7"
  456:                            }
  457:                    }
  458:                );
  459: 
  460: =cut
  461: 
  462: sub linked_select_forms {
  463:     my ($formname,
  464:         $middletext,
  465:         $firstdefault,
  466:         $firstselectname,
  467:         $secondselectname, 
  468:         $hashref
  469:         ) = @_;
  470:     my $second = "document.$formname.$secondselectname";
  471:     my $first = "document.$formname.$firstselectname";
  472:     # output the javascript to do the changing
  473:     my $result = '';
  474:     $result.="<script>\n";
  475:     $result.="var select2data = new Object();\n";
  476:     $" = '","';
  477:     my $debug = '';
  478:     foreach my $s1 (sort(keys(%$hashref))) {
  479:         $result.="select2data.d_$s1 = new Object();\n";        
  480:         $result.="select2data.d_$s1.def = new String('".
  481:             $hashref->{$s1}->{'default'}."');\n";
  482:         $result.="select2data.d_$s1.values = new Array(";        
  483:         my @s2values = sort(keys( %{ $hashref->{$s1}->{'select2'} } ));
  484:         $result.="\"@s2values\");\n";
  485:         $result.="select2data.d_$s1.texts = new Array(";        
  486:         my @s2texts;
  487:         foreach my $value (@s2values) {
  488:             push @s2texts, $hashref->{$s1}->{'select2'}->{$value};
  489:         }
  490:         $result.="\"@s2texts\");\n";
  491:     }
  492:     $"=' ';
  493:     $result.= <<"END";
  494: 
  495: function select1_changed() {
  496:     // Determine new choice
  497:     var newvalue = "d_" + $first.value;
  498:     // update select2
  499:     var values     = select2data[newvalue].values;
  500:     var texts      = select2data[newvalue].texts;
  501:     var select2def = select2data[newvalue].def;
  502:     var i;
  503:     // out with the old
  504:     for (i = 0; i < $second.options.length; i++) {
  505:         $second.options[i] = null;
  506:     }
  507:     // in with the nuclear
  508:     for (i=0;i<values.length; i++) {
  509:         $second.options[i] = new Option(values[i]);
  510:         $second.options[i].text = texts[i];
  511:         if (values[i] == select2def) {
  512:             $second.options[i].selected = true;
  513:         }
  514:     }
  515: }
  516: </script>
  517: END
  518:     # output the initial values for the selection lists
  519:     $result .= "<select size=\"1\" name=\"$firstselectname\" onchange=\"select1_changed()\">\n";
  520:     foreach my $value (sort(keys(%$hashref))) {
  521:         $result.="    <option value=\"$value\" ";
  522:         $result.=" selected=\"true\" " if ($value eq $firstdefault);
  523:         $result.=">".&mt($hashref->{$value}->{'text'})."</option>\n";
  524:     }
  525:     $result .= "</select>\n";
  526:     my %select2 = %{$hashref->{$firstdefault}->{'select2'}};
  527:     $result .= $middletext;
  528:     $result .= "<select size=\"1\" name=\"$secondselectname\">\n";
  529:     my $seconddefault = $hashref->{$firstdefault}->{'default'};
  530:     foreach my $value (sort(keys(%select2))) {
  531:         $result.="    <option value=\"$value\" ";        
  532:         $result.=" selected=\"true\" " if ($value eq $seconddefault);
  533:         $result.=">".&mt($select2{$value})."</option>\n";
  534:     }
  535:     $result .= "</select>\n";
  536:     #    return $debug;
  537:     return $result;
  538: }   #  end of sub linked_select_forms {
  539: 
  540: =pod
  541: 
  542: =item * help_open_topic($topic, $text, $stayOnPage, $width, $height)
  543: 
  544: Returns a string corresponding to an HTML link to the given help
  545: $topic, where $topic corresponds to the name of a .tex file in
  546: /home/httpd/html/adm/help/tex, with underscores replaced by
  547: spaces. 
  548: 
  549: $text will optionally be linked to the same topic, allowing you to
  550: link text in addition to the graphic. If you do not want to link
  551: text, but wish to specify one of the later parameters, pass an
  552: empty string. 
  553: 
  554: $stayOnPage is a value that will be interpreted as a boolean. If true,
  555: the link will not open a new window. If false, the link will open
  556: a new window using Javascript. (Default is false.) 
  557: 
  558: $width and $height are optional numerical parameters that will
  559: override the width and height of the popped up window, which may
  560: be useful for certain help topics with big pictures included. 
  561: 
  562: =cut
  563: 
  564: sub help_open_topic {
  565:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
  566:     $text = "" if (not defined $text);
  567:     $stayOnPage = 0 if (not defined $stayOnPage);
  568:     if ($ENV{'browser.interface'} eq 'textual' ||
  569: 	$ENV{'environment.remote'} eq 'off' ) {
  570: 	$stayOnPage=1;
  571:     }
  572:     $width = 350 if (not defined $width);
  573:     $height = 400 if (not defined $height);
  574:     my $filename = $topic;
  575:     $filename =~ s/ /_/g;
  576: 
  577:     my $template = "";
  578:     my $link;
  579: 
  580:     if (!$stayOnPage)
  581:     {
  582: 	$link = "javascript:void(open('/adm/help/${filename}.hlp', 'Help_for_$topic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
  583:     }
  584:     else
  585:     {
  586: 	$link = "/adm/help/${filename}.hlp";
  587:     }
  588: 
  589:     # Add the text
  590:     if ($text ne "")
  591:     {
  592: 	$template .= 
  593:   "<table bgcolor='#3333AA' cellspacing='1' cellpadding='1' border='0'><tr>".
  594:   "<td bgcolor='#5555FF'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
  595:     }
  596: 
  597:     # Add the graphic
  598:     $template .= <<"ENDTEMPLATE";
  599:  <a href="$link"><image src="/adm/help/gif/smallHelp.gif" border="0" alt="(Help: $topic)" /></a>
  600: ENDTEMPLATE
  601:     if ($text ne '') { $template.='</td></tr></table>' };
  602:     return $template;
  603: 
  604: }
  605: 
  606: # This is a quicky function for Latex cheatsheet editing, since it 
  607: # appears in at least four places
  608: sub helpLatexCheatsheet {
  609:     my $other = shift;
  610:     my $addOther = '';
  611:     if ($other) {
  612: 	$addOther = Apache::loncommon::help_open_topic($other, shift,
  613: 						       undef, undef, 600) .
  614: 							   '</td><td>';
  615:     }
  616:     return '<table><tr><td>'.
  617: 	$addOther .
  618: 	&Apache::loncommon::help_open_topic("Greek_Symbols",'Greek Symbols',
  619: 					    undef,undef,600)
  620: 	.'</td><td>'.
  621: 	&Apache::loncommon::help_open_topic("Other_Symbols",'Other Symbols',
  622: 					    undef,undef,600)
  623: 	.'</td></tr></table>';
  624: }
  625: 
  626: =pod
  627: 
  628: =item * csv_translate($text) 
  629: 
  630: Translate $text to allow it to be output as a 'comma seperated values' 
  631: format.
  632: 
  633: =cut
  634: 
  635: sub csv_translate {
  636:     my $text = shift;
  637:     $text =~ s/\"/\"\"/g;
  638:     $text =~ s/\n//g;
  639:     return $text;
  640: }
  641: 
  642: =pod
  643: 
  644: =item * change_content_javascript():
  645: 
  646: This and the next function allow you to create small sections of an
  647: otherwise static HTML page that you can update on the fly with
  648: Javascript, even in Netscape 4.
  649: 
  650: The Javascript fragment returned by this function (no E<lt>scriptE<gt> tag)
  651: must be written to the HTML page once. It will prove the Javascript
  652: function "change(name, content)". Calling the change function with the
  653: name of the section 
  654: you want to update, matching the name passed to C<changable_area>, and
  655: the new content you want to put in there, will put the content into
  656: that area.
  657: 
  658: B<Note>: Netscape 4 only reserves enough space for the changable area
  659: to contain room for the original contents. You need to "make space"
  660: for whatever changes you wish to make, and be B<sure> to check your
  661: code in Netscape 4. This feature in Netscape 4 is B<not> powerful;
  662: it's adequate for updating a one-line status display, but little more.
  663: This script will set the space to 100% width, so you only need to
  664: worry about height in Netscape 4.
  665: 
  666: Modern browsers are much less limiting, and if you can commit to the
  667: user not using Netscape 4, this feature may be used freely with
  668: pretty much any HTML.
  669: 
  670: =cut
  671: 
  672: sub change_content_javascript {
  673:     # If we're on Netscape 4, we need to use Layer-based code
  674:     if ($ENV{'browser.type'} eq 'netscape' &&
  675: 	$ENV{'browser.version'} =~ /^4\./) {
  676: 	return (<<NETSCAPE4);
  677: 	function change(name, content) {
  678: 	    doc = document.layers[name+"___escape"].layers[0].document;
  679: 	    doc.open();
  680: 	    doc.write(content);
  681: 	    doc.close();
  682: 	}
  683: NETSCAPE4
  684:     } else {
  685: 	# Otherwise, we need to use semi-standards-compliant code
  686: 	# (technically, "innerHTML" isn't standard but the equivalent
  687: 	# is really scary, and every useful browser supports it
  688: 	return (<<DOMBASED);
  689: 	function change(name, content) {
  690: 	    element = document.getElementById(name);
  691: 	    element.innerHTML = content;
  692: 	}
  693: DOMBASED
  694:     }
  695: }
  696: 
  697: =pod
  698: 
  699: =item * changable_area($name, $origContent):
  700: 
  701: This provides a "changable area" that can be modified on the fly via
  702: the Javascript code provided in C<change_content_javascript>. $name is
  703: the name you will use to reference the area later; do not repeat the
  704: same name on a given HTML page more then once. $origContent is what
  705: the area will originally contain, which can be left blank.
  706: 
  707: =cut
  708: 
  709: sub changable_area {
  710:     my ($name, $origContent) = @_;
  711: 
  712:     if ($ENV{'browser.type'} eq 'netscape' &&
  713: 	$ENV{'browser.version'} =~ /^4\./) {
  714: 	# If this is netscape 4, we need to use the Layer tag
  715: 	return "<ilayer width='100%' id='${name}___escape' overflow='none'><layer width='100%' id='$name' overflow='none'>$origContent</layer></ilayer>";
  716:     } else {
  717: 	return "<span id='$name'>$origContent</span>";
  718:     }
  719: }
  720: 
  721: =pod
  722: 
  723: =back
  724: 
  725: =cut
  726: 
  727: ###############################################################
  728: ##        Home server <option> list generating code          ##
  729: ###############################################################
  730: 
  731: =pod
  732: 
  733: =head1 Home Server option list generating code
  734: 
  735: =over 4
  736: 
  737: =item * get_domains()
  738: 
  739: Returns an array containing each of the domains listed in the hosts.tab
  740: file.
  741: 
  742: =cut
  743: 
  744: #-------------------------------------------
  745: sub get_domains {
  746:     # The code below was stolen from "The Perl Cookbook", p 102, 1st ed.
  747:     my @domains;
  748:     my %seen;
  749:     foreach (sort values(%Apache::lonnet::hostdom)) {
  750:         push (@domains,$_) unless $seen{$_}++;
  751:     }
  752:     return @domains;
  753: }
  754: 
  755: #-------------------------------------------
  756: 
  757: =pod
  758: 
  759: =item * select_form($defdom,$name,%hash)
  760: 
  761: Returns a string containing a <select name='$name' size='1'> form to 
  762: allow a user to select options from a hash option_name => displayed text.  
  763: See lonrights.pm for an example invocation and use.
  764: 
  765: =cut
  766: 
  767: #-------------------------------------------
  768: sub select_form {
  769:     my ($def,$name,%hash) = @_;
  770:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
  771:     foreach (sort keys %hash) {
  772:         $selectform.="<option value=\"$_\" ".
  773:             ($_ eq $def ? 'selected' : '').
  774:                 ">".&mt($hash{$_})."</option>\n";
  775:     }
  776:     $selectform.="</select>";
  777:     return $selectform;
  778: }
  779: 
  780: 
  781: #-------------------------------------------
  782: 
  783: =pod
  784: 
  785: =item * select_dom_form($defdom,$name,$includeempty)
  786: 
  787: Returns a string containing a <select name='$name' size='1'> form to 
  788: allow a user to select the domain to preform an operation in.  
  789: See loncreateuser.pm for an example invocation and use.
  790: 
  791: If the $includeempty flag is set, it also includes an empty choice ("no domain
  792: selected");
  793: 
  794: =cut
  795: 
  796: #-------------------------------------------
  797: sub select_dom_form {
  798:     my ($defdom,$name,$includeempty) = @_;
  799:     my @domains = get_domains();
  800:     if ($includeempty) { @domains=('',@domains); }
  801:     my $selectdomain = "<select name=\"$name\" size=\"1\">\n";
  802:     foreach (@domains) {
  803:         $selectdomain.="<option value=\"$_\" ".
  804:             ($_ eq $defdom ? 'selected' : '').
  805:                 ">$_</option>\n";
  806:     }
  807:     $selectdomain.="</select>";
  808:     return $selectdomain;
  809: }
  810: 
  811: #-------------------------------------------
  812: 
  813: =pod
  814: 
  815: =item * get_library_servers($domain)
  816: 
  817: Returns a hash which contains keys like '103l3' and values like 
  818: 'kirk.lite.msu.edu'.  All of the keys will be for machines in the
  819: given $domain.
  820: 
  821: =cut
  822: 
  823: #-------------------------------------------
  824: sub get_library_servers {
  825:     my $domain = shift;
  826:     my %library_servers;
  827:     foreach (keys(%Apache::lonnet::libserv)) {
  828:         if ($Apache::lonnet::hostdom{$_} eq $domain) {
  829:             $library_servers{$_} = $Apache::lonnet::hostname{$_};
  830:         }
  831:     }
  832:     return %library_servers;
  833: }
  834: 
  835: #-------------------------------------------
  836: 
  837: =pod
  838: 
  839: =item * home_server_option_list($domain)
  840: 
  841: returns a string which contains an <option> list to be used in a 
  842: <select> form input.  See loncreateuser.pm for an example.
  843: 
  844: =cut
  845: 
  846: #-------------------------------------------
  847: sub home_server_option_list {
  848:     my $domain = shift;
  849:     my %servers = &get_library_servers($domain);
  850:     my $result = '';
  851:     foreach (sort keys(%servers)) {
  852:         $result.=
  853:             '<option value="'.$_.'">'.$_.' '.$servers{$_}."</option>\n";
  854:     }
  855:     return $result;
  856: }
  857: 
  858: =pod
  859: 
  860: =back
  861: 
  862: =cut
  863: 
  864: ###############################################################
  865: ##                  Decoding User Agent                      ##
  866: ###############################################################
  867: 
  868: =pod
  869: 
  870: =head1 Decoding the User Agent
  871: 
  872: =over 4
  873: 
  874: =item * &decode_user_agent()
  875: 
  876: Inputs: $r
  877: 
  878: Outputs:
  879: 
  880: =over 4
  881: 
  882: =item * $httpbrowser
  883: 
  884: =item * $clientbrowser
  885: 
  886: =item * $clientversion
  887: 
  888: =item * $clientmathml
  889: 
  890: =item * $clientunicode
  891: 
  892: =item * $clientos
  893: 
  894: =back
  895: 
  896: =cut
  897: 
  898: ###############################################################
  899: ###############################################################
  900: sub decode_user_agent {
  901:     my @browsertype=split(/\&/,$Apache::lonnet::perlvar{"lonBrowsDet"});
  902:     my %mathcap=split(/\&/,$$Apache::lonnet::perlvar{"lonMathML"});
  903:     my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
  904:     my $clientbrowser='unknown';
  905:     my $clientversion='0';
  906:     my $clientmathml='';
  907:     my $clientunicode='0';
  908:     for (my $i=0;$i<=$#browsertype;$i++) {
  909:         my ($bname,$match,$notmatch,$vreg,$minv,$univ)=split(/\:/,$browsertype[$i]);
  910: 	if (($httpbrowser=~/$match/i)  && ($httpbrowser!~/$notmatch/i)) {
  911: 	    $clientbrowser=$bname;
  912:             $httpbrowser=~/$vreg/i;
  913: 	    $clientversion=$1;
  914:             $clientmathml=($clientversion>=$minv);
  915:             $clientunicode=($clientversion>=$univ);
  916: 	}
  917:     }
  918:     my $clientos='unknown';
  919:     if (($httpbrowser=~/linux/i) ||
  920:         ($httpbrowser=~/unix/i) ||
  921:         ($httpbrowser=~/ux/i) ||
  922:         ($httpbrowser=~/solaris/i)) { $clientos='unix'; }
  923:     if (($httpbrowser=~/vax/i) ||
  924:         ($httpbrowser=~/vms/i)) { $clientos='vms'; }
  925:     if ($httpbrowser=~/next/i) { $clientos='next'; }
  926:     if (($httpbrowser=~/mac/i) ||
  927:         ($httpbrowser=~/powerpc/i)) { $clientos='mac'; }
  928:     if ($httpbrowser=~/win/i) { $clientos='win'; }
  929:     if ($httpbrowser=~/embed/i) { $clientos='pda'; }
  930:     return ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
  931:             $clientunicode,$clientos,);
  932: }
  933: 
  934: =pod
  935: 
  936: =back
  937: 
  938: =cut
  939: 
  940: ###############################################################
  941: ##    Authentication changing form generation subroutines    ##
  942: ###############################################################
  943: ##
  944: ## All of the authform_xxxxxxx subroutines take their inputs in a
  945: ## hash, and have reasonable default values.
  946: ##
  947: ##    formname = the name given in the <form> tag.
  948: #-------------------------------------------
  949: 
  950: =pod
  951: 
  952: =head1 Authentication Routines
  953: 
  954: =over 4
  955: 
  956: =item * authform_xxxxxx
  957: 
  958: The authform_xxxxxx subroutines provide javascript and html forms which 
  959: handle some of the conveniences required for authentication forms.  
  960: This is not an optimal method, but it works.  
  961: 
  962: See loncreateuser.pm for invocation and use examples.
  963: 
  964: =over 4
  965: 
  966: =item * authform_header
  967: 
  968: =item * authform_authorwarning
  969: 
  970: =item * authform_nochange
  971: 
  972: =item * authform_kerberos
  973: 
  974: =item * authform_internal
  975: 
  976: =item * authform_filesystem
  977: 
  978: =back
  979: 
  980: =cut
  981: 
  982: #-------------------------------------------
  983: sub authform_header{  
  984:     my %in = (
  985:         formname => 'cu',
  986:         kerb_def_dom => '',
  987:         @_,
  988:     );
  989:     $in{'formname'} = 'document.' . $in{'formname'};
  990:     my $result='';
  991: 
  992: #---------------------------------------------- Code for upper case translation
  993:     my $Javascript_toUpperCase;
  994:     unless ($in{kerb_def_dom}) {
  995:         $Javascript_toUpperCase =<<"END";
  996:         switch (choice) {
  997:            case 'krb': currentform.elements[choicearg].value =
  998:                currentform.elements[choicearg].value.toUpperCase();
  999:                break;
 1000:            default:
 1001:         }
 1002: END
 1003:     } else {
 1004:         $Javascript_toUpperCase = "";
 1005:     }
 1006: 
 1007:     $result.=<<"END";
 1008: var current = new Object();
 1009: current.radiovalue = 'nochange';
 1010: current.argfield = null;
 1011: 
 1012: function changed_radio(choice,currentform) {
 1013:     var choicearg = choice + 'arg';
 1014:     // If a radio button in changed, we need to change the argfield
 1015:     if (current.radiovalue != choice) {
 1016:         current.radiovalue = choice;
 1017:         if (current.argfield != null) {
 1018:             currentform.elements[current.argfield].value = '';
 1019:         }
 1020:         if (choice == 'nochange') {
 1021:             current.argfield = null;
 1022:         } else {
 1023:             current.argfield = choicearg;
 1024:             switch(choice) {
 1025:                 case 'krb': 
 1026:                     currentform.elements[current.argfield].value = 
 1027:                         "$in{'kerb_def_dom'}";
 1028:                 break;
 1029:               default:
 1030:                 break;
 1031:             }
 1032:         }
 1033:     }
 1034:     return;
 1035: }
 1036: 
 1037: function changed_text(choice,currentform) {
 1038:     var choicearg = choice + 'arg';
 1039:     if (currentform.elements[choicearg].value !='') {
 1040:         $Javascript_toUpperCase
 1041:         // clear old field
 1042:         if ((current.argfield != choicearg) && (current.argfield != null)) {
 1043:             currentform.elements[current.argfield].value = '';
 1044:         }
 1045:         current.argfield = choicearg;
 1046:     }
 1047:     set_auth_radio_buttons(choice,currentform);
 1048:     return;
 1049: }
 1050: 
 1051: function set_auth_radio_buttons(newvalue,currentform) {
 1052:     var i=0;
 1053:     while (i < currentform.login.length) {
 1054:         if (currentform.login[i].value == newvalue) { break; }
 1055:         i++;
 1056:     }
 1057:     if (i == currentform.login.length) {
 1058:         return;
 1059:     }
 1060:     current.radiovalue = newvalue;
 1061:     currentform.login[i].checked = true;
 1062:     return;
 1063: }
 1064: END
 1065:     return $result;
 1066: }
 1067: 
 1068: sub authform_authorwarning{
 1069:     my $result='';
 1070:     $result=<<"END";
 1071: <i>As a general rule, only authors or co-authors should be filesystem
 1072: authenticated (which allows access to the server filesystem).</i>
 1073: END
 1074:     return $result;
 1075: }
 1076: 
 1077: sub authform_nochange{  
 1078:     my %in = (
 1079:               formname => 'document.cu',
 1080:               kerb_def_dom => 'MSU.EDU',
 1081:               @_,
 1082:           );
 1083:     my $result='';
 1084:     $result.=<<"END";
 1085: <input type="radio" name="login" value="nochange" checked="checked"
 1086:        onclick="javascript:changed_radio('nochange',$in{'formname'});" />
 1087: Do not change login data
 1088: END
 1089:     return $result;
 1090: }
 1091: 
 1092: sub authform_kerberos{  
 1093:     my %in = (
 1094:               formname => 'document.cu',
 1095:               kerb_def_dom => 'MSU.EDU',
 1096:               kerb_def_auth => 'krb4',
 1097:               @_,
 1098:               );
 1099:     my $result='';
 1100:     my $check4;
 1101:     my $check5;
 1102:     if ($in{'kerb_def_auth'} eq 'krb5') {
 1103:        $check5 = " checked=\"on\"";
 1104:     } else {
 1105:        $check4 = " checked=\"on\"";
 1106:     }
 1107:     $result.=<<"END";
 1108: <input type="radio" name="login" value="krb" 
 1109:        onclick="javascript:changed_radio('krb',$in{'formname'});"
 1110:        onchange="javascript:changed_radio('krb',$in{'formname'});" />
 1111: Kerberos authenticated with domain
 1112: <input type="text" size="10" name="krbarg" value="$in{'kerb_def_dom'}"
 1113:        onchange="javascript:changed_text('krb',$in{'formname'});" />
 1114: <input type="radio" name="krbver" value="4" $check4 />Version 4
 1115: <input type="radio" name="krbver" value="5" $check5 />Version 5
 1116: END
 1117:     return $result;
 1118: }
 1119: 
 1120: sub authform_internal{  
 1121:     my %args = (
 1122:                 formname => 'document.cu',
 1123:                 kerb_def_dom => 'MSU.EDU',
 1124:                 @_,
 1125:                 );
 1126:     my $result='';
 1127:     $result.=<<"END";
 1128: <input type="radio" name="login" value="int"
 1129:        onchange="javascript:changed_radio('int',$args{'formname'});"
 1130:        onclick="javascript:changed_radio('int',$args{'formname'});" />
 1131: Internally authenticated (with initial password 
 1132: <input type="text" size="10" name="intarg" value=""
 1133:        onchange="javascript:changed_text('int',$args{'formname'});" />)
 1134: END
 1135:     return $result;
 1136: }
 1137: 
 1138: sub authform_local{  
 1139:     my %in = (
 1140:               formname => 'document.cu',
 1141:               kerb_def_dom => 'MSU.EDU',
 1142:               @_,
 1143:               );
 1144:     my $result='';
 1145:     $result.=<<"END";
 1146: <input type="radio" name="login" value="loc"
 1147:        onchange="javascript:changed_radio('loc',$in{'formname'});"
 1148:        onclick="javascript:changed_radio('loc',$in{'formname'});" />
 1149: Local Authentication with argument
 1150: <input type="text" size="10" name="locarg" value=""
 1151:        onchange="javascript:changed_text('loc',$in{'formname'});" />
 1152: END
 1153:     return $result;
 1154: }
 1155: 
 1156: sub authform_filesystem{  
 1157:     my %in = (
 1158:               formname => 'document.cu',
 1159:               kerb_def_dom => 'MSU.EDU',
 1160:               @_,
 1161:               );
 1162:     my $result='';
 1163:     $result.=<<"END";
 1164: <input type="radio" name="login" value="fsys" 
 1165:        onchange="javascript:changed_radio('fsys',$in{'formname'});"
 1166:        onclick="javascript:changed_radio('fsys',$in{'formname'});" />
 1167: Filesystem authenticated (with initial password 
 1168: <input type="text" size="10" name="fsysarg" value=""
 1169:        onchange="javascript:changed_text('fsys',$in{'formname'});">)
 1170: END
 1171:     return $result;
 1172: }
 1173: 
 1174: =pod
 1175: 
 1176: =back
 1177: 
 1178: =cut
 1179: 
 1180: ###############################################################
 1181: ##    Get Authentication Defaults for Domain                 ##
 1182: ###############################################################
 1183: 
 1184: =pod
 1185: 
 1186: =head1 Domains and Authentication
 1187: 
 1188: Returns default authentication type and an associated argument as
 1189: listed in file 'domain.tab'.
 1190: 
 1191: =over 4
 1192: 
 1193: =item * get_auth_defaults
 1194: 
 1195: get_auth_defaults($target_domain) returns the default authentication
 1196: type and an associated argument (initial password or a kerberos domain).
 1197: These values are stored in lonTabs/domain.tab
 1198: 
 1199: ($def_auth, $def_arg) = &get_auth_defaults($target_domain);
 1200: 
 1201: If target_domain is not found in domain.tab, returns nothing ('').
 1202: 
 1203: =cut
 1204: 
 1205: #-------------------------------------------
 1206: sub get_auth_defaults {
 1207:     my $domain=shift;
 1208:     return ($Apache::lonnet::domain_auth_def{$domain},$Apache::lonnet::domain_auth_arg_def{$domain});
 1209: }
 1210: ###############################################################
 1211: ##   End Get Authentication Defaults for Domain              ##
 1212: ###############################################################
 1213: 
 1214: ###############################################################
 1215: ##    Get Kerberos Defaults for Domain                 ##
 1216: ###############################################################
 1217: ##
 1218: ## Returns default kerberos version and an associated argument
 1219: ## as listed in file domain.tab. If not listed, provides
 1220: ## appropriate default domain and kerberos version.
 1221: ##
 1222: #-------------------------------------------
 1223: 
 1224: =pod
 1225: 
 1226: =item * get_kerberos_defaults
 1227: 
 1228: get_kerberos_defaults($target_domain) returns the default kerberos
 1229: version and domain. If not found in domain.tabs, it defaults to
 1230: version 4 and the domain of the server.
 1231: 
 1232: ($def_version, $def_krb_domain) = &get_kerberos_defaults($target_domain);
 1233: 
 1234: =cut
 1235: 
 1236: #-------------------------------------------
 1237: sub get_kerberos_defaults {
 1238:     my $domain=shift;
 1239:     my ($krbdef,$krbdefdom) =
 1240:         &Apache::loncommon::get_auth_defaults($domain);
 1241:     unless ($krbdef =~/^krb/ && $krbdefdom) {
 1242:         $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/;
 1243:         my $krbdefdom=$1;
 1244:         $krbdefdom=~tr/a-z/A-Z/;
 1245:         $krbdef = "krb4";
 1246:     }
 1247:     return ($krbdef,$krbdefdom);
 1248: }
 1249: 
 1250: =pod
 1251: 
 1252: =back
 1253: 
 1254: =cut
 1255: 
 1256: ###############################################################
 1257: ##                Thesaurus Functions                        ##
 1258: ###############################################################
 1259: 
 1260: =pod
 1261: 
 1262: =head1 Thesaurus Functions
 1263: 
 1264: =over 4
 1265: 
 1266: =item * initialize_keywords
 1267: 
 1268: Initializes the package variable %Keywords if it is empty.  Uses the
 1269: package variable $thesaurus_db_file.
 1270: 
 1271: =cut
 1272: 
 1273: ###################################################
 1274: 
 1275: sub initialize_keywords {
 1276:     return 1 if (scalar keys(%Keywords));
 1277:     # If we are here, %Keywords is empty, so fill it up
 1278:     #   Make sure the file we need exists...
 1279:     if (! -e $thesaurus_db_file) {
 1280:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file".
 1281:                                  " failed because it does not exist");
 1282:         return 0;
 1283:     }
 1284:     #   Set up the hash as a database
 1285:     my %thesaurus_db;
 1286:     if (! tie(%thesaurus_db,'GDBM_File',
 1287:               $thesaurus_db_file,&GDBM_READER(),0640)){
 1288:         &Apache::lonnet::logthis("Could not tie \%thesaurus_db to ".
 1289:                                  $thesaurus_db_file);
 1290:         return 0;
 1291:     } 
 1292:     #  Get the average number of appearances of a word.
 1293:     my $avecount = $thesaurus_db{'average.count'};
 1294:     #  Put keywords (those that appear > average) into %Keywords
 1295:     while (my ($word,$data)=each (%thesaurus_db)) {
 1296:         my ($count,undef) = split /:/,$data;
 1297:         $Keywords{$word}++ if ($count > $avecount);
 1298:     }
 1299:     untie %thesaurus_db;
 1300:     # Remove special values from %Keywords.
 1301:     foreach ('total.count','average.count') {
 1302:         delete($Keywords{$_}) if (exists($Keywords{$_}));
 1303:     }
 1304:     return 1;
 1305: }
 1306: 
 1307: ###################################################
 1308: 
 1309: =pod
 1310: 
 1311: =item * keyword($word)
 1312: 
 1313: Returns true if $word is a keyword.  A keyword is a word that appears more 
 1314: than the average number of times in the thesaurus database.  Calls 
 1315: &initialize_keywords
 1316: 
 1317: =cut
 1318: 
 1319: ###################################################
 1320: 
 1321: sub keyword {
 1322:     return if (!&initialize_keywords());
 1323:     my $word=lc(shift());
 1324:     $word=~s/\W//g;
 1325:     return exists($Keywords{$word});
 1326: }
 1327: 
 1328: ###############################################################
 1329: 
 1330: =pod 
 1331: 
 1332: =item * get_related_words
 1333: 
 1334: Look up a word in the thesaurus.  Takes a scalar arguement and returns
 1335: an array of words.  If the keyword is not in the thesaurus, an empty array
 1336: will be returned.  The order of the words returned is determined by the
 1337: database which holds them.
 1338: 
 1339: Uses global $thesaurus_db_file.
 1340: 
 1341: =cut
 1342: 
 1343: ###############################################################
 1344: sub get_related_words {
 1345:     my $keyword = shift;
 1346:     my %thesaurus_db;
 1347:     if (! -e $thesaurus_db_file) {
 1348:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file ".
 1349:                                  "failed because the file does not exist");
 1350:         return ();
 1351:     }
 1352:     if (! tie(%thesaurus_db,'GDBM_File',
 1353:               $thesaurus_db_file,&GDBM_READER(),0640)){
 1354:         return ();
 1355:     } 
 1356:     my @Words=();
 1357:     if (exists($thesaurus_db{$keyword})) {
 1358:         $_ = $thesaurus_db{$keyword};
 1359:         (undef,@Words) = split/:/;  # The first element is the number of times
 1360:                                     # the word appears.  We do not need it now.
 1361:         for (my $i=0;$i<=$#Words;$i++) {
 1362:             ($Words[$i],undef)= split/\,/,$Words[$i];
 1363:         }
 1364:     }
 1365:     untie %thesaurus_db;
 1366:     return @Words;
 1367: }
 1368: 
 1369: =pod
 1370: 
 1371: =back
 1372: 
 1373: =cut
 1374: 
 1375: # -------------------------------------------------------------- Plaintext name
 1376: =pod
 1377: 
 1378: =head1 User Name Functions
 1379: 
 1380: =over 4
 1381: 
 1382: =item * plainname($uname,$udom)
 1383: 
 1384: Takes a users logon name and returns it as a string in
 1385: "first middle last generation" form
 1386: 
 1387: =cut
 1388: 
 1389: ###############################################################
 1390: sub plainname {
 1391:     my ($uname,$udom)=@_;
 1392:     my %names=&Apache::lonnet::get('environment',
 1393:                     ['firstname','middlename','lastname','generation'],
 1394: 					 $udom,$uname);
 1395:     my $name=$names{'firstname'}.' '.$names{'middlename'}.' '.
 1396: 	$names{'lastname'}.' '.$names{'generation'};
 1397:     $name=~s/\s+$//;
 1398:     $name=~s/\s+/ /g;
 1399:     return $name;
 1400: }
 1401: 
 1402: # -------------------------------------------------------------------- Nickname
 1403: =pod
 1404: 
 1405: =item * nickname($uname,$udom)
 1406: 
 1407: Gets a users name and returns it as a string as
 1408: 
 1409: "&quot;nickname&quot;"
 1410: 
 1411: if the user has a nickname or
 1412: 
 1413: "first middle last generation"
 1414: 
 1415: if the user does not
 1416: 
 1417: =cut
 1418: 
 1419: sub nickname {
 1420:     my ($uname,$udom)=@_;
 1421:     my %names=&Apache::lonnet::get('environment',
 1422:   ['nickname','firstname','middlename','lastname','generation'],$udom,$uname);
 1423:     my $name=$names{'nickname'};
 1424:     if ($name) {
 1425:        $name='&quot;'.$name.'&quot;'; 
 1426:     } else {
 1427:        $name=$names{'firstname'}.' '.$names{'middlename'}.' '.
 1428: 	     $names{'lastname'}.' '.$names{'generation'};
 1429:        $name=~s/\s+$//;
 1430:        $name=~s/\s+/ /g;
 1431:     }
 1432:     return $name;
 1433: }
 1434: 
 1435: 
 1436: # ------------------------------------------------------------------ Screenname
 1437: 
 1438: =pod
 1439: 
 1440: =item * screenname($uname,$udom)
 1441: 
 1442: Gets a users screenname and returns it as a string
 1443: 
 1444: =cut
 1445: 
 1446: sub screenname {
 1447:     my ($uname,$udom)=@_;
 1448:     my %names=
 1449:  &Apache::lonnet::get('environment',['screenname'],$udom,$uname);
 1450:     return $names{'screenname'};
 1451: }
 1452: 
 1453: # ------------------------------------------------------------- Message Wrapper
 1454: 
 1455: sub messagewrapper {
 1456:     my ($link,$un,$do)=@_;
 1457:     return 
 1458: "<a href='/adm/email?compose=individual&recname=$un&recdom=$do'>$link</a>";
 1459: }
 1460: # --------------------------------------------------------------- Notes Wrapper
 1461: 
 1462: sub noteswrapper {
 1463:     my ($link,$un,$do)=@_;
 1464:     return 
 1465: "<a href='/adm/email?recordftf=retrieve&recname=$un&recdom=$do'>$link</a>";
 1466: }
 1467: # ------------------------------------------------------------- Aboutme Wrapper
 1468: 
 1469: sub aboutmewrapper {
 1470:     my ($link,$username,$domain)=@_;
 1471:     return "<a href='/adm/$domain/$username/aboutme'>$link</a>";
 1472: }
 1473: 
 1474: # ------------------------------------------------------------ Syllabus Wrapper
 1475: 
 1476: 
 1477: sub syllabuswrapper {
 1478:     my ($linktext,$coursedir,$domain,$fontcolor)=@_;
 1479:     if ($fontcolor) { 
 1480:         $linktext='<font color="'.$fontcolor.'">'.$linktext.'</font>'; 
 1481:     }
 1482:     return "<a href='/public/$domain/$coursedir/syllabus'>$linktext</a>";
 1483: }
 1484: 
 1485: =pod
 1486: 
 1487: =back
 1488: 
 1489: =head1 Access .tab File Data
 1490: 
 1491: =over 4
 1492: 
 1493: =item * languageids() 
 1494: 
 1495: returns list of all language ids
 1496: 
 1497: =cut
 1498: 
 1499: sub languageids {
 1500:     return sort(keys(%language));
 1501: }
 1502: 
 1503: =pod
 1504: 
 1505: =item * languagedescription() 
 1506: 
 1507: returns description of a specified language id
 1508: 
 1509: =cut
 1510: 
 1511: sub languagedescription {
 1512:     return $language{shift(@_)};
 1513: }
 1514: 
 1515: =pod
 1516: 
 1517: =item * copyrightids() 
 1518: 
 1519: returns list of all copyrights
 1520: 
 1521: =cut
 1522: 
 1523: sub copyrightids {
 1524:     return sort(keys(%cprtag));
 1525: }
 1526: 
 1527: =pod
 1528: 
 1529: =item * copyrightdescription() 
 1530: 
 1531: returns description of a specified copyright id
 1532: 
 1533: =cut
 1534: 
 1535: sub copyrightdescription {
 1536:     return $cprtag{shift(@_)};
 1537: }
 1538: 
 1539: =pod
 1540: 
 1541: =item * filecategories() 
 1542: 
 1543: returns list of all file categories
 1544: 
 1545: =cut
 1546: 
 1547: sub filecategories {
 1548:     return sort(keys(%category_extensions));
 1549: }
 1550: 
 1551: =pod
 1552: 
 1553: =item * filecategorytypes() 
 1554: 
 1555: returns list of file types belonging to a given file
 1556: category
 1557: 
 1558: =cut
 1559: 
 1560: sub filecategorytypes {
 1561:     return @{$category_extensions{lc($_[0])}};
 1562: }
 1563: 
 1564: =pod
 1565: 
 1566: =item * fileembstyle() 
 1567: 
 1568: returns embedding style for a specified file type
 1569: 
 1570: =cut
 1571: 
 1572: sub fileembstyle {
 1573:     return $fe{lc(shift(@_))};
 1574: }
 1575: 
 1576: =pod
 1577: 
 1578: =item * filedescription() 
 1579: 
 1580: returns description for a specified file type
 1581: 
 1582: =cut
 1583: 
 1584: sub filedescription {
 1585:     return $fd{lc(shift(@_))};
 1586: }
 1587: 
 1588: =pod
 1589: 
 1590: =item * filedescriptionex() 
 1591: 
 1592: returns description for a specified file type with
 1593: extra formatting
 1594: 
 1595: =cut
 1596: 
 1597: sub filedescriptionex {
 1598:     my $ex=shift;
 1599:     return '.'.$ex.' '.$fd{lc($ex)};
 1600: }
 1601: 
 1602: # End of .tab access
 1603: =pod
 1604: 
 1605: =back
 1606: 
 1607: =cut
 1608: 
 1609: # ------------------------------------------------------------------ File Types
 1610: sub fileextensions {
 1611:     return sort(keys(%fe));
 1612: }
 1613: 
 1614: # ----------------------------------------------------------- Display Languages
 1615: # returns a hash with all desired display languages
 1616: #
 1617: 
 1618: sub display_languages {
 1619:     my %languages=();
 1620:     foreach (&preferred_languages()) {
 1621: 	$languages{$_}=1;
 1622:     }
 1623:     &get_unprocessed_cgi($ENV{'QUERY_STRING'},['displaylanguage']);
 1624:     if ($ENV{'form.displaylanguage'}) {
 1625: 	foreach (split(/\s*(\,|\;|\:)\s*/,$ENV{'form.displaylanguage'})) {
 1626: 	    $languages{$_}=1;
 1627:         }
 1628:     }
 1629:     return %languages;
 1630: }
 1631: 
 1632: sub preferred_languages {
 1633:     my @languages=();
 1634:     if ($ENV{'environment.languages'}) {
 1635: 	@languages=split(/\s*(\,|\;|\:)\s*/,$ENV{'environment.languages'});
 1636:     }
 1637:     if ($ENV{'course.'.$ENV{'request.course.id'}.'.languages'}) {
 1638: 	@languages=(@languages,split(/\s*(\,|\;|\:)\s*/,
 1639: 	         $ENV{'course.'.$ENV{'request.course.id'}.'.languages'}));
 1640:     }
 1641:     my $browser=(split(/\;/,$ENV{'HTTP_ACCEPT_LANGUAGE'}))[0];
 1642:     if ($browser) {
 1643: 	@languages=(@languages,split(/\s*(\,|\;|\:)\s*/,$browser));
 1644:     }
 1645:     if ($Apache::lonnet::domain_lang_def{$ENV{'user.domain'}}) {
 1646: 	@languages=(@languages,
 1647: 		$Apache::lonnet::domain_lang_def{$ENV{'user.domain'}});
 1648:     }
 1649:     if ($Apache::lonnet::domain_lang_def{$ENV{'request.role.domain'}}) {
 1650: 	@languages=(@languages,
 1651: 		$Apache::lonnet::domain_lang_def{$ENV{'request.role.domain'}});
 1652:     }
 1653:     if ($Apache::lonnet::domain_lang_def{
 1654: 	                          $Apache::lonnet::perlvar{'lonDefDomain'}}) {
 1655: 	@languages=(@languages,
 1656: 		$Apache::lonnet::domain_lang_def{
 1657:                                   $Apache::lonnet::perlvar{'lonDefDomain'}});
 1658:     }
 1659: # turn "en-ca" into "en-ca,en"
 1660:     my @genlanguages;
 1661:     foreach (@languages) {
 1662: 	unless ($_=~/\w/) { next; }
 1663: 	push (@genlanguages,$_);
 1664: 	if ($_=~/(\-|\_)/) {
 1665: 	    push (@genlanguages,(split(/(\-|\_)/,$_))[0]);
 1666: 	}
 1667:     }
 1668:     return @genlanguages;
 1669: }
 1670: 
 1671: ###############################################################
 1672: ##               Student Answer Attempts                     ##
 1673: ###############################################################
 1674: 
 1675: =pod
 1676: 
 1677: =head1 Alternate Problem Views
 1678: 
 1679: =over 4
 1680: 
 1681: =item * get_previous_attempt($symb, $username, $domain, $course,
 1682:     $getattempt, $regexp, $gradesub)
 1683: 
 1684: Return string with previous attempt on problem. Arguments:
 1685: 
 1686: =over 4
 1687: 
 1688: =item * $symb: Problem, including path
 1689: 
 1690: =item * $username: username of the desired student
 1691: 
 1692: =item * $domain: domain of the desired student
 1693: 
 1694: =item * $course: Course ID
 1695: 
 1696: =item * $getattempt: Leave blank for all attempts, otherwise put
 1697:     something
 1698: 
 1699: =item * $regexp: if string matches this regexp, the string will be
 1700:     sent to $gradesub
 1701: 
 1702: =item * $gradesub: routine that processes the string if it matches $regexp
 1703: 
 1704: =back
 1705: 
 1706: The output string is a table containing all desired attempts, if any.
 1707: 
 1708: =cut
 1709: 
 1710: sub get_previous_attempt {
 1711:   my ($symb,$username,$domain,$course,$getattempt,$regexp,$gradesub)=@_;
 1712:   my $prevattempts='';
 1713:   no strict 'refs';
 1714:   if ($symb) {
 1715:     my (%returnhash)=
 1716:       &Apache::lonnet::restore($symb,$course,$domain,$username);
 1717:     if ($returnhash{'version'}) {
 1718:       my %lasthash=();
 1719:       my $version;
 1720:       for ($version=1;$version<=$returnhash{'version'};$version++) {
 1721:         foreach (sort(split(/\:/,$returnhash{$version.':keys'}))) {
 1722: 	  $lasthash{$_}=$returnhash{$version.':'.$_};
 1723:         }
 1724:       }
 1725:       $prevattempts='<table border="0" width="100%"><tr><td bgcolor="#777777">';
 1726:       $prevattempts.='<table border="0" width="100%"><tr bgcolor="#e6ffff"><td>History</td>';
 1727:       foreach (sort(keys %lasthash)) {
 1728: 	my ($ign,@parts) = split(/\./,$_);
 1729: 	if ($#parts > 0) {
 1730: 	  my $data=$parts[-1];
 1731: 	  pop(@parts);
 1732: 	  $prevattempts.='<td>Part '.join('.',@parts).'<br />'.$data.'&nbsp;</td>';
 1733: 	} else {
 1734: 	  if ($#parts == 0) {
 1735: 	    $prevattempts.='<th>'.$parts[0].'</th>';
 1736: 	  } else {
 1737: 	    $prevattempts.='<th>'.$ign.'</th>';
 1738: 	  }
 1739: 	}
 1740:       }
 1741:       if ($getattempt eq '') {
 1742: 	for ($version=1;$version<=$returnhash{'version'};$version++) {
 1743: 	  $prevattempts.='</tr><tr bgcolor="#ffffe6"><td>Transaction '.$version.'</td>';
 1744: 	    foreach (sort(keys %lasthash)) {
 1745: 	       my $value;
 1746: 	       if ($_ =~ /timestamp/) {
 1747: 		  $value=scalar(localtime($returnhash{$version.':'.$_}));
 1748: 	       } else {
 1749: 		  $value=$returnhash{$version.':'.$_};
 1750: 	       }
 1751: 	       $prevattempts.='<td>'.$value.'&nbsp;</td>';   
 1752: 	    }
 1753: 	 }
 1754:       }
 1755:       $prevattempts.='</tr><tr bgcolor="#ffffe6"><td>Current</td>';
 1756:       foreach (sort(keys %lasthash)) {
 1757: 	my $value;
 1758: 	if ($_ =~ /timestamp/) {
 1759: 	  $value=scalar(localtime($lasthash{$_}));
 1760: 	} else {
 1761: 	  $value=$lasthash{$_};
 1762: 	}
 1763: 	if ($_ =~/$regexp$/ && (defined &$gradesub)) {$value = &$gradesub($value)}
 1764: 	$prevattempts.='<td>'.$value.'&nbsp;</td>';
 1765:       }
 1766:       $prevattempts.='</tr></table></td></tr></table>';
 1767:     } else {
 1768:       $prevattempts='Nothing submitted - no attempts.';
 1769:     }
 1770:   } else {
 1771:     $prevattempts='No data.';
 1772:   }
 1773: }
 1774: 
 1775: sub relative_to_absolute {
 1776:     my ($url,$output)=@_;
 1777:     my $parser=HTML::TokeParser->new(\$output);
 1778:     my $token;
 1779:     my $thisdir=$url;
 1780:     my @rlinks=();
 1781:     while ($token=$parser->get_token) {
 1782: 	if ($token->[0] eq 'S') {
 1783: 	    if ($token->[1] eq 'a') {
 1784: 		if ($token->[2]->{'href'}) {
 1785: 		    $rlinks[$#rlinks+1]=$token->[2]->{'href'};
 1786: 		}
 1787: 	    } elsif ($token->[1] eq 'img' || $token->[1] eq 'embed' ) {
 1788: 		$rlinks[$#rlinks+1]=$token->[2]->{'src'};
 1789: 	    } elsif ($token->[1] eq 'base') {
 1790: 		$thisdir=$token->[2]->{'href'};
 1791: 	    }
 1792: 	}
 1793:     }
 1794:     $thisdir=~s-/[^/]*$--;
 1795:     foreach (@rlinks) {
 1796: 	unless (($_=~/^http:\/\//i) ||
 1797: 		($_=~/^\//) ||
 1798: 		($_=~/^javascript:/i) ||
 1799: 		($_=~/^mailto:/i) ||
 1800: 		($_=~/^\#/)) {
 1801: 	    my $newlocation=&Apache::lonnet::hreflocation($thisdir,$_);
 1802: 	    $output=~s/(\"|\'|\=\s*)$_(\"|\'|\s|\>)/$1$newlocation$2/;
 1803: 	}
 1804:     }
 1805: # -------------------------------------------------- Deal with Applet codebases
 1806:     $output=~s/(\<applet[^\>]+)(codebase\=[^\S\>]+)*([^\>]*)\>/$1.($2?$2:' codebase="'.$thisdir.'"').$3.'>'/gei;
 1807:     return $output;
 1808: }
 1809: 
 1810: =pod
 1811: 
 1812: =item * get_student_view
 1813: 
 1814: show a snapshot of what student was looking at
 1815: 
 1816: =cut
 1817: 
 1818: sub get_student_view {
 1819:   my ($symb,$username,$domain,$courseid,$target) = @_;
 1820:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
 1821:   my (%old,%moreenv);
 1822:   my @elements=('symb','courseid','domain','username');
 1823:   foreach my $element (@elements) {
 1824:     $old{$element}=$ENV{'form.grade_'.$element};
 1825:     $moreenv{'form.grade_'.$element}=eval '$'.$element #'
 1826:   }
 1827:   if ($target eq 'tex') {$moreenv{'form.grade_target'} = 'tex';}
 1828:   &Apache::lonnet::appenv(%moreenv);
 1829:   $feedurl=&Apache::lonnet::clutter($feedurl);
 1830:   my $userview=&Apache::lonnet::ssi_body($feedurl);
 1831:   &Apache::lonnet::delenv('form.grade_');
 1832:   foreach my $element (@elements) {
 1833:     $ENV{'form.grade_'.$element}=$old{$element};
 1834:   }
 1835:   $userview=~s/\<body[^\>]*\>//gi;
 1836:   $userview=~s/\<\/body\>//gi;
 1837:   $userview=~s/\<html\>//gi;
 1838:   $userview=~s/\<\/html\>//gi;
 1839:   $userview=~s/\<head\>//gi;
 1840:   $userview=~s/\<\/head\>//gi;
 1841:   $userview=~s/action\s*\=/would_be_action\=/gi;
 1842:   $userview=&relative_to_absolute($feedurl,$userview);
 1843:   return $userview;
 1844: }
 1845: 
 1846: =pod
 1847: 
 1848: =item * get_student_answers() 
 1849: 
 1850: show a snapshot of how student was answering problem
 1851: 
 1852: =cut
 1853: 
 1854: sub get_student_answers {
 1855:   my ($symb,$username,$domain,$courseid,%form) = @_;
 1856:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
 1857:   my (%old,%moreenv);
 1858:   my @elements=('symb','courseid','domain','username');
 1859:   foreach my $element (@elements) {
 1860:     $old{$element}=$ENV{'form.grade_'.$element};
 1861:     $moreenv{'form.grade_'.$element}=eval '$'.$element #'
 1862:   }
 1863:   $moreenv{'form.grade_target'}='answer';
 1864:   &Apache::lonnet::appenv(%moreenv);
 1865:   my $userview=&Apache::lonnet::ssi('/res/'.$feedurl,%form);
 1866:   &Apache::lonnet::delenv('form.grade_');
 1867:   foreach my $element (@elements) {
 1868:     $ENV{'form.grade_'.$element}=$old{$element};
 1869:   }
 1870:   return $userview;
 1871: }
 1872: 
 1873: =pod
 1874: 
 1875: =item * &submlink()
 1876: 
 1877: Inputs: $text $uname $udom $symb
 1878: 
 1879: Returns: A link to grades.pm such as to see the SUBM view of a student
 1880: 
 1881: =cut
 1882: 
 1883: ###############################################
 1884: sub submlink {
 1885:     my ($text,$uname,$udom,$symb)=@_;
 1886:     if (!($uname && $udom)) {
 1887: 	(my $cursymb, my $courseid,$udom,$uname)=
 1888: 	    &Apache::lonxml::whichuser($symb);
 1889: 	if (!$symb) { $symb=$cursymb; }
 1890:     }
 1891:     if (!$symb) { $symb=&symbread(); }
 1892:     return '<a href="/adm/grades?symb='.$symb.'&student='.$uname.
 1893: 	'&userdom='.$udom.'&command=submission">'.$text.'</a>';
 1894: }
 1895: ##############################################
 1896: 
 1897: =pod
 1898: 
 1899: =back
 1900: 
 1901: =cut
 1902: 
 1903: ###############################################
 1904: 
 1905: 
 1906: sub timehash {
 1907:     my @ltime=localtime(shift);
 1908:     return ( 'seconds' => $ltime[0],
 1909:              'minutes' => $ltime[1],
 1910:              'hours'   => $ltime[2],
 1911:              'day'     => $ltime[3],
 1912:              'month'   => $ltime[4]+1,
 1913:              'year'    => $ltime[5]+1900,
 1914:              'weekday' => $ltime[6],
 1915:              'dayyear' => $ltime[7]+1,
 1916:              'dlsav'   => $ltime[8] );
 1917: }
 1918: 
 1919: sub maketime {
 1920:     my %th=@_;
 1921:     return POSIX::mktime(
 1922:         ($th{'seconds'},$th{'minutes'},$th{'hours'},
 1923:          $th{'day'},$th{'month'}-1,$th{'year'}-1900,0,0,$th{'dlsav'}));
 1924: }
 1925: 
 1926: 
 1927: #########################################
 1928: #
 1929: # Retro-fixing of un-backward-compatible time format
 1930: 
 1931: sub unsqltime {
 1932:     my $timestamp=shift;
 1933:     if ($timestamp=~/^(\d+)\-(\d+)\-(\d+)\s+(\d+)\:(\d+)\:(\d+)$/) {
 1934:        $timestamp=&maketime(
 1935: 	   'year'=>$1,'month'=>$2,'day'=>$3,
 1936:            'hours'=>$4,'minutes'=>$5,'seconds'=>$6);
 1937:     }
 1938:     return $timestamp;
 1939: }
 1940: 
 1941: #########################################
 1942: 
 1943: sub findallcourses {
 1944:     my %courses=();
 1945:     my $now=time;
 1946:     foreach (keys %ENV) {
 1947: 	if ($_=~/^user\.role\.\w+\.\/(\w+)\/(\w+)/) {
 1948: 	    my ($starttime,$endtime)=$ENV{$_};
 1949:             my $active=1;
 1950:             if ($starttime) {
 1951: 		if ($now<$starttime) { $active=0; }
 1952:             }
 1953:             if ($endtime) {
 1954:                 if ($now>$endtime) { $active=0; }
 1955:             }
 1956:             if ($active) { $courses{$1.'_'.$2}=1; }
 1957:         }
 1958:     }
 1959:     return keys %courses;
 1960: }
 1961: 
 1962: ###############################################
 1963: ###############################################
 1964: 
 1965: =pod
 1966: 
 1967: =head1 Domain Template Functions
 1968: 
 1969: =over 4
 1970: 
 1971: =item * &determinedomain()
 1972: 
 1973: Inputs: $domain (usually will be undef)
 1974: 
 1975: Returns: Determines which domain should be used for designs
 1976: 
 1977: =cut
 1978: 
 1979: ###############################################
 1980: sub determinedomain {
 1981:     my $domain=shift;
 1982:    if (! $domain) {
 1983:         # Determine domain if we have not been given one
 1984:         $domain = $Apache::lonnet::perlvar{'lonDefDomain'};
 1985:         if ($ENV{'user.domain'}) { $domain=$ENV{'user.domain'}; }
 1986:         if ($ENV{'request.role.domain'}) { 
 1987:             $domain=$ENV{'request.role.domain'}; 
 1988:         }
 1989:     }
 1990:     return $domain;
 1991: }
 1992: ###############################################
 1993: =pod
 1994: 
 1995: =item * &domainlogo()
 1996: 
 1997: Inputs: $domain (usually will be undef)
 1998: 
 1999: Returns: A link to a domain logo, if the domain logo exists.
 2000: If the domain logo does not exist, a description of the domain.
 2001: 
 2002: =cut
 2003: 
 2004: ###############################################
 2005: sub domainlogo {
 2006:     my $domain = &determinedomain(shift);    
 2007:      # See if there is a logo
 2008:     if (-e '/home/httpd/html/adm/lonDomLogos/'.$domain.'.gif') {
 2009: 	my $lonhttpdPort=$Apache::lonnet::perlvar{'lonhttpdPort'};
 2010: 	if (!defined($lonhttpdPort)) { $lonhttpdPort='8080'; }
 2011:         return '<img src="http://'.$ENV{'HTTP_HOST'}.':'.$lonhttpdPort.
 2012: 	    '/adm/lonDomLogos/'.$domain.'.gif" />';
 2013:     } elsif(exists($Apache::lonnet::domaindescription{$domain})) {
 2014:         return $Apache::lonnet::domaindescription{$domain};
 2015:     } else {
 2016:         return '';
 2017:     }
 2018: }
 2019: ##############################################
 2020: 
 2021: =pod
 2022: 
 2023: =item * &designparm()
 2024: 
 2025: Inputs: $which parameter; $domain (usually will be undef)
 2026: 
 2027: Returns: value of designparamter $which
 2028: 
 2029: =cut
 2030: 
 2031: ##############################################
 2032: sub designparm {
 2033:     my ($which,$domain)=@_;
 2034:     if ($ENV{'browser.blackwhite'} eq 'on') {
 2035: 	if ($which=~/\.(font|alink|vlink|link)$/) {
 2036: 	    return '#000000';
 2037: 	}
 2038: 	if ($which=~/\.(pgbg|sidebg)$/) {
 2039: 	    return '#FFFFFF';
 2040: 	}
 2041: 	if ($which=~/\.tabbg$/) {
 2042: 	    return '#CCCCCC';
 2043: 	}
 2044:     }
 2045:     if ($ENV{'environment.color.'.$which}) {
 2046: 	return $ENV{'environment.color.'.$which};
 2047:     }
 2048:     $domain=&determinedomain($domain);
 2049:     if ($designhash{$domain.'.'.$which}) {
 2050: 	return $designhash{$domain.'.'.$which};
 2051:     } else {
 2052:         return $designhash{'default.'.$which};
 2053:     }
 2054: }
 2055: 
 2056: ###############################################
 2057: ###############################################
 2058: 
 2059: =pod
 2060: 
 2061: =back
 2062: 
 2063: =head1 HTTP Helpers
 2064: 
 2065: =over 4
 2066: 
 2067: =item * &bodytag()
 2068: 
 2069: Returns a uniform header for LON-CAPA web pages.
 2070: 
 2071: Inputs: 
 2072: 
 2073: =over 4
 2074: 
 2075: =item * $title, A title to be displayed on the page.
 2076: 
 2077: =item * $function, the current role (can be undef).
 2078: 
 2079: =item * $addentries, extra parameters for the <body> tag.
 2080: 
 2081: =item * $bodyonly, if defined, only return the <body> tag.
 2082: 
 2083: =item * $domain, if defined, force a given domain.
 2084: 
 2085: =item * $forcereg, if page should register as content page (relevant for 
 2086:             text interface only)
 2087: 
 2088: =back
 2089: 
 2090: Returns: A uniform header for LON-CAPA web pages.  
 2091: If $bodyonly is nonzero, a string containing a <body> tag will be returned.
 2092: If $bodyonly is undef or zero, an html string containing a <body> tag and 
 2093: other decorations will be returned.
 2094: 
 2095: =cut
 2096: 
 2097: sub bodytag {
 2098:     my ($title,$function,$addentries,$bodyonly,$domain,$forcereg)=@_;
 2099:     $title=&mt($title);
 2100:     unless ($function) {
 2101: 	$function='student';
 2102:         if ($ENV{'request.role'}=~/^(cc|in|ta|ep)/) {
 2103: 	    $function='coordinator';
 2104:         }
 2105: 	if ($ENV{'request.role'}=~/^(su|dc|ad|li)/) {
 2106:             $function='admin';
 2107:         }
 2108:         if (($ENV{'request.role'}=~/^(au|ca)/) ||
 2109:             ($ENV{'REQUEST_URI'}=~/^(\/priv|\~)/)) {
 2110:             $function='author';
 2111:         }
 2112:     }
 2113:     my $img=&designparm($function.'.img',$domain);
 2114:     my $pgbg=&designparm($function.'.pgbg',$domain);
 2115:     my $tabbg=&designparm($function.'.tabbg',$domain);
 2116:     my $font=&designparm($function.'.font',$domain);
 2117:     my $link=&designparm($function.'.link',$domain);
 2118:     my $alink=&designparm($function.'.alink',$domain);
 2119:     my $vlink=&designparm($function.'.vlink',$domain);
 2120:     my $sidebg=&designparm($function.'.sidebg',$domain);
 2121: # Accessibility font enhance
 2122:     unless ($addentries) { $addentries=''; }
 2123:     if ($ENV{'browser.fontenhance'} eq 'on') {
 2124: 	$addentries.=' style="font-size: x-large"';
 2125:     }
 2126:  # role and realm
 2127:     my ($role,$realm)
 2128:        =&Apache::lonnet::plaintext((split(/\./,$ENV{'request.role'}))[0]);
 2129: # realm
 2130:     if ($ENV{'request.course.id'}) {
 2131: 	$realm=
 2132:          $ENV{'course.'.$ENV{'request.course.id'}.'.description'};
 2133:     }
 2134:     unless ($realm) { $realm='&nbsp;'; }
 2135: # Set messages
 2136:     my $messages=&domainlogo($domain);
 2137: # Port for miniserver
 2138:     my $lonhttpdPort=$Apache::lonnet::perlvar{'lonhttpdPort'};
 2139:     if (!defined($lonhttpdPort)) { $lonhttpdPort='8080'; }
 2140: # construct main body tag
 2141:     my $bodytag = <<END;
 2142: <body bgcolor="$pgbg" text="$font" alink="$alink" vlink="$vlink" link="$link"
 2143: $addentries>
 2144: END
 2145:     my $upperleft='<img src="http://'.$ENV{'HTTP_HOST'}.':'.
 2146:                    $lonhttpdPort.$img.'" />';
 2147:     if ($bodyonly) {
 2148:         return $bodytag;
 2149:     } elsif ($ENV{'browser.interface'} eq 'textual') {
 2150: # Accessibility
 2151:         return $bodytag.&Apache::lonmenu::menubuttons($forcereg,'web',
 2152:                                                       $forcereg).
 2153:                '<h1>LON-CAPA: '.$title.'</h1>';
 2154:     } elsif ($ENV{'environment.remote'} eq 'off') {
 2155: # No Remote
 2156:         return $bodytag.&Apache::lonmenu::menubuttons($forcereg,'web',
 2157:                                                       $forcereg).
 2158:                '<table bgcolor="'.$pgbg.'" width="100%" border="0" cellspacing="3" cellpadding="3"><tr><td bgcolor="'.$tabbg.'"><font size="+3" color="'.$font.'"><b>'.$title.
 2159: '</b></font></td></tr></table>';
 2160:     }
 2161: 
 2162: #
 2163: # Top frame rendering, Remote is up
 2164: #
 2165:     return(<<ENDBODY);
 2166: $bodytag
 2167: <table width="100%" cellspacing="0" border="0" cellpadding="0">
 2168: <tr><td bgcolor="$sidebg">
 2169: $upperleft</td>
 2170: <td bgcolor="$sidebg" align="right">$messages&nbsp;</td>
 2171: </tr>
 2172: <tr>
 2173: <td rowspan="3" bgcolor="$tabbg">
 2174: &nbsp;<font size="5"><b>$title</b></font>
 2175: <td bgcolor="$tabbg"  align="right">
 2176: <font size="2">
 2177:     $ENV{'environment.firstname'}
 2178:     $ENV{'environment.middlename'}
 2179:     $ENV{'environment.lastname'}
 2180:     $ENV{'environment.generation'}
 2181:     </font>&nbsp;
 2182: </td>
 2183: </tr>
 2184: <tr><td bgcolor="$tabbg" align="right">
 2185: <font size="2">$role</font>&nbsp;
 2186: </td></tr>
 2187: <tr>
 2188: <td bgcolor="$tabbg" align="right"><font size="2">$realm</font>&nbsp;</td></tr>
 2189: </table><br>
 2190: ENDBODY
 2191: }
 2192: 
 2193: ###############################################
 2194: 
 2195: sub get_posted_cgi {
 2196:     my $r=shift;
 2197: 
 2198:     my $buffer;
 2199:     
 2200:     $r->read($buffer,$r->header_in('Content-length'),0);
 2201:     unless ($buffer=~/^(\-+\w+)\s+Content\-Disposition\:\s*form\-data/si) {
 2202: 	my @pairs=split(/&/,$buffer);
 2203: 	my $pair;
 2204: 	foreach $pair (@pairs) {
 2205: 	    my ($name,$value) = split(/=/,$pair);
 2206: 	    $value =~ tr/+/ /;
 2207: 	    $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
 2208: 	    $name  =~ tr/+/ /;
 2209: 	    $name  =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
 2210: 	    &add_to_env("form.$name",$value);
 2211: 	}
 2212:     } else {
 2213: 	my $contentsep=$1;
 2214: 	my @lines = split (/\n/,$buffer);
 2215: 	my $name='';
 2216: 	my $value='';
 2217: 	my $fname='';
 2218: 	my $fmime='';
 2219: 	my $i;
 2220: 	for ($i=0;$i<=$#lines;$i++) {
 2221: 	    if ($lines[$i]=~/^$contentsep/) {
 2222: 		if ($name) {
 2223: 		    chomp($value);
 2224: 		    if ($fname) {
 2225: 			$ENV{"form.$name.filename"}=$fname;
 2226: 			$ENV{"form.$name.mimetype"}=$fmime;
 2227: 		    } else {
 2228: 			$value=~s/\s+$//s;
 2229: 		    }
 2230: 		    &add_to_env("form.$name",$value);
 2231: 		}
 2232: 		if ($i<$#lines) {
 2233: 		    $i++;
 2234: 		    $lines[$i]=~
 2235: 		/Content\-Disposition\:\s*form\-data\;\s*name\=\"([^\"]+)\"/i;
 2236: 		    $name=$1;
 2237: 		    $value='';
 2238: 		    if ($lines[$i]=~/filename\=\"([^\"]+)\"/i) {
 2239: 			$fname=$1;
 2240: 			if 
 2241:                             ($lines[$i+1]=~/Content\-Type\:\s*([\w\-\/]+)/i) {
 2242: 				$fmime=$1;
 2243: 				$i++;
 2244: 			    } else {
 2245: 				$fmime='';
 2246: 			    }
 2247: 		    } else {
 2248: 			$fname='';
 2249: 			$fmime='';
 2250: 		    }
 2251: 		    $i++;
 2252: 		}
 2253: 	    } else {
 2254: 		$value.=$lines[$i]."\n";
 2255: 	    }
 2256: 	}
 2257:     }
 2258:     $ENV{'request.method'}=$ENV{'REQUEST_METHOD'};
 2259:     $r->method_number(M_GET);
 2260:     $r->method('GET');
 2261:     $r->headers_in->unset('Content-length');
 2262: }
 2263: 
 2264: =pod
 2265: 
 2266: =item * get_unprocessed_cgi($query,$possible_names)
 2267: 
 2268: Modify the %ENV hash to contain unprocessed CGI form parameters held in
 2269: $query.  The parameters listed in $possible_names (an array reference),
 2270: will be set in $ENV{'form.name'} if they do not already exist.
 2271: 
 2272: Typically called with $ENV{'QUERY_STRING'} as the first parameter.  
 2273: $possible_names is an ref to an array of form element names.  As an example:
 2274: get_unprocessed_cgi($ENV{'QUERY_STRING'},['uname','udom']);
 2275: will result in $ENV{'form.uname'} and $ENV{'form.udom'} being set.
 2276: 
 2277: =cut
 2278: 
 2279: sub get_unprocessed_cgi {
 2280:   my ($query,$possible_names)= @_;
 2281:   # $Apache::lonxml::debug=1;
 2282:   foreach (split(/&/,$query)) {
 2283:     my ($name, $value) = split(/=/,$_);
 2284:     $name = &Apache::lonnet::unescape($name);
 2285:     if (!defined($possible_names) || (grep {$_ eq $name} @$possible_names)) {
 2286:       $value =~ tr/+/ /;
 2287:       $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
 2288:       &Apache::lonxml::debug("Seting :$name: to :$value:");
 2289:       unless (defined($ENV{'form.'.$name})) { &add_to_env('form.'.$name,$value) };
 2290:     }
 2291:   }
 2292: }
 2293: 
 2294: =pod
 2295: 
 2296: =item * cacheheader() 
 2297: 
 2298: returns cache-controlling header code
 2299: 
 2300: =cut
 2301: 
 2302: sub cacheheader {
 2303:   unless ($ENV{'request.method'} eq 'GET') { return ''; }
 2304:   my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime);
 2305:   my $output .='<meta HTTP-EQUIV="Expires" CONTENT="'.$date.'" />
 2306:                 <meta HTTP-EQUIV="Cache-control" CONTENT="no-cache" />
 2307:                 <meta HTTP-EQUIV="Pragma" CONTENT="no-cache" />';
 2308:   return $output;
 2309: }
 2310: 
 2311: =pod
 2312: 
 2313: =item * no_cache($r) 
 2314: 
 2315: specifies header code to not have cache
 2316: 
 2317: =cut
 2318: 
 2319: sub no_cache {
 2320:   my ($r) = @_;
 2321:   unless ($ENV{'request.method'} eq 'GET') { return ''; }
 2322:   #my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime);
 2323:   $r->no_cache(1);
 2324:   $r->header_out("Pragma" => "no-cache");
 2325:   #$r->header_out("Expires" => $date);
 2326: }
 2327: 
 2328: sub content_type {
 2329:   my ($r,$type,$charset) = @_;
 2330:   unless ($charset) {
 2331:       $charset=&Apache::lonlocal::current_encoding;
 2332:   }
 2333:   $r->content_type($type.($charset?'; charset='.$charset:''));
 2334: }
 2335: 
 2336: =pod
 2337: 
 2338: =item * add_to_env($name,$value) 
 2339: 
 2340: adds $name to the %ENV hash with value
 2341: $value, if $name already exists, the entry is converted to an array
 2342: reference and $value is added to the array.
 2343: 
 2344: =cut
 2345: 
 2346: sub add_to_env {
 2347:   my ($name,$value)=@_;
 2348:   if (defined($ENV{$name})) {
 2349:     if (ref($ENV{$name})) {
 2350:       #already have multiple values
 2351:       push(@{ $ENV{$name} },$value);
 2352:     } else {
 2353:       #first time seeing multiple values, convert hash entry to an arrayref
 2354:       my $first=$ENV{$name};
 2355:       undef($ENV{$name});
 2356:       push(@{ $ENV{$name} },$first,$value);
 2357:     }
 2358:   } else {
 2359:     $ENV{$name}=$value;
 2360:   }
 2361: }
 2362: 
 2363: =pod
 2364: 
 2365: =back 
 2366: 
 2367: =head1 CSV Upload/Handling functions
 2368: 
 2369: =over 4
 2370: 
 2371: =item * upfile_store($r)
 2372: 
 2373: Store uploaded file, $r should be the HTTP Request object,
 2374: needs $ENV{'form.upfile'}
 2375: returns $datatoken to be put into hidden field
 2376: 
 2377: =cut
 2378: 
 2379: sub upfile_store {
 2380:     my $r=shift;
 2381:     $ENV{'form.upfile'}=~s/\r/\n/gs;
 2382:     $ENV{'form.upfile'}=~s/\f/\n/gs;
 2383:     $ENV{'form.upfile'}=~s/\n+/\n/gs;
 2384:     $ENV{'form.upfile'}=~s/\n+$//gs;
 2385: 
 2386:     my $datatoken=$ENV{'user.name'}.'_'.$ENV{'user.domain'}.
 2387: 	'_enroll_'.$ENV{'request.course.id'}.'_'.time.'_'.$$;
 2388:     {
 2389: 	my $fh=Apache::File->new('>'.$r->dir_config('lonDaemons').
 2390: 				 '/tmp/'.$datatoken.'.tmp');
 2391: 	print $fh $ENV{'form.upfile'};
 2392:     }
 2393:     return $datatoken;
 2394: }
 2395: 
 2396: =pod
 2397: 
 2398: =item * load_tmp_file($r)
 2399: 
 2400: Load uploaded file from tmp, $r should be the HTTP Request object,
 2401: needs $ENV{'form.datatoken'},
 2402: sets $ENV{'form.upfile'} to the contents of the file
 2403: 
 2404: =cut
 2405: 
 2406: sub load_tmp_file {
 2407:     my $r=shift;
 2408:     my @studentdata=();
 2409:     {
 2410: 	my $fh;
 2411: 	if ($fh=Apache::File->new($r->dir_config('lonDaemons').
 2412: 				  '/tmp/'.$ENV{'form.datatoken'}.'.tmp')) {
 2413: 	    @studentdata=<$fh>;
 2414: 	}
 2415:     }
 2416:     $ENV{'form.upfile'}=join('',@studentdata);
 2417: }
 2418: 
 2419: =pod
 2420: 
 2421: =item * upfile_record_sep()
 2422: 
 2423: Separate uploaded file into records
 2424: returns array of records,
 2425: needs $ENV{'form.upfile'} and $ENV{'form.upfiletype'}
 2426: 
 2427: =cut
 2428: 
 2429: sub upfile_record_sep {
 2430:     if ($ENV{'form.upfiletype'} eq 'xml') {
 2431:     } else {
 2432: 	return split(/\n/,$ENV{'form.upfile'});
 2433:     }
 2434: }
 2435: 
 2436: =pod
 2437: 
 2438: =item * record_sep($record)
 2439: 
 2440: Separate a record into fields $record should be an item from the upfile_record_sep(), needs $ENV{'form.upfiletype'}
 2441: 
 2442: =cut
 2443: 
 2444: sub record_sep {
 2445:     my $record=shift;
 2446:     my %components=();
 2447:     if ($ENV{'form.upfiletype'} eq 'xml') {
 2448:     } elsif ($ENV{'form.upfiletype'} eq 'space') {
 2449:         my $i=0;
 2450:         foreach (split(/\s+/,$record)) {
 2451:             my $field=$_;
 2452:             $field=~s/^(\"|\')//;
 2453:             $field=~s/(\"|\')$//;
 2454:             $components{$i}=$field;
 2455:             $i++;
 2456:         }
 2457:     } elsif ($ENV{'form.upfiletype'} eq 'tab') {
 2458:         my $i=0;
 2459:         foreach (split(/\t+/,$record)) {
 2460:             my $field=$_;
 2461:             $field=~s/^(\"|\')//;
 2462:             $field=~s/(\"|\')$//;
 2463:             $components{$i}=$field;
 2464:             $i++;
 2465:         }
 2466:     } else {
 2467:         my @allfields=split(/\,/,$record);
 2468:         my $i=0;
 2469:         my $j;
 2470:         for ($j=0;$j<=$#allfields;$j++) {
 2471:             my $field=$allfields[$j];
 2472:             if ($field=~/^\s*(\"|\')/) {
 2473: 		my $delimiter=$1;
 2474:                 while (($field!~/$delimiter$/) && ($j<$#allfields)) {
 2475: 		    $j++;
 2476: 		    $field.=','.$allfields[$j];
 2477: 		}
 2478:                 $field=~s/^\s*$delimiter//;
 2479:                 $field=~s/$delimiter\s*$//;
 2480:             }
 2481:             $components{$i}=$field;
 2482: 	    $i++;
 2483:         }
 2484:     }
 2485:     return %components;
 2486: }
 2487: 
 2488: =pod
 2489: 
 2490: =item * upfile_select_html()
 2491: 
 2492: return HTML code to select file and specify its type
 2493: 
 2494: =cut
 2495: 
 2496: sub upfile_select_html {
 2497:     return (<<'ENDUPFORM');
 2498: <input type="file" name="upfile" size="50" />
 2499: <br />Type: <select name="upfiletype">
 2500: <option value="csv">CSV (comma separated values, spreadsheet)</option>
 2501: <option value="space">Space separated</option>
 2502: <option value="tab">Tabulator separated</option>
 2503: <option value="xml">HTML/XML</option>
 2504: </select>
 2505: ENDUPFORM
 2506: }
 2507: 
 2508: =pod
 2509: 
 2510: =item * csv_print_samples($r,$records)
 2511: 
 2512: Prints a table of sample values from each column uploaded $r is an
 2513: Apache Request ref, $records is an arrayref from
 2514: &Apache::loncommon::upfile_record_sep
 2515: 
 2516: =cut
 2517: 
 2518: sub csv_print_samples {
 2519:     my ($r,$records) = @_;
 2520:     my (%sone,%stwo,%sthree);
 2521:     %sone=&record_sep($$records[0]);
 2522:     if (defined($$records[1])) {%stwo=&record_sep($$records[1]);}
 2523:     if (defined($$records[2])) {%sthree=&record_sep($$records[2]);}
 2524: 
 2525:     $r->print('Samples<br /><table border="2"><tr>');
 2526:     foreach (sort({$a <=> $b} keys(%sone))) { $r->print('<th>Column&nbsp;'.($_+1).'</th>'); }
 2527:     $r->print('</tr>');
 2528:     foreach my $hash (\%sone,\%stwo,\%sthree) {
 2529: 	$r->print('<tr>');
 2530: 	foreach (sort({$a <=> $b} keys(%sone))) {
 2531: 	    $r->print('<td>');
 2532: 	    if (defined($$hash{$_})) { $r->print($$hash{$_}); }
 2533: 	    $r->print('</td>');
 2534: 	}
 2535: 	$r->print('</tr>');
 2536:     }
 2537:     $r->print('</tr></table><br />'."\n");
 2538: }
 2539: 
 2540: =pod
 2541: 
 2542: =item * csv_print_select_table($r,$records,$d)
 2543: 
 2544: Prints a table to create associations between values and table columns.
 2545: $r is an Apache Request ref,
 2546: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
 2547: $d is an array of 2 element arrays (internal name, displayed name)
 2548: 
 2549: =cut
 2550: 
 2551: sub csv_print_select_table {
 2552:     my ($r,$records,$d) = @_;
 2553:     my $i=0;my %sone;
 2554:     %sone=&record_sep($$records[0]);
 2555:     $r->print('Associate columns with student attributes.'."\n".
 2556: 	     '<table border="2"><tr><th>Attribute</th><th>Column</th></tr>'."\n");
 2557:     foreach (@$d) {
 2558: 	my ($value,$display)=@{ $_ };
 2559: 	$r->print('<tr><td>'.$display.'</td>');
 2560: 
 2561: 	$r->print('<td><select name=f'.$i.
 2562: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
 2563: 	$r->print('<option value="none"></option>');
 2564: 	foreach (sort({$a <=> $b} keys(%sone))) {
 2565: 	    $r->print('<option value="'.$_.'">Column '.($_+1).'</option>');
 2566: 	}
 2567: 	$r->print('</select></td></tr>'."\n");
 2568: 	$i++;
 2569:     }
 2570:     $i--;
 2571:     return $i;
 2572: }
 2573: 
 2574: =pod
 2575: 
 2576: =item * csv_samples_select_table($r,$records,$d)
 2577: 
 2578: Prints a table of sample values from the upload and can make associate samples to internal names.
 2579: 
 2580: $r is an Apache Request ref,
 2581: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
 2582: $d is an array of 2 element arrays (internal name, displayed name)
 2583: 
 2584: =cut
 2585: 
 2586: sub csv_samples_select_table {
 2587:     my ($r,$records,$d) = @_;
 2588:     my %sone; my %stwo; my %sthree;
 2589:     my $i=0;
 2590: 
 2591:     $r->print('<table border=2><tr><th>Field</th><th>Samples</th></tr>');
 2592:     %sone=&record_sep($$records[0]);
 2593:     if (defined($$records[1])) {%stwo=&record_sep($$records[1]);}
 2594:     if (defined($$records[2])) {%sthree=&record_sep($$records[2]);}
 2595: 
 2596:     foreach (sort keys %sone) {
 2597: 	$r->print('<tr><td><select name=f'.$i.
 2598: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
 2599: 	foreach (@$d) {
 2600: 	    my ($value,$display)=@{ $_ };
 2601: 	    $r->print('<option value='.$value.'>'.$display.'</option>');
 2602: 	}
 2603: 	$r->print('</select></td><td>');
 2604: 	if (defined($sone{$_})) { $r->print($sone{$_}."</br>\n"); }
 2605: 	if (defined($stwo{$_})) { $r->print($stwo{$_}."</br>\n"); }
 2606: 	if (defined($sthree{$_})) { $r->print($sthree{$_}."</br>\n"); }
 2607: 	$r->print('</td></tr>');
 2608: 	$i++;
 2609:     }
 2610:     $i--;
 2611:     return($i);
 2612: }
 2613: 
 2614: =pod
 2615: 
 2616: =item clean_excel_name($name)
 2617: 
 2618: Returns a replacement for $name which does not contain any illegal characters.
 2619: 
 2620: =cut
 2621: 
 2622: sub clean_excel_name {
 2623:     my ($name) = @_;
 2624:     $name =~ s/[:\*\?\/\\]//g;
 2625:     if (length($name) > 31) {
 2626:         $name = substr($name,0,31);
 2627:     }
 2628:     return $name;
 2629: }
 2630: 
 2631: =pod
 2632: 
 2633: =item * check_if_partid_hidden($id,$symb,$udom,$uname)
 2634: 
 2635: Returns either 1 or undef
 2636: 
 2637: 1 if the part is to be hidden, undef if it is to be shown
 2638: 
 2639: Arguments are:
 2640: 
 2641: $id the id of the part to be checked
 2642: $symb, optional the symb of the resource to check
 2643: $udom, optional the domain of the user to check for
 2644: $uname, optional the username of the user to check for
 2645: 
 2646: =cut
 2647: 
 2648: sub check_if_partid_hidden {
 2649:     my ($id,$symb,$udom,$uname) = @_;
 2650:     my $hiddenparts=&Apache::lonnet::EXT('resource.0.parameter_hiddenparts',
 2651: 					 $symb,$udom,$uname);
 2652:     my @hiddenlist=split(/,/,$hiddenparts);
 2653:     foreach my $checkid (@hiddenlist) {
 2654: 	if ($checkid =~ /^\s*\Q$id\E\s*$/) { return 1; }
 2655:     }
 2656:     return undef;
 2657: }
 2658: 
 2659: =pod
 2660: 
 2661: =back
 2662: 
 2663: =cut
 2664: 
 2665: 1;
 2666: __END__;
 2667: 

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