File:  [LON-CAPA] / loncom / interface / loncommon.pm
Revision 1.119: download - view: text, annotated - select for diffs
Wed Sep 17 16:50:58 2003 UTC (20 years, 8 months ago) by www
Branches: MAIN
CVS tags: HEAD
Better translation

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

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