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

1.10      albertel    1: # The LearningOnline Network with CAPA
1.1       albertel    2: # a pile of common routines
1.10      albertel    3: #
1.712   ! muellerd    4: # $Id: loncommon.pm,v 1.711 2008/12/08 22:43:52 raeburn Exp $
1.10      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.1       albertel   28: 
                     29: # Makes a table out of the previous attempts
1.2       albertel   30: # Inputs result_from_symbread, user, domain, course_id
1.16      harris41   31: # Reads in non-network-related .tab files
1.1       albertel   32: 
1.35      matthew    33: # POD header:
                     34: 
1.45      matthew    35: =pod
                     36: 
1.35      matthew    37: =head1 NAME
                     38: 
                     39: Apache::loncommon - pile of common routines
                     40: 
                     41: =head1 SYNOPSIS
                     42: 
1.112     bowersj2   43: Common routines for manipulating connections, student answers,
                     44:     domains, common Javascript fragments, etc.
1.35      matthew    45: 
1.112     bowersj2   46: =head1 OVERVIEW
1.35      matthew    47: 
1.112     bowersj2   48: A collection of commonly used subroutines that don't have a natural
                     49: home anywhere else. This collection helps remove
1.35      matthew    50: redundancy from other modules and increase efficiency of memory usage.
                     51: 
                     52: =cut 
                     53: 
                     54: # End of POD header
1.1       albertel   55: package Apache::loncommon;
                     56: 
                     57: use strict;
1.258     albertel   58: use Apache::lonnet;
1.46      matthew    59: use GDBM_File;
1.51      www        60: use POSIX qw(strftime mktime);
1.82      www        61: use Apache::lonmenu();
1.498     albertel   62: use Apache::lonenc();
1.117     www        63: use Apache::lonlocal;
1.685     tempelho   64: use Apache::lonnet();
1.139     matthew    65: use HTML::Entities;
1.334     albertel   66: use Apache::lonhtmlcommon();
                     67: use Apache::loncoursedata();
1.344     albertel   68: use Apache::lontexconvert();
1.444     albertel   69: use Apache::lonclonecourse();
1.479     albertel   70: use LONCAPA qw(:DEFAULT :match);
1.657     raeburn    71: use DateTime::TimeZone;
1.687     raeburn    72: use DateTime::Locale::Catalog;
1.117     www        73: 
1.517     raeburn    74: # ---------------------------------------------- Designs
                     75: use vars qw(%defaultdesign);
                     76: 
1.22      www        77: my $readit;
                     78: 
1.517     raeburn    79: 
1.157     matthew    80: ##
                     81: ## Global Variables
                     82: ##
1.46      matthew    83: 
1.643     foxr       84: 
                     85: # ----------------------------------------------- SSI with retries:
                     86: #
                     87: 
                     88: =pod
                     89: 
1.648     raeburn    90: =head1 Server Side include with retries:
1.643     foxr       91: 
                     92: =over 4
                     93: 
1.648     raeburn    94: =item * &ssi_with_retries(resource,retries form)
1.643     foxr       95: 
                     96: Performs an ssi with some number of retries.  Retries continue either
                     97: until the result is ok or until the retry count supplied by the
                     98: caller is exhausted.  
                     99: 
                    100: Inputs:
1.648     raeburn   101: 
                    102: =over 4
                    103: 
1.643     foxr      104: resource   - Identifies the resource to insert.
1.648     raeburn   105: 
1.643     foxr      106: retries    - Count of the number of retries allowed.
1.648     raeburn   107: 
1.643     foxr      108: form       - Hash that identifies the rendering options.
                    109: 
1.648     raeburn   110: =back
                    111: 
                    112: Returns:
                    113: 
                    114: =over 4
                    115: 
1.643     foxr      116: content    - The content of the response.  If retries were exhausted this is empty.
1.648     raeburn   117: 
1.643     foxr      118: response   - The response from the last attempt (which may or may not have been successful.
                    119: 
1.648     raeburn   120: =back
                    121: 
                    122: =back
                    123: 
1.643     foxr      124: =cut
                    125: 
                    126: sub ssi_with_retries {
                    127:     my ($resource, $retries, %form) = @_;
                    128: 
                    129: 
                    130:     my $ok = 0;			# True if we got a good response.
                    131:     my $content;
                    132:     my $response;
                    133: 
                    134:     # Try to get the ssi done. within the retries count:
                    135: 
                    136:     do {
                    137: 	($content, $response) = &Apache::lonnet::ssi($resource, %form);
                    138: 	$ok      = $response->is_success;
1.650     www       139:         if (!$ok) {
                    140:             &Apache::lonnet::logthis("Failed ssi_with_retries on $resource: ".$response->is_success.', '.$response->code.', '.$response->message);
                    141:         }
1.643     foxr      142: 	$retries--;
                    143:     } while (!$ok && ($retries > 0));
                    144: 
                    145:     if (!$ok) {
                    146: 	$content = '';		# On error return an empty content.
                    147:     }
                    148:     return ($content, $response);
                    149: 
                    150: }
                    151: 
                    152: 
                    153: 
1.20      www       154: # ----------------------------------------------- Filetypes/Languages/Copyright
1.12      harris41  155: my %language;
1.124     www       156: my %supported_language;
1.12      harris41  157: my %cprtag;
1.192     taceyjo1  158: my %scprtag;
1.351     www       159: my %fe; my %fd; my %fm;
1.41      ng        160: my %category_extensions;
1.12      harris41  161: 
1.46      matthew   162: # ---------------------------------------------- Thesaurus variables
1.144     matthew   163: #
                    164: # %Keywords:
                    165: #      A hash used by &keyword to determine if a word is considered a keyword.
                    166: # $thesaurus_db_file 
                    167: #      Scalar containing the full path to the thesaurus database.
1.46      matthew   168: 
                    169: my %Keywords;
                    170: my $thesaurus_db_file;
                    171: 
1.144     matthew   172: #
                    173: # Initialize values from language.tab, copyright.tab, filetypes.tab,
                    174: # thesaurus.tab, and filecategories.tab.
                    175: #
1.18      www       176: BEGIN {
1.46      matthew   177:     # Variable initialization
                    178:     $thesaurus_db_file = $Apache::lonnet::perlvar{'lonTabDir'}."/thesaurus.db";
                    179:     #
1.22      www       180:     unless ($readit) {
1.12      harris41  181: # ------------------------------------------------------------------- languages
                    182:     {
1.158     raeburn   183:         my $langtabfile = $Apache::lonnet::perlvar{'lonTabDir'}.
                    184:                                    '/language.tab';
                    185:         if ( open(my $fh,"<$langtabfile") ) {
1.356     albertel  186:             while (my $line = <$fh>) {
                    187:                 next if ($line=~/^\#/);
                    188:                 chomp($line);
                    189:                 my ($key,$two,$country,$three,$enc,$val,$sup)=(split(/\t/,$line));
1.158     raeburn   190:                 $language{$key}=$val.' - '.$enc;
                    191:                 if ($sup) {
                    192:                     $supported_language{$key}=$sup;
                    193:                 }
                    194:             }
                    195:             close($fh);
                    196:         }
1.12      harris41  197:     }
                    198: # ------------------------------------------------------------------ copyrights
                    199:     {
1.158     raeburn   200:         my $copyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
                    201:                                   '/copyright.tab';
                    202:         if ( open (my $fh,"<$copyrightfile") ) {
1.356     albertel  203:             while (my $line = <$fh>) {
                    204:                 next if ($line=~/^\#/);
                    205:                 chomp($line);
                    206:                 my ($key,$val)=(split(/\s+/,$line,2));
1.158     raeburn   207:                 $cprtag{$key}=$val;
                    208:             }
                    209:             close($fh);
                    210:         }
1.12      harris41  211:     }
1.351     www       212: # ----------------------------------------------------------- source copyrights
1.192     taceyjo1  213:     {
                    214:         my $sourcecopyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
                    215:                                   '/source_copyright.tab';
                    216:         if ( open (my $fh,"<$sourcecopyrightfile") ) {
1.356     albertel  217:             while (my $line = <$fh>) {
                    218:                 next if ($line =~ /^\#/);
                    219:                 chomp($line);
                    220:                 my ($key,$val)=(split(/\s+/,$line,2));
1.192     taceyjo1  221:                 $scprtag{$key}=$val;
                    222:             }
                    223:             close($fh);
                    224:         }
                    225:     }
1.63      www       226: 
1.517     raeburn   227: # -------------------------------------------------------------- default domain designs
1.63      www       228:     my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
1.517     raeburn   229:     my $designfile = $designdir.'/default.tab';
                    230:     if ( open (my $fh,"<$designfile") ) {
                    231:         while (my $line = <$fh>) {
                    232:             next if ($line =~ /^\#/);
                    233:             chomp($line);
                    234:             my ($key,$val)=(split(/\=/,$line));
                    235:             if ($val) { $defaultdesign{$key}=$val; }
                    236:         }
                    237:         close($fh);
1.63      www       238:     }
                    239: 
1.15      harris41  240: # ------------------------------------------------------------- file categories
                    241:     {
1.158     raeburn   242:         my $categoryfile = $Apache::lonnet::perlvar{'lonTabDir'}.
                    243:                                   '/filecategories.tab';
                    244:         if ( open (my $fh,"<$categoryfile") ) {
1.356     albertel  245: 	    while (my $line = <$fh>) {
                    246: 		next if ($line =~ /^\#/);
                    247: 		chomp($line);
                    248:                 my ($extension,$category)=(split(/\s+/,$line,2));
1.158     raeburn   249:                 push @{$category_extensions{lc($category)}},$extension;
                    250:             }
                    251:             close($fh);
                    252:         }
                    253: 
1.15      harris41  254:     }
1.12      harris41  255: # ------------------------------------------------------------------ file types
                    256:     {
1.158     raeburn   257:         my $typesfile = $Apache::lonnet::perlvar{'lonTabDir'}.
                    258:                '/filetypes.tab';
                    259:         if ( open (my $fh,"<$typesfile") ) {
1.356     albertel  260:             while (my $line = <$fh>) {
                    261: 		next if ($line =~ /^\#/);
                    262: 		chomp($line);
                    263:                 my ($ending,$emb,$mime,$descr)=split(/\s+/,$line,4);
1.158     raeburn   264:                 if ($descr ne '') {
                    265:                     $fe{$ending}=lc($emb);
                    266:                     $fd{$ending}=$descr;
1.351     www       267:                     if ($mime ne 'unk') { $fm{$ending}=$mime; }
1.158     raeburn   268:                 }
                    269:             }
                    270:             close($fh);
                    271:         }
1.12      harris41  272:     }
1.22      www       273:     &Apache::lonnet::logthis(
1.705     tempelho  274:              "<span style='color:yellow;'>INFO: Read file types</span>");
1.22      www       275:     $readit=1;
1.46      matthew   276:     }  # end of unless($readit) 
1.32      matthew   277:     
                    278: }
1.112     bowersj2  279: 
1.42      matthew   280: ###############################################################
                    281: ##           HTML and Javascript Helper Functions            ##
                    282: ###############################################################
                    283: 
                    284: =pod 
                    285: 
1.112     bowersj2  286: =head1 HTML and Javascript Functions
1.42      matthew   287: 
1.112     bowersj2  288: =over 4
                    289: 
1.648     raeburn   290: =item * &browser_and_searcher_javascript()
1.112     bowersj2  291: 
                    292: X<browsing, javascript>X<searching, javascript>Returns a string
                    293: containing javascript with two functions, C<openbrowser> and
                    294: C<opensearcher>. Returned string does not contain E<lt>scriptE<gt>
                    295: tags.
1.42      matthew   296: 
1.648     raeburn   297: =item * &openbrowser(formname,elementname,only,omit) [javascript]
1.42      matthew   298: 
                    299: inputs: formname, elementname, only, omit
                    300: 
                    301: formname and elementname indicate the name of the html form and name of
                    302: the element that the results of the browsing selection are to be placed in. 
                    303: 
                    304: Specifying 'only' will restrict the browser to displaying only files
1.185     www       305: with the given extension.  Can be a comma separated list.
1.42      matthew   306: 
                    307: Specifying 'omit' will restrict the browser to NOT displaying files
1.185     www       308: with the given extension.  Can be a comma separated list.
1.42      matthew   309: 
1.648     raeburn   310: =item * &opensearcher(formname,elementname) [javascript]
1.42      matthew   311: 
                    312: Inputs: formname, elementname
                    313: 
                    314: formname and elementname specify the name of the html form and the name
                    315: of the element the selection from the search results will be placed in.
1.542     raeburn   316: 
1.42      matthew   317: =cut
                    318: 
                    319: sub browser_and_searcher_javascript {
1.199     albertel  320:     my ($mode)=@_;
                    321:     if (!defined($mode)) { $mode='edit'; }
1.453     albertel  322:     my $resurl=&escape_single(&lastresurl());
1.42      matthew   323:     return <<END;
1.219     albertel  324: // <!-- BEGIN LON-CAPA Internal
1.50      matthew   325:     var editbrowser = null;
1.135     albertel  326:     function openbrowser(formname,elementname,only,omit,titleelement) {
1.170     www       327:         var url = '$resurl/?';
1.42      matthew   328:         if (editbrowser == null) {
                    329:             url += 'launch=1&';
                    330:         }
                    331:         url += 'catalogmode=interactive&';
1.199     albertel  332:         url += 'mode=$mode&';
1.611     albertel  333:         url += 'inhibitmenu=yes&';
1.42      matthew   334:         url += 'form=' + formname + '&';
                    335:         if (only != null) {
                    336:             url += 'only=' + only + '&';
1.217     albertel  337:         } else {
                    338:             url += 'only=&';
                    339: 	}
1.42      matthew   340:         if (omit != null) {
                    341:             url += 'omit=' + omit + '&';
1.217     albertel  342:         } else {
                    343:             url += 'omit=&';
                    344: 	}
1.135     albertel  345:         if (titleelement != null) {
                    346:             url += 'titleelement=' + titleelement + '&';
1.217     albertel  347:         } else {
                    348: 	    url += 'titleelement=&';
                    349: 	}
1.42      matthew   350:         url += 'element=' + elementname + '';
                    351:         var title = 'Browser';
1.435     albertel  352:         var options = 'scrollbars=1,resizable=1,menubar=0,toolbar=1,location=1';
1.42      matthew   353:         options += ',width=700,height=600';
                    354:         editbrowser = open(url,title,options,'1');
                    355:         editbrowser.focus();
                    356:     }
                    357:     var editsearcher;
1.135     albertel  358:     function opensearcher(formname,elementname,titleelement) {
1.42      matthew   359:         var url = '/adm/searchcat?';
                    360:         if (editsearcher == null) {
                    361:             url += 'launch=1&';
                    362:         }
                    363:         url += 'catalogmode=interactive&';
1.199     albertel  364:         url += 'mode=$mode&';
1.42      matthew   365:         url += 'form=' + formname + '&';
1.135     albertel  366:         if (titleelement != null) {
                    367:             url += 'titleelement=' + titleelement + '&';
1.217     albertel  368:         } else {
                    369: 	    url += 'titleelement=&';
                    370: 	}
1.42      matthew   371:         url += 'element=' + elementname + '';
                    372:         var title = 'Search';
1.435     albertel  373:         var options = 'scrollbars=1,resizable=1,menubar=0,toolbar=1,location=1';
1.42      matthew   374:         options += ',width=700,height=600';
                    375:         editsearcher = open(url,title,options,'1');
                    376:         editsearcher.focus();
                    377:     }
1.219     albertel  378: // END LON-CAPA Internal -->
1.42      matthew   379: END
1.170     www       380: }
                    381: 
                    382: sub lastresurl {
1.258     albertel  383:     if ($env{'environment.lastresurl'}) {
                    384: 	return $env{'environment.lastresurl'}
1.170     www       385:     } else {
                    386: 	return '/res';
                    387:     }
                    388: }
                    389: 
                    390: sub storeresurl {
                    391:     my $resurl=&Apache::lonnet::clutter(shift);
                    392:     unless ($resurl=~/^\/res/) { return 0; }
                    393:     $resurl=~s/\/$//;
                    394:     &Apache::lonnet::put('environment',{'lastresurl' => $resurl});
1.646     raeburn   395:     &Apache::lonnet::appenv({'environment.lastresurl' => $resurl});
1.170     www       396:     return 1;
1.42      matthew   397: }
                    398: 
1.74      www       399: sub studentbrowser_javascript {
1.111     www       400:    unless (
1.258     albertel  401:             (($env{'request.course.id'}) && 
1.302     albertel  402:              (&Apache::lonnet::allowed('srm',$env{'request.course.id'})
                    403: 	      || &Apache::lonnet::allowed('srm',$env{'request.course.id'}.
                    404: 					  '/'.$env{'request.course.sec'})
                    405: 	      ))
1.258     albertel  406:          || ($env{'request.role'}=~/^(au|dc|su)/)
1.111     www       407:           ) { return ''; }  
1.74      www       408:    return (<<'ENDSTDBRW');
                    409: <script type="text/javascript" language="Javascript" >
                    410:     var stdeditbrowser;
1.558     albertel  411:     function openstdbrowser(formname,uname,udom,roleflag,ignorefilter) {
1.74      www       412:         var url = '/adm/pickstudent?';
                    413:         var filter;
1.558     albertel  414: 	if (!ignorefilter) {
                    415: 	    eval('filter=document.'+formname+'.'+uname+'.value;');
                    416: 	}
1.74      www       417:         if (filter != null) {
                    418:            if (filter != '') {
                    419:                url += 'filter='+filter+'&';
                    420: 	   }
                    421:         }
                    422:         url += 'form=' + formname + '&unameelement='+uname+
                    423:                                     '&udomelement='+udom;
1.111     www       424: 	if (roleflag) { url+="&roles=1"; }
1.102     www       425:         var title = 'Student_Browser';
1.74      www       426:         var options = 'scrollbars=1,resizable=1,menubar=0';
                    427:         options += ',width=700,height=600';
                    428:         stdeditbrowser = open(url,title,options,'1');
                    429:         stdeditbrowser.focus();
                    430:     }
                    431: </script>
                    432: ENDSTDBRW
                    433: }
1.42      matthew   434: 
1.74      www       435: sub selectstudent_link {
1.111     www       436:    my ($form,$unameele,$udomele)=@_;
1.258     albertel  437:    if ($env{'request.course.id'}) {  
1.302     albertel  438:        if (!&Apache::lonnet::allowed('srm',$env{'request.course.id'})
                    439: 	   && !&Apache::lonnet::allowed('srm',$env{'request.course.id'}.
                    440: 					'/'.$env{'request.course.sec'})) {
1.111     www       441: 	   return '';
                    442:        }
                    443:        return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
1.607     albertel  444:         '","'.$udomele.'");'."'>".&mt('Select User')."</a>";
1.74      www       445:    }
1.258     albertel  446:    if ($env{'request.role'}=~/^(au|dc|su)/) {
1.111     www       447:        return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
1.119     www       448:         '","'.$udomele.'",1);'."'>".&mt('Select User')."</a>";
1.111     www       449:    }
                    450:    return '';
1.91      www       451: }
                    452: 
1.653     raeburn   453: sub authorbrowser_javascript {
                    454:     return <<"ENDAUTHORBRW";
                    455: <script type="text/javascript">
                    456: var stdeditbrowser;
                    457: 
                    458: function openauthorbrowser(formname,udom) {
                    459:     var url = '/adm/pickauthor?';
                    460:     url += 'form='+formname+'&roledom='+udom;
                    461:     var title = 'Author_Browser';
                    462:     var options = 'scrollbars=1,resizable=1,menubar=0';
                    463:     options += ',width=700,height=600';
                    464:     stdeditbrowser = open(url,title,options,'1');
                    465:     stdeditbrowser.focus();
                    466: }
                    467: 
                    468: </script>
                    469: ENDAUTHORBRW
                    470: }
                    471: 
1.91      www       472: sub coursebrowser_javascript {
1.468     raeburn   473:     my ($domainfilter,$sec_element,$formname)=@_;
1.377     raeburn   474:     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   475:    my $output = '
1.538     albertel  476: <script type="text/javascript">
1.468     raeburn   477:     var stdeditbrowser;'."\n";
                    478:    $output .= <<"ENDSTDBRW";
1.377     raeburn   479:     function opencrsbrowser(formname,uname,udom,desc,extra_element,multflag,crstype) {
1.91      www       480:         var url = '/adm/pickcourse?';
1.468     raeburn   481:         var domainfilter = '';
                    482:         var formid = getFormIdByName(formname);
                    483:         if (formid > -1) {
                    484:             var domid = getIndexByName(formid,udom);
                    485:             if (domid > -1) {
                    486:                 if (document.forms[formid].elements[domid].type == 'select-one') {
                    487:                     domainfilter=document.forms[formid].elements[domid].options[document.forms[formid].elements[domid].selectedIndex].value;
                    488:                 }
                    489:                 if (document.forms[formid].elements[domid].type == 'hidden') {
                    490:                     domainfilter=document.forms[formid].elements[domid].value;
                    491:                 }
                    492:             }
1.91      www       493:         }
1.128     albertel  494:         if (domainfilter != null) {
                    495:            if (domainfilter != '') {
                    496:                url += 'domainfilter='+domainfilter+'&';
                    497: 	   }
                    498:         }
1.91      www       499:         url += 'form=' + formname + '&cnumelement='+uname+
1.187     albertel  500: 	                            '&cdomelement='+udom+
                    501:                                     '&cnameelement='+desc;
1.468     raeburn   502:         if (extra_element !=null && extra_element != '') {
1.594     raeburn   503:             if (formname == 'rolechoice' || formname == 'studentform') {
1.468     raeburn   504:                 url += '&roleelement='+extra_element;
                    505:                 if (domainfilter == null || domainfilter == '') {
                    506:                     url += '&domainfilter='+extra_element;
                    507:                 }
1.234     raeburn   508:             }
1.468     raeburn   509:             else {
                    510:                 if (formname == 'portform') {
                    511:                     url += '&setroles='+extra_element;
                    512:                 }
                    513:             }     
1.230     raeburn   514:         }
1.293     raeburn   515:         if (multflag !=null && multflag != '') {
                    516:             url += '&multiple='+multflag;
                    517:         }
1.377     raeburn   518:         if (crstype == 'Course/Group') {
                    519:             if (formname == 'cu') {
                    520:                 crstype = document.cu.crstype.options[document.cu.crstype.selectedIndex].value; 
                    521:                 if (crstype == "") {
                    522:                     alert("$crs_or_grp_alert");
                    523:                     return;
                    524:                 }
                    525:             }
                    526:         }
                    527:         if (crstype !=null && crstype != '') {
                    528:             url += '&type='+crstype;
                    529:         }
1.102     www       530:         var title = 'Course_Browser';
1.91      www       531:         var options = 'scrollbars=1,resizable=1,menubar=0';
                    532:         options += ',width=700,height=600';
                    533:         stdeditbrowser = open(url,title,options,'1');
                    534:         stdeditbrowser.focus();
                    535:     }
1.468     raeburn   536: 
                    537:     function getFormIdByName(formname) {
                    538:         for (var i=0;i<document.forms.length;i++) {
                    539:             if (document.forms[i].name == formname) {
                    540:                 return i;
                    541:             }
                    542:         }
                    543:         return -1; 
                    544:     }
                    545: 
                    546:     function getIndexByName(formid,item) {
                    547:         for (var i=0;i<document.forms[formid].elements.length;i++) {
                    548:             if (document.forms[formid].elements[i].name == item) {
                    549:                 return i;
                    550:             }
                    551:         }
                    552:         return -1;
                    553:     }
1.91      www       554: ENDSTDBRW
1.468     raeburn   555:     if ($sec_element ne '') {
                    556:         $output .= &setsec_javascript($sec_element,$formname);
                    557:     }
                    558:     $output .= '
                    559: </script>';
                    560:     return $output;
                    561: }
                    562: 
                    563: sub setsec_javascript {
                    564:     my ($sec_element,$formname) = @_;
                    565:     my $setsections = qq|
                    566: function setSect(sectionlist) {
1.629     raeburn   567:     var sectionsArray = new Array();
                    568:     if ((sectionlist != '') && (typeof sectionlist != "undefined")) {
                    569:         sectionsArray = sectionlist.split(",");
                    570:     }
1.468     raeburn   571:     var numSections = sectionsArray.length;
                    572:     document.$formname.$sec_element.length = 0;
                    573:     if (numSections == 0) {
                    574:         document.$formname.$sec_element.multiple=false;
                    575:         document.$formname.$sec_element.size=1;
                    576:         document.$formname.$sec_element.options[0] = new Option('No existing sections','',false,false)
                    577:     } else {
                    578:         if (numSections == 1) {
                    579:             document.$formname.$sec_element.multiple=false;
                    580:             document.$formname.$sec_element.size=1;
                    581:             document.$formname.$sec_element.options[0] = new Option('Select','',true,true);
                    582:             document.$formname.$sec_element.options[1] = new Option('No section','',false,false)
                    583:             document.$formname.$sec_element.options[2] = new Option(sectionsArray[0],sectionsArray[0],false,false);
                    584:         } else {
                    585:             for (var i=0; i<numSections; i++) {
                    586:                 document.$formname.$sec_element.options[i] = new Option(sectionsArray[i],sectionsArray[i],false,false)
                    587:             }
                    588:             document.$formname.$sec_element.multiple=true
                    589:             if (numSections < 3) {
                    590:                 document.$formname.$sec_element.size=numSections;
                    591:             } else {
                    592:                 document.$formname.$sec_element.size=3;
                    593:             }
                    594:             document.$formname.$sec_element.options[0].selected = false
                    595:         }
                    596:     }
1.91      www       597: }
1.468     raeburn   598: |;
                    599:     return $setsections;
                    600: }
                    601: 
1.91      www       602: 
                    603: sub selectcourse_link {
1.377     raeburn   604:    my ($form,$unameele,$udomele,$desc,$extra_element,$multflag,$selecttype)=@_;
1.492     albertel  605:    return "<a href='".'javascript:opencrsbrowser("'.$form.'","'.$unameele.
                    606:         '","'.$udomele.'","'.$desc.'","'.$extra_element.'","'.$multflag.'","'.$selecttype.'");'."'>".&mt('Select Course')."</a>";
1.74      www       607: }
1.42      matthew   608: 
1.653     raeburn   609: sub selectauthor_link {
                    610:    my ($form,$udom)=@_;
                    611:    return '<a href="javascript:openauthorbrowser('."'$form','$udom'".');">'.
                    612:           &mt('Select Author').'</a>';
                    613: }
                    614: 
1.273     raeburn   615: sub check_uncheck_jscript {
                    616:     my $jscript = <<"ENDSCRT";
                    617: function checkAll(field) {
                    618:     if (field.length > 0) {
                    619:         for (i = 0; i < field.length; i++) {
                    620:             field[i].checked = true ;
                    621:         }
                    622:     } else {
                    623:         field.checked = true
                    624:     }
                    625: }
                    626:  
                    627: function uncheckAll(field) {
                    628:     if (field.length > 0) {
                    629:         for (i = 0; i < field.length; i++) {
                    630:             field[i].checked = false ;
1.543     albertel  631:         }
                    632:     } else {
1.273     raeburn   633:         field.checked = false ;
                    634:     }
                    635: }
                    636: ENDSCRT
                    637:     return $jscript;
                    638: }
                    639: 
1.656     www       640: sub select_timezone {
1.659     raeburn   641:    my ($name,$selected,$onchange,$includeempty)=@_;
                    642:    my $output='<select name="'.$name.'" '.$onchange.'>'."\n";
                    643:    if ($includeempty) {
                    644:        $output .= '<option value=""';
                    645:        if (($selected eq '') || ($selected eq 'local')) {
                    646:            $output .= ' selected="selected" ';
                    647:        }
                    648:        $output .= '> </option>';
                    649:    }
1.657     raeburn   650:    my @timezones = DateTime::TimeZone->all_names;
                    651:    foreach my $tzone (@timezones) {
                    652:        $output.= '<option value="'.$tzone.'"';
                    653:        if ($tzone eq $selected) {
                    654:            $output.=' selected="selected"';
                    655:        }
                    656:        $output.=">$tzone</option>\n";
1.656     www       657:    }
                    658:    $output.="</select>";
                    659:    return $output;
                    660: }
1.273     raeburn   661: 
1.687     raeburn   662: sub select_datelocale {
                    663:     my ($name,$selected,$onchange,$includeempty)=@_;
                    664:     my $output='<select name="'.$name.'" '.$onchange.'>'."\n";
                    665:     if ($includeempty) {
                    666:         $output .= '<option value=""';
                    667:         if ($selected eq '') {
                    668:             $output .= ' selected="selected" ';
                    669:         }
                    670:         $output .= '> </option>';
                    671:     }
                    672:     my (@possibles,%locale_names);
                    673:     my @locales = DateTime::Locale::Catalog::Locales;
                    674:     foreach my $locale (@locales) {
                    675:         if (ref($locale) eq 'HASH') {
                    676:             my $id = $locale->{'id'};
                    677:             if ($id ne '') {
                    678:                 my $en_terr = $locale->{'en_territory'};
                    679:                 my $native_terr = $locale->{'native_territory'};
1.695     raeburn   680:                 my @languages = &Apache::lonlocal::preferred_languages();
1.687     raeburn   681:                 if (grep(/^en$/,@languages) || !@languages) {
                    682:                     if ($en_terr ne '') {
                    683:                         $locale_names{$id} = '('.$en_terr.')';
                    684:                     } elsif ($native_terr ne '') {
                    685:                         $locale_names{$id} = $native_terr;
                    686:                     }
                    687:                 } else {
                    688:                     if ($native_terr ne '') {
                    689:                         $locale_names{$id} = $native_terr.' ';
                    690:                     } elsif ($en_terr ne '') {
                    691:                         $locale_names{$id} = '('.$en_terr.')';
                    692:                     }
                    693:                 }
                    694:                 push (@possibles,$id);
                    695:             }
                    696:         }
                    697:     }
                    698:     foreach my $item (sort(@possibles)) {
                    699:         $output.= '<option value="'.$item.'"';
                    700:         if ($item eq $selected) {
                    701:             $output.=' selected="selected"';
                    702:         }
                    703:         $output.=">$item";
                    704:         if ($locale_names{$item} ne '') {
                    705:             $output.="  $locale_names{$item}</option>\n";
                    706:         }
                    707:         $output.="</option>\n";
                    708:     }
                    709:     $output.="</select>";
                    710:     return $output;
                    711: }
                    712: 
1.42      matthew   713: =pod
1.36      matthew   714: 
1.648     raeburn   715: =item * &linked_select_forms(...)
1.36      matthew   716: 
                    717: linked_select_forms returns a string containing a <script></script> block
                    718: and html for two <select> menus.  The select menus will be linked in that
                    719: changing the value of the first menu will result in new values being placed
                    720: in the second menu.  The values in the select menu will appear in alphabetical
1.609     raeburn   721: order unless a defined order is provided.
1.36      matthew   722: 
                    723: linked_select_forms takes the following ordered inputs:
                    724: 
                    725: =over 4
                    726: 
1.112     bowersj2  727: =item * $formname, the name of the <form> tag
1.36      matthew   728: 
1.112     bowersj2  729: =item * $middletext, the text which appears between the <select> tags
1.36      matthew   730: 
1.112     bowersj2  731: =item * $firstdefault, the default value for the first menu
1.36      matthew   732: 
1.112     bowersj2  733: =item * $firstselectname, the name of the first <select> tag
1.36      matthew   734: 
1.112     bowersj2  735: =item * $secondselectname, the name of the second <select> tag
1.36      matthew   736: 
1.112     bowersj2  737: =item * $hashref, a reference to a hash containing the data for the menus.
1.36      matthew   738: 
1.609     raeburn   739: =item * $menuorder, the order of values in the first menu
                    740: 
1.41      ng        741: =back 
                    742: 
1.36      matthew   743: Below is an example of such a hash.  Only the 'text', 'default', and 
                    744: 'select2' keys must appear as stated.  keys(%menu) are the possible 
                    745: values for the first select menu.  The text that coincides with the 
1.41      ng        746: first menu value is given in $menu{$choice1}->{'text'}.  The values 
1.36      matthew   747: and text for the second menu are given in the hash pointed to by 
                    748: $menu{$choice1}->{'select2'}.  
                    749: 
1.112     bowersj2  750:  my %menu = ( A1 => { text =>"Choice A1" ,
                    751:                        default => "B3",
                    752:                        select2 => { 
                    753:                            B1 => "Choice B1",
                    754:                            B2 => "Choice B2",
                    755:                            B3 => "Choice B3",
                    756:                            B4 => "Choice B4"
1.609     raeburn   757:                            },
                    758:                        order => ['B4','B3','B1','B2'],
1.112     bowersj2  759:                    },
                    760:                A2 => { text =>"Choice A2" ,
                    761:                        default => "C2",
                    762:                        select2 => { 
                    763:                            C1 => "Choice C1",
                    764:                            C2 => "Choice C2",
                    765:                            C3 => "Choice C3"
1.609     raeburn   766:                            },
                    767:                        order => ['C2','C1','C3'],
1.112     bowersj2  768:                    },
                    769:                A3 => { text =>"Choice A3" ,
                    770:                        default => "D6",
                    771:                        select2 => { 
                    772:                            D1 => "Choice D1",
                    773:                            D2 => "Choice D2",
                    774:                            D3 => "Choice D3",
                    775:                            D4 => "Choice D4",
                    776:                            D5 => "Choice D5",
                    777:                            D6 => "Choice D6",
                    778:                            D7 => "Choice D7"
1.609     raeburn   779:                            },
                    780:                        order => ['D4','D3','D2','D1','D7','D6','D5'],
1.112     bowersj2  781:                    }
                    782:                );
1.36      matthew   783: 
                    784: =cut
                    785: 
                    786: sub linked_select_forms {
                    787:     my ($formname,
                    788:         $middletext,
                    789:         $firstdefault,
                    790:         $firstselectname,
                    791:         $secondselectname, 
1.609     raeburn   792:         $hashref,
                    793:         $menuorder,
1.36      matthew   794:         ) = @_;
                    795:     my $second = "document.$formname.$secondselectname";
                    796:     my $first = "document.$formname.$firstselectname";
                    797:     # output the javascript to do the changing
                    798:     my $result = '';
1.219     albertel  799:     $result.="<script type=\"text/javascript\">\n";
1.36      matthew   800:     $result.="var select2data = new Object();\n";
                    801:     $" = '","';
                    802:     my $debug = '';
                    803:     foreach my $s1 (sort(keys(%$hashref))) {
                    804:         $result.="select2data.d_$s1 = new Object();\n";        
                    805:         $result.="select2data.d_$s1.def = new String('".
                    806:             $hashref->{$s1}->{'default'}."');\n";
1.609     raeburn   807:         $result.="select2data.d_$s1.values = new Array(";
1.36      matthew   808:         my @s2values = sort(keys( %{ $hashref->{$s1}->{'select2'} } ));
1.609     raeburn   809:         if (ref($hashref->{$s1}->{'order'}) eq 'ARRAY') {
                    810:             @s2values = @{$hashref->{$s1}->{'order'}};
                    811:         }
1.36      matthew   812:         $result.="\"@s2values\");\n";
                    813:         $result.="select2data.d_$s1.texts = new Array(";        
                    814:         my @s2texts;
                    815:         foreach my $value (@s2values) {
                    816:             push @s2texts, $hashref->{$s1}->{'select2'}->{$value};
                    817:         }
                    818:         $result.="\"@s2texts\");\n";
                    819:     }
                    820:     $"=' ';
                    821:     $result.= <<"END";
                    822: 
                    823: function select1_changed() {
                    824:     // Determine new choice
                    825:     var newvalue = "d_" + $first.value;
                    826:     // update select2
                    827:     var values     = select2data[newvalue].values;
                    828:     var texts      = select2data[newvalue].texts;
                    829:     var select2def = select2data[newvalue].def;
                    830:     var i;
                    831:     // out with the old
                    832:     for (i = 0; i < $second.options.length; i++) {
                    833:         $second.options[i] = null;
                    834:     }
                    835:     // in with the nuclear
                    836:     for (i=0;i<values.length; i++) {
                    837:         $second.options[i] = new Option(values[i]);
1.143     matthew   838:         $second.options[i].value = values[i];
1.36      matthew   839:         $second.options[i].text = texts[i];
                    840:         if (values[i] == select2def) {
                    841:             $second.options[i].selected = true;
                    842:         }
                    843:     }
                    844: }
                    845: </script>
                    846: END
                    847:     # output the initial values for the selection lists
                    848:     $result .= "<select size=\"1\" name=\"$firstselectname\" onchange=\"select1_changed()\">\n";
1.609     raeburn   849:     my @order = sort(keys(%{$hashref}));
                    850:     if (ref($menuorder) eq 'ARRAY') {
                    851:         @order = @{$menuorder};
                    852:     }
                    853:     foreach my $value (@order) {
1.36      matthew   854:         $result.="    <option value=\"$value\" ";
1.253     albertel  855:         $result.=" selected=\"selected\" " if ($value eq $firstdefault);
1.119     www       856:         $result.=">".&mt($hashref->{$value}->{'text'})."</option>\n";
1.36      matthew   857:     }
                    858:     $result .= "</select>\n";
                    859:     my %select2 = %{$hashref->{$firstdefault}->{'select2'}};
                    860:     $result .= $middletext;
                    861:     $result .= "<select size=\"1\" name=\"$secondselectname\">\n";
                    862:     my $seconddefault = $hashref->{$firstdefault}->{'default'};
1.609     raeburn   863:     
                    864:     my @secondorder = sort(keys(%select2));
                    865:     if (ref($hashref->{$firstdefault}->{'order'}) eq 'ARRAY') {
                    866:         @secondorder = @{$hashref->{$firstdefault}->{'order'}};
                    867:     }
                    868:     foreach my $value (@secondorder) {
1.36      matthew   869:         $result.="    <option value=\"$value\" ";        
1.253     albertel  870:         $result.=" selected=\"selected\" " if ($value eq $seconddefault);
1.119     www       871:         $result.=">".&mt($select2{$value})."</option>\n";
1.36      matthew   872:     }
                    873:     $result .= "</select>\n";
                    874:     #    return $debug;
                    875:     return $result;
                    876: }   #  end of sub linked_select_forms {
                    877: 
1.45      matthew   878: =pod
1.44      bowersj2  879: 
1.648     raeburn   880: =item * &help_open_topic($topic,$text,$stayOnPage,$width,$height)
1.44      bowersj2  881: 
1.112     bowersj2  882: Returns a string corresponding to an HTML link to the given help
                    883: $topic, where $topic corresponds to the name of a .tex file in
                    884: /home/httpd/html/adm/help/tex, with underscores replaced by
                    885: spaces. 
                    886: 
                    887: $text will optionally be linked to the same topic, allowing you to
                    888: link text in addition to the graphic. If you do not want to link
                    889: text, but wish to specify one of the later parameters, pass an
                    890: empty string. 
                    891: 
                    892: $stayOnPage is a value that will be interpreted as a boolean. If true,
                    893: the link will not open a new window. If false, the link will open
                    894: a new window using Javascript. (Default is false.) 
                    895: 
                    896: $width and $height are optional numerical parameters that will
                    897: override the width and height of the popped up window, which may
                    898: be useful for certain help topics with big pictures included. 
1.44      bowersj2  899: 
                    900: =cut
                    901: 
                    902: sub help_open_topic {
1.48      bowersj2  903:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
                    904:     $text = "" if (not defined $text);
1.44      bowersj2  905:     $stayOnPage = 0 if (not defined $stayOnPage);
1.552     banghart  906:     if ($env{'browser.interface'} eq 'textual') {
1.79      www       907: 	$stayOnPage=1;
                    908:     }
1.44      bowersj2  909:     $width = 350 if (not defined $width);
                    910:     $height = 400 if (not defined $height);
                    911:     my $filename = $topic;
                    912:     $filename =~ s/ /_/g;
                    913: 
1.48      bowersj2  914:     my $template = "";
                    915:     my $link;
1.572     banghart  916:     
1.159     www       917:     $topic=~s/\W/\_/g;
1.44      bowersj2  918: 
1.572     banghart  919:     if (!$stayOnPage) {
1.72      bowersj2  920: 	$link = "javascript:void(open('/adm/help/${filename}.hlp', 'Help_for_$topic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
1.572     banghart  921:     } else {
1.48      bowersj2  922: 	$link = "/adm/help/${filename}.hlp";
                    923:     }
                    924: 
                    925:     # Add the text
1.572     banghart  926:     if ($text ne "") {
1.77      www       927: 	$template .= 
1.572     banghart  928:             "<table bgcolor='#3333AA' cellspacing='1' cellpadding='1' border='0'><tr>".
1.705     tempelho  929:             "<td bgcolor='#5555FF'><a target=\"_top\" href=\"$link\"><span style=\"color:#FFFFFF;font-size:10pt;\">$text</span></a>";
1.48      bowersj2  930:     }
                    931: 
                    932:     # Add the graphic
1.179     matthew   933:     my $title = &mt('Online Help');
1.667     raeburn   934:     my $helpicon=&lonhttpdurl("/adm/help/help.png");
1.48      bowersj2  935:     $template .= <<"ENDTEMPLATE";
1.436     albertel  936:  <a target="_top" href="$link" title="$title"><img src="$helpicon" border="0" alt="(Help: $topic)" /></a>
1.44      bowersj2  937: ENDTEMPLATE
1.705     tempelho  938:     if ($text ne '') { $template.='</td></tr></table>' };
1.44      bowersj2  939:     return $template;
                    940: 
1.106     bowersj2  941: }
                    942: 
                    943: # This is a quicky function for Latex cheatsheet editing, since it 
                    944: # appears in at least four places
                    945: sub helpLatexCheatsheet {
                    946:     my $other = shift;
                    947:     my $addOther = '';
                    948:     if ($other) {
                    949: 	$addOther = Apache::loncommon::help_open_topic($other, shift,
                    950: 						       undef, undef, 600) .
                    951: 							   '</td><td>';
                    952:     }
                    953:     return '<table><tr><td>'.
                    954: 	$addOther .
1.636     raeburn   955: 	&Apache::loncommon::help_open_topic("Greek_Symbols",&mt('Greek Symbols'),
1.106     bowersj2  956: 					    undef,undef,600)
                    957: 	.'</td><td>'.
1.636     raeburn   958: 	&Apache::loncommon::help_open_topic("Other_Symbols",&mt('Other Symbols'),
1.106     bowersj2  959: 					    undef,undef,600)
1.673     felicia   960: 	.'</td><td>'.
                    961: 	&Apache::loncommon::help_open_topic("Authoring_Output_Tags",&mt('Output Tags'),
                    962: 	                                    undef,undef,600)
1.106     bowersj2  963: 	.'</td></tr></table>';
1.172     www       964: }
                    965: 
1.430     albertel  966: sub general_help {
                    967:     my $helptopic='Student_Intro';
                    968:     if ($env{'request.role'}=~/^(ca|au)/) {
                    969: 	$helptopic='Authoring_Intro';
                    970:     } elsif ($env{'request.role'}=~/^cc/) {
                    971: 	$helptopic='Course_Coordination_Intro';
1.672     raeburn   972:     } elsif ($env{'request.role'}=~/^dc/) {
                    973:         $helptopic='Domain_Coordination_Intro';
1.430     albertel  974:     }
                    975:     return $helptopic;
                    976: }
                    977: 
                    978: sub update_help_link {
                    979:     my ($topic,$component_help,$faq,$bug,$stayOnPage) = @_;
                    980:     my $origurl = $ENV{'REQUEST_URI'};
                    981:     $origurl=~s|^/~|/priv/|;
                    982:     my $timestamp = time;
                    983:     foreach my $datum (\$topic,\$component_help,\$faq,\$bug,\$origurl) {
                    984:         $$datum = &escape($$datum);
                    985:     }
                    986: 
                    987:     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";
                    988:     my $output .= <<"ENDOUTPUT";
                    989: <script type="text/javascript">
                    990: banner_link = '$banner_link';
                    991: </script>
                    992: ENDOUTPUT
                    993:     return $output;
                    994: }
                    995: 
                    996: # now just updates the help link and generates a blue icon
1.193     raeburn   997: sub help_open_menu {
1.430     albertel  998:     my ($topic,$component_help,$faq,$bug,$stayOnPage,$width,$height,$text) 
1.552     banghart  999: 	= @_;    
1.430     albertel 1000:     $stayOnPage = 0 if (not defined $stayOnPage);
1.572     banghart 1001:     # only use pop-up help (stayOnPage == 0)
1.552     banghart 1002:     # if environment.remote is on (using remote control UI)
1.572     banghart 1003:     if ($env{'browser.interface'} eq 'textual' ||
                   1004:     	$env{'environment.remote'} eq 'off' ) {
1.552     banghart 1005:         $stayOnPage=1;
1.430     albertel 1006:     }
                   1007:     my $output;
                   1008:     if ($component_help) {
                   1009: 	if (!$text) {
                   1010: 	    $output=&help_open_topic($component_help,undef,$stayOnPage,
                   1011: 				       $width,$height);
                   1012: 	} else {
                   1013: 	    my $help_text;
                   1014: 	    $help_text=&unescape($topic);
                   1015: 	    $output='<table><tr><td>'.
                   1016: 		&help_open_topic($component_help,$help_text,$stayOnPage,
                   1017: 				 $width,$height).'</td></tr></table>';
                   1018: 	}
                   1019:     }
                   1020:     my $banner_link = &update_help_link($topic,$component_help,$faq,$bug,$stayOnPage);
                   1021:     return $output.$banner_link;
                   1022: }
                   1023: 
                   1024: sub top_nav_help {
                   1025:     my ($text) = @_;
1.436     albertel 1026:     $text = &mt($text);
1.572     banghart 1027:     my $stay_on_page = 
1.436     albertel 1028: 	($env{'browser.interface'}  eq 'textual' ||
                   1029: 	 $env{'environment.remote'} eq 'off' );
1.572     banghart 1030:     my $link = ($stay_on_page) ? "javascript:helpMenu('display')"
1.436     albertel 1031: 	                     : "javascript:helpMenu('open')";
1.572     banghart 1032:     my $banner_link = &update_help_link(undef,undef,undef,undef,$stay_on_page);
1.436     albertel 1033: 
1.201     raeburn  1034:     my $title = &mt('Get help');
1.436     albertel 1035: 
                   1036:     return <<"END";
                   1037: $banner_link
                   1038:  <a href="$link" title="$title">$text</a>
                   1039: END
                   1040: }
                   1041: 
                   1042: sub help_menu_js {
                   1043:     my ($text) = @_;
                   1044: 
                   1045:     my $stayOnPage = 
                   1046: 	($env{'browser.interface'}  eq 'textual' ||
                   1047: 	 $env{'environment.remote'} eq 'off' );
                   1048: 
                   1049:     my $width = 620;
                   1050:     my $height = 600;
1.430     albertel 1051:     my $helptopic=&general_help();
                   1052:     my $details_link = '/adm/help/'.$helptopic.'.hlp';
1.261     albertel 1053:     my $nothing=&Apache::lonhtmlcommon::javascript_nothing();
1.331     albertel 1054:     my $start_page =
                   1055:         &Apache::loncommon::start_page('Help Menu', undef,
                   1056: 				       {'frameset'    => 1,
                   1057: 					'js_ready'    => 1,
                   1058: 					'add_entries' => {
                   1059: 					    'border' => '0',
1.579     raeburn  1060: 					    'rows'   => "110,*",},});
1.331     albertel 1061:     my $end_page =
                   1062:         &Apache::loncommon::end_page({'frameset' => 1,
                   1063: 				      'js_ready' => 1,});
                   1064: 
1.436     albertel 1065:     my $template .= <<"ENDTEMPLATE";
                   1066: <script type="text/javascript">
1.253     albertel 1067: // <!-- BEGIN LON-CAPA Internal
                   1068: // <![CDATA[
1.430     albertel 1069: var banner_link = '';
1.243     raeburn  1070: function helpMenu(target) {
                   1071:     var caller = this;
                   1072:     if (target == 'open') {
                   1073:         var newWindow = null;
                   1074:         try {
1.262     albertel 1075:             newWindow =  window.open($nothing,"helpmenu","HEIGHT=$height,WIDTH=$width,resizable=yes,scrollbars=yes" )
1.243     raeburn  1076:         }
                   1077:         catch(error) {
                   1078:             writeHelp(caller);
                   1079:             return;
                   1080:         }
                   1081:         if (newWindow) {
                   1082:             caller = newWindow;
                   1083:         }
1.193     raeburn  1084:     }
1.243     raeburn  1085:     writeHelp(caller);
                   1086:     return;
                   1087: }
                   1088: function writeHelp(caller) {
1.430     albertel 1089:     caller.document.writeln('$start_page<frame name="bannerframe"  src="'+banner_link+'" /><frame name="bodyframe" src="$details_link" /> $end_page')
1.243     raeburn  1090:     caller.document.close()
                   1091:     caller.focus()
1.193     raeburn  1092: }
1.253     albertel 1093: // ]]>
1.219     albertel 1094: // END LON-CAPA Internal -->
1.436     albertel 1095: </script>
1.193     raeburn  1096: ENDTEMPLATE
                   1097:     return $template;
                   1098: }
                   1099: 
1.172     www      1100: sub help_open_bug {
                   1101:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
1.258     albertel 1102:     unless ($env{'user.adv'}) { return ''; }
1.172     www      1103:     unless ($Apache::lonnet::perlvar{'BugzillaHost'}) { return ''; }
                   1104:     $text = "" if (not defined $text);
                   1105:     $stayOnPage = 0 if (not defined $stayOnPage);
1.258     albertel 1106:     if ($env{'browser.interface'} eq 'textual' ||
                   1107: 	$env{'environment.remote'} eq 'off' ) {
1.172     www      1108: 	$stayOnPage=1;
                   1109:     }
1.184     albertel 1110:     $width = 600 if (not defined $width);
                   1111:     $height = 600 if (not defined $height);
1.172     www      1112: 
                   1113:     $topic=~s/\W+/\+/g;
                   1114:     my $link='';
                   1115:     my $template='';
1.379     albertel 1116:     my $url=$Apache::lonnet::perlvar{'BugzillaHost'}.'enter_bug.cgi?product=LON-CAPA&amp;bug_file_loc='.
                   1117: 	&escape($ENV{'REQUEST_URI'}).'&amp;component='.$topic;
1.172     www      1118:     if (!$stayOnPage)
                   1119:     {
                   1120: 	$link = "javascript:void(open('$url', 'Bugzilla', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
                   1121:     }
                   1122:     else
                   1123:     {
                   1124: 	$link = $url;
                   1125:     }
                   1126:     # Add the text
                   1127:     if ($text ne "")
                   1128:     {
                   1129: 	$template .= 
                   1130:   "<table bgcolor='#AA3333' cellspacing='1' cellpadding='1' border='0'><tr>".
1.705     tempelho 1131:   "<td bgcolor='#FF5555'><a target=\"_top\" href=\"$link\"><span style=\"color:#FFFFFF;font-size:10pt;\">$text</span></a>";
1.172     www      1132:     }
                   1133: 
                   1134:     # Add the graphic
1.179     matthew  1135:     my $title = &mt('Report a Bug');
1.215     albertel 1136:     my $bugicon=&lonhttpdurl("/adm/lonMisc/smallBug.gif");
1.172     www      1137:     $template .= <<"ENDTEMPLATE";
1.436     albertel 1138:  <a target="_top" href="$link" title="$title"><img src="$bugicon" border="0" alt="(Bug: $topic)" /></a>
1.172     www      1139: ENDTEMPLATE
                   1140:     if ($text ne '') { $template.='</td></tr></table>' };
                   1141:     return $template;
                   1142: 
                   1143: }
                   1144: 
                   1145: sub help_open_faq {
                   1146:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
1.258     albertel 1147:     unless ($env{'user.adv'}) { return ''; }
1.172     www      1148:     unless ($Apache::lonnet::perlvar{'FAQHost'}) { return ''; }
                   1149:     $text = "" if (not defined $text);
                   1150:     $stayOnPage = 0 if (not defined $stayOnPage);
1.258     albertel 1151:     if ($env{'browser.interface'} eq 'textual' ||
                   1152: 	$env{'environment.remote'} eq 'off' ) {
1.172     www      1153: 	$stayOnPage=1;
                   1154:     }
                   1155:     $width = 350 if (not defined $width);
                   1156:     $height = 400 if (not defined $height);
                   1157: 
                   1158:     $topic=~s/\W+/\+/g;
                   1159:     my $link='';
                   1160:     my $template='';
                   1161:     my $url=$Apache::lonnet::perlvar{'FAQHost'}.'/fom/cache/'.$topic.'.html';
                   1162:     if (!$stayOnPage)
                   1163:     {
                   1164: 	$link = "javascript:void(open('$url', 'FAQ-O-Matic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
                   1165:     }
                   1166:     else
                   1167:     {
                   1168: 	$link = $url;
                   1169:     }
                   1170: 
                   1171:     # Add the text
                   1172:     if ($text ne "")
                   1173:     {
                   1174: 	$template .= 
1.173     www      1175:   "<table bgcolor='#337733' cellspacing='1' cellpadding='1' border='0'><tr>".
1.705     tempelho 1176:   "<td bgcolor='#448844'><a target=\"_top\" href=\"$link\"><span style=\"color:#FFFFFF; font-size:10pt;\">$text</span></a>";
1.172     www      1177:     }
                   1178: 
                   1179:     # Add the graphic
1.179     matthew  1180:     my $title = &mt('View the FAQ');
1.215     albertel 1181:     my $faqicon=&lonhttpdurl("/adm/lonMisc/smallFAQ.gif");
1.172     www      1182:     $template .= <<"ENDTEMPLATE";
1.436     albertel 1183:  <a target="_top" href="$link" title="$title"><img src="$faqicon" border="0" alt="(FAQ: $topic)" /></a>
1.172     www      1184: ENDTEMPLATE
                   1185:     if ($text ne '') { $template.='</td></tr></table>' };
                   1186:     return $template;
                   1187: 
1.44      bowersj2 1188: }
1.37      matthew  1189: 
1.180     matthew  1190: ###############################################################
                   1191: ###############################################################
                   1192: 
1.45      matthew  1193: =pod
                   1194: 
1.648     raeburn  1195: =item * &change_content_javascript():
1.256     matthew  1196: 
                   1197: This and the next function allow you to create small sections of an
                   1198: otherwise static HTML page that you can update on the fly with
                   1199: Javascript, even in Netscape 4.
                   1200: 
                   1201: The Javascript fragment returned by this function (no E<lt>scriptE<gt> tag)
                   1202: must be written to the HTML page once. It will prove the Javascript
                   1203: function "change(name, content)". Calling the change function with the
                   1204: name of the section 
                   1205: you want to update, matching the name passed to C<changable_area>, and
                   1206: the new content you want to put in there, will put the content into
                   1207: that area.
                   1208: 
                   1209: B<Note>: Netscape 4 only reserves enough space for the changable area
                   1210: to contain room for the original contents. You need to "make space"
                   1211: for whatever changes you wish to make, and be B<sure> to check your
                   1212: code in Netscape 4. This feature in Netscape 4 is B<not> powerful;
                   1213: it's adequate for updating a one-line status display, but little more.
                   1214: This script will set the space to 100% width, so you only need to
                   1215: worry about height in Netscape 4.
                   1216: 
                   1217: Modern browsers are much less limiting, and if you can commit to the
                   1218: user not using Netscape 4, this feature may be used freely with
                   1219: pretty much any HTML.
                   1220: 
                   1221: =cut
                   1222: 
                   1223: sub change_content_javascript {
                   1224:     # If we're on Netscape 4, we need to use Layer-based code
1.258     albertel 1225:     if ($env{'browser.type'} eq 'netscape' &&
                   1226: 	$env{'browser.version'} =~ /^4\./) {
1.256     matthew  1227: 	return (<<NETSCAPE4);
                   1228: 	function change(name, content) {
                   1229: 	    doc = document.layers[name+"___escape"].layers[0].document;
                   1230: 	    doc.open();
                   1231: 	    doc.write(content);
                   1232: 	    doc.close();
                   1233: 	}
                   1234: NETSCAPE4
                   1235:     } else {
                   1236: 	# Otherwise, we need to use semi-standards-compliant code
                   1237: 	# (technically, "innerHTML" isn't standard but the equivalent
                   1238: 	# is really scary, and every useful browser supports it
                   1239: 	return (<<DOMBASED);
                   1240: 	function change(name, content) {
                   1241: 	    element = document.getElementById(name);
                   1242: 	    element.innerHTML = content;
                   1243: 	}
                   1244: DOMBASED
                   1245:     }
                   1246: }
                   1247: 
                   1248: =pod
                   1249: 
1.648     raeburn  1250: =item * &changable_area($name,$origContent):
1.256     matthew  1251: 
                   1252: This provides a "changable area" that can be modified on the fly via
                   1253: the Javascript code provided in C<change_content_javascript>. $name is
                   1254: the name you will use to reference the area later; do not repeat the
                   1255: same name on a given HTML page more then once. $origContent is what
                   1256: the area will originally contain, which can be left blank.
                   1257: 
                   1258: =cut
                   1259: 
                   1260: sub changable_area {
                   1261:     my ($name, $origContent) = @_;
                   1262: 
1.258     albertel 1263:     if ($env{'browser.type'} eq 'netscape' &&
                   1264: 	$env{'browser.version'} =~ /^4\./) {
1.256     matthew  1265: 	# If this is netscape 4, we need to use the Layer tag
                   1266: 	return "<ilayer width='100%' id='${name}___escape' overflow='none'><layer width='100%' id='$name' overflow='none'>$origContent</layer></ilayer>";
                   1267:     } else {
                   1268: 	return "<span id='$name'>$origContent</span>";
                   1269:     }
                   1270: }
                   1271: 
                   1272: =pod
                   1273: 
1.648     raeburn  1274: =item * &viewport_geometry_js 
1.590     raeburn  1275: 
                   1276: Provides javascript object (Geometry) which can provide information about the viewport geometry for the client browser.
                   1277: 
                   1278: =cut
                   1279: 
                   1280: 
                   1281: sub viewport_geometry_js { 
                   1282:     return <<"GEOMETRY";
                   1283: var Geometry = {};
                   1284: function init_geometry() {
                   1285:     if (Geometry.init) { return };
                   1286:     Geometry.init=1;
                   1287:     if (window.innerHeight) {
                   1288:         Geometry.getViewportHeight   = function() { return window.innerHeight; };
                   1289:         Geometry.getViewportWidth   = function() { return window.innerWidth; };
                   1290:         Geometry.getHorizontalScroll = function() { return window.pageXOffset; };
                   1291:         Geometry.getVerticalScroll   = function() { return window.pageYOffset; };
                   1292:     }
                   1293:     else if (document.documentElement && document.documentElement.clientHeight) {
                   1294:         Geometry.getViewportHeight =
                   1295:             function() { return document.documentElement.clientHeight; };
                   1296:         Geometry.getViewportWidth =
                   1297:             function() { return document.documentElement.clientWidth; };
                   1298: 
                   1299:         Geometry.getHorizontalScroll =
                   1300:             function() { return document.documentElement.scrollLeft; };
                   1301:         Geometry.getVerticalScroll =
                   1302:             function() { return document.documentElement.scrollTop; };
                   1303:     }
                   1304:     else if (document.body.clientHeight) {
                   1305:         Geometry.getViewportHeight =
                   1306:             function() { return document.body.clientHeight; };
                   1307:         Geometry.getViewportWidth =
                   1308:             function() { return document.body.clientWidth; };
                   1309:         Geometry.getHorizontalScroll =
                   1310:             function() { return document.body.scrollLeft; };
                   1311:         Geometry.getVerticalScroll =
                   1312:             function() { return document.body.scrollTop; };
                   1313:     }
                   1314: }
                   1315: 
                   1316: GEOMETRY
                   1317: }
                   1318: 
                   1319: =pod
                   1320: 
1.648     raeburn  1321: =item * &viewport_size_js()
1.590     raeburn  1322: 
                   1323: Provides a javascript function to set values of two form elements - width and height (elements are passed in as arguments to the javascript function) to the dimensions of the user's browser window. 
                   1324: 
                   1325: =cut
                   1326: 
                   1327: sub viewport_size_js {
                   1328:     my $geometry = &viewport_geometry_js();
                   1329:     return <<"DIMS";
                   1330: 
                   1331: $geometry
                   1332: 
                   1333: function getViewportDims(width,height) {
                   1334:     init_geometry();
                   1335:     width.value = Geometry.getViewportWidth();
                   1336:     height.value = Geometry.getViewportHeight();
                   1337:     return;
                   1338: }
                   1339: 
                   1340: DIMS
                   1341: }
                   1342: 
                   1343: =pod
                   1344: 
1.648     raeburn  1345: =item * &resize_textarea_js()
1.565     albertel 1346: 
                   1347: emits the needed javascript to resize a textarea to be as big as possible
                   1348: 
                   1349: creates a function resize_textrea that takes two IDs first should be
                   1350: the id of the element to resize, second should be the id of a div that
                   1351: surrounds everything that comes after the textarea, this routine needs
                   1352: to be attached to the <body> for the onload and onresize events.
                   1353: 
1.648     raeburn  1354: =back
1.565     albertel 1355: 
                   1356: =cut
                   1357: 
                   1358: sub resize_textarea_js {
1.590     raeburn  1359:     my $geometry = &viewport_geometry_js();
1.565     albertel 1360:     return <<"RESIZE";
                   1361:     <script type="text/javascript">
1.590     raeburn  1362: $geometry
1.565     albertel 1363: 
1.588     albertel 1364: function getX(element) {
                   1365:     var x = 0;
                   1366:     while (element) {
                   1367: 	x += element.offsetLeft;
                   1368: 	element = element.offsetParent;
                   1369:     }
                   1370:     return x;
                   1371: }
                   1372: function getY(element) {
                   1373:     var y = 0;
                   1374:     while (element) {
                   1375: 	y += element.offsetTop;
                   1376: 	element = element.offsetParent;
                   1377:     }
                   1378:     return y;
                   1379: }
                   1380: 
                   1381: 
1.565     albertel 1382: function resize_textarea(textarea_id,bottom_id) {
                   1383:     init_geometry();
                   1384:     var textarea        = document.getElementById(textarea_id);
                   1385:     //alert(textarea);
                   1386: 
1.588     albertel 1387:     var textarea_top    = getY(textarea);
1.565     albertel 1388:     var textarea_height = textarea.offsetHeight;
                   1389:     var bottom          = document.getElementById(bottom_id);
1.588     albertel 1390:     var bottom_top      = getY(bottom);
1.565     albertel 1391:     var bottom_height   = bottom.offsetHeight;
                   1392:     var window_height   = Geometry.getViewportHeight();
1.588     albertel 1393:     var fudge           = 23;
1.565     albertel 1394:     var new_height      = window_height-fudge-textarea_top-bottom_height;
                   1395:     if (new_height < 300) {
                   1396: 	new_height = 300;
                   1397:     }
                   1398:     textarea.style.height=new_height+'px';
                   1399: }
                   1400: </script>
                   1401: RESIZE
                   1402: 
                   1403: }
                   1404: 
                   1405: =pod
                   1406: 
1.256     matthew  1407: =head1 Excel and CSV file utility routines
                   1408: 
                   1409: =over 4
                   1410: 
                   1411: =cut
                   1412: 
                   1413: ###############################################################
                   1414: ###############################################################
                   1415: 
                   1416: =pod
                   1417: 
1.648     raeburn  1418: =item * &csv_translate($text) 
1.37      matthew  1419: 
1.185     www      1420: Translate $text to allow it to be output as a 'comma separated values' 
1.37      matthew  1421: format.
                   1422: 
                   1423: =cut
                   1424: 
1.180     matthew  1425: ###############################################################
                   1426: ###############################################################
1.37      matthew  1427: sub csv_translate {
                   1428:     my $text = shift;
                   1429:     $text =~ s/\"/\"\"/g;
1.209     albertel 1430:     $text =~ s/\n/ /g;
1.37      matthew  1431:     return $text;
                   1432: }
1.180     matthew  1433: 
                   1434: ###############################################################
                   1435: ###############################################################
                   1436: 
                   1437: =pod
                   1438: 
1.648     raeburn  1439: =item * &define_excel_formats()
1.180     matthew  1440: 
                   1441: Define some commonly used Excel cell formats.
                   1442: 
                   1443: Currently supported formats:
                   1444: 
                   1445: =over 4
                   1446: 
                   1447: =item header
                   1448: 
                   1449: =item bold
                   1450: 
                   1451: =item h1
                   1452: 
                   1453: =item h2
                   1454: 
                   1455: =item h3
                   1456: 
1.256     matthew  1457: =item h4
                   1458: 
                   1459: =item i
                   1460: 
1.180     matthew  1461: =item date
                   1462: 
                   1463: =back
                   1464: 
                   1465: Inputs: $workbook
                   1466: 
                   1467: Returns: $format, a hash reference.
                   1468: 
                   1469: =cut
                   1470: 
                   1471: ###############################################################
                   1472: ###############################################################
                   1473: sub define_excel_formats {
                   1474:     my ($workbook) = @_;
                   1475:     my $format;
                   1476:     $format->{'header'} = $workbook->add_format(bold      => 1, 
                   1477:                                                 bottom    => 1,
                   1478:                                                 align     => 'center');
                   1479:     $format->{'bold'} = $workbook->add_format(bold=>1);
                   1480:     $format->{'h1'}   = $workbook->add_format(bold=>1, size=>18);
                   1481:     $format->{'h2'}   = $workbook->add_format(bold=>1, size=>16);
                   1482:     $format->{'h3'}   = $workbook->add_format(bold=>1, size=>14);
1.255     matthew  1483:     $format->{'h4'}   = $workbook->add_format(bold=>1, size=>12);
1.246     matthew  1484:     $format->{'i'}    = $workbook->add_format(italic=>1);
1.180     matthew  1485:     $format->{'date'} = $workbook->add_format(num_format=>
1.207     matthew  1486:                                             'mm/dd/yyyy hh:mm:ss');
1.180     matthew  1487:     return $format;
                   1488: }
                   1489: 
                   1490: ###############################################################
                   1491: ###############################################################
1.113     bowersj2 1492: 
                   1493: =pod
                   1494: 
1.648     raeburn  1495: =item * &create_workbook()
1.255     matthew  1496: 
                   1497: Create an Excel worksheet.  If it fails, output message on the
                   1498: request object and return undefs.
                   1499: 
                   1500: Inputs: Apache request object
                   1501: 
                   1502: Returns (undef) on failure, 
                   1503:     Excel worksheet object, scalar with filename, and formats 
                   1504:     from &Apache::loncommon::define_excel_formats on success
                   1505: 
                   1506: =cut
                   1507: 
                   1508: ###############################################################
                   1509: ###############################################################
                   1510: sub create_workbook {
                   1511:     my ($r) = @_;
                   1512:         #
                   1513:     # Create the excel spreadsheet
                   1514:     my $filename = '/prtspool/'.
1.258     albertel 1515:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
1.255     matthew  1516:         time.'_'.rand(1000000000).'.xls';
                   1517:     my $workbook  = Spreadsheet::WriteExcel->new('/home/httpd'.$filename);
                   1518:     if (! defined($workbook)) {
                   1519:         $r->log_error("Error creating excel spreadsheet $filename: $!");
                   1520:         $r->print('<p>'.&mt("Unable to create new Excel file.  ".
                   1521:                             "This error has been logged.  ".
                   1522:                             "Please alert your LON-CAPA administrator").
                   1523:                   '</p>');
                   1524:         return (undef);
                   1525:     }
                   1526:     #
                   1527:     $workbook->set_tempdir('/home/httpd/perl/tmp');
                   1528:     #
                   1529:     my $format = &Apache::loncommon::define_excel_formats($workbook);
                   1530:     return ($workbook,$filename,$format);
                   1531: }
                   1532: 
                   1533: ###############################################################
                   1534: ###############################################################
                   1535: 
                   1536: =pod
                   1537: 
1.648     raeburn  1538: =item * &create_text_file()
1.113     bowersj2 1539: 
1.542     raeburn  1540: Create a file to write to and eventually make available to the user.
1.256     matthew  1541: If file creation fails, outputs an error message on the request object and 
                   1542: return undefs.
1.113     bowersj2 1543: 
1.256     matthew  1544: Inputs: Apache request object, and file suffix
1.113     bowersj2 1545: 
1.256     matthew  1546: Returns (undef) on failure, 
                   1547:     Filehandle and filename on success.
1.113     bowersj2 1548: 
                   1549: =cut
                   1550: 
1.256     matthew  1551: ###############################################################
                   1552: ###############################################################
                   1553: sub create_text_file {
                   1554:     my ($r,$suffix) = @_;
                   1555:     if (! defined($suffix)) { $suffix = 'txt'; };
                   1556:     my $fh;
                   1557:     my $filename = '/prtspool/'.
1.258     albertel 1558:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
1.256     matthew  1559:         time.'_'.rand(1000000000).'.'.$suffix;
                   1560:     $fh = Apache::File->new('>/home/httpd'.$filename);
                   1561:     if (! defined($fh)) {
                   1562:         $r->log_error("Couldn't open $filename for output $!");
1.683     bisitz   1563:         $r->print(&mt('Problems occurred in creating the output file. '
                   1564:                      .'This error has been logged. '
                   1565:                      .'Please alert your LON-CAPA administrator.'));
1.113     bowersj2 1566:     }
1.256     matthew  1567:     return ($fh,$filename)
1.113     bowersj2 1568: }
                   1569: 
                   1570: 
1.256     matthew  1571: =pod 
1.113     bowersj2 1572: 
                   1573: =back
                   1574: 
                   1575: =cut
1.37      matthew  1576: 
                   1577: ###############################################################
1.33      matthew  1578: ##        Home server <option> list generating code          ##
                   1579: ###############################################################
1.35      matthew  1580: 
1.169     www      1581: # ------------------------------------------
                   1582: 
                   1583: sub domain_select {
                   1584:     my ($name,$value,$multiple)=@_;
                   1585:     my %domains=map { 
1.514     albertel 1586: 	$_ => $_.' '. &Apache::lonnet::domain($_,'description') 
1.512     albertel 1587:     } &Apache::lonnet::all_domains();
1.169     www      1588:     if ($multiple) {
                   1589: 	$domains{''}=&mt('Any domain');
1.550     albertel 1590: 	$domains{'select_form_order'} = [sort {lc($a) cmp lc($b) } (keys(%domains))];
1.287     albertel 1591: 	return &multiple_select_form($name,$value,4,\%domains);
1.169     www      1592:     } else {
1.550     albertel 1593: 	$domains{'select_form_order'} = [sort {lc($a) cmp lc($b) } (keys(%domains))];
1.169     www      1594: 	return &select_form($name,$value,%domains);
                   1595:     }
                   1596: }
                   1597: 
1.282     albertel 1598: #-------------------------------------------
                   1599: 
                   1600: =pod
                   1601: 
1.519     raeburn  1602: =head1 Routines for form select boxes
                   1603: 
                   1604: =over 4
                   1605: 
1.648     raeburn  1606: =item * &multiple_select_form($name,$value,$size,$hash,$order)
1.282     albertel 1607: 
                   1608: Returns a string containing a <select> element int multiple mode
                   1609: 
                   1610: 
                   1611: Args:
                   1612:   $name - name of the <select> element
1.506     raeburn  1613:   $value - scalar or array ref of values that should already be selected
1.282     albertel 1614:   $size - number of rows long the select element is
1.283     albertel 1615:   $hash - the elements should be 'option' => 'shown text'
1.282     albertel 1616:           (shown text should already have been &mt())
1.506     raeburn  1617:   $order - (optional) array ref of the order to show the elements in
1.283     albertel 1618: 
1.282     albertel 1619: =cut
                   1620: 
                   1621: #-------------------------------------------
1.169     www      1622: sub multiple_select_form {
1.284     albertel 1623:     my ($name,$value,$size,$hash,$order)=@_;
1.169     www      1624:     my %selected = map { $_ => 1 } ref($value)?@{$value}:($value);
                   1625:     my $output='';
1.191     matthew  1626:     if (! defined($size)) {
                   1627:         $size = 4;
1.283     albertel 1628:         if (scalar(keys(%$hash))<4) {
                   1629:             $size = scalar(keys(%$hash));
1.191     matthew  1630:         }
                   1631:     }
1.169     www      1632:     $output.="\n<select name='$name' size='$size' multiple='1'>";
1.501     banghart 1633:     my @order;
1.506     raeburn  1634:     if (ref($order) eq 'ARRAY')  {
                   1635:         @order = @{$order};
                   1636:     } else {
                   1637:         @order = sort(keys(%$hash));
1.501     banghart 1638:     }
                   1639:     if (exists($$hash{'select_form_order'})) {
                   1640:         @order = @{$$hash{'select_form_order'}};
                   1641:     }
                   1642:         
1.284     albertel 1643:     foreach my $key (@order) {
1.356     albertel 1644:         $output.='<option value="'.&HTML::Entities::encode($key,'"<>&').'" ';
1.284     albertel 1645:         $output.='selected="selected" ' if ($selected{$key});
                   1646:         $output.='>'.$hash->{$key}."</option>\n";
1.169     www      1647:     }
                   1648:     $output.="</select>\n";
                   1649:     return $output;
                   1650: }
                   1651: 
1.88      www      1652: #-------------------------------------------
                   1653: 
                   1654: =pod
                   1655: 
1.648     raeburn  1656: =item * &select_form($defdom,$name,%hash)
1.88      www      1657: 
                   1658: Returns a string containing a <select name='$name' size='1'> form to 
                   1659: allow a user to select options from a hash option_name => displayed text.  
                   1660: See lonrights.pm for an example invocation and use.
                   1661: 
                   1662: =cut
                   1663: 
                   1664: #-------------------------------------------
                   1665: sub select_form {
                   1666:     my ($def,$name,%hash) = @_;
                   1667:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
1.128     albertel 1668:     my @keys;
                   1669:     if (exists($hash{'select_form_order'})) {
                   1670: 	@keys=@{$hash{'select_form_order'}};
                   1671:     } else {
                   1672: 	@keys=sort(keys(%hash));
                   1673:     }
1.356     albertel 1674:     foreach my $key (@keys) {
                   1675:         $selectform.=
                   1676: 	    '<option value="'.&HTML::Entities::encode($key,'"<>&').'" '.
                   1677:             ($key eq $def ? 'selected="selected" ' : '').
                   1678:                 ">".&mt($hash{$key})."</option>\n";
1.88      www      1679:     }
                   1680:     $selectform.="</select>";
                   1681:     return $selectform;
                   1682: }
                   1683: 
1.475     www      1684: # For display filters
                   1685: 
                   1686: sub display_filter {
                   1687:     if (!$env{'form.show'}) { $env{'form.show'}=10; }
1.477     www      1688:     if (!$env{'form.displayfilter'}) { $env{'form.displayfilter'}='currentfolder'; }
1.475     www      1689:     return '<nobr><label>'.&mt('Records [_1]',
                   1690: 			       &Apache::lonmeta::selectbox('show',$env{'form.show'},undef,
                   1691: 							   (&mt('all'),10,20,50,100,1000,10000))).
1.478     www      1692: 	   '</label></nobr> <nobr>'.
1.475     www      1693:            &mt('Filter [_1]',
1.477     www      1694: 	   &select_form($env{'form.displayfilter'},
                   1695: 			'displayfilter',
                   1696: 			('currentfolder' => 'Current folder/page',
                   1697: 			 'containing' => 'Containing phrase',
                   1698: 			 'none' => 'None'))).
1.478     www      1699: 			 '<input type="text" name="containingphrase" size="30" value="'.&HTML::Entities::encode($env{'form.containingphrase'}).'" /></nobr>';
1.475     www      1700: }
                   1701: 
1.167     www      1702: sub gradeleveldescription {
                   1703:     my $gradelevel=shift;
                   1704:     my %gradelevels=(0 => 'Not specified',
                   1705: 		     1 => 'Grade 1',
                   1706: 		     2 => 'Grade 2',
                   1707: 		     3 => 'Grade 3',
                   1708: 		     4 => 'Grade 4',
                   1709: 		     5 => 'Grade 5',
                   1710: 		     6 => 'Grade 6',
                   1711: 		     7 => 'Grade 7',
                   1712: 		     8 => 'Grade 8',
                   1713: 		     9 => 'Grade 9',
                   1714: 		     10 => 'Grade 10',
                   1715: 		     11 => 'Grade 11',
                   1716: 		     12 => 'Grade 12',
                   1717: 		     13 => 'Grade 13',
                   1718: 		     14 => '100 Level',
                   1719: 		     15 => '200 Level',
                   1720: 		     16 => '300 Level',
                   1721: 		     17 => '400 Level',
                   1722: 		     18 => 'Graduate Level');
                   1723:     return &mt($gradelevels{$gradelevel});
                   1724: }
                   1725: 
1.163     www      1726: sub select_level_form {
                   1727:     my ($deflevel,$name)=@_;
                   1728:     unless ($deflevel) { $deflevel=0; }
1.167     www      1729:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
                   1730:     for (my $i=0; $i<=18; $i++) {
                   1731:         $selectform.="<option value=\"$i\" ".
1.253     albertel 1732:             ($i==$deflevel ? 'selected="selected" ' : '').
1.167     www      1733:                 ">".&gradeleveldescription($i)."</option>\n";
                   1734:     }
                   1735:     $selectform.="</select>";
                   1736:     return $selectform;
1.163     www      1737: }
1.167     www      1738: 
1.35      matthew  1739: #-------------------------------------------
                   1740: 
1.45      matthew  1741: =pod
                   1742: 
1.648     raeburn  1743: =item * &select_dom_form($defdom,$name,$includeempty,$showdomdesc)
1.35      matthew  1744: 
                   1745: Returns a string containing a <select name='$name' size='1'> form to 
                   1746: allow a user to select the domain to preform an operation in.  
                   1747: See loncreateuser.pm for an example invocation and use.
                   1748: 
1.90      www      1749: If the $includeempty flag is set, it also includes an empty choice ("no domain
                   1750: selected");
                   1751: 
1.563     raeburn  1752: If the $showdomdesc flag is set, the domain name is followed by the domain description. 
                   1753: 
1.35      matthew  1754: =cut
                   1755: 
                   1756: #-------------------------------------------
1.34      matthew  1757: sub select_dom_form {
1.563     raeburn  1758:     my ($defdom,$name,$includeempty,$showdomdesc) = @_;
1.550     albertel 1759:     my @domains = sort {lc($a) cmp lc($b)} (&Apache::lonnet::all_domains());
1.90      www      1760:     if ($includeempty) { @domains=('',@domains); }
1.34      matthew  1761:     my $selectdomain = "<select name=\"$name\" size=\"1\">\n";
1.356     albertel 1762:     foreach my $dom (@domains) {
                   1763:         $selectdomain.="<option value=\"$dom\" ".
1.563     raeburn  1764:             ($dom eq $defdom ? 'selected="selected" ' : '').'>'.$dom;
                   1765:         if ($showdomdesc) {
                   1766:             if ($dom ne '') {
                   1767:                 my $domdesc = &Apache::lonnet::domain($dom,'description');
                   1768:                 if ($domdesc ne '') {
                   1769:                     $selectdomain .= ' ('.$domdesc.')';
                   1770:                 }
                   1771:             } 
                   1772:         }
                   1773:         $selectdomain .= "</option>\n";
1.34      matthew  1774:     }
                   1775:     $selectdomain.="</select>";
                   1776:     return $selectdomain;
                   1777: }
                   1778: 
1.35      matthew  1779: #-------------------------------------------
                   1780: 
1.45      matthew  1781: =pod
                   1782: 
1.648     raeburn  1783: =item * &home_server_form_item($domain,$name,$defaultflag)
1.35      matthew  1784: 
1.586     raeburn  1785: input: 4 arguments (two required, two optional) - 
                   1786:     $domain - domain of new user
                   1787:     $name - name of form element
                   1788:     $default - Value of 'default' causes a default item to be first 
                   1789:                             option, and selected by default. 
                   1790:     $hide - Value of 'hide' causes hiding of the name of the server, 
                   1791:                             if 1 server found, or default, if 0 found.
1.594     raeburn  1792: output: returns 2 items: 
1.586     raeburn  1793: (a) form element which contains either:
                   1794:    (i) <select name="$name">
                   1795:         <option value="$hostid1">$hostid $servers{$hostid}</option>
                   1796:         <option value="$hostid2">$hostid $servers{$hostid}</option>       
                   1797:        </select>
                   1798:        form item if there are multiple library servers in $domain, or
                   1799:    (ii) an <input type="hidden" name="$name" value="$hostid" /> form item 
                   1800:        if there is only one library server in $domain.
                   1801: 
                   1802: (b) number of library servers found.
                   1803: 
                   1804: See loncreateuser.pm for example of use.
1.35      matthew  1805: 
                   1806: =cut
                   1807: 
                   1808: #-------------------------------------------
1.586     raeburn  1809: sub home_server_form_item {
                   1810:     my ($domain,$name,$default,$hide) = @_;
1.513     albertel 1811:     my %servers = &Apache::lonnet::get_servers($domain,'library');
1.586     raeburn  1812:     my $result;
                   1813:     my $numlib = keys(%servers);
                   1814:     if ($numlib > 1) {
                   1815:         $result .= '<select name="'.$name.'" />'."\n";
                   1816:         if ($default) {
                   1817:             $result .= '<option value="default" selected>'.&mt('default').
                   1818:                        '</option>'."\n";
                   1819:         }
                   1820:         foreach my $hostid (sort(keys(%servers))) {
                   1821:             $result.= '<option value="'.$hostid.'">'.
                   1822: 	              $hostid.' '.$servers{$hostid}."</option>\n";
                   1823:         }
                   1824:         $result .= '</select>'."\n";
                   1825:     } elsif ($numlib == 1) {
                   1826:         my $hostid;
                   1827:         foreach my $item (keys(%servers)) {
                   1828:             $hostid = $item;
                   1829:         }
                   1830:         $result .= '<input type="hidden" name="'.$name.'" value="'.
                   1831:                    $hostid.'" />';
                   1832:                    if (!$hide) {
                   1833:                        $result .= $hostid.' '.$servers{$hostid};
                   1834:                    }
                   1835:                    $result .= "\n";
                   1836:     } elsif ($default) {
                   1837:         $result .= '<input type="hidden" name="'.$name.
                   1838:                    '" value="default" />';
                   1839:                    if (!$hide) {
                   1840:                        $result .= &mt('default');
                   1841:                    }
                   1842:                    $result .= "\n";
1.33      matthew  1843:     }
1.586     raeburn  1844:     return ($result,$numlib);
1.33      matthew  1845: }
1.112     bowersj2 1846: 
                   1847: =pod
                   1848: 
1.534     albertel 1849: =back 
                   1850: 
1.112     bowersj2 1851: =cut
1.87      matthew  1852: 
                   1853: ###############################################################
1.112     bowersj2 1854: ##                  Decoding User Agent                      ##
1.87      matthew  1855: ###############################################################
                   1856: 
                   1857: =pod
                   1858: 
1.112     bowersj2 1859: =head1 Decoding the User Agent
                   1860: 
                   1861: =over 4
                   1862: 
                   1863: =item * &decode_user_agent()
1.87      matthew  1864: 
                   1865: Inputs: $r
                   1866: 
                   1867: Outputs:
                   1868: 
                   1869: =over 4
                   1870: 
1.112     bowersj2 1871: =item * $httpbrowser
1.87      matthew  1872: 
1.112     bowersj2 1873: =item * $clientbrowser
1.87      matthew  1874: 
1.112     bowersj2 1875: =item * $clientversion
1.87      matthew  1876: 
1.112     bowersj2 1877: =item * $clientmathml
1.87      matthew  1878: 
1.112     bowersj2 1879: =item * $clientunicode
1.87      matthew  1880: 
1.112     bowersj2 1881: =item * $clientos
1.87      matthew  1882: 
                   1883: =back
                   1884: 
1.157     matthew  1885: =back 
                   1886: 
1.87      matthew  1887: =cut
                   1888: 
                   1889: ###############################################################
                   1890: ###############################################################
                   1891: sub decode_user_agent {
1.247     albertel 1892:     my ($r)=@_;
1.87      matthew  1893:     my @browsertype=split(/\&/,$Apache::lonnet::perlvar{"lonBrowsDet"});
                   1894:     my %mathcap=split(/\&/,$$Apache::lonnet::perlvar{"lonMathML"});
                   1895:     my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
1.247     albertel 1896:     if (!$httpbrowser && $r) { $httpbrowser=$r->header_in('User-Agent'); }
1.87      matthew  1897:     my $clientbrowser='unknown';
                   1898:     my $clientversion='0';
                   1899:     my $clientmathml='';
                   1900:     my $clientunicode='0';
                   1901:     for (my $i=0;$i<=$#browsertype;$i++) {
                   1902:         my ($bname,$match,$notmatch,$vreg,$minv,$univ)=split(/\:/,$browsertype[$i]);
                   1903: 	if (($httpbrowser=~/$match/i)  && ($httpbrowser!~/$notmatch/i)) {
                   1904: 	    $clientbrowser=$bname;
                   1905:             $httpbrowser=~/$vreg/i;
                   1906: 	    $clientversion=$1;
                   1907:             $clientmathml=($clientversion>=$minv);
                   1908:             $clientunicode=($clientversion>=$univ);
                   1909: 	}
                   1910:     }
                   1911:     my $clientos='unknown';
                   1912:     if (($httpbrowser=~/linux/i) ||
                   1913:         ($httpbrowser=~/unix/i) ||
                   1914:         ($httpbrowser=~/ux/i) ||
                   1915:         ($httpbrowser=~/solaris/i)) { $clientos='unix'; }
                   1916:     if (($httpbrowser=~/vax/i) ||
                   1917:         ($httpbrowser=~/vms/i)) { $clientos='vms'; }
                   1918:     if ($httpbrowser=~/next/i) { $clientos='next'; }
                   1919:     if (($httpbrowser=~/mac/i) ||
                   1920:         ($httpbrowser=~/powerpc/i)) { $clientos='mac'; }
                   1921:     if ($httpbrowser=~/win/i) { $clientos='win'; }
                   1922:     if ($httpbrowser=~/embed/i) { $clientos='pda'; }
                   1923:     return ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
                   1924:             $clientunicode,$clientos,);
                   1925: }
                   1926: 
1.32      matthew  1927: ###############################################################
                   1928: ##    Authentication changing form generation subroutines    ##
                   1929: ###############################################################
                   1930: ##
                   1931: ## All of the authform_xxxxxxx subroutines take their inputs in a
                   1932: ## hash, and have reasonable default values.
                   1933: ##
                   1934: ##    formname = the name given in the <form> tag.
1.35      matthew  1935: #-------------------------------------------
                   1936: 
1.45      matthew  1937: =pod
                   1938: 
1.112     bowersj2 1939: =head1 Authentication Routines
                   1940: 
                   1941: =over 4
                   1942: 
1.648     raeburn  1943: =item * &authform_xxxxxx()
1.35      matthew  1944: 
                   1945: The authform_xxxxxx subroutines provide javascript and html forms which 
                   1946: handle some of the conveniences required for authentication forms.  
                   1947: This is not an optimal method, but it works.  
                   1948: 
                   1949: =over 4
                   1950: 
1.112     bowersj2 1951: =item * authform_header
1.35      matthew  1952: 
1.112     bowersj2 1953: =item * authform_authorwarning
1.35      matthew  1954: 
1.112     bowersj2 1955: =item * authform_nochange
1.35      matthew  1956: 
1.112     bowersj2 1957: =item * authform_kerberos
1.35      matthew  1958: 
1.112     bowersj2 1959: =item * authform_internal
1.35      matthew  1960: 
1.112     bowersj2 1961: =item * authform_filesystem
1.35      matthew  1962: 
                   1963: =back
                   1964: 
1.648     raeburn  1965: See loncreateuser.pm for invocation and use examples.
1.157     matthew  1966: 
1.35      matthew  1967: =cut
                   1968: 
                   1969: #-------------------------------------------
1.32      matthew  1970: sub authform_header{  
                   1971:     my %in = (
                   1972:         formname => 'cu',
1.80      albertel 1973:         kerb_def_dom => '',
1.32      matthew  1974:         @_,
                   1975:     );
                   1976:     $in{'formname'} = 'document.' . $in{'formname'};
                   1977:     my $result='';
1.80      albertel 1978: 
                   1979: #---------------------------------------------- Code for upper case translation
                   1980:     my $Javascript_toUpperCase;
                   1981:     unless ($in{kerb_def_dom}) {
                   1982:         $Javascript_toUpperCase =<<"END";
                   1983:         switch (choice) {
                   1984:            case 'krb': currentform.elements[choicearg].value =
                   1985:                currentform.elements[choicearg].value.toUpperCase();
                   1986:                break;
                   1987:            default:
                   1988:         }
                   1989: END
                   1990:     } else {
                   1991:         $Javascript_toUpperCase = "";
                   1992:     }
                   1993: 
1.165     raeburn  1994:     my $radioval = "'nochange'";
1.591     raeburn  1995:     if (defined($in{'curr_authtype'})) {
                   1996:         if ($in{'curr_authtype'} ne '') {
                   1997:             $radioval = "'".$in{'curr_authtype'}."arg'";
                   1998:         }
1.174     matthew  1999:     }
1.165     raeburn  2000:     my $argfield = 'null';
1.591     raeburn  2001:     if (defined($in{'mode'})) {
1.165     raeburn  2002:         if ($in{'mode'} eq 'modifycourse')  {
1.591     raeburn  2003:             if (defined($in{'curr_autharg'})) {
                   2004:                 if ($in{'curr_autharg'} ne '') {
1.165     raeburn  2005:                     $argfield = "'$in{'curr_autharg'}'";
                   2006:                 }
                   2007:             }
                   2008:         }
                   2009:     }
                   2010: 
1.32      matthew  2011:     $result.=<<"END";
                   2012: var current = new Object();
1.165     raeburn  2013: current.radiovalue = $radioval;
                   2014: current.argfield = $argfield;
1.32      matthew  2015: 
                   2016: function changed_radio(choice,currentform) {
                   2017:     var choicearg = choice + 'arg';
                   2018:     // If a radio button in changed, we need to change the argfield
                   2019:     if (current.radiovalue != choice) {
                   2020:         current.radiovalue = choice;
                   2021:         if (current.argfield != null) {
                   2022:             currentform.elements[current.argfield].value = '';
                   2023:         }
                   2024:         if (choice == 'nochange') {
                   2025:             current.argfield = null;
                   2026:         } else {
                   2027:             current.argfield = choicearg;
                   2028:             switch(choice) {
                   2029:                 case 'krb': 
                   2030:                     currentform.elements[current.argfield].value = 
                   2031:                         "$in{'kerb_def_dom'}";
                   2032:                 break;
                   2033:               default:
                   2034:                 break;
                   2035:             }
                   2036:         }
                   2037:     }
                   2038:     return;
                   2039: }
1.22      www      2040: 
1.32      matthew  2041: function changed_text(choice,currentform) {
                   2042:     var choicearg = choice + 'arg';
                   2043:     if (currentform.elements[choicearg].value !='') {
1.80      albertel 2044:         $Javascript_toUpperCase
1.32      matthew  2045:         // clear old field
                   2046:         if ((current.argfield != choicearg) && (current.argfield != null)) {
                   2047:             currentform.elements[current.argfield].value = '';
                   2048:         }
                   2049:         current.argfield = choicearg;
                   2050:     }
                   2051:     set_auth_radio_buttons(choice,currentform);
                   2052:     return;
1.20      www      2053: }
1.32      matthew  2054: 
                   2055: function set_auth_radio_buttons(newvalue,currentform) {
                   2056:     var i=0;
                   2057:     while (i < currentform.login.length) {
                   2058:         if (currentform.login[i].value == newvalue) { break; }
                   2059:         i++;
                   2060:     }
                   2061:     if (i == currentform.login.length) {
                   2062:         return;
                   2063:     }
                   2064:     current.radiovalue = newvalue;
                   2065:     currentform.login[i].checked = true;
                   2066:     return;
                   2067: }
                   2068: END
                   2069:     return $result;
                   2070: }
                   2071: 
                   2072: sub authform_authorwarning{
                   2073:     my $result='';
1.144     matthew  2074:     $result='<i>'.
                   2075:         &mt('As a general rule, only authors or co-authors should be '.
                   2076:             'filesystem authenticated '.
                   2077:             '(which allows access to the server filesystem).')."</i>\n";
1.32      matthew  2078:     return $result;
                   2079: }
                   2080: 
                   2081: sub authform_nochange{  
                   2082:     my %in = (
                   2083:               formname => 'document.cu',
                   2084:               kerb_def_dom => 'MSU.EDU',
                   2085:               @_,
                   2086:           );
1.586     raeburn  2087:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'}); 
                   2088:     my $result;
                   2089:     if (keys(%can_assign) == 0) {
                   2090:         $result = &mt('Under you current role you are not permitted to change login settings for this user');  
                   2091:     } else {
                   2092:         $result = '<label>'.&mt('[_1] Do not change login data',
                   2093:                   '<input type="radio" name="login" value="nochange" '.
                   2094:                   'checked="checked" onclick="'.
1.281     albertel 2095:             "javascript:changed_radio('nochange',$in{'formname'});".'" />').
                   2096: 	    '</label>';
1.586     raeburn  2097:     }
1.32      matthew  2098:     return $result;
                   2099: }
                   2100: 
1.591     raeburn  2101: sub authform_kerberos {
1.32      matthew  2102:     my %in = (
                   2103:               formname => 'document.cu',
                   2104:               kerb_def_dom => 'MSU.EDU',
1.80      albertel 2105:               kerb_def_auth => 'krb4',
1.32      matthew  2106:               @_,
                   2107:               );
1.586     raeburn  2108:     my ($check4,$check5,$krbcheck,$krbarg,$krbver,$result,$authtype,
                   2109:         $autharg,$jscall);
                   2110:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.80      albertel 2111:     if ($in{'kerb_def_auth'} eq 'krb5') {
1.586     raeburn  2112:        $check5 = ' checked="on"';
1.80      albertel 2113:     } else {
1.586     raeburn  2114:        $check4 = ' checked="on"';
1.80      albertel 2115:     }
1.165     raeburn  2116:     $krbarg = $in{'kerb_def_dom'};
1.591     raeburn  2117:     if (defined($in{'curr_authtype'})) {
                   2118:         if ($in{'curr_authtype'} eq 'krb') {
1.586     raeburn  2119:             $krbcheck = ' checked="on"';
1.623     raeburn  2120:             if (defined($in{'mode'})) {
                   2121:                 if ($in{'mode'} eq 'modifyuser') {
                   2122:                     $krbcheck = '';
                   2123:                 }
                   2124:             }
1.591     raeburn  2125:             if (defined($in{'curr_kerb_ver'})) {
                   2126:                 if ($in{'curr_krb_ver'} eq '5') {
                   2127:                     $check5 = ' checked="on"';
                   2128:                     $check4 = '';
                   2129:                 } else {
                   2130:                     $check4 = ' checked="on"';
                   2131:                     $check5 = '';
                   2132:                 }
1.586     raeburn  2133:             }
1.591     raeburn  2134:             if (defined($in{'curr_autharg'})) {
1.165     raeburn  2135:                 $krbarg = $in{'curr_autharg'};
                   2136:             }
1.586     raeburn  2137:             if (!$can_assign{'krb4'} && !$can_assign{'krb5'}) {
1.591     raeburn  2138:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2139:                     $result = 
                   2140:     &mt('Currently Kerberos authenticated with domain [_1] Version [_2].',
                   2141:         $in{'curr_autharg'},$krbver);
                   2142:                 } else {
                   2143:                     $result =
                   2144:     &mt('Currently Kerberos authenticated, Version [_1].',$krbver);
                   2145:                 }
                   2146:                 return $result; 
                   2147:             }
                   2148:         }
                   2149:     } else {
                   2150:         if ($authnum == 1) {
                   2151:             $authtype = '<input type="hidden" name="login" value="krb">';
1.165     raeburn  2152:         }
                   2153:     }
1.586     raeburn  2154:     if (!$can_assign{'krb4'} && !$can_assign{'krb5'}) {
                   2155:         return;
1.587     raeburn  2156:     } elsif ($authtype eq '') {
1.591     raeburn  2157:         if (defined($in{'mode'})) {
1.587     raeburn  2158:             if ($in{'mode'} eq 'modifycourse') {
                   2159:                 if ($authnum == 1) {
                   2160:                     $authtype = '<input type="hidden" name="login" value="krb">';
                   2161:                 }
                   2162:             }
                   2163:         }
1.586     raeburn  2164:     }
                   2165:     $jscall = "javascript:changed_radio('krb',$in{'formname'});";
                   2166:     if ($authtype eq '') {
                   2167:         $authtype = '<input type="radio" name="login" value="krb" '.
                   2168:                     'onclick="'.$jscall.'" onchange="'.$jscall.'"'.
                   2169:                     $krbcheck.' />';
                   2170:     }
                   2171:     if (($can_assign{'krb4'} && $can_assign{'krb5'}) ||
                   2172:         ($can_assign{'krb4'} && !$can_assign{'krb5'} && 
                   2173:          $in{'curr_authtype'} eq 'krb5') ||
                   2174:         (!$can_assign{'krb4'} && $can_assign{'krb5'} && 
                   2175:          $in{'curr_authtype'} eq 'krb4')) {
                   2176:         $result .= &mt
1.144     matthew  2177:         ('[_1] Kerberos authenticated with domain [_2] '.
1.281     albertel 2178:          '[_3] Version 4 [_4] Version 5 [_5]',
1.586     raeburn  2179:          '<label>'.$authtype,
1.281     albertel 2180:          '</label><input type="text" size="10" name="krbarg" '.
1.165     raeburn  2181:              'value="'.$krbarg.'" '.
1.144     matthew  2182:              'onchange="'.$jscall.'" />',
1.281     albertel 2183:          '<label><input type="radio" name="krbver" value="4" '.$check4.' />',
                   2184:          '</label><label><input type="radio" name="krbver" value="5" '.$check5.' />',
                   2185: 	 '</label>');
1.586     raeburn  2186:     } elsif ($can_assign{'krb4'}) {
                   2187:         $result .= &mt
                   2188:         ('[_1] Kerberos authenticated with domain [_2] '.
                   2189:          '[_3] Version 4 [_4]',
                   2190:          '<label>'.$authtype,
                   2191:          '</label><input type="text" size="10" name="krbarg" '.
                   2192:              'value="'.$krbarg.'" '.
                   2193:              'onchange="'.$jscall.'" />',
                   2194:          '<label><input type="hidden" name="krbver" value="4" />',
                   2195:          '</label>');
                   2196:     } elsif ($can_assign{'krb5'}) {
                   2197:         $result .= &mt
                   2198:         ('[_1] Kerberos authenticated with domain [_2] '.
                   2199:          '[_3] Version 5 [_4]',
                   2200:          '<label>'.$authtype,
                   2201:          '</label><input type="text" size="10" name="krbarg" '.
                   2202:              'value="'.$krbarg.'" '.
                   2203:              'onchange="'.$jscall.'" />',
                   2204:          '<label><input type="hidden" name="krbver" value="5" />',
                   2205:          '</label>');
                   2206:     }
1.32      matthew  2207:     return $result;
                   2208: }
                   2209: 
                   2210: sub authform_internal{  
1.586     raeburn  2211:     my %in = (
1.32      matthew  2212:                 formname => 'document.cu',
                   2213:                 kerb_def_dom => 'MSU.EDU',
                   2214:                 @_,
                   2215:                 );
1.586     raeburn  2216:     my ($intcheck,$intarg,$result,$authtype,$autharg,$jscall);
                   2217:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2218:     if (defined($in{'curr_authtype'})) {
                   2219:         if ($in{'curr_authtype'} eq 'int') {
1.586     raeburn  2220:             if ($can_assign{'int'}) {
                   2221:                 $intcheck = 'checked="on" ';
1.623     raeburn  2222:                 if (defined($in{'mode'})) {
                   2223:                     if ($in{'mode'} eq 'modifyuser') {
                   2224:                         $intcheck = '';
                   2225:                     }
                   2226:                 }
1.591     raeburn  2227:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2228:                     $intarg = $in{'curr_autharg'};
                   2229:                 }
                   2230:             } else {
                   2231:                 $result = &mt('Currently internally authenticated.');
                   2232:                 return $result;
1.165     raeburn  2233:             }
                   2234:         }
1.586     raeburn  2235:     } else {
                   2236:         if ($authnum == 1) {
                   2237:             $authtype = '<input type="hidden" name="login" value="int">';
                   2238:         }
                   2239:     }
                   2240:     if (!$can_assign{'int'}) {
                   2241:         return;
1.587     raeburn  2242:     } elsif ($authtype eq '') {
1.591     raeburn  2243:         if (defined($in{'mode'})) {
1.587     raeburn  2244:             if ($in{'mode'} eq 'modifycourse') {
                   2245:                 if ($authnum == 1) {
                   2246:                     $authtype = '<input type="hidden" name="login" value="int">';
                   2247:                 }
                   2248:             }
                   2249:         }
1.165     raeburn  2250:     }
1.586     raeburn  2251:     $jscall = "javascript:changed_radio('int',$in{'formname'});";
                   2252:     if ($authtype eq '') {
                   2253:         $authtype = '<input type="radio" name="login" value="int" '.$intcheck.
                   2254:                     ' onchange="'.$jscall.'" onclick="'.$jscall.'" />';
                   2255:     }
1.605     bisitz   2256:     $autharg = '<input type="password" size="10" name="intarg" value="'.
1.586     raeburn  2257:                $intarg.'" onchange="'.$jscall.'" />';
                   2258:     $result = &mt
1.144     matthew  2259:         ('[_1] Internally authenticated (with initial password [_2])',
1.586     raeburn  2260:          '<label>'.$authtype,'</label>'.$autharg);
1.620     www      2261:     $result.="<label><input type=\"checkbox\" name=\"visible\" onClick='if (this.checked) { this.form.intarg.type=\"text\" } else { this.form.intarg.type=\"password\" }' />".&mt('Visible input').'</label>';
1.32      matthew  2262:     return $result;
                   2263: }
                   2264: 
                   2265: sub authform_local{  
                   2266:     my %in = (
                   2267:               formname => 'document.cu',
                   2268:               kerb_def_dom => 'MSU.EDU',
                   2269:               @_,
                   2270:               );
1.586     raeburn  2271:     my ($loccheck,$locarg,$result,$authtype,$autharg,$jscall);
                   2272:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2273:     if (defined($in{'curr_authtype'})) {
                   2274:         if ($in{'curr_authtype'} eq 'loc') {
1.586     raeburn  2275:             if ($can_assign{'loc'}) {
                   2276:                 $loccheck = 'checked="on" ';
1.623     raeburn  2277:                 if (defined($in{'mode'})) {
                   2278:                     if ($in{'mode'} eq 'modifyuser') {
                   2279:                         $loccheck = '';
                   2280:                     }
                   2281:                 }
1.591     raeburn  2282:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2283:                     $locarg = $in{'curr_autharg'};
                   2284:                 }
                   2285:             } else {
                   2286:                 $result = &mt('Currently using local (institutional) authentication.');
                   2287:                 return $result;
1.165     raeburn  2288:             }
                   2289:         }
1.586     raeburn  2290:     } else {
                   2291:         if ($authnum == 1) {
                   2292:             $authtype = '<input type="hidden" name="login" value="loc">';
                   2293:         }
                   2294:     }
                   2295:     if (!$can_assign{'loc'}) {
                   2296:         return;
1.587     raeburn  2297:     } elsif ($authtype eq '') {
1.591     raeburn  2298:         if (defined($in{'mode'})) {
1.587     raeburn  2299:             if ($in{'mode'} eq 'modifycourse') {
                   2300:                 if ($authnum == 1) {
                   2301:                     $authtype = '<input type="hidden" name="login" value="loc">';
                   2302:                 }
                   2303:             }
                   2304:         }
1.165     raeburn  2305:     }
1.586     raeburn  2306:     $jscall = "javascript:changed_radio('loc',$in{'formname'});";
                   2307:     if ($authtype eq '') {
                   2308:         $authtype = '<input type="radio" name="login" value="loc" '.
                   2309:                     $loccheck.' onchange="'.$jscall.'" onclick="'.
                   2310:                     $jscall.'" />';
                   2311:     }
                   2312:     $autharg = '<input type="text" size="10" name="locarg" value="'.
                   2313:                $locarg.'" onchange="'.$jscall.'" />';
                   2314:     $result = &mt('[_1] Local Authentication with argument [_2]',
                   2315:                   '<label>'.$authtype,'</label>'.$autharg);
1.32      matthew  2316:     return $result;
                   2317: }
                   2318: 
                   2319: sub authform_filesystem{  
                   2320:     my %in = (
                   2321:               formname => 'document.cu',
                   2322:               kerb_def_dom => 'MSU.EDU',
                   2323:               @_,
                   2324:               );
1.586     raeburn  2325:     my ($fsyscheck,$result,$authtype,$autharg,$jscall);
                   2326:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2327:     if (defined($in{'curr_authtype'})) {
                   2328:         if ($in{'curr_authtype'} eq 'fsys') {
1.586     raeburn  2329:             if ($can_assign{'fsys'}) {
                   2330:                 $fsyscheck = 'checked="on" ';
1.623     raeburn  2331:                 if (defined($in{'mode'})) {
                   2332:                     if ($in{'mode'} eq 'modifyuser') {
                   2333:                         $fsyscheck = '';
                   2334:                     }
                   2335:                 }
1.586     raeburn  2336:             } else {
                   2337:                 $result = &mt('Currently Filesystem Authenticated.');
                   2338:                 return $result;
                   2339:             }           
                   2340:         }
                   2341:     } else {
                   2342:         if ($authnum == 1) {
                   2343:             $authtype = '<input type="hidden" name="login" value="fsys">';
                   2344:         }
                   2345:     }
                   2346:     if (!$can_assign{'fsys'}) {
                   2347:         return;
1.587     raeburn  2348:     } elsif ($authtype eq '') {
1.591     raeburn  2349:         if (defined($in{'mode'})) {
1.587     raeburn  2350:             if ($in{'mode'} eq 'modifycourse') {
                   2351:                 if ($authnum == 1) {
                   2352:                     $authtype = '<input type="hidden" name="login" value="fsys">';
                   2353:                 }
                   2354:             }
                   2355:         }
1.586     raeburn  2356:     }
                   2357:     $jscall = "javascript:changed_radio('fsys',$in{'formname'});";
                   2358:     if ($authtype eq '') {
                   2359:         $authtype = '<input type="radio" name="login" value="fsys" '.
                   2360:                     $fsyscheck.' onchange="'.$jscall.'" onclick="'.
                   2361:                     $jscall.'" />';
                   2362:     }
                   2363:     $autharg = '<input type="text" size="10" name="fsysarg" value=""'.
                   2364:                ' onchange="'.$jscall.'" />';
                   2365:     $result = &mt
1.144     matthew  2366:         ('[_1] Filesystem Authenticated (with initial password [_2])',
1.281     albertel 2367:          '<label><input type="radio" name="login" value="fsys" '.
1.586     raeburn  2368:          $fsyscheck.'onchange="'.$jscall.'" onclick="'.$jscall.'" />',
1.605     bisitz   2369:          '</label><input type="password" size="10" name="fsysarg" value="" '.
1.144     matthew  2370:                   'onchange="'.$jscall.'" />');
1.32      matthew  2371:     return $result;
                   2372: }
                   2373: 
1.586     raeburn  2374: sub get_assignable_auth {
                   2375:     my ($dom) = @_;
                   2376:     if ($dom eq '') {
                   2377:         $dom = $env{'request.role.domain'};
                   2378:     }
                   2379:     my %can_assign = (
                   2380:                           krb4 => 1,
                   2381:                           krb5 => 1,
                   2382:                           int  => 1,
                   2383:                           loc  => 1,
                   2384:                      );
                   2385:     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom);
                   2386:     if (ref($domconfig{'usercreation'}) eq 'HASH') {
                   2387:         if (ref($domconfig{'usercreation'}{'authtypes'}) eq 'HASH') {
                   2388:             my $authhash = $domconfig{'usercreation'}{'authtypes'};
                   2389:             my $context;
                   2390:             if ($env{'request.role'} =~ /^au/) {
                   2391:                 $context = 'author';
                   2392:             } elsif ($env{'request.role'} =~ /^dc/) {
                   2393:                 $context = 'domain';
                   2394:             } elsif ($env{'request.course.id'}) {
                   2395:                 $context = 'course';
                   2396:             }
                   2397:             if ($context) {
                   2398:                 if (ref($authhash->{$context}) eq 'HASH') {
                   2399:                    %can_assign = %{$authhash->{$context}}; 
                   2400:                 }
                   2401:             }
                   2402:         }
                   2403:     }
                   2404:     my $authnum = 0;
                   2405:     foreach my $key (keys(%can_assign)) {
                   2406:         if ($can_assign{$key}) {
                   2407:             $authnum ++;
                   2408:         }
                   2409:     }
                   2410:     if ($can_assign{'krb4'} && $can_assign{'krb5'}) {
                   2411:         $authnum --;
                   2412:     }
                   2413:     return ($authnum,%can_assign);
                   2414: }
                   2415: 
1.80      albertel 2416: ###############################################################
                   2417: ##    Get Kerberos Defaults for Domain                 ##
                   2418: ###############################################################
                   2419: ##
                   2420: ## Returns default kerberos version and an associated argument
                   2421: ## as listed in file domain.tab. If not listed, provides
                   2422: ## appropriate default domain and kerberos version.
                   2423: ##
                   2424: #-------------------------------------------
                   2425: 
                   2426: =pod
                   2427: 
1.648     raeburn  2428: =item * &get_kerberos_defaults()
1.80      albertel 2429: 
                   2430: get_kerberos_defaults($target_domain) returns the default kerberos
1.641     raeburn  2431: version and domain. If not found, it defaults to version 4 and the 
                   2432: domain of the server.
1.80      albertel 2433: 
1.648     raeburn  2434: =over 4
                   2435: 
1.80      albertel 2436: ($def_version, $def_krb_domain) = &get_kerberos_defaults($target_domain);
                   2437: 
1.648     raeburn  2438: =back
                   2439: 
                   2440: =back
                   2441: 
1.80      albertel 2442: =cut
                   2443: 
                   2444: #-------------------------------------------
                   2445: sub get_kerberos_defaults {
                   2446:     my $domain=shift;
1.641     raeburn  2447:     my ($krbdef,$krbdefdom);
                   2448:     my %domdefaults = &Apache::lonnet::get_domain_defaults($domain);
                   2449:     if (($domdefaults{'auth_def'} =~/^krb(4|5)$/) && ($domdefaults{'auth_arg_def'} ne '')) {
                   2450:         $krbdef = $domdefaults{'auth_def'};
                   2451:         $krbdefdom = $domdefaults{'auth_arg_def'};
                   2452:     } else {
1.80      albertel 2453:         $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/;
                   2454:         my $krbdefdom=$1;
                   2455:         $krbdefdom=~tr/a-z/A-Z/;
                   2456:         $krbdef = "krb4";
                   2457:     }
                   2458:     return ($krbdef,$krbdefdom);
                   2459: }
1.112     bowersj2 2460: 
1.32      matthew  2461: 
1.46      matthew  2462: ###############################################################
                   2463: ##                Thesaurus Functions                        ##
                   2464: ###############################################################
1.20      www      2465: 
1.46      matthew  2466: =pod
1.20      www      2467: 
1.112     bowersj2 2468: =head1 Thesaurus Functions
                   2469: 
                   2470: =over 4
                   2471: 
1.648     raeburn  2472: =item * &initialize_keywords()
1.46      matthew  2473: 
                   2474: Initializes the package variable %Keywords if it is empty.  Uses the
                   2475: package variable $thesaurus_db_file.
                   2476: 
                   2477: =cut
                   2478: 
                   2479: ###################################################
                   2480: 
                   2481: sub initialize_keywords {
                   2482:     return 1 if (scalar keys(%Keywords));
                   2483:     # If we are here, %Keywords is empty, so fill it up
                   2484:     #   Make sure the file we need exists...
                   2485:     if (! -e $thesaurus_db_file) {
                   2486:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file".
                   2487:                                  " failed because it does not exist");
                   2488:         return 0;
                   2489:     }
                   2490:     #   Set up the hash as a database
                   2491:     my %thesaurus_db;
                   2492:     if (! tie(%thesaurus_db,'GDBM_File',
1.53      albertel 2493:               $thesaurus_db_file,&GDBM_READER(),0640)){
1.46      matthew  2494:         &Apache::lonnet::logthis("Could not tie \%thesaurus_db to ".
                   2495:                                  $thesaurus_db_file);
                   2496:         return 0;
                   2497:     } 
                   2498:     #  Get the average number of appearances of a word.
                   2499:     my $avecount = $thesaurus_db{'average.count'};
                   2500:     #  Put keywords (those that appear > average) into %Keywords
                   2501:     while (my ($word,$data)=each (%thesaurus_db)) {
                   2502:         my ($count,undef) = split /:/,$data;
                   2503:         $Keywords{$word}++ if ($count > $avecount);
                   2504:     }
                   2505:     untie %thesaurus_db;
                   2506:     # Remove special values from %Keywords.
1.356     albertel 2507:     foreach my $value ('total.count','average.count') {
                   2508:         delete($Keywords{$value}) if (exists($Keywords{$value}));
1.586     raeburn  2509:   }
1.46      matthew  2510:     return 1;
                   2511: }
                   2512: 
                   2513: ###################################################
                   2514: 
                   2515: =pod
                   2516: 
1.648     raeburn  2517: =item * &keyword($word)
1.46      matthew  2518: 
                   2519: Returns true if $word is a keyword.  A keyword is a word that appears more 
                   2520: than the average number of times in the thesaurus database.  Calls 
                   2521: &initialize_keywords
                   2522: 
                   2523: =cut
                   2524: 
                   2525: ###################################################
1.20      www      2526: 
                   2527: sub keyword {
1.46      matthew  2528:     return if (!&initialize_keywords());
                   2529:     my $word=lc(shift());
                   2530:     $word=~s/\W//g;
                   2531:     return exists($Keywords{$word});
1.20      www      2532: }
1.46      matthew  2533: 
                   2534: ###############################################################
                   2535: 
                   2536: =pod 
1.20      www      2537: 
1.648     raeburn  2538: =item * &get_related_words()
1.46      matthew  2539: 
1.160     matthew  2540: Look up a word in the thesaurus.  Takes a scalar argument and returns
1.46      matthew  2541: an array of words.  If the keyword is not in the thesaurus, an empty array
                   2542: will be returned.  The order of the words returned is determined by the
                   2543: database which holds them.
                   2544: 
                   2545: Uses global $thesaurus_db_file.
                   2546: 
                   2547: =cut
                   2548: 
                   2549: ###############################################################
                   2550: sub get_related_words {
                   2551:     my $keyword = shift;
                   2552:     my %thesaurus_db;
                   2553:     if (! -e $thesaurus_db_file) {
                   2554:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file ".
                   2555:                                  "failed because the file does not exist");
                   2556:         return ();
                   2557:     }
                   2558:     if (! tie(%thesaurus_db,'GDBM_File',
1.53      albertel 2559:               $thesaurus_db_file,&GDBM_READER(),0640)){
1.46      matthew  2560:         return ();
                   2561:     } 
                   2562:     my @Words=();
1.429     www      2563:     my $count=0;
1.46      matthew  2564:     if (exists($thesaurus_db{$keyword})) {
1.356     albertel 2565: 	# The first element is the number of times
                   2566: 	# the word appears.  We do not need it now.
1.429     www      2567: 	my (undef,@RelatedWords) = (split(/:/,$thesaurus_db{$keyword}));
                   2568: 	my (undef,$mostfrequentcount)=split(/\,/,$RelatedWords[0]);
                   2569: 	my $threshold=$mostfrequentcount/10;
                   2570:         foreach my $possibleword (@RelatedWords) {
                   2571:             my ($word,$wordcount)=split(/\,/,$possibleword);
                   2572:             if ($wordcount>$threshold) {
                   2573: 		push(@Words,$word);
                   2574:                 $count++;
                   2575:                 if ($count>10) { last; }
                   2576: 	    }
1.20      www      2577:         }
                   2578:     }
1.46      matthew  2579:     untie %thesaurus_db;
                   2580:     return @Words;
1.14      harris41 2581: }
1.46      matthew  2582: 
1.112     bowersj2 2583: =pod
                   2584: 
                   2585: =back
                   2586: 
                   2587: =cut
1.61      www      2588: 
                   2589: # -------------------------------------------------------------- Plaintext name
1.81      albertel 2590: =pod
                   2591: 
1.112     bowersj2 2592: =head1 User Name Functions
                   2593: 
                   2594: =over 4
                   2595: 
1.648     raeburn  2596: =item * &plainname($uname,$udom,$first)
1.81      albertel 2597: 
1.112     bowersj2 2598: Takes a users logon name and returns it as a string in
1.226     albertel 2599: "first middle last generation" form 
                   2600: if $first is set to 'lastname' then it returns it as
                   2601: 'lastname generation, firstname middlename' if their is a lastname
1.81      albertel 2602: 
                   2603: =cut
1.61      www      2604: 
1.295     www      2605: 
1.81      albertel 2606: ###############################################################
1.61      www      2607: sub plainname {
1.226     albertel 2608:     my ($uname,$udom,$first)=@_;
1.537     albertel 2609:     return if (!defined($uname) || !defined($udom));
1.295     www      2610:     my %names=&getnames($uname,$udom);
1.226     albertel 2611:     my $name=&Apache::lonnet::format_name($names{'firstname'},
                   2612: 					  $names{'middlename'},
                   2613: 					  $names{'lastname'},
                   2614: 					  $names{'generation'},$first);
                   2615:     $name=~s/^\s+//;
1.62      www      2616:     $name=~s/\s+$//;
                   2617:     $name=~s/\s+/ /g;
1.353     albertel 2618:     if ($name !~ /\S/) { $name=$uname.':'.$udom; }
1.62      www      2619:     return $name;
1.61      www      2620: }
1.66      www      2621: 
                   2622: # -------------------------------------------------------------------- Nickname
1.81      albertel 2623: =pod
                   2624: 
1.648     raeburn  2625: =item * &nickname($uname,$udom)
1.81      albertel 2626: 
                   2627: Gets a users name and returns it as a string as
                   2628: 
                   2629: "&quot;nickname&quot;"
1.66      www      2630: 
1.81      albertel 2631: if the user has a nickname or
                   2632: 
                   2633: "first middle last generation"
                   2634: 
                   2635: if the user does not
                   2636: 
                   2637: =cut
1.66      www      2638: 
                   2639: sub nickname {
                   2640:     my ($uname,$udom)=@_;
1.537     albertel 2641:     return if (!defined($uname) || !defined($udom));
1.295     www      2642:     my %names=&getnames($uname,$udom);
1.68      albertel 2643:     my $name=$names{'nickname'};
1.66      www      2644:     if ($name) {
                   2645:        $name='&quot;'.$name.'&quot;'; 
                   2646:     } else {
                   2647:        $name=$names{'firstname'}.' '.$names{'middlename'}.' '.
                   2648: 	     $names{'lastname'}.' '.$names{'generation'};
                   2649:        $name=~s/\s+$//;
                   2650:        $name=~s/\s+/ /g;
                   2651:     }
                   2652:     return $name;
                   2653: }
                   2654: 
1.295     www      2655: sub getnames {
                   2656:     my ($uname,$udom)=@_;
1.537     albertel 2657:     return if (!defined($uname) || !defined($udom));
1.433     albertel 2658:     if ($udom eq 'public' && $uname eq 'public') {
                   2659: 	return ('lastname' => &mt('Public'));
                   2660:     }
1.295     www      2661:     my $id=$uname.':'.$udom;
                   2662:     my ($names,$cached)=&Apache::lonnet::is_cached_new('namescache',$id);
                   2663:     if ($cached) {
                   2664: 	return %{$names};
                   2665:     } else {
                   2666: 	my %loadnames=&Apache::lonnet::get('environment',
                   2667:                     ['firstname','middlename','lastname','generation','nickname'],
                   2668: 					 $udom,$uname);
                   2669: 	&Apache::lonnet::do_cache_new('namescache',$id,\%loadnames);
                   2670: 	return %loadnames;
                   2671:     }
                   2672: }
1.61      www      2673: 
1.542     raeburn  2674: # -------------------------------------------------------------------- getemails
1.648     raeburn  2675: 
1.542     raeburn  2676: =pod
                   2677: 
1.648     raeburn  2678: =item * &getemails($uname,$udom)
1.542     raeburn  2679: 
                   2680: Gets a user's email information and returns it as a hash with keys:
                   2681: notification, critnotification, permanentemail
                   2682: 
                   2683: For notification and critnotification, values are comma-separated lists 
1.648     raeburn  2684: of e-mail addresses; for permanentemail, value is a single e-mail address.
1.542     raeburn  2685:  
1.648     raeburn  2686: 
1.542     raeburn  2687: =cut
                   2688: 
1.648     raeburn  2689: 
1.466     albertel 2690: sub getemails {
                   2691:     my ($uname,$udom)=@_;
                   2692:     if ($udom eq 'public' && $uname eq 'public') {
                   2693: 	return;
                   2694:     }
1.467     www      2695:     if (!$udom) { $udom=$env{'user.domain'}; }
                   2696:     if (!$uname) { $uname=$env{'user.name'}; }
1.466     albertel 2697:     my $id=$uname.':'.$udom;
                   2698:     my ($names,$cached)=&Apache::lonnet::is_cached_new('emailscache',$id);
                   2699:     if ($cached) {
                   2700: 	return %{$names};
                   2701:     } else {
                   2702: 	my %loadnames=&Apache::lonnet::get('environment',
                   2703:                     			   ['notification','critnotification',
                   2704: 					    'permanentemail'],
                   2705: 					   $udom,$uname);
                   2706: 	&Apache::lonnet::do_cache_new('emailscache',$id,\%loadnames);
                   2707: 	return %loadnames;
                   2708:     }
                   2709: }
                   2710: 
1.551     albertel 2711: sub flush_email_cache {
                   2712:     my ($uname,$udom)=@_;
                   2713:     if (!$udom)  { $udom =$env{'user.domain'}; }
                   2714:     if (!$uname) { $uname=$env{'user.name'};   }
                   2715:     return if ($udom eq 'public' && $uname eq 'public');
                   2716:     my $id=$uname.':'.$udom;
                   2717:     &Apache::lonnet::devalidate_cache_new('emailscache',$id);
                   2718: }
                   2719: 
1.61      www      2720: # ------------------------------------------------------------------ Screenname
1.81      albertel 2721: 
                   2722: =pod
                   2723: 
1.648     raeburn  2724: =item * &screenname($uname,$udom)
1.81      albertel 2725: 
                   2726: Gets a users screenname and returns it as a string
                   2727: 
                   2728: =cut
1.61      www      2729: 
                   2730: sub screenname {
                   2731:     my ($uname,$udom)=@_;
1.258     albertel 2732:     if ($uname eq $env{'user.name'} &&
                   2733: 	$udom eq $env{'user.domain'}) {return $env{'environment.screenname'};}
1.212     albertel 2734:     my %names=&Apache::lonnet::get('environment',['screenname'],$udom,$uname);
1.68      albertel 2735:     return $names{'screenname'};
1.62      www      2736: }
                   2737: 
1.212     albertel 2738: 
1.62      www      2739: # ------------------------------------------------------------- Message Wrapper
                   2740: 
                   2741: sub messagewrapper {
1.369     www      2742:     my ($link,$username,$domain,$subject,$text)=@_;
1.62      www      2743:     return 
1.441     albertel 2744:         '<a href="/adm/email?compose=individual&amp;'.
                   2745:         'recname='.$username.'&amp;recdom='.$domain.
                   2746: 	'&amp;subject='.&escape($subject).'&amp;text='.&escape($text).'" '.
1.200     matthew  2747:         'title="'.&mt('Send message').'">'.$link.'</a>';
1.74      www      2748: }
                   2749: # --------------------------------------------------------------- Notes Wrapper
                   2750: 
                   2751: sub noteswrapper {
                   2752:     my ($link,$un,$do)=@_;
                   2753:     return 
                   2754: "<a href='/adm/email?recordftf=retrieve&recname=$un&recdom=$do'>$link</a>";
1.62      www      2755: }
                   2756: # ------------------------------------------------------------- Aboutme Wrapper
                   2757: 
                   2758: sub aboutmewrapper {
1.166     www      2759:     my ($link,$username,$domain,$target)=@_;
1.447     raeburn  2760:     if (!defined($username)  && !defined($domain)) {
                   2761:         return;
                   2762:     }
1.205     www      2763:     return '<a href="/adm/'.$domain.'/'.$username.'/aboutme"'.
1.454     banghart 2764: 	($target?' target="$target"':'').' title="'.&mt("View this user's personal page").'">'.$link.'</a>';
1.62      www      2765: }
                   2766: 
                   2767: # ------------------------------------------------------------ Syllabus Wrapper
                   2768: 
                   2769: 
                   2770: sub syllabuswrapper {
1.707     bisitz   2771:     my ($linktext,$coursedir,$domain)=@_;
1.208     matthew  2772:     return qq{<a href="/public/$domain/$coursedir/syllabus">$linktext</a>};
1.61      www      2773: }
1.14      harris41 2774: 
1.208     matthew  2775: sub track_student_link {
1.268     albertel 2776:     my ($linktext,$sname,$sdom,$target,$start) = @_;
                   2777:     my $link ="/adm/trackstudent?";
1.208     matthew  2778:     my $title = 'View recent activity';
                   2779:     if (defined($sname) && $sname !~ /^\s*$/ &&
                   2780:         defined($sdom)  && $sdom  !~ /^\s*$/) {
1.268     albertel 2781:         $link .= "selected_student=$sname:$sdom";
1.208     matthew  2782:         $title .= ' of this student';
1.268     albertel 2783:     } 
1.208     matthew  2784:     if (defined($target) && $target !~ /^\s*$/) {
                   2785:         $target = qq{target="$target"};
                   2786:     } else {
                   2787:         $target = '';
                   2788:     }
1.268     albertel 2789:     if ($start) { $link.='&amp;start='.$start; }
1.554     albertel 2790:     $title = &mt($title);
                   2791:     $linktext = &mt($linktext);
1.448     albertel 2792:     return qq{<a href="$link" title="$title" $target>$linktext</a>}.
                   2793: 	&help_open_topic('View_recent_activity');
1.208     matthew  2794: }
                   2795: 
1.508     www      2796: # ===================================================== Display a student photo
                   2797: 
                   2798: 
1.509     albertel 2799: sub student_image_tag {
1.508     www      2800:     my ($domain,$user)=@_;
                   2801:     my $imgsrc=&Apache::lonnet::studentphoto($domain,$user,'jpg');
                   2802:     if (($imgsrc) && ($imgsrc ne '/adm/lonKaputt/lonlogo_broken.gif')) {
                   2803: 	return '<img src="'.$imgsrc.'" align="right" />';
                   2804:     } else {
                   2805: 	return '';
                   2806:     }
                   2807: }
                   2808: 
1.112     bowersj2 2809: =pod
                   2810: 
                   2811: =back
                   2812: 
                   2813: =head1 Access .tab File Data
                   2814: 
                   2815: =over 4
                   2816: 
1.648     raeburn  2817: =item * &languageids() 
1.112     bowersj2 2818: 
                   2819: returns list of all language ids
                   2820: 
                   2821: =cut
                   2822: 
1.14      harris41 2823: sub languageids {
1.16      harris41 2824:     return sort(keys(%language));
1.14      harris41 2825: }
                   2826: 
1.112     bowersj2 2827: =pod
                   2828: 
1.648     raeburn  2829: =item * &languagedescription() 
1.112     bowersj2 2830: 
                   2831: returns description of a specified language id
                   2832: 
                   2833: =cut
                   2834: 
1.14      harris41 2835: sub languagedescription {
1.125     www      2836:     my $code=shift;
                   2837:     return  ($supported_language{$code}?'* ':'').
                   2838:             $language{$code}.
1.126     www      2839: 	    ($supported_language{$code}?' ('.&mt('interface available').')':'');
1.145     www      2840: }
                   2841: 
                   2842: sub plainlanguagedescription {
                   2843:     my $code=shift;
                   2844:     return $language{$code};
                   2845: }
                   2846: 
                   2847: sub supportedlanguagecode {
                   2848:     my $code=shift;
                   2849:     return $supported_language{$code};
1.97      www      2850: }
                   2851: 
1.112     bowersj2 2852: =pod
                   2853: 
1.648     raeburn  2854: =item * &copyrightids() 
1.112     bowersj2 2855: 
                   2856: returns list of all copyrights
                   2857: 
                   2858: =cut
                   2859: 
                   2860: sub copyrightids {
                   2861:     return sort(keys(%cprtag));
                   2862: }
                   2863: 
                   2864: =pod
                   2865: 
1.648     raeburn  2866: =item * &copyrightdescription() 
1.112     bowersj2 2867: 
                   2868: returns description of a specified copyright id
                   2869: 
                   2870: =cut
                   2871: 
                   2872: sub copyrightdescription {
1.166     www      2873:     return &mt($cprtag{shift(@_)});
1.112     bowersj2 2874: }
1.197     matthew  2875: 
                   2876: =pod
                   2877: 
1.648     raeburn  2878: =item * &source_copyrightids() 
1.192     taceyjo1 2879: 
                   2880: returns list of all source copyrights
                   2881: 
                   2882: =cut
                   2883: 
                   2884: sub source_copyrightids {
                   2885:     return sort(keys(%scprtag));
                   2886: }
                   2887: 
                   2888: =pod
                   2889: 
1.648     raeburn  2890: =item * &source_copyrightdescription() 
1.192     taceyjo1 2891: 
                   2892: returns description of a specified source copyright id
                   2893: 
                   2894: =cut
                   2895: 
                   2896: sub source_copyrightdescription {
                   2897:     return &mt($scprtag{shift(@_)});
                   2898: }
1.112     bowersj2 2899: 
                   2900: =pod
                   2901: 
1.648     raeburn  2902: =item * &filecategories() 
1.112     bowersj2 2903: 
                   2904: returns list of all file categories
                   2905: 
                   2906: =cut
                   2907: 
                   2908: sub filecategories {
                   2909:     return sort(keys(%category_extensions));
                   2910: }
                   2911: 
                   2912: =pod
                   2913: 
1.648     raeburn  2914: =item * &filecategorytypes() 
1.112     bowersj2 2915: 
                   2916: returns list of file types belonging to a given file
                   2917: category
                   2918: 
                   2919: =cut
                   2920: 
                   2921: sub filecategorytypes {
1.356     albertel 2922:     my ($cat) = @_;
                   2923:     return @{$category_extensions{lc($cat)}};
1.112     bowersj2 2924: }
                   2925: 
                   2926: =pod
                   2927: 
1.648     raeburn  2928: =item * &fileembstyle() 
1.112     bowersj2 2929: 
                   2930: returns embedding style for a specified file type
                   2931: 
                   2932: =cut
                   2933: 
                   2934: sub fileembstyle {
                   2935:     return $fe{lc(shift(@_))};
1.169     www      2936: }
                   2937: 
1.351     www      2938: sub filemimetype {
                   2939:     return $fm{lc(shift(@_))};
                   2940: }
                   2941: 
1.169     www      2942: 
                   2943: sub filecategoryselect {
                   2944:     my ($name,$value)=@_;
1.189     matthew  2945:     return &select_form($value,$name,
1.169     www      2946: 			'' => &mt('Any category'),
                   2947: 			map { $_,$_ } sort(keys(%category_extensions)));
1.112     bowersj2 2948: }
                   2949: 
                   2950: =pod
                   2951: 
1.648     raeburn  2952: =item * &filedescription() 
1.112     bowersj2 2953: 
                   2954: returns description for a specified file type
                   2955: 
                   2956: =cut
                   2957: 
                   2958: sub filedescription {
1.188     matthew  2959:     my $file_description = $fd{lc(shift())};
                   2960:     $file_description =~ s:([\[\]]):~$1:g;
                   2961:     return &mt($file_description);
1.112     bowersj2 2962: }
                   2963: 
                   2964: =pod
                   2965: 
1.648     raeburn  2966: =item * &filedescriptionex() 
1.112     bowersj2 2967: 
                   2968: returns description for a specified file type with
                   2969: extra formatting
                   2970: 
                   2971: =cut
                   2972: 
                   2973: sub filedescriptionex {
                   2974:     my $ex=shift;
1.188     matthew  2975:     my $file_description = $fd{lc($ex)};
                   2976:     $file_description =~ s:([\[\]]):~$1:g;
                   2977:     return '.'.$ex.' '.&mt($file_description);
1.112     bowersj2 2978: }
                   2979: 
                   2980: # End of .tab access
                   2981: =pod
                   2982: 
                   2983: =back
                   2984: 
                   2985: =cut
                   2986: 
                   2987: # ------------------------------------------------------------------ File Types
                   2988: sub fileextensions {
                   2989:     return sort(keys(%fe));
                   2990: }
                   2991: 
1.97      www      2992: # ----------------------------------------------------------- Display Languages
                   2993: # returns a hash with all desired display languages
                   2994: #
                   2995: 
                   2996: sub display_languages {
                   2997:     my %languages=();
1.695     raeburn  2998:     foreach my $lang (&Apache::lonlocal::preferred_languages()) {
1.356     albertel 2999: 	$languages{$lang}=1;
1.97      www      3000:     }
                   3001:     &get_unprocessed_cgi($ENV{'QUERY_STRING'},['displaylanguage']);
1.258     albertel 3002:     if ($env{'form.displaylanguage'}) {
1.356     albertel 3003: 	foreach my $lang (split(/\s*(\,|\;|\:)\s*/,$env{'form.displaylanguage'})) {
                   3004: 	    $languages{$lang}=1;
1.97      www      3005:         }
                   3006:     }
                   3007:     return %languages;
1.14      harris41 3008: }
                   3009: 
1.582     albertel 3010: sub languages {
                   3011:     my ($possible_langs) = @_;
1.695     raeburn  3012:     my @preferred_langs = &Apache::lonlocal::preferred_languages();
1.582     albertel 3013:     if (!ref($possible_langs)) {
                   3014: 	if( wantarray ) {
                   3015: 	    return @preferred_langs;
                   3016: 	} else {
                   3017: 	    return $preferred_langs[0];
                   3018: 	}
                   3019:     }
                   3020:     my %possibilities = map { $_ => 1 } (@$possible_langs);
                   3021:     my @preferred_possibilities;
                   3022:     foreach my $preferred_lang (@preferred_langs) {
                   3023: 	if (exists($possibilities{$preferred_lang})) {
                   3024: 	    push(@preferred_possibilities, $preferred_lang);
                   3025: 	}
                   3026:     }
                   3027:     if( wantarray ) {
                   3028: 	return @preferred_possibilities;
                   3029:     }
                   3030:     return $preferred_possibilities[0];
                   3031: }
                   3032: 
1.112     bowersj2 3033: ###############################################################
                   3034: ##               Student Answer Attempts                     ##
                   3035: ###############################################################
                   3036: 
                   3037: =pod
                   3038: 
                   3039: =head1 Alternate Problem Views
                   3040: 
                   3041: =over 4
                   3042: 
1.648     raeburn  3043: =item * &get_previous_attempt($symb, $username, $domain, $course,
1.112     bowersj2 3044:     $getattempt, $regexp, $gradesub)
                   3045: 
                   3046: Return string with previous attempt on problem. Arguments:
                   3047: 
                   3048: =over 4
                   3049: 
                   3050: =item * $symb: Problem, including path
                   3051: 
                   3052: =item * $username: username of the desired student
                   3053: 
                   3054: =item * $domain: domain of the desired student
1.14      harris41 3055: 
1.112     bowersj2 3056: =item * $course: Course ID
1.14      harris41 3057: 
1.112     bowersj2 3058: =item * $getattempt: Leave blank for all attempts, otherwise put
                   3059:     something
1.14      harris41 3060: 
1.112     bowersj2 3061: =item * $regexp: if string matches this regexp, the string will be
                   3062:     sent to $gradesub
1.14      harris41 3063: 
1.112     bowersj2 3064: =item * $gradesub: routine that processes the string if it matches $regexp
1.14      harris41 3065: 
1.112     bowersj2 3066: =back
1.14      harris41 3067: 
1.112     bowersj2 3068: The output string is a table containing all desired attempts, if any.
1.16      harris41 3069: 
1.112     bowersj2 3070: =cut
1.1       albertel 3071: 
                   3072: sub get_previous_attempt {
1.43      ng       3073:   my ($symb,$username,$domain,$course,$getattempt,$regexp,$gradesub)=@_;
1.1       albertel 3074:   my $prevattempts='';
1.43      ng       3075:   no strict 'refs';
1.1       albertel 3076:   if ($symb) {
1.3       albertel 3077:     my (%returnhash)=
                   3078:       &Apache::lonnet::restore($symb,$course,$domain,$username);
1.1       albertel 3079:     if ($returnhash{'version'}) {
                   3080:       my %lasthash=();
                   3081:       my $version;
                   3082:       for ($version=1;$version<=$returnhash{'version'};$version++) {
1.356     albertel 3083:         foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
                   3084: 	  $lasthash{$key}=$returnhash{$version.':'.$key};
1.19      harris41 3085:         }
1.1       albertel 3086:       }
1.596     albertel 3087:       $prevattempts=&start_data_table().&start_data_table_header_row();
                   3088:       $prevattempts.='<th>'.&mt('History').'</th>';
1.356     albertel 3089:       foreach my $key (sort(keys(%lasthash))) {
                   3090: 	my ($ign,@parts) = split(/\./,$key);
1.41      ng       3091: 	if ($#parts > 0) {
1.31      albertel 3092: 	  my $data=$parts[-1];
                   3093: 	  pop(@parts);
1.596     albertel 3094: 	  $prevattempts.='<th>'.&mt('Part ').join('.',@parts).'<br />'.$data.'&nbsp;</th>';
1.31      albertel 3095: 	} else {
1.41      ng       3096: 	  if ($#parts == 0) {
                   3097: 	    $prevattempts.='<th>'.$parts[0].'</th>';
                   3098: 	  } else {
                   3099: 	    $prevattempts.='<th>'.$ign.'</th>';
                   3100: 	  }
1.31      albertel 3101: 	}
1.16      harris41 3102:       }
1.596     albertel 3103:       $prevattempts.=&end_data_table_header_row();
1.40      ng       3104:       if ($getattempt eq '') {
                   3105: 	for ($version=1;$version<=$returnhash{'version'};$version++) {
1.596     albertel 3106: 	  $prevattempts.=&start_data_table_row().
                   3107: 	      '<td>'.&mt('Transaction [_1]',$version).'</td>';
1.356     albertel 3108: 	    foreach my $key (sort(keys(%lasthash))) {
1.581     albertel 3109: 		my $value = &format_previous_attempt_value($key,
                   3110: 							   $returnhash{$version.':'.$key});
                   3111: 		$prevattempts.='<td>'.$value.'&nbsp;</td>';   
1.40      ng       3112: 	    }
1.596     albertel 3113: 	  $prevattempts.=&end_data_table_row();
1.40      ng       3114: 	 }
1.1       albertel 3115:       }
1.596     albertel 3116:       $prevattempts.=&start_data_table_row().'<td>'.&mt('Current').'</td>';
1.356     albertel 3117:       foreach my $key (sort(keys(%lasthash))) {
1.581     albertel 3118: 	my $value = &format_previous_attempt_value($key,$lasthash{$key});
1.356     albertel 3119: 	if ($key =~/$regexp$/ && (defined &$gradesub)) {$value = &$gradesub($value)}
1.40      ng       3120: 	$prevattempts.='<td>'.$value.'&nbsp;</td>';
1.16      harris41 3121:       }
1.596     albertel 3122:       $prevattempts.= &end_data_table_row().&end_data_table();
1.1       albertel 3123:     } else {
1.596     albertel 3124:       $prevattempts=
                   3125: 	  &start_data_table().&start_data_table_row().
                   3126: 	  '<td>'.&mt('Nothing submitted - no attempts.').'</td>'.
                   3127: 	  &end_data_table_row().&end_data_table();
1.1       albertel 3128:     }
                   3129:   } else {
1.596     albertel 3130:     $prevattempts=
                   3131: 	  &start_data_table().&start_data_table_row().
                   3132: 	  '<td>'.&mt('No data.').'</td>'.
                   3133: 	  &end_data_table_row().&end_data_table();
1.1       albertel 3134:   }
1.10      albertel 3135: }
                   3136: 
1.581     albertel 3137: sub format_previous_attempt_value {
                   3138:     my ($key,$value) = @_;
                   3139:     if ($key =~ /timestamp/) {
                   3140: 	$value = &Apache::lonlocal::locallocaltime($value);
                   3141:     } elsif (ref($value) eq 'ARRAY') {
                   3142: 	$value = '('.join(', ', @{ $value }).')';
                   3143:     } else {
                   3144: 	$value = &unescape($value);
                   3145:     }
                   3146:     return $value;
                   3147: }
                   3148: 
                   3149: 
1.107     albertel 3150: sub relative_to_absolute {
                   3151:     my ($url,$output)=@_;
                   3152:     my $parser=HTML::TokeParser->new(\$output);
                   3153:     my $token;
                   3154:     my $thisdir=$url;
                   3155:     my @rlinks=();
                   3156:     while ($token=$parser->get_token) {
                   3157: 	if ($token->[0] eq 'S') {
                   3158: 	    if ($token->[1] eq 'a') {
                   3159: 		if ($token->[2]->{'href'}) {
                   3160: 		    $rlinks[$#rlinks+1]=$token->[2]->{'href'};
                   3161: 		}
                   3162: 	    } elsif ($token->[1] eq 'img' || $token->[1] eq 'embed' ) {
                   3163: 		$rlinks[$#rlinks+1]=$token->[2]->{'src'};
                   3164: 	    } elsif ($token->[1] eq 'base') {
                   3165: 		$thisdir=$token->[2]->{'href'};
                   3166: 	    }
                   3167: 	}
                   3168:     }
                   3169:     $thisdir=~s-/[^/]*$--;
1.356     albertel 3170:     foreach my $link (@rlinks) {
                   3171: 	unless (($link=~/^http:\/\//i) ||
                   3172: 		($link=~/^\//) ||
                   3173: 		($link=~/^javascript:/i) ||
                   3174: 		($link=~/^mailto:/i) ||
                   3175: 		($link=~/^\#/)) {
                   3176: 	    my $newlocation=&Apache::lonnet::hreflocation($thisdir,$link);
                   3177: 	    $output=~s/(\"|\'|\=\s*)\Q$link\E(\"|\'|\s|\>)/$1$newlocation$2/;
1.107     albertel 3178: 	}
                   3179:     }
                   3180: # -------------------------------------------------- Deal with Applet codebases
                   3181:     $output=~s/(\<applet[^\>]+)(codebase\=[^\S\>]+)*([^\>]*)\>/$1.($2?$2:' codebase="'.$thisdir.'"').$3.'>'/gei;
                   3182:     return $output;
                   3183: }
                   3184: 
1.112     bowersj2 3185: =pod
                   3186: 
1.648     raeburn  3187: =item * &get_student_view()
1.112     bowersj2 3188: 
                   3189: show a snapshot of what student was looking at
                   3190: 
                   3191: =cut
                   3192: 
1.10      albertel 3193: sub get_student_view {
1.186     albertel 3194:   my ($symb,$username,$domain,$courseid,$target,$moreenv) = @_;
1.114     www      3195:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
1.186     albertel 3196:   my (%form);
1.10      albertel 3197:   my @elements=('symb','courseid','domain','username');
                   3198:   foreach my $element (@elements) {
1.186     albertel 3199:       $form{'grade_'.$element}=eval '$'.$element #'
1.10      albertel 3200:   }
1.186     albertel 3201:   if (defined($moreenv)) {
                   3202:       %form=(%form,%{$moreenv});
                   3203:   }
1.236     albertel 3204:   if (defined($target)) { $form{'grade_target'} = $target; }
1.107     albertel 3205:   $feedurl=&Apache::lonnet::clutter($feedurl);
1.650     www      3206:   my ($userview,$response)=&Apache::lonnet::ssi_body($feedurl,%form);
1.11      albertel 3207:   $userview=~s/\<body[^\>]*\>//gi;
                   3208:   $userview=~s/\<\/body\>//gi;
                   3209:   $userview=~s/\<html\>//gi;
                   3210:   $userview=~s/\<\/html\>//gi;
                   3211:   $userview=~s/\<head\>//gi;
                   3212:   $userview=~s/\<\/head\>//gi;
                   3213:   $userview=~s/action\s*\=/would_be_action\=/gi;
1.107     albertel 3214:   $userview=&relative_to_absolute($feedurl,$userview);
1.650     www      3215:   if (wantarray) {
                   3216:      return ($userview,$response);
                   3217:   } else {
                   3218:      return $userview;
                   3219:   }
                   3220: }
                   3221: 
                   3222: sub get_student_view_with_retries {
                   3223:   my ($symb,$retries,$username,$domain,$courseid,$target,$moreenv) = @_;
                   3224: 
                   3225:     my $ok = 0;                 # True if we got a good response.
                   3226:     my $content;
                   3227:     my $response;
                   3228: 
                   3229:     # Try to get the student_view done. within the retries count:
                   3230:     
                   3231:     do {
                   3232:          ($content, $response) = &get_student_view($symb,$username,$domain,$courseid,$target,$moreenv);
                   3233:          $ok      = $response->is_success;
                   3234:          if (!$ok) {
                   3235:             &Apache::lonnet::logthis("Failed get_student_view_with_retries on $symb: ".$response->is_success.', '.$response->code.', '.$response->message);
                   3236:          }
                   3237:          $retries--;
                   3238:     } while (!$ok && ($retries > 0));
                   3239:     
                   3240:     if (!$ok) {
                   3241:        $content = '';          # On error return an empty content.
                   3242:     }
1.651     www      3243:     if (wantarray) {
                   3244:        return ($content, $response);
                   3245:     } else {
                   3246:        return $content;
                   3247:     }
1.11      albertel 3248: }
                   3249: 
1.112     bowersj2 3250: =pod
                   3251: 
1.648     raeburn  3252: =item * &get_student_answers() 
1.112     bowersj2 3253: 
                   3254: show a snapshot of how student was answering problem
                   3255: 
                   3256: =cut
                   3257: 
1.11      albertel 3258: sub get_student_answers {
1.100     sakharuk 3259:   my ($symb,$username,$domain,$courseid,%form) = @_;
1.114     www      3260:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
1.186     albertel 3261:   my (%moreenv);
1.11      albertel 3262:   my @elements=('symb','courseid','domain','username');
                   3263:   foreach my $element (@elements) {
1.186     albertel 3264:     $moreenv{'grade_'.$element}=eval '$'.$element #'
1.10      albertel 3265:   }
1.186     albertel 3266:   $moreenv{'grade_target'}='answer';
                   3267:   %moreenv=(%form,%moreenv);
1.497     raeburn  3268:   $feedurl = &Apache::lonnet::clutter($feedurl);
                   3269:   my $userview=&Apache::lonnet::ssi($feedurl,%moreenv);
1.10      albertel 3270:   return $userview;
1.1       albertel 3271: }
1.116     albertel 3272: 
                   3273: =pod
                   3274: 
                   3275: =item * &submlink()
                   3276: 
1.242     albertel 3277: Inputs: $text $uname $udom $symb $target
1.116     albertel 3278: 
                   3279: Returns: A link to grades.pm such as to see the SUBM view of a student
                   3280: 
                   3281: =cut
                   3282: 
                   3283: ###############################################
                   3284: sub submlink {
1.242     albertel 3285:     my ($text,$uname,$udom,$symb,$target)=@_;
1.116     albertel 3286:     if (!($uname && $udom)) {
                   3287: 	(my $cursymb, my $courseid,$udom,$uname)=
1.463     albertel 3288: 	    &Apache::lonnet::whichuser($symb);
1.116     albertel 3289: 	if (!$symb) { $symb=$cursymb; }
                   3290:     }
1.254     matthew  3291:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
1.369     www      3292:     $symb=&escape($symb);
1.242     albertel 3293:     if ($target) { $target="target=\"$target\""; }
                   3294:     return '<a href="/adm/grades?&command=submission&'.
                   3295: 	'symb='.$symb.'&student='.$uname.
                   3296: 	'&userdom='.$udom.'" '.$target.'>'.$text.'</a>';
                   3297: }
                   3298: ##############################################
                   3299: 
                   3300: =pod
                   3301: 
                   3302: =item * &pgrdlink()
                   3303: 
                   3304: Inputs: $text $uname $udom $symb $target
                   3305: 
                   3306: Returns: A link to grades.pm such as to see the PGRD view of a student
                   3307: 
                   3308: =cut
                   3309: 
                   3310: ###############################################
                   3311: sub pgrdlink {
                   3312:     my $link=&submlink(@_);
                   3313:     $link=~s/(&command=submission)/$1&showgrading=yes/;
                   3314:     return $link;
                   3315: }
                   3316: ##############################################
                   3317: 
                   3318: =pod
                   3319: 
                   3320: =item * &pprmlink()
                   3321: 
                   3322: Inputs: $text $uname $udom $symb $target
                   3323: 
                   3324: Returns: A link to parmset.pm such as to see the PPRM view of a
1.283     albertel 3325: student and a specific resource
1.242     albertel 3326: 
                   3327: =cut
                   3328: 
                   3329: ###############################################
                   3330: sub pprmlink {
                   3331:     my ($text,$uname,$udom,$symb,$target)=@_;
                   3332:     if (!($uname && $udom)) {
                   3333: 	(my $cursymb, my $courseid,$udom,$uname)=
1.463     albertel 3334: 	    &Apache::lonnet::whichuser($symb);
1.242     albertel 3335: 	if (!$symb) { $symb=$cursymb; }
                   3336:     }
1.254     matthew  3337:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
1.369     www      3338:     $symb=&escape($symb);
1.242     albertel 3339:     if ($target) { $target="target=\"$target\""; }
1.595     albertel 3340:     return '<a href="/adm/parmset?command=set&amp;'.
                   3341: 	'symb='.$symb.'&amp;uname='.$uname.
                   3342: 	'&amp;udom='.$udom.'" '.$target.'>'.$text.'</a>';
1.116     albertel 3343: }
                   3344: ##############################################
1.37      matthew  3345: 
1.112     bowersj2 3346: =pod
                   3347: 
                   3348: =back
                   3349: 
                   3350: =cut
                   3351: 
1.37      matthew  3352: ###############################################
1.51      www      3353: 
                   3354: 
                   3355: sub timehash {
1.687     raeburn  3356:     my ($thistime) = @_;
                   3357:     my $timezone = &Apache::lonlocal::gettimezone();
                   3358:     my $dt = DateTime->from_epoch(epoch => $thistime)
                   3359:                      ->set_time_zone($timezone);
                   3360:     my $wday = $dt->day_of_week();
                   3361:     if ($wday == 7) { $wday = 0; }
                   3362:     return ( 'second' => $dt->second(),
                   3363:              'minute' => $dt->minute(),
                   3364:              'hour'   => $dt->hour(),
                   3365:              'day'     => $dt->day_of_month(),
                   3366:              'month'   => $dt->month(),
                   3367:              'year'    => $dt->year(),
                   3368:              'weekday' => $wday,
                   3369:              'dayyear' => $dt->day_of_year(),
                   3370:              'dlsav'   => $dt->is_dst() );
1.51      www      3371: }
                   3372: 
1.370     www      3373: sub utc_string {
                   3374:     my ($date)=@_;
1.371     www      3375:     return strftime("%Y%m%dT%H%M%SZ",gmtime($date));
1.370     www      3376: }
                   3377: 
1.51      www      3378: sub maketime {
                   3379:     my %th=@_;
1.687     raeburn  3380:     my ($epoch_time,$timezone,$dt);
                   3381:     $timezone = &Apache::lonlocal::gettimezone();
                   3382:     eval {
                   3383:         $dt = DateTime->new( year   => $th{'year'},
                   3384:                              month  => $th{'month'},
                   3385:                              day    => $th{'day'},
                   3386:                              hour   => $th{'hour'},
                   3387:                              minute => $th{'minute'},
                   3388:                              second => $th{'second'},
                   3389:                              time_zone => $timezone,
                   3390:                          );
                   3391:     };
                   3392:     if (!$@) {
                   3393:         $epoch_time = $dt->epoch;
                   3394:         if ($epoch_time) {
                   3395:             return $epoch_time;
                   3396:         }
                   3397:     }
1.51      www      3398:     return POSIX::mktime(
                   3399:         ($th{'seconds'},$th{'minutes'},$th{'hours'},
1.210     www      3400:          $th{'day'},$th{'month'}-1,$th{'year'}-1900,0,0,-1));
1.70      www      3401: }
                   3402: 
                   3403: #########################################
1.51      www      3404: 
                   3405: sub findallcourses {
1.482     raeburn  3406:     my ($roles,$uname,$udom) = @_;
1.355     albertel 3407:     my %roles;
                   3408:     if (ref($roles)) { %roles = map { $_ => 1 } @{$roles}; }
1.348     albertel 3409:     my %courses;
1.51      www      3410:     my $now=time;
1.482     raeburn  3411:     if (!defined($uname)) {
                   3412:         $uname = $env{'user.name'};
                   3413:     }
                   3414:     if (!defined($udom)) {
                   3415:         $udom = $env{'user.domain'};
                   3416:     }
                   3417:     if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
                   3418:         my %roleshash = &Apache::lonnet::dump('roles',$udom,$uname);
                   3419:         if (!%roles) {
                   3420:             %roles = (
                   3421:                        cc => 1,
                   3422:                        in => 1,
                   3423:                        ep => 1,
                   3424:                        ta => 1,
                   3425:                        cr => 1,
                   3426:                        st => 1,
                   3427:              );
                   3428:         }
                   3429:         foreach my $entry (keys(%roleshash)) {
                   3430:             my ($trole,$tend,$tstart) = split(/_/,$roleshash{$entry});
                   3431:             if ($trole =~ /^cr/) { 
                   3432:                 next if (!exists($roles{$trole}) && !exists($roles{'cr'}));
                   3433:             } else {
                   3434:                 next if (!exists($roles{$trole}));
                   3435:             }
                   3436:             if ($tend) {
                   3437:                 next if ($tend < $now);
                   3438:             }
                   3439:             if ($tstart) {
                   3440:                 next if ($tstart > $now);
                   3441:             }
                   3442:             my ($cdom,$cnum,$sec,$cnumpart,$secpart,$role,$realsec);
                   3443:             (undef,$cdom,$cnumpart,$secpart) = split(/\//,$entry);
                   3444:             if ($secpart eq '') {
                   3445:                 ($cnum,$role) = split(/_/,$cnumpart); 
                   3446:                 $sec = 'none';
                   3447:                 $realsec = '';
                   3448:             } else {
                   3449:                 $cnum = $cnumpart;
                   3450:                 ($sec,$role) = split(/_/,$secpart);
                   3451:                 $realsec = $sec;
1.490     raeburn  3452:             }
1.482     raeburn  3453:             $courses{$cdom.'_'.$cnum}{$sec} = $trole.'/'.$cdom.'/'.$cnum.'/'.$realsec;
                   3454:         }
                   3455:     } else {
                   3456:         foreach my $key (keys(%env)) {
1.483     albertel 3457: 	    if ( $key=~m{^user\.role\.(\w+)\./($match_domain)/($match_courseid)/?(\w*)$} ||
                   3458:                  $key=~m{^user\.role\.(cr/$match_domain/$match_username/\w+)\./($match_domain)/($match_courseid)/?(\w*)$}) {
1.482     raeburn  3459: 	        my ($role,$cdom,$cnum,$sec) = ($1,$2,$3,$4);
                   3460: 	        next if ($role eq 'ca' || $role eq 'aa');
                   3461: 	        next if (%roles && !exists($roles{$role}));
                   3462: 	        my ($starttime,$endtime)=split(/\./,$env{$key});
                   3463:                 my $active=1;
                   3464:                 if ($starttime) {
                   3465: 		    if ($now<$starttime) { $active=0; }
                   3466:                 }
                   3467:                 if ($endtime) {
                   3468:                     if ($now>$endtime) { $active=0; }
                   3469:                 }
                   3470:                 if ($active) {
                   3471:                     if ($sec eq '') {
                   3472:                         $sec = 'none';
                   3473:                     }
                   3474:                     $courses{$cdom.'_'.$cnum}{$sec} = 
                   3475:                                      $role.'/'.$cdom.'/'.$cnum.'/'.$sec;
1.474     raeburn  3476:                 }
                   3477:             }
1.51      www      3478:         }
                   3479:     }
1.474     raeburn  3480:     return %courses;
1.51      www      3481: }
1.37      matthew  3482: 
1.54      www      3483: ###############################################
1.474     raeburn  3484: 
                   3485: sub blockcheck {
1.482     raeburn  3486:     my ($setters,$activity,$uname,$udom) = @_;
1.490     raeburn  3487: 
                   3488:     if (!defined($udom)) {
                   3489:         $udom = $env{'user.domain'};
                   3490:     }
                   3491:     if (!defined($uname)) {
                   3492:         $uname = $env{'user.name'};
                   3493:     }
                   3494: 
                   3495:     # If uname and udom are for a course, check for blocks in the course.
                   3496: 
                   3497:     if (&Apache::lonnet::is_course($udom,$uname)) {
                   3498:         my %records = &Apache::lonnet::dump('comm_block',$udom,$uname);
1.502     raeburn  3499:         my ($startblock,$endblock)=&get_blocks($setters,$activity,$udom,$uname);
1.490     raeburn  3500:         return ($startblock,$endblock);
                   3501:     }
1.474     raeburn  3502: 
1.502     raeburn  3503:     my $startblock = 0;
                   3504:     my $endblock = 0;
1.482     raeburn  3505:     my %live_courses = &findallcourses(undef,$uname,$udom);
1.474     raeburn  3506: 
1.490     raeburn  3507:     # If uname is for a user, and activity is course-specific, i.e.,
                   3508:     # boards, chat or groups, check for blocking in current course only.
1.474     raeburn  3509: 
1.490     raeburn  3510:     if (($activity eq 'boards' || $activity eq 'chat' ||
                   3511:          $activity eq 'groups') && ($env{'request.course.id'})) {
                   3512:         foreach my $key (keys(%live_courses)) {
                   3513:             if ($key ne $env{'request.course.id'}) {
                   3514:                 delete($live_courses{$key});
                   3515:             }
                   3516:         }
                   3517:     }
                   3518: 
                   3519:     my $otheruser = 0;
                   3520:     my %own_courses;
                   3521:     if ((($uname ne $env{'user.name'})) || ($udom ne $env{'user.domain'})) {
                   3522:         # Resource belongs to user other than current user.
                   3523:         $otheruser = 1;
                   3524:         # Gather courses for current user
                   3525:         %own_courses = 
                   3526:             &findallcourses(undef,$env{'user.name'},$env{'user.domain'});
                   3527:     }
                   3528: 
                   3529:     # Gather active course roles - course coordinator, instructor, 
                   3530:     # exam proctor, ta, student, or custom role.
1.474     raeburn  3531: 
                   3532:     foreach my $course (keys(%live_courses)) {
1.482     raeburn  3533:         my ($cdom,$cnum);
                   3534:         if ((defined($env{'course.'.$course.'.domain'})) && (defined($env{'course.'.$course.'.num'}))) {
                   3535:             $cdom = $env{'course.'.$course.'.domain'};
                   3536:             $cnum = $env{'course.'.$course.'.num'};
                   3537:         } else {
1.490     raeburn  3538:             ($cdom,$cnum) = split(/_/,$course); 
1.482     raeburn  3539:         }
                   3540:         my $no_ownblock = 0;
                   3541:         my $no_userblock = 0;
1.533     raeburn  3542:         if ($otheruser && $activity ne 'com') {
1.490     raeburn  3543:             # Check if current user has 'evb' priv for this
                   3544:             if (defined($own_courses{$course})) {
                   3545:                 foreach my $sec (keys(%{$own_courses{$course}})) {
                   3546:                     my $checkrole = 'cm./'.$cdom.'/'.$cnum;
                   3547:                     if ($sec ne 'none') {
                   3548:                         $checkrole .= '/'.$sec;
                   3549:                     }
                   3550:                     if (&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) {
                   3551:                         $no_ownblock = 1;
                   3552:                         last;
                   3553:                     }
                   3554:                 }
                   3555:             }
                   3556:             # if they have 'evb' priv and are currently not playing student
                   3557:             next if (($no_ownblock) &&
                   3558:                  ($env{'request.role'} !~ m{^st\./$cdom/$cnum}));
                   3559:         }
1.474     raeburn  3560:         foreach my $sec (keys(%{$live_courses{$course}})) {
1.482     raeburn  3561:             my $checkrole = 'cm./'.$cdom.'/'.$cnum;
1.474     raeburn  3562:             if ($sec ne 'none') {
1.482     raeburn  3563:                 $checkrole .= '/'.$sec;
1.474     raeburn  3564:             }
1.490     raeburn  3565:             if ($otheruser) {
                   3566:                 # Resource belongs to user other than current user.
                   3567:                 # Assemble privs for that user, and check for 'evb' priv.
1.482     raeburn  3568:                 my ($trole,$tdom,$tnum,$tsec);
                   3569:                 my $entry = $live_courses{$course}{$sec};
                   3570:                 if ($entry =~ /^cr/) {
                   3571:                     ($trole,$tdom,$tnum,$tsec) = 
                   3572:                       ($entry =~ m|^(cr/$match_domain/$match_username/\w+)\./($match_domain)/($match_username)/?(\w*)$|);
                   3573:                 } else {
                   3574:                     ($trole,$tdom,$tnum,$tsec) = split(/\//,$entry);
                   3575:                 }
                   3576:                 my ($spec,$area,$trest,%allroles,%userroles);
                   3577:                 $area = '/'.$tdom.'/'.$tnum;
                   3578:                 $trest = $tnum;
                   3579:                 if ($tsec ne '') {
                   3580:                     $area .= '/'.$tsec;
                   3581:                     $trest .= '/'.$tsec;
                   3582:                 }
                   3583:                 $spec = $trole.'.'.$area;
                   3584:                 if ($trole =~ /^cr/) {
                   3585:                     &Apache::lonnet::custom_roleprivs(\%allroles,$trole,
                   3586:                                                       $tdom,$spec,$trest,$area);
                   3587:                 } else {
                   3588:                     &Apache::lonnet::standard_roleprivs(\%allroles,$trole,
                   3589:                                                        $tdom,$spec,$trest,$area);
                   3590:                 }
                   3591:                 my ($author,$adv) = &Apache::lonnet::set_userprivs(\%userroles,\%allroles);
1.486     raeburn  3592:                 if ($userroles{'user.priv.'.$checkrole} =~ /evb\&([^\:]*)/) {
                   3593:                     if ($1) {
                   3594:                         $no_userblock = 1;
                   3595:                         last;
                   3596:                     }
                   3597:                 }
1.490     raeburn  3598:             } else {
                   3599:                 # Resource belongs to current user
                   3600:                 # Check for 'evb' priv via lonnet::allowed().
1.482     raeburn  3601:                 if (&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) {
                   3602:                     $no_ownblock = 1;
                   3603:                     last;
                   3604:                 }
1.474     raeburn  3605:             }
                   3606:         }
                   3607:         # if they have the evb priv and are currently not playing student
1.482     raeburn  3608:         next if (($no_ownblock) &&
1.491     albertel 3609:                  ($env{'request.role'} !~ m{^st\./\Q$cdom\E/\Q$cnum\E}));
1.482     raeburn  3610:         next if ($no_userblock);
1.474     raeburn  3611: 
1.490     raeburn  3612:         # Retrieve blocking times and identity of blocker for course
                   3613:         # of specified user, unless user has 'evb' privilege.
1.502     raeburn  3614:         
                   3615:         my ($start,$end)=&get_blocks($setters,$activity,$cdom,$cnum);
                   3616:         if (($start != 0) && 
                   3617:             (($startblock == 0) || ($startblock > $start))) {
                   3618:             $startblock = $start;
                   3619:         }
                   3620:         if (($end != 0)  &&
                   3621:             (($endblock == 0) || ($endblock < $end))) {
                   3622:             $endblock = $end;
                   3623:         }
1.490     raeburn  3624:     }
                   3625:     return ($startblock,$endblock);
                   3626: }
                   3627: 
                   3628: sub get_blocks {
                   3629:     my ($setters,$activity,$cdom,$cnum) = @_;
                   3630:     my $startblock = 0;
                   3631:     my $endblock = 0;
                   3632:     my $course = $cdom.'_'.$cnum;
                   3633:     $setters->{$course} = {};
                   3634:     $setters->{$course}{'staff'} = [];
                   3635:     $setters->{$course}{'times'} = [];
                   3636:     my %records = &Apache::lonnet::dump('comm_block',$cdom,$cnum);
                   3637:     foreach my $record (keys(%records)) {
                   3638:         my ($start,$end) = ($record =~ m/^(\d+)____(\d+)$/);
                   3639:         if ($start <= time && $end >= time) {
                   3640:             my ($staff_name,$staff_dom,$title,$blocks) =
                   3641:                 &parse_block_record($records{$record});
                   3642:             if ($blocks->{$activity} eq 'on') {
                   3643:                 push(@{$$setters{$course}{'staff'}},[$staff_name,$staff_dom]);
                   3644:                 push(@{$$setters{$course}{'times'}}, [$start,$end]);
1.491     albertel 3645:                 if ( ($startblock == 0) || ($startblock > $start) ) {
                   3646:                     $startblock = $start;
1.490     raeburn  3647:                 }
1.491     albertel 3648:                 if ( ($endblock == 0) || ($endblock < $end) ) {
                   3649:                     $endblock = $end;
1.474     raeburn  3650:                 }
                   3651:             }
                   3652:         }
                   3653:     }
                   3654:     return ($startblock,$endblock);
                   3655: }
                   3656: 
                   3657: sub parse_block_record {
                   3658:     my ($record) = @_;
                   3659:     my ($setuname,$setudom,$title,$blocks);
                   3660:     if (ref($record) eq 'HASH') {
                   3661:         ($setuname,$setudom) = split(/:/,$record->{'setter'});
                   3662:         $title = &unescape($record->{'event'});
                   3663:         $blocks = $record->{'blocks'};
                   3664:     } else {
                   3665:         my @data = split(/:/,$record,3);
                   3666:         if (scalar(@data) eq 2) {
                   3667:             $title = $data[1];
                   3668:             ($setuname,$setudom) = split(/@/,$data[0]);
                   3669:         } else {
                   3670:             ($setuname,$setudom,$title) = @data;
                   3671:         }
                   3672:         $blocks = { 'com' => 'on' };
                   3673:     }
                   3674:     return ($setuname,$setudom,$title,$blocks);
                   3675: }
                   3676: 
                   3677: sub build_block_table {
                   3678:     my ($startblock,$endblock,$setters) = @_;
                   3679:     my %lt = &Apache::lonlocal::texthash(
                   3680:         'cacb' => 'Currently active communication blocks',
                   3681:         'cour' => 'Course',
                   3682:         'dura' => 'Duration',
                   3683:         'blse' => 'Block set by'
                   3684:     );
                   3685:     my $output;
1.476     raeburn  3686:     $output = '<br />'.$lt{'cacb'}.':<br />';
1.474     raeburn  3687:     $output .= &start_data_table();
                   3688:     $output .= '
                   3689: <tr>
                   3690:  <th>'.$lt{'cour'}.'</th>
                   3691:  <th>'.$lt{'dura'}.'</th>
                   3692:  <th>'.$lt{'blse'}.'</th>
                   3693: </tr>
                   3694: ';
                   3695:     foreach my $course (keys(%{$setters})) {
                   3696:         my %courseinfo=&Apache::lonnet::coursedescription($course);
                   3697:         for (my $i=0; $i<@{$$setters{$course}{staff}}; $i++) {
                   3698:             my ($uname,$udom) = @{$$setters{$course}{staff}[$i]};
1.490     raeburn  3699:             my $fullname = &plainname($uname,$udom);
                   3700:             if (defined($env{'user.name'}) && defined($env{'user.domain'})
                   3701:                 && $env{'user.name'} ne 'public' 
                   3702:                 && $env{'user.domain'} ne 'public') {
                   3703:                 $fullname = &aboutmewrapper($fullname,$uname,$udom);
                   3704:             }
1.474     raeburn  3705:             my ($openblock,$closeblock) = @{$$setters{$course}{times}[$i]};
                   3706:             $openblock = &Apache::lonlocal::locallocaltime($openblock);
                   3707:             $closeblock= &Apache::lonlocal::locallocaltime($closeblock);
                   3708:             $output .= &Apache::loncommon::start_data_table_row().
                   3709:                        '<td>'.$courseinfo{'description'}.'</td>'.
                   3710:                        '<td>'.$openblock.' to '.$closeblock.'</td>'.
1.490     raeburn  3711:                        '<td>'.$fullname.'</td>'.
1.474     raeburn  3712:                         &Apache::loncommon::end_data_table_row();
                   3713:         }
                   3714:     }
                   3715:     $output .= &end_data_table();
                   3716: }
                   3717: 
1.490     raeburn  3718: sub blocking_status {
                   3719:     my ($activity,$uname,$udom) = @_;
                   3720:     my %setters;
                   3721:     my ($blocked,$output,$ownitem,$is_course);
                   3722:     my ($startblock,$endblock)=&blockcheck(\%setters,$activity,$uname,$udom);
                   3723:     if ($startblock && $endblock) {
                   3724:         $blocked = 1;
                   3725:         if (wantarray) {
                   3726:             my $category;
                   3727:             if ($activity eq 'boards') {
                   3728:                 $category = 'Discussion posts in this course';
                   3729:             } elsif ($activity eq 'blogs') {
                   3730:                 $category = 'Blogs';
                   3731:             } elsif ($activity eq 'port') {
                   3732:                 if (defined($uname) && defined($udom)) {
                   3733:                     if ($uname eq $env{'user.name'} &&
                   3734:                         $udom eq $env{'user.domain'}) {
                   3735:                         $ownitem = 1;
                   3736:                     }
                   3737:                 }
                   3738:                 $is_course = &Apache::lonnet::is_course($udom,$uname);
                   3739:                 if ($ownitem) { 
                   3740:                     $category = 'Your portfolio files';  
                   3741:                 } elsif ($is_course) {
                   3742:                     my $coursedesc;
                   3743:                     foreach my $course (keys(%setters)) {
                   3744:                         my %courseinfo =
                   3745:                              &Apache::lonnet::coursedescription($course);
                   3746:                         $coursedesc = $courseinfo{'description'};
                   3747:                     }
                   3748:                     $category = "Group files in the course '$coursedesc'";
                   3749:                 } else {
                   3750:                     $category = 'Portfolio files belonging to ';
                   3751:                     if ($env{'user.name'} eq 'public' && 
                   3752:                         $env{'user.domain'} eq 'public') {
                   3753:                         $category .= &plainname($uname,$udom);
                   3754:                     } else {
                   3755:                         $category .= &aboutmewrapper(&plainname($uname,$udom),$uname,$udom);  
                   3756:                     }
                   3757:                 }
                   3758:             } elsif ($activity eq 'groups') {
                   3759:                 $category = 'Groups in this course';
                   3760:             }
                   3761:             my $showstart = &Apache::lonlocal::locallocaltime($startblock);
                   3762:             my $showend = &Apache::lonlocal::locallocaltime($endblock);
                   3763:             $output = '<br />'.&mt('[_1] will be inaccessible between [_2] and [_3] because communication is being blocked.',$category,$showstart,$showend).'<br />';
                   3764:             if (!($activity eq 'port' && !($ownitem) && !($is_course))) { 
                   3765:                 $output .= &build_block_table($startblock,$endblock,\%setters);
                   3766:             }
                   3767:         }
                   3768:     }
                   3769:     if (wantarray) {
                   3770:         return ($blocked,$output);
                   3771:     } else {
                   3772:         return $blocked;
                   3773:     }
                   3774: }
                   3775: 
1.60      matthew  3776: ###############################################
                   3777: 
1.682     raeburn  3778: sub check_ip_acc {
                   3779:     my ($acc)=@_;
                   3780:     &Apache::lonxml::debug("acc is $acc");
                   3781:     if (!defined($acc) || $acc =~ /^\s*$/ || $acc =~/^\s*no\s*$/i) {
                   3782:         return 1;
                   3783:     }
                   3784:     my $allowed=0;
                   3785:     my $ip=$env{'request.host'} || $ENV{'REMOTE_ADDR'};
                   3786: 
                   3787:     my $name;
                   3788:     foreach my $pattern (split(',',$acc)) {
                   3789:         $pattern =~ s/^\s*//;
                   3790:         $pattern =~ s/\s*$//;
                   3791:         if ($pattern =~ /\*$/) {
                   3792:             #35.8.*
                   3793:             $pattern=~s/\*//;
                   3794:             if ($ip =~ /^\Q$pattern\E/) { $allowed=1; }
                   3795:         } elsif ($pattern =~ /(\d+\.\d+\.\d+)\.\[(\d+)-(\d+)\]$/) {
                   3796:             #35.8.3.[34-56]
                   3797:             my $low=$2;
                   3798:             my $high=$3;
                   3799:             $pattern=$1;
                   3800:             if ($ip =~ /^\Q$pattern\E/) {
                   3801:                 my $last=(split(/\./,$ip))[3];
                   3802:                 if ($last <=$high && $last >=$low) { $allowed=1; }
                   3803:             }
                   3804:         } elsif ($pattern =~ /^\*/) {
                   3805:             #*.msu.edu
                   3806:             $pattern=~s/\*//;
                   3807:             if (!defined($name)) {
                   3808:                 use Socket;
                   3809:                 my $netaddr=inet_aton($ip);
                   3810:                 ($name)=gethostbyaddr($netaddr,AF_INET);
                   3811:             }
                   3812:             if ($name =~ /\Q$pattern\E$/i) { $allowed=1; }
                   3813:         } elsif ($pattern =~ /\d+\.\d+\.\d+\.\d+/) {
                   3814:             #127.0.0.1
                   3815:             if ($ip =~ /^\Q$pattern\E/) { $allowed=1; }
                   3816:         } else {
                   3817:             #some.name.com
                   3818:             if (!defined($name)) {
                   3819:                 use Socket;
                   3820:                 my $netaddr=inet_aton($ip);
                   3821:                 ($name)=gethostbyaddr($netaddr,AF_INET);
                   3822:             }
                   3823:             if ($name =~ /\Q$pattern\E$/i) { $allowed=1; }
                   3824:         }
                   3825:         if ($allowed) { last; }
                   3826:     }
                   3827:     return $allowed;
                   3828: }
                   3829: 
                   3830: ###############################################
                   3831: 
1.60      matthew  3832: =pod
                   3833: 
1.112     bowersj2 3834: =head1 Domain Template Functions
                   3835: 
                   3836: =over 4
                   3837: 
                   3838: =item * &determinedomain()
1.60      matthew  3839: 
                   3840: Inputs: $domain (usually will be undef)
                   3841: 
1.63      www      3842: Returns: Determines which domain should be used for designs
1.60      matthew  3843: 
                   3844: =cut
1.54      www      3845: 
1.60      matthew  3846: ###############################################
1.63      www      3847: sub determinedomain {
                   3848:     my $domain=shift;
1.531     albertel 3849:     if (! $domain) {
1.60      matthew  3850:         # Determine domain if we have not been given one
                   3851:         $domain = $Apache::lonnet::perlvar{'lonDefDomain'};
1.258     albertel 3852:         if ($env{'user.domain'}) { $domain=$env{'user.domain'}; }
                   3853:         if ($env{'request.role.domain'}) { 
                   3854:             $domain=$env{'request.role.domain'}; 
1.60      matthew  3855:         }
                   3856:     }
1.63      www      3857:     return $domain;
                   3858: }
                   3859: ###############################################
1.517     raeburn  3860: 
1.518     albertel 3861: sub devalidate_domconfig_cache {
                   3862:     my ($udom)=@_;
                   3863:     &Apache::lonnet::devalidate_cache_new('domainconfig',$udom);
                   3864: }
                   3865: 
                   3866: # ---------------------- Get domain configuration for a domain
                   3867: sub get_domainconf {
                   3868:     my ($udom) = @_;
                   3869:     my $cachetime=1800;
                   3870:     my ($result,$cached)=&Apache::lonnet::is_cached_new('domainconfig',$udom);
                   3871:     if (defined($cached)) { return %{$result}; }
                   3872: 
                   3873:     my %domconfig = &Apache::lonnet::get_dom('configuration',
                   3874: 					     ['login','rolecolors'],$udom);
1.632     raeburn  3875:     my (%designhash,%legacy);
1.518     albertel 3876:     if (keys(%domconfig) > 0) {
                   3877:         if (ref($domconfig{'login'}) eq 'HASH') {
1.632     raeburn  3878:             if (keys(%{$domconfig{'login'}})) {
                   3879:                 foreach my $key (keys(%{$domconfig{'login'}})) {
1.699     raeburn  3880:                     if (ref($domconfig{'login'}{$key}) eq 'HASH') {
                   3881:                         foreach my $img (keys(%{$domconfig{'login'}{$key}})) {
                   3882:                             $designhash{$udom.'.login.'.$key.'_'.$img} = 
                   3883:                                 $domconfig{'login'}{$key}{$img};
                   3884:                         }
                   3885:                     } else {
                   3886:                         $designhash{$udom.'.login.'.$key}=$domconfig{'login'}{$key};
                   3887:                     }
1.632     raeburn  3888:                 }
                   3889:             } else {
                   3890:                 $legacy{'login'} = 1;
1.518     albertel 3891:             }
1.632     raeburn  3892:         } else {
                   3893:             $legacy{'login'} = 1;
1.518     albertel 3894:         }
                   3895:         if (ref($domconfig{'rolecolors'}) eq 'HASH') {
1.632     raeburn  3896:             if (keys(%{$domconfig{'rolecolors'}})) {
                   3897:                 foreach my $role (keys(%{$domconfig{'rolecolors'}})) {
                   3898:                     if (ref($domconfig{'rolecolors'}{$role}) eq 'HASH') {
                   3899:                         foreach my $item (keys(%{$domconfig{'rolecolors'}{$role}})) {
                   3900:                             $designhash{$udom.'.'.$role.'.'.$item}=$domconfig{'rolecolors'}{$role}{$item};
                   3901:                         }
1.518     albertel 3902:                     }
                   3903:                 }
1.632     raeburn  3904:             } else {
                   3905:                 $legacy{'rolecolors'} = 1;
1.518     albertel 3906:             }
1.632     raeburn  3907:         } else {
                   3908:             $legacy{'rolecolors'} = 1;
1.518     albertel 3909:         }
1.632     raeburn  3910:         if (keys(%legacy) > 0) {
                   3911:             my %legacyhash = &get_legacy_domconf($udom);
                   3912:             foreach my $item (keys(%legacyhash)) {
                   3913:                 if ($item =~ /^\Q$udom\E\.login/) {
                   3914:                     if ($legacy{'login'}) { 
                   3915:                         $designhash{$item} = $legacyhash{$item};
                   3916:                     }
                   3917:                 } else {
                   3918:                     if ($legacy{'rolecolors'}) {
                   3919:                         $designhash{$item} = $legacyhash{$item};
                   3920:                     }
1.518     albertel 3921:                 }
                   3922:             }
                   3923:         }
1.632     raeburn  3924:     } else {
                   3925:         %designhash = &get_legacy_domconf($udom); 
1.518     albertel 3926:     }
                   3927:     &Apache::lonnet::do_cache_new('domainconfig',$udom,\%designhash,
                   3928: 				  $cachetime);
                   3929:     return %designhash;
                   3930: }
                   3931: 
1.632     raeburn  3932: sub get_legacy_domconf {
                   3933:     my ($udom) = @_;
                   3934:     my %legacyhash;
                   3935:     my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
                   3936:     my $designfile =  $designdir.'/'.$udom.'.tab';
                   3937:     if (-e $designfile) {
                   3938:         if ( open (my $fh,"<$designfile") ) {
                   3939:             while (my $line = <$fh>) {
                   3940:                 next if ($line =~ /^\#/);
                   3941:                 chomp($line);
                   3942:                 my ($key,$val)=(split(/\=/,$line));
                   3943:                 if ($val) { $legacyhash{$udom.'.'.$key}=$val; }
                   3944:             }
                   3945:             close($fh);
                   3946:         }
                   3947:     }
                   3948:     if (-e '/home/httpd/html/adm/lonDomLogos/'.$udom.'.gif') {
                   3949:         $legacyhash{$udom.'.login.domlogo'} = "/adm/lonDomLogos/$udom.gif";
                   3950:     }
                   3951:     return %legacyhash;
                   3952: }
                   3953: 
1.63      www      3954: =pod
                   3955: 
1.112     bowersj2 3956: =item * &domainlogo()
1.63      www      3957: 
                   3958: Inputs: $domain (usually will be undef)
                   3959: 
                   3960: Returns: A link to a domain logo, if the domain logo exists.
                   3961: If the domain logo does not exist, a description of the domain.
                   3962: 
                   3963: =cut
1.112     bowersj2 3964: 
1.63      www      3965: ###############################################
                   3966: sub domainlogo {
1.517     raeburn  3967:     my $domain = &determinedomain(shift);
1.518     albertel 3968:     my %designhash = &get_domainconf($domain);    
1.517     raeburn  3969:     # See if there is a logo
                   3970:     if ($designhash{$domain.'.login.domlogo'} ne '') {
1.519     raeburn  3971:         my $imgsrc = $designhash{$domain.'.login.domlogo'};
1.538     albertel 3972:         if ($imgsrc =~ m{^/(adm|res)/}) {
                   3973: 	    if ($imgsrc =~ m{^/res/}) {
                   3974: 		my $local_name = &Apache::lonnet::filelocation('',$imgsrc);
                   3975: 		&Apache::lonnet::repcopy($local_name);
                   3976: 	    }
                   3977: 	   $imgsrc = &lonhttpdurl($imgsrc);
1.519     raeburn  3978:         } 
                   3979:         return '<img src="'.$imgsrc.'" alt="'.$domain.'" />';
1.514     albertel 3980:     } elsif (defined(&Apache::lonnet::domain($domain,'description'))) {
                   3981:         return &Apache::lonnet::domain($domain,'description');
1.59      www      3982:     } else {
1.60      matthew  3983:         return '';
1.59      www      3984:     }
                   3985: }
1.63      www      3986: ##############################################
                   3987: 
                   3988: =pod
                   3989: 
1.112     bowersj2 3990: =item * &designparm()
1.63      www      3991: 
                   3992: Inputs: $which parameter; $domain (usually will be undef)
                   3993: 
                   3994: Returns: value of designparamter $which
                   3995: 
                   3996: =cut
1.112     bowersj2 3997: 
1.397     albertel 3998: 
1.400     albertel 3999: ##############################################
1.397     albertel 4000: sub designparm {
                   4001:     my ($which,$domain)=@_;
1.258     albertel 4002:     if ($env{'browser.blackwhite'} eq 'on') {
1.635     raeburn  4003: 	if ($which=~/\.(font|alink|vlink|link|textcol)$/) {
1.110     www      4004: 	    return '#000000';
                   4005: 	}
1.635     raeburn  4006: 	if ($which=~/\.(pgbg|sidebg|bgcol)$/) {
1.110     www      4007: 	    return '#FFFFFF';
                   4008: 	}
                   4009: 	if ($which=~/\.tabbg$/) {
                   4010: 	    return '#CCCCCC';
                   4011: 	}
                   4012:     }
1.397     albertel 4013:     if (exists($env{'environment.color.'.$which})) {
1.258     albertel 4014: 	return $env{'environment.color.'.$which};
1.96      www      4015:     }
1.63      www      4016:     $domain=&determinedomain($domain);
1.518     albertel 4017:     my %domdesign = &get_domainconf($domain);
1.520     raeburn  4018:     my $output;
1.517     raeburn  4019:     if ($domdesign{$domain.'.'.$which} ne '') {
1.520     raeburn  4020: 	$output = $domdesign{$domain.'.'.$which};
1.63      www      4021:     } else {
1.520     raeburn  4022:         $output = $defaultdesign{$which};
                   4023:     }
                   4024:     if (($which =~ /^(student|coordinator|author|admin)\.img$/) ||
1.635     raeburn  4025:         ($which =~ /login\.(img|logo|domlogo|login)/)) {
1.538     albertel 4026:         if ($output =~ m{^/(adm|res)/}) {
                   4027: 	    if ($output =~ m{^/res/}) {
                   4028: 		my $local_name = &Apache::lonnet::filelocation('',$output);
                   4029: 		&Apache::lonnet::repcopy($local_name);
                   4030: 	    }
1.520     raeburn  4031:             $output = &lonhttpdurl($output);
                   4032:         }
1.63      www      4033:     }
1.520     raeburn  4034:     return $output;
1.63      www      4035: }
1.59      www      4036: 
1.60      matthew  4037: ###############################################
                   4038: ###############################################
                   4039: 
                   4040: =pod
                   4041: 
1.112     bowersj2 4042: =back
                   4043: 
1.549     albertel 4044: =head1 HTML Helpers
1.112     bowersj2 4045: 
                   4046: =over 4
                   4047: 
                   4048: =item * &bodytag()
1.60      matthew  4049: 
                   4050: Returns a uniform header for LON-CAPA web pages.
                   4051: 
                   4052: Inputs: 
                   4053: 
1.112     bowersj2 4054: =over 4
                   4055: 
                   4056: =item * $title, A title to be displayed on the page.
                   4057: 
                   4058: =item * $function, the current role (can be undef).
                   4059: 
                   4060: =item * $addentries, extra parameters for the <body> tag.
                   4061: 
                   4062: =item * $bodyonly, if defined, only return the <body> tag.
                   4063: 
                   4064: =item * $domain, if defined, force a given domain.
                   4065: 
                   4066: =item * $forcereg, if page should register as content page (relevant for 
1.86      www      4067:             text interface only)
1.60      matthew  4068: 
1.326     albertel 4069: =item * $customtitle, alternate text to use instead of $title
                   4070:                       in the title box that appears, this text
                   4071:                       is not auto translated like the $title is
1.309     albertel 4072: 
                   4073: =item * $notopbar, if true, keep the 'what is this' info but remove the
                   4074:                    navigational links
1.317     albertel 4075: 
1.338     albertel 4076: =item * $bgcolor, used to override the bgcolor on a webpage to a specific value
                   4077: 
                   4078: =item * $notitle, if true keep the nav controls, but remove the title bar
                   4079: 
1.361     albertel 4080: =item * $no_inline_link, if true and in remote mode, don't show the 
                   4081:          'Switch To Inline Menu' link
                   4082: 
1.460     albertel 4083: =item * $args, optional argument valid values are
                   4084:             no_auto_mt_title -> prevents &mt()ing the title arg
1.562     albertel 4085:             inherit_jsmath -> when creating popup window in a page,
                   4086:                               should it have jsmath forced on by the
                   4087:                               current page
1.460     albertel 4088: 
1.112     bowersj2 4089: =back
                   4090: 
1.60      matthew  4091: Returns: A uniform header for LON-CAPA web pages.  
                   4092: If $bodyonly is nonzero, a string containing a <body> tag will be returned.
                   4093: If $bodyonly is undef or zero, an html string containing a <body> tag and 
                   4094: other decorations will be returned.
                   4095: 
                   4096: =cut
                   4097: 
1.54      www      4098: sub bodytag {
1.309     albertel 4099:     my ($title,$function,$addentries,$bodyonly,$domain,$forcereg,$customtitle,
1.460     albertel 4100: 	$notopbar,$bgcolor,$notitle,$no_inline_link,$args)=@_;
1.339     albertel 4101: 
1.460     albertel 4102:     if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }
1.339     albertel 4103: 
1.183     matthew  4104:     $function = &get_users_function() if (!$function);
1.339     albertel 4105:     my $img =    &designparm($function.'.img',$domain);
                   4106:     my $font =   &designparm($function.'.font',$domain);
                   4107:     my $pgbg   = $bgcolor || &designparm($function.'.pgbg',$domain);
                   4108: 
                   4109:     my %design = ( 'style'   => 'margin-top: 0px',
1.535     albertel 4110: 		   'bgcolor' => $pgbg,
1.339     albertel 4111: 		   'text'    => $font,
                   4112:                    'alink'   => &designparm($function.'.alink',$domain),
                   4113: 		   'vlink'   => &designparm($function.'.vlink',$domain),
                   4114: 		   'link'    => &designparm($function.'.link',$domain),);
1.438     albertel 4115:     @design{keys(%$addentries)} = @$addentries{keys(%$addentries)}; 
1.339     albertel 4116: 
1.63      www      4117:  # role and realm
1.378     raeburn  4118:     my ($role,$realm) = split(/\./,$env{'request.role'},2);
                   4119:     if ($role  eq 'ca') {
1.479     albertel 4120:         my ($rdom,$rname) = ($realm =~ m{^/($match_domain)/($match_username)$});
1.500     albertel 4121:         $realm = &plainname($rname,$rdom);
1.378     raeburn  4122:     } 
1.55      www      4123: # realm
1.258     albertel 4124:     if ($env{'request.course.id'}) {
1.378     raeburn  4125:         if ($env{'request.role'} !~ /^cr/) {
                   4126:             $role = &Apache::lonnet::plaintext($role,&course_type());
                   4127:         }
1.359     albertel 4128: 	$realm = $env{'course.'.$env{'request.course.id'}.'.description'};
1.378     raeburn  4129:     } else {
                   4130:         $role = &Apache::lonnet::plaintext($role);
1.54      www      4131:     }
1.433     albertel 4132: 
1.359     albertel 4133:     if (!$realm) { $realm='&nbsp;'; }
1.55      www      4134: # Set messages
1.60      matthew  4135:     my $messages=&domainlogo($domain);
1.330     albertel 4136: 
1.438     albertel 4137:     my $extra_body_attr = &make_attr_string($forcereg,\%design);
1.329     albertel 4138: 
1.101     www      4139: # construct main body tag
1.359     albertel 4140:     my $bodytag = "<body $extra_body_attr>".
1.562     albertel 4141: 	&Apache::lontexconvert::init_math_support($args->{'inherit_jsmath'});
1.252     albertel 4142: 
1.530     albertel 4143:     if ($bodyonly) {
1.60      matthew  4144:         return $bodytag;
1.258     albertel 4145:     } elsif ($env{'browser.interface'} eq 'textual') {
1.95      www      4146: # Accessibility
1.224     raeburn  4147:           
1.337     albertel 4148: 	$bodytag.=&Apache::lonmenu::menubuttons($forcereg,$forcereg);
1.338     albertel 4149: 	if (!$notitle) {
1.337     albertel 4150: 	    $bodytag.='<h1>LON-CAPA: '.$title.'</h1>';
                   4151: 	}
                   4152: 	return $bodytag;
1.359     albertel 4153:     }
                   4154: 
1.410     albertel 4155:     my $name = &plainname($env{'user.name'},$env{'user.domain'});
1.433     albertel 4156:     if ($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public') {
                   4157: 	undef($role);
1.434     albertel 4158:     } else {
                   4159: 	$name = &aboutmewrapper($name,$env{'user.name'},$env{'user.domain'});
1.433     albertel 4160:     }
1.359     albertel 4161:     
                   4162:     my $roleinfo=(<<ENDROLE);
                   4163: <td class="LC_title_bar_who">
                   4164: <div class="LC_title_bar_name">
1.410     albertel 4165:     $name
1.361     albertel 4166:     &nbsp;
1.359     albertel 4167: </div>
                   4168: <div class="LC_title_bar_role">
1.361     albertel 4169: $role&nbsp;
1.359     albertel 4170: </div>
                   4171: <div class="LC_title_bar_realm">
1.361     albertel 4172: $realm&nbsp;
1.359     albertel 4173: </div>
1.206     albertel 4174: </td>
                   4175: ENDROLE
1.235     raeburn  4176: 
1.359     albertel 4177:     my $titleinfo = '<span class="LC_title_bar_title">'.$title.'</span>';
                   4178:     if ($customtitle) {
                   4179:         $titleinfo = $customtitle;
                   4180:     }
                   4181:     #
                   4182:     # Extra info if you are the DC
                   4183:     my $dc_info = '';
                   4184:     if ($env{'user.adv'} && exists($env{'user.role.dc./'.
                   4185:                         $env{'course.'.$env{'request.course.id'}.
                   4186:                                  '.domain'}.'/'})) {
                   4187:         my $cid = $env{'request.course.id'};
                   4188:         $dc_info.= $cid.' '.$env{'course.'.$cid.'.internal.coursecode'};
1.380     www      4189:         $dc_info =~ s/\s+$//;
1.359     albertel 4190:         $dc_info = '('.$dc_info.')';
                   4191:     }
                   4192: 
1.644     www      4193:     if (($env{'environment.remote'} eq 'off') || ($args->{'suppress_header_logos'})) {
1.359     albertel 4194:         # No Remote
1.258     albertel 4195: 	if ($env{'request.state'} eq 'construct') {
1.359     albertel 4196: 	    $forcereg=1;
                   4197: 	}
                   4198: 
                   4199: 	if (!$customtitle && $env{'request.state'} eq 'construct') {
                   4200: 	    # this is for resources; directories have customtitle, and crumbs
                   4201:             # and select recent are created in lonpubdir.pm  
1.229     albertel 4202: 	    my ($uname,$thisdisfn)=
1.258     albertel 4203: 		($env{'request.filename'} =~ m|^/home/([^/]+)/public_html/(.*)|);
1.229     albertel 4204: 	    my $formaction='/priv/'.$uname.'/'.$thisdisfn;
                   4205: 	    $formaction=~s/\/+/\//g;
                   4206: 
1.359     albertel 4207: 	    my $parentpath = '';
                   4208: 	    my $lastitem = '';
                   4209: 	    if ($thisdisfn =~ m-(.+/)([^/]*)$-) {
                   4210: 		$parentpath = $1;
                   4211: 		$lastitem = $2;
                   4212: 	    } else {
                   4213: 		$lastitem = $thisdisfn;
                   4214: 	    }
                   4215: 	    $titleinfo = 
1.640     bisitz   4216: 		&Apache::loncommon::help_open_menu('','',3,'Authoring')
                   4217: 		.'<b>'.&mt('Construction Space').'</b>:&nbsp;'
                   4218: 		.'<form name="dirs" method="post" action="'.$formaction
1.359     albertel 4219: 		.'" target="_top"><tt><b>'
1.705     tempelho 4220: 		.&Apache::lonhtmlcommon::crumbs($uname.'/'.$parentpath,'_top','/priv','','+1',1)."<span class=\"LC_fontsize_big\">$lastitem</span></b></tt><br />"
1.359     albertel 4221: 		.&Apache::lonhtmlcommon::select_recent('construct','recent','this.form.action=this.form.recent.value;this.form.submit()')
                   4222: 		.'</form>'
                   4223: 		.&Apache::lonmenu::constspaceform();
1.235     raeburn  4224:         }
1.359     albertel 4225: 
1.337     albertel 4226:         my $titletable;
1.338     albertel 4227: 	if (!$notitle) {
1.337     albertel 4228: 	    $titletable =
1.359     albertel 4229: 		'<table id="LC_title_bar">'.
                   4230:                          "<tr><td> $titleinfo $dc_info</td>".$roleinfo.
                   4231: 			 '</tr></table>';
1.337     albertel 4232: 	}
1.359     albertel 4233: 	if ($notopbar) {
                   4234: 	    $bodytag .= $titletable;
                   4235: 	} else {
                   4236: 	    if ($env{'request.state'} eq 'construct') {
1.337     albertel 4237:                 $bodytag .= &Apache::lonmenu::menubuttons($forcereg,$forcereg,
                   4238: 							  $titletable);
1.272     raeburn  4239:             } else {
1.336     albertel 4240:                 $bodytag .= &Apache::lonmenu::menubuttons($forcereg,$forcereg).
1.359     albertel 4241: 		    $titletable;
1.272     raeburn  4242:             }
1.235     raeburn  4243:         }
                   4244:         return $bodytag;
1.94      www      4245:     }
1.95      www      4246: 
1.93      www      4247: #
1.95      www      4248: # Top frame rendering, Remote is up
1.93      www      4249: #
1.359     albertel 4250: 
1.517     raeburn  4251:     my $imgsrc = $img;
                   4252:     if ($img =~ /^\/adm/) {
1.575     albertel 4253:         $imgsrc = &lonhttpdurl($img);
1.517     raeburn  4254:     }
                   4255:     my $upperleft='<img src="'.$imgsrc.'" alt="'.$function.'" />';
1.359     albertel 4256: 
1.305     www      4257:     # Explicit link to get inline menu
1.361     albertel 4258:     my $menu= ($no_inline_link?''
                   4259: 	       :'<br /><a href="/adm/remote?action=collapse">'.&mt('Switch to Inline Menu Mode').'</a>');
1.245     matthew  4260:     #
1.338     albertel 4261:     if ($notitle) {
1.337     albertel 4262: 	return $bodytag;
                   4263:     }
1.94      www      4264:     return(<<ENDBODY);
1.60      matthew  4265: $bodytag
1.359     albertel 4266: <table id="LC_title_bar" class="LC_with_remote">
1.368     albertel 4267: <tr><td class="LC_title_bar_role_logo">$upperleft</td>
1.359     albertel 4268:     <td class="LC_title_bar_domain_logo">$messages&nbsp;</td>
1.54      www      4269: </tr>
1.359     albertel 4270: <tr><td>$titleinfo $dc_info $menu</td>
                   4271: $roleinfo
1.368     albertel 4272: </tr>
1.356     albertel 4273: </table>
1.54      www      4274: ENDBODY
1.182     matthew  4275: }
                   4276: 
1.330     albertel 4277: sub make_attr_string {
                   4278:     my ($register,$attr_ref) = @_;
                   4279: 
                   4280:     if ($attr_ref && !ref($attr_ref)) {
                   4281: 	die("addentries Must be a hash ref ".
                   4282: 	    join(':',caller(1))." ".
                   4283: 	    join(':',caller(0))." ");
                   4284:     }
                   4285: 
                   4286:     if ($register) {
1.339     albertel 4287: 	my ($on_load,$on_unload);
                   4288: 	foreach my $key (keys(%{$attr_ref})) {
                   4289: 	    if      (lc($key) eq 'onload') {
                   4290: 		$on_load.=$attr_ref->{$key}.';';
                   4291: 		delete($attr_ref->{$key});
                   4292: 
                   4293: 	    } elsif (lc($key) eq 'onunload') {
                   4294: 		$on_unload.=$attr_ref->{$key}.';';
                   4295: 		delete($attr_ref->{$key});
                   4296: 	    }
                   4297: 	}
                   4298: 	$attr_ref->{'onload'}  =
                   4299: 	    &Apache::lonmenu::loadevents().  $on_load;
                   4300: 	$attr_ref->{'onunload'}=
                   4301: 	    &Apache::lonmenu::unloadevents().$on_unload;
                   4302:     }
                   4303: 
                   4304: # Accessibility font enhance
                   4305:     if ($env{'browser.fontenhance'} eq 'on') {
                   4306: 	my $style;
                   4307: 	foreach my $key (keys(%{$attr_ref})) {
                   4308: 	    if (lc($key) eq 'style') {
                   4309: 		$style.=$attr_ref->{$key}.';';
                   4310: 		delete($attr_ref->{$key});
                   4311: 	    }
                   4312: 	}
                   4313: 	$attr_ref->{'style'}=$style.'; font-size: x-large;';
1.330     albertel 4314:     }
1.339     albertel 4315: 
                   4316:     if ($env{'browser.blackwhite'} eq 'on') {
                   4317: 	delete($attr_ref->{'font'});
                   4318: 	delete($attr_ref->{'link'});
                   4319: 	delete($attr_ref->{'alink'});
                   4320: 	delete($attr_ref->{'vlink'});
                   4321: 	delete($attr_ref->{'bgcolor'});
                   4322: 	delete($attr_ref->{'background'});
                   4323:     }
                   4324: 
1.330     albertel 4325:     my $attr_string;
                   4326:     foreach my $attr (keys(%$attr_ref)) {
                   4327: 	$attr_string .= " $attr=\"".$attr_ref->{$attr}.'" ';
                   4328:     }
                   4329:     return $attr_string;
                   4330: }
                   4331: 
                   4332: 
1.182     matthew  4333: ###############################################
1.251     albertel 4334: ###############################################
                   4335: 
                   4336: =pod
                   4337: 
                   4338: =item * &endbodytag()
                   4339: 
                   4340: Returns a uniform footer for LON-CAPA web pages.
                   4341: 
1.635     raeburn  4342: Inputs: 1 - optional reference to an args hash
                   4343: If in the hash, key for noredirectlink has a value which evaluates to true,
                   4344: a 'Continue' link is not displayed if the page contains an
                   4345: internal redirect in the <head></head> section,
                   4346: i.e., $env{'internal.head.redirect'} exists   
1.251     albertel 4347: 
                   4348: =cut
                   4349: 
                   4350: sub endbodytag {
1.635     raeburn  4351:     my ($args) = @_;
1.251     albertel 4352:     my $endbodytag='</body>';
1.269     albertel 4353:     $endbodytag=&Apache::lontexconvert::jsMath_process()."\n".$endbodytag;
1.315     albertel 4354:     if ( exists( $env{'internal.head.redirect'} ) ) {
1.635     raeburn  4355:         if (!(ref($args) eq 'HASH' && $args->{'noredirectlink'})) {
                   4356: 	    $endbodytag=
                   4357: 	        "<br /><a href=\"$env{'internal.head.redirect'}\">".
                   4358: 	        &mt('Continue').'</a>'.
                   4359: 	        $endbodytag;
                   4360:         }
1.315     albertel 4361:     }
1.251     albertel 4362:     return $endbodytag;
                   4363: }
                   4364: 
1.352     albertel 4365: =pod
                   4366: 
                   4367: =item * &standard_css()
                   4368: 
                   4369: Returns a style sheet
                   4370: 
                   4371: Inputs: (all optional)
                   4372:             domain         -> force to color decorate a page for a specific
                   4373:                                domain
                   4374:             function       -> force usage of a specific rolish color scheme
                   4375:             bgcolor        -> override the default page bgcolor
                   4376: 
                   4377: =cut
                   4378: 
1.343     albertel 4379: sub standard_css {
1.345     albertel 4380:     my ($function,$domain,$bgcolor) = @_;
1.352     albertel 4381:     $function  = &get_users_function() if (!$function);
                   4382:     my $img    = &designparm($function.'.img',   $domain);
                   4383:     my $tabbg  = &designparm($function.'.tabbg', $domain);
                   4384:     my $font   = &designparm($function.'.font',  $domain);
1.345     albertel 4385:     my $sidebg = &designparm($function.'.sidebg',$domain);
1.382     albertel 4386:     my $pgbg_or_bgcolor =
                   4387: 	         $bgcolor ||
1.352     albertel 4388: 	         &designparm($function.'.pgbg',  $domain);
1.382     albertel 4389:     my $pgbg   = &designparm($function.'.pgbg',  $domain);
1.352     albertel 4390:     my $alink  = &designparm($function.'.alink', $domain);
                   4391:     my $vlink  = &designparm($function.'.vlink', $domain);
                   4392:     my $link   = &designparm($function.'.link',  $domain);
                   4393: 
1.704     muellerd 4394:     my $loginbg = &designparm('login.sidebg',$domain);
1.712   ! muellerd 4395:     my $bgcol = &designparm('login.bgcol',$domain);
        !          4396:     my $textcol = &designparm('login.textcol',$domain);
1.704     muellerd 4397: 
1.602     albertel 4398:     my $sans                 = 'Verdana,Arial,Helvetica,sans-serif';
1.395     albertel 4399:     my $mono                 = 'monospace';
1.352     albertel 4400:     my $data_table_head      = $tabbg;
                   4401:     my $data_table_light     = '#EEEEEE';
1.470     banghart 4402:     my $data_table_dark      = '#DDDDDD';
                   4403:     my $data_table_darker    = '#CCCCCC';
1.349     albertel 4404:     my $data_table_highlight = '#FFFF00';
1.352     albertel 4405:     my $mail_new             = '#FFBB77';
                   4406:     my $mail_new_hover       = '#DD9955';
                   4407:     my $mail_read            = '#BBBB77';
                   4408:     my $mail_read_hover      = '#999944';
                   4409:     my $mail_replied         = '#AAAA88';
                   4410:     my $mail_replied_hover   = '#888855';
                   4411:     my $mail_other           = '#99BBBB';
                   4412:     my $mail_other_hover     = '#669999';
1.391     albertel 4413:     my $table_header         = '#DDDDDD';
1.489     raeburn  4414:     my $feedback_link_bg     = '#BBBBBB';
1.701     harmsja  4415:     my $lg_border_color	     = '#C8C8C8';
1.392     albertel 4416: 
1.608     albertel 4417:     my $border = ($env{'browser.type'} eq 'explorer' ||
                   4418: 		  $env{'browser.type'} eq 'safari'     ) ? '0px 2px 0px 2px'
                   4419: 	                                                 : '0px 3px 0px 4px';
1.448     albertel 4420: 
1.523     albertel 4421: 
1.343     albertel 4422:     return <<END;
1.698     harmsja  4423: body{
                   4424:      font-family: $sans;
                   4425:      line-height:130%;
1.701     harmsja  4426:      font-size:0.83em;
1.698     harmsja  4427:      color:$font;
                   4428:   }
1.701     harmsja  4429: a:link, a:visited { font-size:100%; }
1.698     harmsja  4430: 
1.343     albertel 4431: a:focus { color: red; background: yellow } 
1.510     albertel 4432: table.thinborder,
                   4433: table.thinborder tr th {
                   4434:   border-style: solid;
                   4435:   border-width: 1px;
1.698     harmsja  4436:   border-color: $lg_border_color;
1.510     albertel 4437:   background: $tabbg;
                   4438: }
1.523     albertel 4439: table.thinborder tr td {
1.510     albertel 4440:   border-style: solid;
1.698     harmsja  4441:   border-width: 1px;
                   4442:   border-color: $lg_border_color;
1.510     albertel 4443: }
1.426     albertel 4444: 
1.343     albertel 4445: form, .inline { display: inline; }
                   4446: .center { text-align: center; }
1.701     harmsja  4447: .left { text-align:left; }
                   4448: .right {text-align:right;}
                   4449: .middle {vertical-align:middle;}
                   4450: .top {vertical-align:top;}
                   4451: .bottom {vertical-align:bottom;}
1.593     albertel 4452: .LC_filename {font-family: $mono; white-space:pre;}
1.350     albertel 4453: .LC_error {
                   4454:   color: red;
                   4455:   font-size: larger;
                   4456: }
1.457     albertel 4457: .LC_warning,
                   4458: .LC_diff_removed {
1.394     albertel 4459:   color: red;
                   4460: }
1.532     albertel 4461: 
                   4462: .LC_info,
1.457     albertel 4463: .LC_success,
                   4464: .LC_diff_added {
1.350     albertel 4465:   color: green;
                   4466: }
1.543     albertel 4467: .LC_unknown {
                   4468:   color: yellow;
                   4469: }
                   4470: 
1.440     albertel 4471: .LC_icon {
                   4472:   border: 0px;
                   4473: }
1.539     albertel 4474: .LC_indexer_icon {
                   4475:   border: 0px;
                   4476:   height: 22px;
                   4477: }
1.543     albertel 4478: .LC_docs_spacer {
                   4479:   width: 25px;
                   4480:   height: 1px;
                   4481:   border: 0px;
                   4482: }
1.346     albertel 4483: 
1.532     albertel 4484: .LC_internal_info {
                   4485:   color: #999;
                   4486: }
                   4487: 
1.458     albertel 4488: table.LC_pastsubmission {
                   4489:   border: 1px solid black;
                   4490:   margin: 2px;
                   4491: }
                   4492: 
1.606     albertel 4493: table#LC_top_nav, table#LC_menubuttons,table#LC_nav_location {
1.345     albertel 4494:   width: 100%;
                   4495:   background: $pgbg;
1.392     albertel 4496:   border: 2px;
1.402     albertel 4497:   border-collapse: separate;
1.403     albertel 4498:   padding: 0px;
1.345     albertel 4499: }
1.392     albertel 4500: 
1.606     albertel 4501: table#LC_title_bar, table.LC_breadcrumbs, 
1.393     albertel 4502: table#LC_title_bar.LC_with_remote {
1.359     albertel 4503:   width: 100%;
1.392     albertel 4504:   border-color: $pgbg;
                   4505:   border-style: solid;
                   4506:   border-width: $border;
                   4507: 
1.379     albertel 4508:   background: $pgbg;
                   4509:   font-family: $sans;
1.392     albertel 4510:   border-collapse: collapse;
1.403     albertel 4511:   padding: 0px;
1.359     albertel 4512: }
1.409     albertel 4513: table.LC_docs_path {
                   4514:   width: 100%;
                   4515:   border: 0;
                   4516:   background: $pgbg;
                   4517:   font-family: $sans;
                   4518:   border-collapse: collapse;
                   4519:   padding: 0px;
                   4520: }
                   4521: 
1.359     albertel 4522: table#LC_title_bar td {
                   4523:   background: $tabbg;
                   4524: }
                   4525: table#LC_title_bar td.LC_title_bar_who {
                   4526:   background: $tabbg;
                   4527:   color: $font;
1.427     albertel 4528:   font: small $sans;
1.359     albertel 4529:   text-align: right;
                   4530: }
1.469     banghart 4531: span.LC_metadata {
                   4532:     font-family: $sans;
                   4533: }
1.359     albertel 4534: span.LC_title_bar_title {
1.416     albertel 4535:   font: bold x-large $sans;
1.359     albertel 4536: }
                   4537: table#LC_title_bar td.LC_title_bar_domain_logo {
                   4538:   background: $sidebg;
                   4539:   text-align: right;
1.368     albertel 4540:   padding: 0px;
                   4541: }
                   4542: table#LC_title_bar td.LC_title_bar_role_logo {
                   4543:   background: $sidebg;
                   4544:   padding: 0px;
1.359     albertel 4545: }
                   4546: 
1.706     harmsja  4547: table#LC_menubuttons img{
1.346     albertel 4548:   border: 0px;
                   4549: }
1.345     albertel 4550: table#LC_top_nav td {
                   4551:   background: $tabbg;
1.392     albertel 4552:   border: 0px;
1.407     albertel 4553:   font-size: small;
1.706     harmsja  4554:   vertical-align:top;
                   4555:   padding:2px 5px 2px 5px;
1.345     albertel 4556: }
                   4557: table#LC_top_nav td a, div#LC_top_nav a {
                   4558:   color: $font;
                   4559:   font-family: $sans;
                   4560: }
1.364     albertel 4561: table#LC_top_nav td.LC_top_nav_logo {
                   4562:   background: $tabbg;
1.432     albertel 4563:   text-align: left;
1.408     albertel 4564:   white-space: nowrap;
1.432     albertel 4565:   width: 31px;
1.408     albertel 4566: }
                   4567: table#LC_top_nav td.LC_top_nav_logo img {
1.432     albertel 4568:   border: 0px;
1.408     albertel 4569:   vertical-align: bottom;
1.364     albertel 4570: }
1.432     albertel 4571: table#LC_top_nav td.LC_top_nav_exit,
                   4572: table#LC_top_nav td.LC_top_nav_help {
                   4573:   width: 2.0em;
                   4574: }
1.442     albertel 4575: table#LC_top_nav td.LC_top_nav_login {
                   4576:   width: 4.0em;
                   4577:   text-align: center;
                   4578: }
1.409     albertel 4579: table.LC_breadcrumbs td, table.LC_docs_path td  {
1.357     albertel 4580:   background: $tabbg;
                   4581:   color: $font;
                   4582:   font-family: $sans;
1.358     albertel 4583:   font-size: smaller;
1.357     albertel 4584: }
1.411     albertel 4585: table.LC_breadcrumbs td.LC_breadcrumbs_component,
1.409     albertel 4586: table.LC_docs_path td.LC_docs_path_component {
1.357     albertel 4587:   background: $tabbg;
                   4588:   color: $font;
                   4589:   font-family: $sans;
                   4590:   font-size: larger;
                   4591:   text-align: right;
                   4592: }
1.383     albertel 4593: td.LC_table_cell_checkbox {
                   4594:   text-align: center;
                   4595: }
1.522     albertel 4596: table#LC_mainmenu td.LC_mainmenu_column {
                   4597:     vertical-align: top;
                   4598: }
                   4599: 
1.705     tempelho 4600: .LC_fontsize_small
                   4601: {
                   4602:  font-size: 70%;
                   4603: }
                   4604: 
                   4605: .LC_fontsize_medium
                   4606: {
                   4607:  font-size: 85%;
                   4608: }
                   4609: 
                   4610: .LC_fontsize_large
                   4611: {
                   4612:  font-size: 120%;
                   4613: }
                   4614: 
                   4615: .LC_fontcolor_red
                   4616: {
                   4617:  color: #FF0000;
                   4618: }
                   4619: 
1.346     albertel 4620: .LC_menubuttons_inline_text {
                   4621:   color: $font;
                   4622:   font-family: $sans;
1.698     harmsja  4623:   font-size: 90%;
1.701     harmsja  4624:   padding-left:3px;
1.346     albertel 4625: }
                   4626: 
1.526     www      4627: .LC_menubuttons_link {
                   4628:   text-decoration: none;
                   4629: }
1.698     harmsja  4630: /*2008--9-5: new menu style sheet.Changed category*/
1.522     albertel 4631: .LC_menubuttons_category {
1.521     www      4632:   color: $font;
1.526     www      4633:   background: $pgbg;
1.521     www      4634:   font-family: $sans;
                   4635:   font-size: larger;
                   4636:   font-weight: bold;
                   4637: }
                   4638: 
1.346     albertel 4639: td.LC_menubuttons_text {
1.701     harmsja  4640:  	color: $font; 	
1.346     albertel 4641: }
1.706     harmsja  4642: 
                   4643: 
1.526     www      4644: 
1.346     albertel 4645: .LC_current_location {
                   4646:   font-family: $sans;
                   4647:   background: $tabbg;
                   4648: }
                   4649: .LC_new_mail {
                   4650:   font-family: $sans;
1.634     www      4651:   background: $tabbg;
1.346     albertel 4652:   font-weight: bold;
                   4653: }
1.347     albertel 4654: 
1.526     www      4655: 
1.527     www      4656: .LC_dropadd_labeltext {
                   4657:   font-family: $sans;
                   4658:   text-align: right;
                   4659: }
                   4660: 
                   4661: .LC_preferences_labeltext {
                   4662:   font-family: $sans;
                   4663:   text-align: right;
                   4664: }
                   4665: 
1.666     raeburn  4666: .LC_roleslog_note {
1.701     harmsja  4667:   font-size: small;
1.666     raeburn  4668: }
                   4669: 
1.440     albertel 4670: table.LC_aboutme_port {
                   4671:   border: 0px;
                   4672:   border-collapse: collapse;
                   4673:   border-spacing: 0px;
                   4674: }
1.349     albertel 4675: table.LC_data_table, table.LC_mail_list {
1.347     albertel 4676:   border: 1px solid #000000;
1.402     albertel 4677:   border-collapse: separate;
1.426     albertel 4678:   border-spacing: 1px;
1.610     albertel 4679:   background: $pgbg;
1.347     albertel 4680: }
1.422     albertel 4681: .LC_data_table_dense {
                   4682:   font-size: small;
                   4683: }
1.507     raeburn  4684: table.LC_nested_outer {
                   4685:   border: 1px solid #000000;
1.589     raeburn  4686:   border-collapse: collapse;
1.507     raeburn  4687:   border-spacing: 0px;
                   4688:   width: 100%;
                   4689: }
                   4690: table.LC_nested {
                   4691:   border: 0px;
1.589     raeburn  4692:   border-collapse: collapse;
1.507     raeburn  4693:   border-spacing: 0px;
                   4694:   width: 100%;
                   4695: }
1.523     albertel 4696: table.LC_data_table tr th, table.LC_calendar tr th, table.LC_mail_list tr th,
                   4697: table.LC_prior_tries tr th {
1.349     albertel 4698:   font-weight: bold;
                   4699:   background-color: $data_table_head;
1.701     harmsja  4700:   font-size:90%;
1.347     albertel 4701: }
1.711     raeburn  4702: table.LC_data_table tr.LC_info_row > td {
                   4703:   background-color: #CCC;
                   4704:   font-weight: bold;
                   4705:   text-align: left;
                   4706: }
1.610     albertel 4707: table.LC_data_table tr.LC_odd_row > td, 
1.709     bisitz   4708: table.LC_pick_box tr > td.LC_odd_row,
1.440     albertel 4709: table.LC_aboutme_port tr td {
1.349     albertel 4710:   background-color: $data_table_light;
1.425     albertel 4711:   padding: 2px;
1.347     albertel 4712: }
1.610     albertel 4713: table.LC_data_table tr.LC_even_row > td,
1.709     bisitz   4714: table.LC_pick_box tr > td.LC_even_row,
1.440     albertel 4715: table.LC_aboutme_port tr.LC_even_row td {
1.349     albertel 4716:   background-color: $data_table_dark;
1.709     bisitz   4717:   padding: 2px;
1.347     albertel 4718: }
1.425     albertel 4719: table.LC_data_table tr.LC_data_table_highlight td {
                   4720:   background-color: $data_table_darker;
                   4721: }
1.639     raeburn  4722: table.LC_data_table tr td.LC_leftcol_header {
                   4723:   background-color: $data_table_head;
                   4724:   font-weight: bold;
                   4725: }
1.451     albertel 4726: table.LC_data_table tr.LC_empty_row td,
1.507     raeburn  4727: table.LC_nested tr.LC_empty_row td {
1.347     albertel 4728:   background-color: #FFFFFF;
1.421     albertel 4729:   font-weight: bold;
                   4730:   font-style: italic;
                   4731:   text-align: center;
                   4732:   padding: 8px;
1.347     albertel 4733: }
1.507     raeburn  4734: table.LC_nested tr.LC_empty_row td {
1.465     albertel 4735:   padding: 4ex
                   4736: }
1.507     raeburn  4737: table.LC_nested_outer tr th {
                   4738:   font-weight: bold;
                   4739:   background-color: $data_table_head;
1.701     harmsja  4740:   font-size: small;
1.507     raeburn  4741:   border-bottom: 1px solid #000000;
                   4742: }
                   4743: table.LC_nested_outer tr td.LC_subheader {
                   4744:   background-color: $data_table_head;
                   4745:   font-weight: bold;
                   4746:   font-size: small;
                   4747:   border-bottom: 1px solid #000000;
                   4748:   text-align: right;
1.451     albertel 4749: }
1.507     raeburn  4750: table.LC_nested tr.LC_info_row td {
1.451     albertel 4751:   background-color: #CCC;
                   4752:   font-weight: bold;
                   4753:   font-size: small;
1.507     raeburn  4754:   text-align: center;
                   4755: }
1.589     raeburn  4756: table.LC_nested tr.LC_info_row td.LC_left_item,
                   4757: table.LC_nested_outer tr th.LC_left_item {
1.507     raeburn  4758:   text-align: left;
1.451     albertel 4759: }
1.507     raeburn  4760: table.LC_nested td {
1.451     albertel 4761:   background-color: #FFF;
                   4762:   font-size: small;
1.507     raeburn  4763: }
                   4764: table.LC_nested_outer tr th.LC_right_item,
                   4765: table.LC_nested tr.LC_info_row td.LC_right_item,
                   4766: table.LC_nested tr.LC_odd_row td.LC_right_item,
                   4767: table.LC_nested tr td.LC_right_item {
1.451     albertel 4768:   text-align: right;
                   4769: }
                   4770: 
1.507     raeburn  4771: table.LC_nested tr.LC_odd_row td {
1.451     albertel 4772:   background-color: #EEE;
                   4773: }
                   4774: 
1.473     raeburn  4775: table.LC_createuser {
                   4776: }
                   4777: 
                   4778: table.LC_createuser tr.LC_section_row td {
1.701     harmsja  4779:   font-size: small;
1.473     raeburn  4780: }
                   4781: 
                   4782: table.LC_createuser tr.LC_info_row td  {
                   4783:   background-color: #CCC;
                   4784:   font-weight: bold;
                   4785:   text-align: center;
                   4786: }
                   4787: 
1.349     albertel 4788: table.LC_calendar {
                   4789:   border: 1px solid #000000;
                   4790:   border-collapse: collapse;
                   4791: }
                   4792: table.LC_calendar_pickdate {
                   4793:   font-size: xx-small;
                   4794: }
                   4795: table.LC_calendar tr td {
                   4796:   border: 1px solid #000000;
                   4797:   vertical-align: top;
                   4798: }
                   4799: table.LC_calendar tr td.LC_calendar_day_empty {
                   4800:   background-color: $data_table_dark;
                   4801: }
                   4802: table.LC_calendar tr td.LC_calendar_day_current {
                   4803:   background-color: $data_table_highlight;
                   4804: }
                   4805: 
                   4806: table.LC_mail_list tr.LC_mail_new {
                   4807:   background-color: $mail_new;
                   4808: }
                   4809: table.LC_mail_list tr.LC_mail_new:hover {
                   4810:   background-color: $mail_new_hover;
                   4811: }
                   4812: table.LC_mail_list tr.LC_mail_read {
                   4813:   background-color: $mail_read;
                   4814: }
                   4815: table.LC_mail_list tr.LC_mail_read:hover {
                   4816:   background-color: $mail_read_hover;
                   4817: }
                   4818: table.LC_mail_list tr.LC_mail_replied {
                   4819:   background-color: $mail_replied;
                   4820: }
                   4821: table.LC_mail_list tr.LC_mail_replied:hover {
                   4822:   background-color: $mail_replied_hover;
                   4823: }
                   4824: table.LC_mail_list tr.LC_mail_other {
                   4825:   background-color: $mail_other;
                   4826: }
                   4827: table.LC_mail_list tr.LC_mail_other:hover {
                   4828:   background-color: $mail_other_hover;
                   4829: }
1.494     raeburn  4830: table.LC_mail_list tr.LC_mail_even {
                   4831: }
                   4832: table.LC_mail_list tr.LC_mail_odd {
                   4833: }
                   4834: 
1.696     bisitz   4835: table.LC_data_table tr > td.LC_browser_file,
                   4836: table.LC_data_table tr > td.LC_browser_file_published {
1.389     albertel 4837:   background: #CCFF88;
                   4838: }
1.696     bisitz   4839: table.LC_data_table tr > td.LC_browser_file_locked,
                   4840: table.LC_data_table tr > td.LC_browser_file_unpublished {
1.389     albertel 4841:   background: #FFAA99;
1.387     albertel 4842: }
1.696     bisitz   4843: table.LC_data_table tr > td.LC_browser_file_obsolete {
1.389     albertel 4844:   background: #AAAAAA;
1.387     albertel 4845: }
1.696     bisitz   4846: table.LC_data_table tr > td.LC_browser_file_modified,
                   4847: table.LC_data_table tr > td.LC_browser_file_metamodified {
1.389     albertel 4848:   background: #FFFF77;
1.387     albertel 4849: }
1.696     bisitz   4850: table.LC_data_table tr.LC_browser_folder > td {
1.389     albertel 4851:   background: #CCCCFF;
1.387     albertel 4852: }
1.696     bisitz   4853: 
1.707     bisitz   4854: table.LC_data_table tr > td.LC_roles_is {
                   4855: /*  background: #77FF77; */
                   4856: }
                   4857: table.LC_data_table tr > td.LC_roles_future {
                   4858:   background: #FFFF77;
                   4859: }
                   4860: table.LC_data_table tr > td.LC_roles_will {
                   4861:   background: #FFAA77;
                   4862: }
                   4863: table.LC_data_table tr > td.LC_roles_expired {
                   4864:   background: #FF7777;
                   4865: }
                   4866: table.LC_data_table tr > td.LC_roles_will_not {
                   4867:   background: #AAFF77;
                   4868: }
                   4869: table.LC_data_table tr > td.LC_roles_selected {
                   4870:   background: #11CC55;
                   4871: }
                   4872: 
1.388     albertel 4873: span.LC_current_location {
1.701     harmsja  4874:   font-size:larger;
1.388     albertel 4875:   background: $pgbg;
                   4876: }
1.387     albertel 4877: 
1.395     albertel 4878: span.LC_parm_menu_item {
                   4879:   font-size: larger;
                   4880:   font-family: $sans;
                   4881: }
                   4882: span.LC_parm_scope_all {
                   4883:   color: red;
                   4884: }
                   4885: span.LC_parm_scope_folder {
                   4886:   color: green;
                   4887: }
                   4888: span.LC_parm_scope_resource {
                   4889:   color: orange;
                   4890: }
                   4891: span.LC_parm_part {
                   4892:   color: blue;
                   4893: }
                   4894: span.LC_parm_folder, span.LC_parm_symb {
                   4895:   font-size: x-small;
                   4896:   font-family: $mono;
                   4897:   color: #AAAAAA;
                   4898: }
                   4899: 
1.396     albertel 4900: td.LC_parm_overview_level_menu, td.LC_parm_overview_map_menu,
                   4901: td.LC_parm_overview_parm_selectors, td.LC_parm_overview_parm_restrictions {
                   4902:   border: 1px solid black;
                   4903:   border-collapse: collapse;
                   4904: }
                   4905: table.LC_parm_overview_restrictions td {
                   4906:   border-width: 1px 4px 1px 4px;
                   4907:   border-style: solid;
                   4908:   border-color: $pgbg;
                   4909:   text-align: center;
                   4910: }
                   4911: table.LC_parm_overview_restrictions th {
                   4912:   background: $tabbg;
                   4913:   border-width: 1px 4px 1px 4px;
                   4914:   border-style: solid;
                   4915:   border-color: $pgbg;
                   4916: }
1.398     albertel 4917: table#LC_helpmenu {
                   4918:   border: 0px;
                   4919:   height: 55px;
                   4920:   border-spacing: 0px;
                   4921: }
                   4922: 
                   4923: table#LC_helpmenu fieldset legend {
                   4924:   font-size: larger;
                   4925:   font-weight: bold;
                   4926: }
1.397     albertel 4927: table#LC_helpmenu_links {
                   4928:   width: 100%;
                   4929:   border: 1px solid black;
                   4930:   background: $pgbg;
                   4931:   padding: 0px;
                   4932:   border-spacing: 1px;
                   4933: }
                   4934: table#LC_helpmenu_links tr td {
                   4935:   padding: 1px;
                   4936:   background: $tabbg;
1.399     albertel 4937:   text-align: center;
                   4938:   font-weight: bold;
1.397     albertel 4939: }
1.396     albertel 4940: 
1.397     albertel 4941: table#LC_helpmenu_links a:link, table#LC_helpmenu_links a:visited,
                   4942: table#LC_helpmenu_links a:active {
                   4943:   text-decoration: none;
                   4944:   color: $font;
                   4945: }
                   4946: table#LC_helpmenu_links a:hover {
                   4947:   text-decoration: underline;
                   4948:   color: $vlink;
                   4949: }
1.396     albertel 4950: 
1.417     albertel 4951: .LC_chrt_popup_exists {
                   4952:   border: 1px solid #339933;
                   4953:   margin: -1px;
                   4954: }
                   4955: .LC_chrt_popup_up {
                   4956:   border: 1px solid yellow;
                   4957:   margin: -1px;
                   4958: }
                   4959: .LC_chrt_popup {
                   4960:   border: 1px solid #8888FF;
                   4961:   background: #CCCCFF;
                   4962: }
1.421     albertel 4963: table.LC_pick_box {
                   4964:   border-collapse: separate;
                   4965:   background: white;
                   4966:   border: 1px solid black;
                   4967:   border-spacing: 1px;
                   4968: }
                   4969: table.LC_pick_box td.LC_pick_box_title {
                   4970:   background: $tabbg;
                   4971:   font-weight: bold;
                   4972:   text-align: right;
                   4973:   width: 184px;
                   4974:   padding: 8px;
                   4975: }
1.645     raeburn  4976: table.LC_pick_box td.LC_selfenroll_pick_box_title {
                   4977:   background: $tabbg;
                   4978:   font-weight: bold;
                   4979:   text-align: right;
                   4980:   width: 350px;
                   4981:   padding: 8px;
                   4982: }
                   4983: 
1.579     raeburn  4984: table.LC_pick_box td.LC_pick_box_value {
                   4985:   text-align: left;
                   4986:   padding: 8px;
                   4987: }
                   4988: table.LC_pick_box td.LC_pick_box_select {
                   4989:   text-align: left;
                   4990:   padding: 8px;
                   4991: }
1.424     albertel 4992: table.LC_pick_box td.LC_pick_box_separator {
1.421     albertel 4993:   padding: 0px;
                   4994:   height: 1px;
                   4995:   background: black;
                   4996: }
                   4997: table.LC_pick_box td.LC_pick_box_submit {
                   4998:   text-align: right;
                   4999: }
1.579     raeburn  5000: table.LC_pick_box td.LC_evenrow_value {
                   5001:   text-align: left;
                   5002:   padding: 8px;
                   5003:   background-color: $data_table_light;
                   5004: }
                   5005: table.LC_pick_box td.LC_oddrow_value {
                   5006:   text-align: left;
                   5007:   padding: 8px;
                   5008:   background-color: $data_table_light;
                   5009: }
                   5010: table.LC_helpform_receipt {
                   5011:   width: 620px;
                   5012:   border-collapse: separate;
                   5013:   background: white;
                   5014:   border: 1px solid black;
                   5015:   border-spacing: 1px;
                   5016: }
                   5017: table.LC_helpform_receipt td.LC_pick_box_title {
                   5018:   background: $tabbg;
                   5019:   font-weight: bold;
                   5020:   text-align: right;
                   5021:   width: 184px;
                   5022:   padding: 8px;
                   5023: }
                   5024: table.LC_helpform_receipt td.LC_evenrow_value {
                   5025:   text-align: left;
                   5026:   padding: 8px;
                   5027:   background-color: $data_table_light;
                   5028: }
                   5029: table.LC_helpform_receipt td.LC_oddrow_value {
                   5030:   text-align: left;
                   5031:   padding: 8px;
                   5032:   background-color: $data_table_light;
                   5033: }
                   5034: table.LC_helpform_receipt td.LC_pick_box_separator {
                   5035:   padding: 0px;
                   5036:   height: 1px;
                   5037:   background: black;
                   5038: }
                   5039: span.LC_helpform_receipt_cat {
                   5040:   font-weight: bold;
                   5041: }
1.424     albertel 5042: table.LC_group_priv_box {
                   5043:   background: white;
                   5044:   border: 1px solid black;
                   5045:   border-spacing: 1px;
                   5046: }
                   5047: table.LC_group_priv_box td.LC_pick_box_title {
                   5048:   background: $tabbg;
                   5049:   font-weight: bold;
                   5050:   text-align: right;
                   5051:   width: 184px;
                   5052: }
                   5053: table.LC_group_priv_box td.LC_groups_fixed {
                   5054:   background: $data_table_light;
                   5055:   text-align: center;
                   5056: }
                   5057: table.LC_group_priv_box td.LC_groups_optional {
                   5058:   background: $data_table_dark;
                   5059:   text-align: center;
                   5060: }
                   5061: table.LC_group_priv_box td.LC_groups_functionality {
                   5062:   background: $data_table_darker;
                   5063:   text-align: center;
                   5064:   font-weight: bold;
                   5065: }
                   5066: table.LC_group_priv td {
                   5067:   text-align: left;
                   5068:   padding: 0px;
                   5069: }
                   5070: 
1.421     albertel 5071: table.LC_notify_front_page {
                   5072:   background: white;
                   5073:   border: 1px solid black;
                   5074:   padding: 8px;
                   5075: }
                   5076: table.LC_notify_front_page td {
                   5077:   padding: 8px;
                   5078: }
1.424     albertel 5079: .LC_navbuttons {
                   5080:   margin: 2ex 0ex 2ex 0ex;
                   5081: }
1.423     albertel 5082: .LC_topic_bar {
                   5083:   font-family: $sans;
                   5084:   font-weight: bold;
                   5085:   width: 100%;
                   5086:   background: $tabbg;
                   5087:   vertical-align: middle;
                   5088:   margin: 2ex 0ex 2ex 0ex;
                   5089: }
                   5090: .LC_topic_bar span {
                   5091:   vertical-align: middle;
                   5092: }
                   5093: .LC_topic_bar img {
                   5094:   vertical-align: bottom;
                   5095: }
                   5096: table.LC_course_group_status {
                   5097:   margin: 20px;
                   5098: }
                   5099: table.LC_status_selector td {
                   5100:   vertical-align: top;
                   5101:   text-align: center;
1.424     albertel 5102:   padding: 4px;
                   5103: }
                   5104: table.LC_descriptive_input td.LC_description {
                   5105:   vertical-align: top;
                   5106:   text-align: right;
                   5107:   font-weight: bold;
1.423     albertel 5108: }
1.599     albertel 5109: div.LC_feedback_link {
1.616     albertel 5110:   clear: both;
1.599     albertel 5111:   background: white;
                   5112:   width: 100%;  
1.489     raeburn  5113: }
                   5114: span.LC_feedback_link {
1.599     albertel 5115:   background: $feedback_link_bg;
                   5116:   font-size: larger;
                   5117: }
                   5118: span.LC_message_link {
                   5119:   background: $feedback_link_bg;
                   5120:   font-size: larger;
                   5121:   position: absolute;
                   5122:   right: 1em;
1.489     raeburn  5123: }
1.421     albertel 5124: 
1.515     albertel 5125: table.LC_prior_tries {
1.524     albertel 5126:   border: 1px solid #000000;
                   5127:   border-collapse: separate;
                   5128:   border-spacing: 1px;
1.515     albertel 5129: }
1.523     albertel 5130: 
1.515     albertel 5131: table.LC_prior_tries td {
1.524     albertel 5132:   padding: 2px;
1.515     albertel 5133: }
1.523     albertel 5134: 
                   5135: .LC_answer_correct {
                   5136:   background: #AAFFAA;
                   5137:   color: black;
                   5138: }
                   5139: .LC_answer_charged_try {
                   5140:   background: #FFAAAA ! important;
                   5141:   color: black;
                   5142: }
                   5143: .LC_answer_not_charged_try, 
                   5144: .LC_answer_no_grade,
                   5145: .LC_answer_late {
                   5146:   background: #FFFFAA;
                   5147:   color: black;
                   5148: }
                   5149: .LC_answer_previous {
                   5150:   background: #AAAAFF;
                   5151:   color: black;
                   5152: }
                   5153: .LC_answer_no_message {
                   5154:   background: #FFFFFF;
                   5155:   color: black;
                   5156: }
                   5157: .LC_answer_unknown {
                   5158:   background: orange;
                   5159:   color: black;
                   5160: }
                   5161: 
                   5162: 
1.529     albertel 5163: span.LC_prior_numerical,
                   5164: span.LC_prior_string,
                   5165: span.LC_prior_custom,
                   5166: span.LC_prior_reaction,
                   5167: span.LC_prior_math {
1.523     albertel 5168:   font-family: monospace;
                   5169:   white-space: pre;
                   5170: }
                   5171: 
1.525     albertel 5172: span.LC_prior_string {
                   5173:   font-family: monospace;
                   5174:   white-space: pre;
                   5175: }
                   5176: 
1.523     albertel 5177: table.LC_prior_option {
                   5178:   width: 100%;
                   5179:   border-collapse: collapse;
                   5180: }
1.528     albertel 5181: table.LC_prior_rank, table.LC_prior_match {
                   5182:   border-collapse: collapse;
                   5183: }
                   5184: table.LC_prior_option tr td,
                   5185: table.LC_prior_rank tr td,
                   5186: table.LC_prior_match tr td {
1.524     albertel 5187:   border: 1px solid #000000;
1.515     albertel 5188: }
                   5189: 
1.519     raeburn  5190: span.LC_nobreak {
1.544     albertel 5191:   white-space: nowrap;
1.519     raeburn  5192: }
                   5193: 
1.576     raeburn  5194: span.LC_cusr_emph {
                   5195:   font-style: italic;
                   5196: }
                   5197: 
1.633     raeburn  5198: span.LC_cusr_subheading {
                   5199:   font-weight: normal;
                   5200:   font-size: 85%;
                   5201: }
                   5202: 
1.545     albertel 5203: table.LC_docs_documents {
                   5204:   background: #BBBBBB;
1.547     albertel 5205:   border-width: 0px;
1.545     albertel 5206:   border-collapse: collapse;
                   5207: }
                   5208: 
                   5209: table.LC_docs_documents td.LC_docs_document {
                   5210:   border: 2px solid black;
                   5211:   padding: 4px;
                   5212: }
                   5213: 
                   5214: .LC_docs_course_commands div {
                   5215:   float: left;
                   5216:   border: 4px solid #AAAAAA;
                   5217:   padding: 4px;
                   5218:   background: #DDDDCC;
                   5219: }
                   5220: 
                   5221: .LC_docs_entry_move {
                   5222:   border: 0px;
                   5223:   border-collapse: collapse;
1.544     albertel 5224: }
                   5225: 
1.545     albertel 5226: .LC_docs_entry_move td {
                   5227:   border: 2px solid #BBBBBB;
                   5228:   background: #DDDDDD;
                   5229: }
                   5230: 
                   5231: .LC_docs_editor td.LC_docs_entry_commands {
                   5232:   background: #DDDDDD;
                   5233:   font-size: x-small;
                   5234: }
1.544     albertel 5235: .LC_docs_copy {
1.545     albertel 5236:   color: #000099;
1.544     albertel 5237: }
                   5238: .LC_docs_cut {
1.545     albertel 5239:   color: #550044;
1.544     albertel 5240: }
                   5241: .LC_docs_rename {
1.545     albertel 5242:   color: #009900;
1.544     albertel 5243: }
                   5244: .LC_docs_remove {
1.545     albertel 5245:   color: #990000;
                   5246: }
                   5247: 
1.547     albertel 5248: .LC_docs_reinit_warn,
                   5249: .LC_docs_ext_edit {
                   5250:   font-size: x-small;
                   5251: }
                   5252: 
1.545     albertel 5253: .LC_docs_editor td.LC_docs_entry_title,
                   5254: .LC_docs_editor td.LC_docs_entry_icon {
                   5255:   background: #FFFFBB;
                   5256: }
                   5257: .LC_docs_editor td.LC_docs_entry_parameter {
                   5258:   background: #BBBBFF;
                   5259:   font-size: x-small;
                   5260:   white-space: nowrap;
                   5261: }
                   5262: 
                   5263: table.LC_docs_adddocs td,
                   5264: table.LC_docs_adddocs th {
                   5265:   border: 1px solid #BBBBBB;
                   5266:   padding: 4px;
                   5267:   background: #DDDDDD;
1.543     albertel 5268: }
                   5269: 
1.584     albertel 5270: table.LC_sty_begin {
                   5271:   background: #BBFFBB;
                   5272: }
                   5273: table.LC_sty_end {
                   5274:   background: #FFBBBB;
                   5275: }
                   5276: 
1.589     raeburn  5277: table.LC_double_column {
                   5278:   border-width: 0px;
                   5279:   border-collapse: collapse;
                   5280:   width: 100%;
                   5281:   padding: 2px;
                   5282: }
                   5283: 
                   5284: table.LC_double_column tr td.LC_left_col {
1.590     raeburn  5285:   top: 2px;
1.589     raeburn  5286:   left: 2px;
                   5287:   width: 47%;
                   5288:   vertical-align: top;
                   5289: }
                   5290: 
                   5291: table.LC_double_column tr td.LC_right_col {
                   5292:   top: 2px;
                   5293:   right: 2px; 
                   5294:   width: 47%;
                   5295:   vertical-align: top;
                   5296: }
                   5297: 
1.594     raeburn  5298: span.LC_role_level {
                   5299:   font-weight: bold;
                   5300: }
                   5301: 
1.591     raeburn  5302: div.LC_left_float {
                   5303:   float: left;
                   5304:   padding-right: 5%;
1.597     albertel 5305:   padding-bottom: 4px;
1.591     raeburn  5306: }
                   5307: 
                   5308: div.LC_clear_float_header {
1.597     albertel 5309:   padding-bottom: 2px;
1.591     raeburn  5310: }
                   5311: 
                   5312: div.LC_clear_float_footer {
1.597     albertel 5313:   padding-top: 10px;
1.591     raeburn  5314:   clear: both;
                   5315: }
                   5316: 
1.597     albertel 5317: 
                   5318: div.LC_grade_show_user {
                   5319:   margin-top: 20px;
                   5320:   border: 1px solid black;
                   5321: }
                   5322: div.LC_grade_user_name {
                   5323:   background: #DDDDEE;
                   5324:   border-bottom: 1px solid black;
1.705     tempelho 5325:   font-weight: bold;
                   5326:   font-size: large;
1.597     albertel 5327: }
                   5328: div.LC_grade_show_user_odd_row div.LC_grade_user_name {
                   5329:   background: #DDEEDD;
                   5330: }
                   5331: 
                   5332: div.LC_grade_show_problem,
                   5333: div.LC_grade_submissions,
                   5334: div.LC_grade_message_center,
                   5335: div.LC_grade_info_links,
                   5336: div.LC_grade_assign {
                   5337:   margin: 5px;
                   5338:   width: 99%;
                   5339:   background: #FFFFFF;
                   5340: }
                   5341: div.LC_grade_show_problem_header,
                   5342: div.LC_grade_submissions_header,
                   5343: div.LC_grade_message_center_header,
                   5344: div.LC_grade_assign_header {
1.705     tempelho 5345:   font-weight: bold;
                   5346:   font-size: large;
1.597     albertel 5347: }
                   5348: div.LC_grade_show_problem_problem,
                   5349: div.LC_grade_submissions_body,
                   5350: div.LC_grade_message_center_body,
                   5351: div.LC_grade_assign_body {
                   5352:   border: 1px solid black;
                   5353:   width: 99%;
                   5354:   background: #FFFFFF;
                   5355: }
1.598     albertel 5356: span.LC_grade_check_note {
1.705     tempelho 5357:   font-weight: normal;
                   5358:   font-size: medium;
1.598     albertel 5359:   display: inline;
                   5360:   position: absolute;
                   5361:   right: 1em;
                   5362: }
1.597     albertel 5363: 
1.613     albertel 5364: table.LC_scantron_action {
                   5365:   width: 100%;
                   5366: }
                   5367: table.LC_scantron_action tr th {
1.698     harmsja  5368:   font-weight:bold;
                   5369:   font-style:normal;
1.613     albertel 5370: }
1.698     harmsja  5371: .LC_edit_problem_header, 
1.614     albertel 5372: div.LC_edit_problem_footer {
1.705     tempelho 5373:   font-weight: normal;
                   5374:   font-size:  medium;
1.602     albertel 5375:   margin: 2px;
1.600     albertel 5376: }
                   5377: div.LC_edit_problem_header,
1.602     albertel 5378: div.LC_edit_problem_header div,
1.614     albertel 5379: div.LC_edit_problem_footer,
                   5380: div.LC_edit_problem_footer div,
1.602     albertel 5381: div.LC_edit_problem_editxml_header,
                   5382: div.LC_edit_problem_editxml_header div {
1.600     albertel 5383:   margin-top: 5px;
                   5384: }
1.602     albertel 5385: div.LC_edit_problem_header_edit_row {
                   5386:   background: $tabbg;
                   5387:   padding: 3px;
                   5388:   margin-bottom: 5px;
                   5389: }
1.600     albertel 5390: div.LC_edit_problem_header_title {
1.705     tempelho 5391:   font-weight: bold;
                   5392:   font-size: larger;
1.602     albertel 5393:   background: $tabbg;
                   5394:   padding: 3px;
                   5395: }
                   5396: table.LC_edit_problem_header_title {
1.705     tempelho 5397:   font-size: larger;
                   5398:   font-weight:  bold;
1.602     albertel 5399:   width: 100%;
                   5400:   border-color: $pgbg;
                   5401:   border-style: solid;
                   5402:   border-width: $border;
                   5403: 
1.600     albertel 5404:   background: $tabbg;
1.602     albertel 5405:   border-collapse: collapse;
                   5406:   padding: 0px
                   5407: }
                   5408: 
                   5409: div.LC_edit_problem_discards {
                   5410:   float: left;
                   5411:   padding-bottom: 5px;
                   5412: }
                   5413: div.LC_edit_problem_saves {
                   5414:   float: right;
                   5415:   padding-bottom: 5px;
1.600     albertel 5416: }
                   5417: hr.LC_edit_problem_divide {
1.602     albertel 5418:   clear: both;
1.600     albertel 5419:   color: $tabbg;
                   5420:   background-color: $tabbg;
                   5421:   height: 3px;
                   5422:   border: 0px;
                   5423: }
1.679     riegler  5424: img.stift{
1.678     riegler  5425:   border-width:0;
1.679     riegler  5426:   vertical-align:middle;
1.677     riegler  5427: }
1.680     riegler  5428: 
1.681     riegler  5429: table#LC_mainmenu{
                   5430:  margin-top:10px;
                   5431:  width:80%;
                   5432: 
                   5433: }
                   5434: 
1.680     riegler  5435: table#LC_mainmenu td.LC_mainmenu_col_fieldset{
                   5436:   vertical-align: top;
                   5437:   width: 45%;
                   5438: }
                   5439: .LC_mainmenu_fieldset_category {
                   5440:   color: $font;
                   5441:   background: $pgbg;
                   5442:   font-family: $sans;
                   5443:   font-size: small;
                   5444:   font-weight: bold;
                   5445: }
                   5446: 
1.693     droeschl 5447: /* ---- Remove when done ----
                   5448: # The following styles is part of the redesign of LON-CAPA and are
                   5449: # subject to change during this project.
                   5450: # Don't rely on their current functionality as they might be 
                   5451: # changed or removed.
                   5452: # --------------------------*/
                   5453: 
1.698     harmsja  5454: a:hover,
                   5455: ol.smallMenu a:hover,
                   5456: ol#MenuBreadcrumbs a:hover,
                   5457: ul#TabMainMenuContent a:hover,
                   5458: .FormSectionClearButton input:hover{
                   5459: 	color:#BF2317;
                   5460:         text-decoration:none;
1.693     droeschl 5461: }
                   5462: 
                   5463: h1 { 
1.701     harmsja  5464: 	padding:5px 10px 5px 0px;
1.693     droeschl 5465: 	line-height:130%;
                   5466: }
1.698     harmsja  5467: 
1.693     droeschl 5468: h2,h3,h4,h5,h6
                   5469: {
                   5470: margin:5px 0px 5px 0px;
                   5471: line-height:130%;
                   5472: }
1.698     harmsja  5473: .hcell{
                   5474:         padding:3px 15px 3px 15px;
                   5475:         margin:0px;
1.703     harmsja  5476: 	background-color:$tabbg;
                   5477: 	border-bottom:solid 1px $lg_border_color;       
1.693     droeschl 5478: }
1.698     harmsja  5479: .noBorder {
                   5480:         border:0px;
                   5481: }
                   5482: /*
                   5483: .bgLightGrey { background:URL(images/TabMenuBG.png) repeat-x left top; }
                   5484: .bgLightGreyYellow {background-color:#EFECE0;}
                   5485: */
1.693     droeschl 5486: 
                   5487: 
1.698     harmsja  5488: /* Main Header with discription of Person, Course, etc. */
1.693     droeschl 5489: .HeadRight {
                   5490: 	text-align: right;
                   5491: 	float: right;
                   5492: 	margin: 0px;
                   5493: 	padding: 0px;
1.698     harmsja  5494:         right:0;
1.693     droeschl 5495:         position:absolute;
1.698     harmsja  5496:         overflow:hidden;
1.693     droeschl 5497: }
                   5498: 
1.698     harmsja  5499: p {
                   5500: 	padding: 10px;
                   5501: 
                   5502: }
                   5503: .FormSectionClearButton input {
                   5504:         background-color:transparent;
                   5505:         border:0px;
                   5506:         cursor:pointer;
                   5507:         text-decoration:underline;
1.693     droeschl 5508: }
                   5509: 
                   5510: 
1.698     harmsja  5511: dl,ul,div,fieldset {
                   5512: 	margin: 10px 10px 10px 0px;
1.693     droeschl 5513: 	overflow:hidden;
                   5514: }
1.698     harmsja  5515: ol.smallMenu {
                   5516: 	margin: 0px;
1.693     droeschl 5517: }
                   5518: 
1.698     harmsja  5519: ol.smallMenu li {
1.693     droeschl 5520: 	display: inline;
                   5521: 	padding: 5px 5px 0px 10px;
                   5522: 	vertical-align: top;
                   5523: }
                   5524: 
1.698     harmsja  5525: ol.smallMenu li img {
1.693     droeschl 5526: 	vertical-align: bottom;
                   5527: }
                   5528: 
1.698     harmsja  5529: ol.smallMenu a {
1.693     droeschl 5530: 	font-size: 90%;
                   5531: 	color: RGB(80, 80, 80);
                   5532: 	text-decoration: none;
                   5533: }
                   5534: 
1.698     harmsja  5535: ol#TabMainMenuContent {
1.693     droeschl 5536: 	
                   5537: 	margin: 0px 0px 10px 0px;
                   5538: 	padding: 0px;
                   5539: }
                   5540: 
1.698     harmsja  5541: ol#TabMainMenuContent li {
1.693     droeschl 5542: 	display: inline;
                   5543: 	vertical-align: bottom;
                   5544: 	border-bottom: solid 1px RGB(175, 175, 175);
                   5545: 	border-right: solid 1px RGB(175, 175, 175);
                   5546: 	padding: 5px 15px 5px 15px;
                   5547: 	margin-right:4px;
                   5548: 	line-height: 140%;
                   5549: 	font-weight: bold;
                   5550: 	overflow:hidden;
1.698     harmsja  5551: /*	background: RGB(211, 206, 205) URL(images/TabMenuBG.png) repeat-x left top;*/
1.693     droeschl 5552: }
                   5553: 
1.698     harmsja  5554: ol#TabMainMenuContent li a{
1.693     droeschl 5555: 	color: RGB(47, 47, 47);
                   5556: 	text-decoration: none;
                   5557: }
                   5558: 
1.698     harmsja  5559: ol#TabMainMenuContent div.columnSection {
1.693     droeschl 5560: 	margin-bottom: 0px;
                   5561: }
                   5562: 
1.698     harmsja  5563: ol#MenuBreadcrumbs, ol#PathBreadcrumbs {
1.693     droeschl 5564: 	border-top: solid 1px RGB(255, 255, 255);
                   5565: 	height: 20px;
                   5566: 	line-height: 20px;
                   5567: 	vertical-align: bottom;
                   5568: 	margin: 0px 0px 30px 0px;
                   5569: 	padding-left: 10px;
                   5570: 	list-style-position: inside;
1.698     harmsja  5571: /*	background: RGB(211, 206, 205) URL(images/TabMenuBG.png) repeat-x left
                   5572: 		top;*/
1.693     droeschl 5573: }
                   5574: 
1.698     harmsja  5575: ol#MenuBreadcrumbs li, ol#PathBreadcrumbs li {
                   5576: /*	background: url(images/pfeil_white.png) no-repeat left center;*/
1.693     droeschl 5577: 	display: inline;
                   5578: 	padding: 0px 0px 0px 10px;
                   5579: 	vertical-align: bottom;
                   5580: 	overflow:hidden;
                   5581: }
                   5582: 
1.698     harmsja  5583: ol#MenuBreadcrumbs li a {
1.693     droeschl 5584: 	text-decoration: none;
                   5585: 	font-size:90%;
                   5586: }
1.698     harmsja  5587: ol#PathBreadcrumbs li a{
                   5588: 	text-decoration:none;
                   5589: 	font-size:100%;
                   5590: 	font-weight:bold;
1.693     droeschl 5591: }
                   5592: 
1.698     harmsja  5593: .ContentBoxSpecial
1.693     droeschl 5594: {
1.701     harmsja  5595: 	border: solid 1px $lg_border_color;
1.698     harmsja  5596: }
                   5597: .ContentBox {
                   5598: 	padding:10px;
1.693     droeschl 5599: }
1.698     harmsja  5600: .PopUp
1.693     droeschl 5601: {
1.698     harmsja  5602: 	padding:10px;
                   5603: 	border-left:solid 1px $lg_border_color;
                   5604:  	border-top:solid 1px $lg_border_color;
                   5605: 	border-bottom:outset 1px $lg_border_color;
                   5606: 	border-right:outset 1px $lg_border_color;
                   5607: 	display:none;
                   5608: 	position:absolute;
                   5609: 	right:0;
                   5610: 	background-color:white;
                   5611: 	z-index:5;
1.693     droeschl 5612: }
                   5613: 
1.698     harmsja  5614: dl.ListStyleClean dt {
1.693     droeschl 5615: 	padding-right: 5px;
                   5616: 	display: table-header-group;
                   5617: }
                   5618: 
1.698     harmsja  5619: dl.ListStyleClean dd {
1.693     droeschl 5620: 	display: table-row;
                   5621: }
                   5622: 
                   5623: .ListStyleClean,
                   5624: .ListStyleSimple,
                   5625: .ListStyleNormal,
                   5626: .ListStyleNormal_Border,
                   5627: .ListStyleSpecial
                   5628: 	{
                   5629: 	/*display:block;	*/
                   5630: 	list-style-position: inside;
                   5631: 	list-style-type: none;
                   5632: 	overflow: hidden;
                   5633: 	padding: 0px;
                   5634: }
                   5635: 
                   5636: .ListStyleSimple li,
1.698     harmsja  5637: .ListStyleSimple dd,
1.693     droeschl 5638: .ListStyleNormal li,
1.698     harmsja  5639: .ListStyleNormal dd,
1.693     droeschl 5640: .ListStyleSpecial li,
1.698     harmsja  5641: .ListStyleSpecial dd
1.693     droeschl 5642: 	{
                   5643: 	margin: 0px;
                   5644: 	padding: 5px 5px 5px 10px;
                   5645: 	clear: both;
                   5646: }
                   5647: 
1.698     harmsja  5648: .ListStyleClean li,
                   5649: .ListStyleClean dd {
1.693     droeschl 5650: 	padding-top: 0px;
                   5651: 	padding-bottom: 0px;
                   5652: }
                   5653: 
1.698     harmsja  5654: .ListStyleSimple dd,
                   5655: .ListStyleSimple li{
                   5656: 	border-bottom: solid 1px $lg_border_color;
1.693     droeschl 5657: }
                   5658: 
1.698     harmsja  5659: .ListStyleSpecial li,
                   5660: .ListStyleSpecial dd {
1.693     droeschl 5661: 	list-style-type: none;
                   5662: 	background-color: RGB(220, 220, 220);
                   5663: 	margin-bottom: 4px;
                   5664: }
                   5665: 
1.698     harmsja  5666: table.SimpleTable {
                   5667: 	margin:5px;
                   5668: 	border:solid 1px $lg_border_color;
1.693     droeschl 5669: 	}
                   5670: 
1.698     harmsja  5671: table.SimpleTable tr {
                   5672: 	padding:0px;
                   5673: 	border:solid 1px $lg_border_color;
1.693     droeschl 5674: }
                   5675: table.SimpleTable thead{
1.698     harmsja  5676: 	 background:rgb(220,220,220);
1.693     droeschl 5677: }
                   5678: 
1.698     harmsja  5679: div.columnSection {
1.693     droeschl 5680: 	display: block;
                   5681: 	clear: both;
                   5682: 	overflow: hidden;
                   5683: 	margin:0px;
                   5684: }
                   5685: 
1.698     harmsja  5686: div.columnSection>* {
1.693     droeschl 5687: 	float: left;
                   5688: 	margin: 10px 20px 10px 0px;
                   5689: 	overflow:hidden;	
                   5690: }
1.698     harmsja  5691: div.columnSection > .ContentBox,
                   5692: div.columnSection > .ContentBoxSpecial
1.693     droeschl 5693: 	{
1.698     harmsja  5694: 	width: 400px;
1.693     droeschl 5695: 	
                   5696: }
                   5697: 
1.694     tempelho 5698: .LC_loginpage_container {
                   5699: 	text-align:left;
                   5700: 	margin : 0 auto;
                   5701: 	width:65%;
                   5702: 	padding: 10px;
                   5703: 	height: auto;
1.712   ! muellerd 5704: 	background-color:#FFFFFF;
1.694     tempelho 5705: 	border:1px solid #CCCCCC;
                   5706: }
                   5707: 
                   5708: 
                   5709: .LC_loginpage_loginContainer {
                   5710: 	float:left;
1.712   ! muellerd 5711: 	width: 182px;
        !          5712: 	border:1px solid #CCCCCC;
        !          5713: 	background-color:$loginbg;
1.694     tempelho 5714: }
                   5715: 
1.712   ! muellerd 5716: .LC_loginpage_loginContainer h1{
        !          5717: 	margin-top:0;
        !          5718: 	display:block;
        !          5719: 	background:$bgcol;
        !          5720: 	color:$textcol;
        !          5721: 	padding-left:5px;
        !          5722: }
1.694     tempelho 5723: .LC_loginpage_loginInfo {
                   5724: 	margin-left:20px;
                   5725: 	float:left;
                   5726: 	width:30%;
                   5727: 	border:1px solid #CCCCCC;
                   5728: 	padding:10px;
                   5729: }
                   5730: 
1.712   ! muellerd 5731: .LC_loginpage_loginDomain {
        !          5732: 	margin-right:20px;
        !          5733: 	width:20%;
        !          5734: 	float:left;
        !          5735: 	padding:10px;
        !          5736: }
        !          5737: 
1.694     tempelho 5738: .LC_loginpage_space {
                   5739: 	clear:both;
                   5740: 	margin-bottom:20px;
                   5741: 	border-bottom: 1px solid #CCCCCC;
                   5742: }
                   5743: 
                   5744: .LC_loginpage_fieldset{
                   5745: 	border: 1px solid #CCCCCC;
                   5746: 	margin: 0 auto;
                   5747: }
                   5748: 
                   5749: .LC_loginpage_legend{
                   5750: 	padding: 2px;
                   5751: 	margin: 0px;
                   5752: 	font-size:14px;
                   5753: 	font-weight:bold;
                   5754: }
                   5755: 
                   5756: 
1.343     albertel 5757: END
                   5758: }
                   5759: 
1.306     albertel 5760: =pod
                   5761: 
                   5762: =item * &headtag()
                   5763: 
                   5764: Returns a uniform footer for LON-CAPA web pages.
                   5765: 
1.307     albertel 5766: Inputs: $title - optional title for the head
                   5767:         $head_extra - optional extra HTML to put inside the <head>
1.315     albertel 5768:         $args - optional arguments
1.319     albertel 5769:             force_register - if is true call registerurl so the remote is 
                   5770:                              informed
1.415     albertel 5771:             redirect       -> array ref of
                   5772:                                    1- seconds before redirect occurs
                   5773:                                    2- url to redirect to
                   5774:                                    3- whether the side effect should occur
1.315     albertel 5775:                            (side effect of setting 
                   5776:                                $env{'internal.head.redirect'} to the url 
                   5777:                                redirected too)
1.352     albertel 5778:             domain         -> force to color decorate a page for a specific
                   5779:                                domain
                   5780:             function       -> force usage of a specific rolish color scheme
                   5781:             bgcolor        -> override the default page bgcolor
1.460     albertel 5782:             no_auto_mt_title
                   5783:                            -> prevent &mt()ing the title arg
1.464     albertel 5784: 
1.306     albertel 5785: =cut
                   5786: 
                   5787: sub headtag {
1.313     albertel 5788:     my ($title,$head_extra,$args) = @_;
1.306     albertel 5789:     
1.363     albertel 5790:     my $function = $args->{'function'} || &get_users_function();
                   5791:     my $domain   = $args->{'domain'}   || &determinedomain();
                   5792:     my $bgcolor  = $args->{'bgcolor'}  || &designparm($function.'.pgbg',$domain);
1.418     albertel 5793:     my $url = join(':',$env{'user.name'},$env{'user.domain'},
1.458     albertel 5794: 		   $Apache::lonnet::perlvar{'lonVersion'},
1.531     albertel 5795: 		   #time(),
1.418     albertel 5796: 		   $env{'environment.color.timestamp'},
1.363     albertel 5797: 		   $function,$domain,$bgcolor);
                   5798: 
1.369     www      5799:     $url = '/adm/css/'.&escape($url).'.css';
1.363     albertel 5800: 
1.308     albertel 5801:     my $result =
                   5802: 	'<head>'.
1.461     albertel 5803: 	&font_settings();
1.319     albertel 5804: 
1.461     albertel 5805:     if (!$args->{'frameset'}) {
                   5806: 	$result .= &Apache::lonhtmlcommon::htmlareaheaders();
                   5807:     }
1.319     albertel 5808:     if ($args->{'force_register'}) {
                   5809: 	$result .= &Apache::lonmenu::registerurl(1);
                   5810:     }
1.436     albertel 5811:     if (!$args->{'no_nav_bar'} 
                   5812: 	&& !$args->{'only_body'}
                   5813: 	&& !$args->{'frameset'}) {
                   5814: 	$result .= &help_menu_js();
                   5815:     }
1.319     albertel 5816: 
1.314     albertel 5817:     if (ref($args->{'redirect'})) {
1.414     albertel 5818: 	my ($time,$url,$inhibit_continue) = @{$args->{'redirect'}};
1.315     albertel 5819: 	$url = &Apache::lonenc::check_encrypt($url);
1.414     albertel 5820: 	if (!$inhibit_continue) {
                   5821: 	    $env{'internal.head.redirect'} = $url;
                   5822: 	}
1.313     albertel 5823: 	$result.=<<ADDMETA
                   5824: <meta http-equiv="pragma" content="no-cache" />
1.344     albertel 5825: <meta http-equiv="Refresh" content="$time; url=$url" />
1.313     albertel 5826: ADDMETA
                   5827:     }
1.306     albertel 5828:     if (!defined($title)) {
                   5829: 	$title = 'The LearningOnline Network with CAPA';
                   5830:     }
1.460     albertel 5831:     if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }
                   5832:     $result .= '<title> LON-CAPA '.$title.'</title>'
1.414     albertel 5833: 	.'<link rel="stylesheet" type="text/css" href="'.$url.'" />'
                   5834: 	.$head_extra;
1.306     albertel 5835:     return $result;
                   5836: }
                   5837: 
                   5838: =pod
                   5839: 
1.340     albertel 5840: =item * &font_settings()
                   5841: 
                   5842: Returns neccessary <meta> to set the proper encoding
                   5843: 
                   5844: Inputs: none
                   5845: 
                   5846: =cut
                   5847: 
                   5848: sub font_settings {
                   5849:     my $headerstring='';
1.647     www      5850:     if (!$env{'browser.mathml'} && $env{'browser.unicode'}) {
1.340     albertel 5851: 	$headerstring.=
                   5852: 	    '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
                   5853:     }
                   5854:     return $headerstring;
                   5855: }
                   5856: 
1.341     albertel 5857: =pod
                   5858: 
                   5859: =item * &xml_begin()
                   5860: 
                   5861: Returns the needed doctype and <html>
                   5862: 
                   5863: Inputs: none
                   5864: 
                   5865: =cut
                   5866: 
                   5867: sub xml_begin {
                   5868:     my $output='';
                   5869: 
1.592     albertel 5870:     if ($env{'internal.start_page'}==1) {
                   5871: 	&Apache::lonhtmlcommon::init_htmlareafields();
                   5872:     }
1.342     albertel 5873: 
1.341     albertel 5874:     if ($env{'browser.mathml'}) {
                   5875: 	$output='<?xml version="1.0"?>'
                   5876:             #.'<?xml-stylesheet type="text/css" href="/adm/MathML/mathml.css"?>'."\n"
                   5877: #            .'<!DOCTYPE html SYSTEM "/adm/MathML/mathml.dtd" '
                   5878:             
                   5879: #	    .'<!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">] >'
                   5880: 	    .'<!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">'
                   5881:             .'<html xmlns:math="http://www.w3.org/1998/Math/MathML" ' 
                   5882: 	    .'xmlns="http://www.w3.org/1999/xhtml">';
                   5883:     } else {
                   5884: 	$output='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html>';
                   5885:     }
                   5886:     return $output;
                   5887: }
1.340     albertel 5888: 
                   5889: =pod
                   5890: 
1.306     albertel 5891: =item * &endheadtag()
                   5892: 
                   5893: Returns a uniform </head> for LON-CAPA web pages.
                   5894: 
                   5895: Inputs: none
                   5896: 
                   5897: =cut
                   5898: 
                   5899: sub endheadtag {
                   5900:     return '</head>';
                   5901: }
                   5902: 
                   5903: =pod
                   5904: 
                   5905: =item * &head()
                   5906: 
                   5907: Returns a uniform complete <head>..</head> section for LON-CAPA web pages.
                   5908: 
1.648     raeburn  5909: Inputs:
                   5910: 
                   5911: =over 4
                   5912: 
                   5913: $title - optional title for the page
                   5914: 
                   5915: $head_extra - optional extra HTML to put inside the <head>
                   5916: 
                   5917: =back
1.405     albertel 5918: 
1.306     albertel 5919: =cut
                   5920: 
                   5921: sub head {
1.325     albertel 5922:     my ($title,$head_extra,$args) = @_;
                   5923:     return &headtag($title,$head_extra,$args).&endheadtag();
1.306     albertel 5924: }
                   5925: 
                   5926: =pod
                   5927: 
                   5928: =item * &start_page()
                   5929: 
                   5930: Returns a complete <html> .. <body> section for LON-CAPA web pages.
                   5931: 
1.648     raeburn  5932: Inputs:
                   5933: 
                   5934: =over 4
                   5935: 
                   5936: $title - optional title for the page
                   5937: 
                   5938: $head_extra - optional extra HTML to incude inside the <head>
                   5939: 
                   5940: $args - additional optional args supported are:
                   5941: 
                   5942: =over 8
                   5943: 
                   5944:              only_body      -> is true will set &bodytag() onlybodytag
1.317     albertel 5945:                                     arg on
1.648     raeburn  5946:              no_nav_bar     -> is true will set &bodytag() notopbar arg on
                   5947:              add_entries    -> additional attributes to add to the  <body>
                   5948:              domain         -> force to color decorate a page for a 
1.317     albertel 5949:                                     specific domain
1.648     raeburn  5950:              function       -> force usage of a specific rolish color
1.317     albertel 5951:                                     scheme
1.648     raeburn  5952:              redirect       -> see &headtag()
                   5953:              bgcolor        -> override the default page bg color
                   5954:              js_ready       -> return a string ready for being used in 
1.317     albertel 5955:                                     a javascript writeln
1.648     raeburn  5956:              html_encode    -> return a string ready for being used in 
1.320     albertel 5957:                                     a html attribute
1.648     raeburn  5958:              force_register -> if is true will turn on the &bodytag()
1.317     albertel 5959:                                     $forcereg arg
1.648     raeburn  5960:              body_title     -> alternate text to use instead of $title
1.326     albertel 5961:                                     in the title box that appears, this text
                   5962:                                     is not auto translated like the $title is
1.648     raeburn  5963:              frameset       -> if true will start with a <frameset>
1.330     albertel 5964:                                     rather than <body>
1.648     raeburn  5965:              no_title       -> if true the title bar won't be shown
                   5966:              skip_phases    -> hash ref of 
1.338     albertel 5967:                                     head -> skip the <html><head> generation
                   5968:                                     body -> skip all <body> generation
1.648     raeburn  5969:              no_inline_link -> if true and in remote mode, don't show the 
1.361     albertel 5970:                                     'Switch To Inline Menu' link
1.648     raeburn  5971:              no_auto_mt_title -> prevent &mt()ing the title arg
                   5972:              inherit_jsmath -> when creating popup window in a page,
                   5973:                                     should it have jsmath forced on by the
                   5974:                                     current page
1.361     albertel 5975: 
1.648     raeburn  5976: =back
1.460     albertel 5977: 
1.648     raeburn  5978: =back
1.562     albertel 5979: 
1.306     albertel 5980: =cut
                   5981: 
                   5982: sub start_page {
1.309     albertel 5983:     my ($title,$head_extra,$args) = @_;
1.318     albertel 5984:     #&Apache::lonnet::logthis("start_page ".join(':',caller(0)));
1.313     albertel 5985:     my %head_args;
1.352     albertel 5986:     foreach my $arg ('redirect','force_register','domain','function',
1.460     albertel 5987: 		     'bgcolor','frameset','no_nav_bar','only_body',
                   5988: 		     'no_auto_mt_title') {
1.319     albertel 5989: 	if (defined($args->{$arg})) {
1.324     raeburn  5990: 	    $head_args{$arg} = $args->{$arg};
1.319     albertel 5991: 	}
1.313     albertel 5992:     }
1.319     albertel 5993: 
1.315     albertel 5994:     $env{'internal.start_page'}++;
1.338     albertel 5995:     my $result;
                   5996:     if (! exists($args->{'skip_phases'}{'head'}) ) {
                   5997: 	$result.=
1.341     albertel 5998: 	    &xml_begin().
1.338     albertel 5999: 	    &headtag($title,$head_extra,\%head_args).&endheadtag();
                   6000:     }
                   6001:     
                   6002:     if (! exists($args->{'skip_phases'}{'body'}) ) {
                   6003: 	if ($args->{'frameset'}) {
                   6004: 	    my $attr_string = &make_attr_string($args->{'force_register'},
                   6005: 						$args->{'add_entries'});
                   6006: 	    $result .= "\n<frameset $attr_string>\n";
                   6007: 	} else {
                   6008: 	    $result .=
                   6009: 		&bodytag($title, 
                   6010: 			 $args->{'function'},       $args->{'add_entries'},
                   6011: 			 $args->{'only_body'},      $args->{'domain'},
                   6012: 			 $args->{'force_register'}, $args->{'body_title'},
                   6013: 			 $args->{'no_nav_bar'},     $args->{'bgcolor'},
1.460     albertel 6014: 			 $args->{'no_title'},       $args->{'no_inline_link'},
                   6015: 			 $args);
1.338     albertel 6016: 	}
1.330     albertel 6017:     }
1.338     albertel 6018: 
1.315     albertel 6019:     if ($args->{'js_ready'}) {
1.317     albertel 6020: 	$result = &js_ready($result);
1.315     albertel 6021:     }
1.320     albertel 6022:     if ($args->{'html_encode'}) {
                   6023: 	$result = &html_encode($result);
                   6024:     }
1.315     albertel 6025:     return $result;
1.306     albertel 6026: }
                   6027: 
1.330     albertel 6028: 
1.306     albertel 6029: =pod
                   6030: 
                   6031: =item * &head()
                   6032: 
                   6033: Returns a complete </body></html> section for LON-CAPA web pages.
                   6034: 
1.315     albertel 6035: Inputs:         $args - additional optional args supported are:
                   6036:                  js_ready     -> return a string ready for being used in 
                   6037:                                  a javascript writeln
1.320     albertel 6038:                  html_encode  -> return a string ready for being used in 
                   6039:                                  a html attribute
1.330     albertel 6040:                  frameset     -> if true will start with a <frameset>
                   6041:                                  rather than <body>
1.493     albertel 6042:                  dicsussion   -> if true will get discussion from
                   6043:                                   lonxml::xmlend
                   6044:                                  (you can pass the target and parser arguments
                   6045:                                   through optional 'target' and 'parser' args
                   6046:                                   to this routine)
1.306     albertel 6047: 
                   6048: =cut
                   6049: 
                   6050: sub end_page {
1.315     albertel 6051:     my ($args) = @_;
                   6052:     $env{'internal.end_page'}++;
1.330     albertel 6053:     my $result;
1.335     albertel 6054:     if ($args->{'discussion'}) {
                   6055: 	my ($target,$parser);
                   6056: 	if (ref($args->{'discussion'})) {
                   6057: 	    ($target,$parser) =($args->{'discussion'}{'target'},
                   6058: 				$args->{'discussion'}{'parser'});
                   6059: 	}
                   6060: 	$result .= &Apache::lonxml::xmlend($target,$parser);
                   6061:     }
                   6062: 
1.330     albertel 6063:     if ($args->{'frameset'}) {
                   6064: 	$result .= '</frameset>';
                   6065:     } else {
1.635     raeburn  6066: 	$result .= &endbodytag($args);
1.330     albertel 6067:     }
                   6068:     $result .= "\n</html>";
                   6069: 
1.315     albertel 6070:     if ($args->{'js_ready'}) {
1.317     albertel 6071: 	$result = &js_ready($result);
1.315     albertel 6072:     }
1.335     albertel 6073: 
1.320     albertel 6074:     if ($args->{'html_encode'}) {
                   6075: 	$result = &html_encode($result);
                   6076:     }
1.335     albertel 6077: 
1.315     albertel 6078:     return $result;
                   6079: }
                   6080: 
1.320     albertel 6081: sub html_encode {
                   6082:     my ($result) = @_;
                   6083: 
1.322     albertel 6084:     $result = &HTML::Entities::encode($result,'<>&"');
1.320     albertel 6085:     
                   6086:     return $result;
                   6087: }
1.317     albertel 6088: sub js_ready {
                   6089:     my ($result) = @_;
                   6090: 
1.323     albertel 6091:     $result =~ s/[\n\r]/ /xmsg;
                   6092:     $result =~ s/\\/\\\\/xmsg;
                   6093:     $result =~ s/'/\\'/xmsg;
1.372     albertel 6094:     $result =~ s{</}{<\\/}xmsg;
1.317     albertel 6095:     
                   6096:     return $result;
                   6097: }
                   6098: 
1.315     albertel 6099: sub validate_page {
                   6100:     if (  exists($env{'internal.start_page'})
1.316     albertel 6101: 	  &&     $env{'internal.start_page'} > 1) {
                   6102: 	&Apache::lonnet::logthis('start_page called multiple times '.
1.318     albertel 6103: 				 $env{'internal.start_page'}.' '.
1.316     albertel 6104: 				 $ENV{'request.filename'});
1.315     albertel 6105:     }
                   6106:     if (  exists($env{'internal.end_page'})
1.316     albertel 6107: 	  &&     $env{'internal.end_page'} > 1) {
                   6108: 	&Apache::lonnet::logthis('end_page called multiple times '.
1.318     albertel 6109: 				 $env{'internal.end_page'}.' '.
1.316     albertel 6110: 				 $env{'request.filename'});
1.315     albertel 6111:     }
                   6112:     if (     exists($env{'internal.start_page'})
                   6113: 	&& ! exists($env{'internal.end_page'})) {
1.316     albertel 6114: 	&Apache::lonnet::logthis('start_page called without end_page '.
                   6115: 				 $env{'request.filename'});
1.315     albertel 6116:     }
                   6117:     if (   ! exists($env{'internal.start_page'})
                   6118: 	&&   exists($env{'internal.end_page'})) {
1.316     albertel 6119: 	&Apache::lonnet::logthis('end_page called without start_page'.
                   6120: 				 $env{'request.filename'});
1.315     albertel 6121:     }
1.306     albertel 6122: }
1.315     albertel 6123: 
1.318     albertel 6124: sub simple_error_page {
                   6125:     my ($r,$title,$msg) = @_;
                   6126:     my $page =
                   6127: 	&Apache::loncommon::start_page($title).
                   6128: 	&mt($msg).
                   6129: 	&Apache::loncommon::end_page();
                   6130:     if (ref($r)) {
                   6131: 	$r->print($page);
1.327     albertel 6132: 	return;
1.318     albertel 6133:     }
                   6134:     return $page;
                   6135: }
1.347     albertel 6136: 
                   6137: {
1.610     albertel 6138:     my @row_count;
1.347     albertel 6139:     sub start_data_table {
1.422     albertel 6140: 	my ($add_class) = @_;
                   6141: 	my $css_class = (join(' ','LC_data_table',$add_class));
1.610     albertel 6142: 	unshift(@row_count,0);
1.422     albertel 6143: 	return '<table class="'.$css_class.'">'."\n";
1.347     albertel 6144:     }
                   6145: 
                   6146:     sub end_data_table {
1.610     albertel 6147: 	shift(@row_count);
1.389     albertel 6148: 	return '</table>'."\n";;
1.347     albertel 6149:     }
                   6150: 
                   6151:     sub start_data_table_row {
1.422     albertel 6152: 	my ($add_class) = @_;
1.610     albertel 6153: 	$row_count[0]++;
                   6154: 	my $css_class = ($row_count[0] % 2)?'LC_odd_row':'LC_even_row';
1.428     albertel 6155: 	$css_class = (join(' ',$css_class,$add_class));
1.422     albertel 6156: 	return  '<tr class="'.$css_class.'">'."\n";;
1.347     albertel 6157:     }
1.471     banghart 6158:     
                   6159:     sub continue_data_table_row {
                   6160: 	my ($add_class) = @_;
1.610     albertel 6161: 	my $css_class = ($row_count[0] % 2)?'LC_odd_row':'LC_even_row';
1.471     banghart 6162: 	$css_class = (join(' ',$css_class,$add_class));
                   6163: 	return  '<tr class="'.$css_class.'">'."\n";;
                   6164:     }
1.347     albertel 6165: 
                   6166:     sub end_data_table_row {
1.389     albertel 6167: 	return '</tr>'."\n";;
1.347     albertel 6168:     }
1.367     www      6169: 
1.421     albertel 6170:     sub start_data_table_empty_row {
1.707     bisitz   6171: #	$row_count[0]++;
1.421     albertel 6172: 	return  '<tr class="LC_empty_row" >'."\n";;
                   6173:     }
                   6174: 
                   6175:     sub end_data_table_empty_row {
                   6176: 	return '</tr>'."\n";;
                   6177:     }
                   6178: 
1.367     www      6179:     sub start_data_table_header_row {
1.389     albertel 6180: 	return  '<tr class="LC_header_row">'."\n";;
1.367     www      6181:     }
                   6182: 
                   6183:     sub end_data_table_header_row {
1.389     albertel 6184: 	return '</tr>'."\n";;
1.367     www      6185:     }
1.347     albertel 6186: }
                   6187: 
1.548     albertel 6188: =pod
                   6189: 
                   6190: =item * &inhibit_menu_check($arg)
                   6191: 
                   6192: Checks for a inhibitmenu state and generates output to preserve it
                   6193: 
                   6194: Inputs:         $arg - can be any of
                   6195:                      - undef - in which case the return value is a string 
                   6196:                                to add  into arguments list of a uri
                   6197:                      - 'input' - in which case the return value is a HTML
                   6198:                                  <form> <input> field of type hidden to
                   6199:                                  preserve the value
                   6200:                      - a url - in which case the return value is the url with
                   6201:                                the neccesary cgi args added to preserve the
                   6202:                                inhibitmenu state
                   6203:                      - a ref to a url - no return value, but the string is
                   6204:                                         updated to include the neccessary cgi
                   6205:                                         args to preserve the inhibitmenu state
                   6206: 
                   6207: =cut
                   6208: 
                   6209: sub inhibit_menu_check {
                   6210:     my ($arg) = @_;
                   6211:     &get_unprocessed_cgi($ENV{'QUERY_STRING'}, ['inhibitmenu']);
                   6212:     if ($arg eq 'input') {
                   6213: 	if ($env{'form.inhibitmenu'}) {
                   6214: 	    return '<input type="hidden" name="inhibitmenu" value="'.$env{'form.inhibitmenu'}.'" />';
                   6215: 	} else {
                   6216: 	    return
                   6217: 	}
                   6218:     }
                   6219:     if ($env{'form.inhibitmenu'}) {
                   6220: 	if (ref($arg)) {
                   6221: 	    $$arg .= '?inhibitmenu='.$env{'form.inhibitmenu'};
                   6222: 	} elsif ($arg eq '') {
                   6223: 	    $arg .= 'inhibitmenu='.$env{'form.inhibitmenu'};
                   6224: 	} else {
                   6225: 	    $arg .= '?inhibitmenu='.$env{'form.inhibitmenu'};
                   6226: 	}
                   6227:     }
                   6228:     if (!ref($arg)) {
                   6229: 	return $arg;
                   6230:     }
                   6231: }
                   6232: 
1.251     albertel 6233: ###############################################
1.182     matthew  6234: 
                   6235: =pod
                   6236: 
1.549     albertel 6237: =back
                   6238: 
                   6239: =head1 User Information Routines
                   6240: 
                   6241: =over 4
                   6242: 
1.405     albertel 6243: =item * &get_users_function()
1.182     matthew  6244: 
                   6245: Used by &bodytag to determine the current users primary role.
                   6246: Returns either 'student','coordinator','admin', or 'author'.
                   6247: 
                   6248: =cut
                   6249: 
                   6250: ###############################################
                   6251: sub get_users_function {
                   6252:     my $function = 'student';
1.258     albertel 6253:     if ($env{'request.role'}=~/^(cc|in|ta|ep)/) {
1.182     matthew  6254:         $function='coordinator';
                   6255:     }
1.258     albertel 6256:     if ($env{'request.role'}=~/^(su|dc|ad|li)/) {
1.182     matthew  6257:         $function='admin';
                   6258:     }
1.258     albertel 6259:     if (($env{'request.role'}=~/^(au|ca)/) ||
1.182     matthew  6260:         ($ENV{'REQUEST_URI'}=~/^(\/priv|\~)/)) {
                   6261:         $function='author';
                   6262:     }
                   6263:     return $function;
1.54      www      6264: }
1.99      www      6265: 
                   6266: ###############################################
                   6267: 
1.233     raeburn  6268: =pod
                   6269: 
1.542     raeburn  6270: =item * &check_user_status()
1.274     raeburn  6271: 
                   6272: Determines current status of supplied role for a
                   6273: specific user. Roles can be active, previous or future.
                   6274: 
                   6275: Inputs: 
                   6276: user's domain, user's username, course's domain,
1.375     raeburn  6277: course's number, optional section ID.
1.274     raeburn  6278: 
                   6279: Outputs:
                   6280: role status: active, previous or future. 
                   6281: 
                   6282: =cut
                   6283: 
                   6284: sub check_user_status {
1.412     raeburn  6285:     my ($udom,$uname,$cdom,$crs,$role,$sec) = @_;
1.274     raeburn  6286:     my %userinfo = &Apache::lonnet::dump('roles',$udom,$uname);
                   6287:     my @uroles = keys %userinfo;
                   6288:     my $srchstr;
                   6289:     my $active_chk = 'none';
1.412     raeburn  6290:     my $now = time;
1.274     raeburn  6291:     if (@uroles > 0) {
1.412     raeburn  6292:         if (($role eq 'cc') || ($sec eq '') || (!defined($sec))) {
1.274     raeburn  6293:             $srchstr = '/'.$cdom.'/'.$crs.'_'.$role;
                   6294:         } else {
1.412     raeburn  6295:             $srchstr = '/'.$cdom.'/'.$crs.'/'.$sec.'_'.$role;
                   6296:         }
                   6297:         if (grep/^\Q$srchstr\E$/,@uroles) {
1.274     raeburn  6298:             my $role_end = 0;
                   6299:             my $role_start = 0;
                   6300:             $active_chk = 'active';
1.412     raeburn  6301:             if ($userinfo{$srchstr} =~ m/^\Q$role\E_(\d+)/) {
                   6302:                 $role_end = $1;
                   6303:                 if ($userinfo{$srchstr} =~ m/^\Q$role\E_\Q$role_end\E_(\d+)$/) {
                   6304:                     $role_start = $1;
1.274     raeburn  6305:                 }
                   6306:             }
                   6307:             if ($role_start > 0) {
1.412     raeburn  6308:                 if ($now < $role_start) {
1.274     raeburn  6309:                     $active_chk = 'future';
                   6310:                 }
                   6311:             }
                   6312:             if ($role_end > 0) {
1.412     raeburn  6313:                 if ($now > $role_end) {
1.274     raeburn  6314:                     $active_chk = 'previous';
                   6315:                 }
                   6316:             }
                   6317:         }
                   6318:     }
                   6319:     return $active_chk;
                   6320: }
                   6321: 
                   6322: ###############################################
                   6323: 
                   6324: =pod
                   6325: 
1.405     albertel 6326: =item * &get_sections()
1.233     raeburn  6327: 
                   6328: Determines all the sections for a course including
                   6329: sections with students and sections containing other roles.
1.419     raeburn  6330: Incoming parameters: 
                   6331: 
                   6332: 1. domain
                   6333: 2. course number 
                   6334: 3. reference to array containing roles for which sections should 
                   6335: be gathered (optional).
                   6336: 4. reference to array containing status types for which sections 
                   6337: should be gathered (optional).
                   6338: 
                   6339: If the third argument is undefined, sections are gathered for any role. 
                   6340: If the fourth argument is undefined, sections are gathered for any status.
                   6341: Permissible values are 'active' or 'future' or 'previous'.
1.233     raeburn  6342:  
1.374     raeburn  6343: Returns section hash (keys are section IDs, values are
                   6344: number of users in each section), subject to the
1.419     raeburn  6345: optional roles filter, optional status filter 
1.233     raeburn  6346: 
                   6347: =cut
                   6348: 
                   6349: ###############################################
                   6350: sub get_sections {
1.419     raeburn  6351:     my ($cdom,$cnum,$possible_roles,$possible_status) = @_;
1.366     albertel 6352:     if (!defined($cdom) || !defined($cnum)) {
                   6353:         my $cid =  $env{'request.course.id'};
                   6354: 
                   6355: 	return if (!defined($cid));
                   6356: 
                   6357:         $cdom = $env{'course.'.$cid.'.domain'};
                   6358:         $cnum = $env{'course.'.$cid.'.num'};
                   6359:     }
                   6360: 
                   6361:     my %sectioncount;
1.419     raeburn  6362:     my $now = time;
1.240     albertel 6363: 
1.366     albertel 6364:     if (!defined($possible_roles) || (grep(/^st$/,@$possible_roles))) {
1.276     albertel 6365: 	my ($classlist) = &Apache::loncoursedata::get_classlist($cdom,$cnum);
1.240     albertel 6366: 	my $sec_index = &Apache::loncoursedata::CL_SECTION();
                   6367: 	my $status_index = &Apache::loncoursedata::CL_STATUS();
1.419     raeburn  6368:         my $start_index = &Apache::loncoursedata::CL_START();
                   6369:         my $end_index = &Apache::loncoursedata::CL_END();
                   6370:         my $status;
1.366     albertel 6371: 	while (my ($student,$data) = each(%$classlist)) {
1.419     raeburn  6372: 	    my ($section,$stu_status,$start,$end) = ($data->[$sec_index],
                   6373: 				                     $data->[$status_index],
                   6374:                                                      $data->[$start_index],
                   6375:                                                      $data->[$end_index]);
                   6376:             if ($stu_status eq 'Active') {
                   6377:                 $status = 'active';
                   6378:             } elsif ($end < $now) {
                   6379:                 $status = 'previous';
                   6380:             } elsif ($start > $now) {
                   6381:                 $status = 'future';
                   6382:             } 
                   6383: 	    if ($section ne '-1' && $section !~ /^\s*$/) {
                   6384:                 if ((!defined($possible_status)) || (($status ne '') && 
                   6385:                     (grep/^\Q$status\E$/,@{$possible_status}))) { 
                   6386: 		    $sectioncount{$section}++;
                   6387:                 }
1.240     albertel 6388: 	    }
                   6389: 	}
                   6390:     }
                   6391:     my %courseroles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   6392:     foreach my $user (sort(keys(%courseroles))) {
                   6393: 	if ($user !~ /^(\w{2})/) { next; }
                   6394: 	my ($role) = ($user =~ /^(\w{2})/);
                   6395: 	if ($possible_roles && !(grep(/^$role$/,@$possible_roles))) { next; }
1.419     raeburn  6396: 	my ($section,$status);
1.240     albertel 6397: 	if ($role eq 'cr' &&
                   6398: 	    $user =~ m-^$role/[^/]*/[^/]*/[^/]*:[^:]*:[^:]*:(\w+)-) {
                   6399: 	    $section=$1;
                   6400: 	}
                   6401: 	if ($user =~ /^$role:[^:]*:[^:]*:(\w+)/) { $section=$1; }
                   6402: 	if (!defined($section) || $section eq '-1') { next; }
1.419     raeburn  6403:         my ($end,$start) = ($courseroles{$user} =~ /^([^:]*):([^:]*)$/);
                   6404:         if ($end == -1 && $start == -1) {
                   6405:             next; #deleted role
                   6406:         }
                   6407:         if (!defined($possible_status)) { 
                   6408:             $sectioncount{$section}++;
                   6409:         } else {
                   6410:             if ((!$end || $end >= $now) && (!$start || $start <= $now)) {
                   6411:                 $status = 'active';
                   6412:             } elsif ($end < $now) {
                   6413:                 $status = 'future';
                   6414:             } elsif ($start > $now) {
                   6415:                 $status = 'previous';
                   6416:             }
                   6417:             if (($status ne '') && (grep/^\Q$status\E$/,@{$possible_status})) {
                   6418:                 $sectioncount{$section}++;
                   6419:             }
                   6420:         }
1.233     raeburn  6421:     }
1.366     albertel 6422:     return %sectioncount;
1.233     raeburn  6423: }
                   6424: 
1.274     raeburn  6425: ###############################################
1.294     raeburn  6426: 
                   6427: =pod
1.405     albertel 6428: 
                   6429: =item * &get_course_users()
                   6430: 
1.275     raeburn  6431: Retrieves usernames:domains for users in the specified course
                   6432: with specific role(s), and access status. 
                   6433: 
                   6434: Incoming parameters:
1.277     albertel 6435: 1. course domain
                   6436: 2. course number
                   6437: 3. access status: users must have - either active, 
1.275     raeburn  6438: previous, future, or all.
1.277     albertel 6439: 4. reference to array of permissible roles
1.288     raeburn  6440: 5. reference to array of section restrictions (optional)
                   6441: 6. reference to results object (hash of hashes).
                   6442: 7. reference to optional userdata hash
1.609     raeburn  6443: 8. reference to optional statushash
1.630     raeburn  6444: 9. flag if privileged users (except those set to unhide in
                   6445:    course settings) should be excluded    
1.609     raeburn  6446: Keys of top level results hash are roles.
1.275     raeburn  6447: Keys of inner hashes are username:domain, with 
                   6448: values set to access type.
1.288     raeburn  6449: Optional userdata hash returns an array with arguments in the 
                   6450: same order as loncoursedata::get_classlist() for student data.
                   6451: 
1.609     raeburn  6452: Optional statushash returns
                   6453: 
1.288     raeburn  6454: Entries for end, start, section and status are blank because
                   6455: of the possibility of multiple values for non-student roles.
                   6456: 
1.275     raeburn  6457: =cut
1.405     albertel 6458: 
1.275     raeburn  6459: ###############################################
1.405     albertel 6460: 
1.275     raeburn  6461: sub get_course_users {
1.630     raeburn  6462:     my ($cdom,$cnum,$types,$roles,$sections,$users,$userdata,$statushash,$hidepriv) = @_;
1.288     raeburn  6463:     my %idx = ();
1.419     raeburn  6464:     my %seclists;
1.288     raeburn  6465: 
                   6466:     $idx{udom} = &Apache::loncoursedata::CL_SDOM();
                   6467:     $idx{uname} =  &Apache::loncoursedata::CL_SNAME();
                   6468:     $idx{end} = &Apache::loncoursedata::CL_END();
                   6469:     $idx{start} = &Apache::loncoursedata::CL_START();
                   6470:     $idx{id} = &Apache::loncoursedata::CL_ID();
                   6471:     $idx{section} = &Apache::loncoursedata::CL_SECTION();
                   6472:     $idx{fullname} = &Apache::loncoursedata::CL_FULLNAME();
                   6473:     $idx{status} = &Apache::loncoursedata::CL_STATUS();
                   6474: 
1.290     albertel 6475:     if (grep(/^st$/,@{$roles})) {
1.276     albertel 6476:         my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist($cdom,$cnum);
1.278     raeburn  6477:         my $now = time;
1.277     albertel 6478:         foreach my $student (keys(%{$classlist})) {
1.288     raeburn  6479:             my $match = 0;
1.412     raeburn  6480:             my $secmatch = 0;
1.419     raeburn  6481:             my $section = $$classlist{$student}[$idx{section}];
1.609     raeburn  6482:             my $status = $$classlist{$student}[$idx{status}];
1.419     raeburn  6483:             if ($section eq '') {
                   6484:                 $section = 'none';
                   6485:             }
1.291     albertel 6486:             if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
1.420     albertel 6487:                 if (grep(/^all$/,@{$sections})) {
1.412     raeburn  6488:                     $secmatch = 1;
                   6489:                 } elsif ($$classlist{$student}[$idx{section}] eq '') {
1.420     albertel 6490:                     if (grep(/^none$/,@{$sections})) {
1.412     raeburn  6491:                         $secmatch = 1;
                   6492:                     }
                   6493:                 } else {  
1.419     raeburn  6494: 		    if (grep(/^\Q$section\E$/,@{$sections})) {
1.412     raeburn  6495: 		        $secmatch = 1;
                   6496:                     }
1.290     albertel 6497: 		}
1.412     raeburn  6498:                 if (!$secmatch) {
                   6499:                     next;
                   6500:                 }
1.419     raeburn  6501:             }
1.275     raeburn  6502:             if (defined($$types{'active'})) {
1.288     raeburn  6503:                 if ($$classlist{$student}[$idx{status}] eq 'Active') {
1.275     raeburn  6504:                     push(@{$$users{st}{$student}},'active');
1.288     raeburn  6505:                     $match = 1;
1.275     raeburn  6506:                 }
                   6507:             }
                   6508:             if (defined($$types{'previous'})) {
1.609     raeburn  6509:                 if ($$classlist{$student}[$idx{status}] eq 'Expired') {
1.275     raeburn  6510:                     push(@{$$users{st}{$student}},'previous');
1.288     raeburn  6511:                     $match = 1;
1.275     raeburn  6512:                 }
                   6513:             }
                   6514:             if (defined($$types{'future'})) {
1.609     raeburn  6515:                 if ($$classlist{$student}[$idx{status}] eq 'Future') {
1.275     raeburn  6516:                     push(@{$$users{st}{$student}},'future');
1.288     raeburn  6517:                     $match = 1;
1.275     raeburn  6518:                 }
                   6519:             }
1.609     raeburn  6520:             if ($match) {
                   6521:                 push(@{$seclists{$student}},$section);
                   6522:                 if (ref($userdata) eq 'HASH') {
                   6523:                     $$userdata{$student} = $$classlist{$student};
                   6524:                 }
                   6525:                 if (ref($statushash) eq 'HASH') {
                   6526:                     $statushash->{$student}{'st'}{$section} = $status;
                   6527:                 }
1.288     raeburn  6528:             }
1.275     raeburn  6529:         }
                   6530:     }
1.412     raeburn  6531:     if ((@{$roles} > 1) || ((@{$roles} == 1) && ($$roles[0] ne "st"))) {
1.439     raeburn  6532:         my %coursepersonnel = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   6533:         my $now = time;
1.609     raeburn  6534:         my %displaystatus = ( previous => 'Expired',
                   6535:                               active   => 'Active',
                   6536:                               future   => 'Future',
                   6537:                             );
1.630     raeburn  6538:         my %nothide;
                   6539:         if ($hidepriv) {
                   6540:             my %coursehash=&Apache::lonnet::coursedescription($cdom.'_'.$cnum);
                   6541:             foreach my $user (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
                   6542:                 if ($user !~ /:/) {
                   6543:                     $nothide{join(':',split(/[\@]/,$user))}=1;
                   6544:                 } else {
                   6545:                     $nothide{$user} = 1;
                   6546:                 }
                   6547:             }
                   6548:         }
1.439     raeburn  6549:         foreach my $person (sort(keys(%coursepersonnel))) {
1.288     raeburn  6550:             my $match = 0;
1.412     raeburn  6551:             my $secmatch = 0;
1.439     raeburn  6552:             my $status;
1.412     raeburn  6553:             my ($role,$user,$usec) = ($person =~ /^([^:]*):([^:]+:[^:]+):([^:]*)/);
1.275     raeburn  6554:             $user =~ s/:$//;
1.439     raeburn  6555:             my ($end,$start) = split(/:/,$coursepersonnel{$person});
                   6556:             if ($end == -1 || $start == -1) {
                   6557:                 next;
                   6558:             }
                   6559:             if (($role) && ((grep(/^\Q$role\E$/,@{$roles})) ||
                   6560:                 (grep(/^cr$/,@{$roles}) && $role =~ /^cr\//))) {
1.412     raeburn  6561:                 my ($uname,$udom) = split(/:/,$user);
                   6562:                 if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
1.420     albertel 6563:                     if (grep(/^all$/,@{$sections})) {
1.412     raeburn  6564:                         $secmatch = 1;
                   6565:                     } elsif ($usec eq '') {
1.420     albertel 6566:                         if (grep(/^none$/,@{$sections})) {
1.412     raeburn  6567:                             $secmatch = 1;
                   6568:                         }
                   6569:                     } else {
                   6570:                         if (grep(/^\Q$usec\E$/,@{$sections})) {
                   6571:                             $secmatch = 1;
                   6572:                         }
                   6573:                     }
                   6574:                     if (!$secmatch) {
                   6575:                         next;
                   6576:                     }
1.288     raeburn  6577:                 }
1.419     raeburn  6578:                 if ($usec eq '') {
                   6579:                     $usec = 'none';
                   6580:                 }
1.275     raeburn  6581:                 if ($uname ne '' && $udom ne '') {
1.630     raeburn  6582:                     if ($hidepriv) {
                   6583:                         if ((&Apache::lonnet::privileged($uname,$udom)) &&
                   6584:                             (!$nothide{$uname.':'.$udom})) {
                   6585:                             next;
                   6586:                         }
                   6587:                     }
1.503     raeburn  6588:                     if ($end > 0 && $end < $now) {
1.439     raeburn  6589:                         $status = 'previous';
                   6590:                     } elsif ($start > $now) {
                   6591:                         $status = 'future';
                   6592:                     } else {
                   6593:                         $status = 'active';
                   6594:                     }
1.277     albertel 6595:                     foreach my $type (keys(%{$types})) { 
1.275     raeburn  6596:                         if ($status eq $type) {
1.420     albertel 6597:                             if (!grep(/^\Q$type\E$/,@{$$users{$role}{$user}})) {
1.419     raeburn  6598:                                 push(@{$$users{$role}{$user}},$type);
                   6599:                             }
1.288     raeburn  6600:                             $match = 1;
                   6601:                         }
                   6602:                     }
1.419     raeburn  6603:                     if (($match) && (ref($userdata) eq 'HASH')) {
                   6604:                         if (!exists($$userdata{$uname.':'.$udom})) {
                   6605: 			    &get_user_info($udom,$uname,\%idx,$userdata);
                   6606:                         }
1.420     albertel 6607:                         if (!grep(/^\Q$usec\E$/,@{$seclists{$uname.':'.$udom}})) {
1.419     raeburn  6608:                             push(@{$seclists{$uname.':'.$udom}},$usec);
                   6609:                         }
1.609     raeburn  6610:                         if (ref($statushash) eq 'HASH') {
                   6611:                             $statushash->{$uname.':'.$udom}{$role}{$usec} = $displaystatus{$status};
                   6612:                         }
1.275     raeburn  6613:                     }
                   6614:                 }
                   6615:             }
                   6616:         }
1.290     albertel 6617:         if (grep(/^ow$/,@{$roles})) {
1.279     raeburn  6618:             if ((defined($cdom)) && (defined($cnum))) {
                   6619:                 my %csettings = &Apache::lonnet::get('environment',['internal.courseowner'],$cdom,$cnum);
                   6620:                 if ( defined($csettings{'internal.courseowner'}) ) {
                   6621:                     my $owner = $csettings{'internal.courseowner'};
1.609     raeburn  6622:                     next if ($owner eq '');
                   6623:                     my ($ownername,$ownerdom);
                   6624:                     if ($owner =~ /^([^:]+):([^:]+)$/) {
                   6625:                         $ownername = $1;
                   6626:                         $ownerdom = $2;
                   6627:                     } else {
                   6628:                         $ownername = $owner;
                   6629:                         $ownerdom = $cdom;
                   6630:                         $owner = $ownername.':'.$ownerdom;
1.439     raeburn  6631:                     }
                   6632:                     @{$$users{'ow'}{$owner}} = 'any';
1.290     albertel 6633:                     if (defined($userdata) && 
1.609     raeburn  6634: 			!exists($$userdata{$owner})) {
                   6635: 			&get_user_info($ownerdom,$ownername,\%idx,$userdata);
                   6636:                         if (!grep(/^none$/,@{$seclists{$owner}})) {
                   6637:                             push(@{$seclists{$owner}},'none');
                   6638:                         }
                   6639:                         if (ref($statushash) eq 'HASH') {
                   6640:                             $statushash->{$owner}{'ow'}{'none'} = 'Any';
1.419     raeburn  6641:                         }
1.290     albertel 6642: 		    }
1.279     raeburn  6643:                 }
                   6644:             }
                   6645:         }
1.419     raeburn  6646:         foreach my $user (keys(%seclists)) {
                   6647:             @{$seclists{$user}} = (sort {$a <=> $b} @{$seclists{$user}});
                   6648:             $$userdata{$user}[$idx{section}] = join(',',@{$seclists{$user}});
                   6649:         }
1.275     raeburn  6650:     }
                   6651:     return;
                   6652: }
                   6653: 
1.288     raeburn  6654: sub get_user_info {
                   6655:     my ($udom,$uname,$idx,$userdata) = @_;
1.289     albertel 6656:     $$userdata{$uname.':'.$udom}[$$idx{fullname}] = 
                   6657: 	&plainname($uname,$udom,'lastname');
1.291     albertel 6658:     $$userdata{$uname.':'.$udom}[$$idx{uname}] = $uname;
1.297     raeburn  6659:     $$userdata{$uname.':'.$udom}[$$idx{udom}] = $udom;
1.609     raeburn  6660:     my %idhash =  &Apache::lonnet::idrget($udom,($uname));
                   6661:     $$userdata{$uname.':'.$udom}[$$idx{id}] = $idhash{$uname}; 
1.288     raeburn  6662:     return;
                   6663: }
1.275     raeburn  6664: 
1.472     raeburn  6665: ###############################################
                   6666: 
                   6667: =pod
                   6668: 
                   6669: =item * &get_user_quota()
                   6670: 
                   6671: Retrieves quota assigned for storage of portfolio files for a user  
                   6672: 
                   6673: Incoming parameters:
                   6674: 1. user's username
                   6675: 2. user's domain
                   6676: 
                   6677: Returns:
1.536     raeburn  6678: 1. Disk quota (in Mb) assigned to student.
                   6679: 2. (Optional) Type of setting: custom or default
                   6680:    (individually assigned or default for user's 
                   6681:    institutional status).
                   6682: 3. (Optional) - User's institutional status (e.g., faculty, staff
                   6683:    or student - types as defined in localenroll::inst_usertypes 
                   6684:    for user's domain, which determines default quota for user.
                   6685: 4. (Optional) - Default quota which would apply to the user.
1.472     raeburn  6686: 
                   6687: If a value has been stored in the user's environment, 
1.536     raeburn  6688: it will return that, otherwise it returns the maximal default
                   6689: defined for the user's instituional status(es) in the domain.
1.472     raeburn  6690: 
                   6691: =cut
                   6692: 
                   6693: ###############################################
                   6694: 
                   6695: 
                   6696: sub get_user_quota {
                   6697:     my ($uname,$udom) = @_;
1.536     raeburn  6698:     my ($quota,$quotatype,$settingstatus,$defquota);
1.472     raeburn  6699:     if (!defined($udom)) {
                   6700:         $udom = $env{'user.domain'};
                   6701:     }
                   6702:     if (!defined($uname)) {
                   6703:         $uname = $env{'user.name'};
                   6704:     }
                   6705:     if (($udom eq '' || $uname eq '') ||
                   6706:         ($udom eq 'public') && ($uname eq 'public')) {
                   6707:         $quota = 0;
1.536     raeburn  6708:         $quotatype = 'default';
                   6709:         $defquota = 0; 
1.472     raeburn  6710:     } else {
1.536     raeburn  6711:         my $inststatus;
1.472     raeburn  6712:         if ($udom eq $env{'user.domain'} && $uname eq $env{'user.name'}) {
                   6713:             $quota = $env{'environment.portfolioquota'};
1.536     raeburn  6714:             $inststatus = $env{'environment.inststatus'};
1.472     raeburn  6715:         } else {
1.536     raeburn  6716:             my %userenv = 
                   6717:                 &Apache::lonnet::get('environment',['portfolioquota',
                   6718:                                      'inststatus'],$udom,$uname);
1.472     raeburn  6719:             my ($tmp) = keys(%userenv);
                   6720:             if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
                   6721:                 $quota = $userenv{'portfolioquota'};
1.536     raeburn  6722:                 $inststatus = $userenv{'inststatus'};
1.472     raeburn  6723:             } else {
                   6724:                 undef(%userenv);
                   6725:             }
                   6726:         }
1.536     raeburn  6727:         ($defquota,$settingstatus) = &default_quota($udom,$inststatus);
1.472     raeburn  6728:         if ($quota eq '') {
1.536     raeburn  6729:             $quota = $defquota;
                   6730:             $quotatype = 'default';
                   6731:         } else {
                   6732:             $quotatype = 'custom';
1.472     raeburn  6733:         }
                   6734:     }
1.536     raeburn  6735:     if (wantarray) {
                   6736:         return ($quota,$quotatype,$settingstatus,$defquota);
                   6737:     } else {
                   6738:         return $quota;
                   6739:     }
1.472     raeburn  6740: }
                   6741: 
                   6742: ###############################################
                   6743: 
                   6744: =pod
                   6745: 
                   6746: =item * &default_quota()
                   6747: 
1.536     raeburn  6748: Retrieves default quota assigned for storage of user portfolio files,
                   6749: given an (optional) user's institutional status.
1.472     raeburn  6750: 
                   6751: Incoming parameters:
                   6752: 1. domain
1.536     raeburn  6753: 2. (Optional) institutional status(es).  This is a : separated list of 
                   6754:    status types (e.g., faculty, staff, student etc.)
                   6755:    which apply to the user for whom the default is being retrieved.
                   6756:    If the institutional status string in undefined, the domain
                   6757:    default quota will be returned. 
1.472     raeburn  6758: 
                   6759: Returns:
                   6760: 1. Default disk quota (in Mb) for user portfolios in the domain.
1.536     raeburn  6761: 2. (Optional) institutional type which determined the value of the
                   6762:    default quota.
1.472     raeburn  6763: 
                   6764: If a value has been stored in the domain's configuration db,
                   6765: it will return that, otherwise it returns 20 (for backwards 
                   6766: compatibility with domains which have not set up a configuration
                   6767: db file; the original statically defined portfolio quota was 20 Mb). 
                   6768: 
1.536     raeburn  6769: If the user's status includes multiple types (e.g., staff and student),
                   6770: the largest default quota which applies to the user determines the
                   6771: default quota returned.
                   6772: 
1.472     raeburn  6773: =cut
                   6774: 
                   6775: ###############################################
                   6776: 
                   6777: 
                   6778: sub default_quota {
1.536     raeburn  6779:     my ($udom,$inststatus) = @_;
                   6780:     my ($defquota,$settingstatus);
                   6781:     my %quotahash = &Apache::lonnet::get_dom('configuration',
1.622     raeburn  6782:                                             ['quotas'],$udom);
                   6783:     if (ref($quotahash{'quotas'}) eq 'HASH') {
1.536     raeburn  6784:         if ($inststatus ne '') {
                   6785:             my @statuses = split(/:/,$inststatus);
                   6786:             foreach my $item (@statuses) {
1.711     raeburn  6787:                 if (ref($quotahash{'quotas'}{'defaultquota'}) eq 'HASH') {
                   6788:                     if ($quotahash{'quotas'}{'defaultquota'}{$item} ne '') {
                   6789:                         if ($defquota eq '') {
                   6790:                             $defquota = $quotahash{'quotas'}{'defaultquota'}{$item};
                   6791:                             $settingstatus = $item;
                   6792:                         } elsif ($quotahash{'quotas'}{'defaultquota'}{$item} > $defquota) {
                   6793:                             $defquota = $quotahash{'quotas'}{'defaultquota'}{$item};
                   6794:                             $settingstatus = $item;
                   6795:                         }
                   6796:                     }
                   6797:                 } else {
                   6798:                     if ($quotahash{'quotas'}{$item} ne '') {
                   6799:                         if ($defquota eq '') {
                   6800:                             $defquota = $quotahash{'quotas'}{$item};
                   6801:                             $settingstatus = $item;
                   6802:                         } elsif ($quotahash{'quotas'}{$item} > $defquota) {
                   6803:                             $defquota = $quotahash{'quotas'}{$item};
                   6804:                             $settingstatus = $item;
                   6805:                         }
1.536     raeburn  6806:                     }
                   6807:                 }
                   6808:             }
                   6809:         }
                   6810:         if ($defquota eq '') {
1.711     raeburn  6811:             if (ref($quotahash{'quotas'}{'defaultquota'}) eq 'HASH') {
                   6812:                 $defquota = $quotahash{'quotas'}{'defaultquota'}{'default'};
                   6813:             } else {
                   6814:                 $defquota = $quotahash{'quotas'}{'default'};
                   6815:             }
1.536     raeburn  6816:             $settingstatus = 'default';
                   6817:         }
                   6818:     } else {
                   6819:         $settingstatus = 'default';
                   6820:         $defquota = 20;
                   6821:     }
                   6822:     if (wantarray) {
                   6823:         return ($defquota,$settingstatus);
1.472     raeburn  6824:     } else {
1.536     raeburn  6825:         return $defquota;
1.472     raeburn  6826:     }
                   6827: }
                   6828: 
1.384     raeburn  6829: sub get_secgrprole_info {
                   6830:     my ($cdom,$cnum,$needroles,$type)  = @_;
                   6831:     my %sections_count = &get_sections($cdom,$cnum);
                   6832:     my @sections =  (sort {$a <=> $b} keys(%sections_count));
                   6833:     my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum);
                   6834:     my @groups = sort(keys(%curr_groups));
                   6835:     my $allroles = [];
                   6836:     my $rolehash;
                   6837:     my $accesshash = {
                   6838:                      active => 'Currently has access',
                   6839:                      future => 'Will have future access',
                   6840:                      previous => 'Previously had access',
                   6841:                   };
                   6842:     if ($needroles) {
                   6843:         $rolehash = {'all' => 'all'};
1.385     albertel 6844:         my %user_roles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   6845: 	if (&Apache::lonnet::error(%user_roles)) {
                   6846: 	    undef(%user_roles);
                   6847: 	}
                   6848:         foreach my $item (keys(%user_roles)) {
1.384     raeburn  6849:             my ($role)=split(/\:/,$item,2);
                   6850:             if ($role eq 'cr') { next; }
                   6851:             if ($role =~ /^cr/) {
                   6852:                 $$rolehash{$role} = (split('/',$role))[3];
                   6853:             } else {
                   6854:                 $$rolehash{$role} = &Apache::lonnet::plaintext($role,$type);
                   6855:             }
                   6856:         }
                   6857:         foreach my $key (sort(keys(%{$rolehash}))) {
                   6858:             push(@{$allroles},$key);
                   6859:         }
                   6860:         push (@{$allroles},'st');
                   6861:         $$rolehash{'st'} = &Apache::lonnet::plaintext('st',$type);
                   6862:     }
                   6863:     return (\@sections,\@groups,$allroles,$rolehash,$accesshash);
                   6864: }
                   6865: 
1.555     raeburn  6866: sub user_picker {
1.627     raeburn  6867:     my ($dom,$srch,$forcenewuser,$caller,$cancreate,$usertype) = @_;
1.555     raeburn  6868:     my $currdom = $dom;
                   6869:     my %curr_selected = (
                   6870:                         srchin => 'dom',
1.580     raeburn  6871:                         srchby => 'lastname',
1.555     raeburn  6872:                       );
                   6873:     my $srchterm;
1.625     raeburn  6874:     if ((ref($srch) eq 'HASH') && ($env{'form.origform'} ne 'crtusername')) {
1.555     raeburn  6875:         if ($srch->{'srchby'} ne '') {
                   6876:             $curr_selected{'srchby'} = $srch->{'srchby'};
                   6877:         }
                   6878:         if ($srch->{'srchin'} ne '') {
                   6879:             $curr_selected{'srchin'} = $srch->{'srchin'};
                   6880:         }
                   6881:         if ($srch->{'srchtype'} ne '') {
                   6882:             $curr_selected{'srchtype'} = $srch->{'srchtype'};
                   6883:         }
                   6884:         if ($srch->{'srchdomain'} ne '') {
                   6885:             $currdom = $srch->{'srchdomain'};
                   6886:         }
                   6887:         $srchterm = $srch->{'srchterm'};
                   6888:     }
                   6889:     my %lt=&Apache::lonlocal::texthash(
1.573     raeburn  6890:                     'usr'       => 'Search criteria',
1.563     raeburn  6891:                     'doma'      => 'Domain/institution to search',
1.558     albertel 6892:                     'uname'     => 'username',
                   6893:                     'lastname'  => 'last name',
1.555     raeburn  6894:                     'lastfirst' => 'last name, first name',
1.558     albertel 6895:                     'crs'       => 'in this course',
1.576     raeburn  6896:                     'dom'       => 'in selected LON-CAPA domain', 
1.558     albertel 6897:                     'alc'       => 'all LON-CAPA',
1.573     raeburn  6898:                     'instd'     => 'in institutional directory for selected domain',
1.558     albertel 6899:                     'exact'     => 'is',
                   6900:                     'contains'  => 'contains',
1.569     raeburn  6901:                     'begins'    => 'begins with',
1.571     raeburn  6902:                     'youm'      => "You must include some text to search for.",
                   6903:                     'thte'      => "The text you are searching for must contain at least two characters when using a 'begins' type search.",
                   6904:                     'thet'      => "The text you are searching for must contain at least three characters when using a 'contains' type search.",
                   6905:                     'yomc'      => "You must choose a domain when using an institutional directory search.",
                   6906:                     'ymcd'      => "You must choose a domain when using a domain search.",
                   6907:                     'whus'      => "When using searching by last,first you must include a comma as separator between last name and first name.",
                   6908:                     'whse'      => "When searching by last,first you must include at least one character in the first name.",
                   6909:                      'thfo'     => "The following need to be corrected before the search can be run:",
1.555     raeburn  6910:                                        );
1.563     raeburn  6911:     my $domform = &select_dom_form($currdom,'srchdomain',1,1);
                   6912:     my $srchinsel = ' <select name="srchin">';
1.555     raeburn  6913: 
                   6914:     my @srchins = ('crs','dom','alc','instd');
                   6915: 
                   6916:     foreach my $option (@srchins) {
                   6917:         # FIXME 'alc' option unavailable until 
                   6918:         #       loncreateuser::print_user_query_page()
                   6919:         #       has been completed.
                   6920:         next if ($option eq 'alc');
                   6921:         next if ($option eq 'crs' && !$env{'request.course.id'});
1.563     raeburn  6922:         if ($curr_selected{'srchin'} eq $option) {
                   6923:             $srchinsel .= ' 
                   6924:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   6925:         } else {
                   6926:             $srchinsel .= '
                   6927:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   6928:         }
1.555     raeburn  6929:     }
1.563     raeburn  6930:     $srchinsel .= "\n  </select>\n";
1.555     raeburn  6931: 
                   6932:     my $srchbysel =  ' <select name="srchby">';
1.580     raeburn  6933:     foreach my $option ('lastname','lastfirst','uname') {
1.555     raeburn  6934:         if ($curr_selected{'srchby'} eq $option) {
                   6935:             $srchbysel .= '
                   6936:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   6937:         } else {
                   6938:             $srchbysel .= '
                   6939:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   6940:          }
                   6941:     }
                   6942:     $srchbysel .= "\n  </select>\n";
                   6943: 
                   6944:     my $srchtypesel = ' <select name="srchtype">';
1.580     raeburn  6945:     foreach my $option ('begins','contains','exact') {
1.555     raeburn  6946:         if ($curr_selected{'srchtype'} eq $option) {
                   6947:             $srchtypesel .= '
                   6948:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   6949:         } else {
                   6950:             $srchtypesel .= '
                   6951:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   6952:         }
                   6953:     }
                   6954:     $srchtypesel .= "\n  </select>\n";
                   6955: 
1.558     albertel 6956:     my ($newuserscript,$new_user_create);
1.556     raeburn  6957: 
                   6958:     if ($forcenewuser) {
1.576     raeburn  6959:         if (ref($srch) eq 'HASH') {
                   6960:             if ($srch->{'srchby'} eq 'uname' && $srch->{'srchtype'} eq 'exact' && $srch->{'srchin'} eq 'dom' && $srch->{'srchdomain'} eq $env{'request.role.domain'}) {
1.627     raeburn  6961:                 if ($cancreate) {
                   6962:                     $new_user_create = '<p> <input type="submit" name="forcenew" value="'.&HTML::Entities::encode(&mt('Make new user "[_1]"',$srchterm),'<>&"').'" onclick="javascript:setSearch(\'1\','.$caller.');" /> </p>';
                   6963:                 } else {
                   6964:                     my $helplink = ' href="javascript:helpMenu('."'display'".')"';
                   6965:                     my %usertypetext = (
                   6966:                         official   => 'institutional',
                   6967:                         unofficial => 'non-institutional',
                   6968:                     );
                   6969:                     $new_user_create = '<br /><span class="LC_warning">'.&mt("You are not authorized to create new $usertypetext{$usertype} users in this domain.").' '.&mt('Contact the <a[_1]>helpdesk</a> for assistance.',$helplink).'</span><br /><br />';
                   6970:                 }
1.576     raeburn  6971:             }
                   6972:         }
                   6973: 
1.556     raeburn  6974:         $newuserscript = <<"ENDSCRIPT";
                   6975: 
1.570     raeburn  6976: function setSearch(createnew,callingForm) {
1.556     raeburn  6977:     if (createnew == 1) {
1.570     raeburn  6978:         for (var i=0; i<callingForm.srchby.length; i++) {
                   6979:             if (callingForm.srchby.options[i].value == 'uname') {
                   6980:                 callingForm.srchby.selectedIndex = i;
1.556     raeburn  6981:             }
                   6982:         }
1.570     raeburn  6983:         for (var i=0; i<callingForm.srchin.length; i++) {
                   6984:             if ( callingForm.srchin.options[i].value == 'dom') {
                   6985: 		callingForm.srchin.selectedIndex = i;
1.556     raeburn  6986:             }
                   6987:         }
1.570     raeburn  6988:         for (var i=0; i<callingForm.srchtype.length; i++) {
                   6989:             if (callingForm.srchtype.options[i].value == 'exact') {
                   6990:                 callingForm.srchtype.selectedIndex = i;
1.556     raeburn  6991:             }
                   6992:         }
1.570     raeburn  6993:         for (var i=0; i<callingForm.srchdomain.length; i++) {
                   6994:             if (callingForm.srchdomain.options[i].value == '$env{'request.role.domain'}') {
                   6995:                 callingForm.srchdomain.selectedIndex = i;
1.556     raeburn  6996:             }
                   6997:         }
                   6998:     }
                   6999: }
                   7000: ENDSCRIPT
1.558     albertel 7001: 
1.556     raeburn  7002:     }
                   7003: 
1.555     raeburn  7004:     my $output = <<"END_BLOCK";
1.556     raeburn  7005: <script type="text/javascript">
1.570     raeburn  7006: function validateEntry(callingForm) {
1.558     albertel 7007: 
1.556     raeburn  7008:     var checkok = 1;
1.558     albertel 7009:     var srchin;
1.570     raeburn  7010:     for (var i=0; i<callingForm.srchin.length; i++) {
                   7011: 	if ( callingForm.srchin[i].checked ) {
                   7012: 	    srchin = callingForm.srchin[i].value;
1.558     albertel 7013: 	}
                   7014:     }
                   7015: 
1.570     raeburn  7016:     var srchtype = callingForm.srchtype.options[callingForm.srchtype.selectedIndex].value;
                   7017:     var srchby = callingForm.srchby.options[callingForm.srchby.selectedIndex].value;
                   7018:     var srchdomain = callingForm.srchdomain.options[callingForm.srchdomain.selectedIndex].value;
                   7019:     var srchterm =  callingForm.srchterm.value;
                   7020:     var srchin = callingForm.srchin.options[callingForm.srchin.selectedIndex].value;
1.556     raeburn  7021:     var msg = "";
                   7022: 
                   7023:     if (srchterm == "") {
                   7024:         checkok = 0;
1.571     raeburn  7025:         msg += "$lt{'youm'}\\n";
1.556     raeburn  7026:     }
                   7027: 
1.569     raeburn  7028:     if (srchtype== 'begins') {
                   7029:         if (srchterm.length < 2) {
                   7030:             checkok = 0;
1.571     raeburn  7031:             msg += "$lt{'thte'}\\n";
1.569     raeburn  7032:         }
                   7033:     }
                   7034: 
1.556     raeburn  7035:     if (srchtype== 'contains') {
                   7036:         if (srchterm.length < 3) {
                   7037:             checkok = 0;
1.571     raeburn  7038:             msg += "$lt{'thet'}\\n";
1.556     raeburn  7039:         }
                   7040:     }
                   7041:     if (srchin == 'instd') {
                   7042:         if (srchdomain == '') {
                   7043:             checkok = 0;
1.571     raeburn  7044:             msg += "$lt{'yomc'}\\n";
1.556     raeburn  7045:         }
                   7046:     }
                   7047:     if (srchin == 'dom') {
                   7048:         if (srchdomain == '') {
                   7049:             checkok = 0;
1.571     raeburn  7050:             msg += "$lt{'ymcd'}\\n";
1.556     raeburn  7051:         }
                   7052:     }
                   7053:     if (srchby == 'lastfirst') {
                   7054:         if (srchterm.indexOf(",") == -1) {
                   7055:             checkok = 0;
1.571     raeburn  7056:             msg += "$lt{'whus'}\\n";
1.556     raeburn  7057:         }
                   7058:         if (srchterm.indexOf(",") == srchterm.length -1) {
                   7059:             checkok = 0;
1.571     raeburn  7060:             msg += "$lt{'whse'}\\n";
1.556     raeburn  7061:         }
                   7062:     }
                   7063:     if (checkok == 0) {
1.571     raeburn  7064:         alert("$lt{'thfo'}\\n"+msg);
1.556     raeburn  7065:         return;
                   7066:     }
                   7067:     if (checkok == 1) {
1.570     raeburn  7068:         callingForm.submit();
1.556     raeburn  7069:     }
                   7070: }
                   7071: 
                   7072: $newuserscript
                   7073: 
                   7074: </script>
1.558     albertel 7075: 
                   7076: $new_user_create
                   7077: 
1.555     raeburn  7078: <table>
1.558     albertel 7079:  <tr>
1.573     raeburn  7080:   <td>$lt{'doma'}:</td>
                   7081:   <td>$domform</td>
                   7082:   </td>
                   7083:  </tr>
                   7084:  <tr>
                   7085:   <td>$lt{'usr'}:</td>
1.563     raeburn  7086:   <td>$srchbysel
                   7087:       $srchtypesel 
                   7088:       <input type="text" size="15" name="srchterm" value="$srchterm" />
1.564     albertel 7089:       $srchinsel 
1.563     raeburn  7090:   </td>
                   7091:  </tr>
1.555     raeburn  7092: </table>
                   7093: <br />
                   7094: END_BLOCK
1.558     albertel 7095: 
1.555     raeburn  7096:     return $output;
                   7097: }
                   7098: 
1.612     raeburn  7099: sub user_rule_check {
1.615     raeburn  7100:     my ($usershash,$checks,$alerts,$rulematch,$inst_results,$curr_rules,$got_rules) = @_;
1.612     raeburn  7101:     my $response;
                   7102:     if (ref($usershash) eq 'HASH') {
                   7103:         foreach my $user (keys(%{$usershash})) {
                   7104:             my ($uname,$udom) = split(/:/,$user);
                   7105:             next if ($udom eq '' || $uname eq '');
1.615     raeburn  7106:             my ($id,$newuser);
1.612     raeburn  7107:             if (ref($usershash->{$user}) eq 'HASH') {
1.615     raeburn  7108:                 $newuser = $usershash->{$user}->{'newuser'};
1.612     raeburn  7109:                 $id = $usershash->{$user}->{'id'};
                   7110:             }
                   7111:             my $inst_response;
                   7112:             if (ref($checks) eq 'HASH') {
                   7113:                 if (defined($checks->{'username'})) {
1.615     raeburn  7114:                     ($inst_response,%{$inst_results->{$user}}) = 
1.612     raeburn  7115:                         &Apache::lonnet::get_instuser($udom,$uname);
                   7116:                 } elsif (defined($checks->{'id'})) {
1.615     raeburn  7117:                     ($inst_response,%{$inst_results->{$user}}) =
1.612     raeburn  7118:                         &Apache::lonnet::get_instuser($udom,undef,$id);
                   7119:                 }
1.615     raeburn  7120:             } else {
                   7121:                 ($inst_response,%{$inst_results->{$user}}) =
                   7122:                     &Apache::lonnet::get_instuser($udom,$uname);
                   7123:                 return;
1.612     raeburn  7124:             }
1.615     raeburn  7125:             if (!$got_rules->{$udom}) {
1.612     raeburn  7126:                 my %domconfig = &Apache::lonnet::get_dom('configuration',
                   7127:                                                   ['usercreation'],$udom);
                   7128:                 if (ref($domconfig{'usercreation'}) eq 'HASH') {
1.615     raeburn  7129:                     foreach my $item ('username','id') {
1.612     raeburn  7130:                         if (ref($domconfig{'usercreation'}{$item.'_rule'}) eq 'ARRAY') {
                   7131:                             $$curr_rules{$udom}{$item} = 
                   7132:                                 $domconfig{'usercreation'}{$item.'_rule'};
1.585     raeburn  7133:                         }
                   7134:                     }
                   7135:                 }
1.615     raeburn  7136:                 $got_rules->{$udom} = 1;  
1.585     raeburn  7137:             }
1.612     raeburn  7138:             foreach my $item (keys(%{$checks})) {
                   7139:                 if (ref($$curr_rules{$udom}) eq 'HASH') {
                   7140:                     if (ref($$curr_rules{$udom}{$item}) eq 'ARRAY') {
                   7141:                         if (@{$$curr_rules{$udom}{$item}} > 0) {
                   7142:                             my %rule_check = &Apache::lonnet::inst_rulecheck($udom,$uname,$id,$item,$$curr_rules{$udom}{$item});
                   7143:                             foreach my $rule (@{$$curr_rules{$udom}{$item}}) {
                   7144:                                 if ($rule_check{$rule}) {
                   7145:                                     $$rulematch{$user}{$item} = $rule;
                   7146:                                     if ($inst_response eq 'ok') {
1.615     raeburn  7147:                                         if (ref($inst_results) eq 'HASH') {
                   7148:                                             if (ref($inst_results->{$user}) eq 'HASH') {
                   7149:                                                 if (keys(%{$inst_results->{$user}}) == 0) {
                   7150:                                                     $$alerts{$item}{$udom}{$uname} = 1;
                   7151:                                                 }
1.612     raeburn  7152:                                             }
                   7153:                                         }
1.615     raeburn  7154:                                     }
                   7155:                                     last;
1.585     raeburn  7156:                                 }
                   7157:                             }
                   7158:                         }
                   7159:                     }
                   7160:                 }
                   7161:             }
                   7162:         }
                   7163:     }
1.612     raeburn  7164:     return;
                   7165: }
                   7166: 
                   7167: sub user_rule_formats {
                   7168:     my ($domain,$domdesc,$curr_rules,$check) = @_;
                   7169:     my %text = ( 
                   7170:                  'username' => 'Usernames',
                   7171:                  'id'       => 'IDs',
                   7172:                );
                   7173:     my $output;
                   7174:     my ($rules,$ruleorder) = &Apache::lonnet::inst_userrules($domain,$check);
                   7175:     if ((ref($rules) eq 'HASH') && (ref($ruleorder) eq 'ARRAY')) {
                   7176:         if (@{$ruleorder} > 0) {
                   7177:             $output = '<br />'.&mt("$text{$check} with the following format(s) may <span class=\"LC_cusr_emph\">only</span> be used for verified users at [_1]:",$domdesc).' <ul>';
                   7178:             foreach my $rule (@{$ruleorder}) {
                   7179:                 if (ref($curr_rules) eq 'ARRAY') {
                   7180:                     if (grep(/^\Q$rule\E$/,@{$curr_rules})) {
                   7181:                         if (ref($rules->{$rule}) eq 'HASH') {
                   7182:                             $output .= '<li>'.$rules->{$rule}{'name'}.': '.
                   7183:                                         $rules->{$rule}{'desc'}.'</li>';
                   7184:                         }
                   7185:                     }
                   7186:                 }
                   7187:             }
                   7188:             $output .= '</ul>';
                   7189:         }
                   7190:     }
                   7191:     return $output;
                   7192: }
                   7193: 
                   7194: sub instrule_disallow_msg {
1.615     raeburn  7195:     my ($checkitem,$domdesc,$count,$mode) = @_;
1.612     raeburn  7196:     my $response;
                   7197:     my %text = (
                   7198:                   item   => 'username',
                   7199:                   items  => 'usernames',
                   7200:                   match  => 'matches',
                   7201:                   do     => 'does',
                   7202:                   action => 'a username',
                   7203:                   one    => 'one',
                   7204:                );
                   7205:     if ($count > 1) {
                   7206:         $text{'item'} = 'usernames';
                   7207:         $text{'match'} ='match';
                   7208:         $text{'do'} = 'do';
                   7209:         $text{'action'} = 'usernames',
                   7210:         $text{'one'} = 'ones';
                   7211:     }
                   7212:     if ($checkitem eq 'id') {
                   7213:         $text{'items'} = 'IDs';
                   7214:         $text{'item'} = 'ID';
                   7215:         $text{'action'} = 'an ID';
1.615     raeburn  7216:         if ($count > 1) {
                   7217:             $text{'item'} = 'IDs';
                   7218:             $text{'action'} = 'IDs';
                   7219:         }
1.612     raeburn  7220:     }
1.674     bisitz   7221:     $response = &mt("The $text{'item'} you chose $text{'match'} the format of $text{'items'} defined for [_1], but the $text{'item'} $text{'do'} not exist in the institutional directory.",'<span class="LC_cusr_emph">'.$domdesc.'</span>').'<br />';
1.615     raeburn  7222:     if ($mode eq 'upload') {
                   7223:         if ($checkitem eq 'username') {
                   7224:             $response .= &mt("You will need to modify your upload file so it will include $text{'action'} with a different format --  $text{'one'} that will not conflict with 'official' institutional $text{'items'}.");
                   7225:         } elsif ($checkitem eq 'id') {
1.674     bisitz   7226:             $response .= &mt("Either upload a file which includes $text{'action'} with a different format --  $text{'one'} that will not conflict with 'official' institutional $text{'items'}, or when associating fields with data columns, omit an association for the Student/Employee ID field.");
1.615     raeburn  7227:         }
1.669     raeburn  7228:     } elsif ($mode eq 'selfcreate') {
                   7229:         if ($checkitem eq 'id') {
                   7230:             $response .= &mt("You must either choose $text{'action'} with a different format --  $text{'one'} that will not conflict with 'official' institutional $text{'items'}, or leave the ID field blank.");
                   7231:         }
1.615     raeburn  7232:     } else {
                   7233:         if ($checkitem eq 'username') {
                   7234:             $response .= &mt("You must choose $text{'action'} with a different format --  $text{'one'} that will not conflict with 'official' institutional $text{'items'}.");
                   7235:         } elsif ($checkitem eq 'id') {
                   7236:             $response .= &mt("You must either choose $text{'action'} with a different format --  $text{'one'} that will not conflict with 'official' institutional $text{'items'}, or leave the ID field blank.");
                   7237:         }
1.612     raeburn  7238:     }
                   7239:     return $response;
1.585     raeburn  7240: }
                   7241: 
1.624     raeburn  7242: sub personal_data_fieldtitles {
                   7243:     my %fieldtitles = &Apache::lonlocal::texthash (
                   7244:                         id => 'Student/Employee ID',
                   7245:                         permanentemail => 'E-mail address',
                   7246:                         lastname => 'Last Name',
                   7247:                         firstname => 'First Name',
                   7248:                         middlename => 'Middle Name',
                   7249:                         generation => 'Generation',
                   7250:                         gen => 'Generation',
                   7251:                    );
                   7252:     return %fieldtitles;
                   7253: }
                   7254: 
1.642     raeburn  7255: sub sorted_inst_types {
                   7256:     my ($dom) = @_;
                   7257:     my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($dom);
                   7258:     my $othertitle = &mt('All users');
                   7259:     if ($env{'request.course.id'}) {
1.668     raeburn  7260:         $othertitle  = &mt('Any users');
1.642     raeburn  7261:     }
                   7262:     my @types;
                   7263:     if (ref($order) eq 'ARRAY') {
                   7264:         @types = @{$order};
                   7265:     }
                   7266:     if (@types == 0) {
                   7267:         if (ref($usertypes) eq 'HASH') {
                   7268:             @types = sort(keys(%{$usertypes}));
                   7269:         }
                   7270:     }
                   7271:     if (keys(%{$usertypes}) > 0) {
                   7272:         $othertitle = &mt('Other users');
                   7273:     }
                   7274:     return ($othertitle,$usertypes,\@types);
                   7275: }
                   7276: 
1.645     raeburn  7277: sub get_institutional_codes {
                   7278:     my ($settings,$allcourses,$LC_code) = @_;
                   7279: # Get complete list of course sections to update
                   7280:     my @currsections = ();
                   7281:     my @currxlists = ();
                   7282:     my $coursecode = $$settings{'internal.coursecode'};
                   7283: 
                   7284:     if ($$settings{'internal.sectionnums'} ne '') {
                   7285:         @currsections = split(/,/,$$settings{'internal.sectionnums'});
                   7286:     }
                   7287: 
                   7288:     if ($$settings{'internal.crosslistings'} ne '') {
                   7289:         @currxlists = split(/,/,$$settings{'internal.crosslistings'});
                   7290:     }
                   7291: 
                   7292:     if (@currxlists > 0) {
                   7293:         foreach (@currxlists) {
                   7294:             if (m/^([^:]+):(\w*)$/) {
                   7295:                 unless (grep/^$1$/,@{$allcourses}) {
                   7296:                     push @{$allcourses},$1;
                   7297:                     $$LC_code{$1} = $2;
                   7298:                 }
                   7299:             }
                   7300:         }
                   7301:     }
                   7302:  
                   7303:     if (@currsections > 0) {
                   7304:         foreach (@currsections) {
                   7305:             if (m/^(\w+):(\w*)$/) {
                   7306:                 my $sec = $coursecode.$1;
                   7307:                 my $lc_sec = $2;
                   7308:                 unless (grep/^$sec$/,@{$allcourses}) {
                   7309:                     push @{$allcourses},$sec;
                   7310:                     $$LC_code{$sec} = $lc_sec;
                   7311:                 }
                   7312:             }
                   7313:         }
                   7314:     }
                   7315:     return;
                   7316: }
                   7317: 
1.112     bowersj2 7318: =pod
                   7319: 
1.549     albertel 7320: =back
                   7321: 
                   7322: =head1 HTTP Helpers
                   7323: 
                   7324: =over 4
                   7325: 
1.648     raeburn  7326: =item * &get_unprocessed_cgi($query,$possible_names)
1.112     bowersj2 7327: 
1.258     albertel 7328: Modify the %env hash to contain unprocessed CGI form parameters held in
1.112     bowersj2 7329: $query.  The parameters listed in $possible_names (an array reference),
1.258     albertel 7330: will be set in $env{'form.name'} if they do not already exist.
1.112     bowersj2 7331: 
                   7332: Typically called with $ENV{'QUERY_STRING'} as the first parameter.  
                   7333: $possible_names is an ref to an array of form element names.  As an example:
                   7334: get_unprocessed_cgi($ENV{'QUERY_STRING'},['uname','udom']);
1.258     albertel 7335: will result in $env{'form.uname'} and $env{'form.udom'} being set.
1.112     bowersj2 7336: 
                   7337: =cut
1.1       albertel 7338: 
1.6       albertel 7339: sub get_unprocessed_cgi {
1.25      albertel 7340:   my ($query,$possible_names)= @_;
1.26      matthew  7341:   # $Apache::lonxml::debug=1;
1.356     albertel 7342:   foreach my $pair (split(/&/,$query)) {
                   7343:     my ($name, $value) = split(/=/,$pair);
1.369     www      7344:     $name = &unescape($name);
1.25      albertel 7345:     if (!defined($possible_names) || (grep {$_ eq $name} @$possible_names)) {
                   7346:       $value =~ tr/+/ /;
                   7347:       $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
1.258     albertel 7348:       unless (defined($env{'form.'.$name})) { &add_to_env('form.'.$name,$value) };
1.25      albertel 7349:     }
1.16      harris41 7350:   }
1.6       albertel 7351: }
                   7352: 
1.112     bowersj2 7353: =pod
                   7354: 
1.648     raeburn  7355: =item * &cacheheader() 
1.112     bowersj2 7356: 
                   7357: returns cache-controlling header code
                   7358: 
                   7359: =cut
                   7360: 
1.7       albertel 7361: sub cacheheader {
1.258     albertel 7362:     unless ($env{'request.method'} eq 'GET') { return ''; }
1.216     albertel 7363:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime);
                   7364:     my $output .='<meta HTTP-EQUIV="Expires" CONTENT="'.$date.'" />
1.7       albertel 7365:                 <meta HTTP-EQUIV="Cache-control" CONTENT="no-cache" />
                   7366:                 <meta HTTP-EQUIV="Pragma" CONTENT="no-cache" />';
1.216     albertel 7367:     return $output;
1.7       albertel 7368: }
                   7369: 
1.112     bowersj2 7370: =pod
                   7371: 
1.648     raeburn  7372: =item * &no_cache($r) 
1.112     bowersj2 7373: 
                   7374: specifies header code to not have cache
                   7375: 
                   7376: =cut
                   7377: 
1.9       albertel 7378: sub no_cache {
1.216     albertel 7379:     my ($r) = @_;
                   7380:     if ($ENV{'REQUEST_METHOD'} ne 'GET' &&
1.258     albertel 7381: 	$env{'request.method'} ne 'GET') { return ''; }
1.216     albertel 7382:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime(time));
                   7383:     $r->no_cache(1);
                   7384:     $r->header_out("Expires" => $date);
                   7385:     $r->header_out("Pragma" => "no-cache");
1.123     www      7386: }
                   7387: 
                   7388: sub content_type {
1.181     albertel 7389:     my ($r,$type,$charset) = @_;
1.299     foxr     7390:     if ($r) {
                   7391: 	#  Note that printout.pl calls this with undef for $r.
                   7392: 	&no_cache($r);
                   7393:     }
1.258     albertel 7394:     if ($env{'browser.mathml'} && $type eq 'text/html') { $type='text/xml'; }
1.181     albertel 7395:     unless ($charset) {
                   7396: 	$charset=&Apache::lonlocal::current_encoding;
                   7397:     }
                   7398:     if ($charset) { $type.='; charset='.$charset; }
                   7399:     if ($r) {
                   7400: 	$r->content_type($type);
                   7401:     } else {
                   7402: 	print("Content-type: $type\n\n");
                   7403:     }
1.9       albertel 7404: }
1.25      albertel 7405: 
1.112     bowersj2 7406: =pod
                   7407: 
1.648     raeburn  7408: =item * &add_to_env($name,$value) 
1.112     bowersj2 7409: 
1.258     albertel 7410: adds $name to the %env hash with value
1.112     bowersj2 7411: $value, if $name already exists, the entry is converted to an array
                   7412: reference and $value is added to the array.
                   7413: 
                   7414: =cut
                   7415: 
1.25      albertel 7416: sub add_to_env {
                   7417:   my ($name,$value)=@_;
1.258     albertel 7418:   if (defined($env{$name})) {
                   7419:     if (ref($env{$name})) {
1.25      albertel 7420:       #already have multiple values
1.258     albertel 7421:       push(@{ $env{$name} },$value);
1.25      albertel 7422:     } else {
                   7423:       #first time seeing multiple values, convert hash entry to an arrayref
1.258     albertel 7424:       my $first=$env{$name};
                   7425:       undef($env{$name});
                   7426:       push(@{ $env{$name} },$first,$value);
1.25      albertel 7427:     }
                   7428:   } else {
1.258     albertel 7429:     $env{$name}=$value;
1.25      albertel 7430:   }
1.31      albertel 7431: }
1.149     albertel 7432: 
                   7433: =pod
                   7434: 
1.648     raeburn  7435: =item * &get_env_multiple($name) 
1.149     albertel 7436: 
1.258     albertel 7437: gets $name from the %env hash, it seemlessly handles the cases where multiple
1.149     albertel 7438: values may be defined and end up as an array ref.
                   7439: 
                   7440: returns an array of values
                   7441: 
                   7442: =cut
                   7443: 
                   7444: sub get_env_multiple {
                   7445:     my ($name) = @_;
                   7446:     my @values;
1.258     albertel 7447:     if (defined($env{$name})) {
1.149     albertel 7448:         # exists is it an array
1.258     albertel 7449:         if (ref($env{$name})) {
                   7450:             @values=@{ $env{$name} };
1.149     albertel 7451:         } else {
1.258     albertel 7452:             $values[0]=$env{$name};
1.149     albertel 7453:         }
                   7454:     }
                   7455:     return(@values);
                   7456: }
                   7457: 
1.660     raeburn  7458: sub ask_for_embedded_content {
                   7459:     my ($actionurl,$state,$allfiles,$codebase,$args)=@_;
                   7460:     my $upload_output = '
                   7461:    <form name="upload_embedded" action="'.$actionurl.'"
                   7462:                   method="post" enctype="multipart/form-data">';
                   7463:     $upload_output .= $state;
1.661     raeburn  7464:     $upload_output .= '<b>Upload embedded files</b>:<br />'.&start_data_table();
1.660     raeburn  7465: 
                   7466:     my $num = 0;
                   7467:     foreach my $embed_file (sort {lc($a) cmp lc($b)} keys(%{$allfiles})) {
                   7468:         $upload_output .= &start_data_table_row().
                   7469:             '<td>'.$embed_file.'</td><td>';
                   7470:         if ($args->{'ignore_remote_references'}
                   7471:             && $embed_file =~ m{^\w+://}) {
                   7472:             $upload_output.='<span class="LC_warning">'.&mt("URL points to other server.").'</span>';
                   7473:         } elsif ($args->{'error_on_invalid_names'}
                   7474:             && $embed_file ne &Apache::lonnet::clean_filename($embed_file,{'keep_path' => 1,})) {
                   7475: 
                   7476:             $upload_output.='<span class="LC_warning">'.&mt("Invalid characters").'</span>';
                   7477: 
                   7478:         } else {
                   7479:             $upload_output .='
1.661     raeburn  7480:            <input name="embedded_item_'.$num.'" type="file" value="" />
1.660     raeburn  7481:            <input name="embedded_orig_'.$num.'" type="hidden" value="'.&escape($embed_file).'" />';
                   7482:             my $attrib = join(':',@{$$allfiles{$embed_file}});
                   7483:             $upload_output .=
                   7484:                 "\n\t\t".
                   7485:                 '<input name="embedded_attrib_'.$num.'" type="hidden" value="'.
                   7486:                 $attrib.'" />';
                   7487:             if (exists($$codebase{$embed_file})) {
                   7488:                 $upload_output .=
                   7489:                     "\n\t\t".
                   7490:                     '<input name="codebase_'.$num.'" type="hidden" value="'.
                   7491:                     &escape($$codebase{$embed_file}).'" />';
                   7492:             }
                   7493:         }
                   7494:         $upload_output .= '</td>'.&Apache::loncommon::end_data_table_row();
                   7495:         $num++;
                   7496:     }
                   7497:     $upload_output .= &Apache::loncommon::end_data_table().'<br />
                   7498:    <input type ="hidden" name="number_embedded_items" value="'.$num.'" />
                   7499:    <input type ="submit" value="'.&mt('Upload Listed Files').'" />
                   7500:    '.&mt('(only files for which a location has been provided will be uploaded)').'
                   7501:    </form>';
                   7502:     return $upload_output;
                   7503: }
                   7504: 
1.661     raeburn  7505: sub upload_embedded {
                   7506:     my ($context,$dirpath,$uname,$udom,$dir_root,$url_root,$group,$disk_quota,
                   7507:         $current_disk_usage) = @_;
                   7508:     my $output;
                   7509:     for (my $i=0; $i<$env{'form.number_embedded_items'}; $i++) {
                   7510:         next if (!exists($env{'form.embedded_item_'.$i.'.filename'}));
                   7511:         my $orig_uploaded_filename =
                   7512:             $env{'form.embedded_item_'.$i.'.filename'};
                   7513: 
                   7514:         $env{'form.embedded_orig_'.$i} =
                   7515:             &unescape($env{'form.embedded_orig_'.$i});
                   7516:         my ($path,$fname) =
                   7517:             ($env{'form.embedded_orig_'.$i} =~ m{(.*/)([^/]*)});
                   7518:         # no path, whole string is fname
                   7519:         if (!$fname) { $fname = $env{'form.embedded_orig_'.$i} };
                   7520: 
                   7521:         $path = $env{'form.currentpath'}.$path;
                   7522:         $fname = &Apache::lonnet::clean_filename($fname);
                   7523:         # See if there is anything left
                   7524:         next if ($fname eq '');
                   7525: 
                   7526:         # Check if file already exists as a file or directory.
                   7527:         my ($state,$msg);
                   7528:         if ($context eq 'portfolio') {
                   7529:             my $port_path = $dirpath;
                   7530:             if ($group ne '') {
                   7531:                 $port_path = "groups/$group/$port_path";
                   7532:             }
                   7533:             ($state,$msg) = &check_for_upload($path,$fname,$group,'embedded_item_'.$i,
                   7534:                                               $dir_root,$port_path,$disk_quota,
                   7535:                                               $current_disk_usage,$uname,$udom);
                   7536:             if ($state eq 'will_exceed_quota'
                   7537:                 || $state eq 'file_locked'
                   7538:                 || $state eq 'file_exists' ) {
                   7539:                 $output .= $msg;
                   7540:                 next;
                   7541:             }
                   7542:         } elsif (($context eq 'author') || ($context eq 'testbank')) {
                   7543:             ($state,$msg) = &check_for_existing($path,$fname,'embedded_item_'.$i);
                   7544:             if ($state eq 'exists') {
                   7545:                 $output .= $msg;
                   7546:                 next;
                   7547:             }
                   7548:         }
                   7549:         # Check if extension is valid
                   7550:         if (($fname =~ /\.(\w+)$/) &&
                   7551:             (&Apache::loncommon::fileembstyle($1) eq 'hdn')) {
                   7552:             $output .= &mt('Invalid file extension ([_1]) - reserved for LONCAPA use - rename the file with a different extension and re-upload. ',$1);
                   7553:             next;
                   7554:         } elsif (($fname =~ /\.(\w+)$/) &&
                   7555:                  (!defined(&Apache::loncommon::fileembstyle($1)))) {
                   7556:             $output .= &mt('Unrecognized file extension ([_1]) - rename the file with a proper extension and re-upload.',$1);
                   7557:             next;
                   7558:         } elsif ($fname=~/\.(\d+)\.(\w+)$/) {
                   7559:             $output .= &mt('File name not allowed - rename the file to remove the number immediately before the file extension([_1]) and re-upload.',$2);
                   7560:             next;
                   7561:         }
                   7562: 
                   7563:         $env{'form.embedded_item_'.$i.'.filename'}=$fname;
                   7564:         if ($context eq 'portfolio') {
                   7565:             my $result=
                   7566:                 &Apache::lonnet::userfileupload('embedded_item_'.$i,'',
                   7567:                                                 $dirpath.$path);
                   7568:             if ($result !~ m|^/uploaded/|) {
                   7569:                 $output .= '<span class="LC_error">'
                   7570:                       .&mt('An error occurred ([_1]) while trying to upload [_2] for embedded element [_3].'
                   7571:                            ,$result,$orig_uploaded_filename,$env{'form.embedded_orig_'.$i})
                   7572:                       .'</span><br />';
                   7573:                 next;
                   7574:             } else {
                   7575:                 $output .= '<p>'.&mt('Uploaded [_1]','<span class="LC_filename">'.
                   7576:                            $path.$fname.'</span>').'</p>';     
                   7577:             }
                   7578:         } else {
                   7579: # Save the file
                   7580:             my $target = $env{'form.embedded_item_'.$i};
                   7581:             my $fullpath = $dir_root.$dirpath.'/'.$path;
                   7582:             my $dest = $fullpath.$fname;
                   7583:             my $url = $url_root.$dirpath.'/'.$path.$fname;
                   7584:             my @parts=split(/\//,$fullpath);
                   7585:             my $count;
                   7586:             my $filepath = $dir_root;
                   7587:             for ($count=4;$count<=$#parts;$count++) {
                   7588:                 $filepath .= "/$parts[$count]";
                   7589:                 if ((-e $filepath)!=1) {
                   7590:                     mkdir($filepath,0770);
                   7591:                 }
                   7592:             }
                   7593:             my $fh;
                   7594:             if (!open($fh,'>'.$dest)) {
                   7595:                 &Apache::lonnet::logthis('Failed to create '.$dest);
                   7596:                 $output .= '<span class="LC_error">'.
                   7597:                            &mt('An error occurred while trying to upload [_1] for embedded element [_2].',$orig_uploaded_filename,$env{'form.embedded_orig_'.$i}).
                   7598:                            '</span><br />';
                   7599:             } else {
                   7600:                 if (!print $fh $env{'form.embedded_item_'.$i}) {
                   7601:                     &Apache::lonnet::logthis('Failed to write to '.$dest);
                   7602:                     $output .= '<span class="LC_error">'.
                   7603:                               &mt('An error occurred while writing the file [_1] for embedded element [_2].',$orig_uploaded_filename,$env{'form.embedded_orig_'.$i}).
                   7604:                               '</span><br />';
                   7605:                 } else {
                   7606:                     if ($context eq 'testbank') {
                   7607:                         $output .= &mt('Embedded file uploaded successfully:').
                   7608:                                    '&nbsp;<a href="'.$url.'">'.
                   7609:                                    $orig_uploaded_filename.'</a><br />';
                   7610:                     } else {
1.705     tempelho 7611:                         $output .= '<span class=\"LC_fontsize_large\">'.
1.661     raeburn  7612:                                    &mt('View embedded file: [_1]','<a href="'.$url.'">'.
1.705     tempelho 7613:                                    $orig_uploaded_filename.'</a>').'</span><br />';
1.661     raeburn  7614:                     }
                   7615:                 }
                   7616:                 close($fh);
                   7617:             }
                   7618:         }
                   7619:     }
                   7620:     return $output;
                   7621: }
                   7622: 
                   7623: sub check_for_existing {
                   7624:     my ($path,$fname,$element) = @_;
                   7625:     my ($state,$msg);
                   7626:     if (-d $path.'/'.$fname) {
                   7627:         $state = 'exists';
                   7628:         $msg = &mt('Unable to upload [_1]. A directory by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$path);
                   7629:     } elsif (-e $path.'/'.$fname) {
                   7630:         $state = 'exists';
                   7631:         $msg = &mt('Unable to upload [_1]. A file by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$path);
                   7632:     }
                   7633:     if ($state eq 'exists') {
                   7634:         $msg = '<span class="LC_error">'.$msg.'</span><br />';
                   7635:     }
                   7636:     return ($state,$msg);
                   7637: }
                   7638: 
                   7639: sub check_for_upload {
                   7640:     my ($path,$fname,$group,$element,$portfolio_root,$port_path,
                   7641:         $disk_quota,$current_disk_usage,$uname,$udom) = @_;
                   7642:     my $filesize = (length($env{'form.'.$element})) / 1000; #express in k (1024?)
                   7643:     my $getpropath = 1;
                   7644:     my @dir_list = &Apache::lonnet::dirlist($portfolio_root.$path,$udom,$uname,
                   7645:                                             $getpropath);
                   7646:     my $found_file = 0;
                   7647:     my $locked_file = 0;
                   7648:     foreach my $line (@dir_list) {
                   7649:         my ($file_name)=split(/\&/,$line,2);
                   7650:         if ($file_name eq $fname){
                   7651:             $file_name = $path.$file_name;
                   7652:             if ($group ne '') {
                   7653:                 $file_name = $group.$file_name;
                   7654:             }
                   7655:             $found_file = 1;
                   7656:             if (&Apache::lonnet::is_locked($file_name,$udom,$uname) eq 'true') {
                   7657:                 $locked_file = 1;
                   7658:             }
                   7659:         }
                   7660:     }
                   7661:     if (($current_disk_usage + $filesize) > $disk_quota){
                   7662:         my $msg = '<span class="LC_error">'.
                   7663:                 &mt('Unable to upload [_1]. (size = [_2] kilobytes). Disk quota will be exceeded.','<span class="LC_filename">'.$fname.'</span>',$filesize).'</span>'.
                   7664:                   '<br />'.&mt('Disk quota is [_1] kilobytes. Your current disk usage is [_2] kilobytes.',$disk_quota,$current_disk_usage);
                   7665:         return ('will_exceed_quota',$msg);
                   7666:     } elsif ($found_file) {
                   7667:         if ($locked_file) {
                   7668:             my $msg = '<span class="LC_error">';
                   7669:             $msg .= &mt('Unable to upload [_1]. A locked file by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>','<span class="LC_filename">'.$port_path.$env{'form.currentpath'}.'</span>');
                   7670:             $msg .= '</span><br />';
                   7671:             $msg .= &mt('You will be able to rename or delete existing [_1] after a grade has been assigned.','<span class="LC_filename">'.$fname.'</span>');
                   7672:             return ('file_locked',$msg);
                   7673:         } else {
                   7674:             my $msg = '<span class="LC_error">';
                   7675:             $msg .= &mt('Unable to upload [_1]. A file by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$port_path.$env{'form.currentpath'});
                   7676:             $msg .= '</span>';
                   7677:             $msg .= '<br />';
                   7678:             $msg .= &mt('To upload, rename or delete existing [_1] in [_2].','<span class="LC_filename">'.$fname.'</span>', $port_path.$env{'form.currentpath'});
                   7679:             return ('file_exists',$msg);
                   7680:         }
                   7681:     }
                   7682: }
                   7683: 
1.31      albertel 7684: 
1.41      ng       7685: =pod
1.45      matthew  7686: 
1.464     albertel 7687: =back
1.41      ng       7688: 
1.112     bowersj2 7689: =head1 CSV Upload/Handling functions
1.38      albertel 7690: 
1.41      ng       7691: =over 4
                   7692: 
1.648     raeburn  7693: =item * &upfile_store($r)
1.41      ng       7694: 
                   7695: Store uploaded file, $r should be the HTTP Request object,
1.258     albertel 7696: needs $env{'form.upfile'}
1.41      ng       7697: returns $datatoken to be put into hidden field
                   7698: 
                   7699: =cut
1.31      albertel 7700: 
                   7701: sub upfile_store {
                   7702:     my $r=shift;
1.258     albertel 7703:     $env{'form.upfile'}=~s/\r/\n/gs;
                   7704:     $env{'form.upfile'}=~s/\f/\n/gs;
                   7705:     $env{'form.upfile'}=~s/\n+/\n/gs;
                   7706:     $env{'form.upfile'}=~s/\n+$//gs;
1.31      albertel 7707: 
1.258     albertel 7708:     my $datatoken=$env{'user.name'}.'_'.$env{'user.domain'}.
                   7709: 	'_enroll_'.$env{'request.course.id'}.'_'.time.'_'.$$;
1.31      albertel 7710:     {
1.158     raeburn  7711:         my $datafile = $r->dir_config('lonDaemons').
                   7712:                            '/tmp/'.$datatoken.'.tmp';
                   7713:         if ( open(my $fh,">$datafile") ) {
1.258     albertel 7714:             print $fh $env{'form.upfile'};
1.158     raeburn  7715:             close($fh);
                   7716:         }
1.31      albertel 7717:     }
                   7718:     return $datatoken;
                   7719: }
                   7720: 
1.56      matthew  7721: =pod
                   7722: 
1.648     raeburn  7723: =item * &load_tmp_file($r)
1.41      ng       7724: 
                   7725: Load uploaded file from tmp, $r should be the HTTP Request object,
1.258     albertel 7726: needs $env{'form.datatoken'},
                   7727: sets $env{'form.upfile'} to the contents of the file
1.41      ng       7728: 
                   7729: =cut
1.31      albertel 7730: 
                   7731: sub load_tmp_file {
                   7732:     my $r=shift;
                   7733:     my @studentdata=();
                   7734:     {
1.158     raeburn  7735:         my $studentfile = $r->dir_config('lonDaemons').
1.258     albertel 7736:                               '/tmp/'.$env{'form.datatoken'}.'.tmp';
1.158     raeburn  7737:         if ( open(my $fh,"<$studentfile") ) {
                   7738:             @studentdata=<$fh>;
                   7739:             close($fh);
                   7740:         }
1.31      albertel 7741:     }
1.258     albertel 7742:     $env{'form.upfile'}=join('',@studentdata);
1.31      albertel 7743: }
                   7744: 
1.56      matthew  7745: =pod
                   7746: 
1.648     raeburn  7747: =item * &upfile_record_sep()
1.41      ng       7748: 
                   7749: Separate uploaded file into records
                   7750: returns array of records,
1.258     albertel 7751: needs $env{'form.upfile'} and $env{'form.upfiletype'}
1.41      ng       7752: 
                   7753: =cut
1.31      albertel 7754: 
                   7755: sub upfile_record_sep {
1.258     albertel 7756:     if ($env{'form.upfiletype'} eq 'xml') {
1.31      albertel 7757:     } else {
1.248     albertel 7758: 	my @records;
1.258     albertel 7759: 	foreach my $line (split(/\n/,$env{'form.upfile'})) {
1.248     albertel 7760: 	    if ($line=~/^\s*$/) { next; }
                   7761: 	    push(@records,$line);
                   7762: 	}
                   7763: 	return @records;
1.31      albertel 7764:     }
                   7765: }
                   7766: 
1.56      matthew  7767: =pod
                   7768: 
1.648     raeburn  7769: =item * &record_sep($record)
1.41      ng       7770: 
1.258     albertel 7771: Separate a record into fields $record should be an item from the upfile_record_sep(), needs $env{'form.upfiletype'}
1.41      ng       7772: 
                   7773: =cut
                   7774: 
1.263     www      7775: sub takeleft {
                   7776:     my $index=shift;
                   7777:     return substr('0000'.$index,-4,4);
                   7778: }
                   7779: 
1.31      albertel 7780: sub record_sep {
                   7781:     my $record=shift;
                   7782:     my %components=();
1.258     albertel 7783:     if ($env{'form.upfiletype'} eq 'xml') {
                   7784:     } elsif ($env{'form.upfiletype'} eq 'space') {
1.31      albertel 7785:         my $i=0;
1.356     albertel 7786:         foreach my $field (split(/\s+/,$record)) {
1.31      albertel 7787:             $field=~s/^(\"|\')//;
                   7788:             $field=~s/(\"|\')$//;
1.263     www      7789:             $components{&takeleft($i)}=$field;
1.31      albertel 7790:             $i++;
                   7791:         }
1.258     albertel 7792:     } elsif ($env{'form.upfiletype'} eq 'tab') {
1.31      albertel 7793:         my $i=0;
1.356     albertel 7794:         foreach my $field (split(/\t/,$record)) {
1.31      albertel 7795:             $field=~s/^(\"|\')//;
                   7796:             $field=~s/(\"|\')$//;
1.263     www      7797:             $components{&takeleft($i)}=$field;
1.31      albertel 7798:             $i++;
                   7799:         }
                   7800:     } else {
1.561     www      7801:         my $separator=',';
1.480     banghart 7802:         if ($env{'form.upfiletype'} eq 'semisv') {
1.561     www      7803:             $separator=';';
1.480     banghart 7804:         }
1.31      albertel 7805:         my $i=0;
1.561     www      7806: # the character we are looking for to indicate the end of a quote or a record 
                   7807:         my $looking_for=$separator;
                   7808: # do not add the characters to the fields
                   7809:         my $ignore=0;
                   7810: # we just encountered a separator (or the beginning of the record)
                   7811:         my $just_found_separator=1;
                   7812: # store the field we are working on here
                   7813:         my $field='';
                   7814: # work our way through all characters in record
                   7815:         foreach my $character ($record=~/(.)/g) {
                   7816:             if ($character eq $looking_for) {
                   7817:                if ($character ne $separator) {
                   7818: # Found the end of a quote, again looking for separator
                   7819:                   $looking_for=$separator;
                   7820:                   $ignore=1;
                   7821:                } else {
                   7822: # Found a separator, store away what we got
                   7823:                   $components{&takeleft($i)}=$field;
                   7824: 	          $i++;
                   7825:                   $just_found_separator=1;
                   7826:                   $ignore=0;
                   7827:                   $field='';
                   7828:                }
                   7829:                next;
                   7830:             }
                   7831: # single or double quotation marks after a separator indicate beginning of a quote
                   7832: # we are now looking for the end of the quote and need to ignore separators
                   7833:             if ((($character eq '"') || ($character eq "'")) && ($just_found_separator))  {
                   7834:                $looking_for=$character;
                   7835:                next;
                   7836:             }
                   7837: # ignore would be true after we reached the end of a quote
                   7838:             if ($ignore) { next; }
                   7839:             if (($just_found_separator) && ($character=~/\s/)) { next; }
                   7840:             $field.=$character;
                   7841:             $just_found_separator=0; 
1.31      albertel 7842:         }
1.561     www      7843: # catch the very last entry, since we never encountered the separator
                   7844:         $components{&takeleft($i)}=$field;
1.31      albertel 7845:     }
                   7846:     return %components;
                   7847: }
                   7848: 
1.144     matthew  7849: ######################################################
                   7850: ######################################################
                   7851: 
1.56      matthew  7852: =pod
                   7853: 
1.648     raeburn  7854: =item * &upfile_select_html()
1.41      ng       7855: 
1.144     matthew  7856: Return HTML code to select a file from the users machine and specify 
                   7857: the file type.
1.41      ng       7858: 
                   7859: =cut
                   7860: 
1.144     matthew  7861: ######################################################
                   7862: ######################################################
1.31      albertel 7863: sub upfile_select_html {
1.144     matthew  7864:     my %Types = (
                   7865:                  csv   => &mt('CSV (comma separated values, spreadsheet)'),
1.480     banghart 7866:                  semisv => &mt('Semicolon separated values'),
1.144     matthew  7867:                  space => &mt('Space separated'),
                   7868:                  tab   => &mt('Tabulator separated'),
                   7869: #                 xml   => &mt('HTML/XML'),
                   7870:                  );
                   7871:     my $Str = '<input type="file" name="upfile" size="50" />'.
                   7872:         '<br />Type: <select name="upfiletype">';
                   7873:     foreach my $type (sort(keys(%Types))) {
                   7874:         $Str .= '<option value="'.$type.'" >'.$Types{$type}."</option>\n";
                   7875:     }
                   7876:     $Str .= "</select>\n";
                   7877:     return $Str;
1.31      albertel 7878: }
                   7879: 
1.301     albertel 7880: sub get_samples {
                   7881:     my ($records,$toget) = @_;
                   7882:     my @samples=({});
                   7883:     my $got=0;
                   7884:     foreach my $rec (@$records) {
                   7885: 	my %temp = &record_sep($rec);
                   7886: 	if (! grep(/\S/, values(%temp))) { next; }
                   7887: 	if (%temp) {
                   7888: 	    $samples[$got]=\%temp;
                   7889: 	    $got++;
                   7890: 	    if ($got == $toget) { last; }
                   7891: 	}
                   7892:     }
                   7893:     return \@samples;
                   7894: }
                   7895: 
1.144     matthew  7896: ######################################################
                   7897: ######################################################
                   7898: 
1.56      matthew  7899: =pod
                   7900: 
1.648     raeburn  7901: =item * &csv_print_samples($r,$records)
1.41      ng       7902: 
                   7903: Prints a table of sample values from each column uploaded $r is an
                   7904: Apache Request ref, $records is an arrayref from
                   7905: &Apache::loncommon::upfile_record_sep
                   7906: 
                   7907: =cut
                   7908: 
1.144     matthew  7909: ######################################################
                   7910: ######################################################
1.31      albertel 7911: sub csv_print_samples {
                   7912:     my ($r,$records) = @_;
1.662     bisitz   7913:     my $samples = &get_samples($records,5);
1.301     albertel 7914: 
1.594     raeburn  7915:     $r->print(&mt('Samples').'<br />'.&start_data_table().
                   7916:               &start_data_table_header_row());
1.356     albertel 7917:     foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) { 
                   7918:         $r->print('<th>'.&mt('Column&nbsp;[_1]',($sample+1)).'</th>'); }
1.594     raeburn  7919:     $r->print(&end_data_table_header_row());
1.301     albertel 7920:     foreach my $hash (@$samples) {
1.594     raeburn  7921: 	$r->print(&start_data_table_row());
1.356     albertel 7922: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
1.31      albertel 7923: 	    $r->print('<td>');
1.356     albertel 7924: 	    if (defined($$hash{$sample})) { $r->print($$hash{$sample}); }
1.31      albertel 7925: 	    $r->print('</td>');
                   7926: 	}
1.594     raeburn  7927: 	$r->print(&end_data_table_row());
1.31      albertel 7928:     }
1.594     raeburn  7929:     $r->print(&end_data_table().'<br />'."\n");
1.31      albertel 7930: }
                   7931: 
1.144     matthew  7932: ######################################################
                   7933: ######################################################
                   7934: 
1.56      matthew  7935: =pod
                   7936: 
1.648     raeburn  7937: =item * &csv_print_select_table($r,$records,$d)
1.41      ng       7938: 
                   7939: Prints a table to create associations between values and table columns.
1.144     matthew  7940: 
1.41      ng       7941: $r is an Apache Request ref,
                   7942: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
1.174     matthew  7943: $d is an array of 2 element arrays (internal name, displayed name,defaultcol)
1.41      ng       7944: 
                   7945: =cut
                   7946: 
1.144     matthew  7947: ######################################################
                   7948: ######################################################
1.31      albertel 7949: sub csv_print_select_table {
                   7950:     my ($r,$records,$d) = @_;
1.301     albertel 7951:     my $i=0;
                   7952:     my $samples = &get_samples($records,1);
1.144     matthew  7953:     $r->print(&mt('Associate columns with student attributes.')."\n".
1.594     raeburn  7954: 	      &start_data_table().&start_data_table_header_row().
1.144     matthew  7955:               '<th>'.&mt('Attribute').'</th>'.
1.594     raeburn  7956:               '<th>'.&mt('Column').'</th>'.
                   7957:               &end_data_table_header_row()."\n");
1.356     albertel 7958:     foreach my $array_ref (@$d) {
                   7959: 	my ($value,$display,$defaultcol)=@{ $array_ref };
1.705     tempelho 7960: 	$r->print(&start_data_table_row().'<tr><td>'.$display.'</td>');
1.31      albertel 7961: 
                   7962: 	$r->print('<td><select name=f'.$i.
1.32      matthew  7963: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
1.31      albertel 7964: 	$r->print('<option value="none"></option>');
1.356     albertel 7965: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
                   7966: 	    $r->print('<option value="'.$sample.'"'.
                   7967:                       ($sample eq $defaultcol ? ' selected="selected" ' : '').
1.662     bisitz   7968:                       '>'.&mt('Column [_1]',($sample+1)).'</option>');
1.31      albertel 7969: 	}
1.594     raeburn  7970: 	$r->print('</select></td>'.&end_data_table_row()."\n");
1.31      albertel 7971: 	$i++;
                   7972:     }
1.594     raeburn  7973:     $r->print(&end_data_table());
1.31      albertel 7974:     $i--;
                   7975:     return $i;
                   7976: }
1.56      matthew  7977: 
1.144     matthew  7978: ######################################################
                   7979: ######################################################
                   7980: 
1.56      matthew  7981: =pod
1.31      albertel 7982: 
1.648     raeburn  7983: =item * &csv_samples_select_table($r,$records,$d)
1.41      ng       7984: 
                   7985: Prints a table of sample values from the upload and can make associate samples to internal names.
                   7986: 
                   7987: $r is an Apache Request ref,
                   7988: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
                   7989: $d is an array of 2 element arrays (internal name, displayed name)
                   7990: 
                   7991: =cut
                   7992: 
1.144     matthew  7993: ######################################################
                   7994: ######################################################
1.31      albertel 7995: sub csv_samples_select_table {
                   7996:     my ($r,$records,$d) = @_;
                   7997:     my $i=0;
1.144     matthew  7998:     #
1.662     bisitz   7999:     my $max_samples = 5;
                   8000:     my $samples = &get_samples($records,$max_samples);
1.594     raeburn  8001:     $r->print(&start_data_table().
                   8002:               &start_data_table_header_row().'<th>'.
                   8003:               &mt('Field').'</th><th>'.&mt('Samples').'</th>'.
                   8004:               &end_data_table_header_row());
1.301     albertel 8005: 
                   8006:     foreach my $key (sort(keys(%{ $samples->[0] }))) {
1.594     raeburn  8007: 	$r->print(&start_data_table_row().'<td><select name="f'.$i.'"'.
1.32      matthew  8008: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
1.301     albertel 8009: 	foreach my $option (@$d) {
                   8010: 	    my ($value,$display,$defaultcol)=@{ $option };
1.174     matthew  8011: 	    $r->print('<option value="'.$value.'"'.
1.253     albertel 8012:                       ($i eq $defaultcol ? ' selected="selected" ':'').'>'.
1.174     matthew  8013:                       $display.'</option>');
1.31      albertel 8014: 	}
                   8015: 	$r->print('</select></td><td>');
1.662     bisitz   8016: 	foreach my $line (0..($max_samples-1)) {
1.301     albertel 8017: 	    if (defined($samples->[$line]{$key})) { 
                   8018: 		$r->print($samples->[$line]{$key}."<br />\n"); 
                   8019: 	    }
                   8020: 	}
1.594     raeburn  8021: 	$r->print('</td>'.&end_data_table_row());
1.31      albertel 8022: 	$i++;
                   8023:     }
1.594     raeburn  8024:     $r->print(&end_data_table());
1.31      albertel 8025:     $i--;
                   8026:     return($i);
1.115     matthew  8027: }
                   8028: 
1.144     matthew  8029: ######################################################
                   8030: ######################################################
                   8031: 
1.115     matthew  8032: =pod
                   8033: 
1.648     raeburn  8034: =item * &clean_excel_name($name)
1.115     matthew  8035: 
                   8036: Returns a replacement for $name which does not contain any illegal characters.
                   8037: 
                   8038: =cut
                   8039: 
1.144     matthew  8040: ######################################################
                   8041: ######################################################
1.115     matthew  8042: sub clean_excel_name {
                   8043:     my ($name) = @_;
                   8044:     $name =~ s/[:\*\?\/\\]//g;
                   8045:     if (length($name) > 31) {
                   8046:         $name = substr($name,0,31);
                   8047:     }
                   8048:     return $name;
1.25      albertel 8049: }
1.84      albertel 8050: 
1.85      albertel 8051: =pod
                   8052: 
1.648     raeburn  8053: =item * &check_if_partid_hidden($id,$symb,$udom,$uname)
1.85      albertel 8054: 
                   8055: Returns either 1 or undef
                   8056: 
                   8057: 1 if the part is to be hidden, undef if it is to be shown
                   8058: 
                   8059: Arguments are:
                   8060: 
                   8061: $id the id of the part to be checked
                   8062: $symb, optional the symb of the resource to check
                   8063: $udom, optional the domain of the user to check for
                   8064: $uname, optional the username of the user to check for
                   8065: 
                   8066: =cut
1.84      albertel 8067: 
                   8068: sub check_if_partid_hidden {
                   8069:     my ($id,$symb,$udom,$uname) = @_;
1.133     albertel 8070:     my $hiddenparts=&Apache::lonnet::EXT('resource.0.hiddenparts',
1.84      albertel 8071: 					 $symb,$udom,$uname);
1.141     albertel 8072:     my $truth=1;
                   8073:     #if the string starts with !, then the list is the list to show not hide
                   8074:     if ($hiddenparts=~s/^\s*!//) { $truth=undef; }
1.84      albertel 8075:     my @hiddenlist=split(/,/,$hiddenparts);
                   8076:     foreach my $checkid (@hiddenlist) {
1.141     albertel 8077: 	if ($checkid =~ /^\s*\Q$id\E\s*$/) { return $truth; }
1.84      albertel 8078:     }
1.141     albertel 8079:     return !$truth;
1.84      albertel 8080: }
1.127     matthew  8081: 
1.138     matthew  8082: 
                   8083: ############################################################
                   8084: ############################################################
                   8085: 
                   8086: =pod
                   8087: 
1.157     matthew  8088: =back 
                   8089: 
1.138     matthew  8090: =head1 cgi-bin script and graphing routines
                   8091: 
1.157     matthew  8092: =over 4
                   8093: 
1.648     raeburn  8094: =item * &get_cgi_id()
1.138     matthew  8095: 
                   8096: Inputs: none
                   8097: 
                   8098: Returns an id which can be used to pass environment variables
                   8099: to various cgi-bin scripts.  These environment variables will
                   8100: be removed from the users environment after a given time by
                   8101: the routine &Apache::lonnet::transfer_profile_to_env.
                   8102: 
                   8103: =cut
                   8104: 
                   8105: ############################################################
                   8106: ############################################################
1.152     albertel 8107: my $uniq=0;
1.136     matthew  8108: sub get_cgi_id {
1.154     albertel 8109:     $uniq=($uniq+1)%100000;
1.280     albertel 8110:     return (time.'_'.$$.'_'.$uniq);
1.136     matthew  8111: }
                   8112: 
1.127     matthew  8113: ############################################################
                   8114: ############################################################
                   8115: 
                   8116: =pod
                   8117: 
1.648     raeburn  8118: =item * &DrawBarGraph()
1.127     matthew  8119: 
1.138     matthew  8120: Facilitates the plotting of data in a (stacked) bar graph.
                   8121: Puts plot definition data into the users environment in order for 
                   8122: graph.png to plot it.  Returns an <img> tag for the plot.
                   8123: The bars on the plot are labeled '1','2',...,'n'.
                   8124: 
                   8125: Inputs:
                   8126: 
                   8127: =over 4
                   8128: 
                   8129: =item $Title: string, the title of the plot
                   8130: 
                   8131: =item $xlabel: string, text describing the X-axis of the plot
                   8132: 
                   8133: =item $ylabel: string, text describing the Y-axis of the plot
                   8134: 
                   8135: =item $Max: scalar, the maximum Y value to use in the plot
                   8136: If $Max is < any data point, the graph will not be rendered.
                   8137: 
1.140     matthew  8138: =item $colors: array ref holding the colors to be used for the data sets when
1.138     matthew  8139: they are plotted.  If undefined, default values will be used.
                   8140: 
1.178     matthew  8141: =item $labels: array ref holding the labels to use on the x-axis for the bars.
                   8142: 
1.138     matthew  8143: =item @Values: An array of array references.  Each array reference holds data
                   8144: to be plotted in a stacked bar chart.
                   8145: 
1.239     matthew  8146: =item If the final element of @Values is a hash reference the key/value
                   8147: pairs will be added to the graph definition.
                   8148: 
1.138     matthew  8149: =back
                   8150: 
                   8151: Returns:
                   8152: 
                   8153: An <img> tag which references graph.png and the appropriate identifying
                   8154: information for the plot.
                   8155: 
1.127     matthew  8156: =cut
                   8157: 
                   8158: ############################################################
                   8159: ############################################################
1.134     matthew  8160: sub DrawBarGraph {
1.178     matthew  8161:     my ($Title,$xlabel,$ylabel,$Max,$colors,$labels,@Values)=@_;
1.134     matthew  8162:     #
                   8163:     if (! defined($colors)) {
                   8164:         $colors = ['#33ff00', 
                   8165:                   '#0033cc', '#990000', '#aaaa66', '#663399', '#ff9933',
                   8166:                   '#66ccff', '#ff9999', '#cccc33', '#660000', '#33cc66',
                   8167:                   ]; 
                   8168:     }
1.228     matthew  8169:     my $extra_settings = {};
                   8170:     if (ref($Values[-1]) eq 'HASH') {
                   8171:         $extra_settings = pop(@Values);
                   8172:     }
1.127     matthew  8173:     #
1.136     matthew  8174:     my $identifier = &get_cgi_id();
                   8175:     my $id = 'cgi.'.$identifier;        
1.129     matthew  8176:     if (! @Values || ref($Values[0]) ne 'ARRAY') {
1.127     matthew  8177:         return '';
                   8178:     }
1.225     matthew  8179:     #
                   8180:     my @Labels;
                   8181:     if (defined($labels)) {
                   8182:         @Labels = @$labels;
                   8183:     } else {
                   8184:         for (my $i=0;$i<@{$Values[0]};$i++) {
                   8185:             push (@Labels,$i+1);
                   8186:         }
                   8187:     }
                   8188:     #
1.129     matthew  8189:     my $NumBars = scalar(@{$Values[0]});
1.225     matthew  8190:     if ($NumBars < scalar(@Labels)) { $NumBars = scalar(@Labels); }
1.129     matthew  8191:     my %ValuesHash;
                   8192:     my $NumSets=1;
                   8193:     foreach my $array (@Values) {
                   8194:         next if (! ref($array));
1.136     matthew  8195:         $ValuesHash{$id.'.data.'.$NumSets++} = 
1.132     matthew  8196:             join(',',@$array);
1.129     matthew  8197:     }
1.127     matthew  8198:     #
1.136     matthew  8199:     my ($height,$width,$xskip,$bar_width) = (200,120,1,15);
1.225     matthew  8200:     if ($NumBars < 3) {
                   8201:         $width = 120+$NumBars*32;
1.220     matthew  8202:         $xskip = 1;
1.225     matthew  8203:         $bar_width = 30;
                   8204:     } elsif ($NumBars < 5) {
                   8205:         $width = 120+$NumBars*20;
                   8206:         $xskip = 1;
                   8207:         $bar_width = 20;
1.220     matthew  8208:     } elsif ($NumBars < 10) {
1.136     matthew  8209:         $width = 120+$NumBars*15;
                   8210:         $xskip = 1;
                   8211:         $bar_width = 15;
                   8212:     } elsif ($NumBars <= 25) {
                   8213:         $width = 120+$NumBars*11;
                   8214:         $xskip = 5;
                   8215:         $bar_width = 8;
                   8216:     } elsif ($NumBars <= 50) {
                   8217:         $width = 120+$NumBars*8;
                   8218:         $xskip = 5;
                   8219:         $bar_width = 4;
                   8220:     } else {
                   8221:         $width = 120+$NumBars*8;
                   8222:         $xskip = 5;
                   8223:         $bar_width = 4;
                   8224:     }
                   8225:     #
1.137     matthew  8226:     $Max = 1 if ($Max < 1);
                   8227:     if ( int($Max) < $Max ) {
                   8228:         $Max++;
                   8229:         $Max = int($Max);
                   8230:     }
1.127     matthew  8231:     $Title  = '' if (! defined($Title));
                   8232:     $xlabel = '' if (! defined($xlabel));
                   8233:     $ylabel = '' if (! defined($ylabel));
1.369     www      8234:     $ValuesHash{$id.'.title'}    = &escape($Title);
                   8235:     $ValuesHash{$id.'.xlabel'}   = &escape($xlabel);
                   8236:     $ValuesHash{$id.'.ylabel'}   = &escape($ylabel);
1.137     matthew  8237:     $ValuesHash{$id.'.y_max_value'} = $Max;
1.136     matthew  8238:     $ValuesHash{$id.'.NumBars'}  = $NumBars;
                   8239:     $ValuesHash{$id.'.NumSets'}  = $NumSets;
                   8240:     $ValuesHash{$id.'.PlotType'} = 'bar';
                   8241:     $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   8242:     $ValuesHash{$id.'.height'}   = $height;
                   8243:     $ValuesHash{$id.'.width'}    = $width;
                   8244:     $ValuesHash{$id.'.xskip'}    = $xskip;
                   8245:     $ValuesHash{$id.'.bar_width'} = $bar_width;
                   8246:     $ValuesHash{$id.'.labels'} = join(',',@Labels);
1.127     matthew  8247:     #
1.228     matthew  8248:     # Deal with other parameters
                   8249:     while (my ($key,$value) = each(%$extra_settings)) {
                   8250:         $ValuesHash{$id.'.'.$key} = $value;
                   8251:     }
                   8252:     #
1.646     raeburn  8253:     &Apache::lonnet::appenv(\%ValuesHash);
1.137     matthew  8254:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
                   8255: }
                   8256: 
                   8257: ############################################################
                   8258: ############################################################
                   8259: 
                   8260: =pod
                   8261: 
1.648     raeburn  8262: =item * &DrawXYGraph()
1.137     matthew  8263: 
1.138     matthew  8264: Facilitates the plotting of data in an XY graph.
                   8265: Puts plot definition data into the users environment in order for 
                   8266: graph.png to plot it.  Returns an <img> tag for the plot.
                   8267: 
                   8268: Inputs:
                   8269: 
                   8270: =over 4
                   8271: 
                   8272: =item $Title: string, the title of the plot
                   8273: 
                   8274: =item $xlabel: string, text describing the X-axis of the plot
                   8275: 
                   8276: =item $ylabel: string, text describing the Y-axis of the plot
                   8277: 
                   8278: =item $Max: scalar, the maximum Y value to use in the plot
                   8279: If $Max is < any data point, the graph will not be rendered.
                   8280: 
                   8281: =item $colors: Array ref containing the hex color codes for the data to be 
                   8282: plotted in.  If undefined, default values will be used.
                   8283: 
                   8284: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
                   8285: 
                   8286: =item $Ydata: Array ref containing Array refs.  
1.185     www      8287: Each of the contained arrays will be plotted as a separate curve.
1.138     matthew  8288: 
                   8289: =item %Values: hash indicating or overriding any default values which are 
                   8290: passed to graph.png.  
                   8291: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
                   8292: 
                   8293: =back
                   8294: 
                   8295: Returns:
                   8296: 
                   8297: An <img> tag which references graph.png and the appropriate identifying
                   8298: information for the plot.
                   8299: 
1.137     matthew  8300: =cut
                   8301: 
                   8302: ############################################################
                   8303: ############################################################
                   8304: sub DrawXYGraph {
                   8305:     my ($Title,$xlabel,$ylabel,$Max,$colors,$Xlabels,$Ydata,%Values)=@_;
                   8306:     #
                   8307:     # Create the identifier for the graph
                   8308:     my $identifier = &get_cgi_id();
                   8309:     my $id = 'cgi.'.$identifier;
                   8310:     #
                   8311:     $Title  = '' if (! defined($Title));
                   8312:     $xlabel = '' if (! defined($xlabel));
                   8313:     $ylabel = '' if (! defined($ylabel));
                   8314:     my %ValuesHash = 
                   8315:         (
1.369     www      8316:          $id.'.title'  => &escape($Title),
                   8317:          $id.'.xlabel' => &escape($xlabel),
                   8318:          $id.'.ylabel' => &escape($ylabel),
1.137     matthew  8319:          $id.'.y_max_value'=> $Max,
                   8320:          $id.'.labels'     => join(',',@$Xlabels),
                   8321:          $id.'.PlotType'   => 'XY',
                   8322:          );
                   8323:     #
                   8324:     if (defined($colors) && ref($colors) eq 'ARRAY') {
                   8325:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   8326:     }
                   8327:     #
                   8328:     if (! ref($Ydata) || ref($Ydata) ne 'ARRAY') {
                   8329:         return '';
                   8330:     }
                   8331:     my $NumSets=1;
1.138     matthew  8332:     foreach my $array (@{$Ydata}){
1.137     matthew  8333:         next if (! ref($array));
                   8334:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
                   8335:     }
1.138     matthew  8336:     $ValuesHash{$id.'.NumSets'} = $NumSets-1;
1.137     matthew  8337:     #
                   8338:     # Deal with other parameters
                   8339:     while (my ($key,$value) = each(%Values)) {
                   8340:         $ValuesHash{$id.'.'.$key} = $value;
1.127     matthew  8341:     }
                   8342:     #
1.646     raeburn  8343:     &Apache::lonnet::appenv(\%ValuesHash);
1.136     matthew  8344:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
                   8345: }
                   8346: 
                   8347: ############################################################
                   8348: ############################################################
                   8349: 
                   8350: =pod
                   8351: 
1.648     raeburn  8352: =item * &DrawXYYGraph()
1.138     matthew  8353: 
                   8354: Facilitates the plotting of data in an XY graph with two Y axes.
                   8355: Puts plot definition data into the users environment in order for 
                   8356: graph.png to plot it.  Returns an <img> tag for the plot.
                   8357: 
                   8358: Inputs:
                   8359: 
                   8360: =over 4
                   8361: 
                   8362: =item $Title: string, the title of the plot
                   8363: 
                   8364: =item $xlabel: string, text describing the X-axis of the plot
                   8365: 
                   8366: =item $ylabel: string, text describing the Y-axis of the plot
                   8367: 
                   8368: =item $colors: Array ref containing the hex color codes for the data to be 
                   8369: plotted in.  If undefined, default values will be used.
                   8370: 
                   8371: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
                   8372: 
                   8373: =item $Ydata1: The first data set
                   8374: 
                   8375: =item $Min1: The minimum value of the left Y-axis
                   8376: 
                   8377: =item $Max1: The maximum value of the left Y-axis
                   8378: 
                   8379: =item $Ydata2: The second data set
                   8380: 
                   8381: =item $Min2: The minimum value of the right Y-axis
                   8382: 
                   8383: =item $Max2: The maximum value of the left Y-axis
                   8384: 
                   8385: =item %Values: hash indicating or overriding any default values which are 
                   8386: passed to graph.png.  
                   8387: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
                   8388: 
                   8389: =back
                   8390: 
                   8391: Returns:
                   8392: 
                   8393: An <img> tag which references graph.png and the appropriate identifying
                   8394: information for the plot.
1.136     matthew  8395: 
                   8396: =cut
                   8397: 
                   8398: ############################################################
                   8399: ############################################################
1.137     matthew  8400: sub DrawXYYGraph {
                   8401:     my ($Title,$xlabel,$ylabel,$colors,$Xlabels,$Ydata1,$Min1,$Max1,
                   8402:                                         $Ydata2,$Min2,$Max2,%Values)=@_;
1.136     matthew  8403:     #
                   8404:     # Create the identifier for the graph
                   8405:     my $identifier = &get_cgi_id();
                   8406:     my $id = 'cgi.'.$identifier;
                   8407:     #
                   8408:     $Title  = '' if (! defined($Title));
                   8409:     $xlabel = '' if (! defined($xlabel));
                   8410:     $ylabel = '' if (! defined($ylabel));
                   8411:     my %ValuesHash = 
                   8412:         (
1.369     www      8413:          $id.'.title'  => &escape($Title),
                   8414:          $id.'.xlabel' => &escape($xlabel),
                   8415:          $id.'.ylabel' => &escape($ylabel),
1.136     matthew  8416:          $id.'.labels' => join(',',@$Xlabels),
                   8417:          $id.'.PlotType' => 'XY',
                   8418:          $id.'.NumSets' => 2,
1.137     matthew  8419:          $id.'.two_axes' => 1,
                   8420:          $id.'.y1_max_value' => $Max1,
                   8421:          $id.'.y1_min_value' => $Min1,
                   8422:          $id.'.y2_max_value' => $Max2,
                   8423:          $id.'.y2_min_value' => $Min2,
1.136     matthew  8424:          );
                   8425:     #
1.137     matthew  8426:     if (defined($colors) && ref($colors) eq 'ARRAY') {
                   8427:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   8428:     }
                   8429:     #
                   8430:     if (! ref($Ydata1) || ref($Ydata1) ne 'ARRAY' ||
                   8431:         ! ref($Ydata2) || ref($Ydata2) ne 'ARRAY'){
1.136     matthew  8432:         return '';
                   8433:     }
                   8434:     my $NumSets=1;
1.137     matthew  8435:     foreach my $array ($Ydata1,$Ydata2){
1.136     matthew  8436:         next if (! ref($array));
                   8437:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
1.137     matthew  8438:     }
                   8439:     #
                   8440:     # Deal with other parameters
                   8441:     while (my ($key,$value) = each(%Values)) {
                   8442:         $ValuesHash{$id.'.'.$key} = $value;
1.136     matthew  8443:     }
                   8444:     #
1.646     raeburn  8445:     &Apache::lonnet::appenv(\%ValuesHash);
1.130     albertel 8446:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
1.139     matthew  8447: }
                   8448: 
                   8449: ############################################################
                   8450: ############################################################
                   8451: 
                   8452: =pod
                   8453: 
1.157     matthew  8454: =back 
                   8455: 
1.139     matthew  8456: =head1 Statistics helper routines?  
                   8457: 
                   8458: Bad place for them but what the hell.
                   8459: 
1.157     matthew  8460: =over 4
                   8461: 
1.648     raeburn  8462: =item * &chartlink()
1.139     matthew  8463: 
                   8464: Returns a link to the chart for a specific student.  
                   8465: 
                   8466: Inputs:
                   8467: 
                   8468: =over 4
                   8469: 
                   8470: =item $linktext: The text of the link
                   8471: 
                   8472: =item $sname: The students username
                   8473: 
                   8474: =item $sdomain: The students domain
                   8475: 
                   8476: =back
                   8477: 
1.157     matthew  8478: =back
                   8479: 
1.139     matthew  8480: =cut
                   8481: 
                   8482: ############################################################
                   8483: ############################################################
                   8484: sub chartlink {
                   8485:     my ($linktext, $sname, $sdomain) = @_;
                   8486:     my $link = '<a href="/adm/statistics?reportSelected=student_assessment'.
1.369     www      8487:         '&amp;SelectedStudent='.&escape($sname.':'.$sdomain).
1.219     albertel 8488:         '&amp;chartoutputmode='.HTML::Entities::encode('html, with all links').
1.139     matthew  8489:        '">'.$linktext.'</a>';
1.153     matthew  8490: }
                   8491: 
                   8492: #######################################################
                   8493: #######################################################
                   8494: 
                   8495: =pod
                   8496: 
                   8497: =head1 Course Environment Routines
1.157     matthew  8498: 
                   8499: =over 4
1.153     matthew  8500: 
1.648     raeburn  8501: =item * &restore_course_settings()
1.153     matthew  8502: 
1.648     raeburn  8503: =item * &store_course_settings()
1.153     matthew  8504: 
                   8505: Restores/Store indicated form parameters from the course environment.
                   8506: Will not overwrite existing values of the form parameters.
                   8507: 
                   8508: Inputs: 
                   8509: a scalar describing the data (e.g. 'chart', 'problem_analysis')
                   8510: 
                   8511: a hash ref describing the data to be stored.  For example:
                   8512:    
                   8513: %Save_Parameters = ('Status' => 'scalar',
                   8514:     'chartoutputmode' => 'scalar',
                   8515:     'chartoutputdata' => 'scalar',
                   8516:     'Section' => 'array',
1.373     raeburn  8517:     'Group' => 'array',
1.153     matthew  8518:     'StudentData' => 'array',
                   8519:     'Maps' => 'array');
                   8520: 
                   8521: Returns: both routines return nothing
                   8522: 
1.631     raeburn  8523: =back
                   8524: 
1.153     matthew  8525: =cut
                   8526: 
                   8527: #######################################################
                   8528: #######################################################
                   8529: sub store_course_settings {
1.496     albertel 8530:     return &store_settings($env{'request.course.id'},@_);
                   8531: }
                   8532: 
                   8533: sub store_settings {
1.153     matthew  8534:     # save to the environment
                   8535:     # appenv the same items, just to be safe
1.300     albertel 8536:     my $udom  = $env{'user.domain'};
                   8537:     my $uname = $env{'user.name'};
1.496     albertel 8538:     my ($context,$prefix,$Settings) = @_;
1.153     matthew  8539:     my %SaveHash;
                   8540:     my %AppHash;
                   8541:     while (my ($setting,$type) = each(%$Settings)) {
1.496     albertel 8542:         my $basename = join('.','internal',$context,$prefix,$setting);
1.300     albertel 8543:         my $envname = 'environment.'.$basename;
1.258     albertel 8544:         if (exists($env{'form.'.$setting})) {
1.153     matthew  8545:             # Save this value away
                   8546:             if ($type eq 'scalar' &&
1.258     albertel 8547:                 (! exists($env{$envname}) || 
                   8548:                  $env{$envname} ne $env{'form.'.$setting})) {
                   8549:                 $SaveHash{$basename} = $env{'form.'.$setting};
                   8550:                 $AppHash{$envname}   = $env{'form.'.$setting};
1.153     matthew  8551:             } elsif ($type eq 'array') {
                   8552:                 my $stored_form;
1.258     albertel 8553:                 if (ref($env{'form.'.$setting})) {
1.153     matthew  8554:                     $stored_form = join(',',
                   8555:                                         map {
1.369     www      8556:                                             &escape($_);
1.258     albertel 8557:                                         } sort(@{$env{'form.'.$setting}}));
1.153     matthew  8558:                 } else {
                   8559:                     $stored_form = 
1.369     www      8560:                         &escape($env{'form.'.$setting});
1.153     matthew  8561:                 }
                   8562:                 # Determine if the array contents are the same.
1.258     albertel 8563:                 if ($stored_form ne $env{$envname}) {
1.153     matthew  8564:                     $SaveHash{$basename} = $stored_form;
                   8565:                     $AppHash{$envname}   = $stored_form;
                   8566:                 }
                   8567:             }
                   8568:         }
                   8569:     }
                   8570:     my $put_result = &Apache::lonnet::put('environment',\%SaveHash,
1.300     albertel 8571:                                           $udom,$uname);
1.153     matthew  8572:     if ($put_result !~ /^(ok|delayed)/) {
                   8573:         &Apache::lonnet::logthis('unable to save form parameters, '.
                   8574:                                  'got error:'.$put_result);
                   8575:     }
                   8576:     # Make sure these settings stick around in this session, too
1.646     raeburn  8577:     &Apache::lonnet::appenv(\%AppHash);
1.153     matthew  8578:     return;
                   8579: }
                   8580: 
                   8581: sub restore_course_settings {
1.499     albertel 8582:     return &restore_settings($env{'request.course.id'},@_);
1.496     albertel 8583: }
                   8584: 
                   8585: sub restore_settings {
                   8586:     my ($context,$prefix,$Settings) = @_;
1.153     matthew  8587:     while (my ($setting,$type) = each(%$Settings)) {
1.258     albertel 8588:         next if (exists($env{'form.'.$setting}));
1.496     albertel 8589:         my $envname = 'environment.internal.'.$context.'.'.$prefix.
1.153     matthew  8590:             '.'.$setting;
1.258     albertel 8591:         if (exists($env{$envname})) {
1.153     matthew  8592:             if ($type eq 'scalar') {
1.258     albertel 8593:                 $env{'form.'.$setting} = $env{$envname};
1.153     matthew  8594:             } elsif ($type eq 'array') {
1.258     albertel 8595:                 $env{'form.'.$setting} = [ 
1.153     matthew  8596:                                            map { 
1.369     www      8597:                                                &unescape($_); 
1.258     albertel 8598:                                            } split(',',$env{$envname})
1.153     matthew  8599:                                            ];
                   8600:             }
                   8601:         }
                   8602:     }
1.127     matthew  8603: }
                   8604: 
1.618     raeburn  8605: #######################################################
                   8606: #######################################################
                   8607: 
                   8608: =pod
                   8609: 
                   8610: =head1 Domain E-mail Routines  
                   8611: 
                   8612: =over 4
                   8613: 
1.648     raeburn  8614: =item * &build_recipient_list()
1.618     raeburn  8615: 
                   8616: Build recipient lists for three types of e-mail:
                   8617: (a) Error Reports, (b) Package Updates, (c) Help requests, generated by
1.619     raeburn  8618: lonerrorhandler.pm, CHECKRPMS and lonsupportreq.pm respectively.
1.618     raeburn  8619: 
                   8620: Inputs:
1.619     raeburn  8621: defmail (scalar - email address of default recipient), 
1.618     raeburn  8622: mailing type (scalar - errormail, packagesmail, or helpdeskmail), 
1.619     raeburn  8623: defdom (domain for which to retrieve configuration settings),
                   8624: origmail (scalar - email address of recipient from loncapa.conf, 
                   8625: i.e., predates configuration by DC via domainprefs.pm 
1.618     raeburn  8626: 
1.655     raeburn  8627: Returns: comma separated list of addresses to which to send e-mail.
                   8628: 
                   8629: =back
1.618     raeburn  8630: 
                   8631: =cut
                   8632: 
                   8633: ############################################################
                   8634: ############################################################
                   8635: sub build_recipient_list {
1.619     raeburn  8636:     my ($defmail,$mailing,$defdom,$origmail) = @_;
1.618     raeburn  8637:     my @recipients;
                   8638:     my $otheremails;
                   8639:     my %domconfig =
                   8640:          &Apache::lonnet::get_dom('configuration',['contacts'],$defdom);
                   8641:     if (ref($domconfig{'contacts'}) eq 'HASH') {
                   8642:         if (ref($domconfig{'contacts'}{$mailing}) eq 'HASH') {
                   8643:             my @contacts = ('adminemail','supportemail');
                   8644:             foreach my $item (@contacts) {
                   8645:                 if ($domconfig{'contacts'}{$mailing}{$item}) {
1.619     raeburn  8646:                     my $addr = $domconfig{'contacts'}{$item}; 
                   8647:                     if (!grep(/^\Q$addr\E$/,@recipients)) {
                   8648:                         push(@recipients,$addr);
                   8649:                     }
1.618     raeburn  8650:                 }
                   8651:                 $otheremails = $domconfig{'contacts'}{$mailing}{'others'};
                   8652:             }
                   8653:         }
1.619     raeburn  8654:     } elsif ($origmail ne '') {
                   8655:         push(@recipients,$origmail);
1.618     raeburn  8656:     }
1.688     raeburn  8657:     if (defined($defmail)) {
                   8658:         if ($defmail ne '') {
                   8659:             push(@recipients,$defmail);
                   8660:         }
1.618     raeburn  8661:     }
                   8662:     if ($otheremails) {
1.619     raeburn  8663:         my @others;
                   8664:         if ($otheremails =~ /,/) {
                   8665:             @others = split(/,/,$otheremails);
1.618     raeburn  8666:         } else {
1.619     raeburn  8667:             push(@others,$otheremails);
                   8668:         }
                   8669:         foreach my $addr (@others) {
                   8670:             if (!grep(/^\Q$addr\E$/,@recipients)) {
                   8671:                 push(@recipients,$addr);
                   8672:             }
1.618     raeburn  8673:         }
                   8674:     }
1.619     raeburn  8675:     my $recipientlist = join(',',@recipients); 
1.618     raeburn  8676:     return $recipientlist;
                   8677: }
                   8678: 
1.127     matthew  8679: ############################################################
                   8680: ############################################################
1.154     albertel 8681: 
1.655     raeburn  8682: =pod
                   8683: 
                   8684: =head1 Course Catalog Routines
                   8685: 
                   8686: =over 4
                   8687: 
                   8688: =item * &gather_categories()
                   8689: 
                   8690: Converts category definitions - keys of categories hash stored in  
                   8691: coursecategories in configuration.db on the primary library server in a 
                   8692: domain - to an array.  Also generates javascript and idx hash used to 
                   8693: generate Domain Coordinator interface for editing Course Categories.
                   8694: 
                   8695: Inputs:
1.663     raeburn  8696: 
1.655     raeburn  8697: categories (reference to hash of category definitions).
1.663     raeburn  8698: 
1.655     raeburn  8699: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   8700:       categories and subcategories).
1.663     raeburn  8701: 
1.655     raeburn  8702: idx (reference to hash of counters used in Domain Coordinator interface for 
                   8703:       editing Course Categories).
1.663     raeburn  8704: 
1.655     raeburn  8705: jsarray (reference to array of categories used to create Javascript arrays for
                   8706:          Domain Coordinator interface for editing Course Categories).
                   8707: 
                   8708: Returns: nothing
                   8709: 
                   8710: Side effects: populates cats, idx and jsarray. 
                   8711: 
                   8712: =cut
                   8713: 
                   8714: sub gather_categories {
                   8715:     my ($categories,$cats,$idx,$jsarray) = @_;
                   8716:     my %counters;
                   8717:     my $num = 0;
                   8718:     foreach my $item (keys(%{$categories})) {
                   8719:         my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$item);
                   8720:         if ($container eq '' && $depth == 0) {
                   8721:             $cats->[$depth][$categories->{$item}] = $cat;
                   8722:         } else {
                   8723:             $cats->[$depth]{$container}[$categories->{$item}] = $cat;
                   8724:         }
                   8725:         my ($escitem,$tail) = split(/:/,$item,2);
                   8726:         if ($counters{$tail} eq '') {
                   8727:             $counters{$tail} = $num;
                   8728:             $num ++;
                   8729:         }
                   8730:         if (ref($idx) eq 'HASH') {
                   8731:             $idx->{$item} = $counters{$tail};
                   8732:         }
                   8733:         if (ref($jsarray) eq 'ARRAY') {
                   8734:             push(@{$jsarray->[$counters{$tail}]},$item);
                   8735:         }
                   8736:     }
                   8737:     return;
                   8738: }
                   8739: 
                   8740: =pod
                   8741: 
                   8742: =item * &extract_categories()
                   8743: 
                   8744: Used to generate breadcrumb trails for course categories.
                   8745: 
                   8746: Inputs:
1.663     raeburn  8747: 
1.655     raeburn  8748: categories (reference to hash of category definitions).
1.663     raeburn  8749: 
1.655     raeburn  8750: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   8751:       categories and subcategories).
1.663     raeburn  8752: 
1.655     raeburn  8753: trails (reference to array of breacrumb trails for each category).
1.663     raeburn  8754: 
1.655     raeburn  8755: allitems (reference to hash - key is category key 
                   8756:          (format: escaped(name):escaped(parent category):depth in hierarchy).
1.663     raeburn  8757: 
1.655     raeburn  8758: idx (reference to hash of counters used in Domain Coordinator interface for
                   8759:       editing Course Categories).
1.663     raeburn  8760: 
1.655     raeburn  8761: jsarray (reference to array of categories used to create Javascript arrays for
                   8762:          Domain Coordinator interface for editing Course Categories).
                   8763: 
1.665     raeburn  8764: subcats (reference to hash of arrays containing all subcategories within each 
                   8765:          category, -recursive)
                   8766: 
1.655     raeburn  8767: Returns: nothing
                   8768: 
                   8769: Side effects: populates trails and allitems hash references.
                   8770: 
                   8771: =cut
                   8772: 
                   8773: sub extract_categories {
1.665     raeburn  8774:     my ($categories,$cats,$trails,$allitems,$idx,$jsarray,$subcats) = @_;
1.655     raeburn  8775:     if (ref($categories) eq 'HASH') {
                   8776:         &gather_categories($categories,$cats,$idx,$jsarray);
                   8777:         if (ref($cats->[0]) eq 'ARRAY') {
                   8778:             for (my $i=0; $i<@{$cats->[0]}; $i++) {
                   8779:                 my $name = $cats->[0][$i];
                   8780:                 my $item = &escape($name).'::0';
                   8781:                 my $trailstr;
                   8782:                 if ($name eq 'instcode') {
                   8783:                     $trailstr = &mt('Official courses (with institutional codes)');
                   8784:                 } else {
                   8785:                     $trailstr = $name;
                   8786:                 }
                   8787:                 if ($allitems->{$item} eq '') {
                   8788:                     push(@{$trails},$trailstr);
                   8789:                     $allitems->{$item} = scalar(@{$trails})-1;
                   8790:                 }
                   8791:                 my @parents = ($name);
                   8792:                 if (ref($cats->[1]{$name}) eq 'ARRAY') {
                   8793:                     for (my $j=0; $j<@{$cats->[1]{$name}}; $j++) {
                   8794:                         my $category = $cats->[1]{$name}[$j];
1.665     raeburn  8795:                         if (ref($subcats) eq 'HASH') {
                   8796:                             push(@{$subcats->{$item}},&escape($category).':'.&escape($name).':1');
                   8797:                         }
                   8798:                         &recurse_categories($cats,2,$category,$trails,$allitems,\@parents,$subcats);
                   8799:                     }
                   8800:                 } else {
                   8801:                     if (ref($subcats) eq 'HASH') {
                   8802:                         $subcats->{$item} = [];
1.655     raeburn  8803:                     }
                   8804:                 }
                   8805:             }
                   8806:         }
                   8807:     }
                   8808:     return;
                   8809: }
                   8810: 
                   8811: =pod
                   8812: 
                   8813: =item *&recurse_categories()
                   8814: 
                   8815: Recursively used to generate breadcrumb trails for course categories.
                   8816: 
                   8817: Inputs:
1.663     raeburn  8818: 
1.655     raeburn  8819: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   8820:       categories and subcategories).
1.663     raeburn  8821: 
1.655     raeburn  8822: depth (current depth in hierarchy of categories and sub-categories - 0 indexed).
1.663     raeburn  8823: 
                   8824: category (current course category, for which breadcrumb trail is being generated).
                   8825: 
                   8826: trails (reference to array of breadcrumb trails for each category).
                   8827: 
1.655     raeburn  8828: allitems (reference to hash - key is category key
                   8829:          (format: escaped(name):escaped(parent category):depth in hierarchy).
1.663     raeburn  8830: 
1.655     raeburn  8831: parents (array containing containers directories for current category, 
                   8832:          back to top level). 
                   8833: 
                   8834: Returns: nothing
                   8835: 
                   8836: Side effects: populates trails and allitems hash references
                   8837: 
                   8838: =cut
                   8839: 
                   8840: sub recurse_categories {
1.665     raeburn  8841:     my ($cats,$depth,$category,$trails,$allitems,$parents,$subcats) = @_;
1.655     raeburn  8842:     my $shallower = $depth - 1;
                   8843:     if (ref($cats->[$depth]{$category}) eq 'ARRAY') {
                   8844:         for (my $k=0; $k<@{$cats->[$depth]{$category}}; $k++) {
                   8845:             my $name = $cats->[$depth]{$category}[$k];
                   8846:             my $item = &escape($category).':'.&escape($parents->[-1]).':'.$shallower;
                   8847:             my $trailstr = join(' -&gt; ',(@{$parents},$category));
                   8848:             if ($allitems->{$item} eq '') {
                   8849:                 push(@{$trails},$trailstr);
                   8850:                 $allitems->{$item} = scalar(@{$trails})-1;
                   8851:             }
                   8852:             my $deeper = $depth+1;
                   8853:             push(@{$parents},$category);
1.665     raeburn  8854:             if (ref($subcats) eq 'HASH') {
                   8855:                 my $subcat = &escape($name).':'.$category.':'.$depth;
                   8856:                 for (my $j=@{$parents}; $j>=0; $j--) {
                   8857:                     my $higher;
                   8858:                     if ($j > 0) {
                   8859:                         $higher = &escape($parents->[$j]).':'.
                   8860:                                   &escape($parents->[$j-1]).':'.$j;
                   8861:                     } else {
                   8862:                         $higher = &escape($parents->[$j]).'::'.$j;
                   8863:                     }
                   8864:                     push(@{$subcats->{$higher}},$subcat);
                   8865:                 }
                   8866:             }
                   8867:             &recurse_categories($cats,$deeper,$name,$trails,$allitems,$parents,
                   8868:                                 $subcats);
1.655     raeburn  8869:             pop(@{$parents});
                   8870:         }
                   8871:     } else {
                   8872:         my $item = &escape($category).':'.&escape($parents->[-1]).':'.$shallower;
                   8873:         my $trailstr = join(' -&gt; ',(@{$parents},$category));
                   8874:         if ($allitems->{$item} eq '') {
                   8875:             push(@{$trails},$trailstr);
                   8876:             $allitems->{$item} = scalar(@{$trails})-1;
                   8877:         }
                   8878:     }
                   8879:     return;
                   8880: }
                   8881: 
1.663     raeburn  8882: =pod
                   8883: 
                   8884: =item *&assign_categories_table()
                   8885: 
                   8886: Create a datatable for display of hierarchical categories in a domain,
                   8887: with checkboxes to allow a course to be categorized. 
                   8888: 
                   8889: Inputs:
                   8890: 
                   8891: cathash - reference to hash of categories defined for the domain (from
                   8892:           configuration.db)
                   8893: 
                   8894: currcat - scalar with an & separated list of categories assigned to a course. 
                   8895: 
                   8896: Returns: $output (markup to be displayed) 
                   8897: 
                   8898: =cut
                   8899: 
                   8900: sub assign_categories_table {
                   8901:     my ($cathash,$currcat) = @_;
                   8902:     my $output;
                   8903:     if (ref($cathash) eq 'HASH') {
                   8904:         my (@cats,@trails,%allitems,%idx,@jsarray,@path,$maxdepth);
                   8905:         &extract_categories($cathash,\@cats,\@trails,\%allitems,\%idx,\@jsarray);
                   8906:         $maxdepth = scalar(@cats);
                   8907:         if (@cats > 0) {
                   8908:             my $itemcount = 0;
                   8909:             if (ref($cats[0]) eq 'ARRAY') {
                   8910:                 $output = &Apache::loncommon::start_data_table();
                   8911:                 my @currcategories;
                   8912:                 if ($currcat ne '') {
                   8913:                     @currcategories = split('&',$currcat);
                   8914:                 }
                   8915:                 for (my $i=0; $i<@{$cats[0]}; $i++) {
                   8916:                     my $parent = $cats[0][$i];
                   8917:                     my $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   8918:                     next if ($parent eq 'instcode');
                   8919:                     my $item = &escape($parent).'::0';
                   8920:                     my $checked = '';
                   8921:                     if (@currcategories > 0) {
                   8922:                         if (grep(/^\Q$item\E$/,@currcategories)) {
                   8923:                             $checked = ' checked="checked" ';
                   8924:                         }
                   8925:                     }
1.675     raeburn  8926:                     $output .= '<tr '.$css_class.'><td><span class="LC_nobreak">'.
                   8927:                                '<input type="checkbox" name="usecategory" value="'.
                   8928:                                $item.'"'.$checked.' />'.$parent.'</span>'.
                   8929:                                '<input type="hidden" name="catname" value="'.$parent.'" /></td>';
1.663     raeburn  8930:                     my $depth = 1;
                   8931:                     push(@path,$parent);
                   8932:                     $output .= &assign_category_rows($itemcount,\@cats,$depth,$parent,\@path,\@currcategories);
                   8933:                     pop(@path);
                   8934:                     $output .= '</tr><tr><td colspan="'.$maxdepth.'" class="LC_row_separator"></td></tr>';
                   8935:                     $itemcount ++;
                   8936:                 }
                   8937:                 $output .= &Apache::loncommon::end_data_table();
                   8938:             }
                   8939:         }
                   8940:     }
                   8941:     return $output;
                   8942: }
                   8943: 
                   8944: =pod
                   8945: 
                   8946: =item *&assign_category_rows()
                   8947: 
                   8948: Create a datatable row for display of nested categories in a domain,
                   8949: with checkboxes to allow a course to be categorized,called recursively.
                   8950: 
                   8951: Inputs:
                   8952: 
                   8953: itemcount - track row number for alternating colors
                   8954: 
                   8955: cats - reference to array of arrays/hashes which encapsulates hierarchy of
                   8956:       categories and subcategories.
                   8957: 
                   8958: depth - current depth in hierarchy of categories and sub-categories - 0 indexed.
                   8959: 
                   8960: parent - parent of current category item
                   8961: 
                   8962: path - Array containing all categories back up through the hierarchy from the
                   8963:        current category to the top level.
                   8964: 
                   8965: currcategories - reference to array of current categories assigned to the course
                   8966: 
                   8967: Returns: $output (markup to be displayed).
                   8968: 
                   8969: =cut
                   8970: 
                   8971: sub assign_category_rows {
                   8972:     my ($itemcount,$cats,$depth,$parent,$path,$currcategories) = @_;
                   8973:     my ($text,$name,$item,$chgstr);
                   8974:     if (ref($cats) eq 'ARRAY') {
                   8975:         my $maxdepth = scalar(@{$cats});
                   8976:         if (ref($cats->[$depth]) eq 'HASH') {
                   8977:             if (ref($cats->[$depth]{$parent}) eq 'ARRAY') {
                   8978:                 my $numchildren = @{$cats->[$depth]{$parent}};
                   8979:                 my $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   8980:                 $text .= '<td><table class="LC_datatable">';
                   8981:                 for (my $j=0; $j<$numchildren; $j++) {
                   8982:                     $name = $cats->[$depth]{$parent}[$j];
                   8983:                     $item = &escape($name).':'.&escape($parent).':'.$depth;
                   8984:                     my $deeper = $depth+1;
                   8985:                     my $checked = '';
                   8986:                     if (ref($currcategories) eq 'ARRAY') {
                   8987:                         if (@{$currcategories} > 0) {
                   8988:                             if (grep(/^\Q$item\E$/,@{$currcategories})) {
                   8989:                                 $checked = ' checked="checked" ';
                   8990:                             }
                   8991:                         }
                   8992:                     }
1.664     raeburn  8993:                     $text .= '<tr><td><span class="LC_nobreak"><label>'.
                   8994:                              '<input type="checkbox" name="usecategory" value="'.
1.675     raeburn  8995:                              $item.'"'.$checked.' />'.$name.'</label></span>'.
                   8996:                              '<input type="hidden" name="catname" value="'.$name.'" />'.
                   8997:                              '</td><td>';
1.663     raeburn  8998:                     if (ref($path) eq 'ARRAY') {
                   8999:                         push(@{$path},$name);
                   9000:                         $text .= &assign_category_rows($itemcount,$cats,$deeper,$name,$path,$currcategories);
                   9001:                         pop(@{$path});
                   9002:                     }
                   9003:                     $text .= '</td></tr>';
                   9004:                 }
                   9005:                 $text .= '</table></td>';
                   9006:             }
                   9007:         }
                   9008:     }
                   9009:     return $text;
                   9010: }
                   9011: 
1.655     raeburn  9012: ############################################################
                   9013: ############################################################
                   9014: 
                   9015: 
1.443     albertel 9016: sub commit_customrole {
1.664     raeburn  9017:     my ($udom,$uname,$url,$three,$four,$five,$start,$end,$context) = @_;
1.630     raeburn  9018:     my $output = &mt('Assigning custom role').' "'.$five.'" by '.$four.':'.$three.' in '.$url.
1.443     albertel 9019:                          ($start?', '.&mt('starting').' '.localtime($start):'').
                   9020:                          ($end?', ending '.localtime($end):'').': <b>'.
                   9021:               &Apache::lonnet::assigncustomrole(
1.664     raeburn  9022:                  $udom,$uname,$url,$three,$four,$five,$end,$start,undef,undef,$context).
1.443     albertel 9023:                  '</b><br />';
                   9024:     return $output;
                   9025: }
                   9026: 
                   9027: sub commit_standardrole {
1.541     raeburn  9028:     my ($udom,$uname,$url,$three,$start,$end,$one,$two,$sec,$context) = @_;
                   9029:     my ($output,$logmsg,$linefeed);
                   9030:     if ($context eq 'auto') {
                   9031:         $linefeed = "\n";
                   9032:     } else {
                   9033:         $linefeed = "<br />\n";
                   9034:     }  
1.443     albertel 9035:     if ($three eq 'st') {
1.541     raeburn  9036:         my $result = &commit_studentrole(\$logmsg,$udom,$uname,$url,$three,$start,$end,
                   9037:                                          $one,$two,$sec,$context);
                   9038:         if (($result =~ /^error/) || ($result eq 'not_in_class') || 
1.626     raeburn  9039:             ($result eq 'unknown_course') || ($result eq 'refused')) {
                   9040:             $output = $logmsg.' '.&mt('Error: ').$result."\n"; 
1.443     albertel 9041:         } else {
1.541     raeburn  9042:             $output = $logmsg.$linefeed.&mt('Assigning').' '.$three.' in '.$url.
1.443     albertel 9043:                ($start?', '.&mt('starting').' '.localtime($start):'').
1.541     raeburn  9044:                ($end?', '.&mt('ending').' '.localtime($end):'').': ';
                   9045:             if ($context eq 'auto') {
                   9046:                 $output .= $result.$linefeed.&mt('Add to classlist').': ok';
                   9047:             } else {
                   9048:                $output .= '<b>'.$result.'</b>'.$linefeed.
                   9049:                &mt('Add to classlist').': <b>ok</b>';
                   9050:             }
                   9051:             $output .= $linefeed;
1.443     albertel 9052:         }
                   9053:     } else {
                   9054:         $output = &mt('Assigning').' '.$three.' in '.$url.
                   9055:                ($start?', '.&mt('starting').' '.localtime($start):'').
1.541     raeburn  9056:                ($end?', '.&mt('ending').' '.localtime($end):'').': ';
1.652     raeburn  9057:         my $result = &Apache::lonnet::assignrole($udom,$uname,$url,$three,$end,$start,'','',$context);
1.541     raeburn  9058:         if ($context eq 'auto') {
                   9059:             $output .= $result.$linefeed;
                   9060:         } else {
                   9061:             $output .= '<b>'.$result.'</b>'.$linefeed;
                   9062:         }
1.443     albertel 9063:     }
                   9064:     return $output;
                   9065: }
                   9066: 
                   9067: sub commit_studentrole {
1.541     raeburn  9068:     my ($logmsg,$udom,$uname,$url,$three,$start,$end,$one,$two,$sec,$context) = @_;
1.626     raeburn  9069:     my ($result,$linefeed,$oldsecurl,$newsecurl);
1.541     raeburn  9070:     if ($context eq 'auto') {
                   9071:         $linefeed = "\n";
                   9072:     } else {
                   9073:         $linefeed = '<br />'."\n";
                   9074:     }
1.443     albertel 9075:     if (defined($one) && defined($two)) {
                   9076:         my $cid=$one.'_'.$two;
                   9077:         my $oldsec=&Apache::lonnet::getsection($udom,$uname,$cid);
                   9078:         my $secchange = 0;
                   9079:         my $expire_role_result;
                   9080:         my $modify_section_result;
1.628     raeburn  9081:         if ($oldsec ne '-1') { 
                   9082:             if ($oldsec ne $sec) {
1.443     albertel 9083:                 $secchange = 1;
1.628     raeburn  9084:                 my $now = time;
1.443     albertel 9085:                 my $uurl='/'.$cid;
                   9086:                 $uurl=~s/\_/\//g;
                   9087:                 if ($oldsec) {
                   9088:                     $uurl.='/'.$oldsec;
                   9089:                 }
1.626     raeburn  9090:                 $oldsecurl = $uurl;
1.628     raeburn  9091:                 $expire_role_result = 
1.652     raeburn  9092:                     &Apache::lonnet::assignrole($udom,$uname,$uurl,'st',$now,'','',$context);
1.628     raeburn  9093:                 if ($env{'request.course.sec'} ne '') { 
                   9094:                     if ($expire_role_result eq 'refused') {
                   9095:                         my @roles = ('st');
                   9096:                         my @statuses = ('previous');
                   9097:                         my @roledoms = ($one);
                   9098:                         my $withsec = 1;
                   9099:                         my %roleshash = 
                   9100:                             &Apache::lonnet::get_my_roles($uname,$udom,'userroles',
                   9101:                                               \@statuses,\@roles,\@roledoms,$withsec);
                   9102:                         if (defined ($roleshash{$two.':'.$one.':st:'.$oldsec})) {
                   9103:                             my ($oldstart,$oldend) = 
                   9104:                                 split(':',$roleshash{$two.':'.$one.':st:'.$oldsec});
                   9105:                             if ($oldend > 0 && $oldend <= $now) {
                   9106:                                 $expire_role_result = 'ok';
                   9107:                             }
                   9108:                         }
                   9109:                     }
                   9110:                 }
1.443     albertel 9111:                 $result = $expire_role_result;
                   9112:             }
                   9113:         }
                   9114:         if (($expire_role_result eq 'ok') || ($secchange == 0)) {
1.652     raeburn  9115:             $modify_section_result = &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$end,$start,'','',$cid,'',$context);
1.443     albertel 9116:             if ($modify_section_result =~ /^ok/) {
                   9117:                 if ($secchange == 1) {
1.628     raeburn  9118:                     if ($sec eq '') {
                   9119:                         $$logmsg .= &mt('Section for [_1] switched from (possibly expired) old section: [_2] to student role without a section.',$uname,$oldsec).$linefeed;
                   9120:                     } else {
                   9121:                         $$logmsg .= &mt('Section for [_1] switched from (possibly expired) old section: [_2] to new section: [_3].',$uname,$oldsec,$sec).$linefeed;
                   9122:                     }
1.443     albertel 9123:                 } elsif ($oldsec eq '-1') {
1.628     raeburn  9124:                     if ($sec eq '') {
                   9125:                         $$logmsg .= &mt('New student role without a section for [_1] in course [_2].',$uname,$cid).$linefeed;
                   9126:                     } else {
                   9127:                         $$logmsg .= &mt('New student role for [_1] in section [_2] in course [_3].',$uname,$sec,$cid).$linefeed;
                   9128:                     }
1.443     albertel 9129:                 } else {
1.628     raeburn  9130:                     if ($sec eq '') {
                   9131:                         $$logmsg .= &mt('Student [_1] assigned to course [_2] without a section.',$uname,$cid).$linefeed;
                   9132:                     } else {
                   9133:                         $$logmsg .= &mt('Student [_1] assigned to section [_2] in course [_3].',$uname,$sec,$cid).$linefeed;
                   9134:                     }
1.443     albertel 9135:                 }
                   9136:             } else {
1.628     raeburn  9137:                 if ($secchange) {       
                   9138:                     $$logmsg .= &mt('Error when attempting section change for [_1] from old section "[_2]" to new section: "[_3]" in course [_4] -error:',$uname,$oldsec,$sec,$cid).' '.$modify_section_result.$linefeed;
                   9139:                 } else {
                   9140:                     $$logmsg .= &mt('Error when attempting to modify role for [_1] for section: "[_2]" in course [_3] -error:',$uname,$sec,$cid).' '.$modify_section_result.$linefeed;
                   9141:                 }
1.443     albertel 9142:             }
                   9143:             $result = $modify_section_result;
                   9144:         } elsif ($secchange == 1) {
1.628     raeburn  9145:             if ($oldsec eq '') {
                   9146:                 $$logmsg .= &mt('Error when attempting to expire existing role without a section for [_1] in course [_3] -error: ',$uname,$cid).' '.$expire_role_result.$linefeed;
                   9147:             } else {
                   9148:                 $$logmsg .= &mt('Error when attempting to expire existing role for [_1] in section [_2] in course [_3] -error: ',$uname,$oldsec,$cid).' '.$expire_role_result.$linefeed;
                   9149:             }
1.626     raeburn  9150:             if ($expire_role_result eq 'refused') {
                   9151:                 my $newsecurl = '/'.$cid;
                   9152:                 $newsecurl =~ s/\_/\//g;
                   9153:                 if ($sec ne '') {
                   9154:                     $newsecurl.='/'.$sec;
                   9155:                 }
                   9156:                 if (&Apache::lonnet::allowed('cst',$newsecurl) && !(&Apache::lonnet::allowed('cst',$oldsecurl))) {
                   9157:                     if ($sec eq '') {
                   9158:                         $$logmsg .= &mt('Although your current role has privileges to add students to section "[_1]", you do not have privileges to modify existing enrollments unaffiliated with any section.',$sec).$linefeed;
                   9159:                     } else {
                   9160:                         $$logmsg .= &mt('Although your current role has privileges to add students to section "[_1]", you do not have privileges to modify existing enrollments in other sections.',$sec).$linefeed;
                   9161:                     }
                   9162:                 }
                   9163:             }
1.443     albertel 9164:         }
                   9165:     } else {
1.626     raeburn  9166:         $$logmsg .= &mt('Incomplete course id defined.').$linefeed.&mt('Addition of user [_1] from domain [_2] to course [_3], section [_4] not completed.',$uname,$udom,$one.'_'.$two,$sec).$linefeed;
1.443     albertel 9167:         $result = "error: incomplete course id\n";
                   9168:     }
                   9169:     return $result;
                   9170: }
                   9171: 
                   9172: ############################################################
                   9173: ############################################################
                   9174: 
1.566     albertel 9175: sub check_clone {
1.578     raeburn  9176:     my ($args,$linefeed) = @_;
1.566     albertel 9177:     my $cloneid='/'.$args->{'clonedomain'}.'/'.$args->{'clonecourse'};
                   9178:     my ($clonecrsudom,$clonecrsunum)= &LONCAPA::split_courseid($cloneid);
                   9179:     my $clonehome=&Apache::lonnet::homeserver($clonecrsunum,$clonecrsudom);
                   9180:     my $clonemsg;
                   9181:     my $can_clone = 0;
                   9182: 
                   9183:     if ($clonehome eq 'no_host') {
1.578     raeburn  9184:         $clonemsg = &mt('No new course created.').$linefeed.&mt('A new course could not be cloned from the specified original - [_1] - because it is a non-existent course.',$args->{'clonecourse'}.':'.$args->{'clonedomain'});     
1.566     albertel 9185:     } else {
                   9186: 	my %clonedesc = &Apache::lonnet::coursedescription($cloneid,{'one_time' => 1});
1.568     albertel 9187: 	if ($env{'request.role.domain'} eq $args->{'clonedomain'}) {
1.566     albertel 9188: 	    $can_clone = 1;
                   9189: 	} else {
                   9190: 	    my %clonehash = &Apache::lonnet::get('environment',['cloners'],
                   9191: 						 $args->{'clonedomain'},$args->{'clonecourse'});
                   9192: 	    my @cloners = split(/,/,$clonehash{'cloners'});
1.578     raeburn  9193:             if (grep(/^\*$/,@cloners)) {
                   9194:                 $can_clone = 1;
                   9195:             } elsif (grep(/^\*\:\Q$args->{'ccdomain'}\E$/,@cloners)) {
                   9196:                 $can_clone = 1;
                   9197:             } else {
                   9198: 	        my %roleshash =
                   9199: 		    &Apache::lonnet::get_my_roles($args->{'ccuname'},
                   9200: 					 $args->{'ccdomain'},
                   9201:                                          'userroles',['active'],['cc'],
                   9202: 					 [$args->{'clonedomain'}]);
                   9203: 	        if (($roleshash{$args->{'clonecourse'}.':'.$args->{'clonedomain'}.':cc'}) || (grep(/^\Q$args->{'ccuname'}\E:\Q$args->{'ccdomain'}\E$/,@cloners))) {
                   9204: 		    $can_clone = 1;
                   9205: 	        } else {
                   9206:                     $clonemsg = &mt('No new course created.').$linefeed.&mt('The new course could not be cloned from the existing course because the new course owner ([_1]) does not have cloning rights in the existing course ([_2]).',$args->{'ccuname'}.':'.$args->{'ccdomain'},$clonedesc{'description'});
                   9207: 	        }
1.566     albertel 9208: 	    }
1.578     raeburn  9209:         }
1.566     albertel 9210:     }
                   9211:     return ($can_clone, $clonemsg, $cloneid, $clonehome);
                   9212: }
                   9213: 
1.444     albertel 9214: sub construct_course {
1.541     raeburn  9215:     my ($args,$logmsg,$courseid,$crsudom,$crsunum,$udom,$uname,$context) = @_;
1.444     albertel 9216:     my $outcome;
1.541     raeburn  9217:     my $linefeed =  '<br />'."\n";
                   9218:     if ($context eq 'auto') {
                   9219:         $linefeed = "\n";
                   9220:     }
1.566     albertel 9221: 
                   9222: #
                   9223: # Are we cloning?
                   9224: #
                   9225:     my ($can_clone, $clonemsg, $cloneid, $clonehome);
                   9226:     if (($args->{'clonecourse'}) && ($args->{'clonedomain'})) {
1.578     raeburn  9227: 	($can_clone, $clonemsg, $cloneid, $clonehome) = &check_clone($args,$linefeed);
1.566     albertel 9228: 	if ($context ne 'auto') {
1.578     raeburn  9229:             if ($clonemsg ne '') {
                   9230: 	        $clonemsg = '<span class="LC_error">'.$clonemsg.'</span>';
                   9231:             }
1.566     albertel 9232: 	}
                   9233: 	$outcome .= $clonemsg.$linefeed;
                   9234: 
                   9235:         if (!$can_clone) {
                   9236: 	    return (0,$outcome);
                   9237: 	}
                   9238:     }
                   9239: 
1.444     albertel 9240: #
                   9241: # Open course
                   9242: #
                   9243:     my $crstype = lc($args->{'crstype'});
                   9244:     my %cenv=();
                   9245:     $$courseid=&Apache::lonnet::createcourse($args->{'course_domain'},
                   9246:                                              $args->{'cdescr'},
                   9247:                                              $args->{'curl'},
                   9248:                                              $args->{'course_home'},
                   9249:                                              $args->{'nonstandard'},
                   9250:                                              $args->{'crscode'},
                   9251:                                              $args->{'ccuname'}.':'.
                   9252:                                              $args->{'ccdomain'},
                   9253:                                              $args->{'crstype'});
                   9254: 
                   9255:     # Note: The testing routines depend on this being output; see 
                   9256:     # Utils::Course. This needs to at least be output as a comment
                   9257:     # if anyone ever decides to not show this, and Utils::Course::new
                   9258:     # will need to be suitably modified.
1.541     raeburn  9259:     $outcome .= &mt('New LON-CAPA [_1] ID: [_2]',$crstype,$$courseid).$linefeed;
1.444     albertel 9260: #
                   9261: # Check if created correctly
                   9262: #
1.479     albertel 9263:     ($$crsudom,$$crsunum)= &LONCAPA::split_courseid($$courseid);
1.444     albertel 9264:     my $crsuhome=&Apache::lonnet::homeserver($$crsunum,$$crsudom);
1.541     raeburn  9265:     $outcome .= &mt('Created on').': '.$crsuhome.$linefeed;
1.566     albertel 9266: 
1.444     albertel 9267: #
1.566     albertel 9268: # Do the cloning
                   9269: #   
                   9270:     if ($can_clone && $cloneid) {
                   9271: 	$clonemsg = &mt('Cloning [_1] from [_2]',$crstype,$clonehome);
                   9272: 	if ($context ne 'auto') {
                   9273: 	    $clonemsg = '<span class="LC_success">'.$clonemsg.'</span>';
                   9274: 	}
                   9275: 	$outcome .= $clonemsg.$linefeed;
                   9276: 	my %oldcenv=&Apache::lonnet::dump('environment',$$crsudom,$$crsunum);
1.444     albertel 9277: # Copy all files
1.637     www      9278: 	&Apache::lonclonecourse::copycoursefiles($cloneid,$$courseid,$args->{'datemode'},$args->{'dateshift'});
1.444     albertel 9279: # Restore URL
1.566     albertel 9280: 	$cenv{'url'}=$oldcenv{'url'};
1.444     albertel 9281: # Restore title
1.566     albertel 9282: 	$cenv{'description'}=$oldcenv{'description'};
1.444     albertel 9283: # Mark as cloned
1.566     albertel 9284: 	$cenv{'clonedfrom'}=$cloneid;
1.638     www      9285: # Need to clone grading mode
                   9286:         my %newenv=&Apache::lonnet::get('environment',['grading'],$$crsudom,$$crsunum);
                   9287:         $cenv{'grading'}=$newenv{'grading'};
                   9288: # Do not clone these environment entries
                   9289:         &Apache::lonnet::del('environment',
                   9290:                   ['default_enrollment_start_date',
                   9291:                    'default_enrollment_end_date',
                   9292:                    'question.email',
                   9293:                    'policy.email',
                   9294:                    'comment.email',
                   9295:                    'pch.users.denied',
                   9296:                    'plc.users.denied'],
                   9297:                    $$crsudom,$$crsunum);
1.444     albertel 9298:     }
1.566     albertel 9299: 
1.444     albertel 9300: #
                   9301: # Set environment (will override cloned, if existing)
                   9302: #
                   9303:     my @sections = ();
                   9304:     my @xlists = ();
                   9305:     if ($args->{'crstype'}) {
                   9306:         $cenv{'type'}=$args->{'crstype'};
                   9307:     }
                   9308:     if ($args->{'crsid'}) {
                   9309:         $cenv{'courseid'}=$args->{'crsid'};
                   9310:     }
                   9311:     if ($args->{'crscode'}) {
                   9312:         $cenv{'internal.coursecode'}=$args->{'crscode'};
                   9313:     }
                   9314:     if ($args->{'crsquota'} ne '') {
                   9315:         $cenv{'internal.coursequota'}=$args->{'crsquota'};
                   9316:     } else {
                   9317:         $cenv{'internal.coursequota'}=$args->{'crsquota'} = 20;
                   9318:     }
                   9319:     if ($args->{'ccuname'}) {
                   9320:         $cenv{'internal.courseowner'} = $args->{'ccuname'}.
                   9321:                                         ':'.$args->{'ccdomain'};
                   9322:     } else {
                   9323:         $cenv{'internal.courseowner'} = $args->{'curruser'};
                   9324:     }
                   9325:     my @badclasses = (); # Used to accumulate sections/crosslistings that did not pass classlist access check for course owner.
                   9326:     if ($args->{'crssections'}) {
                   9327:         $cenv{'internal.sectionnums'} = '';
                   9328:         if ($args->{'crssections'} =~ m/,/) {
                   9329:             @sections = split/,/,$args->{'crssections'};
                   9330:         } else {
                   9331:             $sections[0] = $args->{'crssections'};
                   9332:         }
                   9333:         if (@sections > 0) {
                   9334:             foreach my $item (@sections) {
                   9335:                 my ($sec,$gp) = split/:/,$item;
                   9336:                 my $class = $args->{'crscode'}.$sec;
                   9337:                 my $addcheck = &Apache::lonnet::auto_new_course($$crsunum,$$crsudom,$class,$cenv{'internal.courseowner'});
                   9338:                 $cenv{'internal.sectionnums'} .= $item.',';
                   9339:                 unless ($addcheck eq 'ok') {
                   9340:                     push @badclasses, $class;
                   9341:                 }
                   9342:             }
                   9343:             $cenv{'internal.sectionnums'} =~ s/,$//;
                   9344:         }
                   9345:     }
                   9346: # do not hide course coordinator from staff listing, 
                   9347: # even if privileged
                   9348:     $cenv{'nothideprivileged'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   9349: # add crosslistings
                   9350:     if ($args->{'crsxlist'}) {
                   9351:         $cenv{'internal.crosslistings'}='';
                   9352:         if ($args->{'crsxlist'} =~ m/,/) {
                   9353:             @xlists = split/,/,$args->{'crsxlist'};
                   9354:         } else {
                   9355:             $xlists[0] = $args->{'crsxlist'};
                   9356:         }
                   9357:         if (@xlists > 0) {
                   9358:             foreach my $item (@xlists) {
                   9359:                 my ($xl,$gp) = split/:/,$item;
                   9360:                 my $addcheck =  &Apache::lonnet::auto_new_course($$crsunum,$$crsudom,$xl,$cenv{'internal.courseowner'});
                   9361:                 $cenv{'internal.crosslistings'} .= $item.',';
                   9362:                 unless ($addcheck eq 'ok') {
                   9363:                     push @badclasses, $xl;
                   9364:                 }
                   9365:             }
                   9366:             $cenv{'internal.crosslistings'} =~ s/,$//;
                   9367:         }
                   9368:     }
                   9369:     if ($args->{'autoadds'}) {
                   9370:         $cenv{'internal.autoadds'}=$args->{'autoadds'};
                   9371:     }
                   9372:     if ($args->{'autodrops'}) {
                   9373:         $cenv{'internal.autodrops'}=$args->{'autodrops'};
                   9374:     }
                   9375: # check for notification of enrollment changes
                   9376:     my @notified = ();
                   9377:     if ($args->{'notify_owner'}) {
                   9378:         if ($args->{'ccuname'} ne '') {
                   9379:             push(@notified,$args->{'ccuname'}.':'.$args->{'ccdomain'});
                   9380:         }
                   9381:     }
                   9382:     if ($args->{'notify_dc'}) {
                   9383:         if ($uname ne '') { 
1.630     raeburn  9384:             push(@notified,$uname.':'.$udom);
1.444     albertel 9385:         }
                   9386:     }
                   9387:     if (@notified > 0) {
                   9388:         my $notifylist;
                   9389:         if (@notified > 1) {
                   9390:             $notifylist = join(',',@notified);
                   9391:         } else {
                   9392:             $notifylist = $notified[0];
                   9393:         }
                   9394:         $cenv{'internal.notifylist'} = $notifylist;
                   9395:     }
                   9396:     if (@badclasses > 0) {
                   9397:         my %lt=&Apache::lonlocal::texthash(
                   9398:                 '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',
                   9399:                 'dnhr' => 'does not have rights to access enrollment in these classes',
                   9400:                 'adby' => 'as determined by the policies of your institution on access to official classlists'
                   9401:         );
1.541     raeburn  9402:         my $badclass_msg = $cenv{'internal.courseowner'}.') - '.$lt{'dnhr'}.
                   9403:                            ' ('.$lt{'adby'}.')';
                   9404:         if ($context eq 'auto') {
                   9405:             $outcome .= $badclass_msg.$linefeed;
1.566     albertel 9406:             $outcome .= '<div class="LC_warning">'.$badclass_msg.$linefeed.'<ul>'."\n";
1.541     raeburn  9407:             foreach my $item (@badclasses) {
                   9408:                 if ($context eq 'auto') {
                   9409:                     $outcome .= " - $item\n";
                   9410:                 } else {
                   9411:                     $outcome .= "<li>$item</li>\n";
                   9412:                 }
                   9413:             }
                   9414:             if ($context eq 'auto') {
                   9415:                 $outcome .= $linefeed;
                   9416:             } else {
1.566     albertel 9417:                 $outcome .= "</ul><br /><br /></div>\n";
1.541     raeburn  9418:             }
                   9419:         } 
1.444     albertel 9420:     }
                   9421:     if ($args->{'no_end_date'}) {
                   9422:         $args->{'endaccess'} = 0;
                   9423:     }
                   9424:     $cenv{'internal.autostart'}=$args->{'enrollstart'};
                   9425:     $cenv{'internal.autoend'}=$args->{'enrollend'};
                   9426:     $cenv{'default_enrollment_start_date'}=$args->{'startaccess'};
                   9427:     $cenv{'default_enrollment_end_date'}=$args->{'endaccess'};
                   9428:     if ($args->{'showphotos'}) {
                   9429:       $cenv{'internal.showphotos'}=$args->{'showphotos'};
                   9430:     }
                   9431:     $cenv{'internal.authtype'} = $args->{'authtype'};
                   9432:     $cenv{'internal.autharg'} = $args->{'autharg'}; 
                   9433:     if ( ($cenv{'internal.authtype'} =~ /^krb/) && ($cenv{'internal.autoadds'} == 1)) {
                   9434:         if (! defined($cenv{'internal.autharg'}) || $cenv{'internal.autharg'}  eq '') {
1.541     raeburn  9435:             my $krb_msg = &mt('As you did not include the default Kerberos domain to be used for authentication in this class, the institutional data used by the automated enrollment process must include the Kerberos domain for each new student'); 
                   9436:             if ($context eq 'auto') {
                   9437:                 $outcome .= $krb_msg;
                   9438:             } else {
1.566     albertel 9439:                 $outcome .= '<span class="LC_error">'.$krb_msg.'</span>';
1.541     raeburn  9440:             }
                   9441:             $outcome .= $linefeed;
1.444     albertel 9442:         }
                   9443:     }
                   9444:     if (($args->{'ccdomain'}) && ($args->{'ccuname'})) {
                   9445:        if ($args->{'setpolicy'}) {
                   9446:            $cenv{'policy.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   9447:        }
                   9448:        if ($args->{'setcontent'}) {
                   9449:            $cenv{'question.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   9450:        }
                   9451:     }
                   9452:     if ($args->{'reshome'}) {
                   9453: 	$cenv{'reshome'}=$args->{'reshome'}.'/';
                   9454: 	$cenv{'reshome'}=~s/\/+$/\//;
                   9455:     }
                   9456: #
                   9457: # course has keyed access
                   9458: #
                   9459:     if ($args->{'setkeys'}) {
                   9460:        $cenv{'keyaccess'}='yes';
                   9461:     }
                   9462: # if specified, key authority is not course, but user
                   9463: # only active if keyaccess is yes
                   9464:     if ($args->{'keyauth'}) {
1.487     albertel 9465: 	my ($user,$domain) = split(':',$args->{'keyauth'});
                   9466: 	$user = &LONCAPA::clean_username($user);
                   9467: 	$domain = &LONCAPA::clean_username($domain);
1.488     foxr     9468: 	if ($user ne '' && $domain ne '') {
1.487     albertel 9469: 	    $cenv{'keyauth'}=$user.':'.$domain;
1.444     albertel 9470: 	}
                   9471:     }
                   9472: 
                   9473:     if ($args->{'disresdis'}) {
                   9474:         $cenv{'pch.roles.denied'}='st';
                   9475:     }
                   9476:     if ($args->{'disablechat'}) {
                   9477:         $cenv{'plc.roles.denied'}='st';
                   9478:     }
                   9479: 
                   9480:     # Record we've not yet viewed the Course Initialization Helper for this 
                   9481:     # course
                   9482:     $cenv{'course.helper.not.run'} = 1;
                   9483:     #
                   9484:     # Use new Randomseed
                   9485:     #
                   9486:     $cenv{'rndseed'}=&Apache::lonnet::latest_rnd_algorithm_id();;
                   9487:     $cenv{'receiptalg'}=&Apache::lonnet::latest_receipt_algorithm_id();;
                   9488:     #
                   9489:     # The encryption code and receipt prefix for this course
                   9490:     #
                   9491:     $cenv{'internal.encseed'}=$Apache::lonnet::perlvar{'lonReceipt'}.$$.time.int(rand(9999));
                   9492:     $cenv{'internal.encpref'}=100+int(9*rand(99));
                   9493:     #
                   9494:     # By default, use standard grading
                   9495:     if (!defined($cenv{'grading'})) { $cenv{'grading'} = 'standard'; }
                   9496: 
1.541     raeburn  9497:     $outcome .= $linefeed.&mt('Setting environment').': '.                 
                   9498:           &Apache::lonnet::put('environment',\%cenv,$$crsudom,$$crsunum).$linefeed;
1.444     albertel 9499: #
                   9500: # Open all assignments
                   9501: #
                   9502:     if ($args->{'openall'}) {
                   9503:        my $storeunder=$$crsudom.'_'.$$crsunum.'.0.opendate';
                   9504:        my %storecontent = ($storeunder         => time,
                   9505:                            $storeunder.'.type' => 'date_start');
                   9506:        
                   9507:        $outcome .= &mt('Opening all assignments').': '.&Apache::lonnet::cput
1.541     raeburn  9508:                  ('resourcedata',\%storecontent,$$crsudom,$$crsunum).$linefeed;
1.444     albertel 9509:    }
                   9510: #
                   9511: # Set first page
                   9512: #
                   9513:     unless (($args->{'nonstandard'}) || ($args->{'firstres'} eq 'blank')
                   9514: 	    || ($cloneid)) {
1.445     albertel 9515: 	use LONCAPA::map;
1.444     albertel 9516: 	$outcome .= &mt('Setting first resource').': ';
1.445     albertel 9517: 
                   9518: 	my $map = '/uploaded/'.$$crsudom.'/'.$$crsunum.'/default.sequence';
                   9519:         my ($errtext,$fatal)=&LONCAPA::map::mapread($map);
                   9520: 
1.444     albertel 9521:         $outcome .= ($fatal?$errtext:'read ok').' - ';
                   9522:         my $title; my $url;
                   9523:         if ($args->{'firstres'} eq 'syl') {
1.690     bisitz   9524: 	    $title=&mt('Syllabus');
1.444     albertel 9525:             $url='/public/'.$$crsudom.'/'.$$crsunum.'/syllabus';
                   9526:         } else {
1.690     bisitz   9527:             $title=&mt('Navigate Contents');
1.444     albertel 9528:             $url='/adm/navmaps';
                   9529:         }
1.445     albertel 9530: 
                   9531:         $LONCAPA::map::resources[1]=$title.':'.$url.':false:start:res';
                   9532: 	(my $outtext,$errtext) = &LONCAPA::map::storemap($map,1);
                   9533: 
                   9534: 	if ($errtext) { $fatal=2; }
1.541     raeburn  9535:         $outcome .= ($fatal?$errtext:'write ok').$linefeed;
1.444     albertel 9536:     }
1.566     albertel 9537: 
                   9538:     return (1,$outcome);
1.444     albertel 9539: }
                   9540: 
                   9541: ############################################################
                   9542: ############################################################
                   9543: 
1.378     raeburn  9544: sub course_type {
                   9545:     my ($cid) = @_;
                   9546:     if (!defined($cid)) {
                   9547:         $cid = $env{'request.course.id'};
                   9548:     }
1.404     albertel 9549:     if (defined($env{'course.'.$cid.'.type'})) {
                   9550:         return $env{'course.'.$cid.'.type'};
1.378     raeburn  9551:     } else {
                   9552:         return 'Course';
1.377     raeburn  9553:     }
                   9554: }
1.156     albertel 9555: 
1.406     raeburn  9556: sub group_term {
                   9557:     my $crstype = &course_type();
                   9558:     my %names = (
                   9559:                   'Course' => 'group',
                   9560:                   'Group' => 'team',
                   9561:                 );
                   9562:     return $names{$crstype};
                   9563: }
                   9564: 
1.156     albertel 9565: sub icon {
                   9566:     my ($file)=@_;
1.505     albertel 9567:     my $curfext = lc((split(/\./,$file))[-1]);
1.168     albertel 9568:     my $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/unknown.gif';
1.156     albertel 9569:     my $embstyle = &Apache::loncommon::fileembstyle($curfext);
1.168     albertel 9570:     if (!(!defined($embstyle) || $embstyle eq 'unk' || $embstyle eq 'hdn')) {
                   9571: 	if (-e  $Apache::lonnet::perlvar{'lonDocRoot'}.'/'.
                   9572: 	          $Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
                   9573: 	            $curfext.".gif") {
                   9574: 	    $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
                   9575: 		$curfext.".gif";
                   9576: 	}
                   9577:     }
1.249     albertel 9578:     return &lonhttpdurl($iconname);
1.154     albertel 9579: } 
1.84      albertel 9580: 
1.575     albertel 9581: sub lonhttpdurl {
1.692     www      9582: #
                   9583: # Had been used for "small fry" static images on separate port 8080.
                   9584: # Modify here if lightweight http functionality desired again.
                   9585: # Currently eliminated due to increasing firewall issues.
                   9586: #
1.575     albertel 9587:     my ($url)=@_;
1.692     www      9588:     return $url;
1.215     albertel 9589: }
                   9590: 
1.213     albertel 9591: sub connection_aborted {
                   9592:     my ($r)=@_;
                   9593:     $r->print(" ");$r->rflush();
                   9594:     my $c = $r->connection;
                   9595:     return $c->aborted();
                   9596: }
                   9597: 
1.221     foxr     9598: #    Escapes strings that may have embedded 's that will be put into
1.222     foxr     9599: #    strings as 'strings'.
                   9600: sub escape_single {
1.221     foxr     9601:     my ($input) = @_;
1.223     albertel 9602:     $input =~ s/\\/\\\\/g;	# Escape the \'s..(must be first)>
1.221     foxr     9603:     $input =~ s/\'/\\\'/g;	# Esacpe the 's....
                   9604:     return $input;
                   9605: }
1.223     albertel 9606: 
1.222     foxr     9607: #  Same as escape_single, but escape's "'s  This 
                   9608: #  can be used for  "strings"
                   9609: sub escape_double {
                   9610:     my ($input) = @_;
                   9611:     $input =~ s/\\/\\\\/g;	# Escape the /'s..(must be first)>
                   9612:     $input =~ s/\"/\\\"/g;	# Esacpe the "s....
                   9613:     return $input;
                   9614: }
1.223     albertel 9615:  
1.222     foxr     9616: #   Escapes the last element of a full URL.
                   9617: sub escape_url {
                   9618:     my ($url)   = @_;
1.238     raeburn  9619:     my @urlslices = split(/\//, $url,-1);
1.369     www      9620:     my $lastitem = &escape(pop(@urlslices));
1.223     albertel 9621:     return join('/',@urlslices).'/'.$lastitem;
1.222     foxr     9622: }
1.462     albertel 9623: 
                   9624: # -------------------------------------------------------- Initliaze user login
                   9625: sub init_user_environment {
1.463     albertel 9626:     my ($r, $username, $domain, $authhost, $form, $args) = @_;
1.462     albertel 9627:     my $lonids=$Apache::lonnet::perlvar{'lonIDsDir'};
                   9628: 
                   9629:     my $public=($username eq 'public' && $domain eq 'public');
                   9630: 
                   9631: # See if old ID present, if so, remove
                   9632: 
                   9633:     my ($filename,$cookie,$userroles);
                   9634:     my $now=time;
                   9635: 
                   9636:     if ($public) {
                   9637: 	my $max_public=100;
                   9638: 	my $oldest;
                   9639: 	my $oldest_time=0;
                   9640: 	for(my $next=1;$next<=$max_public;$next++) {
                   9641: 	    if (-e $lonids."/publicuser_$next.id") {
                   9642: 		my $mtime=(stat($lonids."/publicuser_$next.id"))[9];
                   9643: 		if ($mtime<$oldest_time || !$oldest_time) {
                   9644: 		    $oldest_time=$mtime;
                   9645: 		    $oldest=$next;
                   9646: 		}
                   9647: 	    } else {
                   9648: 		$cookie="publicuser_$next";
                   9649: 		last;
                   9650: 	    }
                   9651: 	}
                   9652: 	if (!$cookie) { $cookie="publicuser_$oldest"; }
                   9653:     } else {
1.463     albertel 9654: 	# if this isn't a robot, kill any existing non-robot sessions
                   9655: 	if (!$args->{'robot'}) {
                   9656: 	    opendir(DIR,$lonids);
                   9657: 	    while ($filename=readdir(DIR)) {
                   9658: 		if ($filename=~/^$username\_\d+\_$domain\_$authhost\.id$/) {
                   9659: 		    unlink($lonids.'/'.$filename);
                   9660: 		}
1.462     albertel 9661: 	    }
1.463     albertel 9662: 	    closedir(DIR);
1.462     albertel 9663: 	}
                   9664: # Give them a new cookie
1.463     albertel 9665: 	my $id = ($args->{'robot'} ? 'robot'.$args->{'robot'}
1.684     www      9666: 		                   : $now.$$.int(rand(10000)));
1.463     albertel 9667: 	$cookie="$username\_$id\_$domain\_$authhost";
1.462     albertel 9668:     
                   9669: # Initialize roles
                   9670: 
                   9671: 	$userroles=&Apache::lonnet::rolesinit($domain,$username,$authhost);
                   9672:     }
                   9673: # ------------------------------------ Check browser type and MathML capability
                   9674: 
                   9675:     my ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
                   9676:         $clientunicode,$clientos) = &decode_user_agent($r);
                   9677: 
                   9678: # -------------------------------------- Any accessibility options to remember?
                   9679:     if (($form->{'interface'}) && ($form->{'remember'} eq 'true')) {
                   9680: 	foreach my $option ('imagesuppress','appletsuppress',
                   9681: 			    'embedsuppress','fontenhance','blackwhite') {
                   9682: 	    if ($form->{$option} eq 'true') {
                   9683: 		&Apache::lonnet::put('environment',{$option => 'on'},
                   9684: 				     $domain,$username);
                   9685: 	    } else {
                   9686: 		&Apache::lonnet::del('environment',[$option],
                   9687: 				     $domain,$username);
                   9688: 	    }
                   9689: 	}
                   9690:     }
                   9691: # ------------------------------------------------------------- Get environment
                   9692: 
                   9693:     my %userenv = &Apache::lonnet::dump('environment',$domain,$username);
                   9694:     my ($tmp) = keys(%userenv);
                   9695:     if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
                   9696: 	# default remote control to off
                   9697: 	if ($userenv{'remote'} ne 'on') { $userenv{'remote'} = 'off'; }
                   9698:     } else {
                   9699: 	undef(%userenv);
                   9700:     }
                   9701:     if (($userenv{'interface'}) && (!$form->{'interface'})) {
                   9702: 	$form->{'interface'}=$userenv{'interface'};
                   9703:     }
                   9704:     $env{'environment.remote'}=$userenv{'remote'};
                   9705:     if ($userenv{'texengine'} eq 'ttm') { $clientmathml=1; }
                   9706: 
                   9707: # --------------- Do not trust query string to be put directly into environment
                   9708:     foreach my $option ('imagesuppress','appletsuppress',
                   9709: 			'embedsuppress','fontenhance','blackwhite',
                   9710: 			'interface','localpath','localres') {
                   9711: 	$form->{$option}=~s/[\n\r\=]//gs;
                   9712:     }
                   9713: # --------------------------------------------------------- Write first profile
                   9714: 
                   9715:     {
                   9716: 	my %initial_env = 
                   9717: 	    ("user.name"          => $username,
                   9718: 	     "user.domain"        => $domain,
                   9719: 	     "user.home"          => $authhost,
                   9720: 	     "browser.type"       => $clientbrowser,
                   9721: 	     "browser.version"    => $clientversion,
                   9722: 	     "browser.mathml"     => $clientmathml,
                   9723: 	     "browser.unicode"    => $clientunicode,
                   9724: 	     "browser.os"         => $clientos,
                   9725: 	     "server.domain"      => $Apache::lonnet::perlvar{'lonDefDomain'},
                   9726: 	     "request.course.fn"  => '',
                   9727: 	     "request.course.uri" => '',
                   9728: 	     "request.course.sec" => '',
                   9729: 	     "request.role"       => 'cm',
                   9730: 	     "request.role.adv"   => $env{'user.adv'},
                   9731: 	     "request.host"       => $ENV{'REMOTE_ADDR'},);
                   9732: 
                   9733:         if ($form->{'localpath'}) {
                   9734: 	    $initial_env{"browser.localpath"}  = $form->{'localpath'};
                   9735: 	    $initial_env{"browser.localres"}   = $form->{'localres'};
                   9736:         }
                   9737: 	
                   9738: 	if ($public) {
                   9739: 	    $initial_env{"environment.remote"} = "off";
                   9740: 	}
                   9741: 	if ($form->{'interface'}) {
                   9742: 	    $form->{'interface'}=~s/\W//gs;
                   9743: 	    $initial_env{"browser.interface"} = $form->{'interface'};
                   9744: 	    $env{'browser.interface'}=$form->{'interface'};
                   9745: 	    foreach my $option ('imagesuppress','appletsuppress',
                   9746: 				'embedsuppress','fontenhance','blackwhite') {
                   9747: 		if (($form->{$option} eq 'true') ||
                   9748: 		    ($userenv{$option} eq 'on')) {
                   9749: 		    $initial_env{"browser.$option"} = "on";
                   9750: 		}
                   9751: 	    }
                   9752: 	}
                   9753: 
                   9754: 	$env{'user.environment'} = "$lonids/$cookie.id";
                   9755: 	
                   9756: 	if (tie(my %disk_env,'GDBM_File',"$lonids/$cookie.id",
                   9757: 		 &GDBM_WRCREAT(),0640)) {
                   9758: 	    &_add_to_env(\%disk_env,\%initial_env);
                   9759: 	    &_add_to_env(\%disk_env,\%userenv,'environment.');
                   9760: 	    &_add_to_env(\%disk_env,$userroles);
1.463     albertel 9761: 	    if (ref($args->{'extra_env'})) {
                   9762: 		&_add_to_env(\%disk_env,$args->{'extra_env'});
                   9763: 	    }
1.462     albertel 9764: 	    untie(%disk_env);
                   9765: 	} else {
1.705     tempelho 9766: 	    &Apache::lonnet::logthis("<span style=\"color:blue;\">WARNING: ".
                   9767: 			   'Could not create environment storage in lonauth: '.$!.'</span>');
1.462     albertel 9768: 	    return 'error: '.$!;
                   9769: 	}
                   9770:     }
                   9771:     $env{'request.role'}='cm';
                   9772:     $env{'request.role.adv'}=$env{'user.adv'};
                   9773:     $env{'browser.type'}=$clientbrowser;
                   9774: 
                   9775:     return $cookie;
                   9776: 
                   9777: }
                   9778: 
                   9779: sub _add_to_env {
                   9780:     my ($idf,$env_data,$prefix) = @_;
1.676     raeburn  9781:     if (ref($env_data) eq 'HASH') {
                   9782:         while (my ($key,$value) = each(%$env_data)) {
                   9783: 	    $idf->{$prefix.$key} = $value;
                   9784: 	    $env{$prefix.$key}   = $value;
                   9785:         }
1.462     albertel 9786:     }
                   9787: }
                   9788: 
1.685     tempelho 9789: # --- Get the symbolic name of a problem and the url
                   9790: sub get_symb {
                   9791:     my ($request,$silent) = @_;
                   9792:     (my $url=$env{'form.url'}) =~ s-^http://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
                   9793:     my $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url)));
                   9794:     if ($symb eq '') {
                   9795:         if (!$silent) {
                   9796:             $request->print("Unable to handle ambiguous references:$url:.");
                   9797:             return ();
                   9798:         }
                   9799:     }
                   9800:     &Apache::lonenc::check_decrypt(\$symb);
                   9801:     return ($symb);
                   9802: }
                   9803: 
                   9804: # --------------------------------------------------------------Get annotation
                   9805: 
                   9806: sub get_annotation {
                   9807:     my ($symb,$enc) = @_;
                   9808: 
                   9809:     my $key = $symb;
                   9810:     if (!$enc) {
                   9811:         $key =
                   9812:             &Apache::lonnet::clutter((&Apache::lonnet::decode_symb($symb))[2]);
                   9813:     }
                   9814:     my %annotation=&Apache::lonnet::get('nohist_annotations',[$key]);
                   9815:     return $annotation{$key};
                   9816: }
                   9817: 
                   9818: sub clean_symb {
                   9819:     my ($symb) = @_;
                   9820: 
                   9821:     &Apache::lonenc::check_decrypt(\$symb);
                   9822:     my $enc = $env{'request.enc'};
                   9823:     delete($env{'request.enc'});
                   9824: 
                   9825:     return ($symb,$enc);
                   9826: }
1.462     albertel 9827: 
1.41      ng       9828: =pod
                   9829: 
                   9830: =back
                   9831: 
1.112     bowersj2 9832: =cut
1.41      ng       9833: 
1.112     bowersj2 9834: 1;
                   9835: __END__;
1.41      ng       9836: 

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