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

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

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