Annotation of loncom/interface/loncommon.pm, revision 1.620

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

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