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

1.10      albertel    1: # The LearningOnline Network with CAPA
1.1       albertel    2: # a pile of common routines
1.10      albertel    3: #
1.948.2.8! raeburn     4: # $Id: loncommon.pm,v 1.948.2.7 2010/08/14 04:32:03 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');
1.776     bisitz    409: <script type="text/javascript" language="Javascript">
1.824     bisitz    410: // <![CDATA[
1.74      www       411:     var stdeditbrowser;
1.793     raeburn   412:     function openstdbrowser(formname,uname,udom,roleflag,ignorefilter,courseadvonly) {
1.74      www       413:         var url = '/adm/pickstudent?';
                    414:         var filter;
1.558     albertel  415: 	if (!ignorefilter) {
                    416: 	    eval('filter=document.'+formname+'.'+uname+'.value;');
                    417: 	}
1.74      www       418:         if (filter != null) {
                    419:            if (filter != '') {
                    420:                url += 'filter='+filter+'&';
                    421: 	   }
                    422:         }
                    423:         url += 'form=' + formname + '&unameelement='+uname+
                    424:                                     '&udomelement='+udom;
1.111     www       425: 	if (roleflag) { url+="&roles=1"; }
1.793     raeburn   426:         if (courseadvonly) { url+="&courseadvonly=1"; }
1.102     www       427:         var title = 'Student_Browser';
1.74      www       428:         var options = 'scrollbars=1,resizable=1,menubar=0';
                    429:         options += ',width=700,height=600';
                    430:         stdeditbrowser = open(url,title,options,'1');
                    431:         stdeditbrowser.focus();
                    432:     }
1.824     bisitz    433: // ]]>
1.74      www       434: </script>
                    435: ENDSTDBRW
                    436: }
1.42      matthew   437: 
1.74      www       438: sub selectstudent_link {
1.793     raeburn   439:    my ($form,$unameele,$udomele,$courseadvonly)=@_;
                    440:    my $callargs = "'".$form."','".$unameele."','".$udomele."'";
1.258     albertel  441:    if ($env{'request.course.id'}) {  
1.302     albertel  442:        if (!&Apache::lonnet::allowed('srm',$env{'request.course.id'})
                    443: 	   && !&Apache::lonnet::allowed('srm',$env{'request.course.id'}.
                    444: 					'/'.$env{'request.course.sec'})) {
1.111     www       445: 	   return '';
                    446:        }
1.793     raeburn   447:        if ($courseadvonly)  {
                    448:            $callargs .= ",'',1,1";
                    449:        }
                    450:        return '<span class="LC_nobreak">'.
                    451:               '<a href="javascript:openstdbrowser('.$callargs.');">'.
                    452:               &mt('Select User').'</a></span>';
1.74      www       453:    }
1.258     albertel  454:    if ($env{'request.role'}=~/^(au|dc|su)/) {
1.793     raeburn   455:        $callargs .= ",1"; 
                    456:        return '<span class="LC_nobreak">'.
                    457:               '<a href="javascript:openstdbrowser('.$callargs.');">'.
                    458:               &mt('Select User').'</a></span>';
1.111     www       459:    }
                    460:    return '';
1.91      www       461: }
                    462: 
1.653     raeburn   463: sub authorbrowser_javascript {
                    464:     return <<"ENDAUTHORBRW";
1.776     bisitz    465: <script type="text/javascript" language="JavaScript">
1.824     bisitz    466: // <![CDATA[
1.653     raeburn   467: var stdeditbrowser;
                    468: 
                    469: function openauthorbrowser(formname,udom) {
                    470:     var url = '/adm/pickauthor?';
                    471:     url += 'form='+formname+'&roledom='+udom;
                    472:     var title = 'Author_Browser';
                    473:     var options = 'scrollbars=1,resizable=1,menubar=0';
                    474:     options += ',width=700,height=600';
                    475:     stdeditbrowser = open(url,title,options,'1');
                    476:     stdeditbrowser.focus();
                    477: }
                    478: 
1.824     bisitz    479: // ]]>
1.653     raeburn   480: </script>
                    481: ENDAUTHORBRW
                    482: }
                    483: 
1.91      www       484: sub coursebrowser_javascript {
1.909     raeburn   485:     my ($domainfilter,$sec_element,$formname,$role_element,$crstype) = @_;
1.932     raeburn   486:     my $wintitle = 'Course_Browser';
1.931     raeburn   487:     if ($crstype eq 'Community') {
1.932     raeburn   488:         $wintitle = 'Community_Browser';
1.909     raeburn   489:     }
1.876     raeburn   490:     my $id_functions = &javascript_index_functions();
                    491:     my $output = '
1.776     bisitz    492: <script type="text/javascript" language="JavaScript">
1.824     bisitz    493: // <![CDATA[
1.468     raeburn   494:     var stdeditbrowser;'."\n";
1.876     raeburn   495: 
                    496:     $output .= <<"ENDSTDBRW";
1.909     raeburn   497:     function opencrsbrowser(formname,uname,udom,desc,extra_element,multflag,type,type_elem) {
1.91      www       498:         var url = '/adm/pickcourse?';
1.895     raeburn   499:         var formid = getFormIdByName(formname);
1.876     raeburn   500:         var domainfilter = getDomainFromSelectbox(formname,udom);
1.128     albertel  501:         if (domainfilter != null) {
                    502:            if (domainfilter != '') {
                    503:                url += 'domainfilter='+domainfilter+'&';
                    504: 	   }
                    505:         }
1.91      www       506:         url += 'form=' + formname + '&cnumelement='+uname+
1.187     albertel  507: 	                            '&cdomelement='+udom+
                    508:                                     '&cnameelement='+desc;
1.468     raeburn   509:         if (extra_element !=null && extra_element != '') {
1.594     raeburn   510:             if (formname == 'rolechoice' || formname == 'studentform') {
1.468     raeburn   511:                 url += '&roleelement='+extra_element;
                    512:                 if (domainfilter == null || domainfilter == '') {
                    513:                     url += '&domainfilter='+extra_element;
                    514:                 }
1.234     raeburn   515:             }
1.468     raeburn   516:             else {
                    517:                 if (formname == 'portform') {
                    518:                     url += '&setroles='+extra_element;
1.800     raeburn   519:                 } else {
                    520:                     if (formname == 'rules') {
                    521:                         url += '&fixeddom='+extra_element; 
                    522:                     }
1.468     raeburn   523:                 }
                    524:             }     
1.230     raeburn   525:         }
1.909     raeburn   526:         if (type != null && type != '') {
                    527:             url += '&type='+type;
                    528:         }
                    529:         if (type_elem != null && type_elem != '') {
                    530:             url += '&typeelement='+type_elem;
                    531:         }
1.872     raeburn   532:         if (formname == 'ccrs') {
                    533:             var ownername = document.forms[formid].ccuname.value;
                    534:             var ownerdom =  document.forms[formid].ccdomain.options[document.forms[formid].ccdomain.selectedIndex].value;
                    535:             url += '&cloner='+ownername+':'+ownerdom;
                    536:         }
1.293     raeburn   537:         if (multflag !=null && multflag != '') {
                    538:             url += '&multiple='+multflag;
                    539:         }
1.909     raeburn   540:         var title = '$wintitle';
1.91      www       541:         var options = 'scrollbars=1,resizable=1,menubar=0';
                    542:         options += ',width=700,height=600';
                    543:         stdeditbrowser = open(url,title,options,'1');
                    544:         stdeditbrowser.focus();
                    545:     }
1.876     raeburn   546: $id_functions
                    547: ENDSTDBRW
1.905     raeburn   548:     if (($sec_element ne '') || ($role_element ne '')) {
                    549:         $output .= &setsec_javascript($sec_element,$formname,$role_element);
1.876     raeburn   550:     }
                    551:     $output .= '
                    552: // ]]>
                    553: </script>';
                    554:     return $output;
                    555: }
                    556: 
                    557: sub javascript_index_functions {
                    558:     return <<"ENDJS";
                    559: 
                    560: function getFormIdByName(formname) {
                    561:     for (var i=0;i<document.forms.length;i++) {
                    562:         if (document.forms[i].name == formname) {
                    563:             return i;
                    564:         }
                    565:     }
                    566:     return -1;
                    567: }
                    568: 
                    569: function getIndexByName(formid,item) {
                    570:     for (var i=0;i<document.forms[formid].elements.length;i++) {
                    571:         if (document.forms[formid].elements[i].name == item) {
                    572:             return i;
                    573:         }
                    574:     }
                    575:     return -1;
                    576: }
1.468     raeburn   577: 
1.876     raeburn   578: function getDomainFromSelectbox(formname,udom) {
                    579:     var userdom;
                    580:     var formid = getFormIdByName(formname);
                    581:     if (formid > -1) {
                    582:         var domid = getIndexByName(formid,udom);
                    583:         if (domid > -1) {
                    584:             if (document.forms[formid].elements[domid].type == 'select-one') {
                    585:                 userdom=document.forms[formid].elements[domid].options[document.forms[formid].elements[domid].selectedIndex].value;
                    586:             }
                    587:             if (document.forms[formid].elements[domid].type == 'hidden') {
                    588:                 userdom=document.forms[formid].elements[domid].value;
1.468     raeburn   589:             }
                    590:         }
                    591:     }
1.876     raeburn   592:     return userdom;
                    593: }
                    594: 
                    595: ENDJS
1.468     raeburn   596: 
1.876     raeburn   597: }
                    598: 
                    599: sub userbrowser_javascript {
                    600:     my $id_functions = &javascript_index_functions();
                    601:     return <<"ENDUSERBRW";
                    602: 
1.888     raeburn   603: function openuserbrowser(formname,uname,udom,ulast,ufirst,uemail,hideudom,crsdom,caller) {
1.876     raeburn   604:     var url = '/adm/pickuser?';
                    605:     var userdom = getDomainFromSelectbox(formname,udom);
                    606:     if (userdom != null) {
                    607:        if (userdom != '') {
                    608:            url += 'srchdom='+userdom+'&';
                    609:        }
                    610:     }
                    611:     url += 'form=' + formname + '&unameelement='+uname+
                    612:                                 '&udomelement='+udom+
                    613:                                 '&ulastelement='+ulast+
                    614:                                 '&ufirstelement='+ufirst+
                    615:                                 '&uemailelement='+uemail+
1.881     raeburn   616:                                 '&hideudomelement='+hideudom+
                    617:                                 '&coursedom='+crsdom;
1.888     raeburn   618:     if ((caller != null) && (caller != undefined)) {
                    619:         url += '&caller='+caller;
                    620:     }
1.876     raeburn   621:     var title = 'User_Browser';
                    622:     var options = 'scrollbars=1,resizable=1,menubar=0';
                    623:     options += ',width=700,height=600';
                    624:     var stdeditbrowser = open(url,title,options,'1');
                    625:     stdeditbrowser.focus();
                    626: }
                    627: 
1.888     raeburn   628: function fix_domain (formname,udom,origdom,uname) {
1.876     raeburn   629:     var formid = getFormIdByName(formname);
                    630:     if (formid > -1) {
1.888     raeburn   631:         var unameid = getIndexByName(formid,uname);
1.876     raeburn   632:         var domid = getIndexByName(formid,udom);
                    633:         var hidedomid = getIndexByName(formid,origdom);
                    634:         if (hidedomid > -1) {
                    635:             var fixeddom = document.forms[formid].elements[hidedomid].value;
1.888     raeburn   636:             var unameval = document.forms[formid].elements[unameid].value;
                    637:             if ((fixeddom != '') && (fixeddom != undefined) && (fixeddom != null) && (unameval != '') && (unameval != undefined) && (unameval != null)) {
                    638:                 if (domid > -1) {
                    639:                     var slct = document.forms[formid].elements[domid];
                    640:                     if (slct.type == 'select-one') {
                    641:                         var i;
                    642:                         for (i=0;i<slct.length;i++) {
                    643:                             if (slct.options[i].value==fixeddom) { slct.selectedIndex=i; }
                    644:                         }
                    645:                     }
                    646:                     if (slct.type == 'hidden') {
                    647:                         slct.value = fixeddom;
1.876     raeburn   648:                     }
                    649:                 }
1.468     raeburn   650:             }
                    651:         }
                    652:     }
1.876     raeburn   653:     return;
                    654: }
                    655: 
                    656: $id_functions
                    657: ENDUSERBRW
1.468     raeburn   658: }
                    659: 
                    660: sub setsec_javascript {
1.905     raeburn   661:     my ($sec_element,$formname,$role_element) = @_;
                    662:     my (@courserolenames,@communityrolenames,$rolestr,$courserolestr,
                    663:         $communityrolestr);
                    664:     if ($role_element ne '') {
                    665:         my @allroles = ('st','ta','ep','in','ad');
                    666:         foreach my $crstype ('Course','Community') {
                    667:             if ($crstype eq 'Community') {
                    668:                 foreach my $role (@allroles) {
                    669:                     push(@communityrolenames,&Apache::lonnet::plaintext($role,$crstype));
                    670:                 }
                    671:                 push(@communityrolenames,&Apache::lonnet::plaintext('co'));
                    672:             } else {
                    673:                 foreach my $role (@allroles) {
                    674:                     push(@courserolenames,&Apache::lonnet::plaintext($role,$crstype));
                    675:                 }
                    676:                 push(@courserolenames,&Apache::lonnet::plaintext('cc'));
                    677:             }
                    678:         }
                    679:         $rolestr = '"'.join('","',@allroles).'"';
                    680:         $courserolestr = '"'.join('","',@courserolenames).'"';
                    681:         $communityrolestr = '"'.join('","',@communityrolenames).'"';
                    682:     }
1.468     raeburn   683:     my $setsections = qq|
                    684: function setSect(sectionlist) {
1.629     raeburn   685:     var sectionsArray = new Array();
                    686:     if ((sectionlist != '') && (typeof sectionlist != "undefined")) {
                    687:         sectionsArray = sectionlist.split(",");
                    688:     }
1.468     raeburn   689:     var numSections = sectionsArray.length;
                    690:     document.$formname.$sec_element.length = 0;
                    691:     if (numSections == 0) {
                    692:         document.$formname.$sec_element.multiple=false;
                    693:         document.$formname.$sec_element.size=1;
                    694:         document.$formname.$sec_element.options[0] = new Option('No existing sections','',false,false)
                    695:     } else {
                    696:         if (numSections == 1) {
                    697:             document.$formname.$sec_element.multiple=false;
                    698:             document.$formname.$sec_element.size=1;
                    699:             document.$formname.$sec_element.options[0] = new Option('Select','',true,true);
                    700:             document.$formname.$sec_element.options[1] = new Option('No section','',false,false)
                    701:             document.$formname.$sec_element.options[2] = new Option(sectionsArray[0],sectionsArray[0],false,false);
                    702:         } else {
                    703:             for (var i=0; i<numSections; i++) {
                    704:                 document.$formname.$sec_element.options[i] = new Option(sectionsArray[i],sectionsArray[i],false,false)
                    705:             }
                    706:             document.$formname.$sec_element.multiple=true
                    707:             if (numSections < 3) {
                    708:                 document.$formname.$sec_element.size=numSections;
                    709:             } else {
                    710:                 document.$formname.$sec_element.size=3;
                    711:             }
                    712:             document.$formname.$sec_element.options[0].selected = false
                    713:         }
                    714:     }
1.91      www       715: }
1.905     raeburn   716: 
                    717: function setRole(crstype) {
1.468     raeburn   718: |;
1.905     raeburn   719:     if ($role_element eq '') {
                    720:         $setsections .= '    return;
                    721: }
                    722: ';
                    723:     } else {
                    724:         $setsections .= qq|
                    725:     var elementLength = document.$formname.$role_element.length;
                    726:     var allroles = Array($rolestr);
                    727:     var courserolenames = Array($courserolestr);
                    728:     var communityrolenames = Array($communityrolestr);
                    729:     if (elementLength != undefined) {
                    730:         if (document.$formname.$role_element.options[5].value == 'cc') {
                    731:             if (crstype == 'Course') {
                    732:                 return;
                    733:             } else {
                    734:                 allroles[5] = 'co';
                    735:                 for (var i=0; i<6; i++) {
                    736:                     document.$formname.$role_element.options[i].value = allroles[i];
                    737:                     document.$formname.$role_element.options[i].text = communityrolenames[i];
                    738:                 }
                    739:             }
                    740:         } else {
                    741:             if (crstype == 'Community') {
                    742:                 return;
                    743:             } else {
                    744:                 allroles[5] = 'cc';
                    745:                 for (var i=0; i<6; i++) {
                    746:                     document.$formname.$role_element.options[i].value = allroles[i];
                    747:                     document.$formname.$role_element.options[i].text = courserolenames[i];
                    748:                 }
                    749:             }
                    750:         }
                    751:     }
                    752:     return;
                    753: }
                    754: |;
                    755:     }
1.468     raeburn   756:     return $setsections;
                    757: }
                    758: 
1.91      www       759: sub selectcourse_link {
1.909     raeburn   760:    my ($form,$unameele,$udomele,$desc,$extra_element,$multflag,$selecttype,
                    761:        $typeelement) = @_;
                    762:    my $type = $selecttype;
1.871     raeburn   763:    my $linktext = &mt('Select Course');
                    764:    if ($selecttype eq 'Community') {
1.909     raeburn   765:        $linktext = &mt('Select Community');
1.906     raeburn   766:    } elsif ($selecttype eq 'Course/Community') {
                    767:        $linktext = &mt('Select Course/Community');
1.909     raeburn   768:        $type = '';
1.871     raeburn   769:    }
1.787     bisitz    770:    return '<span class="LC_nobreak">'
                    771:          ."<a href='"
                    772:          .'javascript:opencrsbrowser("'.$form.'","'.$unameele
                    773:          .'","'.$udomele.'","'.$desc.'","'.$extra_element
1.909     raeburn   774:          .'","'.$multflag.'","'.$type.'","'.$typeelement.'");'
1.871     raeburn   775:          ."'>".$linktext.'</a>'
1.787     bisitz    776:          .'</span>';
1.74      www       777: }
1.42      matthew   778: 
1.653     raeburn   779: sub selectauthor_link {
                    780:    my ($form,$udom)=@_;
                    781:    return '<a href="javascript:openauthorbrowser('."'$form','$udom'".');">'.
                    782:           &mt('Select Author').'</a>';
                    783: }
                    784: 
1.876     raeburn   785: sub selectuser_link {
1.881     raeburn   786:     my ($form,$unameelem,$domelem,$lastelem,$firstelem,$emailelem,$hdomelem,
1.888     raeburn   787:         $coursedom,$linktext,$caller) = @_;
1.876     raeburn   788:     return '<a href="javascript:openuserbrowser('."'$form','$unameelem','$domelem',".
1.888     raeburn   789:            "'$lastelem','$firstelem','$emailelem','$hdomelem','$coursedom','$caller'".
1.881     raeburn   790:            ');">'.$linktext.'</a>';
1.876     raeburn   791: }
                    792: 
1.273     raeburn   793: sub check_uncheck_jscript {
                    794:     my $jscript = <<"ENDSCRT";
                    795: function checkAll(field) {
                    796:     if (field.length > 0) {
                    797:         for (i = 0; i < field.length; i++) {
                    798:             field[i].checked = true ;
                    799:         }
                    800:     } else {
                    801:         field.checked = true
                    802:     }
                    803: }
                    804:  
                    805: function uncheckAll(field) {
                    806:     if (field.length > 0) {
                    807:         for (i = 0; i < field.length; i++) {
                    808:             field[i].checked = false ;
1.543     albertel  809:         }
                    810:     } else {
1.273     raeburn   811:         field.checked = false ;
                    812:     }
                    813: }
                    814: ENDSCRT
                    815:     return $jscript;
                    816: }
                    817: 
1.656     www       818: sub select_timezone {
1.659     raeburn   819:    my ($name,$selected,$onchange,$includeempty)=@_;
                    820:    my $output='<select name="'.$name.'" '.$onchange.'>'."\n";
                    821:    if ($includeempty) {
                    822:        $output .= '<option value=""';
                    823:        if (($selected eq '') || ($selected eq 'local')) {
                    824:            $output .= ' selected="selected" ';
                    825:        }
                    826:        $output .= '> </option>';
                    827:    }
1.657     raeburn   828:    my @timezones = DateTime::TimeZone->all_names;
                    829:    foreach my $tzone (@timezones) {
                    830:        $output.= '<option value="'.$tzone.'"';
                    831:        if ($tzone eq $selected) {
                    832:            $output.=' selected="selected"';
                    833:        }
                    834:        $output.=">$tzone</option>\n";
1.656     www       835:    }
                    836:    $output.="</select>";
                    837:    return $output;
                    838: }
1.273     raeburn   839: 
1.687     raeburn   840: sub select_datelocale {
                    841:     my ($name,$selected,$onchange,$includeempty)=@_;
                    842:     my $output='<select name="'.$name.'" '.$onchange.'>'."\n";
                    843:     if ($includeempty) {
                    844:         $output .= '<option value=""';
                    845:         if ($selected eq '') {
                    846:             $output .= ' selected="selected" ';
                    847:         }
                    848:         $output .= '> </option>';
                    849:     }
                    850:     my (@possibles,%locale_names);
                    851:     my @locales = DateTime::Locale::Catalog::Locales;
                    852:     foreach my $locale (@locales) {
                    853:         if (ref($locale) eq 'HASH') {
                    854:             my $id = $locale->{'id'};
                    855:             if ($id ne '') {
                    856:                 my $en_terr = $locale->{'en_territory'};
                    857:                 my $native_terr = $locale->{'native_territory'};
1.695     raeburn   858:                 my @languages = &Apache::lonlocal::preferred_languages();
1.687     raeburn   859:                 if (grep(/^en$/,@languages) || !@languages) {
                    860:                     if ($en_terr ne '') {
                    861:                         $locale_names{$id} = '('.$en_terr.')';
                    862:                     } elsif ($native_terr ne '') {
                    863:                         $locale_names{$id} = $native_terr;
                    864:                     }
                    865:                 } else {
                    866:                     if ($native_terr ne '') {
                    867:                         $locale_names{$id} = $native_terr.' ';
                    868:                     } elsif ($en_terr ne '') {
                    869:                         $locale_names{$id} = '('.$en_terr.')';
                    870:                     }
                    871:                 }
                    872:                 push (@possibles,$id);
                    873:             }
                    874:         }
                    875:     }
                    876:     foreach my $item (sort(@possibles)) {
                    877:         $output.= '<option value="'.$item.'"';
                    878:         if ($item eq $selected) {
                    879:             $output.=' selected="selected"';
                    880:         }
                    881:         $output.=">$item";
                    882:         if ($locale_names{$item} ne '') {
                    883:             $output.="  $locale_names{$item}</option>\n";
                    884:         }
                    885:         $output.="</option>\n";
                    886:     }
                    887:     $output.="</select>";
                    888:     return $output;
                    889: }
                    890: 
1.792     raeburn   891: sub select_language {
                    892:     my ($name,$selected,$includeempty) = @_;
                    893:     my %langchoices;
                    894:     if ($includeempty) {
                    895:         %langchoices = ('' => 'No language preference');
                    896:     }
                    897:     foreach my $id (&languageids()) {
                    898:         my $code = &supportedlanguagecode($id);
                    899:         if ($code) {
                    900:             $langchoices{$code} = &plainlanguagedescription($id);
                    901:         }
                    902:     }
1.948.2.7  raeburn   903:     return &select_form($selected,$name,\%langchoices);
1.792     raeburn   904: }
                    905: 
1.42      matthew   906: =pod
1.36      matthew   907: 
1.648     raeburn   908: =item * &linked_select_forms(...)
1.36      matthew   909: 
                    910: linked_select_forms returns a string containing a <script></script> block
                    911: and html for two <select> menus.  The select menus will be linked in that
                    912: changing the value of the first menu will result in new values being placed
                    913: in the second menu.  The values in the select menu will appear in alphabetical
1.609     raeburn   914: order unless a defined order is provided.
1.36      matthew   915: 
                    916: linked_select_forms takes the following ordered inputs:
                    917: 
                    918: =over 4
                    919: 
1.112     bowersj2  920: =item * $formname, the name of the <form> tag
1.36      matthew   921: 
1.112     bowersj2  922: =item * $middletext, the text which appears between the <select> tags
1.36      matthew   923: 
1.112     bowersj2  924: =item * $firstdefault, the default value for the first menu
1.36      matthew   925: 
1.112     bowersj2  926: =item * $firstselectname, the name of the first <select> tag
1.36      matthew   927: 
1.112     bowersj2  928: =item * $secondselectname, the name of the second <select> tag
1.36      matthew   929: 
1.112     bowersj2  930: =item * $hashref, a reference to a hash containing the data for the menus.
1.36      matthew   931: 
1.609     raeburn   932: =item * $menuorder, the order of values in the first menu
                    933: 
1.41      ng        934: =back 
                    935: 
1.36      matthew   936: Below is an example of such a hash.  Only the 'text', 'default', and 
                    937: 'select2' keys must appear as stated.  keys(%menu) are the possible 
                    938: values for the first select menu.  The text that coincides with the 
1.41      ng        939: first menu value is given in $menu{$choice1}->{'text'}.  The values 
1.36      matthew   940: and text for the second menu are given in the hash pointed to by 
                    941: $menu{$choice1}->{'select2'}.  
                    942: 
1.112     bowersj2  943:  my %menu = ( A1 => { text =>"Choice A1" ,
                    944:                        default => "B3",
                    945:                        select2 => { 
                    946:                            B1 => "Choice B1",
                    947:                            B2 => "Choice B2",
                    948:                            B3 => "Choice B3",
                    949:                            B4 => "Choice B4"
1.609     raeburn   950:                            },
                    951:                        order => ['B4','B3','B1','B2'],
1.112     bowersj2  952:                    },
                    953:                A2 => { text =>"Choice A2" ,
                    954:                        default => "C2",
                    955:                        select2 => { 
                    956:                            C1 => "Choice C1",
                    957:                            C2 => "Choice C2",
                    958:                            C3 => "Choice C3"
1.609     raeburn   959:                            },
                    960:                        order => ['C2','C1','C3'],
1.112     bowersj2  961:                    },
                    962:                A3 => { text =>"Choice A3" ,
                    963:                        default => "D6",
                    964:                        select2 => { 
                    965:                            D1 => "Choice D1",
                    966:                            D2 => "Choice D2",
                    967:                            D3 => "Choice D3",
                    968:                            D4 => "Choice D4",
                    969:                            D5 => "Choice D5",
                    970:                            D6 => "Choice D6",
                    971:                            D7 => "Choice D7"
1.609     raeburn   972:                            },
                    973:                        order => ['D4','D3','D2','D1','D7','D6','D5'],
1.112     bowersj2  974:                    }
                    975:                );
1.36      matthew   976: 
                    977: =cut
                    978: 
                    979: sub linked_select_forms {
                    980:     my ($formname,
                    981:         $middletext,
                    982:         $firstdefault,
                    983:         $firstselectname,
                    984:         $secondselectname, 
1.609     raeburn   985:         $hashref,
                    986:         $menuorder,
1.36      matthew   987:         ) = @_;
                    988:     my $second = "document.$formname.$secondselectname";
                    989:     my $first = "document.$formname.$firstselectname";
                    990:     # output the javascript to do the changing
                    991:     my $result = '';
1.776     bisitz    992:     $result.='<script type="text/javascript" language="JavaScript">'."\n";
1.824     bisitz    993:     $result.="// <![CDATA[\n";
1.36      matthew   994:     $result.="var select2data = new Object();\n";
                    995:     $" = '","';
                    996:     my $debug = '';
                    997:     foreach my $s1 (sort(keys(%$hashref))) {
                    998:         $result.="select2data.d_$s1 = new Object();\n";        
                    999:         $result.="select2data.d_$s1.def = new String('".
                   1000:             $hashref->{$s1}->{'default'}."');\n";
1.609     raeburn  1001:         $result.="select2data.d_$s1.values = new Array(";
1.36      matthew  1002:         my @s2values = sort(keys( %{ $hashref->{$s1}->{'select2'} } ));
1.609     raeburn  1003:         if (ref($hashref->{$s1}->{'order'}) eq 'ARRAY') {
                   1004:             @s2values = @{$hashref->{$s1}->{'order'}};
                   1005:         }
1.36      matthew  1006:         $result.="\"@s2values\");\n";
                   1007:         $result.="select2data.d_$s1.texts = new Array(";        
                   1008:         my @s2texts;
                   1009:         foreach my $value (@s2values) {
                   1010:             push @s2texts, $hashref->{$s1}->{'select2'}->{$value};
                   1011:         }
                   1012:         $result.="\"@s2texts\");\n";
                   1013:     }
                   1014:     $"=' ';
                   1015:     $result.= <<"END";
                   1016: 
                   1017: function select1_changed() {
                   1018:     // Determine new choice
                   1019:     var newvalue = "d_" + $first.value;
                   1020:     // update select2
                   1021:     var values     = select2data[newvalue].values;
                   1022:     var texts      = select2data[newvalue].texts;
                   1023:     var select2def = select2data[newvalue].def;
                   1024:     var i;
                   1025:     // out with the old
                   1026:     for (i = 0; i < $second.options.length; i++) {
                   1027:         $second.options[i] = null;
                   1028:     }
                   1029:     // in with the nuclear
                   1030:     for (i=0;i<values.length; i++) {
                   1031:         $second.options[i] = new Option(values[i]);
1.143     matthew  1032:         $second.options[i].value = values[i];
1.36      matthew  1033:         $second.options[i].text = texts[i];
                   1034:         if (values[i] == select2def) {
                   1035:             $second.options[i].selected = true;
                   1036:         }
                   1037:     }
                   1038: }
1.824     bisitz   1039: // ]]>
1.36      matthew  1040: </script>
                   1041: END
                   1042:     # output the initial values for the selection lists
                   1043:     $result .= "<select size=\"1\" name=\"$firstselectname\" onchange=\"select1_changed()\">\n";
1.609     raeburn  1044:     my @order = sort(keys(%{$hashref}));
                   1045:     if (ref($menuorder) eq 'ARRAY') {
                   1046:         @order = @{$menuorder};
                   1047:     }
                   1048:     foreach my $value (@order) {
1.36      matthew  1049:         $result.="    <option value=\"$value\" ";
1.253     albertel 1050:         $result.=" selected=\"selected\" " if ($value eq $firstdefault);
1.119     www      1051:         $result.=">".&mt($hashref->{$value}->{'text'})."</option>\n";
1.36      matthew  1052:     }
                   1053:     $result .= "</select>\n";
                   1054:     my %select2 = %{$hashref->{$firstdefault}->{'select2'}};
                   1055:     $result .= $middletext;
                   1056:     $result .= "<select size=\"1\" name=\"$secondselectname\">\n";
                   1057:     my $seconddefault = $hashref->{$firstdefault}->{'default'};
1.609     raeburn  1058:     
                   1059:     my @secondorder = sort(keys(%select2));
                   1060:     if (ref($hashref->{$firstdefault}->{'order'}) eq 'ARRAY') {
                   1061:         @secondorder = @{$hashref->{$firstdefault}->{'order'}};
                   1062:     }
                   1063:     foreach my $value (@secondorder) {
1.36      matthew  1064:         $result.="    <option value=\"$value\" ";        
1.253     albertel 1065:         $result.=" selected=\"selected\" " if ($value eq $seconddefault);
1.119     www      1066:         $result.=">".&mt($select2{$value})."</option>\n";
1.36      matthew  1067:     }
                   1068:     $result .= "</select>\n";
                   1069:     #    return $debug;
                   1070:     return $result;
                   1071: }   #  end of sub linked_select_forms {
                   1072: 
1.45      matthew  1073: =pod
1.44      bowersj2 1074: 
1.948.2.7  raeburn  1075: =item * &help_open_topic($topic,$text,$stayOnPage,$width,$height,$imgid)
1.44      bowersj2 1076: 
1.112     bowersj2 1077: Returns a string corresponding to an HTML link to the given help
                   1078: $topic, where $topic corresponds to the name of a .tex file in
                   1079: /home/httpd/html/adm/help/tex, with underscores replaced by
                   1080: spaces. 
                   1081: 
                   1082: $text will optionally be linked to the same topic, allowing you to
                   1083: link text in addition to the graphic. If you do not want to link
                   1084: text, but wish to specify one of the later parameters, pass an
                   1085: empty string. 
                   1086: 
                   1087: $stayOnPage is a value that will be interpreted as a boolean. If true,
                   1088: the link will not open a new window. If false, the link will open
                   1089: a new window using Javascript. (Default is false.) 
                   1090: 
                   1091: $width and $height are optional numerical parameters that will
                   1092: override the width and height of the popped up window, which may
                   1093: be useful for certain help topics with big pictures included. 
1.44      bowersj2 1094: 
                   1095: =cut
                   1096: 
                   1097: sub help_open_topic {
1.948.2.7  raeburn  1098:     my ($topic, $text, $stayOnPage, $width, $height, $imgid) = @_;
1.48      bowersj2 1099:     $text = "" if (not defined $text);
1.44      bowersj2 1100:     $stayOnPage = 0 if (not defined $stayOnPage);
                   1101:     $width = 350 if (not defined $width);
                   1102:     $height = 400 if (not defined $height);
                   1103:     my $filename = $topic;
                   1104:     $filename =~ s/ /_/g;
                   1105: 
1.48      bowersj2 1106:     my $template = "";
                   1107:     my $link;
1.572     banghart 1108:     
1.159     www      1109:     $topic=~s/\W/\_/g;
1.44      bowersj2 1110: 
1.572     banghart 1111:     if (!$stayOnPage) {
1.72      bowersj2 1112: 	$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 1113:     } else {
1.48      bowersj2 1114: 	$link = "/adm/help/${filename}.hlp";
                   1115:     }
                   1116: 
                   1117:     # Add the text
1.755     neumanie 1118:     if ($text ne "") {	
1.763     bisitz   1119: 	$template.='<span class="LC_help_open_topic">'
                   1120:                   .'<a target="_top" href="'.$link.'">'
                   1121:                   .$text.'</a>';
1.48      bowersj2 1122:     }
                   1123: 
1.763     bisitz   1124:     # (Always) Add the graphic
1.179     matthew  1125:     my $title = &mt('Online Help');
1.667     raeburn  1126:     my $helpicon=&lonhttpdurl("/adm/help/help.png");
1.948.2.7  raeburn  1127:     if ($imgid ne '') {
                   1128:         $imgid = ' id="'.$imgid.'"';
                   1129:     }
1.763     bisitz   1130:     $template.=' <a target="_top" href="'.$link.'" title="'.$title.'">'
                   1131:               .'<img src="'.$helpicon.'" border="0"'
                   1132:               .' alt="'.&mt('Help: [_1]',$topic).'"'
1.948.2.7  raeburn  1133:               .' title="'.$title.'" style="vertical-align:middle;"'.$imgid
1.763     bisitz   1134:               .' /></a>';
1.948.2.7  raeburn  1135:     if ($text ne "") {
1.763     bisitz   1136:         $template.='</span>';
                   1137:     }
1.44      bowersj2 1138:     return $template;
                   1139: 
1.106     bowersj2 1140: }
                   1141: 
                   1142: # This is a quicky function for Latex cheatsheet editing, since it 
                   1143: # appears in at least four places
                   1144: sub helpLatexCheatsheet {
1.732     raeburn  1145:     my ($topic,$text,$not_author) = @_;
                   1146:     my $out;
1.106     bowersj2 1147:     my $addOther = '';
1.732     raeburn  1148:     if ($topic) {
1.763     bisitz   1149: 	$addOther = '<span>'.&Apache::loncommon::help_open_topic($topic,&mt($text),
                   1150: 							       undef, undef, 600).
                   1151: 								   '</span> ';
                   1152:     }
                   1153:     $out = '<span>' # Start cheatsheet
                   1154: 	  .$addOther
                   1155:           .'<span>'
                   1156: 	  .&Apache::loncommon::help_open_topic('Greek_Symbols',&mt('Greek Symbols'),
                   1157: 					       undef,undef,600)
                   1158: 	  .'</span> <span>'
                   1159: 	  .&Apache::loncommon::help_open_topic('Other_Symbols',&mt('Other Symbols'),
                   1160: 					       undef,undef,600)
                   1161: 	  .'</span>';
1.732     raeburn  1162:     unless ($not_author) {
1.763     bisitz   1163:         $out .= ' <span>'
                   1164: 	       .&Apache::loncommon::help_open_topic('Authoring_Output_Tags',&mt('Output Tags'),
                   1165: 	                                            undef,undef,600)
                   1166: 	       .'</span>';
1.732     raeburn  1167:     }
1.763     bisitz   1168:     $out .= '</span>'; # End cheatsheet
1.732     raeburn  1169:     return $out;
1.172     www      1170: }
                   1171: 
1.430     albertel 1172: sub general_help {
                   1173:     my $helptopic='Student_Intro';
                   1174:     if ($env{'request.role'}=~/^(ca|au)/) {
                   1175: 	$helptopic='Authoring_Intro';
1.907     raeburn  1176:     } elsif ($env{'request.role'}=~/^(cc|co)/) {
1.430     albertel 1177: 	$helptopic='Course_Coordination_Intro';
1.672     raeburn  1178:     } elsif ($env{'request.role'}=~/^dc/) {
                   1179:         $helptopic='Domain_Coordination_Intro';
1.430     albertel 1180:     }
                   1181:     return $helptopic;
                   1182: }
                   1183: 
                   1184: sub update_help_link {
                   1185:     my ($topic,$component_help,$faq,$bug,$stayOnPage) = @_;
                   1186:     my $origurl = $ENV{'REQUEST_URI'};
                   1187:     $origurl=~s|^/~|/priv/|;
                   1188:     my $timestamp = time;
                   1189:     foreach my $datum (\$topic,\$component_help,\$faq,\$bug,\$origurl) {
                   1190:         $$datum = &escape($$datum);
                   1191:     }
                   1192: 
                   1193:     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";
                   1194:     my $output .= <<"ENDOUTPUT";
                   1195: <script type="text/javascript">
1.824     bisitz   1196: // <![CDATA[
1.430     albertel 1197: banner_link = '$banner_link';
1.824     bisitz   1198: // ]]>
1.430     albertel 1199: </script>
                   1200: ENDOUTPUT
                   1201:     return $output;
                   1202: }
                   1203: 
                   1204: # now just updates the help link and generates a blue icon
1.193     raeburn  1205: sub help_open_menu {
1.430     albertel 1206:     my ($topic,$component_help,$faq,$bug,$stayOnPage,$width,$height,$text) 
1.552     banghart 1207: 	= @_;    
1.430     albertel 1208:     $stayOnPage = 0 if (not defined $stayOnPage);
1.572     banghart 1209:     # only use pop-up help (stayOnPage == 0)
1.552     banghart 1210:     # if environment.remote is on (using remote control UI)
1.798     tempelho 1211:     if ($env{'environment.remote'} eq 'off' ) {
1.552     banghart 1212:         $stayOnPage=1;
1.430     albertel 1213:     }
                   1214:     my $output;
                   1215:     if ($component_help) {
                   1216: 	if (!$text) {
                   1217: 	    $output=&help_open_topic($component_help,undef,$stayOnPage,
                   1218: 				       $width,$height);
                   1219: 	} else {
                   1220: 	    my $help_text;
                   1221: 	    $help_text=&unescape($topic);
                   1222: 	    $output='<table><tr><td>'.
                   1223: 		&help_open_topic($component_help,$help_text,$stayOnPage,
                   1224: 				 $width,$height).'</td></tr></table>';
                   1225: 	}
                   1226:     }
                   1227:     my $banner_link = &update_help_link($topic,$component_help,$faq,$bug,$stayOnPage);
                   1228:     return $output.$banner_link;
                   1229: }
                   1230: 
                   1231: sub top_nav_help {
                   1232:     my ($text) = @_;
1.436     albertel 1233:     $text = &mt($text);
1.572     banghart 1234:     my $stay_on_page = 
1.798     tempelho 1235: 	($env{'environment.remote'} eq 'off' );
1.572     banghart 1236:     my $link = ($stay_on_page) ? "javascript:helpMenu('display')"
1.436     albertel 1237: 	                     : "javascript:helpMenu('open')";
1.572     banghart 1238:     my $banner_link = &update_help_link(undef,undef,undef,undef,$stay_on_page);
1.436     albertel 1239: 
1.201     raeburn  1240:     my $title = &mt('Get help');
1.436     albertel 1241: 
                   1242:     return <<"END";
                   1243: $banner_link
                   1244:  <a href="$link" title="$title">$text</a>
                   1245: END
                   1246: }
                   1247: 
                   1248: sub help_menu_js {
                   1249:     my ($text) = @_;
                   1250: 
                   1251:     my $stayOnPage = 
1.798     tempelho 1252: 	($env{'environment.remote'} eq 'off' );
1.436     albertel 1253: 
                   1254:     my $width = 620;
                   1255:     my $height = 600;
1.430     albertel 1256:     my $helptopic=&general_help();
                   1257:     my $details_link = '/adm/help/'.$helptopic.'.hlp';
1.261     albertel 1258:     my $nothing=&Apache::lonhtmlcommon::javascript_nothing();
1.331     albertel 1259:     my $start_page =
                   1260:         &Apache::loncommon::start_page('Help Menu', undef,
                   1261: 				       {'frameset'    => 1,
                   1262: 					'js_ready'    => 1,
                   1263: 					'add_entries' => {
                   1264: 					    'border' => '0',
1.579     raeburn  1265: 					    'rows'   => "110,*",},});
1.331     albertel 1266:     my $end_page =
                   1267:         &Apache::loncommon::end_page({'frameset' => 1,
                   1268: 				      'js_ready' => 1,});
                   1269: 
1.436     albertel 1270:     my $template .= <<"ENDTEMPLATE";
                   1271: <script type="text/javascript">
1.877     bisitz   1272: // <![CDATA[
1.253     albertel 1273: // <!-- BEGIN LON-CAPA Internal
1.430     albertel 1274: var banner_link = '';
1.243     raeburn  1275: function helpMenu(target) {
                   1276:     var caller = this;
                   1277:     if (target == 'open') {
                   1278:         var newWindow = null;
                   1279:         try {
1.262     albertel 1280:             newWindow =  window.open($nothing,"helpmenu","HEIGHT=$height,WIDTH=$width,resizable=yes,scrollbars=yes" )
1.243     raeburn  1281:         }
                   1282:         catch(error) {
                   1283:             writeHelp(caller);
                   1284:             return;
                   1285:         }
                   1286:         if (newWindow) {
                   1287:             caller = newWindow;
                   1288:         }
1.193     raeburn  1289:     }
1.243     raeburn  1290:     writeHelp(caller);
                   1291:     return;
                   1292: }
                   1293: function writeHelp(caller) {
1.430     albertel 1294:     caller.document.writeln('$start_page<frame name="bannerframe"  src="'+banner_link+'" /><frame name="bodyframe" src="$details_link" /> $end_page')
1.243     raeburn  1295:     caller.document.close()
                   1296:     caller.focus()
1.193     raeburn  1297: }
1.877     bisitz   1298: // END LON-CAPA Internal -->
1.253     albertel 1299: // ]]>
1.436     albertel 1300: </script>
1.193     raeburn  1301: ENDTEMPLATE
                   1302:     return $template;
                   1303: }
                   1304: 
1.172     www      1305: sub help_open_bug {
                   1306:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
1.258     albertel 1307:     unless ($env{'user.adv'}) { return ''; }
1.172     www      1308:     unless ($Apache::lonnet::perlvar{'BugzillaHost'}) { return ''; }
                   1309:     $text = "" if (not defined $text);
                   1310:     $stayOnPage = 0 if (not defined $stayOnPage);
1.798     tempelho 1311:     if ($env{'environment.remote'} eq 'off' ) {
1.172     www      1312: 	$stayOnPage=1;
                   1313:     }
1.184     albertel 1314:     $width = 600 if (not defined $width);
                   1315:     $height = 600 if (not defined $height);
1.172     www      1316: 
                   1317:     $topic=~s/\W+/\+/g;
                   1318:     my $link='';
                   1319:     my $template='';
1.379     albertel 1320:     my $url=$Apache::lonnet::perlvar{'BugzillaHost'}.'enter_bug.cgi?product=LON-CAPA&amp;bug_file_loc='.
                   1321: 	&escape($ENV{'REQUEST_URI'}).'&amp;component='.$topic;
1.172     www      1322:     if (!$stayOnPage)
                   1323:     {
                   1324: 	$link = "javascript:void(open('$url', 'Bugzilla', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
                   1325:     }
                   1326:     else
                   1327:     {
                   1328: 	$link = $url;
                   1329:     }
                   1330:     # Add the text
                   1331:     if ($text ne "")
                   1332:     {
                   1333: 	$template .= 
                   1334:   "<table bgcolor='#AA3333' cellspacing='1' cellpadding='1' border='0'><tr>".
1.705     tempelho 1335:   "<td bgcolor='#FF5555'><a target=\"_top\" href=\"$link\"><span style=\"color:#FFFFFF;font-size:10pt;\">$text</span></a>";
1.172     www      1336:     }
                   1337: 
                   1338:     # Add the graphic
1.179     matthew  1339:     my $title = &mt('Report a Bug');
1.215     albertel 1340:     my $bugicon=&lonhttpdurl("/adm/lonMisc/smallBug.gif");
1.172     www      1341:     $template .= <<"ENDTEMPLATE";
1.436     albertel 1342:  <a target="_top" href="$link" title="$title"><img src="$bugicon" border="0" alt="(Bug: $topic)" /></a>
1.172     www      1343: ENDTEMPLATE
                   1344:     if ($text ne '') { $template.='</td></tr></table>' };
                   1345:     return $template;
                   1346: 
                   1347: }
                   1348: 
                   1349: sub help_open_faq {
                   1350:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
1.258     albertel 1351:     unless ($env{'user.adv'}) { return ''; }
1.172     www      1352:     unless ($Apache::lonnet::perlvar{'FAQHost'}) { return ''; }
                   1353:     $text = "" if (not defined $text);
                   1354:     $stayOnPage = 0 if (not defined $stayOnPage);
1.798     tempelho 1355:     if ($env{'environment.remote'} eq 'off' ) {
1.172     www      1356: 	$stayOnPage=1;
                   1357:     }
                   1358:     $width = 350 if (not defined $width);
                   1359:     $height = 400 if (not defined $height);
                   1360: 
                   1361:     $topic=~s/\W+/\+/g;
                   1362:     my $link='';
                   1363:     my $template='';
                   1364:     my $url=$Apache::lonnet::perlvar{'FAQHost'}.'/fom/cache/'.$topic.'.html';
                   1365:     if (!$stayOnPage)
                   1366:     {
                   1367: 	$link = "javascript:void(open('$url', 'FAQ-O-Matic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
                   1368:     }
                   1369:     else
                   1370:     {
                   1371: 	$link = $url;
                   1372:     }
                   1373: 
                   1374:     # Add the text
                   1375:     if ($text ne "")
                   1376:     {
                   1377: 	$template .= 
1.173     www      1378:   "<table bgcolor='#337733' cellspacing='1' cellpadding='1' border='0'><tr>".
1.705     tempelho 1379:   "<td bgcolor='#448844'><a target=\"_top\" href=\"$link\"><span style=\"color:#FFFFFF; font-size:10pt;\">$text</span></a>";
1.172     www      1380:     }
                   1381: 
                   1382:     # Add the graphic
1.179     matthew  1383:     my $title = &mt('View the FAQ');
1.215     albertel 1384:     my $faqicon=&lonhttpdurl("/adm/lonMisc/smallFAQ.gif");
1.172     www      1385:     $template .= <<"ENDTEMPLATE";
1.436     albertel 1386:  <a target="_top" href="$link" title="$title"><img src="$faqicon" border="0" alt="(FAQ: $topic)" /></a>
1.172     www      1387: ENDTEMPLATE
                   1388:     if ($text ne '') { $template.='</td></tr></table>' };
                   1389:     return $template;
                   1390: 
1.44      bowersj2 1391: }
1.37      matthew  1392: 
1.180     matthew  1393: ###############################################################
                   1394: ###############################################################
                   1395: 
1.45      matthew  1396: =pod
                   1397: 
1.648     raeburn  1398: =item * &change_content_javascript():
1.256     matthew  1399: 
                   1400: This and the next function allow you to create small sections of an
                   1401: otherwise static HTML page that you can update on the fly with
                   1402: Javascript, even in Netscape 4.
                   1403: 
                   1404: The Javascript fragment returned by this function (no E<lt>scriptE<gt> tag)
                   1405: must be written to the HTML page once. It will prove the Javascript
                   1406: function "change(name, content)". Calling the change function with the
                   1407: name of the section 
                   1408: you want to update, matching the name passed to C<changable_area>, and
                   1409: the new content you want to put in there, will put the content into
                   1410: that area.
                   1411: 
                   1412: B<Note>: Netscape 4 only reserves enough space for the changable area
                   1413: to contain room for the original contents. You need to "make space"
                   1414: for whatever changes you wish to make, and be B<sure> to check your
                   1415: code in Netscape 4. This feature in Netscape 4 is B<not> powerful;
                   1416: it's adequate for updating a one-line status display, but little more.
                   1417: This script will set the space to 100% width, so you only need to
                   1418: worry about height in Netscape 4.
                   1419: 
                   1420: Modern browsers are much less limiting, and if you can commit to the
                   1421: user not using Netscape 4, this feature may be used freely with
                   1422: pretty much any HTML.
                   1423: 
                   1424: =cut
                   1425: 
                   1426: sub change_content_javascript {
                   1427:     # If we're on Netscape 4, we need to use Layer-based code
1.258     albertel 1428:     if ($env{'browser.type'} eq 'netscape' &&
                   1429: 	$env{'browser.version'} =~ /^4\./) {
1.256     matthew  1430: 	return (<<NETSCAPE4);
                   1431: 	function change(name, content) {
                   1432: 	    doc = document.layers[name+"___escape"].layers[0].document;
                   1433: 	    doc.open();
                   1434: 	    doc.write(content);
                   1435: 	    doc.close();
                   1436: 	}
                   1437: NETSCAPE4
                   1438:     } else {
                   1439: 	# Otherwise, we need to use semi-standards-compliant code
                   1440: 	# (technically, "innerHTML" isn't standard but the equivalent
                   1441: 	# is really scary, and every useful browser supports it
                   1442: 	return (<<DOMBASED);
                   1443: 	function change(name, content) {
                   1444: 	    element = document.getElementById(name);
                   1445: 	    element.innerHTML = content;
                   1446: 	}
                   1447: DOMBASED
                   1448:     }
                   1449: }
                   1450: 
                   1451: =pod
                   1452: 
1.648     raeburn  1453: =item * &changable_area($name,$origContent):
1.256     matthew  1454: 
                   1455: This provides a "changable area" that can be modified on the fly via
                   1456: the Javascript code provided in C<change_content_javascript>. $name is
                   1457: the name you will use to reference the area later; do not repeat the
                   1458: same name on a given HTML page more then once. $origContent is what
                   1459: the area will originally contain, which can be left blank.
                   1460: 
                   1461: =cut
                   1462: 
                   1463: sub changable_area {
                   1464:     my ($name, $origContent) = @_;
                   1465: 
1.258     albertel 1466:     if ($env{'browser.type'} eq 'netscape' &&
                   1467: 	$env{'browser.version'} =~ /^4\./) {
1.256     matthew  1468: 	# If this is netscape 4, we need to use the Layer tag
                   1469: 	return "<ilayer width='100%' id='${name}___escape' overflow='none'><layer width='100%' id='$name' overflow='none'>$origContent</layer></ilayer>";
                   1470:     } else {
                   1471: 	return "<span id='$name'>$origContent</span>";
                   1472:     }
                   1473: }
                   1474: 
                   1475: =pod
                   1476: 
1.648     raeburn  1477: =item * &viewport_geometry_js 
1.590     raeburn  1478: 
                   1479: Provides javascript object (Geometry) which can provide information about the viewport geometry for the client browser.
                   1480: 
                   1481: =cut
                   1482: 
                   1483: 
                   1484: sub viewport_geometry_js { 
                   1485:     return <<"GEOMETRY";
                   1486: var Geometry = {};
                   1487: function init_geometry() {
                   1488:     if (Geometry.init) { return };
                   1489:     Geometry.init=1;
                   1490:     if (window.innerHeight) {
                   1491:         Geometry.getViewportHeight   = function() { return window.innerHeight; };
                   1492:         Geometry.getViewportWidth   = function() { return window.innerWidth; };
                   1493:         Geometry.getHorizontalScroll = function() { return window.pageXOffset; };
                   1494:         Geometry.getVerticalScroll   = function() { return window.pageYOffset; };
                   1495:     }
                   1496:     else if (document.documentElement && document.documentElement.clientHeight) {
                   1497:         Geometry.getViewportHeight =
                   1498:             function() { return document.documentElement.clientHeight; };
                   1499:         Geometry.getViewportWidth =
                   1500:             function() { return document.documentElement.clientWidth; };
                   1501: 
                   1502:         Geometry.getHorizontalScroll =
                   1503:             function() { return document.documentElement.scrollLeft; };
                   1504:         Geometry.getVerticalScroll =
                   1505:             function() { return document.documentElement.scrollTop; };
                   1506:     }
                   1507:     else if (document.body.clientHeight) {
                   1508:         Geometry.getViewportHeight =
                   1509:             function() { return document.body.clientHeight; };
                   1510:         Geometry.getViewportWidth =
                   1511:             function() { return document.body.clientWidth; };
                   1512:         Geometry.getHorizontalScroll =
                   1513:             function() { return document.body.scrollLeft; };
                   1514:         Geometry.getVerticalScroll =
                   1515:             function() { return document.body.scrollTop; };
                   1516:     }
                   1517: }
                   1518: 
                   1519: GEOMETRY
                   1520: }
                   1521: 
                   1522: =pod
                   1523: 
1.648     raeburn  1524: =item * &viewport_size_js()
1.590     raeburn  1525: 
                   1526: 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. 
                   1527: 
                   1528: =cut
                   1529: 
                   1530: sub viewport_size_js {
                   1531:     my $geometry = &viewport_geometry_js();
                   1532:     return <<"DIMS";
                   1533: 
                   1534: $geometry
                   1535: 
                   1536: function getViewportDims(width,height) {
                   1537:     init_geometry();
                   1538:     width.value = Geometry.getViewportWidth();
                   1539:     height.value = Geometry.getViewportHeight();
                   1540:     return;
                   1541: }
                   1542: 
                   1543: DIMS
                   1544: }
                   1545: 
                   1546: =pod
                   1547: 
1.648     raeburn  1548: =item * &resize_textarea_js()
1.565     albertel 1549: 
                   1550: emits the needed javascript to resize a textarea to be as big as possible
                   1551: 
                   1552: creates a function resize_textrea that takes two IDs first should be
                   1553: the id of the element to resize, second should be the id of a div that
                   1554: surrounds everything that comes after the textarea, this routine needs
                   1555: to be attached to the <body> for the onload and onresize events.
                   1556: 
1.648     raeburn  1557: =back
1.565     albertel 1558: 
                   1559: =cut
                   1560: 
                   1561: sub resize_textarea_js {
1.590     raeburn  1562:     my $geometry = &viewport_geometry_js();
1.565     albertel 1563:     return <<"RESIZE";
                   1564:     <script type="text/javascript">
1.824     bisitz   1565: // <![CDATA[
1.590     raeburn  1566: $geometry
1.565     albertel 1567: 
1.588     albertel 1568: function getX(element) {
                   1569:     var x = 0;
                   1570:     while (element) {
                   1571: 	x += element.offsetLeft;
                   1572: 	element = element.offsetParent;
                   1573:     }
                   1574:     return x;
                   1575: }
                   1576: function getY(element) {
                   1577:     var y = 0;
                   1578:     while (element) {
                   1579: 	y += element.offsetTop;
                   1580: 	element = element.offsetParent;
                   1581:     }
                   1582:     return y;
                   1583: }
                   1584: 
                   1585: 
1.565     albertel 1586: function resize_textarea(textarea_id,bottom_id) {
                   1587:     init_geometry();
                   1588:     var textarea        = document.getElementById(textarea_id);
                   1589:     //alert(textarea);
                   1590: 
1.588     albertel 1591:     var textarea_top    = getY(textarea);
1.565     albertel 1592:     var textarea_height = textarea.offsetHeight;
                   1593:     var bottom          = document.getElementById(bottom_id);
1.588     albertel 1594:     var bottom_top      = getY(bottom);
1.565     albertel 1595:     var bottom_height   = bottom.offsetHeight;
                   1596:     var window_height   = Geometry.getViewportHeight();
1.588     albertel 1597:     var fudge           = 23;
1.565     albertel 1598:     var new_height      = window_height-fudge-textarea_top-bottom_height;
                   1599:     if (new_height < 300) {
                   1600: 	new_height = 300;
                   1601:     }
                   1602:     textarea.style.height=new_height+'px';
                   1603: }
1.824     bisitz   1604: // ]]>
1.565     albertel 1605: </script>
                   1606: RESIZE
                   1607: 
                   1608: }
                   1609: 
                   1610: =pod
                   1611: 
1.256     matthew  1612: =head1 Excel and CSV file utility routines
                   1613: 
                   1614: =over 4
                   1615: 
                   1616: =cut
                   1617: 
                   1618: ###############################################################
                   1619: ###############################################################
                   1620: 
                   1621: =pod
                   1622: 
1.648     raeburn  1623: =item * &csv_translate($text) 
1.37      matthew  1624: 
1.185     www      1625: Translate $text to allow it to be output as a 'comma separated values' 
1.37      matthew  1626: format.
                   1627: 
                   1628: =cut
                   1629: 
1.180     matthew  1630: ###############################################################
                   1631: ###############################################################
1.37      matthew  1632: sub csv_translate {
                   1633:     my $text = shift;
                   1634:     $text =~ s/\"/\"\"/g;
1.209     albertel 1635:     $text =~ s/\n/ /g;
1.37      matthew  1636:     return $text;
                   1637: }
1.180     matthew  1638: 
                   1639: ###############################################################
                   1640: ###############################################################
                   1641: 
                   1642: =pod
                   1643: 
1.648     raeburn  1644: =item * &define_excel_formats()
1.180     matthew  1645: 
                   1646: Define some commonly used Excel cell formats.
                   1647: 
                   1648: Currently supported formats:
                   1649: 
                   1650: =over 4
                   1651: 
                   1652: =item header
                   1653: 
                   1654: =item bold
                   1655: 
                   1656: =item h1
                   1657: 
                   1658: =item h2
                   1659: 
                   1660: =item h3
                   1661: 
1.256     matthew  1662: =item h4
                   1663: 
                   1664: =item i
                   1665: 
1.180     matthew  1666: =item date
                   1667: 
                   1668: =back
                   1669: 
                   1670: Inputs: $workbook
                   1671: 
                   1672: Returns: $format, a hash reference.
                   1673: 
                   1674: =cut
                   1675: 
                   1676: ###############################################################
                   1677: ###############################################################
                   1678: sub define_excel_formats {
                   1679:     my ($workbook) = @_;
                   1680:     my $format;
                   1681:     $format->{'header'} = $workbook->add_format(bold      => 1, 
                   1682:                                                 bottom    => 1,
                   1683:                                                 align     => 'center');
                   1684:     $format->{'bold'} = $workbook->add_format(bold=>1);
                   1685:     $format->{'h1'}   = $workbook->add_format(bold=>1, size=>18);
                   1686:     $format->{'h2'}   = $workbook->add_format(bold=>1, size=>16);
                   1687:     $format->{'h3'}   = $workbook->add_format(bold=>1, size=>14);
1.255     matthew  1688:     $format->{'h4'}   = $workbook->add_format(bold=>1, size=>12);
1.246     matthew  1689:     $format->{'i'}    = $workbook->add_format(italic=>1);
1.180     matthew  1690:     $format->{'date'} = $workbook->add_format(num_format=>
1.207     matthew  1691:                                             'mm/dd/yyyy hh:mm:ss');
1.180     matthew  1692:     return $format;
                   1693: }
                   1694: 
                   1695: ###############################################################
                   1696: ###############################################################
1.113     bowersj2 1697: 
                   1698: =pod
                   1699: 
1.648     raeburn  1700: =item * &create_workbook()
1.255     matthew  1701: 
                   1702: Create an Excel worksheet.  If it fails, output message on the
                   1703: request object and return undefs.
                   1704: 
                   1705: Inputs: Apache request object
                   1706: 
                   1707: Returns (undef) on failure, 
                   1708:     Excel worksheet object, scalar with filename, and formats 
                   1709:     from &Apache::loncommon::define_excel_formats on success
                   1710: 
                   1711: =cut
                   1712: 
                   1713: ###############################################################
                   1714: ###############################################################
                   1715: sub create_workbook {
                   1716:     my ($r) = @_;
                   1717:         #
                   1718:     # Create the excel spreadsheet
                   1719:     my $filename = '/prtspool/'.
1.258     albertel 1720:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
1.255     matthew  1721:         time.'_'.rand(1000000000).'.xls';
                   1722:     my $workbook  = Spreadsheet::WriteExcel->new('/home/httpd'.$filename);
                   1723:     if (! defined($workbook)) {
                   1724:         $r->log_error("Error creating excel spreadsheet $filename: $!");
1.928     bisitz   1725:         $r->print(
                   1726:             '<p class="LC_error">'
                   1727:            .&mt('Problems occurred in creating the new Excel file.')
                   1728:            .' '.&mt('This error has been logged.')
                   1729:            .' '.&mt('Please alert your LON-CAPA administrator.')
                   1730:            .'</p>'
                   1731:         );
1.255     matthew  1732:         return (undef);
                   1733:     }
                   1734:     #
                   1735:     $workbook->set_tempdir('/home/httpd/perl/tmp');
                   1736:     #
                   1737:     my $format = &Apache::loncommon::define_excel_formats($workbook);
                   1738:     return ($workbook,$filename,$format);
                   1739: }
                   1740: 
                   1741: ###############################################################
                   1742: ###############################################################
                   1743: 
                   1744: =pod
                   1745: 
1.648     raeburn  1746: =item * &create_text_file()
1.113     bowersj2 1747: 
1.542     raeburn  1748: Create a file to write to and eventually make available to the user.
1.256     matthew  1749: If file creation fails, outputs an error message on the request object and 
                   1750: return undefs.
1.113     bowersj2 1751: 
1.256     matthew  1752: Inputs: Apache request object, and file suffix
1.113     bowersj2 1753: 
1.256     matthew  1754: Returns (undef) on failure, 
                   1755:     Filehandle and filename on success.
1.113     bowersj2 1756: 
                   1757: =cut
                   1758: 
1.256     matthew  1759: ###############################################################
                   1760: ###############################################################
                   1761: sub create_text_file {
                   1762:     my ($r,$suffix) = @_;
                   1763:     if (! defined($suffix)) { $suffix = 'txt'; };
                   1764:     my $fh;
                   1765:     my $filename = '/prtspool/'.
1.258     albertel 1766:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
1.256     matthew  1767:         time.'_'.rand(1000000000).'.'.$suffix;
                   1768:     $fh = Apache::File->new('>/home/httpd'.$filename);
                   1769:     if (! defined($fh)) {
                   1770:         $r->log_error("Couldn't open $filename for output $!");
1.928     bisitz   1771:         $r->print(
                   1772:             '<p class="LC_error">'
                   1773:            .&mt('Problems occurred in creating the output file.')
                   1774:            .' '.&mt('This error has been logged.')
                   1775:            .' '.&mt('Please alert your LON-CAPA administrator.')
                   1776:            .'</p>'
                   1777:         );
1.113     bowersj2 1778:     }
1.256     matthew  1779:     return ($fh,$filename)
1.113     bowersj2 1780: }
                   1781: 
                   1782: 
1.256     matthew  1783: =pod 
1.113     bowersj2 1784: 
                   1785: =back
                   1786: 
                   1787: =cut
1.37      matthew  1788: 
                   1789: ###############################################################
1.33      matthew  1790: ##        Home server <option> list generating code          ##
                   1791: ###############################################################
1.35      matthew  1792: 
1.169     www      1793: # ------------------------------------------
                   1794: 
                   1795: sub domain_select {
                   1796:     my ($name,$value,$multiple)=@_;
                   1797:     my %domains=map { 
1.514     albertel 1798: 	$_ => $_.' '. &Apache::lonnet::domain($_,'description') 
1.512     albertel 1799:     } &Apache::lonnet::all_domains();
1.169     www      1800:     if ($multiple) {
                   1801: 	$domains{''}=&mt('Any domain');
1.550     albertel 1802: 	$domains{'select_form_order'} = [sort {lc($a) cmp lc($b) } (keys(%domains))];
1.287     albertel 1803: 	return &multiple_select_form($name,$value,4,\%domains);
1.169     www      1804:     } else {
1.550     albertel 1805: 	$domains{'select_form_order'} = [sort {lc($a) cmp lc($b) } (keys(%domains))];
1.948.2.7  raeburn  1806: 	return &select_form($name,$value,\%domains);
1.169     www      1807:     }
                   1808: }
                   1809: 
1.282     albertel 1810: #-------------------------------------------
                   1811: 
                   1812: =pod
                   1813: 
1.519     raeburn  1814: =head1 Routines for form select boxes
                   1815: 
                   1816: =over 4
                   1817: 
1.648     raeburn  1818: =item * &multiple_select_form($name,$value,$size,$hash,$order)
1.282     albertel 1819: 
                   1820: Returns a string containing a <select> element int multiple mode
                   1821: 
                   1822: 
                   1823: Args:
                   1824:   $name - name of the <select> element
1.506     raeburn  1825:   $value - scalar or array ref of values that should already be selected
1.282     albertel 1826:   $size - number of rows long the select element is
1.283     albertel 1827:   $hash - the elements should be 'option' => 'shown text'
1.282     albertel 1828:           (shown text should already have been &mt())
1.506     raeburn  1829:   $order - (optional) array ref of the order to show the elements in
1.283     albertel 1830: 
1.282     albertel 1831: =cut
                   1832: 
                   1833: #-------------------------------------------
1.169     www      1834: sub multiple_select_form {
1.284     albertel 1835:     my ($name,$value,$size,$hash,$order)=@_;
1.169     www      1836:     my %selected = map { $_ => 1 } ref($value)?@{$value}:($value);
                   1837:     my $output='';
1.191     matthew  1838:     if (! defined($size)) {
                   1839:         $size = 4;
1.283     albertel 1840:         if (scalar(keys(%$hash))<4) {
                   1841:             $size = scalar(keys(%$hash));
1.191     matthew  1842:         }
                   1843:     }
1.734     bisitz   1844:     $output.="\n".'<select name="'.$name.'" size="'.$size.'" multiple="multiple">';
1.501     banghart 1845:     my @order;
1.506     raeburn  1846:     if (ref($order) eq 'ARRAY')  {
                   1847:         @order = @{$order};
                   1848:     } else {
                   1849:         @order = sort(keys(%$hash));
1.501     banghart 1850:     }
                   1851:     if (exists($$hash{'select_form_order'})) {
                   1852:         @order = @{$$hash{'select_form_order'}};
                   1853:     }
                   1854:         
1.284     albertel 1855:     foreach my $key (@order) {
1.356     albertel 1856:         $output.='<option value="'.&HTML::Entities::encode($key,'"<>&').'" ';
1.284     albertel 1857:         $output.='selected="selected" ' if ($selected{$key});
                   1858:         $output.='>'.$hash->{$key}."</option>\n";
1.169     www      1859:     }
                   1860:     $output.="</select>\n";
                   1861:     return $output;
                   1862: }
                   1863: 
1.88      www      1864: #-------------------------------------------
                   1865: 
                   1866: =pod
                   1867: 
1.948.2.7  raeburn  1868: =item * &select_form($defdom,$name,$hashref,$onchange)
1.88      www      1869: 
                   1870: Returns a string containing a <select name='$name' size='1'> form to 
1.948.2.7  raeburn  1871: allow a user to select options from a ref to a hash containing:
                   1872: option_name => displayed text. An optional $onchange can include
                   1873: a javascript onchange item, e.g., onchange="this.form.submit();"
                   1874: 
1.88      www      1875: See lonrights.pm for an example invocation and use.
                   1876: 
                   1877: =cut
                   1878: 
                   1879: #-------------------------------------------
                   1880: sub select_form {
1.948.2.7  raeburn  1881:     my ($def,$name,$hashref,$onchange) = @_;
                   1882:     return unless (ref($hashref) eq 'HASH');
                   1883:     if ($onchange) {
                   1884:         $onchange = ' onchange="'.$onchange.'"';
                   1885:     }
                   1886:     my $selectform = "<select name=\"$name\" size=\"1\"$onchange>\n";
1.128     albertel 1887:     my @keys;
1.948.2.7  raeburn  1888:     if (exists($hashref->{'select_form_order'})) {
                   1889:         @keys=@{$hashref->{'select_form_order'}};
1.128     albertel 1890:     } else {
1.948.2.7  raeburn  1891:         @keys=sort(keys(%{$hashref}));
1.128     albertel 1892:     }
1.356     albertel 1893:     foreach my $key (@keys) {
                   1894:         $selectform.=
                   1895: 	    '<option value="'.&HTML::Entities::encode($key,'"<>&').'" '.
                   1896:             ($key eq $def ? 'selected="selected" ' : '').
1.948.2.7  raeburn  1897:                 ">".$hashref->{$key}."</option>\n";
1.88      www      1898:     }
                   1899:     $selectform.="</select>";
                   1900:     return $selectform;
                   1901: }
                   1902: 
1.475     www      1903: # For display filters
                   1904: 
                   1905: sub display_filter {
                   1906:     if (!$env{'form.show'}) { $env{'form.show'}=10; }
1.477     www      1907:     if (!$env{'form.displayfilter'}) { $env{'form.displayfilter'}='currentfolder'; }
1.714     bisitz   1908:     return '<span class="LC_nobreak"><label>'.&mt('Records [_1]',
1.475     www      1909: 			       &Apache::lonmeta::selectbox('show',$env{'form.show'},undef,
                   1910: 							   (&mt('all'),10,20,50,100,1000,10000))).
1.714     bisitz   1911: 	   '</label></span> <span class="LC_nobreak">'.
1.475     www      1912:            &mt('Filter [_1]',
1.477     www      1913: 	   &select_form($env{'form.displayfilter'},
                   1914: 			'displayfilter',
1.948.2.7  raeburn  1915: 			{'currentfolder' => 'Current folder/page',
1.477     www      1916: 			 'containing' => 'Containing phrase',
1.948.2.7  raeburn  1917: 			 'none' => 'None'})).
1.714     bisitz   1918: 			 '<input type="text" name="containingphrase" size="30" value="'.&HTML::Entities::encode($env{'form.containingphrase'}).'" /></span>';
1.475     www      1919: }
                   1920: 
1.167     www      1921: sub gradeleveldescription {
                   1922:     my $gradelevel=shift;
                   1923:     my %gradelevels=(0 => 'Not specified',
                   1924: 		     1 => 'Grade 1',
                   1925: 		     2 => 'Grade 2',
                   1926: 		     3 => 'Grade 3',
                   1927: 		     4 => 'Grade 4',
                   1928: 		     5 => 'Grade 5',
                   1929: 		     6 => 'Grade 6',
                   1930: 		     7 => 'Grade 7',
                   1931: 		     8 => 'Grade 8',
                   1932: 		     9 => 'Grade 9',
                   1933: 		     10 => 'Grade 10',
                   1934: 		     11 => 'Grade 11',
                   1935: 		     12 => 'Grade 12',
                   1936: 		     13 => 'Grade 13',
                   1937: 		     14 => '100 Level',
                   1938: 		     15 => '200 Level',
                   1939: 		     16 => '300 Level',
                   1940: 		     17 => '400 Level',
                   1941: 		     18 => 'Graduate Level');
                   1942:     return &mt($gradelevels{$gradelevel});
                   1943: }
                   1944: 
1.163     www      1945: sub select_level_form {
                   1946:     my ($deflevel,$name)=@_;
                   1947:     unless ($deflevel) { $deflevel=0; }
1.167     www      1948:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
                   1949:     for (my $i=0; $i<=18; $i++) {
                   1950:         $selectform.="<option value=\"$i\" ".
1.253     albertel 1951:             ($i==$deflevel ? 'selected="selected" ' : '').
1.167     www      1952:                 ">".&gradeleveldescription($i)."</option>\n";
                   1953:     }
                   1954:     $selectform.="</select>";
                   1955:     return $selectform;
1.163     www      1956: }
1.167     www      1957: 
1.35      matthew  1958: #-------------------------------------------
                   1959: 
1.45      matthew  1960: =pod
                   1961: 
1.910     raeburn  1962: =item * &select_dom_form($defdom,$name,$includeempty,$showdomdesc,$onchange,$incdoms)
1.35      matthew  1963: 
                   1964: Returns a string containing a <select name='$name' size='1'> form to 
                   1965: allow a user to select the domain to preform an operation in.  
                   1966: See loncreateuser.pm for an example invocation and use.
                   1967: 
1.90      www      1968: If the $includeempty flag is set, it also includes an empty choice ("no domain
                   1969: selected");
                   1970: 
1.743     raeburn  1971: If the $showdomdesc flag is set, the domain name is followed by the domain description.
                   1972: 
1.910     raeburn  1973: The optional $onchange argument specifies what should occur if the domain selector is changed, e.g., 'this.form.submit()' if the form is to be automatically submitted.
                   1974: 
                   1975: The optional $incdoms is a reference to an array of domains which will be the only available options. 
1.563     raeburn  1976: 
1.35      matthew  1977: =cut
                   1978: 
                   1979: #-------------------------------------------
1.34      matthew  1980: sub select_dom_form {
1.910     raeburn  1981:     my ($defdom,$name,$includeempty,$showdomdesc,$onchange,$incdoms) = @_;
1.872     raeburn  1982:     if ($onchange) {
1.874     raeburn  1983:         $onchange = ' onchange="'.$onchange.'"';
1.743     raeburn  1984:     }
1.910     raeburn  1985:     my @domains;
                   1986:     if (ref($incdoms) eq 'ARRAY') {
                   1987:         @domains = sort {lc($a) cmp lc($b)} (@{$incdoms});
                   1988:     } else {
                   1989:         @domains = sort {lc($a) cmp lc($b)} (&Apache::lonnet::all_domains());
                   1990:     }
1.90      www      1991:     if ($includeempty) { @domains=('',@domains); }
1.743     raeburn  1992:     my $selectdomain = "<select name=\"$name\" size=\"1\"$onchange>\n";
1.356     albertel 1993:     foreach my $dom (@domains) {
                   1994:         $selectdomain.="<option value=\"$dom\" ".
1.563     raeburn  1995:             ($dom eq $defdom ? 'selected="selected" ' : '').'>'.$dom;
                   1996:         if ($showdomdesc) {
                   1997:             if ($dom ne '') {
                   1998:                 my $domdesc = &Apache::lonnet::domain($dom,'description');
                   1999:                 if ($domdesc ne '') {
                   2000:                     $selectdomain .= ' ('.$domdesc.')';
                   2001:                 }
                   2002:             } 
                   2003:         }
                   2004:         $selectdomain .= "</option>\n";
1.34      matthew  2005:     }
                   2006:     $selectdomain.="</select>";
                   2007:     return $selectdomain;
                   2008: }
                   2009: 
1.35      matthew  2010: #-------------------------------------------
                   2011: 
1.45      matthew  2012: =pod
                   2013: 
1.648     raeburn  2014: =item * &home_server_form_item($domain,$name,$defaultflag)
1.35      matthew  2015: 
1.586     raeburn  2016: input: 4 arguments (two required, two optional) - 
                   2017:     $domain - domain of new user
                   2018:     $name - name of form element
                   2019:     $default - Value of 'default' causes a default item to be first 
                   2020:                             option, and selected by default. 
                   2021:     $hide - Value of 'hide' causes hiding of the name of the server, 
                   2022:                             if 1 server found, or default, if 0 found.
1.594     raeburn  2023: output: returns 2 items: 
1.586     raeburn  2024: (a) form element which contains either:
                   2025:    (i) <select name="$name">
                   2026:         <option value="$hostid1">$hostid $servers{$hostid}</option>
                   2027:         <option value="$hostid2">$hostid $servers{$hostid}</option>       
                   2028:        </select>
                   2029:        form item if there are multiple library servers in $domain, or
                   2030:    (ii) an <input type="hidden" name="$name" value="$hostid" /> form item 
                   2031:        if there is only one library server in $domain.
                   2032: 
                   2033: (b) number of library servers found.
                   2034: 
                   2035: See loncreateuser.pm for example of use.
1.35      matthew  2036: 
                   2037: =cut
                   2038: 
                   2039: #-------------------------------------------
1.586     raeburn  2040: sub home_server_form_item {
                   2041:     my ($domain,$name,$default,$hide) = @_;
1.513     albertel 2042:     my %servers = &Apache::lonnet::get_servers($domain,'library');
1.586     raeburn  2043:     my $result;
                   2044:     my $numlib = keys(%servers);
                   2045:     if ($numlib > 1) {
                   2046:         $result .= '<select name="'.$name.'" />'."\n";
                   2047:         if ($default) {
1.804     bisitz   2048:             $result .= '<option value="default" selected="selected">'.&mt('default').
1.586     raeburn  2049:                        '</option>'."\n";
                   2050:         }
                   2051:         foreach my $hostid (sort(keys(%servers))) {
                   2052:             $result.= '<option value="'.$hostid.'">'.
                   2053: 	              $hostid.' '.$servers{$hostid}."</option>\n";
                   2054:         }
                   2055:         $result .= '</select>'."\n";
                   2056:     } elsif ($numlib == 1) {
                   2057:         my $hostid;
                   2058:         foreach my $item (keys(%servers)) {
                   2059:             $hostid = $item;
                   2060:         }
                   2061:         $result .= '<input type="hidden" name="'.$name.'" value="'.
                   2062:                    $hostid.'" />';
                   2063:                    if (!$hide) {
                   2064:                        $result .= $hostid.' '.$servers{$hostid};
                   2065:                    }
                   2066:                    $result .= "\n";
                   2067:     } elsif ($default) {
                   2068:         $result .= '<input type="hidden" name="'.$name.
                   2069:                    '" value="default" />';
                   2070:                    if (!$hide) {
                   2071:                        $result .= &mt('default');
                   2072:                    }
                   2073:                    $result .= "\n";
1.33      matthew  2074:     }
1.586     raeburn  2075:     return ($result,$numlib);
1.33      matthew  2076: }
1.112     bowersj2 2077: 
                   2078: =pod
                   2079: 
1.534     albertel 2080: =back 
                   2081: 
1.112     bowersj2 2082: =cut
1.87      matthew  2083: 
                   2084: ###############################################################
1.112     bowersj2 2085: ##                  Decoding User Agent                      ##
1.87      matthew  2086: ###############################################################
                   2087: 
                   2088: =pod
                   2089: 
1.112     bowersj2 2090: =head1 Decoding the User Agent
                   2091: 
                   2092: =over 4
                   2093: 
                   2094: =item * &decode_user_agent()
1.87      matthew  2095: 
                   2096: Inputs: $r
                   2097: 
                   2098: Outputs:
                   2099: 
                   2100: =over 4
                   2101: 
1.112     bowersj2 2102: =item * $httpbrowser
1.87      matthew  2103: 
1.112     bowersj2 2104: =item * $clientbrowser
1.87      matthew  2105: 
1.112     bowersj2 2106: =item * $clientversion
1.87      matthew  2107: 
1.112     bowersj2 2108: =item * $clientmathml
1.87      matthew  2109: 
1.112     bowersj2 2110: =item * $clientunicode
1.87      matthew  2111: 
1.112     bowersj2 2112: =item * $clientos
1.87      matthew  2113: 
                   2114: =back
                   2115: 
1.157     matthew  2116: =back 
                   2117: 
1.87      matthew  2118: =cut
                   2119: 
                   2120: ###############################################################
                   2121: ###############################################################
                   2122: sub decode_user_agent {
1.247     albertel 2123:     my ($r)=@_;
1.87      matthew  2124:     my @browsertype=split(/\&/,$Apache::lonnet::perlvar{"lonBrowsDet"});
                   2125:     my %mathcap=split(/\&/,$$Apache::lonnet::perlvar{"lonMathML"});
                   2126:     my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
1.247     albertel 2127:     if (!$httpbrowser && $r) { $httpbrowser=$r->header_in('User-Agent'); }
1.87      matthew  2128:     my $clientbrowser='unknown';
                   2129:     my $clientversion='0';
                   2130:     my $clientmathml='';
                   2131:     my $clientunicode='0';
                   2132:     for (my $i=0;$i<=$#browsertype;$i++) {
                   2133:         my ($bname,$match,$notmatch,$vreg,$minv,$univ)=split(/\:/,$browsertype[$i]);
                   2134: 	if (($httpbrowser=~/$match/i)  && ($httpbrowser!~/$notmatch/i)) {
                   2135: 	    $clientbrowser=$bname;
                   2136:             $httpbrowser=~/$vreg/i;
                   2137: 	    $clientversion=$1;
                   2138:             $clientmathml=($clientversion>=$minv);
                   2139:             $clientunicode=($clientversion>=$univ);
                   2140: 	}
                   2141:     }
                   2142:     my $clientos='unknown';
                   2143:     if (($httpbrowser=~/linux/i) ||
                   2144:         ($httpbrowser=~/unix/i) ||
                   2145:         ($httpbrowser=~/ux/i) ||
                   2146:         ($httpbrowser=~/solaris/i)) { $clientos='unix'; }
                   2147:     if (($httpbrowser=~/vax/i) ||
                   2148:         ($httpbrowser=~/vms/i)) { $clientos='vms'; }
                   2149:     if ($httpbrowser=~/next/i) { $clientos='next'; }
                   2150:     if (($httpbrowser=~/mac/i) ||
                   2151:         ($httpbrowser=~/powerpc/i)) { $clientos='mac'; }
                   2152:     if ($httpbrowser=~/win/i) { $clientos='win'; }
                   2153:     if ($httpbrowser=~/embed/i) { $clientos='pda'; }
                   2154:     return ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
                   2155:             $clientunicode,$clientos,);
                   2156: }
                   2157: 
1.32      matthew  2158: ###############################################################
                   2159: ##    Authentication changing form generation subroutines    ##
                   2160: ###############################################################
                   2161: ##
                   2162: ## All of the authform_xxxxxxx subroutines take their inputs in a
                   2163: ## hash, and have reasonable default values.
                   2164: ##
                   2165: ##    formname = the name given in the <form> tag.
1.35      matthew  2166: #-------------------------------------------
                   2167: 
1.45      matthew  2168: =pod
                   2169: 
1.112     bowersj2 2170: =head1 Authentication Routines
                   2171: 
                   2172: =over 4
                   2173: 
1.648     raeburn  2174: =item * &authform_xxxxxx()
1.35      matthew  2175: 
                   2176: The authform_xxxxxx subroutines provide javascript and html forms which 
                   2177: handle some of the conveniences required for authentication forms.  
                   2178: This is not an optimal method, but it works.  
                   2179: 
                   2180: =over 4
                   2181: 
1.112     bowersj2 2182: =item * authform_header
1.35      matthew  2183: 
1.112     bowersj2 2184: =item * authform_authorwarning
1.35      matthew  2185: 
1.112     bowersj2 2186: =item * authform_nochange
1.35      matthew  2187: 
1.112     bowersj2 2188: =item * authform_kerberos
1.35      matthew  2189: 
1.112     bowersj2 2190: =item * authform_internal
1.35      matthew  2191: 
1.112     bowersj2 2192: =item * authform_filesystem
1.35      matthew  2193: 
                   2194: =back
                   2195: 
1.648     raeburn  2196: See loncreateuser.pm for invocation and use examples.
1.157     matthew  2197: 
1.35      matthew  2198: =cut
                   2199: 
                   2200: #-------------------------------------------
1.32      matthew  2201: sub authform_header{  
                   2202:     my %in = (
                   2203:         formname => 'cu',
1.80      albertel 2204:         kerb_def_dom => '',
1.32      matthew  2205:         @_,
                   2206:     );
                   2207:     $in{'formname'} = 'document.' . $in{'formname'};
                   2208:     my $result='';
1.80      albertel 2209: 
                   2210: #---------------------------------------------- Code for upper case translation
                   2211:     my $Javascript_toUpperCase;
                   2212:     unless ($in{kerb_def_dom}) {
                   2213:         $Javascript_toUpperCase =<<"END";
                   2214:         switch (choice) {
                   2215:            case 'krb': currentform.elements[choicearg].value =
                   2216:                currentform.elements[choicearg].value.toUpperCase();
                   2217:                break;
                   2218:            default:
                   2219:         }
                   2220: END
                   2221:     } else {
                   2222:         $Javascript_toUpperCase = "";
                   2223:     }
                   2224: 
1.165     raeburn  2225:     my $radioval = "'nochange'";
1.591     raeburn  2226:     if (defined($in{'curr_authtype'})) {
                   2227:         if ($in{'curr_authtype'} ne '') {
                   2228:             $radioval = "'".$in{'curr_authtype'}."arg'";
                   2229:         }
1.174     matthew  2230:     }
1.165     raeburn  2231:     my $argfield = 'null';
1.591     raeburn  2232:     if (defined($in{'mode'})) {
1.165     raeburn  2233:         if ($in{'mode'} eq 'modifycourse')  {
1.591     raeburn  2234:             if (defined($in{'curr_autharg'})) {
                   2235:                 if ($in{'curr_autharg'} ne '') {
1.165     raeburn  2236:                     $argfield = "'$in{'curr_autharg'}'";
                   2237:                 }
                   2238:             }
                   2239:         }
                   2240:     }
                   2241: 
1.32      matthew  2242:     $result.=<<"END";
                   2243: var current = new Object();
1.165     raeburn  2244: current.radiovalue = $radioval;
                   2245: current.argfield = $argfield;
1.32      matthew  2246: 
                   2247: function changed_radio(choice,currentform) {
                   2248:     var choicearg = choice + 'arg';
                   2249:     // If a radio button in changed, we need to change the argfield
                   2250:     if (current.radiovalue != choice) {
                   2251:         current.radiovalue = choice;
                   2252:         if (current.argfield != null) {
                   2253:             currentform.elements[current.argfield].value = '';
                   2254:         }
                   2255:         if (choice == 'nochange') {
                   2256:             current.argfield = null;
                   2257:         } else {
                   2258:             current.argfield = choicearg;
                   2259:             switch(choice) {
                   2260:                 case 'krb': 
                   2261:                     currentform.elements[current.argfield].value = 
                   2262:                         "$in{'kerb_def_dom'}";
                   2263:                 break;
                   2264:               default:
                   2265:                 break;
                   2266:             }
                   2267:         }
                   2268:     }
                   2269:     return;
                   2270: }
1.22      www      2271: 
1.32      matthew  2272: function changed_text(choice,currentform) {
                   2273:     var choicearg = choice + 'arg';
                   2274:     if (currentform.elements[choicearg].value !='') {
1.80      albertel 2275:         $Javascript_toUpperCase
1.32      matthew  2276:         // clear old field
                   2277:         if ((current.argfield != choicearg) && (current.argfield != null)) {
                   2278:             currentform.elements[current.argfield].value = '';
                   2279:         }
                   2280:         current.argfield = choicearg;
                   2281:     }
                   2282:     set_auth_radio_buttons(choice,currentform);
                   2283:     return;
1.20      www      2284: }
1.32      matthew  2285: 
                   2286: function set_auth_radio_buttons(newvalue,currentform) {
                   2287:     var i=0;
                   2288:     while (i < currentform.login.length) {
                   2289:         if (currentform.login[i].value == newvalue) { break; }
                   2290:         i++;
                   2291:     }
                   2292:     if (i == currentform.login.length) {
                   2293:         return;
                   2294:     }
                   2295:     current.radiovalue = newvalue;
                   2296:     currentform.login[i].checked = true;
                   2297:     return;
                   2298: }
                   2299: END
                   2300:     return $result;
                   2301: }
                   2302: 
                   2303: sub authform_authorwarning{
                   2304:     my $result='';
1.144     matthew  2305:     $result='<i>'.
                   2306:         &mt('As a general rule, only authors or co-authors should be '.
                   2307:             'filesystem authenticated '.
                   2308:             '(which allows access to the server filesystem).')."</i>\n";
1.32      matthew  2309:     return $result;
                   2310: }
                   2311: 
                   2312: sub authform_nochange{  
                   2313:     my %in = (
                   2314:               formname => 'document.cu',
                   2315:               kerb_def_dom => 'MSU.EDU',
                   2316:               @_,
                   2317:           );
1.586     raeburn  2318:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'}); 
                   2319:     my $result;
                   2320:     if (keys(%can_assign) == 0) {
                   2321:         $result = &mt('Under you current role you are not permitted to change login settings for this user');  
                   2322:     } else {
                   2323:         $result = '<label>'.&mt('[_1] Do not change login data',
                   2324:                   '<input type="radio" name="login" value="nochange" '.
                   2325:                   'checked="checked" onclick="'.
1.281     albertel 2326:             "javascript:changed_radio('nochange',$in{'formname'});".'" />').
                   2327: 	    '</label>';
1.586     raeburn  2328:     }
1.32      matthew  2329:     return $result;
                   2330: }
                   2331: 
1.591     raeburn  2332: sub authform_kerberos {
1.32      matthew  2333:     my %in = (
                   2334:               formname => 'document.cu',
                   2335:               kerb_def_dom => 'MSU.EDU',
1.80      albertel 2336:               kerb_def_auth => 'krb4',
1.32      matthew  2337:               @_,
                   2338:               );
1.586     raeburn  2339:     my ($check4,$check5,$krbcheck,$krbarg,$krbver,$result,$authtype,
                   2340:         $autharg,$jscall);
                   2341:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.80      albertel 2342:     if ($in{'kerb_def_auth'} eq 'krb5') {
1.772     bisitz   2343:        $check5 = ' checked="checked"';
1.80      albertel 2344:     } else {
1.772     bisitz   2345:        $check4 = ' checked="checked"';
1.80      albertel 2346:     }
1.165     raeburn  2347:     $krbarg = $in{'kerb_def_dom'};
1.591     raeburn  2348:     if (defined($in{'curr_authtype'})) {
                   2349:         if ($in{'curr_authtype'} eq 'krb') {
1.772     bisitz   2350:             $krbcheck = ' checked="checked"';
1.623     raeburn  2351:             if (defined($in{'mode'})) {
                   2352:                 if ($in{'mode'} eq 'modifyuser') {
                   2353:                     $krbcheck = '';
                   2354:                 }
                   2355:             }
1.591     raeburn  2356:             if (defined($in{'curr_kerb_ver'})) {
                   2357:                 if ($in{'curr_krb_ver'} eq '5') {
1.772     bisitz   2358:                     $check5 = ' checked="checked"';
1.591     raeburn  2359:                     $check4 = '';
                   2360:                 } else {
1.772     bisitz   2361:                     $check4 = ' checked="checked"';
1.591     raeburn  2362:                     $check5 = '';
                   2363:                 }
1.586     raeburn  2364:             }
1.591     raeburn  2365:             if (defined($in{'curr_autharg'})) {
1.165     raeburn  2366:                 $krbarg = $in{'curr_autharg'};
                   2367:             }
1.586     raeburn  2368:             if (!$can_assign{'krb4'} && !$can_assign{'krb5'}) {
1.591     raeburn  2369:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2370:                     $result = 
                   2371:     &mt('Currently Kerberos authenticated with domain [_1] Version [_2].',
                   2372:         $in{'curr_autharg'},$krbver);
                   2373:                 } else {
                   2374:                     $result =
                   2375:     &mt('Currently Kerberos authenticated, Version [_1].',$krbver);
                   2376:                 }
                   2377:                 return $result; 
                   2378:             }
                   2379:         }
                   2380:     } else {
                   2381:         if ($authnum == 1) {
1.784     bisitz   2382:             $authtype = '<input type="hidden" name="login" value="krb" />';
1.165     raeburn  2383:         }
                   2384:     }
1.586     raeburn  2385:     if (!$can_assign{'krb4'} && !$can_assign{'krb5'}) {
                   2386:         return;
1.587     raeburn  2387:     } elsif ($authtype eq '') {
1.591     raeburn  2388:         if (defined($in{'mode'})) {
1.587     raeburn  2389:             if ($in{'mode'} eq 'modifycourse') {
                   2390:                 if ($authnum == 1) {
1.784     bisitz   2391:                     $authtype = '<input type="hidden" name="login" value="krb" />';
1.587     raeburn  2392:                 }
                   2393:             }
                   2394:         }
1.586     raeburn  2395:     }
                   2396:     $jscall = "javascript:changed_radio('krb',$in{'formname'});";
                   2397:     if ($authtype eq '') {
                   2398:         $authtype = '<input type="radio" name="login" value="krb" '.
                   2399:                     'onclick="'.$jscall.'" onchange="'.$jscall.'"'.
                   2400:                     $krbcheck.' />';
                   2401:     }
                   2402:     if (($can_assign{'krb4'} && $can_assign{'krb5'}) ||
                   2403:         ($can_assign{'krb4'} && !$can_assign{'krb5'} && 
                   2404:          $in{'curr_authtype'} eq 'krb5') ||
                   2405:         (!$can_assign{'krb4'} && $can_assign{'krb5'} && 
                   2406:          $in{'curr_authtype'} eq 'krb4')) {
                   2407:         $result .= &mt
1.144     matthew  2408:         ('[_1] Kerberos authenticated with domain [_2] '.
1.281     albertel 2409:          '[_3] Version 4 [_4] Version 5 [_5]',
1.586     raeburn  2410:          '<label>'.$authtype,
1.281     albertel 2411:          '</label><input type="text" size="10" name="krbarg" '.
1.165     raeburn  2412:              'value="'.$krbarg.'" '.
1.144     matthew  2413:              'onchange="'.$jscall.'" />',
1.281     albertel 2414:          '<label><input type="radio" name="krbver" value="4" '.$check4.' />',
                   2415:          '</label><label><input type="radio" name="krbver" value="5" '.$check5.' />',
                   2416: 	 '</label>');
1.586     raeburn  2417:     } elsif ($can_assign{'krb4'}) {
                   2418:         $result .= &mt
                   2419:         ('[_1] Kerberos authenticated with domain [_2] '.
                   2420:          '[_3] Version 4 [_4]',
                   2421:          '<label>'.$authtype,
                   2422:          '</label><input type="text" size="10" name="krbarg" '.
                   2423:              'value="'.$krbarg.'" '.
                   2424:              'onchange="'.$jscall.'" />',
                   2425:          '<label><input type="hidden" name="krbver" value="4" />',
                   2426:          '</label>');
                   2427:     } elsif ($can_assign{'krb5'}) {
                   2428:         $result .= &mt
                   2429:         ('[_1] Kerberos authenticated with domain [_2] '.
                   2430:          '[_3] Version 5 [_4]',
                   2431:          '<label>'.$authtype,
                   2432:          '</label><input type="text" size="10" name="krbarg" '.
                   2433:              'value="'.$krbarg.'" '.
                   2434:              'onchange="'.$jscall.'" />',
                   2435:          '<label><input type="hidden" name="krbver" value="5" />',
                   2436:          '</label>');
                   2437:     }
1.32      matthew  2438:     return $result;
                   2439: }
                   2440: 
                   2441: sub authform_internal{  
1.586     raeburn  2442:     my %in = (
1.32      matthew  2443:                 formname => 'document.cu',
                   2444:                 kerb_def_dom => 'MSU.EDU',
                   2445:                 @_,
                   2446:                 );
1.586     raeburn  2447:     my ($intcheck,$intarg,$result,$authtype,$autharg,$jscall);
                   2448:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2449:     if (defined($in{'curr_authtype'})) {
                   2450:         if ($in{'curr_authtype'} eq 'int') {
1.586     raeburn  2451:             if ($can_assign{'int'}) {
1.772     bisitz   2452:                 $intcheck = 'checked="checked" ';
1.623     raeburn  2453:                 if (defined($in{'mode'})) {
                   2454:                     if ($in{'mode'} eq 'modifyuser') {
                   2455:                         $intcheck = '';
                   2456:                     }
                   2457:                 }
1.591     raeburn  2458:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2459:                     $intarg = $in{'curr_autharg'};
                   2460:                 }
                   2461:             } else {
                   2462:                 $result = &mt('Currently internally authenticated.');
                   2463:                 return $result;
1.165     raeburn  2464:             }
                   2465:         }
1.586     raeburn  2466:     } else {
                   2467:         if ($authnum == 1) {
1.784     bisitz   2468:             $authtype = '<input type="hidden" name="login" value="int" />';
1.586     raeburn  2469:         }
                   2470:     }
                   2471:     if (!$can_assign{'int'}) {
                   2472:         return;
1.587     raeburn  2473:     } elsif ($authtype eq '') {
1.591     raeburn  2474:         if (defined($in{'mode'})) {
1.587     raeburn  2475:             if ($in{'mode'} eq 'modifycourse') {
                   2476:                 if ($authnum == 1) {
1.784     bisitz   2477:                     $authtype = '<input type="hidden" name="login" value="int" />';
1.587     raeburn  2478:                 }
                   2479:             }
                   2480:         }
1.165     raeburn  2481:     }
1.586     raeburn  2482:     $jscall = "javascript:changed_radio('int',$in{'formname'});";
                   2483:     if ($authtype eq '') {
                   2484:         $authtype = '<input type="radio" name="login" value="int" '.$intcheck.
                   2485:                     ' onchange="'.$jscall.'" onclick="'.$jscall.'" />';
                   2486:     }
1.605     bisitz   2487:     $autharg = '<input type="password" size="10" name="intarg" value="'.
1.586     raeburn  2488:                $intarg.'" onchange="'.$jscall.'" />';
                   2489:     $result = &mt
1.144     matthew  2490:         ('[_1] Internally authenticated (with initial password [_2])',
1.586     raeburn  2491:          '<label>'.$authtype,'</label>'.$autharg);
1.824     bisitz   2492:     $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  2493:     return $result;
                   2494: }
                   2495: 
                   2496: sub authform_local{  
                   2497:     my %in = (
                   2498:               formname => 'document.cu',
                   2499:               kerb_def_dom => 'MSU.EDU',
                   2500:               @_,
                   2501:               );
1.586     raeburn  2502:     my ($loccheck,$locarg,$result,$authtype,$autharg,$jscall);
                   2503:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2504:     if (defined($in{'curr_authtype'})) {
                   2505:         if ($in{'curr_authtype'} eq 'loc') {
1.586     raeburn  2506:             if ($can_assign{'loc'}) {
1.772     bisitz   2507:                 $loccheck = 'checked="checked" ';
1.623     raeburn  2508:                 if (defined($in{'mode'})) {
                   2509:                     if ($in{'mode'} eq 'modifyuser') {
                   2510:                         $loccheck = '';
                   2511:                     }
                   2512:                 }
1.591     raeburn  2513:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2514:                     $locarg = $in{'curr_autharg'};
                   2515:                 }
                   2516:             } else {
                   2517:                 $result = &mt('Currently using local (institutional) authentication.');
                   2518:                 return $result;
1.165     raeburn  2519:             }
                   2520:         }
1.586     raeburn  2521:     } else {
                   2522:         if ($authnum == 1) {
1.784     bisitz   2523:             $authtype = '<input type="hidden" name="login" value="loc" />';
1.586     raeburn  2524:         }
                   2525:     }
                   2526:     if (!$can_assign{'loc'}) {
                   2527:         return;
1.587     raeburn  2528:     } elsif ($authtype eq '') {
1.591     raeburn  2529:         if (defined($in{'mode'})) {
1.587     raeburn  2530:             if ($in{'mode'} eq 'modifycourse') {
                   2531:                 if ($authnum == 1) {
1.784     bisitz   2532:                     $authtype = '<input type="hidden" name="login" value="loc" />';
1.587     raeburn  2533:                 }
                   2534:             }
                   2535:         }
1.165     raeburn  2536:     }
1.586     raeburn  2537:     $jscall = "javascript:changed_radio('loc',$in{'formname'});";
                   2538:     if ($authtype eq '') {
                   2539:         $authtype = '<input type="radio" name="login" value="loc" '.
                   2540:                     $loccheck.' onchange="'.$jscall.'" onclick="'.
                   2541:                     $jscall.'" />';
                   2542:     }
                   2543:     $autharg = '<input type="text" size="10" name="locarg" value="'.
                   2544:                $locarg.'" onchange="'.$jscall.'" />';
                   2545:     $result = &mt('[_1] Local Authentication with argument [_2]',
                   2546:                   '<label>'.$authtype,'</label>'.$autharg);
1.32      matthew  2547:     return $result;
                   2548: }
                   2549: 
                   2550: sub authform_filesystem{  
                   2551:     my %in = (
                   2552:               formname => 'document.cu',
                   2553:               kerb_def_dom => 'MSU.EDU',
                   2554:               @_,
                   2555:               );
1.586     raeburn  2556:     my ($fsyscheck,$result,$authtype,$autharg,$jscall);
                   2557:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2558:     if (defined($in{'curr_authtype'})) {
                   2559:         if ($in{'curr_authtype'} eq 'fsys') {
1.586     raeburn  2560:             if ($can_assign{'fsys'}) {
1.772     bisitz   2561:                 $fsyscheck = 'checked="checked" ';
1.623     raeburn  2562:                 if (defined($in{'mode'})) {
                   2563:                     if ($in{'mode'} eq 'modifyuser') {
                   2564:                         $fsyscheck = '';
                   2565:                     }
                   2566:                 }
1.586     raeburn  2567:             } else {
                   2568:                 $result = &mt('Currently Filesystem Authenticated.');
                   2569:                 return $result;
                   2570:             }           
                   2571:         }
                   2572:     } else {
                   2573:         if ($authnum == 1) {
1.784     bisitz   2574:             $authtype = '<input type="hidden" name="login" value="fsys" />';
1.586     raeburn  2575:         }
                   2576:     }
                   2577:     if (!$can_assign{'fsys'}) {
                   2578:         return;
1.587     raeburn  2579:     } elsif ($authtype eq '') {
1.591     raeburn  2580:         if (defined($in{'mode'})) {
1.587     raeburn  2581:             if ($in{'mode'} eq 'modifycourse') {
                   2582:                 if ($authnum == 1) {
1.784     bisitz   2583:                     $authtype = '<input type="hidden" name="login" value="fsys" />';
1.587     raeburn  2584:                 }
                   2585:             }
                   2586:         }
1.586     raeburn  2587:     }
                   2588:     $jscall = "javascript:changed_radio('fsys',$in{'formname'});";
                   2589:     if ($authtype eq '') {
                   2590:         $authtype = '<input type="radio" name="login" value="fsys" '.
                   2591:                     $fsyscheck.' onchange="'.$jscall.'" onclick="'.
                   2592:                     $jscall.'" />';
                   2593:     }
                   2594:     $autharg = '<input type="text" size="10" name="fsysarg" value=""'.
                   2595:                ' onchange="'.$jscall.'" />';
                   2596:     $result = &mt
1.144     matthew  2597:         ('[_1] Filesystem Authenticated (with initial password [_2])',
1.281     albertel 2598:          '<label><input type="radio" name="login" value="fsys" '.
1.586     raeburn  2599:          $fsyscheck.'onchange="'.$jscall.'" onclick="'.$jscall.'" />',
1.605     bisitz   2600:          '</label><input type="password" size="10" name="fsysarg" value="" '.
1.144     matthew  2601:                   'onchange="'.$jscall.'" />');
1.32      matthew  2602:     return $result;
                   2603: }
                   2604: 
1.586     raeburn  2605: sub get_assignable_auth {
                   2606:     my ($dom) = @_;
                   2607:     if ($dom eq '') {
                   2608:         $dom = $env{'request.role.domain'};
                   2609:     }
                   2610:     my %can_assign = (
                   2611:                           krb4 => 1,
                   2612:                           krb5 => 1,
                   2613:                           int  => 1,
                   2614:                           loc  => 1,
                   2615:                      );
                   2616:     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom);
                   2617:     if (ref($domconfig{'usercreation'}) eq 'HASH') {
                   2618:         if (ref($domconfig{'usercreation'}{'authtypes'}) eq 'HASH') {
                   2619:             my $authhash = $domconfig{'usercreation'}{'authtypes'};
                   2620:             my $context;
                   2621:             if ($env{'request.role'} =~ /^au/) {
                   2622:                 $context = 'author';
                   2623:             } elsif ($env{'request.role'} =~ /^dc/) {
                   2624:                 $context = 'domain';
                   2625:             } elsif ($env{'request.course.id'}) {
                   2626:                 $context = 'course';
                   2627:             }
                   2628:             if ($context) {
                   2629:                 if (ref($authhash->{$context}) eq 'HASH') {
                   2630:                    %can_assign = %{$authhash->{$context}}; 
                   2631:                 }
                   2632:             }
                   2633:         }
                   2634:     }
                   2635:     my $authnum = 0;
                   2636:     foreach my $key (keys(%can_assign)) {
                   2637:         if ($can_assign{$key}) {
                   2638:             $authnum ++;
                   2639:         }
                   2640:     }
                   2641:     if ($can_assign{'krb4'} && $can_assign{'krb5'}) {
                   2642:         $authnum --;
                   2643:     }
                   2644:     return ($authnum,%can_assign);
                   2645: }
                   2646: 
1.80      albertel 2647: ###############################################################
                   2648: ##    Get Kerberos Defaults for Domain                 ##
                   2649: ###############################################################
                   2650: ##
                   2651: ## Returns default kerberos version and an associated argument
                   2652: ## as listed in file domain.tab. If not listed, provides
                   2653: ## appropriate default domain and kerberos version.
                   2654: ##
                   2655: #-------------------------------------------
                   2656: 
                   2657: =pod
                   2658: 
1.648     raeburn  2659: =item * &get_kerberos_defaults()
1.80      albertel 2660: 
                   2661: get_kerberos_defaults($target_domain) returns the default kerberos
1.641     raeburn  2662: version and domain. If not found, it defaults to version 4 and the 
                   2663: domain of the server.
1.80      albertel 2664: 
1.648     raeburn  2665: =over 4
                   2666: 
1.80      albertel 2667: ($def_version, $def_krb_domain) = &get_kerberos_defaults($target_domain);
                   2668: 
1.648     raeburn  2669: =back
                   2670: 
                   2671: =back
                   2672: 
1.80      albertel 2673: =cut
                   2674: 
                   2675: #-------------------------------------------
                   2676: sub get_kerberos_defaults {
                   2677:     my $domain=shift;
1.641     raeburn  2678:     my ($krbdef,$krbdefdom);
                   2679:     my %domdefaults = &Apache::lonnet::get_domain_defaults($domain);
                   2680:     if (($domdefaults{'auth_def'} =~/^krb(4|5)$/) && ($domdefaults{'auth_arg_def'} ne '')) {
                   2681:         $krbdef = $domdefaults{'auth_def'};
                   2682:         $krbdefdom = $domdefaults{'auth_arg_def'};
                   2683:     } else {
1.80      albertel 2684:         $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/;
                   2685:         my $krbdefdom=$1;
                   2686:         $krbdefdom=~tr/a-z/A-Z/;
                   2687:         $krbdef = "krb4";
                   2688:     }
                   2689:     return ($krbdef,$krbdefdom);
                   2690: }
1.112     bowersj2 2691: 
1.32      matthew  2692: 
1.46      matthew  2693: ###############################################################
                   2694: ##                Thesaurus Functions                        ##
                   2695: ###############################################################
1.20      www      2696: 
1.46      matthew  2697: =pod
1.20      www      2698: 
1.112     bowersj2 2699: =head1 Thesaurus Functions
                   2700: 
                   2701: =over 4
                   2702: 
1.648     raeburn  2703: =item * &initialize_keywords()
1.46      matthew  2704: 
                   2705: Initializes the package variable %Keywords if it is empty.  Uses the
                   2706: package variable $thesaurus_db_file.
                   2707: 
                   2708: =cut
                   2709: 
                   2710: ###################################################
                   2711: 
                   2712: sub initialize_keywords {
                   2713:     return 1 if (scalar keys(%Keywords));
                   2714:     # If we are here, %Keywords is empty, so fill it up
                   2715:     #   Make sure the file we need exists...
                   2716:     if (! -e $thesaurus_db_file) {
                   2717:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file".
                   2718:                                  " failed because it does not exist");
                   2719:         return 0;
                   2720:     }
                   2721:     #   Set up the hash as a database
                   2722:     my %thesaurus_db;
                   2723:     if (! tie(%thesaurus_db,'GDBM_File',
1.53      albertel 2724:               $thesaurus_db_file,&GDBM_READER(),0640)){
1.46      matthew  2725:         &Apache::lonnet::logthis("Could not tie \%thesaurus_db to ".
                   2726:                                  $thesaurus_db_file);
                   2727:         return 0;
                   2728:     } 
                   2729:     #  Get the average number of appearances of a word.
                   2730:     my $avecount = $thesaurus_db{'average.count'};
                   2731:     #  Put keywords (those that appear > average) into %Keywords
                   2732:     while (my ($word,$data)=each (%thesaurus_db)) {
                   2733:         my ($count,undef) = split /:/,$data;
                   2734:         $Keywords{$word}++ if ($count > $avecount);
                   2735:     }
                   2736:     untie %thesaurus_db;
                   2737:     # Remove special values from %Keywords.
1.356     albertel 2738:     foreach my $value ('total.count','average.count') {
                   2739:         delete($Keywords{$value}) if (exists($Keywords{$value}));
1.586     raeburn  2740:   }
1.46      matthew  2741:     return 1;
                   2742: }
                   2743: 
                   2744: ###################################################
                   2745: 
                   2746: =pod
                   2747: 
1.648     raeburn  2748: =item * &keyword($word)
1.46      matthew  2749: 
                   2750: Returns true if $word is a keyword.  A keyword is a word that appears more 
                   2751: than the average number of times in the thesaurus database.  Calls 
                   2752: &initialize_keywords
                   2753: 
                   2754: =cut
                   2755: 
                   2756: ###################################################
1.20      www      2757: 
                   2758: sub keyword {
1.46      matthew  2759:     return if (!&initialize_keywords());
                   2760:     my $word=lc(shift());
                   2761:     $word=~s/\W//g;
                   2762:     return exists($Keywords{$word});
1.20      www      2763: }
1.46      matthew  2764: 
                   2765: ###############################################################
                   2766: 
                   2767: =pod 
1.20      www      2768: 
1.648     raeburn  2769: =item * &get_related_words()
1.46      matthew  2770: 
1.160     matthew  2771: Look up a word in the thesaurus.  Takes a scalar argument and returns
1.46      matthew  2772: an array of words.  If the keyword is not in the thesaurus, an empty array
                   2773: will be returned.  The order of the words returned is determined by the
                   2774: database which holds them.
                   2775: 
                   2776: Uses global $thesaurus_db_file.
                   2777: 
                   2778: =cut
                   2779: 
                   2780: ###############################################################
                   2781: sub get_related_words {
                   2782:     my $keyword = shift;
                   2783:     my %thesaurus_db;
                   2784:     if (! -e $thesaurus_db_file) {
                   2785:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file ".
                   2786:                                  "failed because the file does not exist");
                   2787:         return ();
                   2788:     }
                   2789:     if (! tie(%thesaurus_db,'GDBM_File',
1.53      albertel 2790:               $thesaurus_db_file,&GDBM_READER(),0640)){
1.46      matthew  2791:         return ();
                   2792:     } 
                   2793:     my @Words=();
1.429     www      2794:     my $count=0;
1.46      matthew  2795:     if (exists($thesaurus_db{$keyword})) {
1.356     albertel 2796: 	# The first element is the number of times
                   2797: 	# the word appears.  We do not need it now.
1.429     www      2798: 	my (undef,@RelatedWords) = (split(/:/,$thesaurus_db{$keyword}));
                   2799: 	my (undef,$mostfrequentcount)=split(/\,/,$RelatedWords[0]);
                   2800: 	my $threshold=$mostfrequentcount/10;
                   2801:         foreach my $possibleword (@RelatedWords) {
                   2802:             my ($word,$wordcount)=split(/\,/,$possibleword);
                   2803:             if ($wordcount>$threshold) {
                   2804: 		push(@Words,$word);
                   2805:                 $count++;
                   2806:                 if ($count>10) { last; }
                   2807: 	    }
1.20      www      2808:         }
                   2809:     }
1.46      matthew  2810:     untie %thesaurus_db;
                   2811:     return @Words;
1.14      harris41 2812: }
1.46      matthew  2813: 
1.112     bowersj2 2814: =pod
                   2815: 
                   2816: =back
                   2817: 
                   2818: =cut
1.61      www      2819: 
                   2820: # -------------------------------------------------------------- Plaintext name
1.81      albertel 2821: =pod
                   2822: 
1.112     bowersj2 2823: =head1 User Name Functions
                   2824: 
                   2825: =over 4
                   2826: 
1.648     raeburn  2827: =item * &plainname($uname,$udom,$first)
1.81      albertel 2828: 
1.112     bowersj2 2829: Takes a users logon name and returns it as a string in
1.226     albertel 2830: "first middle last generation" form 
                   2831: if $first is set to 'lastname' then it returns it as
                   2832: 'lastname generation, firstname middlename' if their is a lastname
1.81      albertel 2833: 
                   2834: =cut
1.61      www      2835: 
1.295     www      2836: 
1.81      albertel 2837: ###############################################################
1.61      www      2838: sub plainname {
1.226     albertel 2839:     my ($uname,$udom,$first)=@_;
1.537     albertel 2840:     return if (!defined($uname) || !defined($udom));
1.295     www      2841:     my %names=&getnames($uname,$udom);
1.226     albertel 2842:     my $name=&Apache::lonnet::format_name($names{'firstname'},
                   2843: 					  $names{'middlename'},
                   2844: 					  $names{'lastname'},
                   2845: 					  $names{'generation'},$first);
                   2846:     $name=~s/^\s+//;
1.62      www      2847:     $name=~s/\s+$//;
                   2848:     $name=~s/\s+/ /g;
1.353     albertel 2849:     if ($name !~ /\S/) { $name=$uname.':'.$udom; }
1.62      www      2850:     return $name;
1.61      www      2851: }
1.66      www      2852: 
                   2853: # -------------------------------------------------------------------- Nickname
1.81      albertel 2854: =pod
                   2855: 
1.648     raeburn  2856: =item * &nickname($uname,$udom)
1.81      albertel 2857: 
                   2858: Gets a users name and returns it as a string as
                   2859: 
                   2860: "&quot;nickname&quot;"
1.66      www      2861: 
1.81      albertel 2862: if the user has a nickname or
                   2863: 
                   2864: "first middle last generation"
                   2865: 
                   2866: if the user does not
                   2867: 
                   2868: =cut
1.66      www      2869: 
                   2870: sub nickname {
                   2871:     my ($uname,$udom)=@_;
1.537     albertel 2872:     return if (!defined($uname) || !defined($udom));
1.295     www      2873:     my %names=&getnames($uname,$udom);
1.68      albertel 2874:     my $name=$names{'nickname'};
1.66      www      2875:     if ($name) {
                   2876:        $name='&quot;'.$name.'&quot;'; 
                   2877:     } else {
                   2878:        $name=$names{'firstname'}.' '.$names{'middlename'}.' '.
                   2879: 	     $names{'lastname'}.' '.$names{'generation'};
                   2880:        $name=~s/\s+$//;
                   2881:        $name=~s/\s+/ /g;
                   2882:     }
                   2883:     return $name;
                   2884: }
                   2885: 
1.295     www      2886: sub getnames {
                   2887:     my ($uname,$udom)=@_;
1.537     albertel 2888:     return if (!defined($uname) || !defined($udom));
1.433     albertel 2889:     if ($udom eq 'public' && $uname eq 'public') {
                   2890: 	return ('lastname' => &mt('Public'));
                   2891:     }
1.295     www      2892:     my $id=$uname.':'.$udom;
                   2893:     my ($names,$cached)=&Apache::lonnet::is_cached_new('namescache',$id);
                   2894:     if ($cached) {
                   2895: 	return %{$names};
                   2896:     } else {
                   2897: 	my %loadnames=&Apache::lonnet::get('environment',
                   2898:                     ['firstname','middlename','lastname','generation','nickname'],
                   2899: 					 $udom,$uname);
                   2900: 	&Apache::lonnet::do_cache_new('namescache',$id,\%loadnames);
                   2901: 	return %loadnames;
                   2902:     }
                   2903: }
1.61      www      2904: 
1.542     raeburn  2905: # -------------------------------------------------------------------- getemails
1.648     raeburn  2906: 
1.542     raeburn  2907: =pod
                   2908: 
1.648     raeburn  2909: =item * &getemails($uname,$udom)
1.542     raeburn  2910: 
                   2911: Gets a user's email information and returns it as a hash with keys:
                   2912: notification, critnotification, permanentemail
                   2913: 
                   2914: For notification and critnotification, values are comma-separated lists 
1.648     raeburn  2915: of e-mail addresses; for permanentemail, value is a single e-mail address.
1.542     raeburn  2916:  
1.648     raeburn  2917: 
1.542     raeburn  2918: =cut
                   2919: 
1.648     raeburn  2920: 
1.466     albertel 2921: sub getemails {
                   2922:     my ($uname,$udom)=@_;
                   2923:     if ($udom eq 'public' && $uname eq 'public') {
                   2924: 	return;
                   2925:     }
1.467     www      2926:     if (!$udom) { $udom=$env{'user.domain'}; }
                   2927:     if (!$uname) { $uname=$env{'user.name'}; }
1.466     albertel 2928:     my $id=$uname.':'.$udom;
                   2929:     my ($names,$cached)=&Apache::lonnet::is_cached_new('emailscache',$id);
                   2930:     if ($cached) {
                   2931: 	return %{$names};
                   2932:     } else {
                   2933: 	my %loadnames=&Apache::lonnet::get('environment',
                   2934:                     			   ['notification','critnotification',
                   2935: 					    'permanentemail'],
                   2936: 					   $udom,$uname);
                   2937: 	&Apache::lonnet::do_cache_new('emailscache',$id,\%loadnames);
                   2938: 	return %loadnames;
                   2939:     }
                   2940: }
                   2941: 
1.551     albertel 2942: sub flush_email_cache {
                   2943:     my ($uname,$udom)=@_;
                   2944:     if (!$udom)  { $udom =$env{'user.domain'}; }
                   2945:     if (!$uname) { $uname=$env{'user.name'};   }
                   2946:     return if ($udom eq 'public' && $uname eq 'public');
                   2947:     my $id=$uname.':'.$udom;
                   2948:     &Apache::lonnet::devalidate_cache_new('emailscache',$id);
                   2949: }
                   2950: 
1.728     raeburn  2951: # -------------------------------------------------------------------- getlangs
                   2952: 
                   2953: =pod
                   2954: 
                   2955: =item * &getlangs($uname,$udom)
                   2956: 
                   2957: Gets a user's language preference and returns it as a hash with key:
                   2958: language.
                   2959: 
                   2960: =cut
                   2961: 
                   2962: 
                   2963: sub getlangs {
                   2964:     my ($uname,$udom) = @_;
                   2965:     if (!$udom)  { $udom =$env{'user.domain'}; }
                   2966:     if (!$uname) { $uname=$env{'user.name'};   }
                   2967:     my $id=$uname.':'.$udom;
                   2968:     my ($langs,$cached)=&Apache::lonnet::is_cached_new('userlangs',$id);
                   2969:     if ($cached) {
                   2970:         return %{$langs};
                   2971:     } else {
                   2972:         my %loadlangs=&Apache::lonnet::get('environment',['languages'],
                   2973:                                            $udom,$uname);
                   2974:         &Apache::lonnet::do_cache_new('userlangs',$id,\%loadlangs);
                   2975:         return %loadlangs;
                   2976:     }
                   2977: }
                   2978: 
                   2979: sub flush_langs_cache {
                   2980:     my ($uname,$udom)=@_;
                   2981:     if (!$udom)  { $udom =$env{'user.domain'}; }
                   2982:     if (!$uname) { $uname=$env{'user.name'};   }
                   2983:     return if ($udom eq 'public' && $uname eq 'public');
                   2984:     my $id=$uname.':'.$udom;
                   2985:     &Apache::lonnet::devalidate_cache_new('userlangs',$id);
                   2986: }
                   2987: 
1.61      www      2988: # ------------------------------------------------------------------ Screenname
1.81      albertel 2989: 
                   2990: =pod
                   2991: 
1.648     raeburn  2992: =item * &screenname($uname,$udom)
1.81      albertel 2993: 
                   2994: Gets a users screenname and returns it as a string
                   2995: 
                   2996: =cut
1.61      www      2997: 
                   2998: sub screenname {
                   2999:     my ($uname,$udom)=@_;
1.258     albertel 3000:     if ($uname eq $env{'user.name'} &&
                   3001: 	$udom eq $env{'user.domain'}) {return $env{'environment.screenname'};}
1.212     albertel 3002:     my %names=&Apache::lonnet::get('environment',['screenname'],$udom,$uname);
1.68      albertel 3003:     return $names{'screenname'};
1.62      www      3004: }
                   3005: 
1.212     albertel 3006: 
1.802     bisitz   3007: # ------------------------------------------------------------- Confirm Wrapper
                   3008: =pod
                   3009: 
                   3010: =item confirmwrapper
                   3011: 
                   3012: Wrap messages about completion of operation in box
                   3013: 
                   3014: =cut
                   3015: 
                   3016: sub confirmwrapper {
                   3017:     my ($message)=@_;
                   3018:     if ($message) {
                   3019:         return "\n".'<div class="LC_confirm_box">'."\n"
                   3020:                .$message."\n"
                   3021:                .'</div>'."\n";
                   3022:     } else {
                   3023:         return $message;
                   3024:     }
                   3025: }
                   3026: 
1.62      www      3027: # ------------------------------------------------------------- Message Wrapper
                   3028: 
                   3029: sub messagewrapper {
1.369     www      3030:     my ($link,$username,$domain,$subject,$text)=@_;
1.62      www      3031:     return 
1.441     albertel 3032:         '<a href="/adm/email?compose=individual&amp;'.
                   3033:         'recname='.$username.'&amp;recdom='.$domain.
                   3034: 	'&amp;subject='.&escape($subject).'&amp;text='.&escape($text).'" '.
1.200     matthew  3035:         'title="'.&mt('Send message').'">'.$link.'</a>';
1.74      www      3036: }
1.802     bisitz   3037: 
1.74      www      3038: # --------------------------------------------------------------- Notes Wrapper
                   3039: 
                   3040: sub noteswrapper {
                   3041:     my ($link,$un,$do)=@_;
                   3042:     return 
1.896     amueller 3043: "<a href='/adm/email?recordftf=retrieve&amp;recname=$un&amp;recdom=$do'>$link</a>";
1.62      www      3044: }
1.802     bisitz   3045: 
1.62      www      3046: # ------------------------------------------------------------- Aboutme Wrapper
                   3047: 
                   3048: sub aboutmewrapper {
1.166     www      3049:     my ($link,$username,$domain,$target)=@_;
1.447     raeburn  3050:     if (!defined($username)  && !defined($domain)) {
                   3051:         return;
                   3052:     }
1.892     amueller 3053:     return '<a href="/adm/'.$domain.'/'.$username.'/aboutme?forcestudent=1"'.
1.756     weissno  3054: 	($target?' target="$target"':'').' title="'.&mt("View this user's personal information page").'">'.$link.'</a>';
1.62      www      3055: }
                   3056: 
                   3057: # ------------------------------------------------------------ Syllabus Wrapper
                   3058: 
                   3059: sub syllabuswrapper {
1.707     bisitz   3060:     my ($linktext,$coursedir,$domain)=@_;
1.208     matthew  3061:     return qq{<a href="/public/$domain/$coursedir/syllabus">$linktext</a>};
1.61      www      3062: }
1.14      harris41 3063: 
1.802     bisitz   3064: # -----------------------------------------------------------------------------
                   3065: 
1.208     matthew  3066: sub track_student_link {
1.887     raeburn  3067:     my ($linktext,$sname,$sdom,$target,$start,$only_body) = @_;
1.268     albertel 3068:     my $link ="/adm/trackstudent?";
1.208     matthew  3069:     my $title = 'View recent activity';
                   3070:     if (defined($sname) && $sname !~ /^\s*$/ &&
                   3071:         defined($sdom)  && $sdom  !~ /^\s*$/) {
1.268     albertel 3072:         $link .= "selected_student=$sname:$sdom";
1.208     matthew  3073:         $title .= ' of this student';
1.268     albertel 3074:     } 
1.208     matthew  3075:     if (defined($target) && $target !~ /^\s*$/) {
                   3076:         $target = qq{target="$target"};
                   3077:     } else {
                   3078:         $target = '';
                   3079:     }
1.268     albertel 3080:     if ($start) { $link.='&amp;start='.$start; }
1.887     raeburn  3081:     if ($only_body) { $link .= '&amp;only_body=1'; }
1.554     albertel 3082:     $title = &mt($title);
                   3083:     $linktext = &mt($linktext);
1.448     albertel 3084:     return qq{<a href="$link" title="$title" $target>$linktext</a>}.
                   3085: 	&help_open_topic('View_recent_activity');
1.208     matthew  3086: }
                   3087: 
1.781     raeburn  3088: sub slot_reservations_link {
                   3089:     my ($linktext,$sname,$sdom,$target) = @_;
                   3090:     my $link ="/adm/slotrequest?command=showresv&amp;origin=aboutme";
                   3091:     my $title = 'View slot reservation history';
                   3092:     if (defined($sname) && $sname !~ /^\s*$/ &&
                   3093:         defined($sdom)  && $sdom  !~ /^\s*$/) {
                   3094:         $link .= "&amp;uname=$sname&amp;udom=$sdom";
                   3095:         $title .= ' of this student';
                   3096:     }
                   3097:     if (defined($target) && $target !~ /^\s*$/) {
                   3098:         $target = qq{target="$target"};
                   3099:     } else {
                   3100:         $target = '';
                   3101:     }
                   3102:     $title = &mt($title);
                   3103:     $linktext = &mt($linktext);
                   3104:     return qq{<a href="$link" title="$title" $target>$linktext</a>};
                   3105: # FIXME uncomment when help item created: &help_open_topic('Slot_Reservation_History');
                   3106: 
                   3107: }
                   3108: 
1.508     www      3109: # ===================================================== Display a student photo
                   3110: 
                   3111: 
1.509     albertel 3112: sub student_image_tag {
1.508     www      3113:     my ($domain,$user)=@_;
                   3114:     my $imgsrc=&Apache::lonnet::studentphoto($domain,$user,'jpg');
                   3115:     if (($imgsrc) && ($imgsrc ne '/adm/lonKaputt/lonlogo_broken.gif')) {
                   3116: 	return '<img src="'.$imgsrc.'" align="right" />';
                   3117:     } else {
                   3118: 	return '';
                   3119:     }
                   3120: }
                   3121: 
1.112     bowersj2 3122: =pod
                   3123: 
                   3124: =back
                   3125: 
                   3126: =head1 Access .tab File Data
                   3127: 
                   3128: =over 4
                   3129: 
1.648     raeburn  3130: =item * &languageids() 
1.112     bowersj2 3131: 
                   3132: returns list of all language ids
                   3133: 
                   3134: =cut
                   3135: 
1.14      harris41 3136: sub languageids {
1.16      harris41 3137:     return sort(keys(%language));
1.14      harris41 3138: }
                   3139: 
1.112     bowersj2 3140: =pod
                   3141: 
1.648     raeburn  3142: =item * &languagedescription() 
1.112     bowersj2 3143: 
                   3144: returns description of a specified language id
                   3145: 
                   3146: =cut
                   3147: 
1.14      harris41 3148: sub languagedescription {
1.125     www      3149:     my $code=shift;
                   3150:     return  ($supported_language{$code}?'* ':'').
                   3151:             $language{$code}.
1.126     www      3152: 	    ($supported_language{$code}?' ('.&mt('interface available').')':'');
1.145     www      3153: }
                   3154: 
                   3155: sub plainlanguagedescription {
                   3156:     my $code=shift;
                   3157:     return $language{$code};
                   3158: }
                   3159: 
                   3160: sub supportedlanguagecode {
                   3161:     my $code=shift;
                   3162:     return $supported_language{$code};
1.97      www      3163: }
                   3164: 
1.112     bowersj2 3165: =pod
                   3166: 
1.648     raeburn  3167: =item * &copyrightids() 
1.112     bowersj2 3168: 
                   3169: returns list of all copyrights
                   3170: 
                   3171: =cut
                   3172: 
                   3173: sub copyrightids {
                   3174:     return sort(keys(%cprtag));
                   3175: }
                   3176: 
                   3177: =pod
                   3178: 
1.648     raeburn  3179: =item * &copyrightdescription() 
1.112     bowersj2 3180: 
                   3181: returns description of a specified copyright id
                   3182: 
                   3183: =cut
                   3184: 
                   3185: sub copyrightdescription {
1.166     www      3186:     return &mt($cprtag{shift(@_)});
1.112     bowersj2 3187: }
1.197     matthew  3188: 
                   3189: =pod
                   3190: 
1.648     raeburn  3191: =item * &source_copyrightids() 
1.192     taceyjo1 3192: 
                   3193: returns list of all source copyrights
                   3194: 
                   3195: =cut
                   3196: 
                   3197: sub source_copyrightids {
                   3198:     return sort(keys(%scprtag));
                   3199: }
                   3200: 
                   3201: =pod
                   3202: 
1.648     raeburn  3203: =item * &source_copyrightdescription() 
1.192     taceyjo1 3204: 
                   3205: returns description of a specified source copyright id
                   3206: 
                   3207: =cut
                   3208: 
                   3209: sub source_copyrightdescription {
                   3210:     return &mt($scprtag{shift(@_)});
                   3211: }
1.112     bowersj2 3212: 
                   3213: =pod
                   3214: 
1.648     raeburn  3215: =item * &filecategories() 
1.112     bowersj2 3216: 
                   3217: returns list of all file categories
                   3218: 
                   3219: =cut
                   3220: 
                   3221: sub filecategories {
                   3222:     return sort(keys(%category_extensions));
                   3223: }
                   3224: 
                   3225: =pod
                   3226: 
1.648     raeburn  3227: =item * &filecategorytypes() 
1.112     bowersj2 3228: 
                   3229: returns list of file types belonging to a given file
                   3230: category
                   3231: 
                   3232: =cut
                   3233: 
                   3234: sub filecategorytypes {
1.356     albertel 3235:     my ($cat) = @_;
                   3236:     return @{$category_extensions{lc($cat)}};
1.112     bowersj2 3237: }
                   3238: 
                   3239: =pod
                   3240: 
1.648     raeburn  3241: =item * &fileembstyle() 
1.112     bowersj2 3242: 
                   3243: returns embedding style for a specified file type
                   3244: 
                   3245: =cut
                   3246: 
                   3247: sub fileembstyle {
                   3248:     return $fe{lc(shift(@_))};
1.169     www      3249: }
                   3250: 
1.351     www      3251: sub filemimetype {
                   3252:     return $fm{lc(shift(@_))};
                   3253: }
                   3254: 
1.169     www      3255: 
                   3256: sub filecategoryselect {
                   3257:     my ($name,$value)=@_;
1.189     matthew  3258:     return &select_form($value,$name,
1.169     www      3259: 			'' => &mt('Any category'),
1.948.2.7  raeburn  3260: 			{'' => &mt('Any category'), map { $_,$_ } sort(keys(%category_extensions))});
1.112     bowersj2 3261: }
                   3262: 
                   3263: =pod
                   3264: 
1.648     raeburn  3265: =item * &filedescription() 
1.112     bowersj2 3266: 
                   3267: returns description for a specified file type
                   3268: 
                   3269: =cut
                   3270: 
                   3271: sub filedescription {
1.188     matthew  3272:     my $file_description = $fd{lc(shift())};
                   3273:     $file_description =~ s:([\[\]]):~$1:g;
                   3274:     return &mt($file_description);
1.112     bowersj2 3275: }
                   3276: 
                   3277: =pod
                   3278: 
1.648     raeburn  3279: =item * &filedescriptionex() 
1.112     bowersj2 3280: 
                   3281: returns description for a specified file type with
                   3282: extra formatting
                   3283: 
                   3284: =cut
                   3285: 
                   3286: sub filedescriptionex {
                   3287:     my $ex=shift;
1.188     matthew  3288:     my $file_description = $fd{lc($ex)};
                   3289:     $file_description =~ s:([\[\]]):~$1:g;
                   3290:     return '.'.$ex.' '.&mt($file_description);
1.112     bowersj2 3291: }
                   3292: 
                   3293: # End of .tab access
                   3294: =pod
                   3295: 
                   3296: =back
                   3297: 
                   3298: =cut
                   3299: 
                   3300: # ------------------------------------------------------------------ File Types
                   3301: sub fileextensions {
                   3302:     return sort(keys(%fe));
                   3303: }
                   3304: 
1.97      www      3305: # ----------------------------------------------------------- Display Languages
                   3306: # returns a hash with all desired display languages
                   3307: #
                   3308: 
                   3309: sub display_languages {
                   3310:     my %languages=();
1.695     raeburn  3311:     foreach my $lang (&Apache::lonlocal::preferred_languages()) {
1.356     albertel 3312: 	$languages{$lang}=1;
1.97      www      3313:     }
                   3314:     &get_unprocessed_cgi($ENV{'QUERY_STRING'},['displaylanguage']);
1.258     albertel 3315:     if ($env{'form.displaylanguage'}) {
1.356     albertel 3316: 	foreach my $lang (split(/\s*(\,|\;|\:)\s*/,$env{'form.displaylanguage'})) {
                   3317: 	    $languages{$lang}=1;
1.97      www      3318:         }
                   3319:     }
                   3320:     return %languages;
1.14      harris41 3321: }
                   3322: 
1.582     albertel 3323: sub languages {
                   3324:     my ($possible_langs) = @_;
1.695     raeburn  3325:     my @preferred_langs = &Apache::lonlocal::preferred_languages();
1.582     albertel 3326:     if (!ref($possible_langs)) {
                   3327: 	if( wantarray ) {
                   3328: 	    return @preferred_langs;
                   3329: 	} else {
                   3330: 	    return $preferred_langs[0];
                   3331: 	}
                   3332:     }
                   3333:     my %possibilities = map { $_ => 1 } (@$possible_langs);
                   3334:     my @preferred_possibilities;
                   3335:     foreach my $preferred_lang (@preferred_langs) {
                   3336: 	if (exists($possibilities{$preferred_lang})) {
                   3337: 	    push(@preferred_possibilities, $preferred_lang);
                   3338: 	}
                   3339:     }
                   3340:     if( wantarray ) {
                   3341: 	return @preferred_possibilities;
                   3342:     }
                   3343:     return $preferred_possibilities[0];
                   3344: }
                   3345: 
1.742     raeburn  3346: sub user_lang {
                   3347:     my ($touname,$toudom,$fromcid) = @_;
                   3348:     my @userlangs;
                   3349:     if (($fromcid ne '') && ($env{'course.'.$fromcid.'.languages'} ne '')) {
                   3350:         @userlangs=(@userlangs,split(/\s*(\,|\;|\:)\s*/,
                   3351:                     $env{'course.'.$fromcid.'.languages'}));
                   3352:     } else {
                   3353:         my %langhash = &getlangs($touname,$toudom);
                   3354:         if ($langhash{'languages'} ne '') {
                   3355:             @userlangs = split(/\s*(\,|\;|\:)\s*/,$langhash{'languages'});
                   3356:         } else {
                   3357:             my %domdefs = &Apache::lonnet::get_domain_defaults($toudom);
                   3358:             if ($domdefs{'lang_def'} ne '') {
                   3359:                 @userlangs = ($domdefs{'lang_def'});
                   3360:             }
                   3361:         }
                   3362:     }
                   3363:     my @languages=&Apache::lonlocal::get_genlanguages(@userlangs);
                   3364:     my $user_lh = Apache::localize->get_handle(@languages);
                   3365:     return $user_lh;
                   3366: }
                   3367: 
                   3368: 
1.112     bowersj2 3369: ###############################################################
                   3370: ##               Student Answer Attempts                     ##
                   3371: ###############################################################
                   3372: 
                   3373: =pod
                   3374: 
                   3375: =head1 Alternate Problem Views
                   3376: 
                   3377: =over 4
                   3378: 
1.648     raeburn  3379: =item * &get_previous_attempt($symb, $username, $domain, $course,
1.112     bowersj2 3380:     $getattempt, $regexp, $gradesub)
                   3381: 
                   3382: Return string with previous attempt on problem. Arguments:
                   3383: 
                   3384: =over 4
                   3385: 
                   3386: =item * $symb: Problem, including path
                   3387: 
                   3388: =item * $username: username of the desired student
                   3389: 
                   3390: =item * $domain: domain of the desired student
1.14      harris41 3391: 
1.112     bowersj2 3392: =item * $course: Course ID
1.14      harris41 3393: 
1.112     bowersj2 3394: =item * $getattempt: Leave blank for all attempts, otherwise put
                   3395:     something
1.14      harris41 3396: 
1.112     bowersj2 3397: =item * $regexp: if string matches this regexp, the string will be
                   3398:     sent to $gradesub
1.14      harris41 3399: 
1.112     bowersj2 3400: =item * $gradesub: routine that processes the string if it matches $regexp
1.14      harris41 3401: 
1.112     bowersj2 3402: =back
1.14      harris41 3403: 
1.112     bowersj2 3404: The output string is a table containing all desired attempts, if any.
1.16      harris41 3405: 
1.112     bowersj2 3406: =cut
1.1       albertel 3407: 
                   3408: sub get_previous_attempt {
1.43      ng       3409:   my ($symb,$username,$domain,$course,$getattempt,$regexp,$gradesub)=@_;
1.1       albertel 3410:   my $prevattempts='';
1.43      ng       3411:   no strict 'refs';
1.1       albertel 3412:   if ($symb) {
1.3       albertel 3413:     my (%returnhash)=
                   3414:       &Apache::lonnet::restore($symb,$course,$domain,$username);
1.1       albertel 3415:     if ($returnhash{'version'}) {
                   3416:       my %lasthash=();
                   3417:       my $version;
                   3418:       for ($version=1;$version<=$returnhash{'version'};$version++) {
1.356     albertel 3419:         foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
                   3420: 	  $lasthash{$key}=$returnhash{$version.':'.$key};
1.19      harris41 3421:         }
1.1       albertel 3422:       }
1.596     albertel 3423:       $prevattempts=&start_data_table().&start_data_table_header_row();
                   3424:       $prevattempts.='<th>'.&mt('History').'</th>';
1.948.2.8! raeburn  3425:       my (%typeparts,%lasthidden);
1.945     raeburn  3426:       my $showsurv=&Apache::lonnet::allowed('vas',$env{'request.course.id'});
1.356     albertel 3427:       foreach my $key (sort(keys(%lasthash))) {
                   3428: 	my ($ign,@parts) = split(/\./,$key);
1.41      ng       3429: 	if ($#parts > 0) {
1.31      albertel 3430: 	  my $data=$parts[-1];
                   3431: 	  pop(@parts);
1.945     raeburn  3432:           if ($data eq 'type') {
                   3433:               unless ($showsurv) {
                   3434:                   my $id = join(',',@parts);
                   3435:                   $typeparts{$ign.'.'.$id} = $lasthash{$key};
1.948.2.8! raeburn  3436:                   if (($lasthash{$key} eq 'anonsurvey') || ($lasthash{$key} eq 'anonsurveycred')) {
        !          3437:                       $lasthidden{$ign.'.'.$id} = 1;
        !          3438:                   }
1.945     raeburn  3439:               }
                   3440:               delete($lasthash{$key});
                   3441:           } else {
                   3442: 	      $prevattempts.='<th>'.&mt('Part ').join('.',@parts).'<br />'.$data.'&nbsp;</th>';
                   3443:           }
1.31      albertel 3444: 	} else {
1.41      ng       3445: 	  if ($#parts == 0) {
                   3446: 	    $prevattempts.='<th>'.$parts[0].'</th>';
                   3447: 	  } else {
                   3448: 	    $prevattempts.='<th>'.$ign.'</th>';
                   3449: 	  }
1.31      albertel 3450: 	}
1.16      harris41 3451:       }
1.596     albertel 3452:       $prevattempts.=&end_data_table_header_row();
1.40      ng       3453:       if ($getattempt eq '') {
                   3454: 	for ($version=1;$version<=$returnhash{'version'};$version++) {
1.945     raeburn  3455:             my @hidden;
                   3456:             if (%typeparts) {
                   3457:                 foreach my $id (keys(%typeparts)) {
                   3458:                     if (($returnhash{$version.':'.$id.'.type'} eq 'anonsurvey') || ($returnhash{$version.':'.$id.'.type'} eq 'anonsurveycred')) {
                   3459:                         push(@hidden,$id);
                   3460:                     }
                   3461:                 }
                   3462:             }
                   3463:             $prevattempts.=&start_data_table_row().
                   3464:                            '<td>'.&mt('Transaction [_1]',$version).'</td>';
                   3465:             if (@hidden) {
                   3466:                 foreach my $key (sort(keys(%lasthash))) {
                   3467:                     my $hide;
                   3468:                     foreach my $id (@hidden) {
                   3469:                         if ($key =~ /^\Q$id\E/) {
                   3470:                             $hide = 1;
                   3471:                             last;
                   3472:                         }
                   3473:                     }
                   3474:                     if ($hide) {
                   3475:                         my ($id,$data) = ($key =~ /^(.+)\.([^.]+)$/);
                   3476:                         if (($data eq 'award') || ($data eq 'awarddetail')) {
                   3477:                             my $value = &format_previous_attempt_value($key,
                   3478:                                              $returnhash{$version.':'.$key});
                   3479:                             $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3480:                         } else {
                   3481:                             $prevattempts.='<td>&nbsp;</td>';
                   3482:                         }
                   3483:                     } else {
                   3484:                         if ($key =~ /\./) {
                   3485:                             my $value = &format_previous_attempt_value($key,
                   3486:                                               $returnhash{$version.':'.$key});
                   3487:                             $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3488:                         } else {
                   3489:                             $prevattempts.='<td>&nbsp;</td>';
                   3490:                         }
                   3491:                     }
                   3492:                 }
                   3493:             } else {
                   3494: 	        foreach my $key (sort(keys(%lasthash))) {
                   3495: 		    my $value = &format_previous_attempt_value($key,
                   3496: 			            $returnhash{$version.':'.$key});
                   3497: 		    $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3498: 	        }
                   3499:             }
                   3500: 	    $prevattempts.=&end_data_table_row();
1.40      ng       3501: 	 }
1.1       albertel 3502:       }
1.945     raeburn  3503:       my @currhidden = keys(%lasthidden);
1.596     albertel 3504:       $prevattempts.=&start_data_table_row().'<td>'.&mt('Current').'</td>';
1.356     albertel 3505:       foreach my $key (sort(keys(%lasthash))) {
1.945     raeburn  3506:           if (%typeparts) {
                   3507:               my $hidden;
                   3508:               foreach my $id (@currhidden) {
                   3509:                   if ($key =~ /^\Q$id\E/) {
                   3510:                       $hidden = 1;
                   3511:                       last;
                   3512:                   }
                   3513:               }
                   3514:               if ($hidden) {
                   3515:                   my ($id,$data) = ($key =~ /^(.+)\.([^.]+)$/);
                   3516:                   if (($data eq 'award') || ($data eq 'awarddetail')) {
                   3517:                       my $value = &format_previous_attempt_value($key,$lasthash{$key});
                   3518:                       if ($key =~/$regexp$/ && (defined &$gradesub)) {
                   3519:                           $value = &$gradesub($value);
                   3520:                       }
                   3521:                       $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3522:                   } else {
                   3523:                       $prevattempts.='<td>&nbsp;</td>';
                   3524:                   }
                   3525:               } else {
                   3526:                   my $value = &format_previous_attempt_value($key,$lasthash{$key});
                   3527:                   if ($key =~/$regexp$/ && (defined &$gradesub)) {
                   3528:                       $value = &$gradesub($value);
                   3529:                   }
                   3530:                   $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3531:               }
                   3532:           } else {
                   3533: 	      my $value = &format_previous_attempt_value($key,$lasthash{$key});
                   3534: 	      if ($key =~/$regexp$/ && (defined &$gradesub)) {
                   3535:                   $value = &$gradesub($value);
                   3536:               }
                   3537: 	      $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3538:           }
1.16      harris41 3539:       }
1.596     albertel 3540:       $prevattempts.= &end_data_table_row().&end_data_table();
1.1       albertel 3541:     } else {
1.596     albertel 3542:       $prevattempts=
                   3543: 	  &start_data_table().&start_data_table_row().
                   3544: 	  '<td>'.&mt('Nothing submitted - no attempts.').'</td>'.
                   3545: 	  &end_data_table_row().&end_data_table();
1.1       albertel 3546:     }
                   3547:   } else {
1.596     albertel 3548:     $prevattempts=
                   3549: 	  &start_data_table().&start_data_table_row().
                   3550: 	  '<td>'.&mt('No data.').'</td>'.
                   3551: 	  &end_data_table_row().&end_data_table();
1.1       albertel 3552:   }
1.10      albertel 3553: }
                   3554: 
1.581     albertel 3555: sub format_previous_attempt_value {
                   3556:     my ($key,$value) = @_;
                   3557:     if ($key =~ /timestamp/) {
                   3558: 	$value = &Apache::lonlocal::locallocaltime($value);
                   3559:     } elsif (ref($value) eq 'ARRAY') {
                   3560: 	$value = '('.join(', ', @{ $value }).')';
                   3561:     } else {
                   3562: 	$value = &unescape($value);
                   3563:     }
                   3564:     return $value;
                   3565: }
                   3566: 
                   3567: 
1.107     albertel 3568: sub relative_to_absolute {
                   3569:     my ($url,$output)=@_;
                   3570:     my $parser=HTML::TokeParser->new(\$output);
                   3571:     my $token;
                   3572:     my $thisdir=$url;
                   3573:     my @rlinks=();
                   3574:     while ($token=$parser->get_token) {
                   3575: 	if ($token->[0] eq 'S') {
                   3576: 	    if ($token->[1] eq 'a') {
                   3577: 		if ($token->[2]->{'href'}) {
                   3578: 		    $rlinks[$#rlinks+1]=$token->[2]->{'href'};
                   3579: 		}
                   3580: 	    } elsif ($token->[1] eq 'img' || $token->[1] eq 'embed' ) {
                   3581: 		$rlinks[$#rlinks+1]=$token->[2]->{'src'};
                   3582: 	    } elsif ($token->[1] eq 'base') {
                   3583: 		$thisdir=$token->[2]->{'href'};
                   3584: 	    }
                   3585: 	}
                   3586:     }
                   3587:     $thisdir=~s-/[^/]*$--;
1.356     albertel 3588:     foreach my $link (@rlinks) {
1.726     raeburn  3589: 	unless (($link=~/^https?\:\/\//i) ||
1.356     albertel 3590: 		($link=~/^\//) ||
                   3591: 		($link=~/^javascript:/i) ||
                   3592: 		($link=~/^mailto:/i) ||
                   3593: 		($link=~/^\#/)) {
                   3594: 	    my $newlocation=&Apache::lonnet::hreflocation($thisdir,$link);
                   3595: 	    $output=~s/(\"|\'|\=\s*)\Q$link\E(\"|\'|\s|\>)/$1$newlocation$2/;
1.107     albertel 3596: 	}
                   3597:     }
                   3598: # -------------------------------------------------- Deal with Applet codebases
                   3599:     $output=~s/(\<applet[^\>]+)(codebase\=[^\S\>]+)*([^\>]*)\>/$1.($2?$2:' codebase="'.$thisdir.'"').$3.'>'/gei;
                   3600:     return $output;
                   3601: }
                   3602: 
1.112     bowersj2 3603: =pod
                   3604: 
1.648     raeburn  3605: =item * &get_student_view()
1.112     bowersj2 3606: 
                   3607: show a snapshot of what student was looking at
                   3608: 
                   3609: =cut
                   3610: 
1.10      albertel 3611: sub get_student_view {
1.186     albertel 3612:   my ($symb,$username,$domain,$courseid,$target,$moreenv) = @_;
1.114     www      3613:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
1.186     albertel 3614:   my (%form);
1.10      albertel 3615:   my @elements=('symb','courseid','domain','username');
                   3616:   foreach my $element (@elements) {
1.186     albertel 3617:       $form{'grade_'.$element}=eval '$'.$element #'
1.10      albertel 3618:   }
1.186     albertel 3619:   if (defined($moreenv)) {
                   3620:       %form=(%form,%{$moreenv});
                   3621:   }
1.236     albertel 3622:   if (defined($target)) { $form{'grade_target'} = $target; }
1.107     albertel 3623:   $feedurl=&Apache::lonnet::clutter($feedurl);
1.650     www      3624:   my ($userview,$response)=&Apache::lonnet::ssi_body($feedurl,%form);
1.11      albertel 3625:   $userview=~s/\<body[^\>]*\>//gi;
                   3626:   $userview=~s/\<\/body\>//gi;
                   3627:   $userview=~s/\<html\>//gi;
                   3628:   $userview=~s/\<\/html\>//gi;
                   3629:   $userview=~s/\<head\>//gi;
                   3630:   $userview=~s/\<\/head\>//gi;
                   3631:   $userview=~s/action\s*\=/would_be_action\=/gi;
1.107     albertel 3632:   $userview=&relative_to_absolute($feedurl,$userview);
1.650     www      3633:   if (wantarray) {
                   3634:      return ($userview,$response);
                   3635:   } else {
                   3636:      return $userview;
                   3637:   }
                   3638: }
                   3639: 
                   3640: sub get_student_view_with_retries {
                   3641:   my ($symb,$retries,$username,$domain,$courseid,$target,$moreenv) = @_;
                   3642: 
                   3643:     my $ok = 0;                 # True if we got a good response.
                   3644:     my $content;
                   3645:     my $response;
                   3646: 
                   3647:     # Try to get the student_view done. within the retries count:
                   3648:     
                   3649:     do {
                   3650:          ($content, $response) = &get_student_view($symb,$username,$domain,$courseid,$target,$moreenv);
                   3651:          $ok      = $response->is_success;
                   3652:          if (!$ok) {
                   3653:             &Apache::lonnet::logthis("Failed get_student_view_with_retries on $symb: ".$response->is_success.', '.$response->code.', '.$response->message);
                   3654:          }
                   3655:          $retries--;
                   3656:     } while (!$ok && ($retries > 0));
                   3657:     
                   3658:     if (!$ok) {
                   3659:        $content = '';          # On error return an empty content.
                   3660:     }
1.651     www      3661:     if (wantarray) {
                   3662:        return ($content, $response);
                   3663:     } else {
                   3664:        return $content;
                   3665:     }
1.11      albertel 3666: }
                   3667: 
1.112     bowersj2 3668: =pod
                   3669: 
1.648     raeburn  3670: =item * &get_student_answers() 
1.112     bowersj2 3671: 
                   3672: show a snapshot of how student was answering problem
                   3673: 
                   3674: =cut
                   3675: 
1.11      albertel 3676: sub get_student_answers {
1.100     sakharuk 3677:   my ($symb,$username,$domain,$courseid,%form) = @_;
1.114     www      3678:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
1.186     albertel 3679:   my (%moreenv);
1.11      albertel 3680:   my @elements=('symb','courseid','domain','username');
                   3681:   foreach my $element (@elements) {
1.186     albertel 3682:     $moreenv{'grade_'.$element}=eval '$'.$element #'
1.10      albertel 3683:   }
1.186     albertel 3684:   $moreenv{'grade_target'}='answer';
                   3685:   %moreenv=(%form,%moreenv);
1.497     raeburn  3686:   $feedurl = &Apache::lonnet::clutter($feedurl);
                   3687:   my $userview=&Apache::lonnet::ssi($feedurl,%moreenv);
1.10      albertel 3688:   return $userview;
1.1       albertel 3689: }
1.116     albertel 3690: 
                   3691: =pod
                   3692: 
                   3693: =item * &submlink()
                   3694: 
1.242     albertel 3695: Inputs: $text $uname $udom $symb $target
1.116     albertel 3696: 
                   3697: Returns: A link to grades.pm such as to see the SUBM view of a student
                   3698: 
                   3699: =cut
                   3700: 
                   3701: ###############################################
                   3702: sub submlink {
1.242     albertel 3703:     my ($text,$uname,$udom,$symb,$target)=@_;
1.116     albertel 3704:     if (!($uname && $udom)) {
                   3705: 	(my $cursymb, my $courseid,$udom,$uname)=
1.463     albertel 3706: 	    &Apache::lonnet::whichuser($symb);
1.116     albertel 3707: 	if (!$symb) { $symb=$cursymb; }
                   3708:     }
1.254     matthew  3709:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
1.369     www      3710:     $symb=&escape($symb);
1.948.2.4  raeburn  3711:     if ($target) { $target=" target=\"$target\""; }
                   3712:     return
                   3713:         '<a href="/adm/grades?command=submission'.
                   3714:         '&amp;symb='.$symb.
                   3715:         '&amp;student='.$uname.
                   3716:         '&amp;userdom='.$udom.'"'.
                   3717:         $target.'>'.$text.'</a>';
1.242     albertel 3718: }
                   3719: ##############################################
                   3720: 
                   3721: =pod
                   3722: 
                   3723: =item * &pgrdlink()
                   3724: 
                   3725: Inputs: $text $uname $udom $symb $target
                   3726: 
                   3727: Returns: A link to grades.pm such as to see the PGRD view of a student
                   3728: 
                   3729: =cut
                   3730: 
                   3731: ###############################################
                   3732: sub pgrdlink {
                   3733:     my $link=&submlink(@_);
                   3734:     $link=~s/(&command=submission)/$1&showgrading=yes/;
                   3735:     return $link;
                   3736: }
                   3737: ##############################################
                   3738: 
                   3739: =pod
                   3740: 
                   3741: =item * &pprmlink()
                   3742: 
                   3743: Inputs: $text $uname $udom $symb $target
                   3744: 
                   3745: Returns: A link to parmset.pm such as to see the PPRM view of a
1.283     albertel 3746: student and a specific resource
1.242     albertel 3747: 
                   3748: =cut
                   3749: 
                   3750: ###############################################
                   3751: sub pprmlink {
                   3752:     my ($text,$uname,$udom,$symb,$target)=@_;
                   3753:     if (!($uname && $udom)) {
                   3754: 	(my $cursymb, my $courseid,$udom,$uname)=
1.463     albertel 3755: 	    &Apache::lonnet::whichuser($symb);
1.242     albertel 3756: 	if (!$symb) { $symb=$cursymb; }
                   3757:     }
1.254     matthew  3758:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
1.369     www      3759:     $symb=&escape($symb);
1.242     albertel 3760:     if ($target) { $target="target=\"$target\""; }
1.595     albertel 3761:     return '<a href="/adm/parmset?command=set&amp;'.
                   3762: 	'symb='.$symb.'&amp;uname='.$uname.
                   3763: 	'&amp;udom='.$udom.'" '.$target.'>'.$text.'</a>';
1.116     albertel 3764: }
                   3765: ##############################################
1.37      matthew  3766: 
1.112     bowersj2 3767: =pod
                   3768: 
                   3769: =back
                   3770: 
                   3771: =cut
                   3772: 
1.37      matthew  3773: ###############################################
1.51      www      3774: 
                   3775: 
                   3776: sub timehash {
1.687     raeburn  3777:     my ($thistime) = @_;
                   3778:     my $timezone = &Apache::lonlocal::gettimezone();
                   3779:     my $dt = DateTime->from_epoch(epoch => $thistime)
                   3780:                      ->set_time_zone($timezone);
                   3781:     my $wday = $dt->day_of_week();
                   3782:     if ($wday == 7) { $wday = 0; }
                   3783:     return ( 'second' => $dt->second(),
                   3784:              'minute' => $dt->minute(),
                   3785:              'hour'   => $dt->hour(),
                   3786:              'day'     => $dt->day_of_month(),
                   3787:              'month'   => $dt->month(),
                   3788:              'year'    => $dt->year(),
                   3789:              'weekday' => $wday,
                   3790:              'dayyear' => $dt->day_of_year(),
                   3791:              'dlsav'   => $dt->is_dst() );
1.51      www      3792: }
                   3793: 
1.370     www      3794: sub utc_string {
                   3795:     my ($date)=@_;
1.371     www      3796:     return strftime("%Y%m%dT%H%M%SZ",gmtime($date));
1.370     www      3797: }
                   3798: 
1.51      www      3799: sub maketime {
                   3800:     my %th=@_;
1.687     raeburn  3801:     my ($epoch_time,$timezone,$dt);
                   3802:     $timezone = &Apache::lonlocal::gettimezone();
                   3803:     eval {
                   3804:         $dt = DateTime->new( year   => $th{'year'},
                   3805:                              month  => $th{'month'},
                   3806:                              day    => $th{'day'},
                   3807:                              hour   => $th{'hour'},
                   3808:                              minute => $th{'minute'},
                   3809:                              second => $th{'second'},
                   3810:                              time_zone => $timezone,
                   3811:                          );
                   3812:     };
                   3813:     if (!$@) {
                   3814:         $epoch_time = $dt->epoch;
                   3815:         if ($epoch_time) {
                   3816:             return $epoch_time;
                   3817:         }
                   3818:     }
1.51      www      3819:     return POSIX::mktime(
                   3820:         ($th{'seconds'},$th{'minutes'},$th{'hours'},
1.210     www      3821:          $th{'day'},$th{'month'}-1,$th{'year'}-1900,0,0,-1));
1.70      www      3822: }
                   3823: 
                   3824: #########################################
1.51      www      3825: 
                   3826: sub findallcourses {
1.482     raeburn  3827:     my ($roles,$uname,$udom) = @_;
1.355     albertel 3828:     my %roles;
                   3829:     if (ref($roles)) { %roles = map { $_ => 1 } @{$roles}; }
1.348     albertel 3830:     my %courses;
1.51      www      3831:     my $now=time;
1.482     raeburn  3832:     if (!defined($uname)) {
                   3833:         $uname = $env{'user.name'};
                   3834:     }
                   3835:     if (!defined($udom)) {
                   3836:         $udom = $env{'user.domain'};
                   3837:     }
                   3838:     if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
                   3839:         my %roleshash = &Apache::lonnet::dump('roles',$udom,$uname);
                   3840:         if (!%roles) {
                   3841:             %roles = (
                   3842:                        cc => 1,
1.907     raeburn  3843:                        co => 1,
1.482     raeburn  3844:                        in => 1,
                   3845:                        ep => 1,
                   3846:                        ta => 1,
                   3847:                        cr => 1,
                   3848:                        st => 1,
                   3849:              );
                   3850:         }
                   3851:         foreach my $entry (keys(%roleshash)) {
                   3852:             my ($trole,$tend,$tstart) = split(/_/,$roleshash{$entry});
                   3853:             if ($trole =~ /^cr/) { 
                   3854:                 next if (!exists($roles{$trole}) && !exists($roles{'cr'}));
                   3855:             } else {
                   3856:                 next if (!exists($roles{$trole}));
                   3857:             }
                   3858:             if ($tend) {
                   3859:                 next if ($tend < $now);
                   3860:             }
                   3861:             if ($tstart) {
                   3862:                 next if ($tstart > $now);
                   3863:             }
                   3864:             my ($cdom,$cnum,$sec,$cnumpart,$secpart,$role,$realsec);
                   3865:             (undef,$cdom,$cnumpart,$secpart) = split(/\//,$entry);
                   3866:             if ($secpart eq '') {
                   3867:                 ($cnum,$role) = split(/_/,$cnumpart); 
                   3868:                 $sec = 'none';
                   3869:                 $realsec = '';
                   3870:             } else {
                   3871:                 $cnum = $cnumpart;
                   3872:                 ($sec,$role) = split(/_/,$secpart);
                   3873:                 $realsec = $sec;
1.490     raeburn  3874:             }
1.482     raeburn  3875:             $courses{$cdom.'_'.$cnum}{$sec} = $trole.'/'.$cdom.'/'.$cnum.'/'.$realsec;
                   3876:         }
                   3877:     } else {
                   3878:         foreach my $key (keys(%env)) {
1.483     albertel 3879: 	    if ( $key=~m{^user\.role\.(\w+)\./($match_domain)/($match_courseid)/?(\w*)$} ||
                   3880:                  $key=~m{^user\.role\.(cr/$match_domain/$match_username/\w+)\./($match_domain)/($match_courseid)/?(\w*)$}) {
1.482     raeburn  3881: 	        my ($role,$cdom,$cnum,$sec) = ($1,$2,$3,$4);
                   3882: 	        next if ($role eq 'ca' || $role eq 'aa');
                   3883: 	        next if (%roles && !exists($roles{$role}));
                   3884: 	        my ($starttime,$endtime)=split(/\./,$env{$key});
                   3885:                 my $active=1;
                   3886:                 if ($starttime) {
                   3887: 		    if ($now<$starttime) { $active=0; }
                   3888:                 }
                   3889:                 if ($endtime) {
                   3890:                     if ($now>$endtime) { $active=0; }
                   3891:                 }
                   3892:                 if ($active) {
                   3893:                     if ($sec eq '') {
                   3894:                         $sec = 'none';
                   3895:                     }
                   3896:                     $courses{$cdom.'_'.$cnum}{$sec} = 
                   3897:                                      $role.'/'.$cdom.'/'.$cnum.'/'.$sec;
1.474     raeburn  3898:                 }
                   3899:             }
1.51      www      3900:         }
                   3901:     }
1.474     raeburn  3902:     return %courses;
1.51      www      3903: }
1.37      matthew  3904: 
1.54      www      3905: ###############################################
1.474     raeburn  3906: 
                   3907: sub blockcheck {
1.482     raeburn  3908:     my ($setters,$activity,$uname,$udom) = @_;
1.490     raeburn  3909: 
                   3910:     if (!defined($udom)) {
                   3911:         $udom = $env{'user.domain'};
                   3912:     }
                   3913:     if (!defined($uname)) {
                   3914:         $uname = $env{'user.name'};
                   3915:     }
                   3916: 
                   3917:     # If uname and udom are for a course, check for blocks in the course.
                   3918: 
                   3919:     if (&Apache::lonnet::is_course($udom,$uname)) {
                   3920:         my %records = &Apache::lonnet::dump('comm_block',$udom,$uname);
1.502     raeburn  3921:         my ($startblock,$endblock)=&get_blocks($setters,$activity,$udom,$uname);
1.490     raeburn  3922:         return ($startblock,$endblock);
                   3923:     }
1.474     raeburn  3924: 
1.502     raeburn  3925:     my $startblock = 0;
                   3926:     my $endblock = 0;
1.482     raeburn  3927:     my %live_courses = &findallcourses(undef,$uname,$udom);
1.474     raeburn  3928: 
1.490     raeburn  3929:     # If uname is for a user, and activity is course-specific, i.e.,
                   3930:     # boards, chat or groups, check for blocking in current course only.
1.474     raeburn  3931: 
1.490     raeburn  3932:     if (($activity eq 'boards' || $activity eq 'chat' ||
                   3933:          $activity eq 'groups') && ($env{'request.course.id'})) {
                   3934:         foreach my $key (keys(%live_courses)) {
                   3935:             if ($key ne $env{'request.course.id'}) {
                   3936:                 delete($live_courses{$key});
                   3937:             }
                   3938:         }
                   3939:     }
                   3940: 
                   3941:     my $otheruser = 0;
                   3942:     my %own_courses;
                   3943:     if ((($uname ne $env{'user.name'})) || ($udom ne $env{'user.domain'})) {
                   3944:         # Resource belongs to user other than current user.
                   3945:         $otheruser = 1;
                   3946:         # Gather courses for current user
                   3947:         %own_courses = 
                   3948:             &findallcourses(undef,$env{'user.name'},$env{'user.domain'});
                   3949:     }
                   3950: 
                   3951:     # Gather active course roles - course coordinator, instructor, 
                   3952:     # exam proctor, ta, student, or custom role.
1.474     raeburn  3953: 
                   3954:     foreach my $course (keys(%live_courses)) {
1.482     raeburn  3955:         my ($cdom,$cnum);
                   3956:         if ((defined($env{'course.'.$course.'.domain'})) && (defined($env{'course.'.$course.'.num'}))) {
                   3957:             $cdom = $env{'course.'.$course.'.domain'};
                   3958:             $cnum = $env{'course.'.$course.'.num'};
                   3959:         } else {
1.490     raeburn  3960:             ($cdom,$cnum) = split(/_/,$course); 
1.482     raeburn  3961:         }
                   3962:         my $no_ownblock = 0;
                   3963:         my $no_userblock = 0;
1.533     raeburn  3964:         if ($otheruser && $activity ne 'com') {
1.490     raeburn  3965:             # Check if current user has 'evb' priv for this
                   3966:             if (defined($own_courses{$course})) {
                   3967:                 foreach my $sec (keys(%{$own_courses{$course}})) {
                   3968:                     my $checkrole = 'cm./'.$cdom.'/'.$cnum;
                   3969:                     if ($sec ne 'none') {
                   3970:                         $checkrole .= '/'.$sec;
                   3971:                     }
                   3972:                     if (&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) {
                   3973:                         $no_ownblock = 1;
                   3974:                         last;
                   3975:                     }
                   3976:                 }
                   3977:             }
                   3978:             # if they have 'evb' priv and are currently not playing student
                   3979:             next if (($no_ownblock) &&
                   3980:                  ($env{'request.role'} !~ m{^st\./$cdom/$cnum}));
                   3981:         }
1.474     raeburn  3982:         foreach my $sec (keys(%{$live_courses{$course}})) {
1.482     raeburn  3983:             my $checkrole = 'cm./'.$cdom.'/'.$cnum;
1.474     raeburn  3984:             if ($sec ne 'none') {
1.482     raeburn  3985:                 $checkrole .= '/'.$sec;
1.474     raeburn  3986:             }
1.490     raeburn  3987:             if ($otheruser) {
                   3988:                 # Resource belongs to user other than current user.
                   3989:                 # Assemble privs for that user, and check for 'evb' priv.
1.482     raeburn  3990:                 my ($trole,$tdom,$tnum,$tsec);
                   3991:                 my $entry = $live_courses{$course}{$sec};
                   3992:                 if ($entry =~ /^cr/) {
                   3993:                     ($trole,$tdom,$tnum,$tsec) = 
                   3994:                       ($entry =~ m|^(cr/$match_domain/$match_username/\w+)\./($match_domain)/($match_username)/?(\w*)$|);
                   3995:                 } else {
                   3996:                     ($trole,$tdom,$tnum,$tsec) = split(/\//,$entry);
                   3997:                 }
                   3998:                 my ($spec,$area,$trest,%allroles,%userroles);
                   3999:                 $area = '/'.$tdom.'/'.$tnum;
                   4000:                 $trest = $tnum;
                   4001:                 if ($tsec ne '') {
                   4002:                     $area .= '/'.$tsec;
                   4003:                     $trest .= '/'.$tsec;
                   4004:                 }
                   4005:                 $spec = $trole.'.'.$area;
                   4006:                 if ($trole =~ /^cr/) {
                   4007:                     &Apache::lonnet::custom_roleprivs(\%allroles,$trole,
                   4008:                                                       $tdom,$spec,$trest,$area);
                   4009:                 } else {
                   4010:                     &Apache::lonnet::standard_roleprivs(\%allroles,$trole,
                   4011:                                                        $tdom,$spec,$trest,$area);
                   4012:                 }
                   4013:                 my ($author,$adv) = &Apache::lonnet::set_userprivs(\%userroles,\%allroles);
1.486     raeburn  4014:                 if ($userroles{'user.priv.'.$checkrole} =~ /evb\&([^\:]*)/) {
                   4015:                     if ($1) {
                   4016:                         $no_userblock = 1;
                   4017:                         last;
                   4018:                     }
                   4019:                 }
1.490     raeburn  4020:             } else {
                   4021:                 # Resource belongs to current user
                   4022:                 # Check for 'evb' priv via lonnet::allowed().
1.482     raeburn  4023:                 if (&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) {
                   4024:                     $no_ownblock = 1;
                   4025:                     last;
                   4026:                 }
1.474     raeburn  4027:             }
                   4028:         }
                   4029:         # if they have the evb priv and are currently not playing student
1.482     raeburn  4030:         next if (($no_ownblock) &&
1.491     albertel 4031:                  ($env{'request.role'} !~ m{^st\./\Q$cdom\E/\Q$cnum\E}));
1.482     raeburn  4032:         next if ($no_userblock);
1.474     raeburn  4033: 
1.866     kalberla 4034:         # Retrieve blocking times and identity of locker for course
1.490     raeburn  4035:         # of specified user, unless user has 'evb' privilege.
1.502     raeburn  4036:         
                   4037:         my ($start,$end)=&get_blocks($setters,$activity,$cdom,$cnum);
                   4038:         if (($start != 0) && 
                   4039:             (($startblock == 0) || ($startblock > $start))) {
                   4040:             $startblock = $start;
                   4041:         }
                   4042:         if (($end != 0)  &&
                   4043:             (($endblock == 0) || ($endblock < $end))) {
                   4044:             $endblock = $end;
                   4045:         }
1.490     raeburn  4046:     }
                   4047:     return ($startblock,$endblock);
                   4048: }
                   4049: 
                   4050: sub get_blocks {
                   4051:     my ($setters,$activity,$cdom,$cnum) = @_;
                   4052:     my $startblock = 0;
                   4053:     my $endblock = 0;
                   4054:     my $course = $cdom.'_'.$cnum;
                   4055:     $setters->{$course} = {};
                   4056:     $setters->{$course}{'staff'} = [];
                   4057:     $setters->{$course}{'times'} = [];
                   4058:     my %records = &Apache::lonnet::dump('comm_block',$cdom,$cnum);
                   4059:     foreach my $record (keys(%records)) {
                   4060:         my ($start,$end) = ($record =~ m/^(\d+)____(\d+)$/);
                   4061:         if ($start <= time && $end >= time) {
                   4062:             my ($staff_name,$staff_dom,$title,$blocks) =
                   4063:                 &parse_block_record($records{$record});
                   4064:             if ($blocks->{$activity} eq 'on') {
                   4065:                 push(@{$$setters{$course}{'staff'}},[$staff_name,$staff_dom]);
                   4066:                 push(@{$$setters{$course}{'times'}}, [$start,$end]);
1.491     albertel 4067:                 if ( ($startblock == 0) || ($startblock > $start) ) {
                   4068:                     $startblock = $start;
1.490     raeburn  4069:                 }
1.491     albertel 4070:                 if ( ($endblock == 0) || ($endblock < $end) ) {
                   4071:                     $endblock = $end;
1.474     raeburn  4072:                 }
                   4073:             }
                   4074:         }
                   4075:     }
                   4076:     return ($startblock,$endblock);
                   4077: }
                   4078: 
                   4079: sub parse_block_record {
                   4080:     my ($record) = @_;
                   4081:     my ($setuname,$setudom,$title,$blocks);
                   4082:     if (ref($record) eq 'HASH') {
                   4083:         ($setuname,$setudom) = split(/:/,$record->{'setter'});
                   4084:         $title = &unescape($record->{'event'});
                   4085:         $blocks = $record->{'blocks'};
                   4086:     } else {
                   4087:         my @data = split(/:/,$record,3);
                   4088:         if (scalar(@data) eq 2) {
                   4089:             $title = $data[1];
                   4090:             ($setuname,$setudom) = split(/@/,$data[0]);
                   4091:         } else {
                   4092:             ($setuname,$setudom,$title) = @data;
                   4093:         }
                   4094:         $blocks = { 'com' => 'on' };
                   4095:     }
                   4096:     return ($setuname,$setudom,$title,$blocks);
                   4097: }
                   4098: 
1.854     kalberla 4099: sub blocking_status {
                   4100:   my ($activity,$uname,$udom) = @_;
1.867     kalberla 4101:   my %setters;
1.890     droeschl 4102: 
                   4103:   # check for active blocking
1.867     kalberla 4104:   my ($startblock,$endblock)=&blockcheck(\%setters,$activity,$uname,$udom);
1.854     kalberla 4105: 
1.890     droeschl 4106:   my $blocked = $startblock && $endblock ? 1 : 0;
                   4107: 
                   4108:   # caller just wants to know whether a block is active
                   4109:   if (!wantarray) { return $blocked; }
                   4110: 
                   4111:   # build a link to a popup window containing the details
                   4112:   my $querystring  = "?activity=$activity";
                   4113:   # $uname and $udom decide whose portfolio the user is trying to look at
                   4114:      $querystring .= "&amp;udom=$udom"      if $udom;
                   4115:      $querystring .= "&amp;uname=$uname"    if $uname;
                   4116: 
                   4117:   my $output .= <<'END_MYBLOCK';
1.854     kalberla 4118:     function openWindow(url, wdwName, w, h, toolbar,scrollbar) {
                   4119:         var options = "width=" + w + ",height=" + h + ",";
                   4120:         options += "resizable=yes,scrollbars="+scrollbar+",status=no,";
                   4121:         options += "menubar=no,toolbar="+toolbar+",location=no,directories=no";
                   4122:         var newWin = window.open(url, wdwName, options);
                   4123:         newWin.focus();
                   4124:     }
1.890     droeschl 4125: END_MYBLOCK
1.854     kalberla 4126: 
1.890     droeschl 4127:   $output = Apache::lonhtmlcommon::scripttag($output);
                   4128:   
1.854     kalberla 4129:   my $popupUrl = "/adm/blockingstatus/$querystring";
1.890     droeschl 4130:   my $text = mt('Communication Blocked');
                   4131: 
1.867     kalberla 4132:   $output .= <<"END_BLOCK";
                   4133: <div class='LC_comblock'>
1.869     kalberla 4134:   <a onclick='openWindow("$popupUrl","Blocking Table",600,300,"no","no");return false;' href='/adm/blockingstatus/$querystring'
1.890     droeschl 4135:   title='$text'>
                   4136:   <img class='LC_noBorder LC_middle' title='$text' src='/res/adm/pages/comblock.png' alt='$text'/></a>
1.869     kalberla 4137:   <a onclick='openWindow("$popupUrl","Blocking Table",600,300,"no","no");return false;' href='/adm/blockingstatus/$querystring' 
1.890     droeschl 4138:   title='$text'>$text</a>
1.867     kalberla 4139: </div>
                   4140: 
                   4141: END_BLOCK
1.474     raeburn  4142: 
1.854     kalberla 4143:   return ($blocked, $output);
                   4144: }
1.490     raeburn  4145: 
1.60      matthew  4146: ###############################################
                   4147: 
1.682     raeburn  4148: sub check_ip_acc {
                   4149:     my ($acc)=@_;
                   4150:     &Apache::lonxml::debug("acc is $acc");
                   4151:     if (!defined($acc) || $acc =~ /^\s*$/ || $acc =~/^\s*no\s*$/i) {
                   4152:         return 1;
                   4153:     }
                   4154:     my $allowed=0;
                   4155:     my $ip=$env{'request.host'} || $ENV{'REMOTE_ADDR'};
                   4156: 
                   4157:     my $name;
                   4158:     foreach my $pattern (split(',',$acc)) {
                   4159:         $pattern =~ s/^\s*//;
                   4160:         $pattern =~ s/\s*$//;
                   4161:         if ($pattern =~ /\*$/) {
                   4162:             #35.8.*
                   4163:             $pattern=~s/\*//;
                   4164:             if ($ip =~ /^\Q$pattern\E/) { $allowed=1; }
                   4165:         } elsif ($pattern =~ /(\d+\.\d+\.\d+)\.\[(\d+)-(\d+)\]$/) {
                   4166:             #35.8.3.[34-56]
                   4167:             my $low=$2;
                   4168:             my $high=$3;
                   4169:             $pattern=$1;
                   4170:             if ($ip =~ /^\Q$pattern\E/) {
                   4171:                 my $last=(split(/\./,$ip))[3];
                   4172:                 if ($last <=$high && $last >=$low) { $allowed=1; }
                   4173:             }
                   4174:         } elsif ($pattern =~ /^\*/) {
                   4175:             #*.msu.edu
                   4176:             $pattern=~s/\*//;
                   4177:             if (!defined($name)) {
                   4178:                 use Socket;
                   4179:                 my $netaddr=inet_aton($ip);
                   4180:                 ($name)=gethostbyaddr($netaddr,AF_INET);
                   4181:             }
                   4182:             if ($name =~ /\Q$pattern\E$/i) { $allowed=1; }
                   4183:         } elsif ($pattern =~ /\d+\.\d+\.\d+\.\d+/) {
                   4184:             #127.0.0.1
                   4185:             if ($ip =~ /^\Q$pattern\E/) { $allowed=1; }
                   4186:         } else {
                   4187:             #some.name.com
                   4188:             if (!defined($name)) {
                   4189:                 use Socket;
                   4190:                 my $netaddr=inet_aton($ip);
                   4191:                 ($name)=gethostbyaddr($netaddr,AF_INET);
                   4192:             }
                   4193:             if ($name =~ /\Q$pattern\E$/i) { $allowed=1; }
                   4194:         }
                   4195:         if ($allowed) { last; }
                   4196:     }
                   4197:     return $allowed;
                   4198: }
                   4199: 
                   4200: ###############################################
                   4201: 
1.60      matthew  4202: =pod
                   4203: 
1.112     bowersj2 4204: =head1 Domain Template Functions
                   4205: 
                   4206: =over 4
                   4207: 
                   4208: =item * &determinedomain()
1.60      matthew  4209: 
                   4210: Inputs: $domain (usually will be undef)
                   4211: 
1.63      www      4212: Returns: Determines which domain should be used for designs
1.60      matthew  4213: 
                   4214: =cut
1.54      www      4215: 
1.60      matthew  4216: ###############################################
1.63      www      4217: sub determinedomain {
                   4218:     my $domain=shift;
1.531     albertel 4219:     if (! $domain) {
1.60      matthew  4220:         # Determine domain if we have not been given one
1.893     raeburn  4221:         $domain = &Apache::lonnet::default_login_domain();
1.258     albertel 4222:         if ($env{'user.domain'}) { $domain=$env{'user.domain'}; }
                   4223:         if ($env{'request.role.domain'}) { 
                   4224:             $domain=$env{'request.role.domain'}; 
1.60      matthew  4225:         }
                   4226:     }
1.63      www      4227:     return $domain;
                   4228: }
                   4229: ###############################################
1.517     raeburn  4230: 
1.518     albertel 4231: sub devalidate_domconfig_cache {
                   4232:     my ($udom)=@_;
                   4233:     &Apache::lonnet::devalidate_cache_new('domainconfig',$udom);
                   4234: }
                   4235: 
                   4236: # ---------------------- Get domain configuration for a domain
                   4237: sub get_domainconf {
                   4238:     my ($udom) = @_;
                   4239:     my $cachetime=1800;
                   4240:     my ($result,$cached)=&Apache::lonnet::is_cached_new('domainconfig',$udom);
                   4241:     if (defined($cached)) { return %{$result}; }
                   4242: 
                   4243:     my %domconfig = &Apache::lonnet::get_dom('configuration',
1.948     raeburn  4244: 					     ['login','rolecolors','autoenroll'],$udom);
1.632     raeburn  4245:     my (%designhash,%legacy);
1.518     albertel 4246:     if (keys(%domconfig) > 0) {
                   4247:         if (ref($domconfig{'login'}) eq 'HASH') {
1.632     raeburn  4248:             if (keys(%{$domconfig{'login'}})) {
                   4249:                 foreach my $key (keys(%{$domconfig{'login'}})) {
1.699     raeburn  4250:                     if (ref($domconfig{'login'}{$key}) eq 'HASH') {
1.946     raeburn  4251:                         if ($key eq 'loginvia') {
                   4252:                             if (ref($domconfig{'login'}{'loginvia'}) eq 'HASH') {
                   4253:                                 my @ids = &Apache::lonnet::current_machine_ids();
                   4254:                                 foreach my $hostname (@ids) {
1.948     raeburn  4255:                                     if (ref($domconfig{'login'}{'loginvia'}{$hostname}) eq 'HASH') {
                   4256:                                         if ($domconfig{'login'}{'loginvia'}{$hostname}{'server'}) {
                   4257:                                             my $server = $domconfig{'login'}{'loginvia'}{$hostname}{'server'};
                   4258:                                             $designhash{$udom.'.login.loginvia'} = $server;
                   4259:                                             if ($domconfig{'login'}{'loginvia'}{$hostname}{'serverpath'} eq 'custom') {
                   4260: 
                   4261:                                                 $designhash{$udom.'.login.loginvia_'.$hostname} = $server.':'.$domconfig{'login'}{'loginvia'}{$hostname}{'custompath'};
                   4262:                                             } else {
                   4263:                                                  $designhash{$udom.'.login.loginvia_'.$hostname} = $server.':'.$domconfig{'login'}{'loginvia'}{$hostname}{'serverpath'};
                   4264:                                             }
                   4265:                                             if ($domconfig{'login'}{'loginvia'}{$hostname}{'exempt'}) {
                   4266:                                                 $designhash{$udom.'.login.loginvia_exempt_'.$hostname} = $domconfig{'login'}{'loginvia'}{$hostname}{'exempt'};
                   4267:                                             }
1.946     raeburn  4268:                                         }
                   4269:                                     }
                   4270:                                 }
                   4271:                             }
                   4272:                         } else {
                   4273:                             foreach my $img (keys(%{$domconfig{'login'}{$key}})) {
                   4274:                                 $designhash{$udom.'.login.'.$key.'_'.$img} = 
                   4275:                                     $domconfig{'login'}{$key}{$img};
                   4276:                             }
1.699     raeburn  4277:                         }
                   4278:                     } else {
                   4279:                         $designhash{$udom.'.login.'.$key}=$domconfig{'login'}{$key};
                   4280:                     }
1.632     raeburn  4281:                 }
                   4282:             } else {
                   4283:                 $legacy{'login'} = 1;
1.518     albertel 4284:             }
1.632     raeburn  4285:         } else {
                   4286:             $legacy{'login'} = 1;
1.518     albertel 4287:         }
                   4288:         if (ref($domconfig{'rolecolors'}) eq 'HASH') {
1.632     raeburn  4289:             if (keys(%{$domconfig{'rolecolors'}})) {
                   4290:                 foreach my $role (keys(%{$domconfig{'rolecolors'}})) {
                   4291:                     if (ref($domconfig{'rolecolors'}{$role}) eq 'HASH') {
                   4292:                         foreach my $item (keys(%{$domconfig{'rolecolors'}{$role}})) {
                   4293:                             $designhash{$udom.'.'.$role.'.'.$item}=$domconfig{'rolecolors'}{$role}{$item};
                   4294:                         }
1.518     albertel 4295:                     }
                   4296:                 }
1.632     raeburn  4297:             } else {
                   4298:                 $legacy{'rolecolors'} = 1;
1.518     albertel 4299:             }
1.632     raeburn  4300:         } else {
                   4301:             $legacy{'rolecolors'} = 1;
1.518     albertel 4302:         }
1.948     raeburn  4303:         if (ref($domconfig{'autoenroll'}) eq 'HASH') {
                   4304:             if ($domconfig{'autoenroll'}{'co-owners'}) {
                   4305:                 $designhash{$udom.'.autoassign.co-owners'}=$domconfig{'autoenroll'}{'co-owners'};
                   4306:             }
                   4307:         }
1.632     raeburn  4308:         if (keys(%legacy) > 0) {
                   4309:             my %legacyhash = &get_legacy_domconf($udom);
                   4310:             foreach my $item (keys(%legacyhash)) {
                   4311:                 if ($item =~ /^\Q$udom\E\.login/) {
                   4312:                     if ($legacy{'login'}) { 
                   4313:                         $designhash{$item} = $legacyhash{$item};
                   4314:                     }
                   4315:                 } else {
                   4316:                     if ($legacy{'rolecolors'}) {
                   4317:                         $designhash{$item} = $legacyhash{$item};
                   4318:                     }
1.518     albertel 4319:                 }
                   4320:             }
                   4321:         }
1.632     raeburn  4322:     } else {
                   4323:         %designhash = &get_legacy_domconf($udom); 
1.518     albertel 4324:     }
                   4325:     &Apache::lonnet::do_cache_new('domainconfig',$udom,\%designhash,
                   4326: 				  $cachetime);
                   4327:     return %designhash;
                   4328: }
                   4329: 
1.632     raeburn  4330: sub get_legacy_domconf {
                   4331:     my ($udom) = @_;
                   4332:     my %legacyhash;
                   4333:     my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
                   4334:     my $designfile =  $designdir.'/'.$udom.'.tab';
                   4335:     if (-e $designfile) {
                   4336:         if ( open (my $fh,"<$designfile") ) {
                   4337:             while (my $line = <$fh>) {
                   4338:                 next if ($line =~ /^\#/);
                   4339:                 chomp($line);
                   4340:                 my ($key,$val)=(split(/\=/,$line));
                   4341:                 if ($val) { $legacyhash{$udom.'.'.$key}=$val; }
                   4342:             }
                   4343:             close($fh);
                   4344:         }
                   4345:     }
                   4346:     if (-e '/home/httpd/html/adm/lonDomLogos/'.$udom.'.gif') {
                   4347:         $legacyhash{$udom.'.login.domlogo'} = "/adm/lonDomLogos/$udom.gif";
                   4348:     }
                   4349:     return %legacyhash;
                   4350: }
                   4351: 
1.63      www      4352: =pod
                   4353: 
1.112     bowersj2 4354: =item * &domainlogo()
1.63      www      4355: 
                   4356: Inputs: $domain (usually will be undef)
                   4357: 
                   4358: Returns: A link to a domain logo, if the domain logo exists.
                   4359: If the domain logo does not exist, a description of the domain.
                   4360: 
                   4361: =cut
1.112     bowersj2 4362: 
1.63      www      4363: ###############################################
                   4364: sub domainlogo {
1.517     raeburn  4365:     my $domain = &determinedomain(shift);
1.518     albertel 4366:     my %designhash = &get_domainconf($domain);    
1.517     raeburn  4367:     # See if there is a logo
                   4368:     if ($designhash{$domain.'.login.domlogo'} ne '') {
1.519     raeburn  4369:         my $imgsrc = $designhash{$domain.'.login.domlogo'};
1.538     albertel 4370:         if ($imgsrc =~ m{^/(adm|res)/}) {
                   4371: 	    if ($imgsrc =~ m{^/res/}) {
                   4372: 		my $local_name = &Apache::lonnet::filelocation('',$imgsrc);
                   4373: 		&Apache::lonnet::repcopy($local_name);
                   4374: 	    }
                   4375: 	   $imgsrc = &lonhttpdurl($imgsrc);
1.519     raeburn  4376:         } 
                   4377:         return '<img src="'.$imgsrc.'" alt="'.$domain.'" />';
1.514     albertel 4378:     } elsif (defined(&Apache::lonnet::domain($domain,'description'))) {
                   4379:         return &Apache::lonnet::domain($domain,'description');
1.59      www      4380:     } else {
1.60      matthew  4381:         return '';
1.59      www      4382:     }
                   4383: }
1.63      www      4384: ##############################################
                   4385: 
                   4386: =pod
                   4387: 
1.112     bowersj2 4388: =item * &designparm()
1.63      www      4389: 
                   4390: Inputs: $which parameter; $domain (usually will be undef)
                   4391: 
                   4392: Returns: value of designparamter $which
                   4393: 
                   4394: =cut
1.112     bowersj2 4395: 
1.397     albertel 4396: 
1.400     albertel 4397: ##############################################
1.397     albertel 4398: sub designparm {
                   4399:     my ($which,$domain)=@_;
                   4400:     if (exists($env{'environment.color.'.$which})) {
1.817     bisitz   4401:         return $env{'environment.color.'.$which};
1.96      www      4402:     }
1.63      www      4403:     $domain=&determinedomain($domain);
1.518     albertel 4404:     my %domdesign = &get_domainconf($domain);
1.520     raeburn  4405:     my $output;
1.517     raeburn  4406:     if ($domdesign{$domain.'.'.$which} ne '') {
1.817     bisitz   4407:         $output = $domdesign{$domain.'.'.$which};
1.63      www      4408:     } else {
1.520     raeburn  4409:         $output = $defaultdesign{$which};
                   4410:     }
                   4411:     if (($which =~ /^(student|coordinator|author|admin)\.img$/) ||
1.635     raeburn  4412:         ($which =~ /login\.(img|logo|domlogo|login)/)) {
1.538     albertel 4413:         if ($output =~ m{^/(adm|res)/}) {
1.817     bisitz   4414:             if ($output =~ m{^/res/}) {
                   4415:                 my $local_name = &Apache::lonnet::filelocation('',$output);
                   4416:                 &Apache::lonnet::repcopy($local_name);
                   4417:             }
1.520     raeburn  4418:             $output = &lonhttpdurl($output);
                   4419:         }
1.63      www      4420:     }
1.520     raeburn  4421:     return $output;
1.63      www      4422: }
1.59      www      4423: 
1.822     bisitz   4424: ##############################################
                   4425: =pod
                   4426: 
1.832     bisitz   4427: =item * &authorspace()
                   4428: 
                   4429: Inputs: ./.
                   4430: 
                   4431: Returns: Path to the Construction Space of the current user's
                   4432:          accessed author space
                   4433:          The author space will be that of the current user
                   4434:          when accessing the own author space
                   4435:          and that of the co-author/assistent co-author
                   4436:          when accessing the co-author's/assistent co-author's
                   4437:          space
                   4438: 
                   4439: =cut
                   4440: 
                   4441: sub authorspace {
                   4442:     my $caname = '';
                   4443:     if ($env{'request.role'} =~ /^ca|^aa/) {
                   4444:         (undef,$caname) =
                   4445:             ($env{'request.role'}=~/($match_domain)\/($match_username)$/);
                   4446:     } else {
                   4447:         $caname = $env{'user.name'};
                   4448:     }
                   4449:     return '/priv/'.$caname.'/';
                   4450: }
                   4451: 
                   4452: ##############################################
                   4453: =pod
                   4454: 
1.822     bisitz   4455: =item * &head_subbox()
                   4456: 
                   4457: Inputs: $content (contains HTML code with page functions, etc.)
                   4458: 
                   4459: Returns: HTML div with $content
                   4460:          To be included in page header
                   4461: 
                   4462: =cut
                   4463: 
                   4464: sub head_subbox {
                   4465:     my ($content)=@_;
                   4466:     my $output =
1.844     bisitz   4467:         '<div id="LC_head_subbox">'
1.822     bisitz   4468:        .$content
                   4469:        .'</div>'
                   4470: }
                   4471: 
                   4472: ##############################################
                   4473: =pod
                   4474: 
                   4475: =item * &CSTR_pageheader()
                   4476: 
                   4477: Inputs: ./.
                   4478: 
                   4479: Returns: HTML div with CSTR path and recent box
                   4480:          To be included on Construction Space pages
                   4481: 
                   4482: =cut
                   4483: 
                   4484: sub CSTR_pageheader {
                   4485:     # this is for resources; directories have customtitle, and crumbs
                   4486:             # and select recent are created in lonpubdir.pm  
                   4487:     my ($uname,$thisdisfn)=
                   4488:         ($env{'request.filename'} =~ m|^/home/([^/]+)/public_html/(.*)|);
                   4489:     my $formaction='/priv/'.$uname.'/'.$thisdisfn;
                   4490:     $formaction=~s/\/+/\//g;
                   4491: 
                   4492:     my $parentpath = '';
                   4493:     my $lastitem = '';
                   4494:     if ($thisdisfn =~ m-(.+/)([^/]*)$-) {
                   4495:         $parentpath = $1;
                   4496:         $lastitem = $2;
                   4497:     } else {
                   4498:         $lastitem = $thisdisfn;
                   4499:     }
1.921     bisitz   4500: 
                   4501:     my $output =
1.822     bisitz   4502:          '<div>'
                   4503:         .&Apache::loncommon::help_open_menu('','',3,'Authoring') #FIXME: Broken? Where is it?
                   4504:         .'<b>'.&mt('Construction Space:').'</b> '
                   4505:         .'<form name="dirs" method="post" action="'.$formaction
1.921     bisitz   4506:         .'" target="_top">' #FIXME lonpubdir: target="_parent"
                   4507:         .&Apache::lonhtmlcommon::crumbs($uname.'/'.$parentpath,'_top','/priv',undef,undef);
                   4508: 
                   4509:     if ($lastitem) {
                   4510:         $output .=
                   4511:              '<span class="LC_filename">'
                   4512:             .$lastitem
                   4513:             .'</span>';
                   4514:     }
                   4515:     $output .=
                   4516:          '<br />'
1.822     bisitz   4517:         #FIXME lonpubdir: &Apache::lonhtmlcommon::crumbs($uname.$thisdisfn.'/','_top','/priv','','+1',1)."</b></tt><br />"
                   4518:         .&Apache::lonhtmlcommon::select_recent('construct','recent','this.form.action=this.form.recent.value;this.form.submit()')
                   4519:         .'</form>'
                   4520:         .&Apache::lonmenu::constspaceform()
                   4521:         .'</div>';
1.921     bisitz   4522: 
                   4523:     return $output;
1.822     bisitz   4524: }
                   4525: 
1.60      matthew  4526: ###############################################
                   4527: ###############################################
                   4528: 
                   4529: =pod
                   4530: 
1.112     bowersj2 4531: =back
                   4532: 
1.549     albertel 4533: =head1 HTML Helpers
1.112     bowersj2 4534: 
                   4535: =over 4
                   4536: 
                   4537: =item * &bodytag()
1.60      matthew  4538: 
                   4539: Returns a uniform header for LON-CAPA web pages.
                   4540: 
                   4541: Inputs: 
                   4542: 
1.112     bowersj2 4543: =over 4
                   4544: 
                   4545: =item * $title, A title to be displayed on the page.
                   4546: 
                   4547: =item * $function, the current role (can be undef).
                   4548: 
                   4549: =item * $addentries, extra parameters for the <body> tag.
                   4550: 
                   4551: =item * $bodyonly, if defined, only return the <body> tag.
                   4552: 
                   4553: =item * $domain, if defined, force a given domain.
                   4554: 
                   4555: =item * $forcereg, if page should register as content page (relevant for 
1.86      www      4556:             text interface only)
1.60      matthew  4557: 
1.814     bisitz   4558: =item * $no_nav_bar, if true, keep the 'what is this' info but remove the
                   4559:                      navigational links
1.317     albertel 4560: 
1.338     albertel 4561: =item * $bgcolor, used to override the bgcolor on a webpage to a specific value
                   4562: 
1.361     albertel 4563: =item * $no_inline_link, if true and in remote mode, don't show the 
                   4564:          'Switch To Inline Menu' link
                   4565: 
1.460     albertel 4566: =item * $args, optional argument valid values are
                   4567:             no_auto_mt_title -> prevents &mt()ing the title arg
1.562     albertel 4568:             inherit_jsmath -> when creating popup window in a page,
                   4569:                               should it have jsmath forced on by the
                   4570:                               current page
1.460     albertel 4571: 
1.112     bowersj2 4572: =back
                   4573: 
1.60      matthew  4574: Returns: A uniform header for LON-CAPA web pages.  
                   4575: If $bodyonly is nonzero, a string containing a <body> tag will be returned.
                   4576: If $bodyonly is undef or zero, an html string containing a <body> tag and 
                   4577: other decorations will be returned.
                   4578: 
                   4579: =cut
                   4580: 
1.54      www      4581: sub bodytag {
1.831     bisitz   4582:     my ($title,$function,$addentries,$bodyonly,$domain,$forcereg,
1.816     bisitz   4583:         $no_nav_bar,$bgcolor,$no_inline_link,$args)=@_;
1.339     albertel 4584: 
1.948.2.2  raeburn  4585:     my $public;
                   4586:     if ((($env{'user.name'} eq 'public') && ($env{'user.domain'} eq 'public'))
                   4587:         || ($env{'user.name'} eq '') && ($env{'user.domain'} eq '')) {
                   4588:         $public = 1;
                   4589:     }
1.460     albertel 4590:     if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }
1.339     albertel 4591: 
1.183     matthew  4592:     $function = &get_users_function() if (!$function);
1.339     albertel 4593:     my $img =    &designparm($function.'.img',$domain);
                   4594:     my $font =   &designparm($function.'.font',$domain);
                   4595:     my $pgbg   = $bgcolor || &designparm($function.'.pgbg',$domain);
                   4596: 
1.803     bisitz   4597:     my %design = ( 'style'   => 'margin-top: 0',
1.535     albertel 4598: 		   'bgcolor' => $pgbg,
1.339     albertel 4599: 		   'text'    => $font,
                   4600:                    'alink'   => &designparm($function.'.alink',$domain),
                   4601: 		   'vlink'   => &designparm($function.'.vlink',$domain),
                   4602: 		   'link'    => &designparm($function.'.link',$domain),);
1.438     albertel 4603:     @design{keys(%$addentries)} = @$addentries{keys(%$addentries)}; 
1.339     albertel 4604: 
1.63      www      4605:  # role and realm
1.378     raeburn  4606:     my ($role,$realm) = split(/\./,$env{'request.role'},2);
                   4607:     if ($role  eq 'ca') {
1.479     albertel 4608:         my ($rdom,$rname) = ($realm =~ m{^/($match_domain)/($match_username)$});
1.500     albertel 4609:         $realm = &plainname($rname,$rdom);
1.378     raeburn  4610:     } 
1.55      www      4611: # realm
1.258     albertel 4612:     if ($env{'request.course.id'}) {
1.378     raeburn  4613:         if ($env{'request.role'} !~ /^cr/) {
                   4614:             $role = &Apache::lonnet::plaintext($role,&course_type());
                   4615:         }
1.898     raeburn  4616:         if ($env{'request.course.sec'}) {
                   4617:             $role .= ('&nbsp;'x2).'-&nbsp;'.&mt('section:').'&nbsp;'.$env{'request.course.sec'};
                   4618:         }   
1.359     albertel 4619: 	$realm = $env{'course.'.$env{'request.course.id'}.'.description'};
1.378     raeburn  4620:     } else {
                   4621:         $role = &Apache::lonnet::plaintext($role);
1.54      www      4622:     }
1.433     albertel 4623: 
1.359     albertel 4624:     if (!$realm) { $realm='&nbsp;'; }
1.55      www      4625: # Set messages
1.60      matthew  4626:     my $messages=&domainlogo($domain);
1.330     albertel 4627: 
1.438     albertel 4628:     my $extra_body_attr = &make_attr_string($forcereg,\%design);
1.329     albertel 4629: 
1.101     www      4630: # construct main body tag
1.359     albertel 4631:     my $bodytag = "<body $extra_body_attr>".
1.562     albertel 4632: 	&Apache::lontexconvert::init_math_support($args->{'inherit_jsmath'});
1.252     albertel 4633: 
1.530     albertel 4634:     if ($bodyonly) {
1.60      matthew  4635:         return $bodytag;
1.798     tempelho 4636:     } 
1.359     albertel 4637: 
1.410     albertel 4638:     my $name = &plainname($env{'user.name'},$env{'user.domain'});
1.948.2.2  raeburn  4639:     if ($public) {
1.433     albertel 4640: 	undef($role);
1.434     albertel 4641:     } else {
                   4642: 	$name = &aboutmewrapper($name,$env{'user.name'},$env{'user.domain'});
1.433     albertel 4643:     }
1.948.2.2  raeburn  4644: 
1.762     bisitz   4645:     my $titleinfo = '<h1>'.$title.'</h1>';
1.359     albertel 4646:     #
                   4647:     # Extra info if you are the DC
                   4648:     my $dc_info = '';
                   4649:     if ($env{'user.adv'} && exists($env{'user.role.dc./'.
                   4650:                         $env{'course.'.$env{'request.course.id'}.
                   4651:                                  '.domain'}.'/'})) {
                   4652:         my $cid = $env{'request.course.id'};
1.917     raeburn  4653:         $dc_info = $cid.' '.$env{'course.'.$cid.'.internal.coursecode'};
1.380     www      4654:         $dc_info =~ s/\s+$//;
1.359     albertel 4655:     }
                   4656: 
1.898     raeburn  4657:     $role = '<span class="LC_nobreak">('.$role.')</span>' if $role;
1.853     droeschl 4658:     &get_unprocessed_cgi($ENV{'QUERY_STRING'}, ['inhibitmenu']);
                   4659: 
1.837     bisitz   4660:     if ($env{'environment.remote'} eq 'off') {
1.359     albertel 4661:         # No Remote
1.916     droeschl 4662:         if ($no_nav_bar || $env{'form.inhibitmenu'} eq 'yes') { 
                   4663:             return $bodytag; 
                   4664:         } 
1.903     droeschl 4665: 
                   4666:         if ($env{'request.state'} eq 'construct') { $forcereg=1; }
                   4667: 
                   4668:         #    if ($env{'request.state'} eq 'construct') {
                   4669:         #        $titleinfo = &CSTR_pageheader(); #FIXME: Will be removed once all scripts have their own calls
                   4670:         #    }
                   4671: 
1.359     albertel 4672: 
                   4673: 
1.916     droeschl 4674:         if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) {
1.917     raeburn  4675:              if ($dc_info) {
                   4676:                  $dc_info = qq|<span class="LC_cusr_subheading">$dc_info</span>|;
                   4677:              }
1.916     droeschl 4678:              $bodytag .= qq|<div id="LC_nav_bar">$name $role<br />
                   4679:                 <em>$realm</em> $dc_info</div>|;
1.903     droeschl 4680:             return $bodytag;
                   4681:         }
1.894     droeschl 4682: 
1.927     raeburn  4683:         unless ($env{'request.symb'} =~ m/\.page___\d+___/) {
                   4684:             $bodytag .= qq|<div id="LC_nav_bar">$name $role</div>|;
                   4685:         }
1.916     droeschl 4686: 
1.903     droeschl 4687:         $bodytag .= Apache::lonhtmlcommon::scripttag(
                   4688:             Apache::lonmenu::utilityfunctions(), 'start');
1.816     bisitz   4689: 
1.903     droeschl 4690:         $bodytag .= Apache::lonmenu::primary_menu();
1.852     droeschl 4691: 
1.917     raeburn  4692:         if ($dc_info) {
                   4693:             $dc_info = &dc_courseid_toggle($dc_info);
                   4694:         }
                   4695:         $bodytag .= qq|<div id="LC_realm">$realm $dc_info</div>|;
1.916     droeschl 4696: 
1.903     droeschl 4697:         #don't show menus for public users
1.948.2.2  raeburn  4698:         if (!$public){
1.903     droeschl 4699:             $bodytag .= Apache::lonmenu::secondary_menu();
                   4700:             $bodytag .= Apache::lonmenu::serverform();
1.920     raeburn  4701:             $bodytag .= Apache::lonhtmlcommon::scripttag('', 'end');
                   4702:             if ($env{'request.state'} eq 'construct') {
                   4703:                 $bodytag .= &Apache::lonmenu::innerregister($forcereg,'',
                   4704:                                 $args->{'bread_crumbs'});
                   4705:             } elsif ($forcereg) { 
                   4706:                 $bodytag .= &Apache::lonmenu::innerregister($forcereg);
                   4707:             }
1.903     droeschl 4708:         }else{
                   4709:             # this is to seperate menu from content when there's no secondary
                   4710:             # menu. Especially needed for public accessible ressources.
                   4711:             $bodytag .= '<hr style="clear:both" />';
                   4712:             $bodytag .= Apache::lonhtmlcommon::scripttag('', 'end'); 
1.235     raeburn  4713:         }
1.903     droeschl 4714: 
1.235     raeburn  4715:         return $bodytag;
1.94      www      4716:     }
1.95      www      4717: 
1.93      www      4718: #
1.95      www      4719: # Top frame rendering, Remote is up
1.93      www      4720: #
1.359     albertel 4721: 
1.517     raeburn  4722:     my $imgsrc = $img;
                   4723:     if ($img =~ /^\/adm/) {
1.575     albertel 4724:         $imgsrc = &lonhttpdurl($img);
1.517     raeburn  4725:     }
                   4726:     my $upperleft='<img src="'.$imgsrc.'" alt="'.$function.'" />';
1.359     albertel 4727: 
1.305     www      4728:     # Explicit link to get inline menu
1.361     albertel 4729:     my $menu= ($no_inline_link?''
1.883     droeschl 4730: 	       :'<a href="/adm/remote?action=collapse" target="_top">'.&mt('Switch to Inline Menu Mode').'</a>');
1.917     raeburn  4731: 
                   4732:     if ($dc_info) {
                   4733:         $dc_info = qq|<span class="LC_cusr_subheading">($dc_info)</span>|;
                   4734:     }
                   4735: 
1.916     droeschl 4736:     $bodytag .= qq|<div id="LC_nav_bar">$name $role</div>
1.897     wenzelju 4737:             <ol class="LC_primary_menu LC_right">
1.853     droeschl 4738:                 <li>$menu</li>
1.917     raeburn  4739:             </ol><div id="LC_realm"> $realm $dc_info</div>| unless $env{'form.inhibitmenu'};
1.94      www      4740:     return(<<ENDBODY);
1.60      matthew  4741: $bodytag
1.359     albertel 4742: <table id="LC_title_bar" class="LC_with_remote">
1.791     tempelho 4743: <tr><td>$upperleft</td>
                   4744:     <td>$messages&nbsp;</td>
1.54      www      4745: </tr>
1.359     albertel 4746: <tr><td>$titleinfo $dc_info $menu</td>
1.368     albertel 4747: </tr>
1.356     albertel 4748: </table>
1.54      www      4749: ENDBODY
1.182     matthew  4750: }
                   4751: 
1.917     raeburn  4752: sub dc_courseid_toggle {
                   4753:     my ($dc_info) = @_;
                   4754:     return ' <span id="dccidtext" class="LC_cusr_subheading">'.
                   4755:            '<a href="javascript:showCourseID();">'.
                   4756:            &mt('(More ...)').'</a></span>'.
                   4757:            '<div id="dccid" class="LC_dccid">'.$dc_info.'</div>';
                   4758: }
                   4759: 
1.330     albertel 4760: sub make_attr_string {
                   4761:     my ($register,$attr_ref) = @_;
                   4762: 
                   4763:     if ($attr_ref && !ref($attr_ref)) {
                   4764: 	die("addentries Must be a hash ref ".
                   4765: 	    join(':',caller(1))." ".
                   4766: 	    join(':',caller(0))." ");
                   4767:     }
                   4768: 
                   4769:     if ($register) {
1.339     albertel 4770: 	my ($on_load,$on_unload);
                   4771: 	foreach my $key (keys(%{$attr_ref})) {
                   4772: 	    if      (lc($key) eq 'onload') {
                   4773: 		$on_load.=$attr_ref->{$key}.';';
                   4774: 		delete($attr_ref->{$key});
                   4775: 
                   4776: 	    } elsif (lc($key) eq 'onunload') {
                   4777: 		$on_unload.=$attr_ref->{$key}.';';
                   4778: 		delete($attr_ref->{$key});
                   4779: 	    }
                   4780: 	}
                   4781: 	$attr_ref->{'onload'}  =
                   4782: 	    &Apache::lonmenu::loadevents().  $on_load;
                   4783: 	$attr_ref->{'onunload'}=
                   4784: 	    &Apache::lonmenu::unloadevents().$on_unload;
                   4785:     }
                   4786: 
                   4787: # Accessibility font enhance
                   4788:     if ($env{'browser.fontenhance'} eq 'on') {
                   4789: 	my $style;
                   4790: 	foreach my $key (keys(%{$attr_ref})) {
                   4791: 	    if (lc($key) eq 'style') {
                   4792: 		$style.=$attr_ref->{$key}.';';
                   4793: 		delete($attr_ref->{$key});
                   4794: 	    }
                   4795: 	}
                   4796: 	$attr_ref->{'style'}=$style.'; font-size: x-large;';
1.330     albertel 4797:     }
1.339     albertel 4798: 
1.330     albertel 4799:     my $attr_string;
                   4800:     foreach my $attr (keys(%$attr_ref)) {
                   4801: 	$attr_string .= " $attr=\"".$attr_ref->{$attr}.'" ';
                   4802:     }
                   4803:     return $attr_string;
                   4804: }
                   4805: 
                   4806: 
1.182     matthew  4807: ###############################################
1.251     albertel 4808: ###############################################
                   4809: 
                   4810: =pod
                   4811: 
                   4812: =item * &endbodytag()
                   4813: 
                   4814: Returns a uniform footer for LON-CAPA web pages.
                   4815: 
1.635     raeburn  4816: Inputs: 1 - optional reference to an args hash
                   4817: If in the hash, key for noredirectlink has a value which evaluates to true,
                   4818: a 'Continue' link is not displayed if the page contains an
                   4819: internal redirect in the <head></head> section,
                   4820: i.e., $env{'internal.head.redirect'} exists   
1.251     albertel 4821: 
                   4822: =cut
                   4823: 
                   4824: sub endbodytag {
1.635     raeburn  4825:     my ($args) = @_;
1.251     albertel 4826:     my $endbodytag='</body>';
1.269     albertel 4827:     $endbodytag=&Apache::lontexconvert::jsMath_process()."\n".$endbodytag;
1.315     albertel 4828:     if ( exists( $env{'internal.head.redirect'} ) ) {
1.635     raeburn  4829:         if (!(ref($args) eq 'HASH' && $args->{'noredirectlink'})) {
                   4830: 	    $endbodytag=
                   4831: 	        "<br /><a href=\"$env{'internal.head.redirect'}\">".
                   4832: 	        &mt('Continue').'</a>'.
                   4833: 	        $endbodytag;
                   4834:         }
1.315     albertel 4835:     }
1.251     albertel 4836:     return $endbodytag;
                   4837: }
                   4838: 
1.352     albertel 4839: =pod
                   4840: 
                   4841: =item * &standard_css()
                   4842: 
                   4843: Returns a style sheet
                   4844: 
                   4845: Inputs: (all optional)
                   4846:             domain         -> force to color decorate a page for a specific
                   4847:                                domain
                   4848:             function       -> force usage of a specific rolish color scheme
                   4849:             bgcolor        -> override the default page bgcolor
                   4850: 
                   4851: =cut
                   4852: 
1.343     albertel 4853: sub standard_css {
1.345     albertel 4854:     my ($function,$domain,$bgcolor) = @_;
1.352     albertel 4855:     $function  = &get_users_function() if (!$function);
                   4856:     my $img    = &designparm($function.'.img',   $domain);
                   4857:     my $tabbg  = &designparm($function.'.tabbg', $domain);
                   4858:     my $font   = &designparm($function.'.font',  $domain);
1.801     tempelho 4859:     my $fontmenu = &designparm($function.'.fontmenu', $domain);
1.791     tempelho 4860: #second colour for later usage
1.345     albertel 4861:     my $sidebg = &designparm($function.'.sidebg',$domain);
1.382     albertel 4862:     my $pgbg_or_bgcolor =
                   4863: 	         $bgcolor ||
1.352     albertel 4864: 	         &designparm($function.'.pgbg',  $domain);
1.382     albertel 4865:     my $pgbg   = &designparm($function.'.pgbg',  $domain);
1.352     albertel 4866:     my $alink  = &designparm($function.'.alink', $domain);
                   4867:     my $vlink  = &designparm($function.'.vlink', $domain);
                   4868:     my $link   = &designparm($function.'.link',  $domain);
                   4869: 
1.602     albertel 4870:     my $sans                 = 'Verdana,Arial,Helvetica,sans-serif';
1.395     albertel 4871:     my $mono                 = 'monospace';
1.850     bisitz   4872:     my $data_table_head      = $sidebg;
                   4873:     my $data_table_light     = '#FAFAFA';
                   4874:     my $data_table_dark      = '#F0F0F0';
1.470     banghart 4875:     my $data_table_darker    = '#CCCCCC';
1.349     albertel 4876:     my $data_table_highlight = '#FFFF00';
1.352     albertel 4877:     my $mail_new             = '#FFBB77';
                   4878:     my $mail_new_hover       = '#DD9955';
                   4879:     my $mail_read            = '#BBBB77';
                   4880:     my $mail_read_hover      = '#999944';
                   4881:     my $mail_replied         = '#AAAA88';
                   4882:     my $mail_replied_hover   = '#888855';
                   4883:     my $mail_other           = '#99BBBB';
                   4884:     my $mail_other_hover     = '#669999';
1.391     albertel 4885:     my $table_header         = '#DDDDDD';
1.489     raeburn  4886:     my $feedback_link_bg     = '#BBBBBB';
1.911     bisitz   4887:     my $lg_border_color      = '#C8C8C8';
1.948.2.1  raeburn  4888:     my $button_hover         = '#BF2317';
1.392     albertel 4889: 
1.608     albertel 4890:     my $border = ($env{'browser.type'} eq 'explorer' ||
1.911     bisitz   4891:       $env{'browser.type'} eq 'safari'     ) ? '0 2px 0 2px'
                   4892:                                              : '0 3px 0 4px';
1.448     albertel 4893: 
1.343     albertel 4894:     return <<END;
1.947     droeschl 4895: 
                   4896: /* needed for iframe to allow 100% height in FF */
                   4897: body, html { 
                   4898:     margin: 0;
                   4899:     padding: 0 0.5%;
                   4900:     height: 99%; /* to avoid scrollbars */
                   4901: }
                   4902: 
1.795     www      4903: body {
1.911     bisitz   4904:   font-family: $sans;
                   4905:   line-height:130%;
                   4906:   font-size:0.83em;
                   4907:   color:$font;
1.795     www      4908: }
                   4909: 
1.948.2.3  raeburn  4910: +a:focus,
                   4911: +a:focus img {
1.795     www      4912:   color: red;
1.911     bisitz   4913:   background: yellow;
1.795     www      4914: }
1.698     harmsja  4915: 
1.911     bisitz   4916: form, .inline {
                   4917:   display: inline;
1.795     www      4918: }
1.721     harmsja  4919: 
1.795     www      4920: .LC_right {
1.911     bisitz   4921:   text-align:right;
1.795     www      4922: }
                   4923: 
                   4924: .LC_middle {
1.911     bisitz   4925:   vertical-align:middle;
1.795     www      4926: }
1.721     harmsja  4927: 
1.911     bisitz   4928: .LC_400Box {
                   4929:   width:400px;
                   4930: }
1.721     harmsja  4931: 
1.947     droeschl 4932: .LC_iframecontainer {
                   4933:     width: 98%;
                   4934:     margin: 0;
                   4935:     position: fixed;
                   4936:     top: 8.5em;
                   4937:     bottom: 0;
                   4938: }
                   4939: 
                   4940: .LC_iframecontainer iframe{
                   4941:     border: none;
                   4942:     width: 100%;
                   4943:     height: 100%;
                   4944: }
                   4945: 
1.778     bisitz   4946: .LC_filename {
                   4947:   font-family: $mono;
                   4948:   white-space:pre;
1.921     bisitz   4949:   font-size: 120%;
1.778     bisitz   4950: }
                   4951: 
                   4952: .LC_fileicon {
                   4953:   border: none;
                   4954:   height: 1.3em;
                   4955:   vertical-align: text-bottom;
                   4956:   margin-right: 0.3em;
                   4957:   text-decoration:none;
                   4958: }
                   4959: 
1.350     albertel 4960: .LC_error {
                   4961:   color: red;
                   4962:   font-size: larger;
                   4963: }
1.795     www      4964: 
1.457     albertel 4965: .LC_warning,
                   4966: .LC_diff_removed {
1.733     bisitz   4967:   color: red;
1.394     albertel 4968: }
1.532     albertel 4969: 
                   4970: .LC_info,
1.457     albertel 4971: .LC_success,
                   4972: .LC_diff_added {
1.350     albertel 4973:   color: green;
                   4974: }
1.795     www      4975: 
1.802     bisitz   4976: div.LC_confirm_box {
                   4977:   background-color: #FAFAFA;
                   4978:   border: 1px solid $lg_border_color;
                   4979:   margin-right: 0;
                   4980:   padding: 5px;
                   4981: }
                   4982: 
                   4983: div.LC_confirm_box .LC_error img,
                   4984: div.LC_confirm_box .LC_success img {
                   4985:   vertical-align: middle;
                   4986: }
                   4987: 
1.440     albertel 4988: .LC_icon {
1.771     droeschl 4989:   border: none;
1.790     droeschl 4990:   vertical-align: middle;
1.771     droeschl 4991: }
                   4992: 
1.543     albertel 4993: .LC_docs_spacer {
                   4994:   width: 25px;
                   4995:   height: 1px;
1.771     droeschl 4996:   border: none;
1.543     albertel 4997: }
1.346     albertel 4998: 
1.532     albertel 4999: .LC_internal_info {
1.735     bisitz   5000:   color: #999999;
1.532     albertel 5001: }
                   5002: 
1.794     www      5003: .LC_discussion {
1.911     bisitz   5004:   background: $tabbg;
                   5005:   border: 1px solid black;
                   5006:   margin: 2px;
1.794     www      5007: }
                   5008: 
                   5009: .LC_disc_action_links_bar {
1.911     bisitz   5010:   background: $tabbg;
                   5011:   border: none;
                   5012:   margin: 4px;
1.794     www      5013: }
                   5014: 
                   5015: .LC_disc_action_left {
1.911     bisitz   5016:   text-align: left;
1.794     www      5017: }
                   5018: 
                   5019: .LC_disc_action_right {
1.911     bisitz   5020:   text-align: right;
1.794     www      5021: }
                   5022: 
                   5023: .LC_disc_new_item {
1.911     bisitz   5024:   background: white;
                   5025:   border: 2px solid red;
                   5026:   margin: 2px;
1.794     www      5027: }
                   5028: 
                   5029: .LC_disc_old_item {
1.911     bisitz   5030:   background: white;
                   5031:   border: 1px solid black;
                   5032:   margin: 2px;
1.794     www      5033: }
                   5034: 
1.458     albertel 5035: table.LC_pastsubmission {
                   5036:   border: 1px solid black;
                   5037:   margin: 2px;
                   5038: }
                   5039: 
1.924     bisitz   5040: table#LC_menubuttons {
1.345     albertel 5041:   width: 100%;
                   5042:   background: $pgbg;
1.392     albertel 5043:   border: 2px;
1.402     albertel 5044:   border-collapse: separate;
1.803     bisitz   5045:   padding: 0;
1.345     albertel 5046: }
1.392     albertel 5047: 
1.801     tempelho 5048: table#LC_title_bar a {
                   5049:   color: $fontmenu;
                   5050: }
1.836     bisitz   5051: 
1.807     droeschl 5052: table#LC_title_bar {
1.819     tempelho 5053:   clear: both;
1.836     bisitz   5054:   display: none;
1.807     droeschl 5055: }
                   5056: 
1.795     www      5057: table#LC_title_bar,
1.933     droeschl 5058: table.LC_breadcrumbs, /* obsolete? */
1.393     albertel 5059: table#LC_title_bar.LC_with_remote {
1.359     albertel 5060:   width: 100%;
1.392     albertel 5061:   border-color: $pgbg;
                   5062:   border-style: solid;
                   5063:   border-width: $border;
1.379     albertel 5064:   background: $pgbg;
1.801     tempelho 5065:   color: $fontmenu;
1.392     albertel 5066:   border-collapse: collapse;
1.803     bisitz   5067:   padding: 0;
1.819     tempelho 5068:   margin: 0;
1.359     albertel 5069: }
1.795     www      5070: 
1.933     droeschl 5071: ul.LC_breadcrumb_tools_outerlist {
1.913     droeschl 5072:     margin: 0;
                   5073:     padding: 0;
1.933     droeschl 5074:     position: relative;
                   5075:     list-style: none;
1.913     droeschl 5076: }
1.933     droeschl 5077: ul.LC_breadcrumb_tools_outerlist li {
1.913     droeschl 5078:     display: inline;
                   5079: }
1.933     droeschl 5080: 
                   5081: .LC_breadcrumb_tools_navigation {
1.913     droeschl 5082:     padding: 0;
1.933     droeschl 5083:     margin: 0;
                   5084:     float: left;
1.913     droeschl 5085: }
1.933     droeschl 5086: .LC_breadcrumb_tools_tools {
                   5087:     padding: 0;
                   5088:     margin: 0;
1.913     droeschl 5089:     float: right;
                   5090: }
                   5091: 
1.359     albertel 5092: table#LC_title_bar td {
                   5093:   background: $tabbg;
                   5094: }
1.795     www      5095: 
1.911     bisitz   5096: table#LC_menubuttons img {
1.803     bisitz   5097:   border: none;
1.346     albertel 5098: }
1.795     www      5099: 
1.842     droeschl 5100: .LC_breadcrumbs_component {
1.911     bisitz   5101:   float: right;
                   5102:   margin: 0 1em;
1.357     albertel 5103: }
1.842     droeschl 5104: .LC_breadcrumbs_component img {
1.911     bisitz   5105:   vertical-align: middle;
1.777     tempelho 5106: }
1.795     www      5107: 
1.383     albertel 5108: td.LC_table_cell_checkbox {
                   5109:   text-align: center;
                   5110: }
1.795     www      5111: 
                   5112: .LC_fontsize_small {
1.911     bisitz   5113:   font-size: 70%;
1.705     tempelho 5114: }
                   5115: 
1.844     bisitz   5116: #LC_breadcrumbs {
1.911     bisitz   5117:   clear:both;
                   5118:   background: $sidebg;
                   5119:   border-bottom: 1px solid $lg_border_color;
                   5120:   line-height: 2.5em;
1.933     droeschl 5121:   overflow: hidden;
1.911     bisitz   5122:   margin: 0;
                   5123:   padding: 0;
1.819     tempelho 5124: }
1.862     bisitz   5125: 
1.839     droeschl 5126: /* Preliminary fix to hide breadcrumbs inside remote control window */
1.844     bisitz   5127: #LC_remote #LC_breadcrumbs {
1.911     bisitz   5128:   display:none;
1.839     droeschl 5129: }
1.819     tempelho 5130: 
1.844     bisitz   5131: #LC_head_subbox {
1.911     bisitz   5132:   clear:both;
                   5133:   background: #F8F8F8; /* $sidebg; */
1.915     droeschl 5134:   border: 1px solid $sidebg;
                   5135:   margin: 0 0 10px 0;      
1.948.2.6  raeburn  5136:   padding: 3px;
1.822     bisitz   5137: }
                   5138: 
1.795     www      5139: .LC_fontsize_medium {
1.911     bisitz   5140:   font-size: 85%;
1.705     tempelho 5141: }
                   5142: 
1.795     www      5143: .LC_fontsize_large {
1.911     bisitz   5144:   font-size: 120%;
1.705     tempelho 5145: }
                   5146: 
1.346     albertel 5147: .LC_menubuttons_inline_text {
                   5148:   color: $font;
1.698     harmsja  5149:   font-size: 90%;
1.701     harmsja  5150:   padding-left:3px;
1.346     albertel 5151: }
                   5152: 
1.934     droeschl 5153: .LC_menubuttons_inline_text img{
                   5154:   vertical-align: middle;
                   5155: }
                   5156: 
1.948.2.1  raeburn  5157: li.LC_menubuttons_inline_text img,a {
                   5158:   cursor:pointer;
                   5159: }
                   5160: 
1.526     www      5161: .LC_menubuttons_link {
                   5162:   text-decoration: none;
                   5163: }
1.795     www      5164: 
1.522     albertel 5165: .LC_menubuttons_category {
1.521     www      5166:   color: $font;
1.526     www      5167:   background: $pgbg;
1.521     www      5168:   font-size: larger;
                   5169:   font-weight: bold;
                   5170: }
                   5171: 
1.346     albertel 5172: td.LC_menubuttons_text {
1.911     bisitz   5173:   color: $font;
1.346     albertel 5174: }
1.706     harmsja  5175: 
1.346     albertel 5176: .LC_current_location {
                   5177:   background: $tabbg;
                   5178: }
1.795     www      5179: 
1.938     bisitz   5180: table.LC_data_table {
1.347     albertel 5181:   border: 1px solid #000000;
1.402     albertel 5182:   border-collapse: separate;
1.426     albertel 5183:   border-spacing: 1px;
1.610     albertel 5184:   background: $pgbg;
1.347     albertel 5185: }
1.795     www      5186: 
1.422     albertel 5187: .LC_data_table_dense {
                   5188:   font-size: small;
                   5189: }
1.795     www      5190: 
1.507     raeburn  5191: table.LC_nested_outer {
                   5192:   border: 1px solid #000000;
1.589     raeburn  5193:   border-collapse: collapse;
1.803     bisitz   5194:   border-spacing: 0;
1.507     raeburn  5195:   width: 100%;
                   5196: }
1.795     www      5197: 
1.879     raeburn  5198: table.LC_innerpickbox,
1.507     raeburn  5199: table.LC_nested {
1.803     bisitz   5200:   border: none;
1.589     raeburn  5201:   border-collapse: collapse;
1.803     bisitz   5202:   border-spacing: 0;
1.507     raeburn  5203:   width: 100%;
                   5204: }
1.795     www      5205: 
1.930     faziophi 5206: .ui-accordion,
                   5207: .ui-accordion table.LC_data_table,
                   5208: .ui-accordion table.LC_nested_outer{
                   5209:   border: 0px;
                   5210:   border-spacing: 0px;
                   5211:   margin: 3px;
                   5212: }
                   5213: 
1.911     bisitz   5214: table.LC_data_table tr th,
                   5215: table.LC_calendar tr th,
1.879     raeburn  5216: table.LC_prior_tries tr th,
                   5217: table.LC_innerpickbox tr th {
1.349     albertel 5218:   font-weight: bold;
                   5219:   background-color: $data_table_head;
1.801     tempelho 5220:   color:$fontmenu;
1.701     harmsja  5221:   font-size:90%;
1.347     albertel 5222: }
1.795     www      5223: 
1.879     raeburn  5224: table.LC_innerpickbox tr th,
                   5225: table.LC_innerpickbox tr td {
                   5226:   vertical-align: top;
                   5227: }
                   5228: 
1.711     raeburn  5229: table.LC_data_table tr.LC_info_row > td {
1.735     bisitz   5230:   background-color: #CCCCCC;
1.711     raeburn  5231:   font-weight: bold;
                   5232:   text-align: left;
                   5233: }
1.795     www      5234: 
1.912     bisitz   5235: table.LC_data_table tr.LC_odd_row > td {
                   5236:   background-color: $data_table_light;
                   5237:   padding: 2px;
                   5238:   vertical-align: top;
                   5239: }
                   5240: 
1.809     bisitz   5241: table.LC_pick_box tr > td.LC_odd_row {
1.349     albertel 5242:   background-color: $data_table_light;
1.912     bisitz   5243:   vertical-align: top;
                   5244: }
                   5245: 
                   5246: table.LC_data_table tr.LC_even_row > td {
                   5247:   background-color: $data_table_dark;
1.425     albertel 5248:   padding: 2px;
1.900     bisitz   5249:   vertical-align: top;
1.347     albertel 5250: }
1.795     www      5251: 
1.809     bisitz   5252: table.LC_pick_box tr > td.LC_even_row {
1.349     albertel 5253:   background-color: $data_table_dark;
1.900     bisitz   5254:   vertical-align: top;
1.347     albertel 5255: }
1.795     www      5256: 
1.425     albertel 5257: table.LC_data_table tr.LC_data_table_highlight td {
                   5258:   background-color: $data_table_darker;
                   5259: }
1.795     www      5260: 
1.639     raeburn  5261: table.LC_data_table tr td.LC_leftcol_header {
                   5262:   background-color: $data_table_head;
                   5263:   font-weight: bold;
                   5264: }
1.795     www      5265: 
1.451     albertel 5266: table.LC_data_table tr.LC_empty_row td,
1.507     raeburn  5267: table.LC_nested tr.LC_empty_row td {
1.421     albertel 5268:   font-weight: bold;
                   5269:   font-style: italic;
                   5270:   text-align: center;
                   5271:   padding: 8px;
1.347     albertel 5272: }
1.795     www      5273: 
1.940     bisitz   5274: table.LC_data_table tr.LC_empty_row td {
                   5275:   background-color: $sidebg;
                   5276: }
                   5277: 
                   5278: table.LC_nested tr.LC_empty_row td {
                   5279:   background-color: #FFFFFF;
                   5280: }
                   5281: 
1.890     droeschl 5282: table.LC_caption {
                   5283: }
                   5284: 
1.507     raeburn  5285: table.LC_nested tr.LC_empty_row td {
1.465     albertel 5286:   padding: 4ex
                   5287: }
1.795     www      5288: 
1.507     raeburn  5289: table.LC_nested_outer tr th {
                   5290:   font-weight: bold;
1.801     tempelho 5291:   color:$fontmenu;
1.507     raeburn  5292:   background-color: $data_table_head;
1.701     harmsja  5293:   font-size: small;
1.507     raeburn  5294:   border-bottom: 1px solid #000000;
                   5295: }
1.795     www      5296: 
1.507     raeburn  5297: table.LC_nested_outer tr td.LC_subheader {
                   5298:   background-color: $data_table_head;
                   5299:   font-weight: bold;
                   5300:   font-size: small;
                   5301:   border-bottom: 1px solid #000000;
                   5302:   text-align: right;
1.451     albertel 5303: }
1.795     www      5304: 
1.507     raeburn  5305: table.LC_nested tr.LC_info_row td {
1.735     bisitz   5306:   background-color: #CCCCCC;
1.451     albertel 5307:   font-weight: bold;
                   5308:   font-size: small;
1.507     raeburn  5309:   text-align: center;
                   5310: }
1.795     www      5311: 
1.589     raeburn  5312: table.LC_nested tr.LC_info_row td.LC_left_item,
                   5313: table.LC_nested_outer tr th.LC_left_item {
1.507     raeburn  5314:   text-align: left;
1.451     albertel 5315: }
1.795     www      5316: 
1.507     raeburn  5317: table.LC_nested td {
1.735     bisitz   5318:   background-color: #FFFFFF;
1.451     albertel 5319:   font-size: small;
1.507     raeburn  5320: }
1.795     www      5321: 
1.507     raeburn  5322: table.LC_nested_outer tr th.LC_right_item,
                   5323: table.LC_nested tr.LC_info_row td.LC_right_item,
                   5324: table.LC_nested tr.LC_odd_row td.LC_right_item,
                   5325: table.LC_nested tr td.LC_right_item {
1.451     albertel 5326:   text-align: right;
                   5327: }
                   5328: 
1.930     faziophi 5329: .ui-accordion table.LC_nested tr.LC_odd_row td.LC_left_item,
                   5330: .ui-accordion table.LC_nested tr.LC_even_row td.LC_left_item {
                   5331:   text-align: right;
                   5332:   width: 40%;
                   5333:   padding-right:10px;
                   5334:   vertical-align: top;
                   5335:   padding: 5px;
                   5336: }
                   5337: 
                   5338: .ui-accordion table.LC_nested tr.LC_odd_row td.LC_right_item,
                   5339: .ui-accordion table.LC_nested tr.LC_even_row td.LC_right_item {
                   5340:   text-align: left;
                   5341:   width: 60%;
                   5342:   padding: 2px 4px;
                   5343: }
                   5344: 
1.507     raeburn  5345: table.LC_nested tr.LC_odd_row td {
1.735     bisitz   5346:   background-color: #EEEEEE;
1.451     albertel 5347: }
                   5348: 
1.473     raeburn  5349: table.LC_createuser {
                   5350: }
                   5351: 
                   5352: table.LC_createuser tr.LC_section_row td {
1.701     harmsja  5353:   font-size: small;
1.473     raeburn  5354: }
                   5355: 
                   5356: table.LC_createuser tr.LC_info_row td  {
1.735     bisitz   5357:   background-color: #CCCCCC;
1.473     raeburn  5358:   font-weight: bold;
                   5359:   text-align: center;
                   5360: }
                   5361: 
1.349     albertel 5362: table.LC_calendar {
                   5363:   border: 1px solid #000000;
                   5364:   border-collapse: collapse;
1.917     raeburn  5365:   width: 98%;
1.349     albertel 5366: }
1.795     www      5367: 
1.349     albertel 5368: table.LC_calendar_pickdate {
                   5369:   font-size: xx-small;
                   5370: }
1.795     www      5371: 
1.349     albertel 5372: table.LC_calendar tr td {
                   5373:   border: 1px solid #000000;
                   5374:   vertical-align: top;
1.917     raeburn  5375:   width: 14%;
1.349     albertel 5376: }
1.795     www      5377: 
1.349     albertel 5378: table.LC_calendar tr td.LC_calendar_day_empty {
                   5379:   background-color: $data_table_dark;
                   5380: }
1.795     www      5381: 
1.779     bisitz   5382: table.LC_calendar tr td.LC_calendar_day_current {
                   5383:   background-color: $data_table_highlight;
1.777     tempelho 5384: }
1.795     www      5385: 
1.938     bisitz   5386: table.LC_data_table tr td.LC_mail_new {
1.349     albertel 5387:   background-color: $mail_new;
                   5388: }
1.795     www      5389: 
1.938     bisitz   5390: table.LC_data_table tr.LC_mail_new:hover {
1.349     albertel 5391:   background-color: $mail_new_hover;
                   5392: }
1.795     www      5393: 
1.938     bisitz   5394: table.LC_data_table tr td.LC_mail_read {
1.349     albertel 5395:   background-color: $mail_read;
                   5396: }
1.795     www      5397: 
1.938     bisitz   5398: /*
                   5399: table.LC_data_table tr.LC_mail_read:hover {
1.349     albertel 5400:   background-color: $mail_read_hover;
                   5401: }
1.938     bisitz   5402: */
1.795     www      5403: 
1.938     bisitz   5404: table.LC_data_table tr td.LC_mail_replied {
1.349     albertel 5405:   background-color: $mail_replied;
                   5406: }
1.795     www      5407: 
1.938     bisitz   5408: /*
                   5409: table.LC_data_table tr.LC_mail_replied:hover {
1.349     albertel 5410:   background-color: $mail_replied_hover;
                   5411: }
1.938     bisitz   5412: */
1.795     www      5413: 
1.938     bisitz   5414: table.LC_data_table tr td.LC_mail_other {
1.349     albertel 5415:   background-color: $mail_other;
                   5416: }
1.795     www      5417: 
1.938     bisitz   5418: /*
                   5419: table.LC_data_table tr.LC_mail_other:hover {
1.349     albertel 5420:   background-color: $mail_other_hover;
                   5421: }
1.938     bisitz   5422: */
1.494     raeburn  5423: 
1.777     tempelho 5424: table.LC_data_table tr > td.LC_browser_file,
                   5425: table.LC_data_table tr > td.LC_browser_file_published {
1.899     bisitz   5426:   background: #AAEE77;
1.389     albertel 5427: }
1.795     www      5428: 
1.777     tempelho 5429: table.LC_data_table tr > td.LC_browser_file_locked,
                   5430: table.LC_data_table tr > td.LC_browser_file_unpublished {
1.389     albertel 5431:   background: #FFAA99;
1.387     albertel 5432: }
1.795     www      5433: 
1.777     tempelho 5434: table.LC_data_table tr > td.LC_browser_file_obsolete {
1.899     bisitz   5435:   background: #888888;
1.779     bisitz   5436: }
1.795     www      5437: 
1.777     tempelho 5438: table.LC_data_table tr > td.LC_browser_file_modified,
1.779     bisitz   5439: table.LC_data_table tr > td.LC_browser_file_metamodified {
1.899     bisitz   5440:   background: #F8F866;
1.777     tempelho 5441: }
1.795     www      5442: 
1.696     bisitz   5443: table.LC_data_table tr.LC_browser_folder > td {
1.899     bisitz   5444:   background: #E0E8FF;
1.387     albertel 5445: }
1.696     bisitz   5446: 
1.707     bisitz   5447: table.LC_data_table tr > td.LC_roles_is {
1.911     bisitz   5448:   /* background: #77FF77; */
1.707     bisitz   5449: }
1.795     www      5450: 
1.707     bisitz   5451: table.LC_data_table tr > td.LC_roles_future {
1.939     bisitz   5452:   border-right: 8px solid #FFFF77;
1.707     bisitz   5453: }
1.795     www      5454: 
1.707     bisitz   5455: table.LC_data_table tr > td.LC_roles_will {
1.939     bisitz   5456:   border-right: 8px solid #FFAA77;
1.707     bisitz   5457: }
1.795     www      5458: 
1.707     bisitz   5459: table.LC_data_table tr > td.LC_roles_expired {
1.939     bisitz   5460:   border-right: 8px solid #FF7777;
1.707     bisitz   5461: }
1.795     www      5462: 
1.707     bisitz   5463: table.LC_data_table tr > td.LC_roles_will_not {
1.939     bisitz   5464:   border-right: 8px solid #AAFF77;
1.707     bisitz   5465: }
1.795     www      5466: 
1.707     bisitz   5467: table.LC_data_table tr > td.LC_roles_selected {
1.939     bisitz   5468:   border-right: 8px solid #11CC55;
1.707     bisitz   5469: }
                   5470: 
1.388     albertel 5471: span.LC_current_location {
1.701     harmsja  5472:   font-size:larger;
1.388     albertel 5473:   background: $pgbg;
                   5474: }
1.387     albertel 5475: 
1.395     albertel 5476: span.LC_parm_menu_item {
                   5477:   font-size: larger;
                   5478: }
1.795     www      5479: 
1.395     albertel 5480: span.LC_parm_scope_all {
                   5481:   color: red;
                   5482: }
1.795     www      5483: 
1.395     albertel 5484: span.LC_parm_scope_folder {
                   5485:   color: green;
                   5486: }
1.795     www      5487: 
1.395     albertel 5488: span.LC_parm_scope_resource {
                   5489:   color: orange;
                   5490: }
1.795     www      5491: 
1.395     albertel 5492: span.LC_parm_part {
                   5493:   color: blue;
                   5494: }
1.795     www      5495: 
1.911     bisitz   5496: span.LC_parm_folder,
                   5497: span.LC_parm_symb {
1.395     albertel 5498:   font-size: x-small;
                   5499:   font-family: $mono;
                   5500:   color: #AAAAAA;
                   5501: }
                   5502: 
1.948.2.8! raeburn  5503: ul.LC_parm_parmlist li {
        !          5504:   display: inline-block;
        !          5505:   padding: 0.3em 0.8em;
        !          5506:   vertical-align: top;
        !          5507:   width: 150px;
        !          5508:   border-top:1px solid $lg_border_color;
        !          5509: }
        !          5510: 
1.795     www      5511: td.LC_parm_overview_level_menu,
                   5512: td.LC_parm_overview_map_menu,
                   5513: td.LC_parm_overview_parm_selectors,
                   5514: td.LC_parm_overview_restrictions  {
1.396     albertel 5515:   border: 1px solid black;
                   5516:   border-collapse: collapse;
                   5517: }
1.795     www      5518: 
1.396     albertel 5519: table.LC_parm_overview_restrictions td {
                   5520:   border-width: 1px 4px 1px 4px;
                   5521:   border-style: solid;
                   5522:   border-color: $pgbg;
                   5523:   text-align: center;
                   5524: }
1.795     www      5525: 
1.396     albertel 5526: table.LC_parm_overview_restrictions th {
                   5527:   background: $tabbg;
                   5528:   border-width: 1px 4px 1px 4px;
                   5529:   border-style: solid;
                   5530:   border-color: $pgbg;
                   5531: }
1.795     www      5532: 
1.398     albertel 5533: table#LC_helpmenu {
1.803     bisitz   5534:   border: none;
1.398     albertel 5535:   height: 55px;
1.803     bisitz   5536:   border-spacing: 0;
1.398     albertel 5537: }
                   5538: 
                   5539: table#LC_helpmenu fieldset legend {
                   5540:   font-size: larger;
                   5541: }
1.795     www      5542: 
1.397     albertel 5543: table#LC_helpmenu_links {
                   5544:   width: 100%;
                   5545:   border: 1px solid black;
                   5546:   background: $pgbg;
1.803     bisitz   5547:   padding: 0;
1.397     albertel 5548:   border-spacing: 1px;
                   5549: }
1.795     www      5550: 
1.397     albertel 5551: table#LC_helpmenu_links tr td {
                   5552:   padding: 1px;
                   5553:   background: $tabbg;
1.399     albertel 5554:   text-align: center;
                   5555:   font-weight: bold;
1.397     albertel 5556: }
1.396     albertel 5557: 
1.795     www      5558: table#LC_helpmenu_links a:link,
                   5559: table#LC_helpmenu_links a:visited,
1.397     albertel 5560: table#LC_helpmenu_links a:active {
                   5561:   text-decoration: none;
                   5562:   color: $font;
                   5563: }
1.795     www      5564: 
1.397     albertel 5565: table#LC_helpmenu_links a:hover {
                   5566:   text-decoration: underline;
                   5567:   color: $vlink;
                   5568: }
1.396     albertel 5569: 
1.417     albertel 5570: .LC_chrt_popup_exists {
                   5571:   border: 1px solid #339933;
                   5572:   margin: -1px;
                   5573: }
1.795     www      5574: 
1.417     albertel 5575: .LC_chrt_popup_up {
                   5576:   border: 1px solid yellow;
                   5577:   margin: -1px;
                   5578: }
1.795     www      5579: 
1.417     albertel 5580: .LC_chrt_popup {
                   5581:   border: 1px solid #8888FF;
                   5582:   background: #CCCCFF;
                   5583: }
1.795     www      5584: 
1.421     albertel 5585: table.LC_pick_box {
                   5586:   border-collapse: separate;
                   5587:   background: white;
                   5588:   border: 1px solid black;
                   5589:   border-spacing: 1px;
                   5590: }
1.795     www      5591: 
1.421     albertel 5592: table.LC_pick_box td.LC_pick_box_title {
1.850     bisitz   5593:   background: $sidebg;
1.421     albertel 5594:   font-weight: bold;
1.900     bisitz   5595:   text-align: left;
1.740     bisitz   5596:   vertical-align: top;
1.421     albertel 5597:   width: 184px;
                   5598:   padding: 8px;
                   5599: }
1.795     www      5600: 
1.579     raeburn  5601: table.LC_pick_box td.LC_pick_box_value {
                   5602:   text-align: left;
                   5603:   padding: 8px;
                   5604: }
1.795     www      5605: 
1.579     raeburn  5606: table.LC_pick_box td.LC_pick_box_select {
                   5607:   text-align: left;
                   5608:   padding: 8px;
                   5609: }
1.795     www      5610: 
1.424     albertel 5611: table.LC_pick_box td.LC_pick_box_separator {
1.803     bisitz   5612:   padding: 0;
1.421     albertel 5613:   height: 1px;
                   5614:   background: black;
                   5615: }
1.795     www      5616: 
1.421     albertel 5617: table.LC_pick_box td.LC_pick_box_submit {
                   5618:   text-align: right;
                   5619: }
1.795     www      5620: 
1.579     raeburn  5621: table.LC_pick_box td.LC_evenrow_value {
                   5622:   text-align: left;
                   5623:   padding: 8px;
                   5624:   background-color: $data_table_light;
                   5625: }
1.795     www      5626: 
1.579     raeburn  5627: table.LC_pick_box td.LC_oddrow_value {
                   5628:   text-align: left;
                   5629:   padding: 8px;
                   5630:   background-color: $data_table_light;
                   5631: }
1.795     www      5632: 
1.579     raeburn  5633: span.LC_helpform_receipt_cat {
                   5634:   font-weight: bold;
                   5635: }
1.795     www      5636: 
1.424     albertel 5637: table.LC_group_priv_box {
                   5638:   background: white;
                   5639:   border: 1px solid black;
                   5640:   border-spacing: 1px;
                   5641: }
1.795     www      5642: 
1.424     albertel 5643: table.LC_group_priv_box td.LC_pick_box_title {
                   5644:   background: $tabbg;
                   5645:   font-weight: bold;
                   5646:   text-align: right;
                   5647:   width: 184px;
                   5648: }
1.795     www      5649: 
1.424     albertel 5650: table.LC_group_priv_box td.LC_groups_fixed {
                   5651:   background: $data_table_light;
                   5652:   text-align: center;
                   5653: }
1.795     www      5654: 
1.424     albertel 5655: table.LC_group_priv_box td.LC_groups_optional {
                   5656:   background: $data_table_dark;
                   5657:   text-align: center;
                   5658: }
1.795     www      5659: 
1.424     albertel 5660: table.LC_group_priv_box td.LC_groups_functionality {
                   5661:   background: $data_table_darker;
                   5662:   text-align: center;
                   5663:   font-weight: bold;
                   5664: }
1.795     www      5665: 
1.424     albertel 5666: table.LC_group_priv td {
                   5667:   text-align: left;
1.803     bisitz   5668:   padding: 0;
1.424     albertel 5669: }
                   5670: 
1.421     albertel 5671: table.LC_notify_front_page {
                   5672:   background: white;
                   5673:   border: 1px solid black;
                   5674:   padding: 8px;
                   5675: }
1.795     www      5676: 
1.421     albertel 5677: table.LC_notify_front_page td {
                   5678:   padding: 8px;
                   5679: }
1.795     www      5680: 
1.424     albertel 5681: .LC_navbuttons {
                   5682:   margin: 2ex 0ex 2ex 0ex;
                   5683: }
1.795     www      5684: 
1.423     albertel 5685: .LC_topic_bar {
                   5686:   font-weight: bold;
                   5687:   background: $tabbg;
1.918     wenzelju 5688:   margin: 1em 0em 1em 2em;
1.805     bisitz   5689:   padding: 3px;
1.918     wenzelju 5690:   font-size: 1.2em;
1.423     albertel 5691: }
1.795     www      5692: 
1.423     albertel 5693: .LC_topic_bar span {
1.918     wenzelju 5694:   left: 0.5em;
                   5695:   position: absolute;
1.423     albertel 5696:   vertical-align: middle;
1.918     wenzelju 5697:   font-size: 1.2em;
1.423     albertel 5698: }
1.795     www      5699: 
1.423     albertel 5700: table.LC_course_group_status {
                   5701:   margin: 20px;
                   5702: }
1.795     www      5703: 
1.423     albertel 5704: table.LC_status_selector td {
                   5705:   vertical-align: top;
                   5706:   text-align: center;
1.424     albertel 5707:   padding: 4px;
                   5708: }
1.795     www      5709: 
1.599     albertel 5710: div.LC_feedback_link {
1.616     albertel 5711:   clear: both;
1.829     kalberla 5712:   background: $sidebg;
1.779     bisitz   5713:   width: 100%;
1.829     kalberla 5714:   padding-bottom: 10px;
                   5715:   border: 1px $tabbg solid;
1.833     kalberla 5716:   height: 22px;
                   5717:   line-height: 22px;
                   5718:   padding-top: 5px;
                   5719: }
                   5720: 
                   5721: div.LC_feedback_link img {
                   5722:   height: 22px;
1.867     kalberla 5723:   vertical-align:middle;
1.829     kalberla 5724: }
                   5725: 
1.911     bisitz   5726: div.LC_feedback_link a {
1.829     kalberla 5727:   text-decoration: none;
1.489     raeburn  5728: }
1.795     www      5729: 
1.867     kalberla 5730: div.LC_comblock {
1.911     bisitz   5731:   display:inline;
1.867     kalberla 5732:   color:$font;
                   5733:   font-size:90%;
                   5734: }
                   5735: 
                   5736: div.LC_feedback_link div.LC_comblock {
                   5737:   padding-left:5px;
                   5738: }
                   5739: 
                   5740: div.LC_feedback_link div.LC_comblock a {
                   5741:   color:$font;
                   5742: }
                   5743: 
1.489     raeburn  5744: span.LC_feedback_link {
1.858     bisitz   5745:   /* background: $feedback_link_bg; */
1.599     albertel 5746:   font-size: larger;
                   5747: }
1.795     www      5748: 
1.599     albertel 5749: span.LC_message_link {
1.858     bisitz   5750:   /* background: $feedback_link_bg; */
1.599     albertel 5751:   font-size: larger;
                   5752:   position: absolute;
                   5753:   right: 1em;
1.489     raeburn  5754: }
1.421     albertel 5755: 
1.515     albertel 5756: table.LC_prior_tries {
1.524     albertel 5757:   border: 1px solid #000000;
                   5758:   border-collapse: separate;
                   5759:   border-spacing: 1px;
1.515     albertel 5760: }
1.523     albertel 5761: 
1.515     albertel 5762: table.LC_prior_tries td {
1.524     albertel 5763:   padding: 2px;
1.515     albertel 5764: }
1.523     albertel 5765: 
                   5766: .LC_answer_correct {
1.795     www      5767:   background: lightgreen;
                   5768:   color: darkgreen;
                   5769:   padding: 6px;
1.523     albertel 5770: }
1.795     www      5771: 
1.523     albertel 5772: .LC_answer_charged_try {
1.797     www      5773:   background: #FFAAAA;
1.795     www      5774:   color: darkred;
                   5775:   padding: 6px;
1.523     albertel 5776: }
1.795     www      5777: 
1.779     bisitz   5778: .LC_answer_not_charged_try,
1.523     albertel 5779: .LC_answer_no_grade,
                   5780: .LC_answer_late {
1.795     www      5781:   background: lightyellow;
1.523     albertel 5782:   color: black;
1.795     www      5783:   padding: 6px;
1.523     albertel 5784: }
1.795     www      5785: 
1.523     albertel 5786: .LC_answer_previous {
1.795     www      5787:   background: lightblue;
                   5788:   color: darkblue;
                   5789:   padding: 6px;
1.523     albertel 5790: }
1.795     www      5791: 
1.779     bisitz   5792: .LC_answer_no_message {
1.777     tempelho 5793:   background: #FFFFFF;
                   5794:   color: black;
1.795     www      5795:   padding: 6px;
1.779     bisitz   5796: }
1.795     www      5797: 
1.779     bisitz   5798: .LC_answer_unknown {
                   5799:   background: orange;
                   5800:   color: black;
1.795     www      5801:   padding: 6px;
1.777     tempelho 5802: }
1.795     www      5803: 
1.529     albertel 5804: span.LC_prior_numerical,
                   5805: span.LC_prior_string,
                   5806: span.LC_prior_custom,
                   5807: span.LC_prior_reaction,
                   5808: span.LC_prior_math {
1.925     bisitz   5809:   font-family: $mono;
1.523     albertel 5810:   white-space: pre;
                   5811: }
                   5812: 
1.525     albertel 5813: span.LC_prior_string {
1.925     bisitz   5814:   font-family: $mono;
1.525     albertel 5815:   white-space: pre;
                   5816: }
                   5817: 
1.523     albertel 5818: table.LC_prior_option {
                   5819:   width: 100%;
                   5820:   border-collapse: collapse;
                   5821: }
1.795     www      5822: 
1.911     bisitz   5823: table.LC_prior_rank,
1.795     www      5824: table.LC_prior_match {
1.528     albertel 5825:   border-collapse: collapse;
                   5826: }
1.795     www      5827: 
1.528     albertel 5828: table.LC_prior_option tr td,
                   5829: table.LC_prior_rank tr td,
                   5830: table.LC_prior_match tr td {
1.524     albertel 5831:   border: 1px solid #000000;
1.515     albertel 5832: }
                   5833: 
1.855     bisitz   5834: .LC_nobreak {
1.544     albertel 5835:   white-space: nowrap;
1.519     raeburn  5836: }
                   5837: 
1.576     raeburn  5838: span.LC_cusr_emph {
                   5839:   font-style: italic;
                   5840: }
                   5841: 
1.633     raeburn  5842: span.LC_cusr_subheading {
                   5843:   font-weight: normal;
                   5844:   font-size: 85%;
                   5845: }
                   5846: 
1.861     bisitz   5847: div.LC_docs_entry_move {
1.859     bisitz   5848:   border: 1px solid #BBBBBB;
1.545     albertel 5849:   background: #DDDDDD;
1.861     bisitz   5850:   width: 22px;
1.859     bisitz   5851:   padding: 1px;
                   5852:   margin: 0;
1.545     albertel 5853: }
                   5854: 
1.861     bisitz   5855: table.LC_data_table tr > td.LC_docs_entry_commands,
                   5856: table.LC_data_table tr > td.LC_docs_entry_parameter {
1.545     albertel 5857:   background: #DDDDDD;
                   5858:   font-size: x-small;
                   5859: }
1.795     www      5860: 
1.861     bisitz   5861: .LC_docs_entry_parameter {
                   5862:   white-space: nowrap;
                   5863: }
                   5864: 
1.544     albertel 5865: .LC_docs_copy {
1.545     albertel 5866:   color: #000099;
1.544     albertel 5867: }
1.795     www      5868: 
1.544     albertel 5869: .LC_docs_cut {
1.545     albertel 5870:   color: #550044;
1.544     albertel 5871: }
1.795     www      5872: 
1.544     albertel 5873: .LC_docs_rename {
1.545     albertel 5874:   color: #009900;
1.544     albertel 5875: }
1.795     www      5876: 
1.544     albertel 5877: .LC_docs_remove {
1.545     albertel 5878:   color: #990000;
                   5879: }
                   5880: 
1.547     albertel 5881: .LC_docs_reinit_warn,
                   5882: .LC_docs_ext_edit {
                   5883:   font-size: x-small;
                   5884: }
                   5885: 
1.545     albertel 5886: table.LC_docs_adddocs td,
                   5887: table.LC_docs_adddocs th {
                   5888:   border: 1px solid #BBBBBB;
                   5889:   padding: 4px;
                   5890:   background: #DDDDDD;
1.543     albertel 5891: }
                   5892: 
1.584     albertel 5893: table.LC_sty_begin {
                   5894:   background: #BBFFBB;
                   5895: }
1.795     www      5896: 
1.584     albertel 5897: table.LC_sty_end {
                   5898:   background: #FFBBBB;
                   5899: }
                   5900: 
1.589     raeburn  5901: table.LC_double_column {
1.803     bisitz   5902:   border-width: 0;
1.589     raeburn  5903:   border-collapse: collapse;
                   5904:   width: 100%;
                   5905:   padding: 2px;
                   5906: }
                   5907: 
                   5908: table.LC_double_column tr td.LC_left_col {
1.590     raeburn  5909:   top: 2px;
1.589     raeburn  5910:   left: 2px;
                   5911:   width: 47%;
                   5912:   vertical-align: top;
                   5913: }
                   5914: 
                   5915: table.LC_double_column tr td.LC_right_col {
                   5916:   top: 2px;
1.779     bisitz   5917:   right: 2px;
1.589     raeburn  5918:   width: 47%;
                   5919:   vertical-align: top;
                   5920: }
                   5921: 
1.591     raeburn  5922: div.LC_left_float {
                   5923:   float: left;
                   5924:   padding-right: 5%;
1.597     albertel 5925:   padding-bottom: 4px;
1.591     raeburn  5926: }
                   5927: 
                   5928: div.LC_clear_float_header {
1.597     albertel 5929:   padding-bottom: 2px;
1.591     raeburn  5930: }
                   5931: 
                   5932: div.LC_clear_float_footer {
1.597     albertel 5933:   padding-top: 10px;
1.591     raeburn  5934:   clear: both;
                   5935: }
                   5936: 
1.597     albertel 5937: div.LC_grade_show_user {
1.941     bisitz   5938: /*  border-left: 5px solid $sidebg; */
                   5939:   border-top: 5px solid #000000;
                   5940:   margin: 50px 0 0 0;
1.936     bisitz   5941:   padding: 15px 0 5px 10px;
1.597     albertel 5942: }
1.795     www      5943: 
1.936     bisitz   5944: div.LC_grade_show_user_odd_row {
1.941     bisitz   5945: /*  border-left: 5px solid #000000; */
                   5946: }
                   5947: 
                   5948: div.LC_grade_show_user div.LC_Box {
                   5949:   margin-right: 50px;
1.597     albertel 5950: }
                   5951: 
                   5952: div.LC_grade_submissions,
                   5953: div.LC_grade_message_center,
1.936     bisitz   5954: div.LC_grade_info_links {
1.597     albertel 5955:   margin: 5px;
                   5956:   width: 99%;
                   5957:   background: #FFFFFF;
                   5958: }
1.795     www      5959: 
1.597     albertel 5960: div.LC_grade_submissions_header,
1.936     bisitz   5961: div.LC_grade_message_center_header {
1.705     tempelho 5962:   font-weight: bold;
                   5963:   font-size: large;
1.597     albertel 5964: }
1.795     www      5965: 
1.597     albertel 5966: div.LC_grade_submissions_body,
1.936     bisitz   5967: div.LC_grade_message_center_body {
1.597     albertel 5968:   border: 1px solid black;
                   5969:   width: 99%;
                   5970:   background: #FFFFFF;
                   5971: }
1.795     www      5972: 
1.613     albertel 5973: table.LC_scantron_action {
                   5974:   width: 100%;
                   5975: }
1.795     www      5976: 
1.613     albertel 5977: table.LC_scantron_action tr th {
1.698     harmsja  5978:   font-weight:bold;
                   5979:   font-style:normal;
1.613     albertel 5980: }
1.795     www      5981: 
1.779     bisitz   5982: .LC_edit_problem_header,
1.614     albertel 5983: div.LC_edit_problem_footer {
1.705     tempelho 5984:   font-weight: normal;
                   5985:   font-size:  medium;
1.602     albertel 5986:   margin: 2px;
1.600     albertel 5987: }
1.795     www      5988: 
1.600     albertel 5989: div.LC_edit_problem_header,
1.602     albertel 5990: div.LC_edit_problem_header div,
1.614     albertel 5991: div.LC_edit_problem_footer,
                   5992: div.LC_edit_problem_footer div,
1.602     albertel 5993: div.LC_edit_problem_editxml_header,
                   5994: div.LC_edit_problem_editxml_header div {
1.600     albertel 5995:   margin-top: 5px;
                   5996: }
1.795     www      5997: 
1.600     albertel 5998: div.LC_edit_problem_header_title {
1.705     tempelho 5999:   font-weight: bold;
                   6000:   font-size: larger;
1.602     albertel 6001:   background: $tabbg;
                   6002:   padding: 3px;
                   6003: }
1.795     www      6004: 
1.602     albertel 6005: table.LC_edit_problem_header_title {
                   6006:   width: 100%;
1.600     albertel 6007:   background: $tabbg;
1.602     albertel 6008: }
                   6009: 
                   6010: div.LC_edit_problem_discards {
                   6011:   float: left;
                   6012:   padding-bottom: 5px;
                   6013: }
1.795     www      6014: 
1.602     albertel 6015: div.LC_edit_problem_saves {
                   6016:   float: right;
                   6017:   padding-bottom: 5px;
1.600     albertel 6018: }
1.795     www      6019: 
1.911     bisitz   6020: img.stift {
1.803     bisitz   6021:   border-width: 0;
                   6022:   vertical-align: middle;
1.677     riegler  6023: }
1.680     riegler  6024: 
1.923     bisitz   6025: table td.LC_mainmenu_col_fieldset {
1.680     riegler  6026:   vertical-align: top;
1.777     tempelho 6027: }
1.795     www      6028: 
1.716     raeburn  6029: div.LC_createcourse {
1.911     bisitz   6030:   margin: 10px 10px 10px 10px;
1.716     raeburn  6031: }
                   6032: 
1.917     raeburn  6033: .LC_dccid {
                   6034:   margin: 0.2em 0 0 0;
                   6035:   padding: 0;
                   6036:   font-size: 90%;
                   6037:   display:none;
                   6038: }
                   6039: 
1.698     harmsja  6040: a:hover,
1.897     wenzelju 6041: ol.LC_primary_menu a:hover,
1.721     harmsja  6042: ol#LC_MenuBreadcrumbs a:hover,
                   6043: ol#LC_PathBreadcrumbs a:hover,
1.897     wenzelju 6044: ul#LC_secondary_menu a:hover,
1.721     harmsja  6045: .LC_FormSectionClearButton input:hover
1.795     www      6046: ul.LC_TabContent   li:hover a {
1.948.2.1  raeburn  6047:   color:$button_hover;
1.911     bisitz   6048:   text-decoration:none;
1.693     droeschl 6049: }
                   6050: 
1.779     bisitz   6051: h1 {
1.911     bisitz   6052:   padding: 0;
                   6053:   line-height:130%;
1.693     droeschl 6054: }
1.698     harmsja  6055: 
1.911     bisitz   6056: h2,
                   6057: h3,
                   6058: h4,
                   6059: h5,
                   6060: h6 {
                   6061:   margin: 5px 0 5px 0;
                   6062:   padding: 0;
                   6063:   line-height:130%;
1.693     droeschl 6064: }
1.795     www      6065: 
                   6066: .LC_hcell {
1.911     bisitz   6067:   padding:3px 15px 3px 15px;
                   6068:   margin: 0;
                   6069:   background-color:$tabbg;
                   6070:   color:$fontmenu;
                   6071:   border-bottom:solid 1px $lg_border_color;
1.693     droeschl 6072: }
1.795     www      6073: 
1.840     bisitz   6074: .LC_Box > .LC_hcell {
1.911     bisitz   6075:   margin: 0 -10px 10px -10px;
1.835     bisitz   6076: }
                   6077: 
1.721     harmsja  6078: .LC_noBorder {
1.911     bisitz   6079:   border: 0;
1.698     harmsja  6080: }
1.693     droeschl 6081: 
1.721     harmsja  6082: .LC_FormSectionClearButton input {
1.911     bisitz   6083:   background-color:transparent;
                   6084:   border: none;
                   6085:   cursor:pointer;
                   6086:   text-decoration:underline;
1.693     droeschl 6087: }
1.763     bisitz   6088: 
                   6089: .LC_help_open_topic {
1.911     bisitz   6090:   color: #FFFFFF;
                   6091:   background-color: #EEEEFF;
                   6092:   margin: 1px;
                   6093:   padding: 4px;
                   6094:   border: 1px solid #000033;
                   6095:   white-space: nowrap;
                   6096:   /* vertical-align: middle; */
1.759     neumanie 6097: }
1.693     droeschl 6098: 
1.911     bisitz   6099: dl,
                   6100: ul,
                   6101: div,
                   6102: fieldset {
                   6103:   margin: 10px 10px 10px 0;
                   6104:   /* overflow: hidden; */
1.693     droeschl 6105: }
1.795     www      6106: 
1.838     bisitz   6107: fieldset > legend {
1.911     bisitz   6108:   font-weight: bold;
                   6109:   padding: 0 5px 0 5px;
1.838     bisitz   6110: }
                   6111: 
1.813     bisitz   6112: #LC_nav_bar {
1.911     bisitz   6113:   float: left;
1.948.2.6  raeburn  6114:   margin: 0 0 2px 0;
1.807     droeschl 6115: }
                   6116: 
1.916     droeschl 6117: #LC_realm {
                   6118:   margin: 0.2em 0 0 0;
                   6119:   padding: 0;
                   6120:   font-weight: bold;
                   6121:   text-align: center;
                   6122: }
                   6123: 
1.911     bisitz   6124: #LC_nav_bar em {
                   6125:   font-weight: bold;
                   6126:   font-style: normal;
1.807     droeschl 6127: }
                   6128: 
1.948.2.6  raeburn  6129: /* Preliminary fix to hide nav_bar inside bookmarks window */
                   6130: #LC_bookmarks #LC_nav_bar {
                   6131:   display:none;
                   6132: }
                   6133: 
1.897     wenzelju 6134: ol.LC_primary_menu {
1.911     bisitz   6135:   float: right;
1.934     droeschl 6136:   margin: 0;
1.807     droeschl 6137: }
                   6138: 
1.929     wenzelju 6139: span.LC_new_message{
                   6140:   font-weight:bold;
                   6141:   color: darkred;
                   6142: }
                   6143: 
1.852     droeschl 6144: ol#LC_PathBreadcrumbs {
1.911     bisitz   6145:   margin: 0;
1.693     droeschl 6146: }
                   6147: 
1.897     wenzelju 6148: ol.LC_primary_menu li {
1.911     bisitz   6149:   display: inline;
                   6150:   padding: 5px 5px 0 10px;
                   6151:   vertical-align: top;
1.693     droeschl 6152: }
                   6153: 
1.897     wenzelju 6154: ol.LC_primary_menu li img {
1.911     bisitz   6155:   vertical-align: bottom;
1.934     droeschl 6156:   height: 1.1em;
1.693     droeschl 6157: }
                   6158: 
1.897     wenzelju 6159: ol.LC_primary_menu a {
1.911     bisitz   6160:   color: RGB(80, 80, 80);
                   6161:   text-decoration: none;
1.693     droeschl 6162: }
1.795     www      6163: 
1.948.2.7  raeburn  6164: ol.LC_docs_parameters {
                   6165:   margin-left: 0;
                   6166:   padding: 0;
                   6167:   list-style: none;
                   6168: }
                   6169: 
                   6170: ol.LC_docs_parameters li {
                   6171:   margin: 0;
                   6172:   padding-right: 20px;
                   6173:   display: inline;
                   6174: }
                   6175: 
                   6176: ol.LC_docs_parameters li:before {
                   6177:   content: "\\002022 \\0020";
                   6178: }
                   6179: 
                   6180: li.LC_docs_parameters_title {
                   6181:   font-weight: bold;
                   6182: }
                   6183: 
                   6184: ol.LC_docs_parameters li.LC_docs_parameters_title:before {
                   6185:   content: "";
                   6186: }
                   6187: 
1.897     wenzelju 6188: ul#LC_secondary_menu {
1.911     bisitz   6189:   clear: both;
                   6190:   color: $fontmenu;
                   6191:   background: $tabbg;
                   6192:   list-style: none;
                   6193:   padding: 0;
                   6194:   margin: 0;
                   6195:   width: 100%;
1.808     droeschl 6196: }
                   6197: 
1.897     wenzelju 6198: ul#LC_secondary_menu li {
1.911     bisitz   6199:   font-weight: bold;
                   6200:   line-height: 1.8em;
                   6201:   padding: 0 0.8em;
                   6202:   border-right: 1px solid black;
                   6203:   display: inline;
                   6204:   vertical-align: middle;
1.807     droeschl 6205: }
                   6206: 
1.847     tempelho 6207: ul.LC_TabContent {
1.911     bisitz   6208:   display:block;
                   6209:   background: $sidebg;
                   6210:   border-bottom: solid 1px $lg_border_color;
                   6211:   list-style:none;
                   6212:   margin: 0 -10px;
                   6213:   padding: 0;
1.693     droeschl 6214: }
                   6215: 
1.795     www      6216: ul.LC_TabContent li,
                   6217: ul.LC_TabContentBigger li {
1.911     bisitz   6218:   float:left;
1.741     harmsja  6219: }
1.795     www      6220: 
1.897     wenzelju 6221: ul#LC_secondary_menu li a {
1.911     bisitz   6222:   color: $fontmenu;
                   6223:   text-decoration: none;
1.693     droeschl 6224: }
1.795     www      6225: 
1.721     harmsja  6226: ul.LC_TabContent {
1.948.2.1  raeburn  6227:   min-height:20px;
1.721     harmsja  6228: }
1.795     www      6229: 
                   6230: ul.LC_TabContent li {
1.911     bisitz   6231:   vertical-align:middle;
1.948.2.3  raeburn  6232:   padding: 0 16px 0 10px;
1.911     bisitz   6233:   background-color:$tabbg;
                   6234:   border-bottom:solid 1px $lg_border_color;
1.948.2.1  raeburn  6235:   border-right: solid 1px $font;
1.721     harmsja  6236: }
1.795     www      6237: 
1.847     tempelho 6238: ul.LC_TabContent .right {
1.911     bisitz   6239:   float:right;
1.847     tempelho 6240: }
                   6241: 
1.911     bisitz   6242: ul.LC_TabContent li a,
                   6243: ul.LC_TabContent li {
                   6244:   color:rgb(47,47,47);
                   6245:   text-decoration:none;
                   6246:   font-size:95%;
                   6247:   font-weight:bold;
1.948.2.1  raeburn  6248:   min-height:20px;
                   6249: }
                   6250: 
1.948.2.3  raeburn  6251: ul.LC_TabContent li a:hover,
                   6252: ul.LC_TabContent li a:focus {
1.948.2.1  raeburn  6253:   color: $button_hover;
1.948.2.3  raeburn  6254:   background:none;
                   6255:   outline:none;
1.948.2.1  raeburn  6256: }
                   6257: 
                   6258: ul.LC_TabContent li:hover {
                   6259:   color: $button_hover;
                   6260:   cursor:pointer;
1.721     harmsja  6261: }
1.795     www      6262: 
1.911     bisitz   6263: ul.LC_TabContent li.active {
1.948.2.1  raeburn  6264:   color: $font;
1.911     bisitz   6265:   background:#FFFFFF url(/adm/lonIcons/open.gif) no-repeat scroll right center;
1.948.2.1  raeburn  6266:   border-bottom:solid 1px #FFFFFF;
                   6267:   cursor: default;
1.744     ehlerst  6268: }
1.795     www      6269: 
1.948.2.3  raeburn  6270: ul.LC_TabContent li.active a {
                   6271:   color:$font;
                   6272:   background:#FFFFFF;
                   6273:   outline: none;
                   6274: }
1.870     tempelho 6275: #maincoursedoc {
1.911     bisitz   6276:   clear:both;
1.870     tempelho 6277: }
                   6278: 
                   6279: ul.LC_TabContentBigger {
1.911     bisitz   6280:   display:block;
                   6281:   list-style:none;
                   6282:   padding: 0;
1.870     tempelho 6283: }
                   6284: 
1.795     www      6285: ul.LC_TabContentBigger li {
1.911     bisitz   6286:   vertical-align:bottom;
                   6287:   height: 30px;
                   6288:   font-size:110%;
                   6289:   font-weight:bold;
                   6290:   color: #737373;
1.841     tempelho 6291: }
                   6292: 
1.948.2.3  raeburn  6293: ul.LC_TabContentBigger li.active {
                   6294:   position: relative;
                   6295:   top: 1px;
                   6296: }
1.870     tempelho 6297: 
                   6298: ul.LC_TabContentBigger li a {
1.911     bisitz   6299:   background:url('/adm/lonIcons/tabbgleft.gif') left bottom no-repeat;
                   6300:   height: 30px;
                   6301:   line-height: 30px;
                   6302:   text-align: center;
                   6303:   display: block;
                   6304:   text-decoration: none;
1.948.2.3  raeburn  6305:   outline: none;
1.741     harmsja  6306: }
1.795     www      6307: 
1.870     tempelho 6308: ul.LC_TabContentBigger li.active a {
1.911     bisitz   6309:   background:url('/adm/lonIcons/tabbgleft.gif') left top no-repeat;
                   6310:   color:$font;
1.744     ehlerst  6311: }
1.795     www      6312: 
1.870     tempelho 6313: ul.LC_TabContentBigger li b {
1.911     bisitz   6314:   background: url('/adm/lonIcons/tabbgright.gif') no-repeat right bottom;
                   6315:   display: block;
                   6316:   float: left;
                   6317:   padding: 0 30px;
1.948.2.3  raeburn  6318:   border-bottom: 1px solid $lg_border_color;
                   6319: }
                   6320: 
                   6321: ul.LC_TabContentBigger li:hover b {
                   6322:   color:$button_hover;
1.870     tempelho 6323: }
                   6324: 
                   6325: ul.LC_TabContentBigger li.active b {
1.911     bisitz   6326:   background:url('/adm/lonIcons/tabbgright.gif') right top no-repeat;
                   6327:   color:$font;
1.948.2.3  raeburn  6328:   border: 0;
                   6329:   cursor:default;
1.741     harmsja  6330: }
1.693     droeschl 6331: 
1.862     bisitz   6332: ul.LC_CourseBreadcrumbs {
                   6333:   background: $sidebg;
                   6334:   line-height: 32px;
                   6335:   padding-left: 10px;
                   6336:   margin: 0 0 10px 0;
                   6337:   list-style-position: inside;
                   6338: 
                   6339: }
                   6340: 
1.911     bisitz   6341: ol#LC_MenuBreadcrumbs,
1.862     bisitz   6342: ol#LC_PathBreadcrumbs {
1.911     bisitz   6343:   padding-left: 10px;
                   6344:   margin: 0;
1.933     droeschl 6345:   height: 2.5em;  /* equal to #LC_breadcrumbs line-height */
1.693     droeschl 6346: }
                   6347: 
1.911     bisitz   6348: ol#LC_MenuBreadcrumbs li,
                   6349: ol#LC_PathBreadcrumbs li,
1.862     bisitz   6350: ul.LC_CourseBreadcrumbs li {
1.911     bisitz   6351:   display: inline;
1.933     droeschl 6352:   white-space: normal;  
1.693     droeschl 6353: }
                   6354: 
1.823     bisitz   6355: ol#LC_MenuBreadcrumbs li a,
1.862     bisitz   6356: ul.LC_CourseBreadcrumbs li a {
1.911     bisitz   6357:   text-decoration: none;
                   6358:   font-size:90%;
1.693     droeschl 6359: }
1.795     www      6360: 
1.948.2.7  raeburn  6361: ol#LC_MenuBreadcrumbs h1 {
                   6362:   display: inline;
                   6363:   font-size: 90%;
                   6364:   line-height: 2.5em;
                   6365:   margin: 0;
                   6366:   padding: 0;
                   6367: }
                   6368: 
1.795     www      6369: ol#LC_PathBreadcrumbs li a {
1.911     bisitz   6370:   text-decoration:none;
                   6371:   font-size:100%;
                   6372:   font-weight:bold;
1.693     droeschl 6373: }
1.795     www      6374: 
1.840     bisitz   6375: .LC_Box {
1.911     bisitz   6376:   border: solid 1px $lg_border_color;
                   6377:   padding: 0 10px 10px 10px;
1.746     neumanie 6378: }
1.795     www      6379: 
                   6380: .LC_AboutMe_Image {
1.911     bisitz   6381:   float:left;
                   6382:   margin-right:10px;
1.747     neumanie 6383: }
1.795     www      6384: 
                   6385: .LC_Clear_AboutMe_Image {
1.911     bisitz   6386:   clear:left;
1.747     neumanie 6387: }
1.795     www      6388: 
1.721     harmsja  6389: dl.LC_ListStyleClean dt {
1.911     bisitz   6390:   padding-right: 5px;
                   6391:   display: table-header-group;
1.693     droeschl 6392: }
                   6393: 
1.721     harmsja  6394: dl.LC_ListStyleClean dd {
1.911     bisitz   6395:   display: table-row;
1.693     droeschl 6396: }
                   6397: 
1.721     harmsja  6398: .LC_ListStyleClean,
                   6399: .LC_ListStyleSimple,
                   6400: .LC_ListStyleNormal,
1.795     www      6401: .LC_ListStyleSpecial {
1.911     bisitz   6402:   /* display:block; */
                   6403:   list-style-position: inside;
                   6404:   list-style-type: none;
                   6405:   overflow: hidden;
                   6406:   padding: 0;
1.693     droeschl 6407: }
                   6408: 
1.721     harmsja  6409: .LC_ListStyleSimple li,
                   6410: .LC_ListStyleSimple dd,
                   6411: .LC_ListStyleNormal li,
                   6412: .LC_ListStyleNormal dd,
                   6413: .LC_ListStyleSpecial li,
1.795     www      6414: .LC_ListStyleSpecial dd {
1.911     bisitz   6415:   margin: 0;
                   6416:   padding: 5px 5px 5px 10px;
                   6417:   clear: both;
1.693     droeschl 6418: }
                   6419: 
1.721     harmsja  6420: .LC_ListStyleClean li,
                   6421: .LC_ListStyleClean dd {
1.911     bisitz   6422:   padding-top: 0;
                   6423:   padding-bottom: 0;
1.693     droeschl 6424: }
                   6425: 
1.721     harmsja  6426: .LC_ListStyleSimple dd,
1.795     www      6427: .LC_ListStyleSimple li {
1.911     bisitz   6428:   border-bottom: solid 1px $lg_border_color;
1.693     droeschl 6429: }
                   6430: 
1.721     harmsja  6431: .LC_ListStyleSpecial li,
                   6432: .LC_ListStyleSpecial dd {
1.911     bisitz   6433:   list-style-type: none;
                   6434:   background-color: RGB(220, 220, 220);
                   6435:   margin-bottom: 4px;
1.693     droeschl 6436: }
                   6437: 
1.721     harmsja  6438: table.LC_SimpleTable {
1.911     bisitz   6439:   margin:5px;
                   6440:   border:solid 1px $lg_border_color;
1.795     www      6441: }
1.693     droeschl 6442: 
1.721     harmsja  6443: table.LC_SimpleTable tr {
1.911     bisitz   6444:   padding: 0;
                   6445:   border:solid 1px $lg_border_color;
1.693     droeschl 6446: }
1.795     www      6447: 
                   6448: table.LC_SimpleTable thead {
1.911     bisitz   6449:   background:rgb(220,220,220);
1.693     droeschl 6450: }
                   6451: 
1.721     harmsja  6452: div.LC_columnSection {
1.911     bisitz   6453:   display: block;
                   6454:   clear: both;
                   6455:   overflow: hidden;
                   6456:   margin: 0;
1.693     droeschl 6457: }
                   6458: 
1.721     harmsja  6459: div.LC_columnSection>* {
1.911     bisitz   6460:   float: left;
                   6461:   margin: 10px 20px 10px 0;
                   6462:   overflow:hidden;
1.693     droeschl 6463: }
1.721     harmsja  6464: 
1.795     www      6465: table em {
1.911     bisitz   6466:   font-weight: bold;
                   6467:   font-style: normal;
1.748     schulted 6468: }
1.795     www      6469: 
1.779     bisitz   6470: table.LC_tableBrowseRes,
1.795     www      6471: table.LC_tableOfContent {
1.911     bisitz   6472:   border:none;
                   6473:   border-spacing: 1px;
                   6474:   padding: 3px;
                   6475:   background-color: #FFFFFF;
                   6476:   font-size: 90%;
1.753     droeschl 6477: }
1.789     droeschl 6478: 
1.911     bisitz   6479: table.LC_tableOfContent {
                   6480:   border-collapse: collapse;
1.789     droeschl 6481: }
                   6482: 
1.771     droeschl 6483: table.LC_tableBrowseRes a,
1.768     schulted 6484: table.LC_tableOfContent a {
1.911     bisitz   6485:   background-color: transparent;
                   6486:   text-decoration: none;
1.753     droeschl 6487: }
                   6488: 
1.795     www      6489: table.LC_tableOfContent img {
1.911     bisitz   6490:   border: none;
                   6491:   height: 1.3em;
                   6492:   vertical-align: text-bottom;
                   6493:   margin-right: 0.3em;
1.753     droeschl 6494: }
1.757     schulted 6495: 
1.795     www      6496: a#LC_content_toolbar_firsthomework {
1.911     bisitz   6497:   background-image:url(/res/adm/pages/open-first-problem.gif);
1.774     ehlerst  6498: }
                   6499: 
1.795     www      6500: a#LC_content_toolbar_launchnav {
1.911     bisitz   6501:   background-image:url(/res/adm/pages/start-navigation.gif);
1.774     ehlerst  6502: }
                   6503: 
1.795     www      6504: a#LC_content_toolbar_closenav {
1.911     bisitz   6505:   background-image:url(/res/adm/pages/close-navigation.gif);
1.774     ehlerst  6506: }
                   6507: 
1.795     www      6508: a#LC_content_toolbar_everything {
1.911     bisitz   6509:   background-image:url(/res/adm/pages/show-all.gif);
1.774     ehlerst  6510: }
                   6511: 
1.795     www      6512: a#LC_content_toolbar_uncompleted {
1.911     bisitz   6513:   background-image:url(/res/adm/pages/show-incomplete-problems.gif);
1.774     ehlerst  6514: }
                   6515: 
1.795     www      6516: #LC_content_toolbar_clearbubbles {
1.911     bisitz   6517:   background-image:url(/res/adm/pages/mark-discussionentries-read.gif);
1.774     ehlerst  6518: }
                   6519: 
1.795     www      6520: a#LC_content_toolbar_changefolder {
1.911     bisitz   6521:   background : url(/res/adm/pages/close-all-folders.gif) top center ;
1.757     schulted 6522: }
                   6523: 
1.795     www      6524: a#LC_content_toolbar_changefolder_toggled {
1.911     bisitz   6525:   background-image:url(/res/adm/pages/open-all-folders.gif);
1.757     schulted 6526: }
                   6527: 
1.795     www      6528: ul#LC_toolbar li a:hover {
1.911     bisitz   6529:   background-position: bottom center;
1.757     schulted 6530: }
                   6531: 
1.795     www      6532: ul#LC_toolbar {
1.911     bisitz   6533:   padding: 0;
                   6534:   margin: 2px;
                   6535:   list-style:none;
                   6536:   position:relative;
                   6537:   background-color:white;
1.757     schulted 6538: }
                   6539: 
1.795     www      6540: ul#LC_toolbar li {
1.911     bisitz   6541:   border:1px solid white;
                   6542:   padding: 0;
                   6543:   margin: 0;
                   6544:   float: left;
                   6545:   display:inline;
                   6546:   vertical-align:middle;
                   6547: }
1.757     schulted 6548: 
1.783     amueller 6549: 
1.795     www      6550: a.LC_toolbarItem {
1.911     bisitz   6551:   display:block;
                   6552:   padding: 0;
                   6553:   margin: 0;
                   6554:   height: 32px;
                   6555:   width: 32px;
                   6556:   color:white;
                   6557:   border: none;
                   6558:   background-repeat:no-repeat;
                   6559:   background-color:transparent;
1.757     schulted 6560: }
                   6561: 
1.915     droeschl 6562: ul.LC_funclist {
                   6563:     margin: 0;
                   6564:     padding: 0.5em 1em 0.5em 0;
                   6565: }
                   6566: 
1.933     droeschl 6567: ul.LC_funclist > li:first-child {
                   6568:     font-weight:bold; 
                   6569:     margin-left:0.8em;
                   6570: }
                   6571: 
1.915     droeschl 6572: ul.LC_funclist + ul.LC_funclist {
                   6573:     /* 
                   6574:        left border as a seperator if we have more than
                   6575:        one list 
                   6576:     */
                   6577:     border-left: 1px solid $sidebg;
                   6578:     /* 
                   6579:        this hides the left border behind the border of the 
                   6580:        outer box if element is wrapped to the next 'line' 
                   6581:     */
                   6582:     margin-left: -1px;
                   6583: }
                   6584: 
1.843     bisitz   6585: ul.LC_funclist li {
1.915     droeschl 6586:   display: inline;
1.782     bisitz   6587:   white-space: nowrap;
1.915     droeschl 6588:   margin: 0 0 0 25px;
                   6589:   line-height: 150%;
1.782     bisitz   6590: }
                   6591: 
1.930     faziophi 6592: .ui-accordion .LC_advanced_toggle {
                   6593:   float: right;
                   6594:   font-size: 90%;
                   6595:   padding: 0px 4px
                   6596: }
1.757     schulted 6597: 
1.343     albertel 6598: END
                   6599: }
                   6600: 
1.306     albertel 6601: =pod
                   6602: 
                   6603: =item * &headtag()
                   6604: 
                   6605: Returns a uniform footer for LON-CAPA web pages.
                   6606: 
1.307     albertel 6607: Inputs: $title - optional title for the head
                   6608:         $head_extra - optional extra HTML to put inside the <head>
1.315     albertel 6609:         $args - optional arguments
1.319     albertel 6610:             force_register - if is true call registerurl so the remote is 
                   6611:                              informed
1.415     albertel 6612:             redirect       -> array ref of
                   6613:                                    1- seconds before redirect occurs
                   6614:                                    2- url to redirect to
                   6615:                                    3- whether the side effect should occur
1.315     albertel 6616:                            (side effect of setting 
                   6617:                                $env{'internal.head.redirect'} to the url 
                   6618:                                redirected too)
1.352     albertel 6619:             domain         -> force to color decorate a page for a specific
                   6620:                                domain
                   6621:             function       -> force usage of a specific rolish color scheme
                   6622:             bgcolor        -> override the default page bgcolor
1.460     albertel 6623:             no_auto_mt_title
                   6624:                            -> prevent &mt()ing the title arg
1.464     albertel 6625: 
1.306     albertel 6626: =cut
                   6627: 
                   6628: sub headtag {
1.313     albertel 6629:     my ($title,$head_extra,$args) = @_;
1.306     albertel 6630:     
1.363     albertel 6631:     my $function = $args->{'function'} || &get_users_function();
                   6632:     my $domain   = $args->{'domain'}   || &determinedomain();
                   6633:     my $bgcolor  = $args->{'bgcolor'}  || &designparm($function.'.pgbg',$domain);
1.418     albertel 6634:     my $url = join(':',$env{'user.name'},$env{'user.domain'},
1.458     albertel 6635: 		   $Apache::lonnet::perlvar{'lonVersion'},
1.531     albertel 6636: 		   #time(),
1.418     albertel 6637: 		   $env{'environment.color.timestamp'},
1.363     albertel 6638: 		   $function,$domain,$bgcolor);
                   6639: 
1.369     www      6640:     $url = '/adm/css/'.&escape($url).'.css';
1.363     albertel 6641: 
1.308     albertel 6642:     my $result =
                   6643: 	'<head>'.
1.461     albertel 6644: 	&font_settings();
1.319     albertel 6645: 
1.461     albertel 6646:     if (!$args->{'frameset'}) {
                   6647: 	$result .= &Apache::lonhtmlcommon::htmlareaheaders();
                   6648:     }
1.319     albertel 6649:     if ($args->{'force_register'}) {
                   6650: 	$result .= &Apache::lonmenu::registerurl(1);
                   6651:     }
1.436     albertel 6652:     if (!$args->{'no_nav_bar'} 
                   6653: 	&& !$args->{'only_body'}
                   6654: 	&& !$args->{'frameset'}) {
                   6655: 	$result .= &help_menu_js();
                   6656:     }
1.319     albertel 6657: 
1.314     albertel 6658:     if (ref($args->{'redirect'})) {
1.414     albertel 6659: 	my ($time,$url,$inhibit_continue) = @{$args->{'redirect'}};
1.315     albertel 6660: 	$url = &Apache::lonenc::check_encrypt($url);
1.414     albertel 6661: 	if (!$inhibit_continue) {
                   6662: 	    $env{'internal.head.redirect'} = $url;
                   6663: 	}
1.313     albertel 6664: 	$result.=<<ADDMETA
                   6665: <meta http-equiv="pragma" content="no-cache" />
1.344     albertel 6666: <meta http-equiv="Refresh" content="$time; url=$url" />
1.313     albertel 6667: ADDMETA
                   6668:     }
1.306     albertel 6669:     if (!defined($title)) {
                   6670: 	$title = 'The LearningOnline Network with CAPA';
                   6671:     }
1.460     albertel 6672:     if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }
                   6673:     $result .= '<title> LON-CAPA '.$title.'</title>'
1.414     albertel 6674: 	.'<link rel="stylesheet" type="text/css" href="'.$url.'" />'
                   6675: 	.$head_extra;
1.306     albertel 6676:     return $result;
                   6677: }
                   6678: 
                   6679: =pod
                   6680: 
1.340     albertel 6681: =item * &font_settings()
                   6682: 
                   6683: Returns neccessary <meta> to set the proper encoding
                   6684: 
                   6685: Inputs: none
                   6686: 
                   6687: =cut
                   6688: 
                   6689: sub font_settings {
                   6690:     my $headerstring='';
1.647     www      6691:     if (!$env{'browser.mathml'} && $env{'browser.unicode'}) {
1.340     albertel 6692: 	$headerstring.=
                   6693: 	    '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
                   6694:     }
                   6695:     return $headerstring;
                   6696: }
                   6697: 
1.341     albertel 6698: =pod
                   6699: 
                   6700: =item * &xml_begin()
                   6701: 
                   6702: Returns the needed doctype and <html>
                   6703: 
                   6704: Inputs: none
                   6705: 
                   6706: =cut
                   6707: 
                   6708: sub xml_begin {
                   6709:     my $output='';
                   6710: 
                   6711:     if ($env{'browser.mathml'}) {
                   6712: 	$output='<?xml version="1.0"?>'
                   6713:             #.'<?xml-stylesheet type="text/css" href="/adm/MathML/mathml.css"?>'."\n"
                   6714: #            .'<!DOCTYPE html SYSTEM "/adm/MathML/mathml.dtd" '
                   6715:             
                   6716: #	    .'<!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">] >'
                   6717: 	    .'<!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">'
                   6718:             .'<html xmlns:math="http://www.w3.org/1998/Math/MathML" ' 
                   6719: 	    .'xmlns="http://www.w3.org/1999/xhtml">';
                   6720:     } else {
1.849     bisitz   6721: 	$output='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'
                   6722:            .'<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">';
1.341     albertel 6723:     }
                   6724:     return $output;
                   6725: }
1.340     albertel 6726: 
                   6727: =pod
                   6728: 
1.306     albertel 6729: =item * &endheadtag()
                   6730: 
                   6731: Returns a uniform </head> for LON-CAPA web pages.
                   6732: 
                   6733: Inputs: none
                   6734: 
                   6735: =cut
                   6736: 
                   6737: sub endheadtag {
                   6738:     return '</head>';
                   6739: }
                   6740: 
                   6741: =pod
                   6742: 
                   6743: =item * &head()
                   6744: 
                   6745: Returns a uniform complete <head>..</head> section for LON-CAPA web pages.
                   6746: 
1.648     raeburn  6747: Inputs:
                   6748: 
                   6749: =over 4
                   6750: 
                   6751: $title - optional title for the page
                   6752: 
                   6753: $head_extra - optional extra HTML to put inside the <head>
                   6754: 
                   6755: =back
1.405     albertel 6756: 
1.306     albertel 6757: =cut
                   6758: 
                   6759: sub head {
1.325     albertel 6760:     my ($title,$head_extra,$args) = @_;
                   6761:     return &headtag($title,$head_extra,$args).&endheadtag();
1.306     albertel 6762: }
                   6763: 
                   6764: =pod
                   6765: 
                   6766: =item * &start_page()
                   6767: 
                   6768: Returns a complete <html> .. <body> section for LON-CAPA web pages.
                   6769: 
1.648     raeburn  6770: Inputs:
                   6771: 
                   6772: =over 4
                   6773: 
                   6774: $title - optional title for the page
                   6775: 
                   6776: $head_extra - optional extra HTML to incude inside the <head>
                   6777: 
                   6778: $args - additional optional args supported are:
                   6779: 
                   6780: =over 8
                   6781: 
                   6782:              only_body      -> is true will set &bodytag() onlybodytag
1.317     albertel 6783:                                     arg on
1.814     bisitz   6784:              no_nav_bar     -> is true will set &bodytag() no_nav_bar arg on
1.648     raeburn  6785:              add_entries    -> additional attributes to add to the  <body>
                   6786:              domain         -> force to color decorate a page for a 
1.317     albertel 6787:                                     specific domain
1.648     raeburn  6788:              function       -> force usage of a specific rolish color
1.317     albertel 6789:                                     scheme
1.648     raeburn  6790:              redirect       -> see &headtag()
                   6791:              bgcolor        -> override the default page bg color
                   6792:              js_ready       -> return a string ready for being used in 
1.317     albertel 6793:                                     a javascript writeln
1.648     raeburn  6794:              html_encode    -> return a string ready for being used in 
1.320     albertel 6795:                                     a html attribute
1.648     raeburn  6796:              force_register -> if is true will turn on the &bodytag()
1.317     albertel 6797:                                     $forcereg arg
1.648     raeburn  6798:              frameset       -> if true will start with a <frameset>
1.330     albertel 6799:                                     rather than <body>
1.648     raeburn  6800:              skip_phases    -> hash ref of 
1.338     albertel 6801:                                     head -> skip the <html><head> generation
                   6802:                                     body -> skip all <body> generation
1.648     raeburn  6803:              no_inline_link -> if true and in remote mode, don't show the 
1.361     albertel 6804:                                     'Switch To Inline Menu' link
1.648     raeburn  6805:              no_auto_mt_title -> prevent &mt()ing the title arg
                   6806:              inherit_jsmath -> when creating popup window in a page,
                   6807:                                     should it have jsmath forced on by the
                   6808:                                     current page
1.867     kalberla 6809:              bread_crumbs ->             Array containing breadcrumbs
                   6810:              bread_crumbs_components ->  if exists show it as headline else show only the breadcrumbs
1.361     albertel 6811: 
1.648     raeburn  6812: =back
1.460     albertel 6813: 
1.648     raeburn  6814: =back
1.562     albertel 6815: 
1.306     albertel 6816: =cut
                   6817: 
                   6818: sub start_page {
1.309     albertel 6819:     my ($title,$head_extra,$args) = @_;
1.318     albertel 6820:     #&Apache::lonnet::logthis("start_page ".join(':',caller(0)));
1.313     albertel 6821:     my %head_args;
1.352     albertel 6822:     foreach my $arg ('redirect','force_register','domain','function',
1.460     albertel 6823: 		     'bgcolor','frameset','no_nav_bar','only_body',
                   6824: 		     'no_auto_mt_title') {
1.319     albertel 6825: 	if (defined($args->{$arg})) {
1.324     raeburn  6826: 	    $head_args{$arg} = $args->{$arg};
1.319     albertel 6827: 	}
1.313     albertel 6828:     }
1.319     albertel 6829: 
1.315     albertel 6830:     $env{'internal.start_page'}++;
1.338     albertel 6831:     my $result;
                   6832:     if (! exists($args->{'skip_phases'}{'head'}) ) {
                   6833: 	$result.=
1.341     albertel 6834: 	    &xml_begin().
1.338     albertel 6835: 	    &headtag($title,$head_extra,\%head_args).&endheadtag();
                   6836:     }
                   6837:     
                   6838:     if (! exists($args->{'skip_phases'}{'body'}) ) {
                   6839: 	if ($args->{'frameset'}) {
                   6840: 	    my $attr_string = &make_attr_string($args->{'force_register'},
                   6841: 						$args->{'add_entries'});
                   6842: 	    $result .= "\n<frameset $attr_string>\n";
1.831     bisitz   6843:         } else {
                   6844:             $result .=
                   6845:                 &bodytag($title, 
                   6846:                          $args->{'function'},       $args->{'add_entries'},
                   6847:                          $args->{'only_body'},      $args->{'domain'},
                   6848:                          $args->{'force_register'}, $args->{'no_nav_bar'},
                   6849:                          $args->{'bgcolor'},        $args->{'no_inline_link'},
                   6850:                          $args);
                   6851:         }
1.330     albertel 6852:     }
1.338     albertel 6853: 
1.315     albertel 6854:     if ($args->{'js_ready'}) {
1.713     kaisler  6855: 		$result = &js_ready($result);
1.315     albertel 6856:     }
1.320     albertel 6857:     if ($args->{'html_encode'}) {
1.713     kaisler  6858: 		$result = &html_encode($result);
                   6859:     }
                   6860: 
1.813     bisitz   6861:     # Preparation for new and consistent functionlist at top of screen
                   6862:     # if ($args->{'functionlist'}) {
                   6863:     #            $result .= &build_functionlist();
                   6864:     #}
                   6865: 
                   6866:     # Don't add anything more if only_body wanted
                   6867:     return $result if $args->{'only_body'};
                   6868: 
1.920     raeburn  6869:     #Breadcrumbs for Construction Space provided by &bodytag. 
                   6870:     if (($env{'environment.remote'} eq 'off') && ($env{'request.state'} eq 'construct')) {
                   6871:         return $result;
                   6872:     }
                   6873:  
1.813     bisitz   6874:     #Breadcrumbs
1.758     kaisler  6875:     if (exists($args->{'bread_crumbs'}) or exists($args->{'bread_crumbs_component'})) {
                   6876: 		&Apache::lonhtmlcommon::clear_breadcrumbs();
                   6877: 		#if any br links exists, add them to the breadcrumbs
                   6878: 		if (exists($args->{'bread_crumbs'}) and ref($args->{'bread_crumbs'}) eq 'ARRAY') {         
                   6879: 			foreach my $crumb (@{$args->{'bread_crumbs'}}){
                   6880: 				&Apache::lonhtmlcommon::add_breadcrumb($crumb);
                   6881: 			}
                   6882: 		}
                   6883: 
                   6884: 		#if bread_crumbs_component exists show it as headline else show only the breadcrumbs
                   6885: 		if(exists($args->{'bread_crumbs_component'})){
                   6886: 			$result .= &Apache::lonhtmlcommon::breadcrumbs($args->{'bread_crumbs_component'});
                   6887: 		}else{
                   6888: 			$result .= &Apache::lonhtmlcommon::breadcrumbs();
                   6889: 		}
1.320     albertel 6890:     }
1.315     albertel 6891:     return $result;
1.306     albertel 6892: }
                   6893: 
1.330     albertel 6894: 
1.306     albertel 6895: =pod
                   6896: 
                   6897: =item * &head()
                   6898: 
                   6899: Returns a complete </body></html> section for LON-CAPA web pages.
                   6900: 
1.315     albertel 6901: Inputs:         $args - additional optional args supported are:
                   6902:                  js_ready     -> return a string ready for being used in 
                   6903:                                  a javascript writeln
1.320     albertel 6904:                  html_encode  -> return a string ready for being used in 
                   6905:                                  a html attribute
1.330     albertel 6906:                  frameset     -> if true will start with a <frameset>
                   6907:                                  rather than <body>
1.493     albertel 6908:                  dicsussion   -> if true will get discussion from
                   6909:                                   lonxml::xmlend
                   6910:                                  (you can pass the target and parser arguments
                   6911:                                   through optional 'target' and 'parser' args
                   6912:                                   to this routine)
1.306     albertel 6913: 
                   6914: =cut
                   6915: 
                   6916: sub end_page {
1.315     albertel 6917:     my ($args) = @_;
                   6918:     $env{'internal.end_page'}++;
1.330     albertel 6919:     my $result;
1.335     albertel 6920:     if ($args->{'discussion'}) {
                   6921: 	my ($target,$parser);
                   6922: 	if (ref($args->{'discussion'})) {
                   6923: 	    ($target,$parser) =($args->{'discussion'}{'target'},
                   6924: 				$args->{'discussion'}{'parser'});
                   6925: 	}
                   6926: 	$result .= &Apache::lonxml::xmlend($target,$parser);
                   6927:     }
                   6928: 
1.330     albertel 6929:     if ($args->{'frameset'}) {
                   6930: 	$result .= '</frameset>';
                   6931:     } else {
1.635     raeburn  6932: 	$result .= &endbodytag($args);
1.330     albertel 6933:     }
                   6934:     $result .= "\n</html>";
                   6935: 
1.315     albertel 6936:     if ($args->{'js_ready'}) {
1.317     albertel 6937: 	$result = &js_ready($result);
1.315     albertel 6938:     }
1.335     albertel 6939: 
1.320     albertel 6940:     if ($args->{'html_encode'}) {
                   6941: 	$result = &html_encode($result);
                   6942:     }
1.335     albertel 6943: 
1.315     albertel 6944:     return $result;
                   6945: }
                   6946: 
1.320     albertel 6947: sub html_encode {
                   6948:     my ($result) = @_;
                   6949: 
1.322     albertel 6950:     $result = &HTML::Entities::encode($result,'<>&"');
1.320     albertel 6951:     
                   6952:     return $result;
                   6953: }
1.317     albertel 6954: sub js_ready {
                   6955:     my ($result) = @_;
                   6956: 
1.323     albertel 6957:     $result =~ s/[\n\r]/ /xmsg;
                   6958:     $result =~ s/\\/\\\\/xmsg;
                   6959:     $result =~ s/'/\\'/xmsg;
1.372     albertel 6960:     $result =~ s{</}{<\\/}xmsg;
1.317     albertel 6961:     
                   6962:     return $result;
                   6963: }
                   6964: 
1.315     albertel 6965: sub validate_page {
                   6966:     if (  exists($env{'internal.start_page'})
1.316     albertel 6967: 	  &&     $env{'internal.start_page'} > 1) {
                   6968: 	&Apache::lonnet::logthis('start_page called multiple times '.
1.318     albertel 6969: 				 $env{'internal.start_page'}.' '.
1.316     albertel 6970: 				 $ENV{'request.filename'});
1.315     albertel 6971:     }
                   6972:     if (  exists($env{'internal.end_page'})
1.316     albertel 6973: 	  &&     $env{'internal.end_page'} > 1) {
                   6974: 	&Apache::lonnet::logthis('end_page called multiple times '.
1.318     albertel 6975: 				 $env{'internal.end_page'}.' '.
1.316     albertel 6976: 				 $env{'request.filename'});
1.315     albertel 6977:     }
                   6978:     if (     exists($env{'internal.start_page'})
                   6979: 	&& ! exists($env{'internal.end_page'})) {
1.316     albertel 6980: 	&Apache::lonnet::logthis('start_page called without end_page '.
                   6981: 				 $env{'request.filename'});
1.315     albertel 6982:     }
                   6983:     if (   ! exists($env{'internal.start_page'})
                   6984: 	&&   exists($env{'internal.end_page'})) {
1.316     albertel 6985: 	&Apache::lonnet::logthis('end_page called without start_page'.
                   6986: 				 $env{'request.filename'});
1.315     albertel 6987:     }
1.306     albertel 6988: }
1.315     albertel 6989: 
1.318     albertel 6990: sub simple_error_page {
                   6991:     my ($r,$title,$msg) = @_;
                   6992:     my $page =
                   6993: 	&Apache::loncommon::start_page($title).
                   6994: 	&mt($msg).
                   6995: 	&Apache::loncommon::end_page();
                   6996:     if (ref($r)) {
                   6997: 	$r->print($page);
1.327     albertel 6998: 	return;
1.318     albertel 6999:     }
                   7000:     return $page;
                   7001: }
1.347     albertel 7002: 
                   7003: {
1.610     albertel 7004:     my @row_count;
1.948.2.5  raeburn  7005: 
                   7006:     sub start_data_table_count {
                   7007:         unshift(@row_count, 0);
                   7008:         return;
                   7009:     }
                   7010: 
                   7011:     sub end_data_table_count {
                   7012:         shift(@row_count);
                   7013:         return;
                   7014:     }
                   7015: 
1.347     albertel 7016:     sub start_data_table {
1.422     albertel 7017: 	my ($add_class) = @_;
                   7018: 	my $css_class = (join(' ','LC_data_table',$add_class));
1.948.2.5  raeburn  7019:         &start_data_table_count();
1.422     albertel 7020: 	return '<table class="'.$css_class.'">'."\n";
1.347     albertel 7021:     }
                   7022: 
                   7023:     sub end_data_table {
1.948.2.5  raeburn  7024:         &end_data_table_count();
1.389     albertel 7025: 	return '</table>'."\n";;
1.347     albertel 7026:     }
                   7027: 
                   7028:     sub start_data_table_row {
1.422     albertel 7029: 	my ($add_class) = @_;
1.610     albertel 7030: 	$row_count[0]++;
                   7031: 	my $css_class = ($row_count[0] % 2)?'LC_odd_row':'LC_even_row';
1.900     bisitz   7032: 	$css_class = (join(' ',$css_class,$add_class)) unless ($add_class eq '');
1.422     albertel 7033: 	return  '<tr class="'.$css_class.'">'."\n";;
1.347     albertel 7034:     }
1.471     banghart 7035:     
                   7036:     sub continue_data_table_row {
                   7037: 	my ($add_class) = @_;
1.610     albertel 7038: 	my $css_class = ($row_count[0] % 2)?'LC_odd_row':'LC_even_row';
1.900     bisitz   7039: 	$css_class = (join(' ',$css_class,$add_class)) unless ($add_class eq '');;
1.471     banghart 7040: 	return  '<tr class="'.$css_class.'">'."\n";;
                   7041:     }
1.347     albertel 7042: 
                   7043:     sub end_data_table_row {
1.389     albertel 7044: 	return '</tr>'."\n";;
1.347     albertel 7045:     }
1.367     www      7046: 
1.421     albertel 7047:     sub start_data_table_empty_row {
1.707     bisitz   7048: #	$row_count[0]++;
1.421     albertel 7049: 	return  '<tr class="LC_empty_row" >'."\n";;
                   7050:     }
                   7051: 
                   7052:     sub end_data_table_empty_row {
                   7053: 	return '</tr>'."\n";;
                   7054:     }
                   7055: 
1.367     www      7056:     sub start_data_table_header_row {
1.389     albertel 7057: 	return  '<tr class="LC_header_row">'."\n";;
1.367     www      7058:     }
                   7059: 
                   7060:     sub end_data_table_header_row {
1.389     albertel 7061: 	return '</tr>'."\n";;
1.367     www      7062:     }
1.890     droeschl 7063: 
                   7064:     sub data_table_caption {
                   7065:         my $caption = shift;
                   7066:         return "<caption class=\"LC_caption\">$caption</caption>";
                   7067:     }
1.347     albertel 7068: }
                   7069: 
1.548     albertel 7070: =pod
                   7071: 
                   7072: =item * &inhibit_menu_check($arg)
                   7073: 
                   7074: Checks for a inhibitmenu state and generates output to preserve it
                   7075: 
                   7076: Inputs:         $arg - can be any of
                   7077:                      - undef - in which case the return value is a string 
                   7078:                                to add  into arguments list of a uri
                   7079:                      - 'input' - in which case the return value is a HTML
                   7080:                                  <form> <input> field of type hidden to
                   7081:                                  preserve the value
                   7082:                      - a url - in which case the return value is the url with
                   7083:                                the neccesary cgi args added to preserve the
                   7084:                                inhibitmenu state
                   7085:                      - a ref to a url - no return value, but the string is
                   7086:                                         updated to include the neccessary cgi
                   7087:                                         args to preserve the inhibitmenu state
                   7088: 
                   7089: =cut
                   7090: 
                   7091: sub inhibit_menu_check {
                   7092:     my ($arg) = @_;
                   7093:     &get_unprocessed_cgi($ENV{'QUERY_STRING'}, ['inhibitmenu']);
                   7094:     if ($arg eq 'input') {
                   7095: 	if ($env{'form.inhibitmenu'}) {
                   7096: 	    return '<input type="hidden" name="inhibitmenu" value="'.$env{'form.inhibitmenu'}.'" />';
                   7097: 	} else {
                   7098: 	    return
                   7099: 	}
                   7100:     }
                   7101:     if ($env{'form.inhibitmenu'}) {
                   7102: 	if (ref($arg)) {
                   7103: 	    $$arg .= '?inhibitmenu='.$env{'form.inhibitmenu'};
                   7104: 	} elsif ($arg eq '') {
                   7105: 	    $arg .= 'inhibitmenu='.$env{'form.inhibitmenu'};
                   7106: 	} else {
                   7107: 	    $arg .= '?inhibitmenu='.$env{'form.inhibitmenu'};
                   7108: 	}
                   7109:     }
                   7110:     if (!ref($arg)) {
                   7111: 	return $arg;
                   7112:     }
                   7113: }
                   7114: 
1.251     albertel 7115: ###############################################
1.182     matthew  7116: 
                   7117: =pod
                   7118: 
1.549     albertel 7119: =back
                   7120: 
                   7121: =head1 User Information Routines
                   7122: 
                   7123: =over 4
                   7124: 
1.405     albertel 7125: =item * &get_users_function()
1.182     matthew  7126: 
                   7127: Used by &bodytag to determine the current users primary role.
                   7128: Returns either 'student','coordinator','admin', or 'author'.
                   7129: 
                   7130: =cut
                   7131: 
                   7132: ###############################################
                   7133: sub get_users_function {
1.815     tempelho 7134:     my $function = 'norole';
1.818     tempelho 7135:     if ($env{'request.role'}=~/^(st)/) {
                   7136:         $function='student';
                   7137:     }
1.907     raeburn  7138:     if ($env{'request.role'}=~/^(cc|co|in|ta|ep)/) {
1.182     matthew  7139:         $function='coordinator';
                   7140:     }
1.258     albertel 7141:     if ($env{'request.role'}=~/^(su|dc|ad|li)/) {
1.182     matthew  7142:         $function='admin';
                   7143:     }
1.826     bisitz   7144:     if (($env{'request.role'}=~/^(au|ca|aa)/) ||
1.182     matthew  7145:         ($ENV{'REQUEST_URI'}=~/^(\/priv|\~)/)) {
                   7146:         $function='author';
                   7147:     }
                   7148:     return $function;
1.54      www      7149: }
1.99      www      7150: 
                   7151: ###############################################
                   7152: 
1.233     raeburn  7153: =pod
                   7154: 
1.821     raeburn  7155: =item * &show_course()
                   7156: 
                   7157: Used by lonmenu.pm and lonroles.pm to determine whether to use the word
                   7158: 'Courses' or 'Roles' in inline navigation and on screen displaying user's roles.
                   7159: 
                   7160: Inputs:
                   7161: None
                   7162: 
                   7163: Outputs:
                   7164: Scalar: 1 if 'Course' to be used, 0 otherwise.
                   7165: 
                   7166: =cut
                   7167: 
                   7168: ###############################################
                   7169: sub show_course {
                   7170:     my $course = !$env{'user.adv'};
                   7171:     if (!$env{'user.adv'}) {
                   7172:         foreach my $env (keys(%env)) {
                   7173:             next if ($env !~ m/^user\.priv\./);
                   7174:             if ($env !~ m/^user\.priv\.(?:st|cm)/) {
                   7175:                 $course = 0;
                   7176:                 last;
                   7177:             }
                   7178:         }
                   7179:     }
                   7180:     return $course;
                   7181: }
                   7182: 
                   7183: ###############################################
                   7184: 
                   7185: =pod
                   7186: 
1.542     raeburn  7187: =item * &check_user_status()
1.274     raeburn  7188: 
                   7189: Determines current status of supplied role for a
                   7190: specific user. Roles can be active, previous or future.
                   7191: 
                   7192: Inputs: 
                   7193: user's domain, user's username, course's domain,
1.375     raeburn  7194: course's number, optional section ID.
1.274     raeburn  7195: 
                   7196: Outputs:
                   7197: role status: active, previous or future. 
                   7198: 
                   7199: =cut
                   7200: 
                   7201: sub check_user_status {
1.412     raeburn  7202:     my ($udom,$uname,$cdom,$crs,$role,$sec) = @_;
1.274     raeburn  7203:     my %userinfo = &Apache::lonnet::dump('roles',$udom,$uname);
                   7204:     my @uroles = keys %userinfo;
                   7205:     my $srchstr;
                   7206:     my $active_chk = 'none';
1.412     raeburn  7207:     my $now = time;
1.274     raeburn  7208:     if (@uroles > 0) {
1.908     raeburn  7209:         if (($role eq 'cc') || ($role eq 'co') || ($sec eq '') || (!defined($sec))) {
1.274     raeburn  7210:             $srchstr = '/'.$cdom.'/'.$crs.'_'.$role;
                   7211:         } else {
1.412     raeburn  7212:             $srchstr = '/'.$cdom.'/'.$crs.'/'.$sec.'_'.$role;
                   7213:         }
                   7214:         if (grep/^\Q$srchstr\E$/,@uroles) {
1.274     raeburn  7215:             my $role_end = 0;
                   7216:             my $role_start = 0;
                   7217:             $active_chk = 'active';
1.412     raeburn  7218:             if ($userinfo{$srchstr} =~ m/^\Q$role\E_(\d+)/) {
                   7219:                 $role_end = $1;
                   7220:                 if ($userinfo{$srchstr} =~ m/^\Q$role\E_\Q$role_end\E_(\d+)$/) {
                   7221:                     $role_start = $1;
1.274     raeburn  7222:                 }
                   7223:             }
                   7224:             if ($role_start > 0) {
1.412     raeburn  7225:                 if ($now < $role_start) {
1.274     raeburn  7226:                     $active_chk = 'future';
                   7227:                 }
                   7228:             }
                   7229:             if ($role_end > 0) {
1.412     raeburn  7230:                 if ($now > $role_end) {
1.274     raeburn  7231:                     $active_chk = 'previous';
                   7232:                 }
                   7233:             }
                   7234:         }
                   7235:     }
                   7236:     return $active_chk;
                   7237: }
                   7238: 
                   7239: ###############################################
                   7240: 
                   7241: =pod
                   7242: 
1.405     albertel 7243: =item * &get_sections()
1.233     raeburn  7244: 
                   7245: Determines all the sections for a course including
                   7246: sections with students and sections containing other roles.
1.419     raeburn  7247: Incoming parameters: 
                   7248: 
                   7249: 1. domain
                   7250: 2. course number 
                   7251: 3. reference to array containing roles for which sections should 
                   7252: be gathered (optional).
                   7253: 4. reference to array containing status types for which sections 
                   7254: should be gathered (optional).
                   7255: 
                   7256: If the third argument is undefined, sections are gathered for any role. 
                   7257: If the fourth argument is undefined, sections are gathered for any status.
                   7258: Permissible values are 'active' or 'future' or 'previous'.
1.233     raeburn  7259:  
1.374     raeburn  7260: Returns section hash (keys are section IDs, values are
                   7261: number of users in each section), subject to the
1.419     raeburn  7262: optional roles filter, optional status filter 
1.233     raeburn  7263: 
                   7264: =cut
                   7265: 
                   7266: ###############################################
                   7267: sub get_sections {
1.419     raeburn  7268:     my ($cdom,$cnum,$possible_roles,$possible_status) = @_;
1.366     albertel 7269:     if (!defined($cdom) || !defined($cnum)) {
                   7270:         my $cid =  $env{'request.course.id'};
                   7271: 
                   7272: 	return if (!defined($cid));
                   7273: 
                   7274:         $cdom = $env{'course.'.$cid.'.domain'};
                   7275:         $cnum = $env{'course.'.$cid.'.num'};
                   7276:     }
                   7277: 
                   7278:     my %sectioncount;
1.419     raeburn  7279:     my $now = time;
1.240     albertel 7280: 
1.366     albertel 7281:     if (!defined($possible_roles) || (grep(/^st$/,@$possible_roles))) {
1.276     albertel 7282: 	my ($classlist) = &Apache::loncoursedata::get_classlist($cdom,$cnum);
1.240     albertel 7283: 	my $sec_index = &Apache::loncoursedata::CL_SECTION();
                   7284: 	my $status_index = &Apache::loncoursedata::CL_STATUS();
1.419     raeburn  7285:         my $start_index = &Apache::loncoursedata::CL_START();
                   7286:         my $end_index = &Apache::loncoursedata::CL_END();
                   7287:         my $status;
1.366     albertel 7288: 	while (my ($student,$data) = each(%$classlist)) {
1.419     raeburn  7289: 	    my ($section,$stu_status,$start,$end) = ($data->[$sec_index],
                   7290: 				                     $data->[$status_index],
                   7291:                                                      $data->[$start_index],
                   7292:                                                      $data->[$end_index]);
                   7293:             if ($stu_status eq 'Active') {
                   7294:                 $status = 'active';
                   7295:             } elsif ($end < $now) {
                   7296:                 $status = 'previous';
                   7297:             } elsif ($start > $now) {
                   7298:                 $status = 'future';
                   7299:             } 
                   7300: 	    if ($section ne '-1' && $section !~ /^\s*$/) {
                   7301:                 if ((!defined($possible_status)) || (($status ne '') && 
                   7302:                     (grep/^\Q$status\E$/,@{$possible_status}))) { 
                   7303: 		    $sectioncount{$section}++;
                   7304:                 }
1.240     albertel 7305: 	    }
                   7306: 	}
                   7307:     }
                   7308:     my %courseroles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   7309:     foreach my $user (sort(keys(%courseroles))) {
                   7310: 	if ($user !~ /^(\w{2})/) { next; }
                   7311: 	my ($role) = ($user =~ /^(\w{2})/);
                   7312: 	if ($possible_roles && !(grep(/^$role$/,@$possible_roles))) { next; }
1.419     raeburn  7313: 	my ($section,$status);
1.240     albertel 7314: 	if ($role eq 'cr' &&
                   7315: 	    $user =~ m-^$role/[^/]*/[^/]*/[^/]*:[^:]*:[^:]*:(\w+)-) {
                   7316: 	    $section=$1;
                   7317: 	}
                   7318: 	if ($user =~ /^$role:[^:]*:[^:]*:(\w+)/) { $section=$1; }
                   7319: 	if (!defined($section) || $section eq '-1') { next; }
1.419     raeburn  7320:         my ($end,$start) = ($courseroles{$user} =~ /^([^:]*):([^:]*)$/);
                   7321:         if ($end == -1 && $start == -1) {
                   7322:             next; #deleted role
                   7323:         }
                   7324:         if (!defined($possible_status)) { 
                   7325:             $sectioncount{$section}++;
                   7326:         } else {
                   7327:             if ((!$end || $end >= $now) && (!$start || $start <= $now)) {
                   7328:                 $status = 'active';
                   7329:             } elsif ($end < $now) {
                   7330:                 $status = 'future';
                   7331:             } elsif ($start > $now) {
                   7332:                 $status = 'previous';
                   7333:             }
                   7334:             if (($status ne '') && (grep/^\Q$status\E$/,@{$possible_status})) {
                   7335:                 $sectioncount{$section}++;
                   7336:             }
                   7337:         }
1.233     raeburn  7338:     }
1.366     albertel 7339:     return %sectioncount;
1.233     raeburn  7340: }
                   7341: 
1.274     raeburn  7342: ###############################################
1.294     raeburn  7343: 
                   7344: =pod
1.405     albertel 7345: 
                   7346: =item * &get_course_users()
                   7347: 
1.275     raeburn  7348: Retrieves usernames:domains for users in the specified course
                   7349: with specific role(s), and access status. 
                   7350: 
                   7351: Incoming parameters:
1.277     albertel 7352: 1. course domain
                   7353: 2. course number
                   7354: 3. access status: users must have - either active, 
1.275     raeburn  7355: previous, future, or all.
1.277     albertel 7356: 4. reference to array of permissible roles
1.288     raeburn  7357: 5. reference to array of section restrictions (optional)
                   7358: 6. reference to results object (hash of hashes).
                   7359: 7. reference to optional userdata hash
1.609     raeburn  7360: 8. reference to optional statushash
1.630     raeburn  7361: 9. flag if privileged users (except those set to unhide in
                   7362:    course settings) should be excluded    
1.609     raeburn  7363: Keys of top level results hash are roles.
1.275     raeburn  7364: Keys of inner hashes are username:domain, with 
                   7365: values set to access type.
1.288     raeburn  7366: Optional userdata hash returns an array with arguments in the 
                   7367: same order as loncoursedata::get_classlist() for student data.
                   7368: 
1.609     raeburn  7369: Optional statushash returns
                   7370: 
1.288     raeburn  7371: Entries for end, start, section and status are blank because
                   7372: of the possibility of multiple values for non-student roles.
                   7373: 
1.275     raeburn  7374: =cut
1.405     albertel 7375: 
1.275     raeburn  7376: ###############################################
1.405     albertel 7377: 
1.275     raeburn  7378: sub get_course_users {
1.630     raeburn  7379:     my ($cdom,$cnum,$types,$roles,$sections,$users,$userdata,$statushash,$hidepriv) = @_;
1.288     raeburn  7380:     my %idx = ();
1.419     raeburn  7381:     my %seclists;
1.288     raeburn  7382: 
                   7383:     $idx{udom} = &Apache::loncoursedata::CL_SDOM();
                   7384:     $idx{uname} =  &Apache::loncoursedata::CL_SNAME();
                   7385:     $idx{end} = &Apache::loncoursedata::CL_END();
                   7386:     $idx{start} = &Apache::loncoursedata::CL_START();
                   7387:     $idx{id} = &Apache::loncoursedata::CL_ID();
                   7388:     $idx{section} = &Apache::loncoursedata::CL_SECTION();
                   7389:     $idx{fullname} = &Apache::loncoursedata::CL_FULLNAME();
                   7390:     $idx{status} = &Apache::loncoursedata::CL_STATUS();
                   7391: 
1.290     albertel 7392:     if (grep(/^st$/,@{$roles})) {
1.276     albertel 7393:         my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist($cdom,$cnum);
1.278     raeburn  7394:         my $now = time;
1.277     albertel 7395:         foreach my $student (keys(%{$classlist})) {
1.288     raeburn  7396:             my $match = 0;
1.412     raeburn  7397:             my $secmatch = 0;
1.419     raeburn  7398:             my $section = $$classlist{$student}[$idx{section}];
1.609     raeburn  7399:             my $status = $$classlist{$student}[$idx{status}];
1.419     raeburn  7400:             if ($section eq '') {
                   7401:                 $section = 'none';
                   7402:             }
1.291     albertel 7403:             if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
1.420     albertel 7404:                 if (grep(/^all$/,@{$sections})) {
1.412     raeburn  7405:                     $secmatch = 1;
                   7406:                 } elsif ($$classlist{$student}[$idx{section}] eq '') {
1.420     albertel 7407:                     if (grep(/^none$/,@{$sections})) {
1.412     raeburn  7408:                         $secmatch = 1;
                   7409:                     }
                   7410:                 } else {  
1.419     raeburn  7411: 		    if (grep(/^\Q$section\E$/,@{$sections})) {
1.412     raeburn  7412: 		        $secmatch = 1;
                   7413:                     }
1.290     albertel 7414: 		}
1.412     raeburn  7415:                 if (!$secmatch) {
                   7416:                     next;
                   7417:                 }
1.419     raeburn  7418:             }
1.275     raeburn  7419:             if (defined($$types{'active'})) {
1.288     raeburn  7420:                 if ($$classlist{$student}[$idx{status}] eq 'Active') {
1.275     raeburn  7421:                     push(@{$$users{st}{$student}},'active');
1.288     raeburn  7422:                     $match = 1;
1.275     raeburn  7423:                 }
                   7424:             }
                   7425:             if (defined($$types{'previous'})) {
1.609     raeburn  7426:                 if ($$classlist{$student}[$idx{status}] eq 'Expired') {
1.275     raeburn  7427:                     push(@{$$users{st}{$student}},'previous');
1.288     raeburn  7428:                     $match = 1;
1.275     raeburn  7429:                 }
                   7430:             }
                   7431:             if (defined($$types{'future'})) {
1.609     raeburn  7432:                 if ($$classlist{$student}[$idx{status}] eq 'Future') {
1.275     raeburn  7433:                     push(@{$$users{st}{$student}},'future');
1.288     raeburn  7434:                     $match = 1;
1.275     raeburn  7435:                 }
                   7436:             }
1.609     raeburn  7437:             if ($match) {
                   7438:                 push(@{$seclists{$student}},$section);
                   7439:                 if (ref($userdata) eq 'HASH') {
                   7440:                     $$userdata{$student} = $$classlist{$student};
                   7441:                 }
                   7442:                 if (ref($statushash) eq 'HASH') {
                   7443:                     $statushash->{$student}{'st'}{$section} = $status;
                   7444:                 }
1.288     raeburn  7445:             }
1.275     raeburn  7446:         }
                   7447:     }
1.412     raeburn  7448:     if ((@{$roles} > 1) || ((@{$roles} == 1) && ($$roles[0] ne "st"))) {
1.439     raeburn  7449:         my %coursepersonnel = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   7450:         my $now = time;
1.609     raeburn  7451:         my %displaystatus = ( previous => 'Expired',
                   7452:                               active   => 'Active',
                   7453:                               future   => 'Future',
                   7454:                             );
1.630     raeburn  7455:         my %nothide;
                   7456:         if ($hidepriv) {
                   7457:             my %coursehash=&Apache::lonnet::coursedescription($cdom.'_'.$cnum);
                   7458:             foreach my $user (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
                   7459:                 if ($user !~ /:/) {
                   7460:                     $nothide{join(':',split(/[\@]/,$user))}=1;
                   7461:                 } else {
                   7462:                     $nothide{$user} = 1;
                   7463:                 }
                   7464:             }
                   7465:         }
1.439     raeburn  7466:         foreach my $person (sort(keys(%coursepersonnel))) {
1.288     raeburn  7467:             my $match = 0;
1.412     raeburn  7468:             my $secmatch = 0;
1.439     raeburn  7469:             my $status;
1.412     raeburn  7470:             my ($role,$user,$usec) = ($person =~ /^([^:]*):([^:]+:[^:]+):([^:]*)/);
1.275     raeburn  7471:             $user =~ s/:$//;
1.439     raeburn  7472:             my ($end,$start) = split(/:/,$coursepersonnel{$person});
                   7473:             if ($end == -1 || $start == -1) {
                   7474:                 next;
                   7475:             }
                   7476:             if (($role) && ((grep(/^\Q$role\E$/,@{$roles})) ||
                   7477:                 (grep(/^cr$/,@{$roles}) && $role =~ /^cr\//))) {
1.412     raeburn  7478:                 my ($uname,$udom) = split(/:/,$user);
                   7479:                 if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
1.420     albertel 7480:                     if (grep(/^all$/,@{$sections})) {
1.412     raeburn  7481:                         $secmatch = 1;
                   7482:                     } elsif ($usec eq '') {
1.420     albertel 7483:                         if (grep(/^none$/,@{$sections})) {
1.412     raeburn  7484:                             $secmatch = 1;
                   7485:                         }
                   7486:                     } else {
                   7487:                         if (grep(/^\Q$usec\E$/,@{$sections})) {
                   7488:                             $secmatch = 1;
                   7489:                         }
                   7490:                     }
                   7491:                     if (!$secmatch) {
                   7492:                         next;
                   7493:                     }
1.288     raeburn  7494:                 }
1.419     raeburn  7495:                 if ($usec eq '') {
                   7496:                     $usec = 'none';
                   7497:                 }
1.275     raeburn  7498:                 if ($uname ne '' && $udom ne '') {
1.630     raeburn  7499:                     if ($hidepriv) {
                   7500:                         if ((&Apache::lonnet::privileged($uname,$udom)) &&
                   7501:                             (!$nothide{$uname.':'.$udom})) {
                   7502:                             next;
                   7503:                         }
                   7504:                     }
1.503     raeburn  7505:                     if ($end > 0 && $end < $now) {
1.439     raeburn  7506:                         $status = 'previous';
                   7507:                     } elsif ($start > $now) {
                   7508:                         $status = 'future';
                   7509:                     } else {
                   7510:                         $status = 'active';
                   7511:                     }
1.277     albertel 7512:                     foreach my $type (keys(%{$types})) { 
1.275     raeburn  7513:                         if ($status eq $type) {
1.420     albertel 7514:                             if (!grep(/^\Q$type\E$/,@{$$users{$role}{$user}})) {
1.419     raeburn  7515:                                 push(@{$$users{$role}{$user}},$type);
                   7516:                             }
1.288     raeburn  7517:                             $match = 1;
                   7518:                         }
                   7519:                     }
1.419     raeburn  7520:                     if (($match) && (ref($userdata) eq 'HASH')) {
                   7521:                         if (!exists($$userdata{$uname.':'.$udom})) {
                   7522: 			    &get_user_info($udom,$uname,\%idx,$userdata);
                   7523:                         }
1.420     albertel 7524:                         if (!grep(/^\Q$usec\E$/,@{$seclists{$uname.':'.$udom}})) {
1.419     raeburn  7525:                             push(@{$seclists{$uname.':'.$udom}},$usec);
                   7526:                         }
1.609     raeburn  7527:                         if (ref($statushash) eq 'HASH') {
                   7528:                             $statushash->{$uname.':'.$udom}{$role}{$usec} = $displaystatus{$status};
                   7529:                         }
1.275     raeburn  7530:                     }
                   7531:                 }
                   7532:             }
                   7533:         }
1.290     albertel 7534:         if (grep(/^ow$/,@{$roles})) {
1.279     raeburn  7535:             if ((defined($cdom)) && (defined($cnum))) {
                   7536:                 my %csettings = &Apache::lonnet::get('environment',['internal.courseowner'],$cdom,$cnum);
                   7537:                 if ( defined($csettings{'internal.courseowner'}) ) {
                   7538:                     my $owner = $csettings{'internal.courseowner'};
1.609     raeburn  7539:                     next if ($owner eq '');
                   7540:                     my ($ownername,$ownerdom);
                   7541:                     if ($owner =~ /^([^:]+):([^:]+)$/) {
                   7542:                         $ownername = $1;
                   7543:                         $ownerdom = $2;
                   7544:                     } else {
                   7545:                         $ownername = $owner;
                   7546:                         $ownerdom = $cdom;
                   7547:                         $owner = $ownername.':'.$ownerdom;
1.439     raeburn  7548:                     }
                   7549:                     @{$$users{'ow'}{$owner}} = 'any';
1.290     albertel 7550:                     if (defined($userdata) && 
1.609     raeburn  7551: 			!exists($$userdata{$owner})) {
                   7552: 			&get_user_info($ownerdom,$ownername,\%idx,$userdata);
                   7553:                         if (!grep(/^none$/,@{$seclists{$owner}})) {
                   7554:                             push(@{$seclists{$owner}},'none');
                   7555:                         }
                   7556:                         if (ref($statushash) eq 'HASH') {
                   7557:                             $statushash->{$owner}{'ow'}{'none'} = 'Any';
1.419     raeburn  7558:                         }
1.290     albertel 7559: 		    }
1.279     raeburn  7560:                 }
                   7561:             }
                   7562:         }
1.419     raeburn  7563:         foreach my $user (keys(%seclists)) {
                   7564:             @{$seclists{$user}} = (sort {$a <=> $b} @{$seclists{$user}});
                   7565:             $$userdata{$user}[$idx{section}] = join(',',@{$seclists{$user}});
                   7566:         }
1.275     raeburn  7567:     }
                   7568:     return;
                   7569: }
                   7570: 
1.288     raeburn  7571: sub get_user_info {
                   7572:     my ($udom,$uname,$idx,$userdata) = @_;
1.289     albertel 7573:     $$userdata{$uname.':'.$udom}[$$idx{fullname}] = 
                   7574: 	&plainname($uname,$udom,'lastname');
1.291     albertel 7575:     $$userdata{$uname.':'.$udom}[$$idx{uname}] = $uname;
1.297     raeburn  7576:     $$userdata{$uname.':'.$udom}[$$idx{udom}] = $udom;
1.609     raeburn  7577:     my %idhash =  &Apache::lonnet::idrget($udom,($uname));
                   7578:     $$userdata{$uname.':'.$udom}[$$idx{id}] = $idhash{$uname}; 
1.288     raeburn  7579:     return;
                   7580: }
1.275     raeburn  7581: 
1.472     raeburn  7582: ###############################################
                   7583: 
                   7584: =pod
                   7585: 
                   7586: =item * &get_user_quota()
                   7587: 
                   7588: Retrieves quota assigned for storage of portfolio files for a user  
                   7589: 
                   7590: Incoming parameters:
                   7591: 1. user's username
                   7592: 2. user's domain
                   7593: 
                   7594: Returns:
1.536     raeburn  7595: 1. Disk quota (in Mb) assigned to student.
                   7596: 2. (Optional) Type of setting: custom or default
                   7597:    (individually assigned or default for user's 
                   7598:    institutional status).
                   7599: 3. (Optional) - User's institutional status (e.g., faculty, staff
                   7600:    or student - types as defined in localenroll::inst_usertypes 
                   7601:    for user's domain, which determines default quota for user.
                   7602: 4. (Optional) - Default quota which would apply to the user.
1.472     raeburn  7603: 
                   7604: If a value has been stored in the user's environment, 
1.536     raeburn  7605: it will return that, otherwise it returns the maximal default
                   7606: defined for the user's instituional status(es) in the domain.
1.472     raeburn  7607: 
                   7608: =cut
                   7609: 
                   7610: ###############################################
                   7611: 
                   7612: 
                   7613: sub get_user_quota {
                   7614:     my ($uname,$udom) = @_;
1.536     raeburn  7615:     my ($quota,$quotatype,$settingstatus,$defquota);
1.472     raeburn  7616:     if (!defined($udom)) {
                   7617:         $udom = $env{'user.domain'};
                   7618:     }
                   7619:     if (!defined($uname)) {
                   7620:         $uname = $env{'user.name'};
                   7621:     }
                   7622:     if (($udom eq '' || $uname eq '') ||
                   7623:         ($udom eq 'public') && ($uname eq 'public')) {
                   7624:         $quota = 0;
1.536     raeburn  7625:         $quotatype = 'default';
                   7626:         $defquota = 0; 
1.472     raeburn  7627:     } else {
1.536     raeburn  7628:         my $inststatus;
1.472     raeburn  7629:         if ($udom eq $env{'user.domain'} && $uname eq $env{'user.name'}) {
                   7630:             $quota = $env{'environment.portfolioquota'};
1.536     raeburn  7631:             $inststatus = $env{'environment.inststatus'};
1.472     raeburn  7632:         } else {
1.536     raeburn  7633:             my %userenv = 
                   7634:                 &Apache::lonnet::get('environment',['portfolioquota',
                   7635:                                      'inststatus'],$udom,$uname);
1.472     raeburn  7636:             my ($tmp) = keys(%userenv);
                   7637:             if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
                   7638:                 $quota = $userenv{'portfolioquota'};
1.536     raeburn  7639:                 $inststatus = $userenv{'inststatus'};
1.472     raeburn  7640:             } else {
                   7641:                 undef(%userenv);
                   7642:             }
                   7643:         }
1.536     raeburn  7644:         ($defquota,$settingstatus) = &default_quota($udom,$inststatus);
1.472     raeburn  7645:         if ($quota eq '') {
1.536     raeburn  7646:             $quota = $defquota;
                   7647:             $quotatype = 'default';
                   7648:         } else {
                   7649:             $quotatype = 'custom';
1.472     raeburn  7650:         }
                   7651:     }
1.536     raeburn  7652:     if (wantarray) {
                   7653:         return ($quota,$quotatype,$settingstatus,$defquota);
                   7654:     } else {
                   7655:         return $quota;
                   7656:     }
1.472     raeburn  7657: }
                   7658: 
                   7659: ###############################################
                   7660: 
                   7661: =pod
                   7662: 
                   7663: =item * &default_quota()
                   7664: 
1.536     raeburn  7665: Retrieves default quota assigned for storage of user portfolio files,
                   7666: given an (optional) user's institutional status.
1.472     raeburn  7667: 
                   7668: Incoming parameters:
                   7669: 1. domain
1.536     raeburn  7670: 2. (Optional) institutional status(es).  This is a : separated list of 
                   7671:    status types (e.g., faculty, staff, student etc.)
                   7672:    which apply to the user for whom the default is being retrieved.
                   7673:    If the institutional status string in undefined, the domain
                   7674:    default quota will be returned. 
1.472     raeburn  7675: 
                   7676: Returns:
                   7677: 1. Default disk quota (in Mb) for user portfolios in the domain.
1.536     raeburn  7678: 2. (Optional) institutional type which determined the value of the
                   7679:    default quota.
1.472     raeburn  7680: 
                   7681: If a value has been stored in the domain's configuration db,
                   7682: it will return that, otherwise it returns 20 (for backwards 
                   7683: compatibility with domains which have not set up a configuration
                   7684: db file; the original statically defined portfolio quota was 20 Mb). 
                   7685: 
1.536     raeburn  7686: If the user's status includes multiple types (e.g., staff and student),
                   7687: the largest default quota which applies to the user determines the
                   7688: default quota returned.
                   7689: 
1.780     raeburn  7690: =back
                   7691: 
1.472     raeburn  7692: =cut
                   7693: 
                   7694: ###############################################
                   7695: 
                   7696: 
                   7697: sub default_quota {
1.536     raeburn  7698:     my ($udom,$inststatus) = @_;
                   7699:     my ($defquota,$settingstatus);
                   7700:     my %quotahash = &Apache::lonnet::get_dom('configuration',
1.622     raeburn  7701:                                             ['quotas'],$udom);
                   7702:     if (ref($quotahash{'quotas'}) eq 'HASH') {
1.536     raeburn  7703:         if ($inststatus ne '') {
1.765     raeburn  7704:             my @statuses = map { &unescape($_); } split(/:/,$inststatus);
1.536     raeburn  7705:             foreach my $item (@statuses) {
1.711     raeburn  7706:                 if (ref($quotahash{'quotas'}{'defaultquota'}) eq 'HASH') {
                   7707:                     if ($quotahash{'quotas'}{'defaultquota'}{$item} ne '') {
                   7708:                         if ($defquota eq '') {
                   7709:                             $defquota = $quotahash{'quotas'}{'defaultquota'}{$item};
                   7710:                             $settingstatus = $item;
                   7711:                         } elsif ($quotahash{'quotas'}{'defaultquota'}{$item} > $defquota) {
                   7712:                             $defquota = $quotahash{'quotas'}{'defaultquota'}{$item};
                   7713:                             $settingstatus = $item;
                   7714:                         }
                   7715:                     }
                   7716:                 } else {
                   7717:                     if ($quotahash{'quotas'}{$item} ne '') {
                   7718:                         if ($defquota eq '') {
                   7719:                             $defquota = $quotahash{'quotas'}{$item};
                   7720:                             $settingstatus = $item;
                   7721:                         } elsif ($quotahash{'quotas'}{$item} > $defquota) {
                   7722:                             $defquota = $quotahash{'quotas'}{$item};
                   7723:                             $settingstatus = $item;
                   7724:                         }
1.536     raeburn  7725:                     }
                   7726:                 }
                   7727:             }
                   7728:         }
                   7729:         if ($defquota eq '') {
1.711     raeburn  7730:             if (ref($quotahash{'quotas'}{'defaultquota'}) eq 'HASH') {
                   7731:                 $defquota = $quotahash{'quotas'}{'defaultquota'}{'default'};
                   7732:             } else {
                   7733:                 $defquota = $quotahash{'quotas'}{'default'};
                   7734:             }
1.536     raeburn  7735:             $settingstatus = 'default';
                   7736:         }
                   7737:     } else {
                   7738:         $settingstatus = 'default';
                   7739:         $defquota = 20;
                   7740:     }
                   7741:     if (wantarray) {
                   7742:         return ($defquota,$settingstatus);
1.472     raeburn  7743:     } else {
1.536     raeburn  7744:         return $defquota;
1.472     raeburn  7745:     }
                   7746: }
                   7747: 
1.384     raeburn  7748: sub get_secgrprole_info {
                   7749:     my ($cdom,$cnum,$needroles,$type)  = @_;
                   7750:     my %sections_count = &get_sections($cdom,$cnum);
                   7751:     my @sections =  (sort {$a <=> $b} keys(%sections_count));
                   7752:     my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum);
                   7753:     my @groups = sort(keys(%curr_groups));
                   7754:     my $allroles = [];
                   7755:     my $rolehash;
                   7756:     my $accesshash = {
                   7757:                      active => 'Currently has access',
                   7758:                      future => 'Will have future access',
                   7759:                      previous => 'Previously had access',
                   7760:                   };
                   7761:     if ($needroles) {
                   7762:         $rolehash = {'all' => 'all'};
1.385     albertel 7763:         my %user_roles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   7764: 	if (&Apache::lonnet::error(%user_roles)) {
                   7765: 	    undef(%user_roles);
                   7766: 	}
                   7767:         foreach my $item (keys(%user_roles)) {
1.384     raeburn  7768:             my ($role)=split(/\:/,$item,2);
                   7769:             if ($role eq 'cr') { next; }
                   7770:             if ($role =~ /^cr/) {
                   7771:                 $$rolehash{$role} = (split('/',$role))[3];
                   7772:             } else {
                   7773:                 $$rolehash{$role} = &Apache::lonnet::plaintext($role,$type);
                   7774:             }
                   7775:         }
                   7776:         foreach my $key (sort(keys(%{$rolehash}))) {
                   7777:             push(@{$allroles},$key);
                   7778:         }
                   7779:         push (@{$allroles},'st');
                   7780:         $$rolehash{'st'} = &Apache::lonnet::plaintext('st',$type);
                   7781:     }
                   7782:     return (\@sections,\@groups,$allroles,$rolehash,$accesshash);
                   7783: }
                   7784: 
1.555     raeburn  7785: sub user_picker {
1.627     raeburn  7786:     my ($dom,$srch,$forcenewuser,$caller,$cancreate,$usertype) = @_;
1.555     raeburn  7787:     my $currdom = $dom;
                   7788:     my %curr_selected = (
                   7789:                         srchin => 'dom',
1.580     raeburn  7790:                         srchby => 'lastname',
1.555     raeburn  7791:                       );
                   7792:     my $srchterm;
1.625     raeburn  7793:     if ((ref($srch) eq 'HASH') && ($env{'form.origform'} ne 'crtusername')) {
1.555     raeburn  7794:         if ($srch->{'srchby'} ne '') {
                   7795:             $curr_selected{'srchby'} = $srch->{'srchby'};
                   7796:         }
                   7797:         if ($srch->{'srchin'} ne '') {
                   7798:             $curr_selected{'srchin'} = $srch->{'srchin'};
                   7799:         }
                   7800:         if ($srch->{'srchtype'} ne '') {
                   7801:             $curr_selected{'srchtype'} = $srch->{'srchtype'};
                   7802:         }
                   7803:         if ($srch->{'srchdomain'} ne '') {
                   7804:             $currdom = $srch->{'srchdomain'};
                   7805:         }
                   7806:         $srchterm = $srch->{'srchterm'};
                   7807:     }
                   7808:     my %lt=&Apache::lonlocal::texthash(
1.573     raeburn  7809:                     'usr'       => 'Search criteria',
1.563     raeburn  7810:                     'doma'      => 'Domain/institution to search',
1.558     albertel 7811:                     'uname'     => 'username',
                   7812:                     'lastname'  => 'last name',
1.555     raeburn  7813:                     'lastfirst' => 'last name, first name',
1.558     albertel 7814:                     'crs'       => 'in this course',
1.576     raeburn  7815:                     'dom'       => 'in selected LON-CAPA domain', 
1.558     albertel 7816:                     'alc'       => 'all LON-CAPA',
1.573     raeburn  7817:                     'instd'     => 'in institutional directory for selected domain',
1.558     albertel 7818:                     'exact'     => 'is',
                   7819:                     'contains'  => 'contains',
1.569     raeburn  7820:                     'begins'    => 'begins with',
1.571     raeburn  7821:                     'youm'      => "You must include some text to search for.",
                   7822:                     'thte'      => "The text you are searching for must contain at least two characters when using a 'begins' type search.",
                   7823:                     'thet'      => "The text you are searching for must contain at least three characters when using a 'contains' type search.",
                   7824:                     'yomc'      => "You must choose a domain when using an institutional directory search.",
                   7825:                     'ymcd'      => "You must choose a domain when using a domain search.",
                   7826:                     'whus'      => "When using searching by last,first you must include a comma as separator between last name and first name.",
                   7827:                     'whse'      => "When searching by last,first you must include at least one character in the first name.",
                   7828:                      'thfo'     => "The following need to be corrected before the search can be run:",
1.555     raeburn  7829:                                        );
1.563     raeburn  7830:     my $domform = &select_dom_form($currdom,'srchdomain',1,1);
                   7831:     my $srchinsel = ' <select name="srchin">';
1.555     raeburn  7832: 
                   7833:     my @srchins = ('crs','dom','alc','instd');
                   7834: 
                   7835:     foreach my $option (@srchins) {
                   7836:         # FIXME 'alc' option unavailable until 
                   7837:         #       loncreateuser::print_user_query_page()
                   7838:         #       has been completed.
                   7839:         next if ($option eq 'alc');
1.880     raeburn  7840:         next if (($option eq 'crs') && ($env{'form.form'} eq 'requestcrs'));  
1.555     raeburn  7841:         next if ($option eq 'crs' && !$env{'request.course.id'});
1.563     raeburn  7842:         if ($curr_selected{'srchin'} eq $option) {
                   7843:             $srchinsel .= ' 
                   7844:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   7845:         } else {
                   7846:             $srchinsel .= '
                   7847:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   7848:         }
1.555     raeburn  7849:     }
1.563     raeburn  7850:     $srchinsel .= "\n  </select>\n";
1.555     raeburn  7851: 
                   7852:     my $srchbysel =  ' <select name="srchby">';
1.580     raeburn  7853:     foreach my $option ('lastname','lastfirst','uname') {
1.555     raeburn  7854:         if ($curr_selected{'srchby'} eq $option) {
                   7855:             $srchbysel .= '
                   7856:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   7857:         } else {
                   7858:             $srchbysel .= '
                   7859:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   7860:          }
                   7861:     }
                   7862:     $srchbysel .= "\n  </select>\n";
                   7863: 
                   7864:     my $srchtypesel = ' <select name="srchtype">';
1.580     raeburn  7865:     foreach my $option ('begins','contains','exact') {
1.555     raeburn  7866:         if ($curr_selected{'srchtype'} eq $option) {
                   7867:             $srchtypesel .= '
                   7868:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   7869:         } else {
                   7870:             $srchtypesel .= '
                   7871:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   7872:         }
                   7873:     }
                   7874:     $srchtypesel .= "\n  </select>\n";
                   7875: 
1.558     albertel 7876:     my ($newuserscript,$new_user_create);
1.556     raeburn  7877: 
                   7878:     if ($forcenewuser) {
1.576     raeburn  7879:         if (ref($srch) eq 'HASH') {
                   7880:             if ($srch->{'srchby'} eq 'uname' && $srch->{'srchtype'} eq 'exact' && $srch->{'srchin'} eq 'dom' && $srch->{'srchdomain'} eq $env{'request.role.domain'}) {
1.627     raeburn  7881:                 if ($cancreate) {
                   7882:                     $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>';
                   7883:                 } else {
1.799     bisitz   7884:                     my $helplink = 'javascript:helpMenu('."'display'".')';
1.627     raeburn  7885:                     my %usertypetext = (
                   7886:                         official   => 'institutional',
                   7887:                         unofficial => 'non-institutional',
                   7888:                     );
1.799     bisitz   7889:                     $new_user_create = '<p class="LC_warning">'
                   7890:                                       .&mt("You are not authorized to create new $usertypetext{$usertype} users in this domain.")
                   7891:                                       .' '
                   7892:                                       .&mt('Please contact the [_1]helpdesk[_2] for assistance.'
                   7893:                                           ,'<a href="'.$helplink.'">','</a>')
                   7894:                                       .'</p><br />';
1.627     raeburn  7895:                 }
1.576     raeburn  7896:             }
                   7897:         }
                   7898: 
1.556     raeburn  7899:         $newuserscript = <<"ENDSCRIPT";
                   7900: 
1.570     raeburn  7901: function setSearch(createnew,callingForm) {
1.556     raeburn  7902:     if (createnew == 1) {
1.570     raeburn  7903:         for (var i=0; i<callingForm.srchby.length; i++) {
                   7904:             if (callingForm.srchby.options[i].value == 'uname') {
                   7905:                 callingForm.srchby.selectedIndex = i;
1.556     raeburn  7906:             }
                   7907:         }
1.570     raeburn  7908:         for (var i=0; i<callingForm.srchin.length; i++) {
                   7909:             if ( callingForm.srchin.options[i].value == 'dom') {
                   7910: 		callingForm.srchin.selectedIndex = i;
1.556     raeburn  7911:             }
                   7912:         }
1.570     raeburn  7913:         for (var i=0; i<callingForm.srchtype.length; i++) {
                   7914:             if (callingForm.srchtype.options[i].value == 'exact') {
                   7915:                 callingForm.srchtype.selectedIndex = i;
1.556     raeburn  7916:             }
                   7917:         }
1.570     raeburn  7918:         for (var i=0; i<callingForm.srchdomain.length; i++) {
                   7919:             if (callingForm.srchdomain.options[i].value == '$env{'request.role.domain'}') {
                   7920:                 callingForm.srchdomain.selectedIndex = i;
1.556     raeburn  7921:             }
                   7922:         }
                   7923:     }
                   7924: }
                   7925: ENDSCRIPT
1.558     albertel 7926: 
1.556     raeburn  7927:     }
                   7928: 
1.555     raeburn  7929:     my $output = <<"END_BLOCK";
1.556     raeburn  7930: <script type="text/javascript">
1.824     bisitz   7931: // <![CDATA[
1.570     raeburn  7932: function validateEntry(callingForm) {
1.558     albertel 7933: 
1.556     raeburn  7934:     var checkok = 1;
1.558     albertel 7935:     var srchin;
1.570     raeburn  7936:     for (var i=0; i<callingForm.srchin.length; i++) {
                   7937: 	if ( callingForm.srchin[i].checked ) {
                   7938: 	    srchin = callingForm.srchin[i].value;
1.558     albertel 7939: 	}
                   7940:     }
                   7941: 
1.570     raeburn  7942:     var srchtype = callingForm.srchtype.options[callingForm.srchtype.selectedIndex].value;
                   7943:     var srchby = callingForm.srchby.options[callingForm.srchby.selectedIndex].value;
                   7944:     var srchdomain = callingForm.srchdomain.options[callingForm.srchdomain.selectedIndex].value;
                   7945:     var srchterm =  callingForm.srchterm.value;
                   7946:     var srchin = callingForm.srchin.options[callingForm.srchin.selectedIndex].value;
1.556     raeburn  7947:     var msg = "";
                   7948: 
                   7949:     if (srchterm == "") {
                   7950:         checkok = 0;
1.571     raeburn  7951:         msg += "$lt{'youm'}\\n";
1.556     raeburn  7952:     }
                   7953: 
1.569     raeburn  7954:     if (srchtype== 'begins') {
                   7955:         if (srchterm.length < 2) {
                   7956:             checkok = 0;
1.571     raeburn  7957:             msg += "$lt{'thte'}\\n";
1.569     raeburn  7958:         }
                   7959:     }
                   7960: 
1.556     raeburn  7961:     if (srchtype== 'contains') {
                   7962:         if (srchterm.length < 3) {
                   7963:             checkok = 0;
1.571     raeburn  7964:             msg += "$lt{'thet'}\\n";
1.556     raeburn  7965:         }
                   7966:     }
                   7967:     if (srchin == 'instd') {
                   7968:         if (srchdomain == '') {
                   7969:             checkok = 0;
1.571     raeburn  7970:             msg += "$lt{'yomc'}\\n";
1.556     raeburn  7971:         }
                   7972:     }
                   7973:     if (srchin == 'dom') {
                   7974:         if (srchdomain == '') {
                   7975:             checkok = 0;
1.571     raeburn  7976:             msg += "$lt{'ymcd'}\\n";
1.556     raeburn  7977:         }
                   7978:     }
                   7979:     if (srchby == 'lastfirst') {
                   7980:         if (srchterm.indexOf(",") == -1) {
                   7981:             checkok = 0;
1.571     raeburn  7982:             msg += "$lt{'whus'}\\n";
1.556     raeburn  7983:         }
                   7984:         if (srchterm.indexOf(",") == srchterm.length -1) {
                   7985:             checkok = 0;
1.571     raeburn  7986:             msg += "$lt{'whse'}\\n";
1.556     raeburn  7987:         }
                   7988:     }
                   7989:     if (checkok == 0) {
1.571     raeburn  7990:         alert("$lt{'thfo'}\\n"+msg);
1.556     raeburn  7991:         return;
                   7992:     }
                   7993:     if (checkok == 1) {
1.570     raeburn  7994:         callingForm.submit();
1.556     raeburn  7995:     }
                   7996: }
                   7997: 
                   7998: $newuserscript
                   7999: 
1.824     bisitz   8000: // ]]>
1.556     raeburn  8001: </script>
1.558     albertel 8002: 
                   8003: $new_user_create
                   8004: 
1.555     raeburn  8005: END_BLOCK
1.558     albertel 8006: 
1.876     raeburn  8007:     $output .= &Apache::lonhtmlcommon::start_pick_box().
                   8008:                &Apache::lonhtmlcommon::row_title($lt{'doma'}).
                   8009:                $domform.
                   8010:                &Apache::lonhtmlcommon::row_closure().
                   8011:                &Apache::lonhtmlcommon::row_title($lt{'usr'}).
                   8012:                $srchbysel.
                   8013:                $srchtypesel. 
                   8014:                '<input type="text" size="15" name="srchterm" value="'.$srchterm.'" />'.
                   8015:                $srchinsel.
                   8016:                &Apache::lonhtmlcommon::row_closure(1). 
                   8017:                &Apache::lonhtmlcommon::end_pick_box().
                   8018:                '<br />';
1.555     raeburn  8019:     return $output;
                   8020: }
                   8021: 
1.612     raeburn  8022: sub user_rule_check {
1.615     raeburn  8023:     my ($usershash,$checks,$alerts,$rulematch,$inst_results,$curr_rules,$got_rules) = @_;
1.612     raeburn  8024:     my $response;
                   8025:     if (ref($usershash) eq 'HASH') {
                   8026:         foreach my $user (keys(%{$usershash})) {
                   8027:             my ($uname,$udom) = split(/:/,$user);
                   8028:             next if ($udom eq '' || $uname eq '');
1.615     raeburn  8029:             my ($id,$newuser);
1.612     raeburn  8030:             if (ref($usershash->{$user}) eq 'HASH') {
1.615     raeburn  8031:                 $newuser = $usershash->{$user}->{'newuser'};
1.612     raeburn  8032:                 $id = $usershash->{$user}->{'id'};
                   8033:             }
                   8034:             my $inst_response;
                   8035:             if (ref($checks) eq 'HASH') {
                   8036:                 if (defined($checks->{'username'})) {
1.615     raeburn  8037:                     ($inst_response,%{$inst_results->{$user}}) = 
1.612     raeburn  8038:                         &Apache::lonnet::get_instuser($udom,$uname);
                   8039:                 } elsif (defined($checks->{'id'})) {
1.615     raeburn  8040:                     ($inst_response,%{$inst_results->{$user}}) =
1.612     raeburn  8041:                         &Apache::lonnet::get_instuser($udom,undef,$id);
                   8042:                 }
1.615     raeburn  8043:             } else {
                   8044:                 ($inst_response,%{$inst_results->{$user}}) =
                   8045:                     &Apache::lonnet::get_instuser($udom,$uname);
                   8046:                 return;
1.612     raeburn  8047:             }
1.615     raeburn  8048:             if (!$got_rules->{$udom}) {
1.612     raeburn  8049:                 my %domconfig = &Apache::lonnet::get_dom('configuration',
                   8050:                                                   ['usercreation'],$udom);
                   8051:                 if (ref($domconfig{'usercreation'}) eq 'HASH') {
1.615     raeburn  8052:                     foreach my $item ('username','id') {
1.612     raeburn  8053:                         if (ref($domconfig{'usercreation'}{$item.'_rule'}) eq 'ARRAY') {
                   8054:                             $$curr_rules{$udom}{$item} = 
                   8055:                                 $domconfig{'usercreation'}{$item.'_rule'};
1.585     raeburn  8056:                         }
                   8057:                     }
                   8058:                 }
1.615     raeburn  8059:                 $got_rules->{$udom} = 1;  
1.585     raeburn  8060:             }
1.612     raeburn  8061:             foreach my $item (keys(%{$checks})) {
                   8062:                 if (ref($$curr_rules{$udom}) eq 'HASH') {
                   8063:                     if (ref($$curr_rules{$udom}{$item}) eq 'ARRAY') {
                   8064:                         if (@{$$curr_rules{$udom}{$item}} > 0) {
                   8065:                             my %rule_check = &Apache::lonnet::inst_rulecheck($udom,$uname,$id,$item,$$curr_rules{$udom}{$item});
                   8066:                             foreach my $rule (@{$$curr_rules{$udom}{$item}}) {
                   8067:                                 if ($rule_check{$rule}) {
                   8068:                                     $$rulematch{$user}{$item} = $rule;
                   8069:                                     if ($inst_response eq 'ok') {
1.615     raeburn  8070:                                         if (ref($inst_results) eq 'HASH') {
                   8071:                                             if (ref($inst_results->{$user}) eq 'HASH') {
                   8072:                                                 if (keys(%{$inst_results->{$user}}) == 0) {
                   8073:                                                     $$alerts{$item}{$udom}{$uname} = 1;
                   8074:                                                 }
1.612     raeburn  8075:                                             }
                   8076:                                         }
1.615     raeburn  8077:                                     }
                   8078:                                     last;
1.585     raeburn  8079:                                 }
                   8080:                             }
                   8081:                         }
                   8082:                     }
                   8083:                 }
                   8084:             }
                   8085:         }
                   8086:     }
1.612     raeburn  8087:     return;
                   8088: }
                   8089: 
                   8090: sub user_rule_formats {
                   8091:     my ($domain,$domdesc,$curr_rules,$check) = @_;
                   8092:     my %text = ( 
                   8093:                  'username' => 'Usernames',
                   8094:                  'id'       => 'IDs',
                   8095:                );
                   8096:     my $output;
                   8097:     my ($rules,$ruleorder) = &Apache::lonnet::inst_userrules($domain,$check);
                   8098:     if ((ref($rules) eq 'HASH') && (ref($ruleorder) eq 'ARRAY')) {
                   8099:         if (@{$ruleorder} > 0) {
                   8100:             $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>';
                   8101:             foreach my $rule (@{$ruleorder}) {
                   8102:                 if (ref($curr_rules) eq 'ARRAY') {
                   8103:                     if (grep(/^\Q$rule\E$/,@{$curr_rules})) {
                   8104:                         if (ref($rules->{$rule}) eq 'HASH') {
                   8105:                             $output .= '<li>'.$rules->{$rule}{'name'}.': '.
                   8106:                                         $rules->{$rule}{'desc'}.'</li>';
                   8107:                         }
                   8108:                     }
                   8109:                 }
                   8110:             }
                   8111:             $output .= '</ul>';
                   8112:         }
                   8113:     }
                   8114:     return $output;
                   8115: }
                   8116: 
                   8117: sub instrule_disallow_msg {
1.615     raeburn  8118:     my ($checkitem,$domdesc,$count,$mode) = @_;
1.612     raeburn  8119:     my $response;
                   8120:     my %text = (
                   8121:                   item   => 'username',
                   8122:                   items  => 'usernames',
                   8123:                   match  => 'matches',
                   8124:                   do     => 'does',
                   8125:                   action => 'a username',
                   8126:                   one    => 'one',
                   8127:                );
                   8128:     if ($count > 1) {
                   8129:         $text{'item'} = 'usernames';
                   8130:         $text{'match'} ='match';
                   8131:         $text{'do'} = 'do';
                   8132:         $text{'action'} = 'usernames',
                   8133:         $text{'one'} = 'ones';
                   8134:     }
                   8135:     if ($checkitem eq 'id') {
                   8136:         $text{'items'} = 'IDs';
                   8137:         $text{'item'} = 'ID';
                   8138:         $text{'action'} = 'an ID';
1.615     raeburn  8139:         if ($count > 1) {
                   8140:             $text{'item'} = 'IDs';
                   8141:             $text{'action'} = 'IDs';
                   8142:         }
1.612     raeburn  8143:     }
1.674     bisitz   8144:     $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  8145:     if ($mode eq 'upload') {
                   8146:         if ($checkitem eq 'username') {
                   8147:             $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'}.");
                   8148:         } elsif ($checkitem eq 'id') {
1.674     bisitz   8149:             $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  8150:         }
1.669     raeburn  8151:     } elsif ($mode eq 'selfcreate') {
                   8152:         if ($checkitem eq 'id') {
                   8153:             $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.");
                   8154:         }
1.615     raeburn  8155:     } else {
                   8156:         if ($checkitem eq 'username') {
                   8157:             $response .= &mt("You must choose $text{'action'} with a different format --  $text{'one'} that will not conflict with 'official' institutional $text{'items'}.");
                   8158:         } elsif ($checkitem eq 'id') {
                   8159:             $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.");
                   8160:         }
1.612     raeburn  8161:     }
                   8162:     return $response;
1.585     raeburn  8163: }
                   8164: 
1.624     raeburn  8165: sub personal_data_fieldtitles {
                   8166:     my %fieldtitles = &Apache::lonlocal::texthash (
                   8167:                         id => 'Student/Employee ID',
                   8168:                         permanentemail => 'E-mail address',
                   8169:                         lastname => 'Last Name',
                   8170:                         firstname => 'First Name',
                   8171:                         middlename => 'Middle Name',
                   8172:                         generation => 'Generation',
                   8173:                         gen => 'Generation',
1.765     raeburn  8174:                         inststatus => 'Affiliation',
1.624     raeburn  8175:                    );
                   8176:     return %fieldtitles;
                   8177: }
                   8178: 
1.642     raeburn  8179: sub sorted_inst_types {
                   8180:     my ($dom) = @_;
                   8181:     my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($dom);
                   8182:     my $othertitle = &mt('All users');
                   8183:     if ($env{'request.course.id'}) {
1.668     raeburn  8184:         $othertitle  = &mt('Any users');
1.642     raeburn  8185:     }
                   8186:     my @types;
                   8187:     if (ref($order) eq 'ARRAY') {
                   8188:         @types = @{$order};
                   8189:     }
                   8190:     if (@types == 0) {
                   8191:         if (ref($usertypes) eq 'HASH') {
                   8192:             @types = sort(keys(%{$usertypes}));
                   8193:         }
                   8194:     }
                   8195:     if (keys(%{$usertypes}) > 0) {
                   8196:         $othertitle = &mt('Other users');
                   8197:     }
                   8198:     return ($othertitle,$usertypes,\@types);
                   8199: }
                   8200: 
1.645     raeburn  8201: sub get_institutional_codes {
                   8202:     my ($settings,$allcourses,$LC_code) = @_;
                   8203: # Get complete list of course sections to update
                   8204:     my @currsections = ();
                   8205:     my @currxlists = ();
                   8206:     my $coursecode = $$settings{'internal.coursecode'};
                   8207: 
                   8208:     if ($$settings{'internal.sectionnums'} ne '') {
                   8209:         @currsections = split(/,/,$$settings{'internal.sectionnums'});
                   8210:     }
                   8211: 
                   8212:     if ($$settings{'internal.crosslistings'} ne '') {
                   8213:         @currxlists = split(/,/,$$settings{'internal.crosslistings'});
                   8214:     }
                   8215: 
                   8216:     if (@currxlists > 0) {
                   8217:         foreach (@currxlists) {
                   8218:             if (m/^([^:]+):(\w*)$/) {
                   8219:                 unless (grep/^$1$/,@{$allcourses}) {
                   8220:                     push @{$allcourses},$1;
                   8221:                     $$LC_code{$1} = $2;
                   8222:                 }
                   8223:             }
                   8224:         }
                   8225:     }
                   8226:  
                   8227:     if (@currsections > 0) {
                   8228:         foreach (@currsections) {
                   8229:             if (m/^(\w+):(\w*)$/) {
                   8230:                 my $sec = $coursecode.$1;
                   8231:                 my $lc_sec = $2;
                   8232:                 unless (grep/^$sec$/,@{$allcourses}) {
                   8233:                     push @{$allcourses},$sec;
                   8234:                     $$LC_code{$sec} = $lc_sec;
                   8235:                 }
                   8236:             }
                   8237:         }
                   8238:     }
                   8239:     return;
                   8240: }
                   8241: 
1.948.2.7  raeburn  8242: sub get_standard_codeitems {
                   8243:     return ('Year','Semester','Department','Number','Section');
                   8244: }
                   8245: 
1.112     bowersj2 8246: =pod
                   8247: 
1.780     raeburn  8248: =head1 Slot Helpers
                   8249: 
                   8250: =over 4
                   8251: 
                   8252: =item * sorted_slots()
                   8253: 
                   8254: Sorts an array of slot names in order of slot start time (earliest first). 
                   8255: 
                   8256: Inputs:
                   8257: 
                   8258: =over 4
                   8259: 
                   8260: slotsarr  - Reference to array of unsorted slot names.
                   8261: 
                   8262: slots     - Reference to hash of hash, where outer hash keys are slot names.
                   8263: 
1.549     albertel 8264: =back
                   8265: 
1.780     raeburn  8266: Returns:
                   8267: 
                   8268: =over 4
                   8269: 
                   8270: sorted   - An array of slot names sorted by the start time of the slot.
                   8271: 
                   8272: =back
                   8273: 
                   8274: =back
                   8275: 
                   8276: =cut
                   8277: 
                   8278: 
                   8279: sub sorted_slots {
                   8280:     my ($slotsarr,$slots) = @_;
                   8281:     my @sorted;
                   8282:     if ((ref($slotsarr) eq 'ARRAY') && (ref($slots) eq 'HASH')) {
                   8283:         @sorted =
                   8284:             sort {
                   8285:                      if (ref($slots->{$a}) && ref($slots->{$b})) {
                   8286:                          return $slots->{$a}{'starttime'} <=> $slots->{$b}{'starttime'}
                   8287:                      }
                   8288:                      if (ref($slots->{$a})) { return -1;}
                   8289:                      if (ref($slots->{$b})) { return 1;}
                   8290:                      return 0;
                   8291:                  } @{$slotsarr};
                   8292:     }
                   8293:     return @sorted;
                   8294: }
                   8295: 
                   8296: 
                   8297: =pod
                   8298: 
1.549     albertel 8299: =head1 HTTP Helpers
                   8300: 
                   8301: =over 4
                   8302: 
1.648     raeburn  8303: =item * &get_unprocessed_cgi($query,$possible_names)
1.112     bowersj2 8304: 
1.258     albertel 8305: Modify the %env hash to contain unprocessed CGI form parameters held in
1.112     bowersj2 8306: $query.  The parameters listed in $possible_names (an array reference),
1.258     albertel 8307: will be set in $env{'form.name'} if they do not already exist.
1.112     bowersj2 8308: 
                   8309: Typically called with $ENV{'QUERY_STRING'} as the first parameter.  
                   8310: $possible_names is an ref to an array of form element names.  As an example:
                   8311: get_unprocessed_cgi($ENV{'QUERY_STRING'},['uname','udom']);
1.258     albertel 8312: will result in $env{'form.uname'} and $env{'form.udom'} being set.
1.112     bowersj2 8313: 
                   8314: =cut
1.1       albertel 8315: 
1.6       albertel 8316: sub get_unprocessed_cgi {
1.25      albertel 8317:   my ($query,$possible_names)= @_;
1.26      matthew  8318:   # $Apache::lonxml::debug=1;
1.356     albertel 8319:   foreach my $pair (split(/&/,$query)) {
                   8320:     my ($name, $value) = split(/=/,$pair);
1.369     www      8321:     $name = &unescape($name);
1.25      albertel 8322:     if (!defined($possible_names) || (grep {$_ eq $name} @$possible_names)) {
                   8323:       $value =~ tr/+/ /;
                   8324:       $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
1.258     albertel 8325:       unless (defined($env{'form.'.$name})) { &add_to_env('form.'.$name,$value) };
1.25      albertel 8326:     }
1.16      harris41 8327:   }
1.6       albertel 8328: }
                   8329: 
1.112     bowersj2 8330: =pod
                   8331: 
1.648     raeburn  8332: =item * &cacheheader() 
1.112     bowersj2 8333: 
                   8334: returns cache-controlling header code
                   8335: 
                   8336: =cut
                   8337: 
1.7       albertel 8338: sub cacheheader {
1.258     albertel 8339:     unless ($env{'request.method'} eq 'GET') { return ''; }
1.216     albertel 8340:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime);
                   8341:     my $output .='<meta HTTP-EQUIV="Expires" CONTENT="'.$date.'" />
1.7       albertel 8342:                 <meta HTTP-EQUIV="Cache-control" CONTENT="no-cache" />
                   8343:                 <meta HTTP-EQUIV="Pragma" CONTENT="no-cache" />';
1.216     albertel 8344:     return $output;
1.7       albertel 8345: }
                   8346: 
1.112     bowersj2 8347: =pod
                   8348: 
1.648     raeburn  8349: =item * &no_cache($r) 
1.112     bowersj2 8350: 
                   8351: specifies header code to not have cache
                   8352: 
                   8353: =cut
                   8354: 
1.9       albertel 8355: sub no_cache {
1.216     albertel 8356:     my ($r) = @_;
                   8357:     if ($ENV{'REQUEST_METHOD'} ne 'GET' &&
1.258     albertel 8358: 	$env{'request.method'} ne 'GET') { return ''; }
1.216     albertel 8359:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime(time));
                   8360:     $r->no_cache(1);
                   8361:     $r->header_out("Expires" => $date);
                   8362:     $r->header_out("Pragma" => "no-cache");
1.123     www      8363: }
                   8364: 
                   8365: sub content_type {
1.181     albertel 8366:     my ($r,$type,$charset) = @_;
1.299     foxr     8367:     if ($r) {
                   8368: 	#  Note that printout.pl calls this with undef for $r.
                   8369: 	&no_cache($r);
                   8370:     }
1.258     albertel 8371:     if ($env{'browser.mathml'} && $type eq 'text/html') { $type='text/xml'; }
1.181     albertel 8372:     unless ($charset) {
                   8373: 	$charset=&Apache::lonlocal::current_encoding;
                   8374:     }
                   8375:     if ($charset) { $type.='; charset='.$charset; }
                   8376:     if ($r) {
                   8377: 	$r->content_type($type);
                   8378:     } else {
                   8379: 	print("Content-type: $type\n\n");
                   8380:     }
1.9       albertel 8381: }
1.25      albertel 8382: 
1.112     bowersj2 8383: =pod
                   8384: 
1.648     raeburn  8385: =item * &add_to_env($name,$value) 
1.112     bowersj2 8386: 
1.258     albertel 8387: adds $name to the %env hash with value
1.112     bowersj2 8388: $value, if $name already exists, the entry is converted to an array
                   8389: reference and $value is added to the array.
                   8390: 
                   8391: =cut
                   8392: 
1.25      albertel 8393: sub add_to_env {
                   8394:   my ($name,$value)=@_;
1.258     albertel 8395:   if (defined($env{$name})) {
                   8396:     if (ref($env{$name})) {
1.25      albertel 8397:       #already have multiple values
1.258     albertel 8398:       push(@{ $env{$name} },$value);
1.25      albertel 8399:     } else {
                   8400:       #first time seeing multiple values, convert hash entry to an arrayref
1.258     albertel 8401:       my $first=$env{$name};
                   8402:       undef($env{$name});
                   8403:       push(@{ $env{$name} },$first,$value);
1.25      albertel 8404:     }
                   8405:   } else {
1.258     albertel 8406:     $env{$name}=$value;
1.25      albertel 8407:   }
1.31      albertel 8408: }
1.149     albertel 8409: 
                   8410: =pod
                   8411: 
1.648     raeburn  8412: =item * &get_env_multiple($name) 
1.149     albertel 8413: 
1.258     albertel 8414: gets $name from the %env hash, it seemlessly handles the cases where multiple
1.149     albertel 8415: values may be defined and end up as an array ref.
                   8416: 
                   8417: returns an array of values
                   8418: 
                   8419: =cut
                   8420: 
                   8421: sub get_env_multiple {
                   8422:     my ($name) = @_;
                   8423:     my @values;
1.258     albertel 8424:     if (defined($env{$name})) {
1.149     albertel 8425:         # exists is it an array
1.258     albertel 8426:         if (ref($env{$name})) {
                   8427:             @values=@{ $env{$name} };
1.149     albertel 8428:         } else {
1.258     albertel 8429:             $values[0]=$env{$name};
1.149     albertel 8430:         }
                   8431:     }
                   8432:     return(@values);
                   8433: }
                   8434: 
1.660     raeburn  8435: sub ask_for_embedded_content {
                   8436:     my ($actionurl,$state,$allfiles,$codebase,$args)=@_;
                   8437:     my $upload_output = '
                   8438:    <form name="upload_embedded" action="'.$actionurl.'"
                   8439:                   method="post" enctype="multipart/form-data">';
                   8440:     $upload_output .= $state;
1.661     raeburn  8441:     $upload_output .= '<b>Upload embedded files</b>:<br />'.&start_data_table();
1.660     raeburn  8442: 
                   8443:     my $num = 0;
                   8444:     foreach my $embed_file (sort {lc($a) cmp lc($b)} keys(%{$allfiles})) {
                   8445:         $upload_output .= &start_data_table_row().
                   8446:             '<td>'.$embed_file.'</td><td>';
                   8447:         if ($args->{'ignore_remote_references'}
                   8448:             && $embed_file =~ m{^\w+://}) {
                   8449:             $upload_output.='<span class="LC_warning">'.&mt("URL points to other server.").'</span>';
                   8450:         } elsif ($args->{'error_on_invalid_names'}
                   8451:             && $embed_file ne &Apache::lonnet::clean_filename($embed_file,{'keep_path' => 1,})) {
                   8452: 
                   8453:             $upload_output.='<span class="LC_warning">'.&mt("Invalid characters").'</span>';
                   8454: 
                   8455:         } else {
                   8456:             $upload_output .='
1.661     raeburn  8457:            <input name="embedded_item_'.$num.'" type="file" value="" />
1.660     raeburn  8458:            <input name="embedded_orig_'.$num.'" type="hidden" value="'.&escape($embed_file).'" />';
                   8459:             my $attrib = join(':',@{$$allfiles{$embed_file}});
                   8460:             $upload_output .=
                   8461:                 "\n\t\t".
                   8462:                 '<input name="embedded_attrib_'.$num.'" type="hidden" value="'.
                   8463:                 $attrib.'" />';
                   8464:             if (exists($$codebase{$embed_file})) {
                   8465:                 $upload_output .=
                   8466:                     "\n\t\t".
                   8467:                     '<input name="codebase_'.$num.'" type="hidden" value="'.
                   8468:                     &escape($$codebase{$embed_file}).'" />';
                   8469:             }
                   8470:         }
                   8471:         $upload_output .= '</td>'.&Apache::loncommon::end_data_table_row();
                   8472:         $num++;
                   8473:     }
                   8474:     $upload_output .= &Apache::loncommon::end_data_table().'<br />
                   8475:    <input type ="hidden" name="number_embedded_items" value="'.$num.'" />
                   8476:    <input type ="submit" value="'.&mt('Upload Listed Files').'" />
                   8477:    '.&mt('(only files for which a location has been provided will be uploaded)').'
                   8478:    </form>';
                   8479:     return $upload_output;
                   8480: }
                   8481: 
1.661     raeburn  8482: sub upload_embedded {
                   8483:     my ($context,$dirpath,$uname,$udom,$dir_root,$url_root,$group,$disk_quota,
                   8484:         $current_disk_usage) = @_;
                   8485:     my $output;
                   8486:     for (my $i=0; $i<$env{'form.number_embedded_items'}; $i++) {
                   8487:         next if (!exists($env{'form.embedded_item_'.$i.'.filename'}));
                   8488:         my $orig_uploaded_filename =
                   8489:             $env{'form.embedded_item_'.$i.'.filename'};
                   8490: 
                   8491:         $env{'form.embedded_orig_'.$i} =
                   8492:             &unescape($env{'form.embedded_orig_'.$i});
                   8493:         my ($path,$fname) =
                   8494:             ($env{'form.embedded_orig_'.$i} =~ m{(.*/)([^/]*)});
                   8495:         # no path, whole string is fname
                   8496:         if (!$fname) { $fname = $env{'form.embedded_orig_'.$i} };
                   8497: 
                   8498:         $path = $env{'form.currentpath'}.$path;
                   8499:         $fname = &Apache::lonnet::clean_filename($fname);
                   8500:         # See if there is anything left
                   8501:         next if ($fname eq '');
                   8502: 
                   8503:         # Check if file already exists as a file or directory.
                   8504:         my ($state,$msg);
                   8505:         if ($context eq 'portfolio') {
                   8506:             my $port_path = $dirpath;
                   8507:             if ($group ne '') {
                   8508:                 $port_path = "groups/$group/$port_path";
                   8509:             }
                   8510:             ($state,$msg) = &check_for_upload($path,$fname,$group,'embedded_item_'.$i,
                   8511:                                               $dir_root,$port_path,$disk_quota,
                   8512:                                               $current_disk_usage,$uname,$udom);
                   8513:             if ($state eq 'will_exceed_quota'
                   8514:                 || $state eq 'file_locked'
                   8515:                 || $state eq 'file_exists' ) {
                   8516:                 $output .= $msg;
                   8517:                 next;
                   8518:             }
                   8519:         } elsif (($context eq 'author') || ($context eq 'testbank')) {
                   8520:             ($state,$msg) = &check_for_existing($path,$fname,'embedded_item_'.$i);
                   8521:             if ($state eq 'exists') {
                   8522:                 $output .= $msg;
                   8523:                 next;
                   8524:             }
                   8525:         }
                   8526:         # Check if extension is valid
                   8527:         if (($fname =~ /\.(\w+)$/) &&
                   8528:             (&Apache::loncommon::fileembstyle($1) eq 'hdn')) {
                   8529:             $output .= &mt('Invalid file extension ([_1]) - reserved for LONCAPA use - rename the file with a different extension and re-upload. ',$1);
                   8530:             next;
                   8531:         } elsif (($fname =~ /\.(\w+)$/) &&
                   8532:                  (!defined(&Apache::loncommon::fileembstyle($1)))) {
                   8533:             $output .= &mt('Unrecognized file extension ([_1]) - rename the file with a proper extension and re-upload.',$1);
                   8534:             next;
                   8535:         } elsif ($fname=~/\.(\d+)\.(\w+)$/) {
                   8536:             $output .= &mt('File name not allowed - rename the file to remove the number immediately before the file extension([_1]) and re-upload.',$2);
                   8537:             next;
                   8538:         }
                   8539: 
                   8540:         $env{'form.embedded_item_'.$i.'.filename'}=$fname;
                   8541:         if ($context eq 'portfolio') {
                   8542:             my $result=
                   8543:                 &Apache::lonnet::userfileupload('embedded_item_'.$i,'',
                   8544:                                                 $dirpath.$path);
                   8545:             if ($result !~ m|^/uploaded/|) {
                   8546:                 $output .= '<span class="LC_error">'
                   8547:                       .&mt('An error occurred ([_1]) while trying to upload [_2] for embedded element [_3].'
                   8548:                            ,$result,$orig_uploaded_filename,$env{'form.embedded_orig_'.$i})
                   8549:                       .'</span><br />';
                   8550:                 next;
                   8551:             } else {
                   8552:                 $output .= '<p>'.&mt('Uploaded [_1]','<span class="LC_filename">'.
                   8553:                            $path.$fname.'</span>').'</p>';     
                   8554:             }
                   8555:         } else {
                   8556: # Save the file
                   8557:             my $target = $env{'form.embedded_item_'.$i};
                   8558:             my $fullpath = $dir_root.$dirpath.'/'.$path;
                   8559:             my $dest = $fullpath.$fname;
                   8560:             my $url = $url_root.$dirpath.'/'.$path.$fname;
                   8561:             my @parts=split(/\//,$fullpath);
                   8562:             my $count;
                   8563:             my $filepath = $dir_root;
                   8564:             for ($count=4;$count<=$#parts;$count++) {
                   8565:                 $filepath .= "/$parts[$count]";
                   8566:                 if ((-e $filepath)!=1) {
                   8567:                     mkdir($filepath,0770);
                   8568:                 }
                   8569:             }
                   8570:             my $fh;
                   8571:             if (!open($fh,'>'.$dest)) {
                   8572:                 &Apache::lonnet::logthis('Failed to create '.$dest);
                   8573:                 $output .= '<span class="LC_error">'.
                   8574:                            &mt('An error occurred while trying to upload [_1] for embedded element [_2].',$orig_uploaded_filename,$env{'form.embedded_orig_'.$i}).
                   8575:                            '</span><br />';
                   8576:             } else {
                   8577:                 if (!print $fh $env{'form.embedded_item_'.$i}) {
                   8578:                     &Apache::lonnet::logthis('Failed to write to '.$dest);
                   8579:                     $output .= '<span class="LC_error">'.
                   8580:                               &mt('An error occurred while writing the file [_1] for embedded element [_2].',$orig_uploaded_filename,$env{'form.embedded_orig_'.$i}).
                   8581:                               '</span><br />';
                   8582:                 } else {
                   8583:                     if ($context eq 'testbank') {
                   8584:                         $output .= &mt('Embedded file uploaded successfully:').
                   8585:                                    '&nbsp;<a href="'.$url.'">'.
                   8586:                                    $orig_uploaded_filename.'</a><br />';
                   8587:                     } else {
1.705     tempelho 8588:                         $output .= '<span class=\"LC_fontsize_large\">'.
1.661     raeburn  8589:                                    &mt('View embedded file: [_1]','<a href="'.$url.'">'.
1.705     tempelho 8590:                                    $orig_uploaded_filename.'</a>').'</span><br />';
1.661     raeburn  8591:                     }
                   8592:                 }
                   8593:                 close($fh);
                   8594:             }
                   8595:         }
                   8596:     }
                   8597:     return $output;
                   8598: }
                   8599: 
                   8600: sub check_for_existing {
                   8601:     my ($path,$fname,$element) = @_;
                   8602:     my ($state,$msg);
                   8603:     if (-d $path.'/'.$fname) {
                   8604:         $state = 'exists';
                   8605:         $msg = &mt('Unable to upload [_1]. A directory by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$path);
                   8606:     } elsif (-e $path.'/'.$fname) {
                   8607:         $state = 'exists';
                   8608:         $msg = &mt('Unable to upload [_1]. A file by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$path);
                   8609:     }
                   8610:     if ($state eq 'exists') {
                   8611:         $msg = '<span class="LC_error">'.$msg.'</span><br />';
                   8612:     }
                   8613:     return ($state,$msg);
                   8614: }
                   8615: 
                   8616: sub check_for_upload {
                   8617:     my ($path,$fname,$group,$element,$portfolio_root,$port_path,
                   8618:         $disk_quota,$current_disk_usage,$uname,$udom) = @_;
                   8619:     my $filesize = (length($env{'form.'.$element})) / 1000; #express in k (1024?)
                   8620:     my $getpropath = 1;
                   8621:     my @dir_list = &Apache::lonnet::dirlist($portfolio_root.$path,$udom,$uname,
                   8622:                                             $getpropath);
                   8623:     my $found_file = 0;
                   8624:     my $locked_file = 0;
                   8625:     foreach my $line (@dir_list) {
                   8626:         my ($file_name)=split(/\&/,$line,2);
                   8627:         if ($file_name eq $fname){
                   8628:             $file_name = $path.$file_name;
                   8629:             if ($group ne '') {
                   8630:                 $file_name = $group.$file_name;
                   8631:             }
                   8632:             $found_file = 1;
                   8633:             if (&Apache::lonnet::is_locked($file_name,$udom,$uname) eq 'true') {
                   8634:                 $locked_file = 1;
                   8635:             }
                   8636:         }
                   8637:     }
                   8638:     if (($current_disk_usage + $filesize) > $disk_quota){
                   8639:         my $msg = '<span class="LC_error">'.
                   8640:                 &mt('Unable to upload [_1]. (size = [_2] kilobytes). Disk quota will be exceeded.','<span class="LC_filename">'.$fname.'</span>',$filesize).'</span>'.
                   8641:                   '<br />'.&mt('Disk quota is [_1] kilobytes. Your current disk usage is [_2] kilobytes.',$disk_quota,$current_disk_usage);
                   8642:         return ('will_exceed_quota',$msg);
                   8643:     } elsif ($found_file) {
                   8644:         if ($locked_file) {
                   8645:             my $msg = '<span class="LC_error">';
                   8646:             $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>');
                   8647:             $msg .= '</span><br />';
                   8648:             $msg .= &mt('You will be able to rename or delete existing [_1] after a grade has been assigned.','<span class="LC_filename">'.$fname.'</span>');
                   8649:             return ('file_locked',$msg);
                   8650:         } else {
                   8651:             my $msg = '<span class="LC_error">';
                   8652:             $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'});
                   8653:             $msg .= '</span>';
                   8654:             $msg .= '<br />';
                   8655:             $msg .= &mt('To upload, rename or delete existing [_1] in [_2].','<span class="LC_filename">'.$fname.'</span>', $port_path.$env{'form.currentpath'});
                   8656:             return ('file_exists',$msg);
                   8657:         }
                   8658:     }
                   8659: }
                   8660: 
1.31      albertel 8661: 
1.41      ng       8662: =pod
1.45      matthew  8663: 
1.464     albertel 8664: =back
1.41      ng       8665: 
1.112     bowersj2 8666: =head1 CSV Upload/Handling functions
1.38      albertel 8667: 
1.41      ng       8668: =over 4
                   8669: 
1.648     raeburn  8670: =item * &upfile_store($r)
1.41      ng       8671: 
                   8672: Store uploaded file, $r should be the HTTP Request object,
1.258     albertel 8673: needs $env{'form.upfile'}
1.41      ng       8674: returns $datatoken to be put into hidden field
                   8675: 
                   8676: =cut
1.31      albertel 8677: 
                   8678: sub upfile_store {
                   8679:     my $r=shift;
1.258     albertel 8680:     $env{'form.upfile'}=~s/\r/\n/gs;
                   8681:     $env{'form.upfile'}=~s/\f/\n/gs;
                   8682:     $env{'form.upfile'}=~s/\n+/\n/gs;
                   8683:     $env{'form.upfile'}=~s/\n+$//gs;
1.31      albertel 8684: 
1.258     albertel 8685:     my $datatoken=$env{'user.name'}.'_'.$env{'user.domain'}.
                   8686: 	'_enroll_'.$env{'request.course.id'}.'_'.time.'_'.$$;
1.31      albertel 8687:     {
1.158     raeburn  8688:         my $datafile = $r->dir_config('lonDaemons').
                   8689:                            '/tmp/'.$datatoken.'.tmp';
                   8690:         if ( open(my $fh,">$datafile") ) {
1.258     albertel 8691:             print $fh $env{'form.upfile'};
1.158     raeburn  8692:             close($fh);
                   8693:         }
1.31      albertel 8694:     }
                   8695:     return $datatoken;
                   8696: }
                   8697: 
1.56      matthew  8698: =pod
                   8699: 
1.648     raeburn  8700: =item * &load_tmp_file($r)
1.41      ng       8701: 
                   8702: Load uploaded file from tmp, $r should be the HTTP Request object,
1.258     albertel 8703: needs $env{'form.datatoken'},
                   8704: sets $env{'form.upfile'} to the contents of the file
1.41      ng       8705: 
                   8706: =cut
1.31      albertel 8707: 
                   8708: sub load_tmp_file {
                   8709:     my $r=shift;
                   8710:     my @studentdata=();
                   8711:     {
1.158     raeburn  8712:         my $studentfile = $r->dir_config('lonDaemons').
1.258     albertel 8713:                               '/tmp/'.$env{'form.datatoken'}.'.tmp';
1.158     raeburn  8714:         if ( open(my $fh,"<$studentfile") ) {
                   8715:             @studentdata=<$fh>;
                   8716:             close($fh);
                   8717:         }
1.31      albertel 8718:     }
1.258     albertel 8719:     $env{'form.upfile'}=join('',@studentdata);
1.31      albertel 8720: }
                   8721: 
1.56      matthew  8722: =pod
                   8723: 
1.648     raeburn  8724: =item * &upfile_record_sep()
1.41      ng       8725: 
                   8726: Separate uploaded file into records
                   8727: returns array of records,
1.258     albertel 8728: needs $env{'form.upfile'} and $env{'form.upfiletype'}
1.41      ng       8729: 
                   8730: =cut
1.31      albertel 8731: 
                   8732: sub upfile_record_sep {
1.258     albertel 8733:     if ($env{'form.upfiletype'} eq 'xml') {
1.31      albertel 8734:     } else {
1.248     albertel 8735: 	my @records;
1.258     albertel 8736: 	foreach my $line (split(/\n/,$env{'form.upfile'})) {
1.248     albertel 8737: 	    if ($line=~/^\s*$/) { next; }
                   8738: 	    push(@records,$line);
                   8739: 	}
                   8740: 	return @records;
1.31      albertel 8741:     }
                   8742: }
                   8743: 
1.56      matthew  8744: =pod
                   8745: 
1.648     raeburn  8746: =item * &record_sep($record)
1.41      ng       8747: 
1.258     albertel 8748: Separate a record into fields $record should be an item from the upfile_record_sep(), needs $env{'form.upfiletype'}
1.41      ng       8749: 
                   8750: =cut
                   8751: 
1.263     www      8752: sub takeleft {
                   8753:     my $index=shift;
                   8754:     return substr('0000'.$index,-4,4);
                   8755: }
                   8756: 
1.31      albertel 8757: sub record_sep {
                   8758:     my $record=shift;
                   8759:     my %components=();
1.258     albertel 8760:     if ($env{'form.upfiletype'} eq 'xml') {
                   8761:     } elsif ($env{'form.upfiletype'} eq 'space') {
1.31      albertel 8762:         my $i=0;
1.356     albertel 8763:         foreach my $field (split(/\s+/,$record)) {
1.31      albertel 8764:             $field=~s/^(\"|\')//;
                   8765:             $field=~s/(\"|\')$//;
1.263     www      8766:             $components{&takeleft($i)}=$field;
1.31      albertel 8767:             $i++;
                   8768:         }
1.258     albertel 8769:     } elsif ($env{'form.upfiletype'} eq 'tab') {
1.31      albertel 8770:         my $i=0;
1.356     albertel 8771:         foreach my $field (split(/\t/,$record)) {
1.31      albertel 8772:             $field=~s/^(\"|\')//;
                   8773:             $field=~s/(\"|\')$//;
1.263     www      8774:             $components{&takeleft($i)}=$field;
1.31      albertel 8775:             $i++;
                   8776:         }
                   8777:     } else {
1.561     www      8778:         my $separator=',';
1.480     banghart 8779:         if ($env{'form.upfiletype'} eq 'semisv') {
1.561     www      8780:             $separator=';';
1.480     banghart 8781:         }
1.31      albertel 8782:         my $i=0;
1.561     www      8783: # the character we are looking for to indicate the end of a quote or a record 
                   8784:         my $looking_for=$separator;
                   8785: # do not add the characters to the fields
                   8786:         my $ignore=0;
                   8787: # we just encountered a separator (or the beginning of the record)
                   8788:         my $just_found_separator=1;
                   8789: # store the field we are working on here
                   8790:         my $field='';
                   8791: # work our way through all characters in record
                   8792:         foreach my $character ($record=~/(.)/g) {
                   8793:             if ($character eq $looking_for) {
                   8794:                if ($character ne $separator) {
                   8795: # Found the end of a quote, again looking for separator
                   8796:                   $looking_for=$separator;
                   8797:                   $ignore=1;
                   8798:                } else {
                   8799: # Found a separator, store away what we got
                   8800:                   $components{&takeleft($i)}=$field;
                   8801: 	          $i++;
                   8802:                   $just_found_separator=1;
                   8803:                   $ignore=0;
                   8804:                   $field='';
                   8805:                }
                   8806:                next;
                   8807:             }
                   8808: # single or double quotation marks after a separator indicate beginning of a quote
                   8809: # we are now looking for the end of the quote and need to ignore separators
                   8810:             if ((($character eq '"') || ($character eq "'")) && ($just_found_separator))  {
                   8811:                $looking_for=$character;
                   8812:                next;
                   8813:             }
                   8814: # ignore would be true after we reached the end of a quote
                   8815:             if ($ignore) { next; }
                   8816:             if (($just_found_separator) && ($character=~/\s/)) { next; }
                   8817:             $field.=$character;
                   8818:             $just_found_separator=0; 
1.31      albertel 8819:         }
1.561     www      8820: # catch the very last entry, since we never encountered the separator
                   8821:         $components{&takeleft($i)}=$field;
1.31      albertel 8822:     }
                   8823:     return %components;
                   8824: }
                   8825: 
1.144     matthew  8826: ######################################################
                   8827: ######################################################
                   8828: 
1.56      matthew  8829: =pod
                   8830: 
1.648     raeburn  8831: =item * &upfile_select_html()
1.41      ng       8832: 
1.144     matthew  8833: Return HTML code to select a file from the users machine and specify 
                   8834: the file type.
1.41      ng       8835: 
                   8836: =cut
                   8837: 
1.144     matthew  8838: ######################################################
                   8839: ######################################################
1.31      albertel 8840: sub upfile_select_html {
1.144     matthew  8841:     my %Types = (
                   8842:                  csv   => &mt('CSV (comma separated values, spreadsheet)'),
1.480     banghart 8843:                  semisv => &mt('Semicolon separated values'),
1.144     matthew  8844:                  space => &mt('Space separated'),
                   8845:                  tab   => &mt('Tabulator separated'),
                   8846: #                 xml   => &mt('HTML/XML'),
                   8847:                  );
                   8848:     my $Str = '<input type="file" name="upfile" size="50" />'.
1.727     riegler  8849:         '<br />'.&mt('Type').': <select name="upfiletype">';
1.144     matthew  8850:     foreach my $type (sort(keys(%Types))) {
                   8851:         $Str .= '<option value="'.$type.'" >'.$Types{$type}."</option>\n";
                   8852:     }
                   8853:     $Str .= "</select>\n";
                   8854:     return $Str;
1.31      albertel 8855: }
                   8856: 
1.301     albertel 8857: sub get_samples {
                   8858:     my ($records,$toget) = @_;
                   8859:     my @samples=({});
                   8860:     my $got=0;
                   8861:     foreach my $rec (@$records) {
                   8862: 	my %temp = &record_sep($rec);
                   8863: 	if (! grep(/\S/, values(%temp))) { next; }
                   8864: 	if (%temp) {
                   8865: 	    $samples[$got]=\%temp;
                   8866: 	    $got++;
                   8867: 	    if ($got == $toget) { last; }
                   8868: 	}
                   8869:     }
                   8870:     return \@samples;
                   8871: }
                   8872: 
1.144     matthew  8873: ######################################################
                   8874: ######################################################
                   8875: 
1.56      matthew  8876: =pod
                   8877: 
1.648     raeburn  8878: =item * &csv_print_samples($r,$records)
1.41      ng       8879: 
                   8880: Prints a table of sample values from each column uploaded $r is an
                   8881: Apache Request ref, $records is an arrayref from
                   8882: &Apache::loncommon::upfile_record_sep
                   8883: 
                   8884: =cut
                   8885: 
1.144     matthew  8886: ######################################################
                   8887: ######################################################
1.31      albertel 8888: sub csv_print_samples {
                   8889:     my ($r,$records) = @_;
1.662     bisitz   8890:     my $samples = &get_samples($records,5);
1.301     albertel 8891: 
1.594     raeburn  8892:     $r->print(&mt('Samples').'<br />'.&start_data_table().
                   8893:               &start_data_table_header_row());
1.356     albertel 8894:     foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) { 
1.845     bisitz   8895:         $r->print('<th>'.&mt('Column [_1]',($sample+1)).'</th>'); }
1.594     raeburn  8896:     $r->print(&end_data_table_header_row());
1.301     albertel 8897:     foreach my $hash (@$samples) {
1.594     raeburn  8898: 	$r->print(&start_data_table_row());
1.356     albertel 8899: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
1.31      albertel 8900: 	    $r->print('<td>');
1.356     albertel 8901: 	    if (defined($$hash{$sample})) { $r->print($$hash{$sample}); }
1.31      albertel 8902: 	    $r->print('</td>');
                   8903: 	}
1.594     raeburn  8904: 	$r->print(&end_data_table_row());
1.31      albertel 8905:     }
1.594     raeburn  8906:     $r->print(&end_data_table().'<br />'."\n");
1.31      albertel 8907: }
                   8908: 
1.144     matthew  8909: ######################################################
                   8910: ######################################################
                   8911: 
1.56      matthew  8912: =pod
                   8913: 
1.648     raeburn  8914: =item * &csv_print_select_table($r,$records,$d)
1.41      ng       8915: 
                   8916: Prints a table to create associations between values and table columns.
1.144     matthew  8917: 
1.41      ng       8918: $r is an Apache Request ref,
                   8919: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
1.174     matthew  8920: $d is an array of 2 element arrays (internal name, displayed name,defaultcol)
1.41      ng       8921: 
                   8922: =cut
                   8923: 
1.144     matthew  8924: ######################################################
                   8925: ######################################################
1.31      albertel 8926: sub csv_print_select_table {
                   8927:     my ($r,$records,$d) = @_;
1.301     albertel 8928:     my $i=0;
                   8929:     my $samples = &get_samples($records,1);
1.144     matthew  8930:     $r->print(&mt('Associate columns with student attributes.')."\n".
1.594     raeburn  8931: 	      &start_data_table().&start_data_table_header_row().
1.144     matthew  8932:               '<th>'.&mt('Attribute').'</th>'.
1.594     raeburn  8933:               '<th>'.&mt('Column').'</th>'.
                   8934:               &end_data_table_header_row()."\n");
1.356     albertel 8935:     foreach my $array_ref (@$d) {
                   8936: 	my ($value,$display,$defaultcol)=@{ $array_ref };
1.729     raeburn  8937: 	$r->print(&start_data_table_row().'<td>'.$display.'</td>');
1.31      albertel 8938: 
1.875     bisitz   8939: 	$r->print('<td><select name="f'.$i.'"'.
1.32      matthew  8940: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
1.31      albertel 8941: 	$r->print('<option value="none"></option>');
1.356     albertel 8942: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
                   8943: 	    $r->print('<option value="'.$sample.'"'.
                   8944:                       ($sample eq $defaultcol ? ' selected="selected" ' : '').
1.662     bisitz   8945:                       '>'.&mt('Column [_1]',($sample+1)).'</option>');
1.31      albertel 8946: 	}
1.594     raeburn  8947: 	$r->print('</select></td>'.&end_data_table_row()."\n");
1.31      albertel 8948: 	$i++;
                   8949:     }
1.594     raeburn  8950:     $r->print(&end_data_table());
1.31      albertel 8951:     $i--;
                   8952:     return $i;
                   8953: }
1.56      matthew  8954: 
1.144     matthew  8955: ######################################################
                   8956: ######################################################
                   8957: 
1.56      matthew  8958: =pod
1.31      albertel 8959: 
1.648     raeburn  8960: =item * &csv_samples_select_table($r,$records,$d)
1.41      ng       8961: 
                   8962: Prints a table of sample values from the upload and can make associate samples to internal names.
                   8963: 
                   8964: $r is an Apache Request ref,
                   8965: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
                   8966: $d is an array of 2 element arrays (internal name, displayed name)
                   8967: 
                   8968: =cut
                   8969: 
1.144     matthew  8970: ######################################################
                   8971: ######################################################
1.31      albertel 8972: sub csv_samples_select_table {
                   8973:     my ($r,$records,$d) = @_;
                   8974:     my $i=0;
1.144     matthew  8975:     #
1.662     bisitz   8976:     my $max_samples = 5;
                   8977:     my $samples = &get_samples($records,$max_samples);
1.594     raeburn  8978:     $r->print(&start_data_table().
                   8979:               &start_data_table_header_row().'<th>'.
                   8980:               &mt('Field').'</th><th>'.&mt('Samples').'</th>'.
                   8981:               &end_data_table_header_row());
1.301     albertel 8982: 
                   8983:     foreach my $key (sort(keys(%{ $samples->[0] }))) {
1.594     raeburn  8984: 	$r->print(&start_data_table_row().'<td><select name="f'.$i.'"'.
1.32      matthew  8985: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
1.301     albertel 8986: 	foreach my $option (@$d) {
                   8987: 	    my ($value,$display,$defaultcol)=@{ $option };
1.174     matthew  8988: 	    $r->print('<option value="'.$value.'"'.
1.253     albertel 8989:                       ($i eq $defaultcol ? ' selected="selected" ':'').'>'.
1.174     matthew  8990:                       $display.'</option>');
1.31      albertel 8991: 	}
                   8992: 	$r->print('</select></td><td>');
1.662     bisitz   8993: 	foreach my $line (0..($max_samples-1)) {
1.301     albertel 8994: 	    if (defined($samples->[$line]{$key})) { 
                   8995: 		$r->print($samples->[$line]{$key}."<br />\n"); 
                   8996: 	    }
                   8997: 	}
1.594     raeburn  8998: 	$r->print('</td>'.&end_data_table_row());
1.31      albertel 8999: 	$i++;
                   9000:     }
1.594     raeburn  9001:     $r->print(&end_data_table());
1.31      albertel 9002:     $i--;
                   9003:     return($i);
1.115     matthew  9004: }
                   9005: 
1.144     matthew  9006: ######################################################
                   9007: ######################################################
                   9008: 
1.115     matthew  9009: =pod
                   9010: 
1.648     raeburn  9011: =item * &clean_excel_name($name)
1.115     matthew  9012: 
                   9013: Returns a replacement for $name which does not contain any illegal characters.
                   9014: 
                   9015: =cut
                   9016: 
1.144     matthew  9017: ######################################################
                   9018: ######################################################
1.115     matthew  9019: sub clean_excel_name {
                   9020:     my ($name) = @_;
                   9021:     $name =~ s/[:\*\?\/\\]//g;
                   9022:     if (length($name) > 31) {
                   9023:         $name = substr($name,0,31);
                   9024:     }
                   9025:     return $name;
1.25      albertel 9026: }
1.84      albertel 9027: 
1.85      albertel 9028: =pod
                   9029: 
1.648     raeburn  9030: =item * &check_if_partid_hidden($id,$symb,$udom,$uname)
1.85      albertel 9031: 
                   9032: Returns either 1 or undef
                   9033: 
                   9034: 1 if the part is to be hidden, undef if it is to be shown
                   9035: 
                   9036: Arguments are:
                   9037: 
                   9038: $id the id of the part to be checked
                   9039: $symb, optional the symb of the resource to check
                   9040: $udom, optional the domain of the user to check for
                   9041: $uname, optional the username of the user to check for
                   9042: 
                   9043: =cut
1.84      albertel 9044: 
                   9045: sub check_if_partid_hidden {
                   9046:     my ($id,$symb,$udom,$uname) = @_;
1.133     albertel 9047:     my $hiddenparts=&Apache::lonnet::EXT('resource.0.hiddenparts',
1.84      albertel 9048: 					 $symb,$udom,$uname);
1.141     albertel 9049:     my $truth=1;
                   9050:     #if the string starts with !, then the list is the list to show not hide
                   9051:     if ($hiddenparts=~s/^\s*!//) { $truth=undef; }
1.84      albertel 9052:     my @hiddenlist=split(/,/,$hiddenparts);
                   9053:     foreach my $checkid (@hiddenlist) {
1.141     albertel 9054: 	if ($checkid =~ /^\s*\Q$id\E\s*$/) { return $truth; }
1.84      albertel 9055:     }
1.141     albertel 9056:     return !$truth;
1.84      albertel 9057: }
1.127     matthew  9058: 
1.138     matthew  9059: 
                   9060: ############################################################
                   9061: ############################################################
                   9062: 
                   9063: =pod
                   9064: 
1.157     matthew  9065: =back 
                   9066: 
1.138     matthew  9067: =head1 cgi-bin script and graphing routines
                   9068: 
1.157     matthew  9069: =over 4
                   9070: 
1.648     raeburn  9071: =item * &get_cgi_id()
1.138     matthew  9072: 
                   9073: Inputs: none
                   9074: 
                   9075: Returns an id which can be used to pass environment variables
                   9076: to various cgi-bin scripts.  These environment variables will
                   9077: be removed from the users environment after a given time by
                   9078: the routine &Apache::lonnet::transfer_profile_to_env.
                   9079: 
                   9080: =cut
                   9081: 
                   9082: ############################################################
                   9083: ############################################################
1.152     albertel 9084: my $uniq=0;
1.136     matthew  9085: sub get_cgi_id {
1.154     albertel 9086:     $uniq=($uniq+1)%100000;
1.280     albertel 9087:     return (time.'_'.$$.'_'.$uniq);
1.136     matthew  9088: }
                   9089: 
1.127     matthew  9090: ############################################################
                   9091: ############################################################
                   9092: 
                   9093: =pod
                   9094: 
1.648     raeburn  9095: =item * &DrawBarGraph()
1.127     matthew  9096: 
1.138     matthew  9097: Facilitates the plotting of data in a (stacked) bar graph.
                   9098: Puts plot definition data into the users environment in order for 
                   9099: graph.png to plot it.  Returns an <img> tag for the plot.
                   9100: The bars on the plot are labeled '1','2',...,'n'.
                   9101: 
                   9102: Inputs:
                   9103: 
                   9104: =over 4
                   9105: 
                   9106: =item $Title: string, the title of the plot
                   9107: 
                   9108: =item $xlabel: string, text describing the X-axis of the plot
                   9109: 
                   9110: =item $ylabel: string, text describing the Y-axis of the plot
                   9111: 
                   9112: =item $Max: scalar, the maximum Y value to use in the plot
                   9113: If $Max is < any data point, the graph will not be rendered.
                   9114: 
1.140     matthew  9115: =item $colors: array ref holding the colors to be used for the data sets when
1.138     matthew  9116: they are plotted.  If undefined, default values will be used.
                   9117: 
1.178     matthew  9118: =item $labels: array ref holding the labels to use on the x-axis for the bars.
                   9119: 
1.138     matthew  9120: =item @Values: An array of array references.  Each array reference holds data
                   9121: to be plotted in a stacked bar chart.
                   9122: 
1.239     matthew  9123: =item If the final element of @Values is a hash reference the key/value
                   9124: pairs will be added to the graph definition.
                   9125: 
1.138     matthew  9126: =back
                   9127: 
                   9128: Returns:
                   9129: 
                   9130: An <img> tag which references graph.png and the appropriate identifying
                   9131: information for the plot.
                   9132: 
1.127     matthew  9133: =cut
                   9134: 
                   9135: ############################################################
                   9136: ############################################################
1.134     matthew  9137: sub DrawBarGraph {
1.178     matthew  9138:     my ($Title,$xlabel,$ylabel,$Max,$colors,$labels,@Values)=@_;
1.134     matthew  9139:     #
                   9140:     if (! defined($colors)) {
                   9141:         $colors = ['#33ff00', 
                   9142:                   '#0033cc', '#990000', '#aaaa66', '#663399', '#ff9933',
                   9143:                   '#66ccff', '#ff9999', '#cccc33', '#660000', '#33cc66',
                   9144:                   ]; 
                   9145:     }
1.228     matthew  9146:     my $extra_settings = {};
                   9147:     if (ref($Values[-1]) eq 'HASH') {
                   9148:         $extra_settings = pop(@Values);
                   9149:     }
1.127     matthew  9150:     #
1.136     matthew  9151:     my $identifier = &get_cgi_id();
                   9152:     my $id = 'cgi.'.$identifier;        
1.129     matthew  9153:     if (! @Values || ref($Values[0]) ne 'ARRAY') {
1.127     matthew  9154:         return '';
                   9155:     }
1.225     matthew  9156:     #
                   9157:     my @Labels;
                   9158:     if (defined($labels)) {
                   9159:         @Labels = @$labels;
                   9160:     } else {
                   9161:         for (my $i=0;$i<@{$Values[0]};$i++) {
                   9162:             push (@Labels,$i+1);
                   9163:         }
                   9164:     }
                   9165:     #
1.129     matthew  9166:     my $NumBars = scalar(@{$Values[0]});
1.225     matthew  9167:     if ($NumBars < scalar(@Labels)) { $NumBars = scalar(@Labels); }
1.129     matthew  9168:     my %ValuesHash;
                   9169:     my $NumSets=1;
                   9170:     foreach my $array (@Values) {
                   9171:         next if (! ref($array));
1.136     matthew  9172:         $ValuesHash{$id.'.data.'.$NumSets++} = 
1.132     matthew  9173:             join(',',@$array);
1.129     matthew  9174:     }
1.127     matthew  9175:     #
1.136     matthew  9176:     my ($height,$width,$xskip,$bar_width) = (200,120,1,15);
1.225     matthew  9177:     if ($NumBars < 3) {
                   9178:         $width = 120+$NumBars*32;
1.220     matthew  9179:         $xskip = 1;
1.225     matthew  9180:         $bar_width = 30;
                   9181:     } elsif ($NumBars < 5) {
                   9182:         $width = 120+$NumBars*20;
                   9183:         $xskip = 1;
                   9184:         $bar_width = 20;
1.220     matthew  9185:     } elsif ($NumBars < 10) {
1.136     matthew  9186:         $width = 120+$NumBars*15;
                   9187:         $xskip = 1;
                   9188:         $bar_width = 15;
                   9189:     } elsif ($NumBars <= 25) {
                   9190:         $width = 120+$NumBars*11;
                   9191:         $xskip = 5;
                   9192:         $bar_width = 8;
                   9193:     } elsif ($NumBars <= 50) {
                   9194:         $width = 120+$NumBars*8;
                   9195:         $xskip = 5;
                   9196:         $bar_width = 4;
                   9197:     } else {
                   9198:         $width = 120+$NumBars*8;
                   9199:         $xskip = 5;
                   9200:         $bar_width = 4;
                   9201:     }
                   9202:     #
1.137     matthew  9203:     $Max = 1 if ($Max < 1);
                   9204:     if ( int($Max) < $Max ) {
                   9205:         $Max++;
                   9206:         $Max = int($Max);
                   9207:     }
1.127     matthew  9208:     $Title  = '' if (! defined($Title));
                   9209:     $xlabel = '' if (! defined($xlabel));
                   9210:     $ylabel = '' if (! defined($ylabel));
1.369     www      9211:     $ValuesHash{$id.'.title'}    = &escape($Title);
                   9212:     $ValuesHash{$id.'.xlabel'}   = &escape($xlabel);
                   9213:     $ValuesHash{$id.'.ylabel'}   = &escape($ylabel);
1.137     matthew  9214:     $ValuesHash{$id.'.y_max_value'} = $Max;
1.136     matthew  9215:     $ValuesHash{$id.'.NumBars'}  = $NumBars;
                   9216:     $ValuesHash{$id.'.NumSets'}  = $NumSets;
                   9217:     $ValuesHash{$id.'.PlotType'} = 'bar';
                   9218:     $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   9219:     $ValuesHash{$id.'.height'}   = $height;
                   9220:     $ValuesHash{$id.'.width'}    = $width;
                   9221:     $ValuesHash{$id.'.xskip'}    = $xskip;
                   9222:     $ValuesHash{$id.'.bar_width'} = $bar_width;
                   9223:     $ValuesHash{$id.'.labels'} = join(',',@Labels);
1.127     matthew  9224:     #
1.228     matthew  9225:     # Deal with other parameters
                   9226:     while (my ($key,$value) = each(%$extra_settings)) {
                   9227:         $ValuesHash{$id.'.'.$key} = $value;
                   9228:     }
                   9229:     #
1.646     raeburn  9230:     &Apache::lonnet::appenv(\%ValuesHash);
1.137     matthew  9231:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
                   9232: }
                   9233: 
                   9234: ############################################################
                   9235: ############################################################
                   9236: 
                   9237: =pod
                   9238: 
1.648     raeburn  9239: =item * &DrawXYGraph()
1.137     matthew  9240: 
1.138     matthew  9241: Facilitates the plotting of data in an XY graph.
                   9242: Puts plot definition data into the users environment in order for 
                   9243: graph.png to plot it.  Returns an <img> tag for the plot.
                   9244: 
                   9245: Inputs:
                   9246: 
                   9247: =over 4
                   9248: 
                   9249: =item $Title: string, the title of the plot
                   9250: 
                   9251: =item $xlabel: string, text describing the X-axis of the plot
                   9252: 
                   9253: =item $ylabel: string, text describing the Y-axis of the plot
                   9254: 
                   9255: =item $Max: scalar, the maximum Y value to use in the plot
                   9256: If $Max is < any data point, the graph will not be rendered.
                   9257: 
                   9258: =item $colors: Array ref containing the hex color codes for the data to be 
                   9259: plotted in.  If undefined, default values will be used.
                   9260: 
                   9261: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
                   9262: 
                   9263: =item $Ydata: Array ref containing Array refs.  
1.185     www      9264: Each of the contained arrays will be plotted as a separate curve.
1.138     matthew  9265: 
                   9266: =item %Values: hash indicating or overriding any default values which are 
                   9267: passed to graph.png.  
                   9268: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
                   9269: 
                   9270: =back
                   9271: 
                   9272: Returns:
                   9273: 
                   9274: An <img> tag which references graph.png and the appropriate identifying
                   9275: information for the plot.
                   9276: 
1.137     matthew  9277: =cut
                   9278: 
                   9279: ############################################################
                   9280: ############################################################
                   9281: sub DrawXYGraph {
                   9282:     my ($Title,$xlabel,$ylabel,$Max,$colors,$Xlabels,$Ydata,%Values)=@_;
                   9283:     #
                   9284:     # Create the identifier for the graph
                   9285:     my $identifier = &get_cgi_id();
                   9286:     my $id = 'cgi.'.$identifier;
                   9287:     #
                   9288:     $Title  = '' if (! defined($Title));
                   9289:     $xlabel = '' if (! defined($xlabel));
                   9290:     $ylabel = '' if (! defined($ylabel));
                   9291:     my %ValuesHash = 
                   9292:         (
1.369     www      9293:          $id.'.title'  => &escape($Title),
                   9294:          $id.'.xlabel' => &escape($xlabel),
                   9295:          $id.'.ylabel' => &escape($ylabel),
1.137     matthew  9296:          $id.'.y_max_value'=> $Max,
                   9297:          $id.'.labels'     => join(',',@$Xlabels),
                   9298:          $id.'.PlotType'   => 'XY',
                   9299:          );
                   9300:     #
                   9301:     if (defined($colors) && ref($colors) eq 'ARRAY') {
                   9302:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   9303:     }
                   9304:     #
                   9305:     if (! ref($Ydata) || ref($Ydata) ne 'ARRAY') {
                   9306:         return '';
                   9307:     }
                   9308:     my $NumSets=1;
1.138     matthew  9309:     foreach my $array (@{$Ydata}){
1.137     matthew  9310:         next if (! ref($array));
                   9311:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
                   9312:     }
1.138     matthew  9313:     $ValuesHash{$id.'.NumSets'} = $NumSets-1;
1.137     matthew  9314:     #
                   9315:     # Deal with other parameters
                   9316:     while (my ($key,$value) = each(%Values)) {
                   9317:         $ValuesHash{$id.'.'.$key} = $value;
1.127     matthew  9318:     }
                   9319:     #
1.646     raeburn  9320:     &Apache::lonnet::appenv(\%ValuesHash);
1.136     matthew  9321:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
                   9322: }
                   9323: 
                   9324: ############################################################
                   9325: ############################################################
                   9326: 
                   9327: =pod
                   9328: 
1.648     raeburn  9329: =item * &DrawXYYGraph()
1.138     matthew  9330: 
                   9331: Facilitates the plotting of data in an XY graph with two Y axes.
                   9332: Puts plot definition data into the users environment in order for 
                   9333: graph.png to plot it.  Returns an <img> tag for the plot.
                   9334: 
                   9335: Inputs:
                   9336: 
                   9337: =over 4
                   9338: 
                   9339: =item $Title: string, the title of the plot
                   9340: 
                   9341: =item $xlabel: string, text describing the X-axis of the plot
                   9342: 
                   9343: =item $ylabel: string, text describing the Y-axis of the plot
                   9344: 
                   9345: =item $colors: Array ref containing the hex color codes for the data to be 
                   9346: plotted in.  If undefined, default values will be used.
                   9347: 
                   9348: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
                   9349: 
                   9350: =item $Ydata1: The first data set
                   9351: 
                   9352: =item $Min1: The minimum value of the left Y-axis
                   9353: 
                   9354: =item $Max1: The maximum value of the left Y-axis
                   9355: 
                   9356: =item $Ydata2: The second data set
                   9357: 
                   9358: =item $Min2: The minimum value of the right Y-axis
                   9359: 
                   9360: =item $Max2: The maximum value of the left Y-axis
                   9361: 
                   9362: =item %Values: hash indicating or overriding any default values which are 
                   9363: passed to graph.png.  
                   9364: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
                   9365: 
                   9366: =back
                   9367: 
                   9368: Returns:
                   9369: 
                   9370: An <img> tag which references graph.png and the appropriate identifying
                   9371: information for the plot.
1.136     matthew  9372: 
                   9373: =cut
                   9374: 
                   9375: ############################################################
                   9376: ############################################################
1.137     matthew  9377: sub DrawXYYGraph {
                   9378:     my ($Title,$xlabel,$ylabel,$colors,$Xlabels,$Ydata1,$Min1,$Max1,
                   9379:                                         $Ydata2,$Min2,$Max2,%Values)=@_;
1.136     matthew  9380:     #
                   9381:     # Create the identifier for the graph
                   9382:     my $identifier = &get_cgi_id();
                   9383:     my $id = 'cgi.'.$identifier;
                   9384:     #
                   9385:     $Title  = '' if (! defined($Title));
                   9386:     $xlabel = '' if (! defined($xlabel));
                   9387:     $ylabel = '' if (! defined($ylabel));
                   9388:     my %ValuesHash = 
                   9389:         (
1.369     www      9390:          $id.'.title'  => &escape($Title),
                   9391:          $id.'.xlabel' => &escape($xlabel),
                   9392:          $id.'.ylabel' => &escape($ylabel),
1.136     matthew  9393:          $id.'.labels' => join(',',@$Xlabels),
                   9394:          $id.'.PlotType' => 'XY',
                   9395:          $id.'.NumSets' => 2,
1.137     matthew  9396:          $id.'.two_axes' => 1,
                   9397:          $id.'.y1_max_value' => $Max1,
                   9398:          $id.'.y1_min_value' => $Min1,
                   9399:          $id.'.y2_max_value' => $Max2,
                   9400:          $id.'.y2_min_value' => $Min2,
1.136     matthew  9401:          );
                   9402:     #
1.137     matthew  9403:     if (defined($colors) && ref($colors) eq 'ARRAY') {
                   9404:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   9405:     }
                   9406:     #
                   9407:     if (! ref($Ydata1) || ref($Ydata1) ne 'ARRAY' ||
                   9408:         ! ref($Ydata2) || ref($Ydata2) ne 'ARRAY'){
1.136     matthew  9409:         return '';
                   9410:     }
                   9411:     my $NumSets=1;
1.137     matthew  9412:     foreach my $array ($Ydata1,$Ydata2){
1.136     matthew  9413:         next if (! ref($array));
                   9414:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
1.137     matthew  9415:     }
                   9416:     #
                   9417:     # Deal with other parameters
                   9418:     while (my ($key,$value) = each(%Values)) {
                   9419:         $ValuesHash{$id.'.'.$key} = $value;
1.136     matthew  9420:     }
                   9421:     #
1.646     raeburn  9422:     &Apache::lonnet::appenv(\%ValuesHash);
1.130     albertel 9423:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
1.139     matthew  9424: }
                   9425: 
                   9426: ############################################################
                   9427: ############################################################
                   9428: 
                   9429: =pod
                   9430: 
1.157     matthew  9431: =back 
                   9432: 
1.139     matthew  9433: =head1 Statistics helper routines?  
                   9434: 
                   9435: Bad place for them but what the hell.
                   9436: 
1.157     matthew  9437: =over 4
                   9438: 
1.648     raeburn  9439: =item * &chartlink()
1.139     matthew  9440: 
                   9441: Returns a link to the chart for a specific student.  
                   9442: 
                   9443: Inputs:
                   9444: 
                   9445: =over 4
                   9446: 
                   9447: =item $linktext: The text of the link
                   9448: 
                   9449: =item $sname: The students username
                   9450: 
                   9451: =item $sdomain: The students domain
                   9452: 
                   9453: =back
                   9454: 
1.157     matthew  9455: =back
                   9456: 
1.139     matthew  9457: =cut
                   9458: 
                   9459: ############################################################
                   9460: ############################################################
                   9461: sub chartlink {
                   9462:     my ($linktext, $sname, $sdomain) = @_;
                   9463:     my $link = '<a href="/adm/statistics?reportSelected=student_assessment'.
1.369     www      9464:         '&amp;SelectedStudent='.&escape($sname.':'.$sdomain).
1.219     albertel 9465:         '&amp;chartoutputmode='.HTML::Entities::encode('html, with all links').
1.139     matthew  9466:        '">'.$linktext.'</a>';
1.153     matthew  9467: }
                   9468: 
                   9469: #######################################################
                   9470: #######################################################
                   9471: 
                   9472: =pod
                   9473: 
                   9474: =head1 Course Environment Routines
1.157     matthew  9475: 
                   9476: =over 4
1.153     matthew  9477: 
1.648     raeburn  9478: =item * &restore_course_settings()
1.153     matthew  9479: 
1.648     raeburn  9480: =item * &store_course_settings()
1.153     matthew  9481: 
                   9482: Restores/Store indicated form parameters from the course environment.
                   9483: Will not overwrite existing values of the form parameters.
                   9484: 
                   9485: Inputs: 
                   9486: a scalar describing the data (e.g. 'chart', 'problem_analysis')
                   9487: 
                   9488: a hash ref describing the data to be stored.  For example:
                   9489:    
                   9490: %Save_Parameters = ('Status' => 'scalar',
                   9491:     'chartoutputmode' => 'scalar',
                   9492:     'chartoutputdata' => 'scalar',
                   9493:     'Section' => 'array',
1.373     raeburn  9494:     'Group' => 'array',
1.153     matthew  9495:     'StudentData' => 'array',
                   9496:     'Maps' => 'array');
                   9497: 
                   9498: Returns: both routines return nothing
                   9499: 
1.631     raeburn  9500: =back
                   9501: 
1.153     matthew  9502: =cut
                   9503: 
                   9504: #######################################################
                   9505: #######################################################
                   9506: sub store_course_settings {
1.496     albertel 9507:     return &store_settings($env{'request.course.id'},@_);
                   9508: }
                   9509: 
                   9510: sub store_settings {
1.153     matthew  9511:     # save to the environment
                   9512:     # appenv the same items, just to be safe
1.300     albertel 9513:     my $udom  = $env{'user.domain'};
                   9514:     my $uname = $env{'user.name'};
1.496     albertel 9515:     my ($context,$prefix,$Settings) = @_;
1.153     matthew  9516:     my %SaveHash;
                   9517:     my %AppHash;
                   9518:     while (my ($setting,$type) = each(%$Settings)) {
1.496     albertel 9519:         my $basename = join('.','internal',$context,$prefix,$setting);
1.300     albertel 9520:         my $envname = 'environment.'.$basename;
1.258     albertel 9521:         if (exists($env{'form.'.$setting})) {
1.153     matthew  9522:             # Save this value away
                   9523:             if ($type eq 'scalar' &&
1.258     albertel 9524:                 (! exists($env{$envname}) || 
                   9525:                  $env{$envname} ne $env{'form.'.$setting})) {
                   9526:                 $SaveHash{$basename} = $env{'form.'.$setting};
                   9527:                 $AppHash{$envname}   = $env{'form.'.$setting};
1.153     matthew  9528:             } elsif ($type eq 'array') {
                   9529:                 my $stored_form;
1.258     albertel 9530:                 if (ref($env{'form.'.$setting})) {
1.153     matthew  9531:                     $stored_form = join(',',
                   9532:                                         map {
1.369     www      9533:                                             &escape($_);
1.258     albertel 9534:                                         } sort(@{$env{'form.'.$setting}}));
1.153     matthew  9535:                 } else {
                   9536:                     $stored_form = 
1.369     www      9537:                         &escape($env{'form.'.$setting});
1.153     matthew  9538:                 }
                   9539:                 # Determine if the array contents are the same.
1.258     albertel 9540:                 if ($stored_form ne $env{$envname}) {
1.153     matthew  9541:                     $SaveHash{$basename} = $stored_form;
                   9542:                     $AppHash{$envname}   = $stored_form;
                   9543:                 }
                   9544:             }
                   9545:         }
                   9546:     }
                   9547:     my $put_result = &Apache::lonnet::put('environment',\%SaveHash,
1.300     albertel 9548:                                           $udom,$uname);
1.153     matthew  9549:     if ($put_result !~ /^(ok|delayed)/) {
                   9550:         &Apache::lonnet::logthis('unable to save form parameters, '.
                   9551:                                  'got error:'.$put_result);
                   9552:     }
                   9553:     # Make sure these settings stick around in this session, too
1.646     raeburn  9554:     &Apache::lonnet::appenv(\%AppHash);
1.153     matthew  9555:     return;
                   9556: }
                   9557: 
                   9558: sub restore_course_settings {
1.499     albertel 9559:     return &restore_settings($env{'request.course.id'},@_);
1.496     albertel 9560: }
                   9561: 
                   9562: sub restore_settings {
                   9563:     my ($context,$prefix,$Settings) = @_;
1.153     matthew  9564:     while (my ($setting,$type) = each(%$Settings)) {
1.258     albertel 9565:         next if (exists($env{'form.'.$setting}));
1.496     albertel 9566:         my $envname = 'environment.internal.'.$context.'.'.$prefix.
1.153     matthew  9567:             '.'.$setting;
1.258     albertel 9568:         if (exists($env{$envname})) {
1.153     matthew  9569:             if ($type eq 'scalar') {
1.258     albertel 9570:                 $env{'form.'.$setting} = $env{$envname};
1.153     matthew  9571:             } elsif ($type eq 'array') {
1.258     albertel 9572:                 $env{'form.'.$setting} = [ 
1.153     matthew  9573:                                            map { 
1.369     www      9574:                                                &unescape($_); 
1.258     albertel 9575:                                            } split(',',$env{$envname})
1.153     matthew  9576:                                            ];
                   9577:             }
                   9578:         }
                   9579:     }
1.127     matthew  9580: }
                   9581: 
1.618     raeburn  9582: #######################################################
                   9583: #######################################################
                   9584: 
                   9585: =pod
                   9586: 
                   9587: =head1 Domain E-mail Routines  
                   9588: 
                   9589: =over 4
                   9590: 
1.648     raeburn  9591: =item * &build_recipient_list()
1.618     raeburn  9592: 
1.884     raeburn  9593: Build recipient lists for five types of e-mail:
1.766     raeburn  9594: (a) Error Reports, (b) Package Updates, (c) lonstatus warnings/errors
1.884     raeburn  9595: (d) Help requests, (e) Course requests needing approval,  generated by
                   9596: lonerrorhandler.pm, CHECKRPMS, loncron, lonsupportreq.pm and
                   9597: loncoursequeueadmin.pm respectively.
1.618     raeburn  9598: 
                   9599: Inputs:
1.619     raeburn  9600: defmail (scalar - email address of default recipient), 
1.618     raeburn  9601: mailing type (scalar - errormail, packagesmail, or helpdeskmail), 
1.619     raeburn  9602: defdom (domain for which to retrieve configuration settings),
                   9603: origmail (scalar - email address of recipient from loncapa.conf, 
                   9604: i.e., predates configuration by DC via domainprefs.pm 
1.618     raeburn  9605: 
1.655     raeburn  9606: Returns: comma separated list of addresses to which to send e-mail.
                   9607: 
                   9608: =back
1.618     raeburn  9609: 
                   9610: =cut
                   9611: 
                   9612: ############################################################
                   9613: ############################################################
                   9614: sub build_recipient_list {
1.619     raeburn  9615:     my ($defmail,$mailing,$defdom,$origmail) = @_;
1.618     raeburn  9616:     my @recipients;
                   9617:     my $otheremails;
                   9618:     my %domconfig =
                   9619:          &Apache::lonnet::get_dom('configuration',['contacts'],$defdom);
                   9620:     if (ref($domconfig{'contacts'}) eq 'HASH') {
1.766     raeburn  9621:         if (exists($domconfig{'contacts'}{$mailing})) {
                   9622:             if (ref($domconfig{'contacts'}{$mailing}) eq 'HASH') {
                   9623:                 my @contacts = ('adminemail','supportemail');
                   9624:                 foreach my $item (@contacts) {
                   9625:                     if ($domconfig{'contacts'}{$mailing}{$item}) {
                   9626:                         my $addr = $domconfig{'contacts'}{$item}; 
                   9627:                         if (!grep(/^\Q$addr\E$/,@recipients)) {
                   9628:                             push(@recipients,$addr);
                   9629:                         }
1.619     raeburn  9630:                     }
1.766     raeburn  9631:                     $otheremails = $domconfig{'contacts'}{$mailing}{'others'};
1.618     raeburn  9632:                 }
                   9633:             }
1.766     raeburn  9634:         } elsif ($origmail ne '') {
                   9635:             push(@recipients,$origmail);
1.618     raeburn  9636:         }
1.619     raeburn  9637:     } elsif ($origmail ne '') {
                   9638:         push(@recipients,$origmail);
1.618     raeburn  9639:     }
1.688     raeburn  9640:     if (defined($defmail)) {
                   9641:         if ($defmail ne '') {
                   9642:             push(@recipients,$defmail);
                   9643:         }
1.618     raeburn  9644:     }
                   9645:     if ($otheremails) {
1.619     raeburn  9646:         my @others;
                   9647:         if ($otheremails =~ /,/) {
                   9648:             @others = split(/,/,$otheremails);
1.618     raeburn  9649:         } else {
1.619     raeburn  9650:             push(@others,$otheremails);
                   9651:         }
                   9652:         foreach my $addr (@others) {
                   9653:             if (!grep(/^\Q$addr\E$/,@recipients)) {
                   9654:                 push(@recipients,$addr);
                   9655:             }
1.618     raeburn  9656:         }
                   9657:     }
1.619     raeburn  9658:     my $recipientlist = join(',',@recipients); 
1.618     raeburn  9659:     return $recipientlist;
                   9660: }
                   9661: 
1.127     matthew  9662: ############################################################
                   9663: ############################################################
1.154     albertel 9664: 
1.655     raeburn  9665: =pod
                   9666: 
                   9667: =head1 Course Catalog Routines
                   9668: 
                   9669: =over 4
                   9670: 
                   9671: =item * &gather_categories()
                   9672: 
                   9673: Converts category definitions - keys of categories hash stored in  
                   9674: coursecategories in configuration.db on the primary library server in a 
                   9675: domain - to an array.  Also generates javascript and idx hash used to 
                   9676: generate Domain Coordinator interface for editing Course Categories.
                   9677: 
                   9678: Inputs:
1.663     raeburn  9679: 
1.655     raeburn  9680: categories (reference to hash of category definitions).
1.663     raeburn  9681: 
1.655     raeburn  9682: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   9683:       categories and subcategories).
1.663     raeburn  9684: 
1.655     raeburn  9685: idx (reference to hash of counters used in Domain Coordinator interface for 
                   9686:       editing Course Categories).
1.663     raeburn  9687: 
1.655     raeburn  9688: jsarray (reference to array of categories used to create Javascript arrays for
                   9689:          Domain Coordinator interface for editing Course Categories).
                   9690: 
                   9691: Returns: nothing
                   9692: 
                   9693: Side effects: populates cats, idx and jsarray. 
                   9694: 
                   9695: =cut
                   9696: 
                   9697: sub gather_categories {
                   9698:     my ($categories,$cats,$idx,$jsarray) = @_;
                   9699:     my %counters;
                   9700:     my $num = 0;
                   9701:     foreach my $item (keys(%{$categories})) {
                   9702:         my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$item);
                   9703:         if ($container eq '' && $depth == 0) {
                   9704:             $cats->[$depth][$categories->{$item}] = $cat;
                   9705:         } else {
                   9706:             $cats->[$depth]{$container}[$categories->{$item}] = $cat;
                   9707:         }
                   9708:         my ($escitem,$tail) = split(/:/,$item,2);
                   9709:         if ($counters{$tail} eq '') {
                   9710:             $counters{$tail} = $num;
                   9711:             $num ++;
                   9712:         }
                   9713:         if (ref($idx) eq 'HASH') {
                   9714:             $idx->{$item} = $counters{$tail};
                   9715:         }
                   9716:         if (ref($jsarray) eq 'ARRAY') {
                   9717:             push(@{$jsarray->[$counters{$tail}]},$item);
                   9718:         }
                   9719:     }
                   9720:     return;
                   9721: }
                   9722: 
                   9723: =pod
                   9724: 
                   9725: =item * &extract_categories()
                   9726: 
                   9727: Used to generate breadcrumb trails for course categories.
                   9728: 
                   9729: Inputs:
1.663     raeburn  9730: 
1.655     raeburn  9731: categories (reference to hash of category definitions).
1.663     raeburn  9732: 
1.655     raeburn  9733: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   9734:       categories and subcategories).
1.663     raeburn  9735: 
1.655     raeburn  9736: trails (reference to array of breacrumb trails for each category).
1.663     raeburn  9737: 
1.655     raeburn  9738: allitems (reference to hash - key is category key 
                   9739:          (format: escaped(name):escaped(parent category):depth in hierarchy).
1.663     raeburn  9740: 
1.655     raeburn  9741: idx (reference to hash of counters used in Domain Coordinator interface for
                   9742:       editing Course Categories).
1.663     raeburn  9743: 
1.655     raeburn  9744: jsarray (reference to array of categories used to create Javascript arrays for
                   9745:          Domain Coordinator interface for editing Course Categories).
                   9746: 
1.665     raeburn  9747: subcats (reference to hash of arrays containing all subcategories within each 
                   9748:          category, -recursive)
                   9749: 
1.655     raeburn  9750: Returns: nothing
                   9751: 
                   9752: Side effects: populates trails and allitems hash references.
                   9753: 
                   9754: =cut
                   9755: 
                   9756: sub extract_categories {
1.665     raeburn  9757:     my ($categories,$cats,$trails,$allitems,$idx,$jsarray,$subcats) = @_;
1.655     raeburn  9758:     if (ref($categories) eq 'HASH') {
                   9759:         &gather_categories($categories,$cats,$idx,$jsarray);
                   9760:         if (ref($cats->[0]) eq 'ARRAY') {
                   9761:             for (my $i=0; $i<@{$cats->[0]}; $i++) {
                   9762:                 my $name = $cats->[0][$i];
                   9763:                 my $item = &escape($name).'::0';
                   9764:                 my $trailstr;
                   9765:                 if ($name eq 'instcode') {
                   9766:                     $trailstr = &mt('Official courses (with institutional codes)');
1.919     raeburn  9767:                 } elsif ($name eq 'communities') {
                   9768:                     $trailstr = &mt('Communities');
1.655     raeburn  9769:                 } else {
                   9770:                     $trailstr = $name;
                   9771:                 }
                   9772:                 if ($allitems->{$item} eq '') {
                   9773:                     push(@{$trails},$trailstr);
                   9774:                     $allitems->{$item} = scalar(@{$trails})-1;
                   9775:                 }
                   9776:                 my @parents = ($name);
                   9777:                 if (ref($cats->[1]{$name}) eq 'ARRAY') {
                   9778:                     for (my $j=0; $j<@{$cats->[1]{$name}}; $j++) {
                   9779:                         my $category = $cats->[1]{$name}[$j];
1.665     raeburn  9780:                         if (ref($subcats) eq 'HASH') {
                   9781:                             push(@{$subcats->{$item}},&escape($category).':'.&escape($name).':1');
                   9782:                         }
                   9783:                         &recurse_categories($cats,2,$category,$trails,$allitems,\@parents,$subcats);
                   9784:                     }
                   9785:                 } else {
                   9786:                     if (ref($subcats) eq 'HASH') {
                   9787:                         $subcats->{$item} = [];
1.655     raeburn  9788:                     }
                   9789:                 }
                   9790:             }
                   9791:         }
                   9792:     }
                   9793:     return;
                   9794: }
                   9795: 
                   9796: =pod
                   9797: 
                   9798: =item *&recurse_categories()
                   9799: 
                   9800: Recursively used to generate breadcrumb trails for course categories.
                   9801: 
                   9802: Inputs:
1.663     raeburn  9803: 
1.655     raeburn  9804: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   9805:       categories and subcategories).
1.663     raeburn  9806: 
1.655     raeburn  9807: depth (current depth in hierarchy of categories and sub-categories - 0 indexed).
1.663     raeburn  9808: 
                   9809: category (current course category, for which breadcrumb trail is being generated).
                   9810: 
                   9811: trails (reference to array of breadcrumb trails for each category).
                   9812: 
1.655     raeburn  9813: allitems (reference to hash - key is category key
                   9814:          (format: escaped(name):escaped(parent category):depth in hierarchy).
1.663     raeburn  9815: 
1.655     raeburn  9816: parents (array containing containers directories for current category, 
                   9817:          back to top level). 
                   9818: 
                   9819: Returns: nothing
                   9820: 
                   9821: Side effects: populates trails and allitems hash references
                   9822: 
                   9823: =cut
                   9824: 
                   9825: sub recurse_categories {
1.665     raeburn  9826:     my ($cats,$depth,$category,$trails,$allitems,$parents,$subcats) = @_;
1.655     raeburn  9827:     my $shallower = $depth - 1;
                   9828:     if (ref($cats->[$depth]{$category}) eq 'ARRAY') {
                   9829:         for (my $k=0; $k<@{$cats->[$depth]{$category}}; $k++) {
                   9830:             my $name = $cats->[$depth]{$category}[$k];
                   9831:             my $item = &escape($category).':'.&escape($parents->[-1]).':'.$shallower;
                   9832:             my $trailstr = join(' -&gt; ',(@{$parents},$category));
                   9833:             if ($allitems->{$item} eq '') {
                   9834:                 push(@{$trails},$trailstr);
                   9835:                 $allitems->{$item} = scalar(@{$trails})-1;
                   9836:             }
                   9837:             my $deeper = $depth+1;
                   9838:             push(@{$parents},$category);
1.665     raeburn  9839:             if (ref($subcats) eq 'HASH') {
                   9840:                 my $subcat = &escape($name).':'.$category.':'.$depth;
                   9841:                 for (my $j=@{$parents}; $j>=0; $j--) {
                   9842:                     my $higher;
                   9843:                     if ($j > 0) {
                   9844:                         $higher = &escape($parents->[$j]).':'.
                   9845:                                   &escape($parents->[$j-1]).':'.$j;
                   9846:                     } else {
                   9847:                         $higher = &escape($parents->[$j]).'::'.$j;
                   9848:                     }
                   9849:                     push(@{$subcats->{$higher}},$subcat);
                   9850:                 }
                   9851:             }
                   9852:             &recurse_categories($cats,$deeper,$name,$trails,$allitems,$parents,
                   9853:                                 $subcats);
1.655     raeburn  9854:             pop(@{$parents});
                   9855:         }
                   9856:     } else {
                   9857:         my $item = &escape($category).':'.&escape($parents->[-1]).':'.$shallower;
                   9858:         my $trailstr = join(' -&gt; ',(@{$parents},$category));
                   9859:         if ($allitems->{$item} eq '') {
                   9860:             push(@{$trails},$trailstr);
                   9861:             $allitems->{$item} = scalar(@{$trails})-1;
                   9862:         }
                   9863:     }
                   9864:     return;
                   9865: }
                   9866: 
1.663     raeburn  9867: =pod
                   9868: 
                   9869: =item *&assign_categories_table()
                   9870: 
                   9871: Create a datatable for display of hierarchical categories in a domain,
                   9872: with checkboxes to allow a course to be categorized. 
                   9873: 
                   9874: Inputs:
                   9875: 
                   9876: cathash - reference to hash of categories defined for the domain (from
                   9877:           configuration.db)
                   9878: 
                   9879: currcat - scalar with an & separated list of categories assigned to a course. 
                   9880: 
1.919     raeburn  9881: type    - scalar contains course type (Course or Community).
                   9882: 
1.663     raeburn  9883: Returns: $output (markup to be displayed) 
                   9884: 
                   9885: =cut
                   9886: 
                   9887: sub assign_categories_table {
1.919     raeburn  9888:     my ($cathash,$currcat,$type) = @_;
1.663     raeburn  9889:     my $output;
                   9890:     if (ref($cathash) eq 'HASH') {
                   9891:         my (@cats,@trails,%allitems,%idx,@jsarray,@path,$maxdepth);
                   9892:         &extract_categories($cathash,\@cats,\@trails,\%allitems,\%idx,\@jsarray);
                   9893:         $maxdepth = scalar(@cats);
                   9894:         if (@cats > 0) {
                   9895:             my $itemcount = 0;
                   9896:             if (ref($cats[0]) eq 'ARRAY') {
                   9897:                 my @currcategories;
                   9898:                 if ($currcat ne '') {
                   9899:                     @currcategories = split('&',$currcat);
                   9900:                 }
1.919     raeburn  9901:                 my $table;
1.663     raeburn  9902:                 for (my $i=0; $i<@{$cats[0]}; $i++) {
                   9903:                     my $parent = $cats[0][$i];
1.919     raeburn  9904:                     next if ($parent eq 'instcode');
                   9905:                     if ($type eq 'Community') {
                   9906:                         next unless ($parent eq 'communities');
                   9907:                     } else {
                   9908:                         next if ($parent eq 'communities');
                   9909:                     }
1.663     raeburn  9910:                     my $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   9911:                     my $item = &escape($parent).'::0';
                   9912:                     my $checked = '';
                   9913:                     if (@currcategories > 0) {
                   9914:                         if (grep(/^\Q$item\E$/,@currcategories)) {
1.772     bisitz   9915:                             $checked = ' checked="checked"';
1.663     raeburn  9916:                         }
                   9917:                     }
1.919     raeburn  9918:                     my $parent_title = $parent;
                   9919:                     if ($parent eq 'communities') {
                   9920:                         $parent_title = &mt('Communities');
                   9921:                     }
                   9922:                     $table .= '<tr '.$css_class.'><td><span class="LC_nobreak">'.
                   9923:                               '<input type="checkbox" name="usecategory" value="'.
                   9924:                               $item.'"'.$checked.' />'.$parent_title.'</span>'.
                   9925:                               '<input type="hidden" name="catname" value="'.$parent.'" /></td>';
1.663     raeburn  9926:                     my $depth = 1;
                   9927:                     push(@path,$parent);
1.919     raeburn  9928:                     $table .= &assign_category_rows($itemcount,\@cats,$depth,$parent,\@path,\@currcategories);
1.663     raeburn  9929:                     pop(@path);
1.919     raeburn  9930:                     $table .= '</tr><tr><td colspan="'.$maxdepth.'" class="LC_row_separator"></td></tr>';
1.663     raeburn  9931:                     $itemcount ++;
                   9932:                 }
1.919     raeburn  9933:                 if ($itemcount) {
                   9934:                     $output = &Apache::loncommon::start_data_table().
                   9935:                               $table.
                   9936:                               &Apache::loncommon::end_data_table();
                   9937:                 }
1.663     raeburn  9938:             }
                   9939:         }
                   9940:     }
                   9941:     return $output;
                   9942: }
                   9943: 
                   9944: =pod
                   9945: 
                   9946: =item *&assign_category_rows()
                   9947: 
                   9948: Create a datatable row for display of nested categories in a domain,
                   9949: with checkboxes to allow a course to be categorized,called recursively.
                   9950: 
                   9951: Inputs:
                   9952: 
                   9953: itemcount - track row number for alternating colors
                   9954: 
                   9955: cats - reference to array of arrays/hashes which encapsulates hierarchy of
                   9956:       categories and subcategories.
                   9957: 
                   9958: depth - current depth in hierarchy of categories and sub-categories - 0 indexed.
                   9959: 
                   9960: parent - parent of current category item
                   9961: 
                   9962: path - Array containing all categories back up through the hierarchy from the
                   9963:        current category to the top level.
                   9964: 
                   9965: currcategories - reference to array of current categories assigned to the course
                   9966: 
                   9967: Returns: $output (markup to be displayed).
                   9968: 
                   9969: =cut
                   9970: 
                   9971: sub assign_category_rows {
                   9972:     my ($itemcount,$cats,$depth,$parent,$path,$currcategories) = @_;
                   9973:     my ($text,$name,$item,$chgstr);
                   9974:     if (ref($cats) eq 'ARRAY') {
                   9975:         my $maxdepth = scalar(@{$cats});
                   9976:         if (ref($cats->[$depth]) eq 'HASH') {
                   9977:             if (ref($cats->[$depth]{$parent}) eq 'ARRAY') {
                   9978:                 my $numchildren = @{$cats->[$depth]{$parent}};
                   9979:                 my $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   9980:                 $text .= '<td><table class="LC_datatable">';
                   9981:                 for (my $j=0; $j<$numchildren; $j++) {
                   9982:                     $name = $cats->[$depth]{$parent}[$j];
                   9983:                     $item = &escape($name).':'.&escape($parent).':'.$depth;
                   9984:                     my $deeper = $depth+1;
                   9985:                     my $checked = '';
                   9986:                     if (ref($currcategories) eq 'ARRAY') {
                   9987:                         if (@{$currcategories} > 0) {
                   9988:                             if (grep(/^\Q$item\E$/,@{$currcategories})) {
1.772     bisitz   9989:                                 $checked = ' checked="checked"';
1.663     raeburn  9990:                             }
                   9991:                         }
                   9992:                     }
1.664     raeburn  9993:                     $text .= '<tr><td><span class="LC_nobreak"><label>'.
                   9994:                              '<input type="checkbox" name="usecategory" value="'.
1.675     raeburn  9995:                              $item.'"'.$checked.' />'.$name.'</label></span>'.
                   9996:                              '<input type="hidden" name="catname" value="'.$name.'" />'.
                   9997:                              '</td><td>';
1.663     raeburn  9998:                     if (ref($path) eq 'ARRAY') {
                   9999:                         push(@{$path},$name);
                   10000:                         $text .= &assign_category_rows($itemcount,$cats,$deeper,$name,$path,$currcategories);
                   10001:                         pop(@{$path});
                   10002:                     }
                   10003:                     $text .= '</td></tr>';
                   10004:                 }
                   10005:                 $text .= '</table></td>';
                   10006:             }
                   10007:         }
                   10008:     }
                   10009:     return $text;
                   10010: }
                   10011: 
1.655     raeburn  10012: ############################################################
                   10013: ############################################################
                   10014: 
                   10015: 
1.443     albertel 10016: sub commit_customrole {
1.664     raeburn  10017:     my ($udom,$uname,$url,$three,$four,$five,$start,$end,$context) = @_;
1.630     raeburn  10018:     my $output = &mt('Assigning custom role').' "'.$five.'" by '.$four.':'.$three.' in '.$url.
1.443     albertel 10019:                          ($start?', '.&mt('starting').' '.localtime($start):'').
                   10020:                          ($end?', ending '.localtime($end):'').': <b>'.
                   10021:               &Apache::lonnet::assigncustomrole(
1.664     raeburn  10022:                  $udom,$uname,$url,$three,$four,$five,$end,$start,undef,undef,$context).
1.443     albertel 10023:                  '</b><br />';
                   10024:     return $output;
                   10025: }
                   10026: 
                   10027: sub commit_standardrole {
1.541     raeburn  10028:     my ($udom,$uname,$url,$three,$start,$end,$one,$two,$sec,$context) = @_;
                   10029:     my ($output,$logmsg,$linefeed);
                   10030:     if ($context eq 'auto') {
                   10031:         $linefeed = "\n";
                   10032:     } else {
                   10033:         $linefeed = "<br />\n";
                   10034:     }  
1.443     albertel 10035:     if ($three eq 'st') {
1.541     raeburn  10036:         my $result = &commit_studentrole(\$logmsg,$udom,$uname,$url,$three,$start,$end,
                   10037:                                          $one,$two,$sec,$context);
                   10038:         if (($result =~ /^error/) || ($result eq 'not_in_class') || 
1.626     raeburn  10039:             ($result eq 'unknown_course') || ($result eq 'refused')) {
                   10040:             $output = $logmsg.' '.&mt('Error: ').$result."\n"; 
1.443     albertel 10041:         } else {
1.541     raeburn  10042:             $output = $logmsg.$linefeed.&mt('Assigning').' '.$three.' in '.$url.
1.443     albertel 10043:                ($start?', '.&mt('starting').' '.localtime($start):'').
1.541     raeburn  10044:                ($end?', '.&mt('ending').' '.localtime($end):'').': ';
                   10045:             if ($context eq 'auto') {
                   10046:                 $output .= $result.$linefeed.&mt('Add to classlist').': ok';
                   10047:             } else {
                   10048:                $output .= '<b>'.$result.'</b>'.$linefeed.
                   10049:                &mt('Add to classlist').': <b>ok</b>';
                   10050:             }
                   10051:             $output .= $linefeed;
1.443     albertel 10052:         }
                   10053:     } else {
                   10054:         $output = &mt('Assigning').' '.$three.' in '.$url.
                   10055:                ($start?', '.&mt('starting').' '.localtime($start):'').
1.541     raeburn  10056:                ($end?', '.&mt('ending').' '.localtime($end):'').': ';
1.652     raeburn  10057:         my $result = &Apache::lonnet::assignrole($udom,$uname,$url,$three,$end,$start,'','',$context);
1.541     raeburn  10058:         if ($context eq 'auto') {
                   10059:             $output .= $result.$linefeed;
                   10060:         } else {
                   10061:             $output .= '<b>'.$result.'</b>'.$linefeed;
                   10062:         }
1.443     albertel 10063:     }
                   10064:     return $output;
                   10065: }
                   10066: 
                   10067: sub commit_studentrole {
1.541     raeburn  10068:     my ($logmsg,$udom,$uname,$url,$three,$start,$end,$one,$two,$sec,$context) = @_;
1.626     raeburn  10069:     my ($result,$linefeed,$oldsecurl,$newsecurl);
1.541     raeburn  10070:     if ($context eq 'auto') {
                   10071:         $linefeed = "\n";
                   10072:     } else {
                   10073:         $linefeed = '<br />'."\n";
                   10074:     }
1.443     albertel 10075:     if (defined($one) && defined($two)) {
                   10076:         my $cid=$one.'_'.$two;
                   10077:         my $oldsec=&Apache::lonnet::getsection($udom,$uname,$cid);
                   10078:         my $secchange = 0;
                   10079:         my $expire_role_result;
                   10080:         my $modify_section_result;
1.628     raeburn  10081:         if ($oldsec ne '-1') { 
                   10082:             if ($oldsec ne $sec) {
1.443     albertel 10083:                 $secchange = 1;
1.628     raeburn  10084:                 my $now = time;
1.443     albertel 10085:                 my $uurl='/'.$cid;
                   10086:                 $uurl=~s/\_/\//g;
                   10087:                 if ($oldsec) {
                   10088:                     $uurl.='/'.$oldsec;
                   10089:                 }
1.626     raeburn  10090:                 $oldsecurl = $uurl;
1.628     raeburn  10091:                 $expire_role_result = 
1.652     raeburn  10092:                     &Apache::lonnet::assignrole($udom,$uname,$uurl,'st',$now,'','',$context);
1.628     raeburn  10093:                 if ($env{'request.course.sec'} ne '') { 
                   10094:                     if ($expire_role_result eq 'refused') {
                   10095:                         my @roles = ('st');
                   10096:                         my @statuses = ('previous');
                   10097:                         my @roledoms = ($one);
                   10098:                         my $withsec = 1;
                   10099:                         my %roleshash = 
                   10100:                             &Apache::lonnet::get_my_roles($uname,$udom,'userroles',
                   10101:                                               \@statuses,\@roles,\@roledoms,$withsec);
                   10102:                         if (defined ($roleshash{$two.':'.$one.':st:'.$oldsec})) {
                   10103:                             my ($oldstart,$oldend) = 
                   10104:                                 split(':',$roleshash{$two.':'.$one.':st:'.$oldsec});
                   10105:                             if ($oldend > 0 && $oldend <= $now) {
                   10106:                                 $expire_role_result = 'ok';
                   10107:                             }
                   10108:                         }
                   10109:                     }
                   10110:                 }
1.443     albertel 10111:                 $result = $expire_role_result;
                   10112:             }
                   10113:         }
                   10114:         if (($expire_role_result eq 'ok') || ($secchange == 0)) {
1.652     raeburn  10115:             $modify_section_result = &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$end,$start,'','',$cid,'',$context);
1.443     albertel 10116:             if ($modify_section_result =~ /^ok/) {
                   10117:                 if ($secchange == 1) {
1.628     raeburn  10118:                     if ($sec eq '') {
                   10119:                         $$logmsg .= &mt('Section for [_1] switched from (possibly expired) old section: [_2] to student role without a section.',$uname,$oldsec).$linefeed;
                   10120:                     } else {
                   10121:                         $$logmsg .= &mt('Section for [_1] switched from (possibly expired) old section: [_2] to new section: [_3].',$uname,$oldsec,$sec).$linefeed;
                   10122:                     }
1.443     albertel 10123:                 } elsif ($oldsec eq '-1') {
1.628     raeburn  10124:                     if ($sec eq '') {
                   10125:                         $$logmsg .= &mt('New student role without a section for [_1] in course [_2].',$uname,$cid).$linefeed;
                   10126:                     } else {
                   10127:                         $$logmsg .= &mt('New student role for [_1] in section [_2] in course [_3].',$uname,$sec,$cid).$linefeed;
                   10128:                     }
1.443     albertel 10129:                 } else {
1.628     raeburn  10130:                     if ($sec eq '') {
                   10131:                         $$logmsg .= &mt('Student [_1] assigned to course [_2] without a section.',$uname,$cid).$linefeed;
                   10132:                     } else {
                   10133:                         $$logmsg .= &mt('Student [_1] assigned to section [_2] in course [_3].',$uname,$sec,$cid).$linefeed;
                   10134:                     }
1.443     albertel 10135:                 }
                   10136:             } else {
1.628     raeburn  10137:                 if ($secchange) {       
                   10138:                     $$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;
                   10139:                 } else {
                   10140:                     $$logmsg .= &mt('Error when attempting to modify role for [_1] for section: "[_2]" in course [_3] -error:',$uname,$sec,$cid).' '.$modify_section_result.$linefeed;
                   10141:                 }
1.443     albertel 10142:             }
                   10143:             $result = $modify_section_result;
                   10144:         } elsif ($secchange == 1) {
1.628     raeburn  10145:             if ($oldsec eq '') {
                   10146:                 $$logmsg .= &mt('Error when attempting to expire existing role without a section for [_1] in course [_3] -error: ',$uname,$cid).' '.$expire_role_result.$linefeed;
                   10147:             } else {
                   10148:                 $$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;
                   10149:             }
1.626     raeburn  10150:             if ($expire_role_result eq 'refused') {
                   10151:                 my $newsecurl = '/'.$cid;
                   10152:                 $newsecurl =~ s/\_/\//g;
                   10153:                 if ($sec ne '') {
                   10154:                     $newsecurl.='/'.$sec;
                   10155:                 }
                   10156:                 if (&Apache::lonnet::allowed('cst',$newsecurl) && !(&Apache::lonnet::allowed('cst',$oldsecurl))) {
                   10157:                     if ($sec eq '') {
                   10158:                         $$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;
                   10159:                     } else {
                   10160:                         $$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;
                   10161:                     }
                   10162:                 }
                   10163:             }
1.443     albertel 10164:         }
                   10165:     } else {
1.626     raeburn  10166:         $$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 10167:         $result = "error: incomplete course id\n";
                   10168:     }
                   10169:     return $result;
                   10170: }
                   10171: 
                   10172: ############################################################
                   10173: ############################################################
                   10174: 
1.566     albertel 10175: sub check_clone {
1.578     raeburn  10176:     my ($args,$linefeed) = @_;
1.566     albertel 10177:     my $cloneid='/'.$args->{'clonedomain'}.'/'.$args->{'clonecourse'};
                   10178:     my ($clonecrsudom,$clonecrsunum)= &LONCAPA::split_courseid($cloneid);
                   10179:     my $clonehome=&Apache::lonnet::homeserver($clonecrsunum,$clonecrsudom);
                   10180:     my $clonemsg;
                   10181:     my $can_clone = 0;
1.944     raeburn  10182:     my $lctype = lc($args->{'crstype'});
1.908     raeburn  10183:     if ($lctype ne 'community') {
                   10184:         $lctype = 'course';
                   10185:     }
1.566     albertel 10186:     if ($clonehome eq 'no_host') {
1.944     raeburn  10187:         if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  10188:             $clonemsg = &mt('No new community created.').$linefeed.&mt('A new community could not be cloned from the specified original - [_1] - because it is a non-existent community.',$args->{'clonecourse'}.':'.$args->{'clonedomain'});
                   10189:         } else {
                   10190:             $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'});
                   10191:         }     
1.566     albertel 10192:     } else {
                   10193: 	my %clonedesc = &Apache::lonnet::coursedescription($cloneid,{'one_time' => 1});
1.944     raeburn  10194:         if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  10195:             if ($clonedesc{'type'} ne 'Community') {
                   10196:                  $clonemsg = &mt('No new community created.').$linefeed.&mt('A new community could not be cloned from the specified original - [_1] - because it is a course not a community.',$args->{'clonecourse'}.':'.$args->{'clonedomain'});
                   10197:                 return ($can_clone, $clonemsg, $cloneid, $clonehome);
                   10198:             }
                   10199:         }
1.882     raeburn  10200: 	if (($env{'request.role.domain'} eq $args->{'clonedomain'}) && 
                   10201:             (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'}))) {
1.566     albertel 10202: 	    $can_clone = 1;
                   10203: 	} else {
                   10204: 	    my %clonehash = &Apache::lonnet::get('environment',['cloners'],
                   10205: 						 $args->{'clonedomain'},$args->{'clonecourse'});
                   10206: 	    my @cloners = split(/,/,$clonehash{'cloners'});
1.578     raeburn  10207:             if (grep(/^\*$/,@cloners)) {
                   10208:                 $can_clone = 1;
                   10209:             } elsif (grep(/^\*\:\Q$args->{'ccdomain'}\E$/,@cloners)) {
                   10210:                 $can_clone = 1;
                   10211:             } else {
1.908     raeburn  10212:                 my $ccrole = 'cc';
1.944     raeburn  10213:                 if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  10214:                     $ccrole = 'co';
                   10215:                 }
1.578     raeburn  10216: 	        my %roleshash =
                   10217: 		    &Apache::lonnet::get_my_roles($args->{'ccuname'},
                   10218: 					 $args->{'ccdomain'},
1.908     raeburn  10219:                                          'userroles',['active'],[$ccrole],
1.578     raeburn  10220: 					 [$args->{'clonedomain'}]);
1.908     raeburn  10221: 	        if (($roleshash{$args->{'clonecourse'}.':'.$args->{'clonedomain'}.':'.$ccrole}) || (grep(/^\Q$args->{'ccuname'}\E:\Q$args->{'ccdomain'}\E$/,@cloners))) {
1.942     raeburn  10222:                     $can_clone = 1;
                   10223:                 } elsif (&Apache::lonnet::is_course_owner($args->{'clonedomain'},$args->{'clonecourse'},$args->{'ccuname'},$args->{'ccdomain'})) {
                   10224:                     $can_clone = 1;
                   10225:                 } else {
1.944     raeburn  10226:                     if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  10227:                         $clonemsg = &mt('No new community created.').$linefeed.&mt('The new community could not be cloned from the existing community because the new community owner ([_1]) does not have cloning rights in the existing community ([_2]).',$args->{'ccuname'}.':'.$args->{'ccdomain'},$clonedesc{'description'});
                   10228:                     } else {
                   10229:                         $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'});
                   10230:                     }
1.578     raeburn  10231: 	        }
1.566     albertel 10232: 	    }
1.578     raeburn  10233:         }
1.566     albertel 10234:     }
                   10235:     return ($can_clone, $clonemsg, $cloneid, $clonehome);
                   10236: }
                   10237: 
1.444     albertel 10238: sub construct_course {
1.885     raeburn  10239:     my ($args,$logmsg,$courseid,$crsudom,$crsunum,$udom,$uname,$context,$cnum,$category) = @_;
1.444     albertel 10240:     my $outcome;
1.541     raeburn  10241:     my $linefeed =  '<br />'."\n";
                   10242:     if ($context eq 'auto') {
                   10243:         $linefeed = "\n";
                   10244:     }
1.566     albertel 10245: 
                   10246: #
                   10247: # Are we cloning?
                   10248: #
                   10249:     my ($can_clone, $clonemsg, $cloneid, $clonehome);
                   10250:     if (($args->{'clonecourse'}) && ($args->{'clonedomain'})) {
1.578     raeburn  10251: 	($can_clone, $clonemsg, $cloneid, $clonehome) = &check_clone($args,$linefeed);
1.566     albertel 10252: 	if ($context ne 'auto') {
1.578     raeburn  10253:             if ($clonemsg ne '') {
                   10254: 	        $clonemsg = '<span class="LC_error">'.$clonemsg.'</span>';
                   10255:             }
1.566     albertel 10256: 	}
                   10257: 	$outcome .= $clonemsg.$linefeed;
                   10258: 
                   10259:         if (!$can_clone) {
                   10260: 	    return (0,$outcome);
                   10261: 	}
                   10262:     }
                   10263: 
1.444     albertel 10264: #
                   10265: # Open course
                   10266: #
                   10267:     my $crstype = lc($args->{'crstype'});
                   10268:     my %cenv=();
                   10269:     $$courseid=&Apache::lonnet::createcourse($args->{'course_domain'},
                   10270:                                              $args->{'cdescr'},
                   10271:                                              $args->{'curl'},
                   10272:                                              $args->{'course_home'},
                   10273:                                              $args->{'nonstandard'},
                   10274:                                              $args->{'crscode'},
                   10275:                                              $args->{'ccuname'}.':'.
                   10276:                                              $args->{'ccdomain'},
1.882     raeburn  10277:                                              $args->{'crstype'},
1.885     raeburn  10278:                                              $cnum,$context,$category);
1.444     albertel 10279: 
                   10280:     # Note: The testing routines depend on this being output; see 
                   10281:     # Utils::Course. This needs to at least be output as a comment
                   10282:     # if anyone ever decides to not show this, and Utils::Course::new
                   10283:     # will need to be suitably modified.
1.541     raeburn  10284:     $outcome .= &mt('New LON-CAPA [_1] ID: [_2]',$crstype,$$courseid).$linefeed;
1.943     raeburn  10285:     if ($$courseid =~ /^error:/) {
                   10286:         return (0,$outcome);
                   10287:     }
                   10288: 
1.444     albertel 10289: #
                   10290: # Check if created correctly
                   10291: #
1.479     albertel 10292:     ($$crsudom,$$crsunum)= &LONCAPA::split_courseid($$courseid);
1.444     albertel 10293:     my $crsuhome=&Apache::lonnet::homeserver($$crsunum,$$crsudom);
1.943     raeburn  10294:     if ($crsuhome eq 'no_host') {
                   10295:         $outcome .= &mt('Course creation failed, unrecognized course home server.').$linefeed;
                   10296:         return (0,$outcome);
                   10297:     }
1.541     raeburn  10298:     $outcome .= &mt('Created on').': '.$crsuhome.$linefeed;
1.566     albertel 10299: 
1.444     albertel 10300: #
1.566     albertel 10301: # Do the cloning
                   10302: #   
                   10303:     if ($can_clone && $cloneid) {
                   10304: 	$clonemsg = &mt('Cloning [_1] from [_2]',$crstype,$clonehome);
                   10305: 	if ($context ne 'auto') {
                   10306: 	    $clonemsg = '<span class="LC_success">'.$clonemsg.'</span>';
                   10307: 	}
                   10308: 	$outcome .= $clonemsg.$linefeed;
                   10309: 	my %oldcenv=&Apache::lonnet::dump('environment',$$crsudom,$$crsunum);
1.444     albertel 10310: # Copy all files
1.637     www      10311: 	&Apache::lonclonecourse::copycoursefiles($cloneid,$$courseid,$args->{'datemode'},$args->{'dateshift'});
1.444     albertel 10312: # Restore URL
1.566     albertel 10313: 	$cenv{'url'}=$oldcenv{'url'};
1.444     albertel 10314: # Restore title
1.566     albertel 10315: 	$cenv{'description'}=$oldcenv{'description'};
1.948.2.2  raeburn  10316: # Restore creation date, creator and creation context.
                   10317:         $cenv{'internal.created'}=$oldcenv{'internal.created'};
                   10318:         $cenv{'internal.creator'}=$oldcenv{'internal.creator'};
                   10319:         $cenv{'internal.creationcontext'}=$oldcenv{'internal.creationcontext'};
1.444     albertel 10320: # Mark as cloned
1.566     albertel 10321: 	$cenv{'clonedfrom'}=$cloneid;
1.638     www      10322: # Need to clone grading mode
                   10323:         my %newenv=&Apache::lonnet::get('environment',['grading'],$$crsudom,$$crsunum);
                   10324:         $cenv{'grading'}=$newenv{'grading'};
                   10325: # Do not clone these environment entries
                   10326:         &Apache::lonnet::del('environment',
                   10327:                   ['default_enrollment_start_date',
                   10328:                    'default_enrollment_end_date',
                   10329:                    'question.email',
                   10330:                    'policy.email',
                   10331:                    'comment.email',
                   10332:                    'pch.users.denied',
1.725     raeburn  10333:                    'plc.users.denied',
                   10334:                    'hidefromcat',
                   10335:                    'categories'],
1.638     www      10336:                    $$crsudom,$$crsunum);
1.444     albertel 10337:     }
1.566     albertel 10338: 
1.444     albertel 10339: #
                   10340: # Set environment (will override cloned, if existing)
                   10341: #
                   10342:     my @sections = ();
                   10343:     my @xlists = ();
                   10344:     if ($args->{'crstype'}) {
                   10345:         $cenv{'type'}=$args->{'crstype'};
                   10346:     }
                   10347:     if ($args->{'crsid'}) {
                   10348:         $cenv{'courseid'}=$args->{'crsid'};
                   10349:     }
                   10350:     if ($args->{'crscode'}) {
                   10351:         $cenv{'internal.coursecode'}=$args->{'crscode'};
                   10352:     }
                   10353:     if ($args->{'crsquota'} ne '') {
                   10354:         $cenv{'internal.coursequota'}=$args->{'crsquota'};
                   10355:     } else {
                   10356:         $cenv{'internal.coursequota'}=$args->{'crsquota'} = 20;
                   10357:     }
                   10358:     if ($args->{'ccuname'}) {
                   10359:         $cenv{'internal.courseowner'} = $args->{'ccuname'}.
                   10360:                                         ':'.$args->{'ccdomain'};
                   10361:     } else {
                   10362:         $cenv{'internal.courseowner'} = $args->{'curruser'};
                   10363:     }
                   10364:     my @badclasses = (); # Used to accumulate sections/crosslistings that did not pass classlist access check for course owner.
                   10365:     if ($args->{'crssections'}) {
                   10366:         $cenv{'internal.sectionnums'} = '';
                   10367:         if ($args->{'crssections'} =~ m/,/) {
                   10368:             @sections = split/,/,$args->{'crssections'};
                   10369:         } else {
                   10370:             $sections[0] = $args->{'crssections'};
                   10371:         }
                   10372:         if (@sections > 0) {
                   10373:             foreach my $item (@sections) {
                   10374:                 my ($sec,$gp) = split/:/,$item;
                   10375:                 my $class = $args->{'crscode'}.$sec;
                   10376:                 my $addcheck = &Apache::lonnet::auto_new_course($$crsunum,$$crsudom,$class,$cenv{'internal.courseowner'});
                   10377:                 $cenv{'internal.sectionnums'} .= $item.',';
                   10378:                 unless ($addcheck eq 'ok') {
                   10379:                     push @badclasses, $class;
                   10380:                 }
                   10381:             }
                   10382:             $cenv{'internal.sectionnums'} =~ s/,$//;
                   10383:         }
                   10384:     }
                   10385: # do not hide course coordinator from staff listing, 
                   10386: # even if privileged
                   10387:     $cenv{'nothideprivileged'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   10388: # add crosslistings
                   10389:     if ($args->{'crsxlist'}) {
                   10390:         $cenv{'internal.crosslistings'}='';
                   10391:         if ($args->{'crsxlist'} =~ m/,/) {
                   10392:             @xlists = split/,/,$args->{'crsxlist'};
                   10393:         } else {
                   10394:             $xlists[0] = $args->{'crsxlist'};
                   10395:         }
                   10396:         if (@xlists > 0) {
                   10397:             foreach my $item (@xlists) {
                   10398:                 my ($xl,$gp) = split/:/,$item;
                   10399:                 my $addcheck =  &Apache::lonnet::auto_new_course($$crsunum,$$crsudom,$xl,$cenv{'internal.courseowner'});
                   10400:                 $cenv{'internal.crosslistings'} .= $item.',';
                   10401:                 unless ($addcheck eq 'ok') {
                   10402:                     push @badclasses, $xl;
                   10403:                 }
                   10404:             }
                   10405:             $cenv{'internal.crosslistings'} =~ s/,$//;
                   10406:         }
                   10407:     }
                   10408:     if ($args->{'autoadds'}) {
                   10409:         $cenv{'internal.autoadds'}=$args->{'autoadds'};
                   10410:     }
                   10411:     if ($args->{'autodrops'}) {
                   10412:         $cenv{'internal.autodrops'}=$args->{'autodrops'};
                   10413:     }
                   10414: # check for notification of enrollment changes
                   10415:     my @notified = ();
                   10416:     if ($args->{'notify_owner'}) {
                   10417:         if ($args->{'ccuname'} ne '') {
                   10418:             push(@notified,$args->{'ccuname'}.':'.$args->{'ccdomain'});
                   10419:         }
                   10420:     }
                   10421:     if ($args->{'notify_dc'}) {
                   10422:         if ($uname ne '') { 
1.630     raeburn  10423:             push(@notified,$uname.':'.$udom);
1.444     albertel 10424:         }
                   10425:     }
                   10426:     if (@notified > 0) {
                   10427:         my $notifylist;
                   10428:         if (@notified > 1) {
                   10429:             $notifylist = join(',',@notified);
                   10430:         } else {
                   10431:             $notifylist = $notified[0];
                   10432:         }
                   10433:         $cenv{'internal.notifylist'} = $notifylist;
                   10434:     }
                   10435:     if (@badclasses > 0) {
                   10436:         my %lt=&Apache::lonlocal::texthash(
                   10437:                 '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',
                   10438:                 'dnhr' => 'does not have rights to access enrollment in these classes',
                   10439:                 'adby' => 'as determined by the policies of your institution on access to official classlists'
                   10440:         );
1.541     raeburn  10441:         my $badclass_msg = $cenv{'internal.courseowner'}.') - '.$lt{'dnhr'}.
                   10442:                            ' ('.$lt{'adby'}.')';
                   10443:         if ($context eq 'auto') {
                   10444:             $outcome .= $badclass_msg.$linefeed;
1.566     albertel 10445:             $outcome .= '<div class="LC_warning">'.$badclass_msg.$linefeed.'<ul>'."\n";
1.541     raeburn  10446:             foreach my $item (@badclasses) {
                   10447:                 if ($context eq 'auto') {
                   10448:                     $outcome .= " - $item\n";
                   10449:                 } else {
                   10450:                     $outcome .= "<li>$item</li>\n";
                   10451:                 }
                   10452:             }
                   10453:             if ($context eq 'auto') {
                   10454:                 $outcome .= $linefeed;
                   10455:             } else {
1.566     albertel 10456:                 $outcome .= "</ul><br /><br /></div>\n";
1.541     raeburn  10457:             }
                   10458:         } 
1.444     albertel 10459:     }
                   10460:     if ($args->{'no_end_date'}) {
                   10461:         $args->{'endaccess'} = 0;
                   10462:     }
                   10463:     $cenv{'internal.autostart'}=$args->{'enrollstart'};
                   10464:     $cenv{'internal.autoend'}=$args->{'enrollend'};
                   10465:     $cenv{'default_enrollment_start_date'}=$args->{'startaccess'};
                   10466:     $cenv{'default_enrollment_end_date'}=$args->{'endaccess'};
                   10467:     if ($args->{'showphotos'}) {
                   10468:       $cenv{'internal.showphotos'}=$args->{'showphotos'};
                   10469:     }
                   10470:     $cenv{'internal.authtype'} = $args->{'authtype'};
                   10471:     $cenv{'internal.autharg'} = $args->{'autharg'}; 
                   10472:     if ( ($cenv{'internal.authtype'} =~ /^krb/) && ($cenv{'internal.autoadds'} == 1)) {
                   10473:         if (! defined($cenv{'internal.autharg'}) || $cenv{'internal.autharg'}  eq '') {
1.541     raeburn  10474:             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'); 
                   10475:             if ($context eq 'auto') {
                   10476:                 $outcome .= $krb_msg;
                   10477:             } else {
1.566     albertel 10478:                 $outcome .= '<span class="LC_error">'.$krb_msg.'</span>';
1.541     raeburn  10479:             }
                   10480:             $outcome .= $linefeed;
1.444     albertel 10481:         }
                   10482:     }
                   10483:     if (($args->{'ccdomain'}) && ($args->{'ccuname'})) {
                   10484:        if ($args->{'setpolicy'}) {
                   10485:            $cenv{'policy.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   10486:        }
                   10487:        if ($args->{'setcontent'}) {
                   10488:            $cenv{'question.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   10489:        }
                   10490:     }
                   10491:     if ($args->{'reshome'}) {
                   10492: 	$cenv{'reshome'}=$args->{'reshome'}.'/';
                   10493: 	$cenv{'reshome'}=~s/\/+$/\//;
                   10494:     }
                   10495: #
                   10496: # course has keyed access
                   10497: #
                   10498:     if ($args->{'setkeys'}) {
                   10499:        $cenv{'keyaccess'}='yes';
                   10500:     }
                   10501: # if specified, key authority is not course, but user
                   10502: # only active if keyaccess is yes
                   10503:     if ($args->{'keyauth'}) {
1.487     albertel 10504: 	my ($user,$domain) = split(':',$args->{'keyauth'});
                   10505: 	$user = &LONCAPA::clean_username($user);
                   10506: 	$domain = &LONCAPA::clean_username($domain);
1.488     foxr     10507: 	if ($user ne '' && $domain ne '') {
1.487     albertel 10508: 	    $cenv{'keyauth'}=$user.':'.$domain;
1.444     albertel 10509: 	}
                   10510:     }
                   10511: 
                   10512:     if ($args->{'disresdis'}) {
                   10513:         $cenv{'pch.roles.denied'}='st';
                   10514:     }
                   10515:     if ($args->{'disablechat'}) {
                   10516:         $cenv{'plc.roles.denied'}='st';
                   10517:     }
                   10518: 
                   10519:     # Record we've not yet viewed the Course Initialization Helper for this 
                   10520:     # course
                   10521:     $cenv{'course.helper.not.run'} = 1;
                   10522:     #
                   10523:     # Use new Randomseed
                   10524:     #
                   10525:     $cenv{'rndseed'}=&Apache::lonnet::latest_rnd_algorithm_id();;
                   10526:     $cenv{'receiptalg'}=&Apache::lonnet::latest_receipt_algorithm_id();;
                   10527:     #
                   10528:     # The encryption code and receipt prefix for this course
                   10529:     #
                   10530:     $cenv{'internal.encseed'}=$Apache::lonnet::perlvar{'lonReceipt'}.$$.time.int(rand(9999));
                   10531:     $cenv{'internal.encpref'}=100+int(9*rand(99));
                   10532:     #
                   10533:     # By default, use standard grading
                   10534:     if (!defined($cenv{'grading'})) { $cenv{'grading'} = 'standard'; }
                   10535: 
1.541     raeburn  10536:     $outcome .= $linefeed.&mt('Setting environment').': '.                 
                   10537:           &Apache::lonnet::put('environment',\%cenv,$$crsudom,$$crsunum).$linefeed;
1.444     albertel 10538: #
                   10539: # Open all assignments
                   10540: #
                   10541:     if ($args->{'openall'}) {
                   10542:        my $storeunder=$$crsudom.'_'.$$crsunum.'.0.opendate';
                   10543:        my %storecontent = ($storeunder         => time,
                   10544:                            $storeunder.'.type' => 'date_start');
                   10545:        
                   10546:        $outcome .= &mt('Opening all assignments').': '.&Apache::lonnet::cput
1.541     raeburn  10547:                  ('resourcedata',\%storecontent,$$crsudom,$$crsunum).$linefeed;
1.444     albertel 10548:    }
                   10549: #
                   10550: # Set first page
                   10551: #
                   10552:     unless (($args->{'nonstandard'}) || ($args->{'firstres'} eq 'blank')
                   10553: 	    || ($cloneid)) {
1.445     albertel 10554: 	use LONCAPA::map;
1.444     albertel 10555: 	$outcome .= &mt('Setting first resource').': ';
1.445     albertel 10556: 
                   10557: 	my $map = '/uploaded/'.$$crsudom.'/'.$$crsunum.'/default.sequence';
                   10558:         my ($errtext,$fatal)=&LONCAPA::map::mapread($map);
                   10559: 
1.444     albertel 10560:         $outcome .= ($fatal?$errtext:'read ok').' - ';
                   10561:         my $title; my $url;
                   10562:         if ($args->{'firstres'} eq 'syl') {
1.690     bisitz   10563: 	    $title=&mt('Syllabus');
1.444     albertel 10564:             $url='/public/'.$$crsudom.'/'.$$crsunum.'/syllabus';
                   10565:         } else {
1.948.2.5  raeburn  10566:             $title=&mt('Table of Contents');
1.444     albertel 10567:             $url='/adm/navmaps';
                   10568:         }
1.445     albertel 10569: 
                   10570:         $LONCAPA::map::resources[1]=$title.':'.$url.':false:start:res';
                   10571: 	(my $outtext,$errtext) = &LONCAPA::map::storemap($map,1);
                   10572: 
                   10573: 	if ($errtext) { $fatal=2; }
1.541     raeburn  10574:         $outcome .= ($fatal?$errtext:'write ok').$linefeed;
1.444     albertel 10575:     }
1.566     albertel 10576: 
                   10577:     return (1,$outcome);
1.444     albertel 10578: }
                   10579: 
                   10580: ############################################################
                   10581: ############################################################
                   10582: 
1.378     raeburn  10583: sub course_type {
                   10584:     my ($cid) = @_;
                   10585:     if (!defined($cid)) {
                   10586:         $cid = $env{'request.course.id'};
                   10587:     }
1.404     albertel 10588:     if (defined($env{'course.'.$cid.'.type'})) {
                   10589:         return $env{'course.'.$cid.'.type'};
1.378     raeburn  10590:     } else {
                   10591:         return 'Course';
1.377     raeburn  10592:     }
                   10593: }
1.156     albertel 10594: 
1.406     raeburn  10595: sub group_term {
                   10596:     my $crstype = &course_type();
                   10597:     my %names = (
                   10598:                   'Course' => 'group',
1.865     raeburn  10599:                   'Community' => 'group',
1.406     raeburn  10600:                 );
                   10601:     return $names{$crstype};
                   10602: }
                   10603: 
1.902     raeburn  10604: sub course_types {
                   10605:     my @types = ('official','unofficial','community');
                   10606:     my %typename = (
                   10607:                          official   => 'Official course',
                   10608:                          unofficial => 'Unofficial course',
                   10609:                          community  => 'Community',
                   10610:                    );
                   10611:     return (\@types,\%typename);
                   10612: }
                   10613: 
1.156     albertel 10614: sub icon {
                   10615:     my ($file)=@_;
1.505     albertel 10616:     my $curfext = lc((split(/\./,$file))[-1]);
1.168     albertel 10617:     my $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/unknown.gif';
1.156     albertel 10618:     my $embstyle = &Apache::loncommon::fileembstyle($curfext);
1.168     albertel 10619:     if (!(!defined($embstyle) || $embstyle eq 'unk' || $embstyle eq 'hdn')) {
                   10620: 	if (-e  $Apache::lonnet::perlvar{'lonDocRoot'}.'/'.
                   10621: 	          $Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
                   10622: 	            $curfext.".gif") {
                   10623: 	    $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
                   10624: 		$curfext.".gif";
                   10625: 	}
                   10626:     }
1.249     albertel 10627:     return &lonhttpdurl($iconname);
1.154     albertel 10628: } 
1.84      albertel 10629: 
1.575     albertel 10630: sub lonhttpdurl {
1.692     www      10631: #
                   10632: # Had been used for "small fry" static images on separate port 8080.
                   10633: # Modify here if lightweight http functionality desired again.
                   10634: # Currently eliminated due to increasing firewall issues.
                   10635: #
1.575     albertel 10636:     my ($url)=@_;
1.692     www      10637:     return $url;
1.215     albertel 10638: }
                   10639: 
1.213     albertel 10640: sub connection_aborted {
                   10641:     my ($r)=@_;
                   10642:     $r->print(" ");$r->rflush();
                   10643:     my $c = $r->connection;
                   10644:     return $c->aborted();
                   10645: }
                   10646: 
1.221     foxr     10647: #    Escapes strings that may have embedded 's that will be put into
1.222     foxr     10648: #    strings as 'strings'.
                   10649: sub escape_single {
1.221     foxr     10650:     my ($input) = @_;
1.223     albertel 10651:     $input =~ s/\\/\\\\/g;	# Escape the \'s..(must be first)>
1.221     foxr     10652:     $input =~ s/\'/\\\'/g;	# Esacpe the 's....
                   10653:     return $input;
                   10654: }
1.223     albertel 10655: 
1.222     foxr     10656: #  Same as escape_single, but escape's "'s  This 
                   10657: #  can be used for  "strings"
                   10658: sub escape_double {
                   10659:     my ($input) = @_;
                   10660:     $input =~ s/\\/\\\\/g;	# Escape the /'s..(must be first)>
                   10661:     $input =~ s/\"/\\\"/g;	# Esacpe the "s....
                   10662:     return $input;
                   10663: }
1.223     albertel 10664:  
1.222     foxr     10665: #   Escapes the last element of a full URL.
                   10666: sub escape_url {
                   10667:     my ($url)   = @_;
1.238     raeburn  10668:     my @urlslices = split(/\//, $url,-1);
1.369     www      10669:     my $lastitem = &escape(pop(@urlslices));
1.223     albertel 10670:     return join('/',@urlslices).'/'.$lastitem;
1.222     foxr     10671: }
1.462     albertel 10672: 
1.820     raeburn  10673: sub compare_arrays {
                   10674:     my ($arrayref1,$arrayref2) = @_;
                   10675:     my (@difference,%count);
                   10676:     @difference = ();
                   10677:     %count = ();
                   10678:     if ((ref($arrayref1) eq 'ARRAY') && (ref($arrayref2) eq 'ARRAY')) {
                   10679:         foreach my $element (@{$arrayref1}, @{$arrayref2}) { $count{$element}++; }
                   10680:         foreach my $element (keys(%count)) {
                   10681:             if ($count{$element} == 1) {
                   10682:                 push(@difference,$element);
                   10683:             }
                   10684:         }
                   10685:     }
                   10686:     return @difference;
                   10687: }
                   10688: 
1.817     bisitz   10689: # -------------------------------------------------------- Initialize user login
1.462     albertel 10690: sub init_user_environment {
1.463     albertel 10691:     my ($r, $username, $domain, $authhost, $form, $args) = @_;
1.462     albertel 10692:     my $lonids=$Apache::lonnet::perlvar{'lonIDsDir'};
                   10693: 
                   10694:     my $public=($username eq 'public' && $domain eq 'public');
                   10695: 
                   10696: # See if old ID present, if so, remove
                   10697: 
                   10698:     my ($filename,$cookie,$userroles);
                   10699:     my $now=time;
                   10700: 
                   10701:     if ($public) {
                   10702: 	my $max_public=100;
                   10703: 	my $oldest;
                   10704: 	my $oldest_time=0;
                   10705: 	for(my $next=1;$next<=$max_public;$next++) {
                   10706: 	    if (-e $lonids."/publicuser_$next.id") {
                   10707: 		my $mtime=(stat($lonids."/publicuser_$next.id"))[9];
                   10708: 		if ($mtime<$oldest_time || !$oldest_time) {
                   10709: 		    $oldest_time=$mtime;
                   10710: 		    $oldest=$next;
                   10711: 		}
                   10712: 	    } else {
                   10713: 		$cookie="publicuser_$next";
                   10714: 		last;
                   10715: 	    }
                   10716: 	}
                   10717: 	if (!$cookie) { $cookie="publicuser_$oldest"; }
                   10718:     } else {
1.463     albertel 10719: 	# if this isn't a robot, kill any existing non-robot sessions
                   10720: 	if (!$args->{'robot'}) {
                   10721: 	    opendir(DIR,$lonids);
                   10722: 	    while ($filename=readdir(DIR)) {
                   10723: 		if ($filename=~/^$username\_\d+\_$domain\_$authhost\.id$/) {
                   10724: 		    unlink($lonids.'/'.$filename);
                   10725: 		}
1.462     albertel 10726: 	    }
1.463     albertel 10727: 	    closedir(DIR);
1.462     albertel 10728: 	}
                   10729: # Give them a new cookie
1.463     albertel 10730: 	my $id = ($args->{'robot'} ? 'robot'.$args->{'robot'}
1.684     www      10731: 		                   : $now.$$.int(rand(10000)));
1.463     albertel 10732: 	$cookie="$username\_$id\_$domain\_$authhost";
1.462     albertel 10733:     
                   10734: # Initialize roles
                   10735: 
                   10736: 	$userroles=&Apache::lonnet::rolesinit($domain,$username,$authhost);
                   10737:     }
                   10738: # ------------------------------------ Check browser type and MathML capability
                   10739: 
                   10740:     my ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
                   10741:         $clientunicode,$clientos) = &decode_user_agent($r);
                   10742: 
                   10743: # ------------------------------------------------------------- Get environment
                   10744: 
                   10745:     my %userenv = &Apache::lonnet::dump('environment',$domain,$username);
                   10746:     my ($tmp) = keys(%userenv);
                   10747:     if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
                   10748: 	# default remote control to off
                   10749: 	if ($userenv{'remote'} ne 'on') { $userenv{'remote'} = 'off'; }
                   10750:     } else {
                   10751: 	undef(%userenv);
                   10752:     }
                   10753:     if (($userenv{'interface'}) && (!$form->{'interface'})) {
                   10754: 	$form->{'interface'}=$userenv{'interface'};
                   10755:     }
                   10756:     $env{'environment.remote'}=$userenv{'remote'};
                   10757:     if ($userenv{'texengine'} eq 'ttm') { $clientmathml=1; }
                   10758: 
                   10759: # --------------- Do not trust query string to be put directly into environment
1.817     bisitz   10760:     foreach my $option ('interface','localpath','localres') {
                   10761:         $form->{$option}=~s/[\n\r\=]//gs;
1.462     albertel 10762:     }
                   10763: # --------------------------------------------------------- Write first profile
                   10764: 
                   10765:     {
                   10766: 	my %initial_env = 
                   10767: 	    ("user.name"          => $username,
                   10768: 	     "user.domain"        => $domain,
                   10769: 	     "user.home"          => $authhost,
                   10770: 	     "browser.type"       => $clientbrowser,
                   10771: 	     "browser.version"    => $clientversion,
                   10772: 	     "browser.mathml"     => $clientmathml,
                   10773: 	     "browser.unicode"    => $clientunicode,
                   10774: 	     "browser.os"         => $clientos,
                   10775: 	     "server.domain"      => $Apache::lonnet::perlvar{'lonDefDomain'},
                   10776: 	     "request.course.fn"  => '',
                   10777: 	     "request.course.uri" => '',
                   10778: 	     "request.course.sec" => '',
                   10779: 	     "request.role"       => 'cm',
                   10780: 	     "request.role.adv"   => $env{'user.adv'},
                   10781: 	     "request.host"       => $ENV{'REMOTE_ADDR'},);
                   10782: 
                   10783:         if ($form->{'localpath'}) {
                   10784: 	    $initial_env{"browser.localpath"}  = $form->{'localpath'};
                   10785: 	    $initial_env{"browser.localres"}   = $form->{'localres'};
                   10786:         }
                   10787: 	
                   10788: 	if ($public) {
                   10789: 	    $initial_env{"environment.remote"} = "off";
                   10790: 	}
                   10791: 	if ($form->{'interface'}) {
                   10792: 	    $form->{'interface'}=~s/\W//gs;
                   10793: 	    $initial_env{"browser.interface"} = $form->{'interface'};
                   10794: 	    $env{'browser.interface'}=$form->{'interface'};
                   10795: 	}
                   10796: 
1.724     raeburn  10797:         foreach my $tool ('aboutme','blog','portfolio') {
                   10798:             $userenv{'availabletools.'.$tool} = 
                   10799:                 &Apache::lonnet::usertools_access($username,$domain,$tool,'reload');
                   10800:         }
                   10801: 
1.864     raeburn  10802:         foreach my $crstype ('official','unofficial','community') {
1.765     raeburn  10803:             $userenv{'canrequest.'.$crstype} =
                   10804:                 &Apache::lonnet::usertools_access($username,$domain,$crstype,
                   10805:                                                   'reload','requestcourses');
                   10806:         }
                   10807: 
1.462     albertel 10808: 	$env{'user.environment'} = "$lonids/$cookie.id";
                   10809: 	
                   10810: 	if (tie(my %disk_env,'GDBM_File',"$lonids/$cookie.id",
                   10811: 		 &GDBM_WRCREAT(),0640)) {
                   10812: 	    &_add_to_env(\%disk_env,\%initial_env);
                   10813: 	    &_add_to_env(\%disk_env,\%userenv,'environment.');
                   10814: 	    &_add_to_env(\%disk_env,$userroles);
1.463     albertel 10815: 	    if (ref($args->{'extra_env'})) {
                   10816: 		&_add_to_env(\%disk_env,$args->{'extra_env'});
                   10817: 	    }
1.462     albertel 10818: 	    untie(%disk_env);
                   10819: 	} else {
1.705     tempelho 10820: 	    &Apache::lonnet::logthis("<span style=\"color:blue;\">WARNING: ".
                   10821: 			   'Could not create environment storage in lonauth: '.$!.'</span>');
1.462     albertel 10822: 	    return 'error: '.$!;
                   10823: 	}
                   10824:     }
                   10825:     $env{'request.role'}='cm';
                   10826:     $env{'request.role.adv'}=$env{'user.adv'};
                   10827:     $env{'browser.type'}=$clientbrowser;
                   10828: 
                   10829:     return $cookie;
                   10830: 
                   10831: }
                   10832: 
                   10833: sub _add_to_env {
                   10834:     my ($idf,$env_data,$prefix) = @_;
1.676     raeburn  10835:     if (ref($env_data) eq 'HASH') {
                   10836:         while (my ($key,$value) = each(%$env_data)) {
                   10837: 	    $idf->{$prefix.$key} = $value;
                   10838: 	    $env{$prefix.$key}   = $value;
                   10839:         }
1.462     albertel 10840:     }
                   10841: }
                   10842: 
1.685     tempelho 10843: # --- Get the symbolic name of a problem and the url
                   10844: sub get_symb {
                   10845:     my ($request,$silent) = @_;
1.726     raeburn  10846:     (my $url=$env{'form.url'}) =~ s-^https?\://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
1.685     tempelho 10847:     my $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url)));
                   10848:     if ($symb eq '') {
                   10849:         if (!$silent) {
                   10850:             $request->print("Unable to handle ambiguous references:$url:.");
                   10851:             return ();
                   10852:         }
                   10853:     }
                   10854:     &Apache::lonenc::check_decrypt(\$symb);
                   10855:     return ($symb);
                   10856: }
                   10857: 
                   10858: # --------------------------------------------------------------Get annotation
                   10859: 
                   10860: sub get_annotation {
                   10861:     my ($symb,$enc) = @_;
                   10862: 
                   10863:     my $key = $symb;
                   10864:     if (!$enc) {
                   10865:         $key =
                   10866:             &Apache::lonnet::clutter((&Apache::lonnet::decode_symb($symb))[2]);
                   10867:     }
                   10868:     my %annotation=&Apache::lonnet::get('nohist_annotations',[$key]);
                   10869:     return $annotation{$key};
                   10870: }
                   10871: 
                   10872: sub clean_symb {
1.731     raeburn  10873:     my ($symb,$delete_enc) = @_;
1.685     tempelho 10874: 
                   10875:     &Apache::lonenc::check_decrypt(\$symb);
                   10876:     my $enc = $env{'request.enc'};
1.731     raeburn  10877:     if ($delete_enc) {
1.730     raeburn  10878:         delete($env{'request.enc'});
                   10879:     }
1.685     tempelho 10880: 
                   10881:     return ($symb,$enc);
                   10882: }
1.462     albertel 10883: 
1.41      ng       10884: =pod
                   10885: 
                   10886: =back
                   10887: 
1.112     bowersj2 10888: =cut
1.41      ng       10889: 
1.112     bowersj2 10890: 1;
                   10891: __END__;
1.41      ng       10892: 

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