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

1.10      albertel    1: # The LearningOnline Network with CAPA
1.1       albertel    2: # a pile of common routines
1.10      albertel    3: #
1.1047  ! raeburn     4: # $Id: loncommon.pm,v 1.1046 2011/12/23 16:55:34 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.999     www       412:     function openstdbrowser(formname,uname,udom,clicker,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+
1.999     www       424:                                     '&udomelement='+udom+
                    425:                                     '&clicker='+clicker;
1.111     www       426: 	if (roleflag) { url+="&roles=1"; }
1.793     raeburn   427:         if (courseadvonly) { url+="&courseadvonly=1"; }
1.102     www       428:         var title = 'Student_Browser';
1.74      www       429:         var options = 'scrollbars=1,resizable=1,menubar=0';
                    430:         options += ',width=700,height=600';
                    431:         stdeditbrowser = open(url,title,options,'1');
                    432:         stdeditbrowser.focus();
                    433:     }
1.824     bisitz    434: // ]]>
1.74      www       435: </script>
                    436: ENDSTDBRW
                    437: }
1.42      matthew   438: 
1.1003    www       439: sub resourcebrowser_javascript {
                    440:    unless ($env{'request.course.id'}) { return ''; }
1.1004    www       441:    return (<<'ENDRESBRW');
1.1003    www       442: <script type="text/javascript" language="Javascript">
                    443: // <![CDATA[
                    444:     var reseditbrowser;
1.1004    www       445:     function openresbrowser(formname,reslink) {
1.1005    www       446:         var url = '/adm/pickresource?form='+formname+'&reslink='+reslink;
1.1003    www       447:         var title = 'Resource_Browser';
                    448:         var options = 'scrollbars=1,resizable=1,menubar=0';
1.1005    www       449:         options += ',width=700,height=500';
1.1004    www       450:         reseditbrowser = open(url,title,options,'1');
                    451:         reseditbrowser.focus();
1.1003    www       452:     }
                    453: // ]]>
                    454: </script>
1.1004    www       455: ENDRESBRW
1.1003    www       456: }
                    457: 
1.74      www       458: sub selectstudent_link {
1.999     www       459:    my ($form,$unameele,$udomele,$courseadvonly,$clickerid)=@_;
                    460:    my $callargs = "'".&Apache::lonhtmlcommon::entity_encode($form)."','".
                    461:                       &Apache::lonhtmlcommon::entity_encode($unameele)."','".
                    462:                       &Apache::lonhtmlcommon::entity_encode($udomele)."'";
1.258     albertel  463:    if ($env{'request.course.id'}) {  
1.302     albertel  464:        if (!&Apache::lonnet::allowed('srm',$env{'request.course.id'})
                    465: 	   && !&Apache::lonnet::allowed('srm',$env{'request.course.id'}.
                    466: 					'/'.$env{'request.course.sec'})) {
1.111     www       467: 	   return '';
                    468:        }
1.999     www       469:        $callargs.=",'".&Apache::lonhtmlcommon::entity_encode($clickerid)."'";
1.793     raeburn   470:        if ($courseadvonly)  {
                    471:            $callargs .= ",'',1,1";
                    472:        }
                    473:        return '<span class="LC_nobreak">'.
                    474:               '<a href="javascript:openstdbrowser('.$callargs.');">'.
                    475:               &mt('Select User').'</a></span>';
1.74      www       476:    }
1.258     albertel  477:    if ($env{'request.role'}=~/^(au|dc|su)/) {
1.1012    www       478:        $callargs .= ",'',1"; 
1.793     raeburn   479:        return '<span class="LC_nobreak">'.
                    480:               '<a href="javascript:openstdbrowser('.$callargs.');">'.
                    481:               &mt('Select User').'</a></span>';
1.111     www       482:    }
                    483:    return '';
1.91      www       484: }
                    485: 
1.1004    www       486: sub selectresource_link {
                    487:    my ($form,$reslink,$arg)=@_;
                    488:    
                    489:    my $callargs = "'".&Apache::lonhtmlcommon::entity_encode($form)."','".
                    490:                       &Apache::lonhtmlcommon::entity_encode($reslink)."'";
                    491:    unless ($env{'request.course.id'}) { return $arg; }
                    492:    return '<span class="LC_nobreak">'.
                    493:               '<a href="javascript:openresbrowser('.$callargs.');">'.
                    494:               $arg.'</a></span>';
                    495: }
                    496: 
                    497: 
                    498: 
1.653     raeburn   499: sub authorbrowser_javascript {
                    500:     return <<"ENDAUTHORBRW";
1.776     bisitz    501: <script type="text/javascript" language="JavaScript">
1.824     bisitz    502: // <![CDATA[
1.653     raeburn   503: var stdeditbrowser;
                    504: 
                    505: function openauthorbrowser(formname,udom) {
                    506:     var url = '/adm/pickauthor?';
                    507:     url += 'form='+formname+'&roledom='+udom;
                    508:     var title = 'Author_Browser';
                    509:     var options = 'scrollbars=1,resizable=1,menubar=0';
                    510:     options += ',width=700,height=600';
                    511:     stdeditbrowser = open(url,title,options,'1');
                    512:     stdeditbrowser.focus();
                    513: }
                    514: 
1.824     bisitz    515: // ]]>
1.653     raeburn   516: </script>
                    517: ENDAUTHORBRW
                    518: }
                    519: 
1.91      www       520: sub coursebrowser_javascript {
1.909     raeburn   521:     my ($domainfilter,$sec_element,$formname,$role_element,$crstype) = @_;
1.932     raeburn   522:     my $wintitle = 'Course_Browser';
1.931     raeburn   523:     if ($crstype eq 'Community') {
1.932     raeburn   524:         $wintitle = 'Community_Browser';
1.909     raeburn   525:     }
1.876     raeburn   526:     my $id_functions = &javascript_index_functions();
                    527:     my $output = '
1.776     bisitz    528: <script type="text/javascript" language="JavaScript">
1.824     bisitz    529: // <![CDATA[
1.468     raeburn   530:     var stdeditbrowser;'."\n";
1.876     raeburn   531: 
                    532:     $output .= <<"ENDSTDBRW";
1.909     raeburn   533:     function opencrsbrowser(formname,uname,udom,desc,extra_element,multflag,type,type_elem) {
1.91      www       534:         var url = '/adm/pickcourse?';
1.895     raeburn   535:         var formid = getFormIdByName(formname);
1.876     raeburn   536:         var domainfilter = getDomainFromSelectbox(formname,udom);
1.128     albertel  537:         if (domainfilter != null) {
                    538:            if (domainfilter != '') {
                    539:                url += 'domainfilter='+domainfilter+'&';
                    540: 	   }
                    541:         }
1.91      www       542:         url += 'form=' + formname + '&cnumelement='+uname+
1.187     albertel  543: 	                            '&cdomelement='+udom+
                    544:                                     '&cnameelement='+desc;
1.468     raeburn   545:         if (extra_element !=null && extra_element != '') {
1.594     raeburn   546:             if (formname == 'rolechoice' || formname == 'studentform') {
1.468     raeburn   547:                 url += '&roleelement='+extra_element;
                    548:                 if (domainfilter == null || domainfilter == '') {
                    549:                     url += '&domainfilter='+extra_element;
                    550:                 }
1.234     raeburn   551:             }
1.468     raeburn   552:             else {
                    553:                 if (formname == 'portform') {
                    554:                     url += '&setroles='+extra_element;
1.800     raeburn   555:                 } else {
                    556:                     if (formname == 'rules') {
                    557:                         url += '&fixeddom='+extra_element; 
                    558:                     }
1.468     raeburn   559:                 }
                    560:             }     
1.230     raeburn   561:         }
1.909     raeburn   562:         if (type != null && type != '') {
                    563:             url += '&type='+type;
                    564:         }
                    565:         if (type_elem != null && type_elem != '') {
                    566:             url += '&typeelement='+type_elem;
                    567:         }
1.872     raeburn   568:         if (formname == 'ccrs') {
                    569:             var ownername = document.forms[formid].ccuname.value;
                    570:             var ownerdom =  document.forms[formid].ccdomain.options[document.forms[formid].ccdomain.selectedIndex].value;
                    571:             url += '&cloner='+ownername+':'+ownerdom;
                    572:         }
1.293     raeburn   573:         if (multflag !=null && multflag != '') {
                    574:             url += '&multiple='+multflag;
                    575:         }
1.909     raeburn   576:         var title = '$wintitle';
1.91      www       577:         var options = 'scrollbars=1,resizable=1,menubar=0';
                    578:         options += ',width=700,height=600';
                    579:         stdeditbrowser = open(url,title,options,'1');
                    580:         stdeditbrowser.focus();
                    581:     }
1.876     raeburn   582: $id_functions
                    583: ENDSTDBRW
1.905     raeburn   584:     if (($sec_element ne '') || ($role_element ne '')) {
                    585:         $output .= &setsec_javascript($sec_element,$formname,$role_element);
1.876     raeburn   586:     }
                    587:     $output .= '
                    588: // ]]>
                    589: </script>';
                    590:     return $output;
                    591: }
                    592: 
                    593: sub javascript_index_functions {
                    594:     return <<"ENDJS";
                    595: 
                    596: function getFormIdByName(formname) {
                    597:     for (var i=0;i<document.forms.length;i++) {
                    598:         if (document.forms[i].name == formname) {
                    599:             return i;
                    600:         }
                    601:     }
                    602:     return -1;
                    603: }
                    604: 
                    605: function getIndexByName(formid,item) {
                    606:     for (var i=0;i<document.forms[formid].elements.length;i++) {
                    607:         if (document.forms[formid].elements[i].name == item) {
                    608:             return i;
                    609:         }
                    610:     }
                    611:     return -1;
                    612: }
1.468     raeburn   613: 
1.876     raeburn   614: function getDomainFromSelectbox(formname,udom) {
                    615:     var userdom;
                    616:     var formid = getFormIdByName(formname);
                    617:     if (formid > -1) {
                    618:         var domid = getIndexByName(formid,udom);
                    619:         if (domid > -1) {
                    620:             if (document.forms[formid].elements[domid].type == 'select-one') {
                    621:                 userdom=document.forms[formid].elements[domid].options[document.forms[formid].elements[domid].selectedIndex].value;
                    622:             }
                    623:             if (document.forms[formid].elements[domid].type == 'hidden') {
                    624:                 userdom=document.forms[formid].elements[domid].value;
1.468     raeburn   625:             }
                    626:         }
                    627:     }
1.876     raeburn   628:     return userdom;
                    629: }
                    630: 
                    631: ENDJS
1.468     raeburn   632: 
1.876     raeburn   633: }
                    634: 
1.1017    raeburn   635: sub javascript_array_indexof {
1.1018    raeburn   636:     return <<ENDJS;
1.1017    raeburn   637: <script type="text/javascript" language="JavaScript">
                    638: // <![CDATA[
                    639: 
                    640: if (!Array.prototype.indexOf) {
                    641:     Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) {
                    642:         "use strict";
                    643:         if (this === void 0 || this === null) {
                    644:             throw new TypeError();
                    645:         }
                    646:         var t = Object(this);
                    647:         var len = t.length >>> 0;
                    648:         if (len === 0) {
                    649:             return -1;
                    650:         }
                    651:         var n = 0;
                    652:         if (arguments.length > 0) {
                    653:             n = Number(arguments[1]);
                    654:             if (n !== n) { // shortcut for verifying if it's NaN
                    655:                 n = 0;
                    656:             } else if (n !== 0 && n !== (1 / 0) && n !== -(1 / 0)) {
                    657:                 n = (n > 0 || -1) * Math.floor(Math.abs(n));
                    658:             }
                    659:         }
                    660:         if (n >= len) {
                    661:             return -1;
                    662:         }
                    663:         var k = n >= 0 ? n : Math.max(len - Math.abs(n), 0);
                    664:         for (; k < len; k++) {
                    665:             if (k in t && t[k] === searchElement) {
                    666:                 return k;
                    667:             }
                    668:         }
                    669:         return -1;
                    670:     }
                    671: }
                    672: 
                    673: // ]]>
                    674: </script>
                    675: 
                    676: ENDJS
                    677: 
                    678: }
                    679: 
1.876     raeburn   680: sub userbrowser_javascript {
                    681:     my $id_functions = &javascript_index_functions();
                    682:     return <<"ENDUSERBRW";
                    683: 
1.888     raeburn   684: function openuserbrowser(formname,uname,udom,ulast,ufirst,uemail,hideudom,crsdom,caller) {
1.876     raeburn   685:     var url = '/adm/pickuser?';
                    686:     var userdom = getDomainFromSelectbox(formname,udom);
                    687:     if (userdom != null) {
                    688:        if (userdom != '') {
                    689:            url += 'srchdom='+userdom+'&';
                    690:        }
                    691:     }
                    692:     url += 'form=' + formname + '&unameelement='+uname+
                    693:                                 '&udomelement='+udom+
                    694:                                 '&ulastelement='+ulast+
                    695:                                 '&ufirstelement='+ufirst+
                    696:                                 '&uemailelement='+uemail+
1.881     raeburn   697:                                 '&hideudomelement='+hideudom+
                    698:                                 '&coursedom='+crsdom;
1.888     raeburn   699:     if ((caller != null) && (caller != undefined)) {
                    700:         url += '&caller='+caller;
                    701:     }
1.876     raeburn   702:     var title = 'User_Browser';
                    703:     var options = 'scrollbars=1,resizable=1,menubar=0';
                    704:     options += ',width=700,height=600';
                    705:     var stdeditbrowser = open(url,title,options,'1');
                    706:     stdeditbrowser.focus();
                    707: }
                    708: 
1.888     raeburn   709: function fix_domain (formname,udom,origdom,uname) {
1.876     raeburn   710:     var formid = getFormIdByName(formname);
                    711:     if (formid > -1) {
1.888     raeburn   712:         var unameid = getIndexByName(formid,uname);
1.876     raeburn   713:         var domid = getIndexByName(formid,udom);
                    714:         var hidedomid = getIndexByName(formid,origdom);
                    715:         if (hidedomid > -1) {
                    716:             var fixeddom = document.forms[formid].elements[hidedomid].value;
1.888     raeburn   717:             var unameval = document.forms[formid].elements[unameid].value;
                    718:             if ((fixeddom != '') && (fixeddom != undefined) && (fixeddom != null) && (unameval != '') && (unameval != undefined) && (unameval != null)) {
                    719:                 if (domid > -1) {
                    720:                     var slct = document.forms[formid].elements[domid];
                    721:                     if (slct.type == 'select-one') {
                    722:                         var i;
                    723:                         for (i=0;i<slct.length;i++) {
                    724:                             if (slct.options[i].value==fixeddom) { slct.selectedIndex=i; }
                    725:                         }
                    726:                     }
                    727:                     if (slct.type == 'hidden') {
                    728:                         slct.value = fixeddom;
1.876     raeburn   729:                     }
                    730:                 }
1.468     raeburn   731:             }
                    732:         }
                    733:     }
1.876     raeburn   734:     return;
                    735: }
                    736: 
                    737: $id_functions
                    738: ENDUSERBRW
1.468     raeburn   739: }
                    740: 
                    741: sub setsec_javascript {
1.905     raeburn   742:     my ($sec_element,$formname,$role_element) = @_;
                    743:     my (@courserolenames,@communityrolenames,$rolestr,$courserolestr,
                    744:         $communityrolestr);
                    745:     if ($role_element ne '') {
                    746:         my @allroles = ('st','ta','ep','in','ad');
                    747:         foreach my $crstype ('Course','Community') {
                    748:             if ($crstype eq 'Community') {
                    749:                 foreach my $role (@allroles) {
                    750:                     push(@communityrolenames,&Apache::lonnet::plaintext($role,$crstype));
                    751:                 }
                    752:                 push(@communityrolenames,&Apache::lonnet::plaintext('co'));
                    753:             } else {
                    754:                 foreach my $role (@allroles) {
                    755:                     push(@courserolenames,&Apache::lonnet::plaintext($role,$crstype));
                    756:                 }
                    757:                 push(@courserolenames,&Apache::lonnet::plaintext('cc'));
                    758:             }
                    759:         }
                    760:         $rolestr = '"'.join('","',@allroles).'"';
                    761:         $courserolestr = '"'.join('","',@courserolenames).'"';
                    762:         $communityrolestr = '"'.join('","',@communityrolenames).'"';
                    763:     }
1.468     raeburn   764:     my $setsections = qq|
                    765: function setSect(sectionlist) {
1.629     raeburn   766:     var sectionsArray = new Array();
                    767:     if ((sectionlist != '') && (typeof sectionlist != "undefined")) {
                    768:         sectionsArray = sectionlist.split(",");
                    769:     }
1.468     raeburn   770:     var numSections = sectionsArray.length;
                    771:     document.$formname.$sec_element.length = 0;
                    772:     if (numSections == 0) {
                    773:         document.$formname.$sec_element.multiple=false;
                    774:         document.$formname.$sec_element.size=1;
                    775:         document.$formname.$sec_element.options[0] = new Option('No existing sections','',false,false)
                    776:     } else {
                    777:         if (numSections == 1) {
                    778:             document.$formname.$sec_element.multiple=false;
                    779:             document.$formname.$sec_element.size=1;
                    780:             document.$formname.$sec_element.options[0] = new Option('Select','',true,true);
                    781:             document.$formname.$sec_element.options[1] = new Option('No section','',false,false)
                    782:             document.$formname.$sec_element.options[2] = new Option(sectionsArray[0],sectionsArray[0],false,false);
                    783:         } else {
                    784:             for (var i=0; i<numSections; i++) {
                    785:                 document.$formname.$sec_element.options[i] = new Option(sectionsArray[i],sectionsArray[i],false,false)
                    786:             }
                    787:             document.$formname.$sec_element.multiple=true
                    788:             if (numSections < 3) {
                    789:                 document.$formname.$sec_element.size=numSections;
                    790:             } else {
                    791:                 document.$formname.$sec_element.size=3;
                    792:             }
                    793:             document.$formname.$sec_element.options[0].selected = false
                    794:         }
                    795:     }
1.91      www       796: }
1.905     raeburn   797: 
                    798: function setRole(crstype) {
1.468     raeburn   799: |;
1.905     raeburn   800:     if ($role_element eq '') {
                    801:         $setsections .= '    return;
                    802: }
                    803: ';
                    804:     } else {
                    805:         $setsections .= qq|
                    806:     var elementLength = document.$formname.$role_element.length;
                    807:     var allroles = Array($rolestr);
                    808:     var courserolenames = Array($courserolestr);
                    809:     var communityrolenames = Array($communityrolestr);
                    810:     if (elementLength != undefined) {
                    811:         if (document.$formname.$role_element.options[5].value == 'cc') {
                    812:             if (crstype == 'Course') {
                    813:                 return;
                    814:             } else {
                    815:                 allroles[5] = 'co';
                    816:                 for (var i=0; i<6; i++) {
                    817:                     document.$formname.$role_element.options[i].value = allroles[i];
                    818:                     document.$formname.$role_element.options[i].text = communityrolenames[i];
                    819:                 }
                    820:             }
                    821:         } else {
                    822:             if (crstype == 'Community') {
                    823:                 return;
                    824:             } else {
                    825:                 allroles[5] = 'cc';
                    826:                 for (var i=0; i<6; i++) {
                    827:                     document.$formname.$role_element.options[i].value = allroles[i];
                    828:                     document.$formname.$role_element.options[i].text = courserolenames[i];
                    829:                 }
                    830:             }
                    831:         }
                    832:     }
                    833:     return;
                    834: }
                    835: |;
                    836:     }
1.468     raeburn   837:     return $setsections;
                    838: }
                    839: 
1.91      www       840: sub selectcourse_link {
1.909     raeburn   841:    my ($form,$unameele,$udomele,$desc,$extra_element,$multflag,$selecttype,
                    842:        $typeelement) = @_;
                    843:    my $type = $selecttype;
1.871     raeburn   844:    my $linktext = &mt('Select Course');
                    845:    if ($selecttype eq 'Community') {
1.909     raeburn   846:        $linktext = &mt('Select Community');
1.906     raeburn   847:    } elsif ($selecttype eq 'Course/Community') {
                    848:        $linktext = &mt('Select Course/Community');
1.909     raeburn   849:        $type = '';
1.1019    raeburn   850:    } elsif ($selecttype eq 'Select') {
                    851:        $linktext = &mt('Select');
                    852:        $type = '';
1.871     raeburn   853:    }
1.787     bisitz    854:    return '<span class="LC_nobreak">'
                    855:          ."<a href='"
                    856:          .'javascript:opencrsbrowser("'.$form.'","'.$unameele
                    857:          .'","'.$udomele.'","'.$desc.'","'.$extra_element
1.909     raeburn   858:          .'","'.$multflag.'","'.$type.'","'.$typeelement.'");'
1.871     raeburn   859:          ."'>".$linktext.'</a>'
1.787     bisitz    860:          .'</span>';
1.74      www       861: }
1.42      matthew   862: 
1.653     raeburn   863: sub selectauthor_link {
                    864:    my ($form,$udom)=@_;
                    865:    return '<a href="javascript:openauthorbrowser('."'$form','$udom'".');">'.
                    866:           &mt('Select Author').'</a>';
                    867: }
                    868: 
1.876     raeburn   869: sub selectuser_link {
1.881     raeburn   870:     my ($form,$unameelem,$domelem,$lastelem,$firstelem,$emailelem,$hdomelem,
1.888     raeburn   871:         $coursedom,$linktext,$caller) = @_;
1.876     raeburn   872:     return '<a href="javascript:openuserbrowser('."'$form','$unameelem','$domelem',".
1.888     raeburn   873:            "'$lastelem','$firstelem','$emailelem','$hdomelem','$coursedom','$caller'".
1.881     raeburn   874:            ');">'.$linktext.'</a>';
1.876     raeburn   875: }
                    876: 
1.273     raeburn   877: sub check_uncheck_jscript {
                    878:     my $jscript = <<"ENDSCRT";
                    879: function checkAll(field) {
                    880:     if (field.length > 0) {
                    881:         for (i = 0; i < field.length; i++) {
                    882:             field[i].checked = true ;
                    883:         }
                    884:     } else {
                    885:         field.checked = true
                    886:     }
                    887: }
                    888:  
                    889: function uncheckAll(field) {
                    890:     if (field.length > 0) {
                    891:         for (i = 0; i < field.length; i++) {
                    892:             field[i].checked = false ;
1.543     albertel  893:         }
                    894:     } else {
1.273     raeburn   895:         field.checked = false ;
                    896:     }
                    897: }
                    898: ENDSCRT
                    899:     return $jscript;
                    900: }
                    901: 
1.656     www       902: sub select_timezone {
1.659     raeburn   903:    my ($name,$selected,$onchange,$includeempty)=@_;
                    904:    my $output='<select name="'.$name.'" '.$onchange.'>'."\n";
                    905:    if ($includeempty) {
                    906:        $output .= '<option value=""';
                    907:        if (($selected eq '') || ($selected eq 'local')) {
                    908:            $output .= ' selected="selected" ';
                    909:        }
                    910:        $output .= '> </option>';
                    911:    }
1.657     raeburn   912:    my @timezones = DateTime::TimeZone->all_names;
                    913:    foreach my $tzone (@timezones) {
                    914:        $output.= '<option value="'.$tzone.'"';
                    915:        if ($tzone eq $selected) {
                    916:            $output.=' selected="selected"';
                    917:        }
                    918:        $output.=">$tzone</option>\n";
1.656     www       919:    }
                    920:    $output.="</select>";
                    921:    return $output;
                    922: }
1.273     raeburn   923: 
1.687     raeburn   924: sub select_datelocale {
                    925:     my ($name,$selected,$onchange,$includeempty)=@_;
                    926:     my $output='<select name="'.$name.'" '.$onchange.'>'."\n";
                    927:     if ($includeempty) {
                    928:         $output .= '<option value=""';
                    929:         if ($selected eq '') {
                    930:             $output .= ' selected="selected" ';
                    931:         }
                    932:         $output .= '> </option>';
                    933:     }
                    934:     my (@possibles,%locale_names);
                    935:     my @locales = DateTime::Locale::Catalog::Locales;
                    936:     foreach my $locale (@locales) {
                    937:         if (ref($locale) eq 'HASH') {
                    938:             my $id = $locale->{'id'};
                    939:             if ($id ne '') {
                    940:                 my $en_terr = $locale->{'en_territory'};
                    941:                 my $native_terr = $locale->{'native_territory'};
1.695     raeburn   942:                 my @languages = &Apache::lonlocal::preferred_languages();
1.687     raeburn   943:                 if (grep(/^en$/,@languages) || !@languages) {
                    944:                     if ($en_terr ne '') {
                    945:                         $locale_names{$id} = '('.$en_terr.')';
                    946:                     } elsif ($native_terr ne '') {
                    947:                         $locale_names{$id} = $native_terr;
                    948:                     }
                    949:                 } else {
                    950:                     if ($native_terr ne '') {
                    951:                         $locale_names{$id} = $native_terr.' ';
                    952:                     } elsif ($en_terr ne '') {
                    953:                         $locale_names{$id} = '('.$en_terr.')';
                    954:                     }
                    955:                 }
                    956:                 push (@possibles,$id);
                    957:             }
                    958:         }
                    959:     }
                    960:     foreach my $item (sort(@possibles)) {
                    961:         $output.= '<option value="'.$item.'"';
                    962:         if ($item eq $selected) {
                    963:             $output.=' selected="selected"';
                    964:         }
                    965:         $output.=">$item";
                    966:         if ($locale_names{$item} ne '') {
                    967:             $output.="  $locale_names{$item}</option>\n";
                    968:         }
                    969:         $output.="</option>\n";
                    970:     }
                    971:     $output.="</select>";
                    972:     return $output;
                    973: }
                    974: 
1.792     raeburn   975: sub select_language {
                    976:     my ($name,$selected,$includeempty) = @_;
                    977:     my %langchoices;
                    978:     if ($includeempty) {
                    979:         %langchoices = ('' => 'No language preference');
                    980:     }
                    981:     foreach my $id (&languageids()) {
                    982:         my $code = &supportedlanguagecode($id);
                    983:         if ($code) {
                    984:             $langchoices{$code} = &plainlanguagedescription($id);
                    985:         }
                    986:     }
1.970     raeburn   987:     return &select_form($selected,$name,\%langchoices);
1.792     raeburn   988: }
                    989: 
1.42      matthew   990: =pod
1.36      matthew   991: 
1.648     raeburn   992: =item * &linked_select_forms(...)
1.36      matthew   993: 
                    994: linked_select_forms returns a string containing a <script></script> block
                    995: and html for two <select> menus.  The select menus will be linked in that
                    996: changing the value of the first menu will result in new values being placed
                    997: in the second menu.  The values in the select menu will appear in alphabetical
1.609     raeburn   998: order unless a defined order is provided.
1.36      matthew   999: 
                   1000: linked_select_forms takes the following ordered inputs:
                   1001: 
                   1002: =over 4
                   1003: 
1.112     bowersj2 1004: =item * $formname, the name of the <form> tag
1.36      matthew  1005: 
1.112     bowersj2 1006: =item * $middletext, the text which appears between the <select> tags
1.36      matthew  1007: 
1.112     bowersj2 1008: =item * $firstdefault, the default value for the first menu
1.36      matthew  1009: 
1.112     bowersj2 1010: =item * $firstselectname, the name of the first <select> tag
1.36      matthew  1011: 
1.112     bowersj2 1012: =item * $secondselectname, the name of the second <select> tag
1.36      matthew  1013: 
1.112     bowersj2 1014: =item * $hashref, a reference to a hash containing the data for the menus.
1.36      matthew  1015: 
1.609     raeburn  1016: =item * $menuorder, the order of values in the first menu
                   1017: 
1.41      ng       1018: =back 
                   1019: 
1.36      matthew  1020: Below is an example of such a hash.  Only the 'text', 'default', and 
                   1021: 'select2' keys must appear as stated.  keys(%menu) are the possible 
                   1022: values for the first select menu.  The text that coincides with the 
1.41      ng       1023: first menu value is given in $menu{$choice1}->{'text'}.  The values 
1.36      matthew  1024: and text for the second menu are given in the hash pointed to by 
                   1025: $menu{$choice1}->{'select2'}.  
                   1026: 
1.112     bowersj2 1027:  my %menu = ( A1 => { text =>"Choice A1" ,
                   1028:                        default => "B3",
                   1029:                        select2 => { 
                   1030:                            B1 => "Choice B1",
                   1031:                            B2 => "Choice B2",
                   1032:                            B3 => "Choice B3",
                   1033:                            B4 => "Choice B4"
1.609     raeburn  1034:                            },
                   1035:                        order => ['B4','B3','B1','B2'],
1.112     bowersj2 1036:                    },
                   1037:                A2 => { text =>"Choice A2" ,
                   1038:                        default => "C2",
                   1039:                        select2 => { 
                   1040:                            C1 => "Choice C1",
                   1041:                            C2 => "Choice C2",
                   1042:                            C3 => "Choice C3"
1.609     raeburn  1043:                            },
                   1044:                        order => ['C2','C1','C3'],
1.112     bowersj2 1045:                    },
                   1046:                A3 => { text =>"Choice A3" ,
                   1047:                        default => "D6",
                   1048:                        select2 => { 
                   1049:                            D1 => "Choice D1",
                   1050:                            D2 => "Choice D2",
                   1051:                            D3 => "Choice D3",
                   1052:                            D4 => "Choice D4",
                   1053:                            D5 => "Choice D5",
                   1054:                            D6 => "Choice D6",
                   1055:                            D7 => "Choice D7"
1.609     raeburn  1056:                            },
                   1057:                        order => ['D4','D3','D2','D1','D7','D6','D5'],
1.112     bowersj2 1058:                    }
                   1059:                );
1.36      matthew  1060: 
                   1061: =cut
                   1062: 
                   1063: sub linked_select_forms {
                   1064:     my ($formname,
                   1065:         $middletext,
                   1066:         $firstdefault,
                   1067:         $firstselectname,
                   1068:         $secondselectname, 
1.609     raeburn  1069:         $hashref,
                   1070:         $menuorder,
1.36      matthew  1071:         ) = @_;
                   1072:     my $second = "document.$formname.$secondselectname";
                   1073:     my $first = "document.$formname.$firstselectname";
                   1074:     # output the javascript to do the changing
                   1075:     my $result = '';
1.776     bisitz   1076:     $result.='<script type="text/javascript" language="JavaScript">'."\n";
1.824     bisitz   1077:     $result.="// <![CDATA[\n";
1.36      matthew  1078:     $result.="var select2data = new Object();\n";
                   1079:     $" = '","';
                   1080:     my $debug = '';
                   1081:     foreach my $s1 (sort(keys(%$hashref))) {
                   1082:         $result.="select2data.d_$s1 = new Object();\n";        
                   1083:         $result.="select2data.d_$s1.def = new String('".
                   1084:             $hashref->{$s1}->{'default'}."');\n";
1.609     raeburn  1085:         $result.="select2data.d_$s1.values = new Array(";
1.36      matthew  1086:         my @s2values = sort(keys( %{ $hashref->{$s1}->{'select2'} } ));
1.609     raeburn  1087:         if (ref($hashref->{$s1}->{'order'}) eq 'ARRAY') {
                   1088:             @s2values = @{$hashref->{$s1}->{'order'}};
                   1089:         }
1.36      matthew  1090:         $result.="\"@s2values\");\n";
                   1091:         $result.="select2data.d_$s1.texts = new Array(";        
                   1092:         my @s2texts;
                   1093:         foreach my $value (@s2values) {
                   1094:             push @s2texts, $hashref->{$s1}->{'select2'}->{$value};
                   1095:         }
                   1096:         $result.="\"@s2texts\");\n";
                   1097:     }
                   1098:     $"=' ';
                   1099:     $result.= <<"END";
                   1100: 
                   1101: function select1_changed() {
                   1102:     // Determine new choice
                   1103:     var newvalue = "d_" + $first.value;
                   1104:     // update select2
                   1105:     var values     = select2data[newvalue].values;
                   1106:     var texts      = select2data[newvalue].texts;
                   1107:     var select2def = select2data[newvalue].def;
                   1108:     var i;
                   1109:     // out with the old
                   1110:     for (i = 0; i < $second.options.length; i++) {
                   1111:         $second.options[i] = null;
                   1112:     }
                   1113:     // in with the nuclear
                   1114:     for (i=0;i<values.length; i++) {
                   1115:         $second.options[i] = new Option(values[i]);
1.143     matthew  1116:         $second.options[i].value = values[i];
1.36      matthew  1117:         $second.options[i].text = texts[i];
                   1118:         if (values[i] == select2def) {
                   1119:             $second.options[i].selected = true;
                   1120:         }
                   1121:     }
                   1122: }
1.824     bisitz   1123: // ]]>
1.36      matthew  1124: </script>
                   1125: END
                   1126:     # output the initial values for the selection lists
                   1127:     $result .= "<select size=\"1\" name=\"$firstselectname\" onchange=\"select1_changed()\">\n";
1.609     raeburn  1128:     my @order = sort(keys(%{$hashref}));
                   1129:     if (ref($menuorder) eq 'ARRAY') {
                   1130:         @order = @{$menuorder};
                   1131:     }
                   1132:     foreach my $value (@order) {
1.36      matthew  1133:         $result.="    <option value=\"$value\" ";
1.253     albertel 1134:         $result.=" selected=\"selected\" " if ($value eq $firstdefault);
1.119     www      1135:         $result.=">".&mt($hashref->{$value}->{'text'})."</option>\n";
1.36      matthew  1136:     }
                   1137:     $result .= "</select>\n";
                   1138:     my %select2 = %{$hashref->{$firstdefault}->{'select2'}};
                   1139:     $result .= $middletext;
                   1140:     $result .= "<select size=\"1\" name=\"$secondselectname\">\n";
                   1141:     my $seconddefault = $hashref->{$firstdefault}->{'default'};
1.609     raeburn  1142:     
                   1143:     my @secondorder = sort(keys(%select2));
                   1144:     if (ref($hashref->{$firstdefault}->{'order'}) eq 'ARRAY') {
                   1145:         @secondorder = @{$hashref->{$firstdefault}->{'order'}};
                   1146:     }
                   1147:     foreach my $value (@secondorder) {
1.36      matthew  1148:         $result.="    <option value=\"$value\" ";        
1.253     albertel 1149:         $result.=" selected=\"selected\" " if ($value eq $seconddefault);
1.119     www      1150:         $result.=">".&mt($select2{$value})."</option>\n";
1.36      matthew  1151:     }
                   1152:     $result .= "</select>\n";
                   1153:     #    return $debug;
                   1154:     return $result;
                   1155: }   #  end of sub linked_select_forms {
                   1156: 
1.45      matthew  1157: =pod
1.44      bowersj2 1158: 
1.973     raeburn  1159: =item * &help_open_topic($topic,$text,$stayOnPage,$width,$height,$imgid)
1.44      bowersj2 1160: 
1.112     bowersj2 1161: Returns a string corresponding to an HTML link to the given help
                   1162: $topic, where $topic corresponds to the name of a .tex file in
                   1163: /home/httpd/html/adm/help/tex, with underscores replaced by
                   1164: spaces. 
                   1165: 
                   1166: $text will optionally be linked to the same topic, allowing you to
                   1167: link text in addition to the graphic. If you do not want to link
                   1168: text, but wish to specify one of the later parameters, pass an
                   1169: empty string. 
                   1170: 
                   1171: $stayOnPage is a value that will be interpreted as a boolean. If true,
                   1172: the link will not open a new window. If false, the link will open
                   1173: a new window using Javascript. (Default is false.) 
                   1174: 
                   1175: $width and $height are optional numerical parameters that will
                   1176: override the width and height of the popped up window, which may
1.973     raeburn  1177: be useful for certain help topics with big pictures included.
                   1178: 
                   1179: $imgid is the id of the img tag used for the help icon. This may be
                   1180: used in a javascript call to switch the image src.  See 
                   1181: lonhtmlcommon::htmlareaselectactive() for an example.
1.44      bowersj2 1182: 
                   1183: =cut
                   1184: 
                   1185: sub help_open_topic {
1.973     raeburn  1186:     my ($topic, $text, $stayOnPage, $width, $height, $imgid) = @_;
1.48      bowersj2 1187:     $text = "" if (not defined $text);
1.44      bowersj2 1188:     $stayOnPage = 0 if (not defined $stayOnPage);
1.1033    www      1189:     $width = 500 if (not defined $width);
1.44      bowersj2 1190:     $height = 400 if (not defined $height);
                   1191:     my $filename = $topic;
                   1192:     $filename =~ s/ /_/g;
                   1193: 
1.48      bowersj2 1194:     my $template = "";
                   1195:     my $link;
1.572     banghart 1196:     
1.159     www      1197:     $topic=~s/\W/\_/g;
1.44      bowersj2 1198: 
1.572     banghart 1199:     if (!$stayOnPage) {
1.1033    www      1200: 	$link = "javascript:openMyModal('/adm/help/${filename}.hlp',$width,$height,'yes');";
1.1037    www      1201:     } elsif ($stayOnPage eq 'popup') {
                   1202:         $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 1203:     } else {
1.48      bowersj2 1204: 	$link = "/adm/help/${filename}.hlp";
                   1205:     }
                   1206: 
                   1207:     # Add the text
1.755     neumanie 1208:     if ($text ne "") {	
1.763     bisitz   1209: 	$template.='<span class="LC_help_open_topic">'
                   1210:                   .'<a target="_top" href="'.$link.'">'
                   1211:                   .$text.'</a>';
1.48      bowersj2 1212:     }
                   1213: 
1.763     bisitz   1214:     # (Always) Add the graphic
1.179     matthew  1215:     my $title = &mt('Online Help');
1.667     raeburn  1216:     my $helpicon=&lonhttpdurl("/adm/help/help.png");
1.973     raeburn  1217:     if ($imgid ne '') {
                   1218:         $imgid = ' id="'.$imgid.'"';
                   1219:     }
1.763     bisitz   1220:     $template.=' <a target="_top" href="'.$link.'" title="'.$title.'">'
                   1221:               .'<img src="'.$helpicon.'" border="0"'
                   1222:               .' alt="'.&mt('Help: [_1]',$topic).'"'
1.973     raeburn  1223:               .' title="'.$title.'" style="vertical-align:middle;"'.$imgid 
1.763     bisitz   1224:               .' /></a>';
                   1225:     if ($text ne "") {	
                   1226:         $template.='</span>';
                   1227:     }
1.44      bowersj2 1228:     return $template;
                   1229: 
1.106     bowersj2 1230: }
                   1231: 
                   1232: # This is a quicky function for Latex cheatsheet editing, since it 
                   1233: # appears in at least four places
                   1234: sub helpLatexCheatsheet {
1.1037    www      1235:     my ($topic,$text,$not_author,$stayOnPage) = @_;
1.732     raeburn  1236:     my $out;
1.106     bowersj2 1237:     my $addOther = '';
1.732     raeburn  1238:     if ($topic) {
1.1037    www      1239: 	$addOther = '<span>'.&help_open_topic($topic,&mt($text),$stayOnPage, undef, 600).'</span> ';
1.763     bisitz   1240:     }
                   1241:     $out = '<span>' # Start cheatsheet
                   1242: 	  .$addOther
                   1243:           .'<span>'
1.1037    www      1244: 	  .&help_open_topic('Greek_Symbols',&mt('Greek Symbols'),$stayOnPage,undef,600)
1.763     bisitz   1245: 	  .'</span> <span>'
1.1037    www      1246: 	  .&help_open_topic('Other_Symbols',&mt('Other Symbols'),$stayOnPage,undef,600)
1.763     bisitz   1247: 	  .'</span>';
1.732     raeburn  1248:     unless ($not_author) {
1.763     bisitz   1249:         $out .= ' <span>'
1.1037    www      1250: 	       .&help_open_topic('Authoring_Output_Tags',&mt('Output Tags'),$stayOnPage,undef,600)
1.763     bisitz   1251: 	       .'</span>';
1.732     raeburn  1252:     }
1.763     bisitz   1253:     $out .= '</span>'; # End cheatsheet
1.732     raeburn  1254:     return $out;
1.172     www      1255: }
                   1256: 
1.430     albertel 1257: sub general_help {
                   1258:     my $helptopic='Student_Intro';
                   1259:     if ($env{'request.role'}=~/^(ca|au)/) {
                   1260: 	$helptopic='Authoring_Intro';
1.907     raeburn  1261:     } elsif ($env{'request.role'}=~/^(cc|co)/) {
1.430     albertel 1262: 	$helptopic='Course_Coordination_Intro';
1.672     raeburn  1263:     } elsif ($env{'request.role'}=~/^dc/) {
                   1264:         $helptopic='Domain_Coordination_Intro';
1.430     albertel 1265:     }
                   1266:     return $helptopic;
                   1267: }
                   1268: 
                   1269: sub update_help_link {
                   1270:     my ($topic,$component_help,$faq,$bug,$stayOnPage) = @_;
                   1271:     my $origurl = $ENV{'REQUEST_URI'};
                   1272:     $origurl=~s|^/~|/priv/|;
                   1273:     my $timestamp = time;
                   1274:     foreach my $datum (\$topic,\$component_help,\$faq,\$bug,\$origurl) {
                   1275:         $$datum = &escape($$datum);
                   1276:     }
                   1277: 
                   1278:     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";
                   1279:     my $output .= <<"ENDOUTPUT";
                   1280: <script type="text/javascript">
1.824     bisitz   1281: // <![CDATA[
1.430     albertel 1282: banner_link = '$banner_link';
1.824     bisitz   1283: // ]]>
1.430     albertel 1284: </script>
                   1285: ENDOUTPUT
                   1286:     return $output;
                   1287: }
                   1288: 
                   1289: # now just updates the help link and generates a blue icon
1.193     raeburn  1290: sub help_open_menu {
1.430     albertel 1291:     my ($topic,$component_help,$faq,$bug,$stayOnPage,$width,$height,$text) 
1.552     banghart 1292: 	= @_;    
1.949     droeschl 1293:     $stayOnPage = 1;
1.430     albertel 1294:     my $output;
                   1295:     if ($component_help) {
                   1296: 	if (!$text) {
                   1297: 	    $output=&help_open_topic($component_help,undef,$stayOnPage,
                   1298: 				       $width,$height);
                   1299: 	} else {
                   1300: 	    my $help_text;
                   1301: 	    $help_text=&unescape($topic);
                   1302: 	    $output='<table><tr><td>'.
                   1303: 		&help_open_topic($component_help,$help_text,$stayOnPage,
                   1304: 				 $width,$height).'</td></tr></table>';
                   1305: 	}
                   1306:     }
                   1307:     my $banner_link = &update_help_link($topic,$component_help,$faq,$bug,$stayOnPage);
                   1308:     return $output.$banner_link;
                   1309: }
                   1310: 
                   1311: sub top_nav_help {
                   1312:     my ($text) = @_;
1.436     albertel 1313:     $text = &mt($text);
1.949     droeschl 1314:     my $stay_on_page = 1;
                   1315: 
1.572     banghart 1316:     my $link = ($stay_on_page) ? "javascript:helpMenu('display')"
1.436     albertel 1317: 	                     : "javascript:helpMenu('open')";
1.572     banghart 1318:     my $banner_link = &update_help_link(undef,undef,undef,undef,$stay_on_page);
1.436     albertel 1319: 
1.201     raeburn  1320:     my $title = &mt('Get help');
1.436     albertel 1321: 
                   1322:     return <<"END";
                   1323: $banner_link
                   1324:  <a href="$link" title="$title">$text</a>
                   1325: END
                   1326: }
                   1327: 
                   1328: sub help_menu_js {
                   1329:     my ($text) = @_;
1.949     droeschl 1330:     my $stayOnPage = 1;
1.436     albertel 1331:     my $width = 620;
                   1332:     my $height = 600;
1.430     albertel 1333:     my $helptopic=&general_help();
                   1334:     my $details_link = '/adm/help/'.$helptopic.'.hlp';
1.261     albertel 1335:     my $nothing=&Apache::lonhtmlcommon::javascript_nothing();
1.331     albertel 1336:     my $start_page =
                   1337:         &Apache::loncommon::start_page('Help Menu', undef,
                   1338: 				       {'frameset'    => 1,
                   1339: 					'js_ready'    => 1,
                   1340: 					'add_entries' => {
                   1341: 					    'border' => '0',
1.579     raeburn  1342: 					    'rows'   => "110,*",},});
1.331     albertel 1343:     my $end_page =
                   1344:         &Apache::loncommon::end_page({'frameset' => 1,
                   1345: 				      'js_ready' => 1,});
                   1346: 
1.436     albertel 1347:     my $template .= <<"ENDTEMPLATE";
                   1348: <script type="text/javascript">
1.877     bisitz   1349: // <![CDATA[
1.253     albertel 1350: // <!-- BEGIN LON-CAPA Internal
1.430     albertel 1351: var banner_link = '';
1.243     raeburn  1352: function helpMenu(target) {
                   1353:     var caller = this;
                   1354:     if (target == 'open') {
                   1355:         var newWindow = null;
                   1356:         try {
1.262     albertel 1357:             newWindow =  window.open($nothing,"helpmenu","HEIGHT=$height,WIDTH=$width,resizable=yes,scrollbars=yes" )
1.243     raeburn  1358:         }
                   1359:         catch(error) {
                   1360:             writeHelp(caller);
                   1361:             return;
                   1362:         }
                   1363:         if (newWindow) {
                   1364:             caller = newWindow;
                   1365:         }
1.193     raeburn  1366:     }
1.243     raeburn  1367:     writeHelp(caller);
                   1368:     return;
                   1369: }
                   1370: function writeHelp(caller) {
1.430     albertel 1371:     caller.document.writeln('$start_page<frame name="bannerframe"  src="'+banner_link+'" /><frame name="bodyframe" src="$details_link" /> $end_page')
1.243     raeburn  1372:     caller.document.close()
                   1373:     caller.focus()
1.193     raeburn  1374: }
1.877     bisitz   1375: // END LON-CAPA Internal -->
1.253     albertel 1376: // ]]>
1.436     albertel 1377: </script>
1.193     raeburn  1378: ENDTEMPLATE
                   1379:     return $template;
                   1380: }
                   1381: 
1.172     www      1382: sub help_open_bug {
                   1383:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
1.258     albertel 1384:     unless ($env{'user.adv'}) { return ''; }
1.172     www      1385:     unless ($Apache::lonnet::perlvar{'BugzillaHost'}) { return ''; }
                   1386:     $text = "" if (not defined $text);
                   1387: 	$stayOnPage=1;
1.184     albertel 1388:     $width = 600 if (not defined $width);
                   1389:     $height = 600 if (not defined $height);
1.172     www      1390: 
                   1391:     $topic=~s/\W+/\+/g;
                   1392:     my $link='';
                   1393:     my $template='';
1.379     albertel 1394:     my $url=$Apache::lonnet::perlvar{'BugzillaHost'}.'enter_bug.cgi?product=LON-CAPA&amp;bug_file_loc='.
                   1395: 	&escape($ENV{'REQUEST_URI'}).'&amp;component='.$topic;
1.172     www      1396:     if (!$stayOnPage)
                   1397:     {
                   1398: 	$link = "javascript:void(open('$url', 'Bugzilla', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
                   1399:     }
                   1400:     else
                   1401:     {
                   1402: 	$link = $url;
                   1403:     }
                   1404:     # Add the text
                   1405:     if ($text ne "")
                   1406:     {
                   1407: 	$template .= 
                   1408:   "<table bgcolor='#AA3333' cellspacing='1' cellpadding='1' border='0'><tr>".
1.705     tempelho 1409:   "<td bgcolor='#FF5555'><a target=\"_top\" href=\"$link\"><span style=\"color:#FFFFFF;font-size:10pt;\">$text</span></a>";
1.172     www      1410:     }
                   1411: 
                   1412:     # Add the graphic
1.179     matthew  1413:     my $title = &mt('Report a Bug');
1.215     albertel 1414:     my $bugicon=&lonhttpdurl("/adm/lonMisc/smallBug.gif");
1.172     www      1415:     $template .= <<"ENDTEMPLATE";
1.436     albertel 1416:  <a target="_top" href="$link" title="$title"><img src="$bugicon" border="0" alt="(Bug: $topic)" /></a>
1.172     www      1417: ENDTEMPLATE
                   1418:     if ($text ne '') { $template.='</td></tr></table>' };
                   1419:     return $template;
                   1420: 
                   1421: }
                   1422: 
                   1423: sub help_open_faq {
                   1424:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
1.258     albertel 1425:     unless ($env{'user.adv'}) { return ''; }
1.172     www      1426:     unless ($Apache::lonnet::perlvar{'FAQHost'}) { return ''; }
                   1427:     $text = "" if (not defined $text);
                   1428: 	$stayOnPage=1;
                   1429:     $width = 350 if (not defined $width);
                   1430:     $height = 400 if (not defined $height);
                   1431: 
                   1432:     $topic=~s/\W+/\+/g;
                   1433:     my $link='';
                   1434:     my $template='';
                   1435:     my $url=$Apache::lonnet::perlvar{'FAQHost'}.'/fom/cache/'.$topic.'.html';
                   1436:     if (!$stayOnPage)
                   1437:     {
                   1438: 	$link = "javascript:void(open('$url', 'FAQ-O-Matic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
                   1439:     }
                   1440:     else
                   1441:     {
                   1442: 	$link = $url;
                   1443:     }
                   1444: 
                   1445:     # Add the text
                   1446:     if ($text ne "")
                   1447:     {
                   1448: 	$template .= 
1.173     www      1449:   "<table bgcolor='#337733' cellspacing='1' cellpadding='1' border='0'><tr>".
1.705     tempelho 1450:   "<td bgcolor='#448844'><a target=\"_top\" href=\"$link\"><span style=\"color:#FFFFFF; font-size:10pt;\">$text</span></a>";
1.172     www      1451:     }
                   1452: 
                   1453:     # Add the graphic
1.179     matthew  1454:     my $title = &mt('View the FAQ');
1.215     albertel 1455:     my $faqicon=&lonhttpdurl("/adm/lonMisc/smallFAQ.gif");
1.172     www      1456:     $template .= <<"ENDTEMPLATE";
1.436     albertel 1457:  <a target="_top" href="$link" title="$title"><img src="$faqicon" border="0" alt="(FAQ: $topic)" /></a>
1.172     www      1458: ENDTEMPLATE
                   1459:     if ($text ne '') { $template.='</td></tr></table>' };
                   1460:     return $template;
                   1461: 
1.44      bowersj2 1462: }
1.37      matthew  1463: 
1.180     matthew  1464: ###############################################################
                   1465: ###############################################################
                   1466: 
1.45      matthew  1467: =pod
                   1468: 
1.648     raeburn  1469: =item * &change_content_javascript():
1.256     matthew  1470: 
                   1471: This and the next function allow you to create small sections of an
                   1472: otherwise static HTML page that you can update on the fly with
                   1473: Javascript, even in Netscape 4.
                   1474: 
                   1475: The Javascript fragment returned by this function (no E<lt>scriptE<gt> tag)
                   1476: must be written to the HTML page once. It will prove the Javascript
                   1477: function "change(name, content)". Calling the change function with the
                   1478: name of the section 
                   1479: you want to update, matching the name passed to C<changable_area>, and
                   1480: the new content you want to put in there, will put the content into
                   1481: that area.
                   1482: 
                   1483: B<Note>: Netscape 4 only reserves enough space for the changable area
                   1484: to contain room for the original contents. You need to "make space"
                   1485: for whatever changes you wish to make, and be B<sure> to check your
                   1486: code in Netscape 4. This feature in Netscape 4 is B<not> powerful;
                   1487: it's adequate for updating a one-line status display, but little more.
                   1488: This script will set the space to 100% width, so you only need to
                   1489: worry about height in Netscape 4.
                   1490: 
                   1491: Modern browsers are much less limiting, and if you can commit to the
                   1492: user not using Netscape 4, this feature may be used freely with
                   1493: pretty much any HTML.
                   1494: 
                   1495: =cut
                   1496: 
                   1497: sub change_content_javascript {
                   1498:     # If we're on Netscape 4, we need to use Layer-based code
1.258     albertel 1499:     if ($env{'browser.type'} eq 'netscape' &&
                   1500: 	$env{'browser.version'} =~ /^4\./) {
1.256     matthew  1501: 	return (<<NETSCAPE4);
                   1502: 	function change(name, content) {
                   1503: 	    doc = document.layers[name+"___escape"].layers[0].document;
                   1504: 	    doc.open();
                   1505: 	    doc.write(content);
                   1506: 	    doc.close();
                   1507: 	}
                   1508: NETSCAPE4
                   1509:     } else {
                   1510: 	# Otherwise, we need to use semi-standards-compliant code
                   1511: 	# (technically, "innerHTML" isn't standard but the equivalent
                   1512: 	# is really scary, and every useful browser supports it
                   1513: 	return (<<DOMBASED);
                   1514: 	function change(name, content) {
                   1515: 	    element = document.getElementById(name);
                   1516: 	    element.innerHTML = content;
                   1517: 	}
                   1518: DOMBASED
                   1519:     }
                   1520: }
                   1521: 
                   1522: =pod
                   1523: 
1.648     raeburn  1524: =item * &changable_area($name,$origContent):
1.256     matthew  1525: 
                   1526: This provides a "changable area" that can be modified on the fly via
                   1527: the Javascript code provided in C<change_content_javascript>. $name is
                   1528: the name you will use to reference the area later; do not repeat the
                   1529: same name on a given HTML page more then once. $origContent is what
                   1530: the area will originally contain, which can be left blank.
                   1531: 
                   1532: =cut
                   1533: 
                   1534: sub changable_area {
                   1535:     my ($name, $origContent) = @_;
                   1536: 
1.258     albertel 1537:     if ($env{'browser.type'} eq 'netscape' &&
                   1538: 	$env{'browser.version'} =~ /^4\./) {
1.256     matthew  1539: 	# If this is netscape 4, we need to use the Layer tag
                   1540: 	return "<ilayer width='100%' id='${name}___escape' overflow='none'><layer width='100%' id='$name' overflow='none'>$origContent</layer></ilayer>";
                   1541:     } else {
                   1542: 	return "<span id='$name'>$origContent</span>";
                   1543:     }
                   1544: }
                   1545: 
                   1546: =pod
                   1547: 
1.648     raeburn  1548: =item * &viewport_geometry_js 
1.590     raeburn  1549: 
                   1550: Provides javascript object (Geometry) which can provide information about the viewport geometry for the client browser.
                   1551: 
                   1552: =cut
                   1553: 
                   1554: 
                   1555: sub viewport_geometry_js { 
                   1556:     return <<"GEOMETRY";
                   1557: var Geometry = {};
                   1558: function init_geometry() {
                   1559:     if (Geometry.init) { return };
                   1560:     Geometry.init=1;
                   1561:     if (window.innerHeight) {
                   1562:         Geometry.getViewportHeight   = function() { return window.innerHeight; };
                   1563:         Geometry.getViewportWidth   = function() { return window.innerWidth; };
                   1564:         Geometry.getHorizontalScroll = function() { return window.pageXOffset; };
                   1565:         Geometry.getVerticalScroll   = function() { return window.pageYOffset; };
                   1566:     }
                   1567:     else if (document.documentElement && document.documentElement.clientHeight) {
                   1568:         Geometry.getViewportHeight =
                   1569:             function() { return document.documentElement.clientHeight; };
                   1570:         Geometry.getViewportWidth =
                   1571:             function() { return document.documentElement.clientWidth; };
                   1572: 
                   1573:         Geometry.getHorizontalScroll =
                   1574:             function() { return document.documentElement.scrollLeft; };
                   1575:         Geometry.getVerticalScroll =
                   1576:             function() { return document.documentElement.scrollTop; };
                   1577:     }
                   1578:     else if (document.body.clientHeight) {
                   1579:         Geometry.getViewportHeight =
                   1580:             function() { return document.body.clientHeight; };
                   1581:         Geometry.getViewportWidth =
                   1582:             function() { return document.body.clientWidth; };
                   1583:         Geometry.getHorizontalScroll =
                   1584:             function() { return document.body.scrollLeft; };
                   1585:         Geometry.getVerticalScroll =
                   1586:             function() { return document.body.scrollTop; };
                   1587:     }
                   1588: }
                   1589: 
                   1590: GEOMETRY
                   1591: }
                   1592: 
                   1593: =pod
                   1594: 
1.648     raeburn  1595: =item * &viewport_size_js()
1.590     raeburn  1596: 
                   1597: 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. 
                   1598: 
                   1599: =cut
                   1600: 
                   1601: sub viewport_size_js {
                   1602:     my $geometry = &viewport_geometry_js();
                   1603:     return <<"DIMS";
                   1604: 
                   1605: $geometry
                   1606: 
                   1607: function getViewportDims(width,height) {
                   1608:     init_geometry();
                   1609:     width.value = Geometry.getViewportWidth();
                   1610:     height.value = Geometry.getViewportHeight();
                   1611:     return;
                   1612: }
                   1613: 
                   1614: DIMS
                   1615: }
                   1616: 
                   1617: =pod
                   1618: 
1.648     raeburn  1619: =item * &resize_textarea_js()
1.565     albertel 1620: 
                   1621: emits the needed javascript to resize a textarea to be as big as possible
                   1622: 
                   1623: creates a function resize_textrea that takes two IDs first should be
                   1624: the id of the element to resize, second should be the id of a div that
                   1625: surrounds everything that comes after the textarea, this routine needs
                   1626: to be attached to the <body> for the onload and onresize events.
                   1627: 
1.648     raeburn  1628: =back
1.565     albertel 1629: 
                   1630: =cut
                   1631: 
                   1632: sub resize_textarea_js {
1.590     raeburn  1633:     my $geometry = &viewport_geometry_js();
1.565     albertel 1634:     return <<"RESIZE";
                   1635:     <script type="text/javascript">
1.824     bisitz   1636: // <![CDATA[
1.590     raeburn  1637: $geometry
1.565     albertel 1638: 
1.588     albertel 1639: function getX(element) {
                   1640:     var x = 0;
                   1641:     while (element) {
                   1642: 	x += element.offsetLeft;
                   1643: 	element = element.offsetParent;
                   1644:     }
                   1645:     return x;
                   1646: }
                   1647: function getY(element) {
                   1648:     var y = 0;
                   1649:     while (element) {
                   1650: 	y += element.offsetTop;
                   1651: 	element = element.offsetParent;
                   1652:     }
                   1653:     return y;
                   1654: }
                   1655: 
                   1656: 
1.565     albertel 1657: function resize_textarea(textarea_id,bottom_id) {
                   1658:     init_geometry();
                   1659:     var textarea        = document.getElementById(textarea_id);
                   1660:     //alert(textarea);
                   1661: 
1.588     albertel 1662:     var textarea_top    = getY(textarea);
1.565     albertel 1663:     var textarea_height = textarea.offsetHeight;
                   1664:     var bottom          = document.getElementById(bottom_id);
1.588     albertel 1665:     var bottom_top      = getY(bottom);
1.565     albertel 1666:     var bottom_height   = bottom.offsetHeight;
                   1667:     var window_height   = Geometry.getViewportHeight();
1.588     albertel 1668:     var fudge           = 23;
1.565     albertel 1669:     var new_height      = window_height-fudge-textarea_top-bottom_height;
                   1670:     if (new_height < 300) {
                   1671: 	new_height = 300;
                   1672:     }
                   1673:     textarea.style.height=new_height+'px';
                   1674: }
1.824     bisitz   1675: // ]]>
1.565     albertel 1676: </script>
                   1677: RESIZE
                   1678: 
                   1679: }
                   1680: 
                   1681: =pod
                   1682: 
1.256     matthew  1683: =head1 Excel and CSV file utility routines
                   1684: 
                   1685: =over 4
                   1686: 
                   1687: =cut
                   1688: 
                   1689: ###############################################################
                   1690: ###############################################################
                   1691: 
                   1692: =pod
                   1693: 
1.648     raeburn  1694: =item * &csv_translate($text) 
1.37      matthew  1695: 
1.185     www      1696: Translate $text to allow it to be output as a 'comma separated values' 
1.37      matthew  1697: format.
                   1698: 
                   1699: =cut
                   1700: 
1.180     matthew  1701: ###############################################################
                   1702: ###############################################################
1.37      matthew  1703: sub csv_translate {
                   1704:     my $text = shift;
                   1705:     $text =~ s/\"/\"\"/g;
1.209     albertel 1706:     $text =~ s/\n/ /g;
1.37      matthew  1707:     return $text;
                   1708: }
1.180     matthew  1709: 
                   1710: ###############################################################
                   1711: ###############################################################
                   1712: 
                   1713: =pod
                   1714: 
1.648     raeburn  1715: =item * &define_excel_formats()
1.180     matthew  1716: 
                   1717: Define some commonly used Excel cell formats.
                   1718: 
                   1719: Currently supported formats:
                   1720: 
                   1721: =over 4
                   1722: 
                   1723: =item header
                   1724: 
                   1725: =item bold
                   1726: 
                   1727: =item h1
                   1728: 
                   1729: =item h2
                   1730: 
                   1731: =item h3
                   1732: 
1.256     matthew  1733: =item h4
                   1734: 
                   1735: =item i
                   1736: 
1.180     matthew  1737: =item date
                   1738: 
                   1739: =back
                   1740: 
                   1741: Inputs: $workbook
                   1742: 
                   1743: Returns: $format, a hash reference.
                   1744: 
                   1745: =cut
                   1746: 
                   1747: ###############################################################
                   1748: ###############################################################
                   1749: sub define_excel_formats {
                   1750:     my ($workbook) = @_;
                   1751:     my $format;
                   1752:     $format->{'header'} = $workbook->add_format(bold      => 1, 
                   1753:                                                 bottom    => 1,
                   1754:                                                 align     => 'center');
                   1755:     $format->{'bold'} = $workbook->add_format(bold=>1);
                   1756:     $format->{'h1'}   = $workbook->add_format(bold=>1, size=>18);
                   1757:     $format->{'h2'}   = $workbook->add_format(bold=>1, size=>16);
                   1758:     $format->{'h3'}   = $workbook->add_format(bold=>1, size=>14);
1.255     matthew  1759:     $format->{'h4'}   = $workbook->add_format(bold=>1, size=>12);
1.246     matthew  1760:     $format->{'i'}    = $workbook->add_format(italic=>1);
1.180     matthew  1761:     $format->{'date'} = $workbook->add_format(num_format=>
1.207     matthew  1762:                                             'mm/dd/yyyy hh:mm:ss');
1.180     matthew  1763:     return $format;
                   1764: }
                   1765: 
                   1766: ###############################################################
                   1767: ###############################################################
1.113     bowersj2 1768: 
                   1769: =pod
                   1770: 
1.648     raeburn  1771: =item * &create_workbook()
1.255     matthew  1772: 
                   1773: Create an Excel worksheet.  If it fails, output message on the
                   1774: request object and return undefs.
                   1775: 
                   1776: Inputs: Apache request object
                   1777: 
                   1778: Returns (undef) on failure, 
                   1779:     Excel worksheet object, scalar with filename, and formats 
                   1780:     from &Apache::loncommon::define_excel_formats on success
                   1781: 
                   1782: =cut
                   1783: 
                   1784: ###############################################################
                   1785: ###############################################################
                   1786: sub create_workbook {
                   1787:     my ($r) = @_;
                   1788:         #
                   1789:     # Create the excel spreadsheet
                   1790:     my $filename = '/prtspool/'.
1.258     albertel 1791:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
1.255     matthew  1792:         time.'_'.rand(1000000000).'.xls';
                   1793:     my $workbook  = Spreadsheet::WriteExcel->new('/home/httpd'.$filename);
                   1794:     if (! defined($workbook)) {
                   1795:         $r->log_error("Error creating excel spreadsheet $filename: $!");
1.928     bisitz   1796:         $r->print(
                   1797:             '<p class="LC_error">'
                   1798:            .&mt('Problems occurred in creating the new Excel file.')
                   1799:            .' '.&mt('This error has been logged.')
                   1800:            .' '.&mt('Please alert your LON-CAPA administrator.')
                   1801:            .'</p>'
                   1802:         );
1.255     matthew  1803:         return (undef);
                   1804:     }
                   1805:     #
1.1014    foxr     1806:     $workbook->set_tempdir(LONCAPA::tempdir());
1.255     matthew  1807:     #
                   1808:     my $format = &Apache::loncommon::define_excel_formats($workbook);
                   1809:     return ($workbook,$filename,$format);
                   1810: }
                   1811: 
                   1812: ###############################################################
                   1813: ###############################################################
                   1814: 
                   1815: =pod
                   1816: 
1.648     raeburn  1817: =item * &create_text_file()
1.113     bowersj2 1818: 
1.542     raeburn  1819: Create a file to write to and eventually make available to the user.
1.256     matthew  1820: If file creation fails, outputs an error message on the request object and 
                   1821: return undefs.
1.113     bowersj2 1822: 
1.256     matthew  1823: Inputs: Apache request object, and file suffix
1.113     bowersj2 1824: 
1.256     matthew  1825: Returns (undef) on failure, 
                   1826:     Filehandle and filename on success.
1.113     bowersj2 1827: 
                   1828: =cut
                   1829: 
1.256     matthew  1830: ###############################################################
                   1831: ###############################################################
                   1832: sub create_text_file {
                   1833:     my ($r,$suffix) = @_;
                   1834:     if (! defined($suffix)) { $suffix = 'txt'; };
                   1835:     my $fh;
                   1836:     my $filename = '/prtspool/'.
1.258     albertel 1837:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
1.256     matthew  1838:         time.'_'.rand(1000000000).'.'.$suffix;
                   1839:     $fh = Apache::File->new('>/home/httpd'.$filename);
                   1840:     if (! defined($fh)) {
                   1841:         $r->log_error("Couldn't open $filename for output $!");
1.928     bisitz   1842:         $r->print(
                   1843:             '<p class="LC_error">'
                   1844:            .&mt('Problems occurred in creating the output file.')
                   1845:            .' '.&mt('This error has been logged.')
                   1846:            .' '.&mt('Please alert your LON-CAPA administrator.')
                   1847:            .'</p>'
                   1848:         );
1.113     bowersj2 1849:     }
1.256     matthew  1850:     return ($fh,$filename)
1.113     bowersj2 1851: }
                   1852: 
                   1853: 
1.256     matthew  1854: =pod 
1.113     bowersj2 1855: 
                   1856: =back
                   1857: 
                   1858: =cut
1.37      matthew  1859: 
                   1860: ###############################################################
1.33      matthew  1861: ##        Home server <option> list generating code          ##
                   1862: ###############################################################
1.35      matthew  1863: 
1.169     www      1864: # ------------------------------------------
                   1865: 
                   1866: sub domain_select {
                   1867:     my ($name,$value,$multiple)=@_;
                   1868:     my %domains=map { 
1.514     albertel 1869: 	$_ => $_.' '. &Apache::lonnet::domain($_,'description') 
1.512     albertel 1870:     } &Apache::lonnet::all_domains();
1.169     www      1871:     if ($multiple) {
                   1872: 	$domains{''}=&mt('Any domain');
1.550     albertel 1873: 	$domains{'select_form_order'} = [sort {lc($a) cmp lc($b) } (keys(%domains))];
1.287     albertel 1874: 	return &multiple_select_form($name,$value,4,\%domains);
1.169     www      1875:     } else {
1.550     albertel 1876: 	$domains{'select_form_order'} = [sort {lc($a) cmp lc($b) } (keys(%domains))];
1.970     raeburn  1877: 	return &select_form($name,$value,\%domains);
1.169     www      1878:     }
                   1879: }
                   1880: 
1.282     albertel 1881: #-------------------------------------------
                   1882: 
                   1883: =pod
                   1884: 
1.519     raeburn  1885: =head1 Routines for form select boxes
                   1886: 
                   1887: =over 4
                   1888: 
1.648     raeburn  1889: =item * &multiple_select_form($name,$value,$size,$hash,$order)
1.282     albertel 1890: 
                   1891: Returns a string containing a <select> element int multiple mode
                   1892: 
                   1893: 
                   1894: Args:
                   1895:   $name - name of the <select> element
1.506     raeburn  1896:   $value - scalar or array ref of values that should already be selected
1.282     albertel 1897:   $size - number of rows long the select element is
1.283     albertel 1898:   $hash - the elements should be 'option' => 'shown text'
1.282     albertel 1899:           (shown text should already have been &mt())
1.506     raeburn  1900:   $order - (optional) array ref of the order to show the elements in
1.283     albertel 1901: 
1.282     albertel 1902: =cut
                   1903: 
                   1904: #-------------------------------------------
1.169     www      1905: sub multiple_select_form {
1.284     albertel 1906:     my ($name,$value,$size,$hash,$order)=@_;
1.169     www      1907:     my %selected = map { $_ => 1 } ref($value)?@{$value}:($value);
                   1908:     my $output='';
1.191     matthew  1909:     if (! defined($size)) {
                   1910:         $size = 4;
1.283     albertel 1911:         if (scalar(keys(%$hash))<4) {
                   1912:             $size = scalar(keys(%$hash));
1.191     matthew  1913:         }
                   1914:     }
1.734     bisitz   1915:     $output.="\n".'<select name="'.$name.'" size="'.$size.'" multiple="multiple">';
1.501     banghart 1916:     my @order;
1.506     raeburn  1917:     if (ref($order) eq 'ARRAY')  {
                   1918:         @order = @{$order};
                   1919:     } else {
                   1920:         @order = sort(keys(%$hash));
1.501     banghart 1921:     }
                   1922:     if (exists($$hash{'select_form_order'})) {
                   1923:         @order = @{$$hash{'select_form_order'}};
                   1924:     }
                   1925:         
1.284     albertel 1926:     foreach my $key (@order) {
1.356     albertel 1927:         $output.='<option value="'.&HTML::Entities::encode($key,'"<>&').'" ';
1.284     albertel 1928:         $output.='selected="selected" ' if ($selected{$key});
                   1929:         $output.='>'.$hash->{$key}."</option>\n";
1.169     www      1930:     }
                   1931:     $output.="</select>\n";
                   1932:     return $output;
                   1933: }
                   1934: 
1.88      www      1935: #-------------------------------------------
                   1936: 
                   1937: =pod
                   1938: 
1.970     raeburn  1939: =item * &select_form($defdom,$name,$hashref,$onchange)
1.88      www      1940: 
                   1941: Returns a string containing a <select name='$name' size='1'> form to 
1.970     raeburn  1942: allow a user to select options from a ref to a hash containing:
                   1943: option_name => displayed text. An optional $onchange can include
                   1944: a javascript onchange item, e.g., onchange="this.form.submit();"  
                   1945: 
1.88      www      1946: See lonrights.pm for an example invocation and use.
                   1947: 
                   1948: =cut
                   1949: 
                   1950: #-------------------------------------------
                   1951: sub select_form {
1.970     raeburn  1952:     my ($def,$name,$hashref,$onchange) = @_;
                   1953:     return unless (ref($hashref) eq 'HASH');
                   1954:     if ($onchange) {
                   1955:         $onchange = ' onchange="'.$onchange.'"';
                   1956:     }
                   1957:     my $selectform = "<select name=\"$name\" size=\"1\"$onchange>\n";
1.128     albertel 1958:     my @keys;
1.970     raeburn  1959:     if (exists($hashref->{'select_form_order'})) {
                   1960: 	@keys=@{$hashref->{'select_form_order'}};
1.128     albertel 1961:     } else {
1.970     raeburn  1962: 	@keys=sort(keys(%{$hashref}));
1.128     albertel 1963:     }
1.356     albertel 1964:     foreach my $key (@keys) {
                   1965:         $selectform.=
                   1966: 	    '<option value="'.&HTML::Entities::encode($key,'"<>&').'" '.
                   1967:             ($key eq $def ? 'selected="selected" ' : '').
1.970     raeburn  1968:                 ">".$hashref->{$key}."</option>\n";
1.88      www      1969:     }
                   1970:     $selectform.="</select>";
                   1971:     return $selectform;
                   1972: }
                   1973: 
1.475     www      1974: # For display filters
                   1975: 
                   1976: sub display_filter {
                   1977:     if (!$env{'form.show'}) { $env{'form.show'}=10; }
1.477     www      1978:     if (!$env{'form.displayfilter'}) { $env{'form.displayfilter'}='currentfolder'; }
1.714     bisitz   1979:     return '<span class="LC_nobreak"><label>'.&mt('Records [_1]',
1.475     www      1980: 			       &Apache::lonmeta::selectbox('show',$env{'form.show'},undef,
                   1981: 							   (&mt('all'),10,20,50,100,1000,10000))).
1.714     bisitz   1982: 	   '</label></span> <span class="LC_nobreak">'.
1.475     www      1983:            &mt('Filter [_1]',
1.477     www      1984: 	   &select_form($env{'form.displayfilter'},
                   1985: 			'displayfilter',
1.970     raeburn  1986: 			{'currentfolder' => 'Current folder/page',
1.477     www      1987: 			 'containing' => 'Containing phrase',
1.970     raeburn  1988: 			 'none' => 'None'})).
1.714     bisitz   1989: 			 '<input type="text" name="containingphrase" size="30" value="'.&HTML::Entities::encode($env{'form.containingphrase'}).'" /></span>';
1.475     www      1990: }
                   1991: 
1.167     www      1992: sub gradeleveldescription {
                   1993:     my $gradelevel=shift;
                   1994:     my %gradelevels=(0 => 'Not specified',
                   1995: 		     1 => 'Grade 1',
                   1996: 		     2 => 'Grade 2',
                   1997: 		     3 => 'Grade 3',
                   1998: 		     4 => 'Grade 4',
                   1999: 		     5 => 'Grade 5',
                   2000: 		     6 => 'Grade 6',
                   2001: 		     7 => 'Grade 7',
                   2002: 		     8 => 'Grade 8',
                   2003: 		     9 => 'Grade 9',
                   2004: 		     10 => 'Grade 10',
                   2005: 		     11 => 'Grade 11',
                   2006: 		     12 => 'Grade 12',
                   2007: 		     13 => 'Grade 13',
                   2008: 		     14 => '100 Level',
                   2009: 		     15 => '200 Level',
                   2010: 		     16 => '300 Level',
                   2011: 		     17 => '400 Level',
                   2012: 		     18 => 'Graduate Level');
                   2013:     return &mt($gradelevels{$gradelevel});
                   2014: }
                   2015: 
1.163     www      2016: sub select_level_form {
                   2017:     my ($deflevel,$name)=@_;
                   2018:     unless ($deflevel) { $deflevel=0; }
1.167     www      2019:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
                   2020:     for (my $i=0; $i<=18; $i++) {
                   2021:         $selectform.="<option value=\"$i\" ".
1.253     albertel 2022:             ($i==$deflevel ? 'selected="selected" ' : '').
1.167     www      2023:                 ">".&gradeleveldescription($i)."</option>\n";
                   2024:     }
                   2025:     $selectform.="</select>";
                   2026:     return $selectform;
1.163     www      2027: }
1.167     www      2028: 
1.35      matthew  2029: #-------------------------------------------
                   2030: 
1.45      matthew  2031: =pod
                   2032: 
1.910     raeburn  2033: =item * &select_dom_form($defdom,$name,$includeempty,$showdomdesc,$onchange,$incdoms)
1.35      matthew  2034: 
                   2035: Returns a string containing a <select name='$name' size='1'> form to 
                   2036: allow a user to select the domain to preform an operation in.  
                   2037: See loncreateuser.pm for an example invocation and use.
                   2038: 
1.90      www      2039: If the $includeempty flag is set, it also includes an empty choice ("no domain
                   2040: selected");
                   2041: 
1.743     raeburn  2042: If the $showdomdesc flag is set, the domain name is followed by the domain description.
                   2043: 
1.910     raeburn  2044: 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.
                   2045: 
                   2046: The optional $incdoms is a reference to an array of domains which will be the only available options. 
1.563     raeburn  2047: 
1.35      matthew  2048: =cut
                   2049: 
                   2050: #-------------------------------------------
1.34      matthew  2051: sub select_dom_form {
1.910     raeburn  2052:     my ($defdom,$name,$includeempty,$showdomdesc,$onchange,$incdoms) = @_;
1.872     raeburn  2053:     if ($onchange) {
1.874     raeburn  2054:         $onchange = ' onchange="'.$onchange.'"';
1.743     raeburn  2055:     }
1.910     raeburn  2056:     my @domains;
                   2057:     if (ref($incdoms) eq 'ARRAY') {
                   2058:         @domains = sort {lc($a) cmp lc($b)} (@{$incdoms});
                   2059:     } else {
                   2060:         @domains = sort {lc($a) cmp lc($b)} (&Apache::lonnet::all_domains());
                   2061:     }
1.90      www      2062:     if ($includeempty) { @domains=('',@domains); }
1.743     raeburn  2063:     my $selectdomain = "<select name=\"$name\" size=\"1\"$onchange>\n";
1.356     albertel 2064:     foreach my $dom (@domains) {
                   2065:         $selectdomain.="<option value=\"$dom\" ".
1.563     raeburn  2066:             ($dom eq $defdom ? 'selected="selected" ' : '').'>'.$dom;
                   2067:         if ($showdomdesc) {
                   2068:             if ($dom ne '') {
                   2069:                 my $domdesc = &Apache::lonnet::domain($dom,'description');
                   2070:                 if ($domdesc ne '') {
                   2071:                     $selectdomain .= ' ('.$domdesc.')';
                   2072:                 }
                   2073:             } 
                   2074:         }
                   2075:         $selectdomain .= "</option>\n";
1.34      matthew  2076:     }
                   2077:     $selectdomain.="</select>";
                   2078:     return $selectdomain;
                   2079: }
                   2080: 
1.35      matthew  2081: #-------------------------------------------
                   2082: 
1.45      matthew  2083: =pod
                   2084: 
1.648     raeburn  2085: =item * &home_server_form_item($domain,$name,$defaultflag)
1.35      matthew  2086: 
1.586     raeburn  2087: input: 4 arguments (two required, two optional) - 
                   2088:     $domain - domain of new user
                   2089:     $name - name of form element
                   2090:     $default - Value of 'default' causes a default item to be first 
                   2091:                             option, and selected by default. 
                   2092:     $hide - Value of 'hide' causes hiding of the name of the server, 
                   2093:                             if 1 server found, or default, if 0 found.
1.594     raeburn  2094: output: returns 2 items: 
1.586     raeburn  2095: (a) form element which contains either:
                   2096:    (i) <select name="$name">
                   2097:         <option value="$hostid1">$hostid $servers{$hostid}</option>
                   2098:         <option value="$hostid2">$hostid $servers{$hostid}</option>       
                   2099:        </select>
                   2100:        form item if there are multiple library servers in $domain, or
                   2101:    (ii) an <input type="hidden" name="$name" value="$hostid" /> form item 
                   2102:        if there is only one library server in $domain.
                   2103: 
                   2104: (b) number of library servers found.
                   2105: 
                   2106: See loncreateuser.pm for example of use.
1.35      matthew  2107: 
                   2108: =cut
                   2109: 
                   2110: #-------------------------------------------
1.586     raeburn  2111: sub home_server_form_item {
                   2112:     my ($domain,$name,$default,$hide) = @_;
1.513     albertel 2113:     my %servers = &Apache::lonnet::get_servers($domain,'library');
1.586     raeburn  2114:     my $result;
                   2115:     my $numlib = keys(%servers);
                   2116:     if ($numlib > 1) {
                   2117:         $result .= '<select name="'.$name.'" />'."\n";
                   2118:         if ($default) {
1.804     bisitz   2119:             $result .= '<option value="default" selected="selected">'.&mt('default').
1.586     raeburn  2120:                        '</option>'."\n";
                   2121:         }
                   2122:         foreach my $hostid (sort(keys(%servers))) {
                   2123:             $result.= '<option value="'.$hostid.'">'.
                   2124: 	              $hostid.' '.$servers{$hostid}."</option>\n";
                   2125:         }
                   2126:         $result .= '</select>'."\n";
                   2127:     } elsif ($numlib == 1) {
                   2128:         my $hostid;
                   2129:         foreach my $item (keys(%servers)) {
                   2130:             $hostid = $item;
                   2131:         }
                   2132:         $result .= '<input type="hidden" name="'.$name.'" value="'.
                   2133:                    $hostid.'" />';
                   2134:                    if (!$hide) {
                   2135:                        $result .= $hostid.' '.$servers{$hostid};
                   2136:                    }
                   2137:                    $result .= "\n";
                   2138:     } elsif ($default) {
                   2139:         $result .= '<input type="hidden" name="'.$name.
                   2140:                    '" value="default" />';
                   2141:                    if (!$hide) {
                   2142:                        $result .= &mt('default');
                   2143:                    }
                   2144:                    $result .= "\n";
1.33      matthew  2145:     }
1.586     raeburn  2146:     return ($result,$numlib);
1.33      matthew  2147: }
1.112     bowersj2 2148: 
                   2149: =pod
                   2150: 
1.534     albertel 2151: =back 
                   2152: 
1.112     bowersj2 2153: =cut
1.87      matthew  2154: 
                   2155: ###############################################################
1.112     bowersj2 2156: ##                  Decoding User Agent                      ##
1.87      matthew  2157: ###############################################################
                   2158: 
                   2159: =pod
                   2160: 
1.112     bowersj2 2161: =head1 Decoding the User Agent
                   2162: 
                   2163: =over 4
                   2164: 
                   2165: =item * &decode_user_agent()
1.87      matthew  2166: 
                   2167: Inputs: $r
                   2168: 
                   2169: Outputs:
                   2170: 
                   2171: =over 4
                   2172: 
1.112     bowersj2 2173: =item * $httpbrowser
1.87      matthew  2174: 
1.112     bowersj2 2175: =item * $clientbrowser
1.87      matthew  2176: 
1.112     bowersj2 2177: =item * $clientversion
1.87      matthew  2178: 
1.112     bowersj2 2179: =item * $clientmathml
1.87      matthew  2180: 
1.112     bowersj2 2181: =item * $clientunicode
1.87      matthew  2182: 
1.112     bowersj2 2183: =item * $clientos
1.87      matthew  2184: 
                   2185: =back
                   2186: 
1.157     matthew  2187: =back 
                   2188: 
1.87      matthew  2189: =cut
                   2190: 
                   2191: ###############################################################
                   2192: ###############################################################
                   2193: sub decode_user_agent {
1.247     albertel 2194:     my ($r)=@_;
1.87      matthew  2195:     my @browsertype=split(/\&/,$Apache::lonnet::perlvar{"lonBrowsDet"});
                   2196:     my %mathcap=split(/\&/,$$Apache::lonnet::perlvar{"lonMathML"});
                   2197:     my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
1.247     albertel 2198:     if (!$httpbrowser && $r) { $httpbrowser=$r->header_in('User-Agent'); }
1.87      matthew  2199:     my $clientbrowser='unknown';
                   2200:     my $clientversion='0';
                   2201:     my $clientmathml='';
                   2202:     my $clientunicode='0';
                   2203:     for (my $i=0;$i<=$#browsertype;$i++) {
                   2204:         my ($bname,$match,$notmatch,$vreg,$minv,$univ)=split(/\:/,$browsertype[$i]);
                   2205: 	if (($httpbrowser=~/$match/i)  && ($httpbrowser!~/$notmatch/i)) {
                   2206: 	    $clientbrowser=$bname;
                   2207:             $httpbrowser=~/$vreg/i;
                   2208: 	    $clientversion=$1;
                   2209:             $clientmathml=($clientversion>=$minv);
                   2210:             $clientunicode=($clientversion>=$univ);
                   2211: 	}
                   2212:     }
                   2213:     my $clientos='unknown';
                   2214:     if (($httpbrowser=~/linux/i) ||
                   2215:         ($httpbrowser=~/unix/i) ||
                   2216:         ($httpbrowser=~/ux/i) ||
                   2217:         ($httpbrowser=~/solaris/i)) { $clientos='unix'; }
                   2218:     if (($httpbrowser=~/vax/i) ||
                   2219:         ($httpbrowser=~/vms/i)) { $clientos='vms'; }
                   2220:     if ($httpbrowser=~/next/i) { $clientos='next'; }
                   2221:     if (($httpbrowser=~/mac/i) ||
                   2222:         ($httpbrowser=~/powerpc/i)) { $clientos='mac'; }
                   2223:     if ($httpbrowser=~/win/i) { $clientos='win'; }
                   2224:     if ($httpbrowser=~/embed/i) { $clientos='pda'; }
                   2225:     return ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
                   2226:             $clientunicode,$clientos,);
                   2227: }
                   2228: 
1.32      matthew  2229: ###############################################################
                   2230: ##    Authentication changing form generation subroutines    ##
                   2231: ###############################################################
                   2232: ##
                   2233: ## All of the authform_xxxxxxx subroutines take their inputs in a
                   2234: ## hash, and have reasonable default values.
                   2235: ##
                   2236: ##    formname = the name given in the <form> tag.
1.35      matthew  2237: #-------------------------------------------
                   2238: 
1.45      matthew  2239: =pod
                   2240: 
1.112     bowersj2 2241: =head1 Authentication Routines
                   2242: 
                   2243: =over 4
                   2244: 
1.648     raeburn  2245: =item * &authform_xxxxxx()
1.35      matthew  2246: 
                   2247: The authform_xxxxxx subroutines provide javascript and html forms which 
                   2248: handle some of the conveniences required for authentication forms.  
                   2249: This is not an optimal method, but it works.  
                   2250: 
                   2251: =over 4
                   2252: 
1.112     bowersj2 2253: =item * authform_header
1.35      matthew  2254: 
1.112     bowersj2 2255: =item * authform_authorwarning
1.35      matthew  2256: 
1.112     bowersj2 2257: =item * authform_nochange
1.35      matthew  2258: 
1.112     bowersj2 2259: =item * authform_kerberos
1.35      matthew  2260: 
1.112     bowersj2 2261: =item * authform_internal
1.35      matthew  2262: 
1.112     bowersj2 2263: =item * authform_filesystem
1.35      matthew  2264: 
                   2265: =back
                   2266: 
1.648     raeburn  2267: See loncreateuser.pm for invocation and use examples.
1.157     matthew  2268: 
1.35      matthew  2269: =cut
                   2270: 
                   2271: #-------------------------------------------
1.32      matthew  2272: sub authform_header{  
                   2273:     my %in = (
                   2274:         formname => 'cu',
1.80      albertel 2275:         kerb_def_dom => '',
1.32      matthew  2276:         @_,
                   2277:     );
                   2278:     $in{'formname'} = 'document.' . $in{'formname'};
                   2279:     my $result='';
1.80      albertel 2280: 
                   2281: #---------------------------------------------- Code for upper case translation
                   2282:     my $Javascript_toUpperCase;
                   2283:     unless ($in{kerb_def_dom}) {
                   2284:         $Javascript_toUpperCase =<<"END";
                   2285:         switch (choice) {
                   2286:            case 'krb': currentform.elements[choicearg].value =
                   2287:                currentform.elements[choicearg].value.toUpperCase();
                   2288:                break;
                   2289:            default:
                   2290:         }
                   2291: END
                   2292:     } else {
                   2293:         $Javascript_toUpperCase = "";
                   2294:     }
                   2295: 
1.165     raeburn  2296:     my $radioval = "'nochange'";
1.591     raeburn  2297:     if (defined($in{'curr_authtype'})) {
                   2298:         if ($in{'curr_authtype'} ne '') {
                   2299:             $radioval = "'".$in{'curr_authtype'}."arg'";
                   2300:         }
1.174     matthew  2301:     }
1.165     raeburn  2302:     my $argfield = 'null';
1.591     raeburn  2303:     if (defined($in{'mode'})) {
1.165     raeburn  2304:         if ($in{'mode'} eq 'modifycourse')  {
1.591     raeburn  2305:             if (defined($in{'curr_autharg'})) {
                   2306:                 if ($in{'curr_autharg'} ne '') {
1.165     raeburn  2307:                     $argfield = "'$in{'curr_autharg'}'";
                   2308:                 }
                   2309:             }
                   2310:         }
                   2311:     }
                   2312: 
1.32      matthew  2313:     $result.=<<"END";
                   2314: var current = new Object();
1.165     raeburn  2315: current.radiovalue = $radioval;
                   2316: current.argfield = $argfield;
1.32      matthew  2317: 
                   2318: function changed_radio(choice,currentform) {
                   2319:     var choicearg = choice + 'arg';
                   2320:     // If a radio button in changed, we need to change the argfield
                   2321:     if (current.radiovalue != choice) {
                   2322:         current.radiovalue = choice;
                   2323:         if (current.argfield != null) {
                   2324:             currentform.elements[current.argfield].value = '';
                   2325:         }
                   2326:         if (choice == 'nochange') {
                   2327:             current.argfield = null;
                   2328:         } else {
                   2329:             current.argfield = choicearg;
                   2330:             switch(choice) {
                   2331:                 case 'krb': 
                   2332:                     currentform.elements[current.argfield].value = 
                   2333:                         "$in{'kerb_def_dom'}";
                   2334:                 break;
                   2335:               default:
                   2336:                 break;
                   2337:             }
                   2338:         }
                   2339:     }
                   2340:     return;
                   2341: }
1.22      www      2342: 
1.32      matthew  2343: function changed_text(choice,currentform) {
                   2344:     var choicearg = choice + 'arg';
                   2345:     if (currentform.elements[choicearg].value !='') {
1.80      albertel 2346:         $Javascript_toUpperCase
1.32      matthew  2347:         // clear old field
                   2348:         if ((current.argfield != choicearg) && (current.argfield != null)) {
                   2349:             currentform.elements[current.argfield].value = '';
                   2350:         }
                   2351:         current.argfield = choicearg;
                   2352:     }
                   2353:     set_auth_radio_buttons(choice,currentform);
                   2354:     return;
1.20      www      2355: }
1.32      matthew  2356: 
                   2357: function set_auth_radio_buttons(newvalue,currentform) {
1.986     raeburn  2358:     var numauthchoices = currentform.login.length;
                   2359:     if (typeof numauthchoices  == "undefined") {
                   2360:         return;
                   2361:     } 
1.32      matthew  2362:     var i=0;
1.986     raeburn  2363:     while (i < numauthchoices) {
1.32      matthew  2364:         if (currentform.login[i].value == newvalue) { break; }
                   2365:         i++;
                   2366:     }
1.986     raeburn  2367:     if (i == numauthchoices) {
1.32      matthew  2368:         return;
                   2369:     }
                   2370:     current.radiovalue = newvalue;
                   2371:     currentform.login[i].checked = true;
                   2372:     return;
                   2373: }
                   2374: END
                   2375:     return $result;
                   2376: }
                   2377: 
                   2378: sub authform_authorwarning{
                   2379:     my $result='';
1.144     matthew  2380:     $result='<i>'.
                   2381:         &mt('As a general rule, only authors or co-authors should be '.
                   2382:             'filesystem authenticated '.
                   2383:             '(which allows access to the server filesystem).')."</i>\n";
1.32      matthew  2384:     return $result;
                   2385: }
                   2386: 
                   2387: sub authform_nochange{  
                   2388:     my %in = (
                   2389:               formname => 'document.cu',
                   2390:               kerb_def_dom => 'MSU.EDU',
                   2391:               @_,
                   2392:           );
1.586     raeburn  2393:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'}); 
                   2394:     my $result;
                   2395:     if (keys(%can_assign) == 0) {
                   2396:         $result = &mt('Under you current role you are not permitted to change login settings for this user');  
                   2397:     } else {
                   2398:         $result = '<label>'.&mt('[_1] Do not change login data',
                   2399:                   '<input type="radio" name="login" value="nochange" '.
                   2400:                   'checked="checked" onclick="'.
1.281     albertel 2401:             "javascript:changed_radio('nochange',$in{'formname'});".'" />').
                   2402: 	    '</label>';
1.586     raeburn  2403:     }
1.32      matthew  2404:     return $result;
                   2405: }
                   2406: 
1.591     raeburn  2407: sub authform_kerberos {
1.32      matthew  2408:     my %in = (
                   2409:               formname => 'document.cu',
                   2410:               kerb_def_dom => 'MSU.EDU',
1.80      albertel 2411:               kerb_def_auth => 'krb4',
1.32      matthew  2412:               @_,
                   2413:               );
1.586     raeburn  2414:     my ($check4,$check5,$krbcheck,$krbarg,$krbver,$result,$authtype,
                   2415:         $autharg,$jscall);
                   2416:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.80      albertel 2417:     if ($in{'kerb_def_auth'} eq 'krb5') {
1.772     bisitz   2418:        $check5 = ' checked="checked"';
1.80      albertel 2419:     } else {
1.772     bisitz   2420:        $check4 = ' checked="checked"';
1.80      albertel 2421:     }
1.165     raeburn  2422:     $krbarg = $in{'kerb_def_dom'};
1.591     raeburn  2423:     if (defined($in{'curr_authtype'})) {
                   2424:         if ($in{'curr_authtype'} eq 'krb') {
1.772     bisitz   2425:             $krbcheck = ' checked="checked"';
1.623     raeburn  2426:             if (defined($in{'mode'})) {
                   2427:                 if ($in{'mode'} eq 'modifyuser') {
                   2428:                     $krbcheck = '';
                   2429:                 }
                   2430:             }
1.591     raeburn  2431:             if (defined($in{'curr_kerb_ver'})) {
                   2432:                 if ($in{'curr_krb_ver'} eq '5') {
1.772     bisitz   2433:                     $check5 = ' checked="checked"';
1.591     raeburn  2434:                     $check4 = '';
                   2435:                 } else {
1.772     bisitz   2436:                     $check4 = ' checked="checked"';
1.591     raeburn  2437:                     $check5 = '';
                   2438:                 }
1.586     raeburn  2439:             }
1.591     raeburn  2440:             if (defined($in{'curr_autharg'})) {
1.165     raeburn  2441:                 $krbarg = $in{'curr_autharg'};
                   2442:             }
1.586     raeburn  2443:             if (!$can_assign{'krb4'} && !$can_assign{'krb5'}) {
1.591     raeburn  2444:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2445:                     $result = 
                   2446:     &mt('Currently Kerberos authenticated with domain [_1] Version [_2].',
                   2447:         $in{'curr_autharg'},$krbver);
                   2448:                 } else {
                   2449:                     $result =
                   2450:     &mt('Currently Kerberos authenticated, Version [_1].',$krbver);
                   2451:                 }
                   2452:                 return $result; 
                   2453:             }
                   2454:         }
                   2455:     } else {
                   2456:         if ($authnum == 1) {
1.784     bisitz   2457:             $authtype = '<input type="hidden" name="login" value="krb" />';
1.165     raeburn  2458:         }
                   2459:     }
1.586     raeburn  2460:     if (!$can_assign{'krb4'} && !$can_assign{'krb5'}) {
                   2461:         return;
1.587     raeburn  2462:     } elsif ($authtype eq '') {
1.591     raeburn  2463:         if (defined($in{'mode'})) {
1.587     raeburn  2464:             if ($in{'mode'} eq 'modifycourse') {
                   2465:                 if ($authnum == 1) {
1.784     bisitz   2466:                     $authtype = '<input type="hidden" name="login" value="krb" />';
1.587     raeburn  2467:                 }
                   2468:             }
                   2469:         }
1.586     raeburn  2470:     }
                   2471:     $jscall = "javascript:changed_radio('krb',$in{'formname'});";
                   2472:     if ($authtype eq '') {
                   2473:         $authtype = '<input type="radio" name="login" value="krb" '.
                   2474:                     'onclick="'.$jscall.'" onchange="'.$jscall.'"'.
                   2475:                     $krbcheck.' />';
                   2476:     }
                   2477:     if (($can_assign{'krb4'} && $can_assign{'krb5'}) ||
                   2478:         ($can_assign{'krb4'} && !$can_assign{'krb5'} && 
                   2479:          $in{'curr_authtype'} eq 'krb5') ||
                   2480:         (!$can_assign{'krb4'} && $can_assign{'krb5'} && 
                   2481:          $in{'curr_authtype'} eq 'krb4')) {
                   2482:         $result .= &mt
1.144     matthew  2483:         ('[_1] Kerberos authenticated with domain [_2] '.
1.281     albertel 2484:          '[_3] Version 4 [_4] Version 5 [_5]',
1.586     raeburn  2485:          '<label>'.$authtype,
1.281     albertel 2486:          '</label><input type="text" size="10" name="krbarg" '.
1.165     raeburn  2487:              'value="'.$krbarg.'" '.
1.144     matthew  2488:              'onchange="'.$jscall.'" />',
1.281     albertel 2489:          '<label><input type="radio" name="krbver" value="4" '.$check4.' />',
                   2490:          '</label><label><input type="radio" name="krbver" value="5" '.$check5.' />',
                   2491: 	 '</label>');
1.586     raeburn  2492:     } elsif ($can_assign{'krb4'}) {
                   2493:         $result .= &mt
                   2494:         ('[_1] Kerberos authenticated with domain [_2] '.
                   2495:          '[_3] Version 4 [_4]',
                   2496:          '<label>'.$authtype,
                   2497:          '</label><input type="text" size="10" name="krbarg" '.
                   2498:              'value="'.$krbarg.'" '.
                   2499:              'onchange="'.$jscall.'" />',
                   2500:          '<label><input type="hidden" name="krbver" value="4" />',
                   2501:          '</label>');
                   2502:     } elsif ($can_assign{'krb5'}) {
                   2503:         $result .= &mt
                   2504:         ('[_1] Kerberos authenticated with domain [_2] '.
                   2505:          '[_3] Version 5 [_4]',
                   2506:          '<label>'.$authtype,
                   2507:          '</label><input type="text" size="10" name="krbarg" '.
                   2508:              'value="'.$krbarg.'" '.
                   2509:              'onchange="'.$jscall.'" />',
                   2510:          '<label><input type="hidden" name="krbver" value="5" />',
                   2511:          '</label>');
                   2512:     }
1.32      matthew  2513:     return $result;
                   2514: }
                   2515: 
                   2516: sub authform_internal{  
1.586     raeburn  2517:     my %in = (
1.32      matthew  2518:                 formname => 'document.cu',
                   2519:                 kerb_def_dom => 'MSU.EDU',
                   2520:                 @_,
                   2521:                 );
1.586     raeburn  2522:     my ($intcheck,$intarg,$result,$authtype,$autharg,$jscall);
                   2523:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2524:     if (defined($in{'curr_authtype'})) {
                   2525:         if ($in{'curr_authtype'} eq 'int') {
1.586     raeburn  2526:             if ($can_assign{'int'}) {
1.772     bisitz   2527:                 $intcheck = 'checked="checked" ';
1.623     raeburn  2528:                 if (defined($in{'mode'})) {
                   2529:                     if ($in{'mode'} eq 'modifyuser') {
                   2530:                         $intcheck = '';
                   2531:                     }
                   2532:                 }
1.591     raeburn  2533:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2534:                     $intarg = $in{'curr_autharg'};
                   2535:                 }
                   2536:             } else {
                   2537:                 $result = &mt('Currently internally authenticated.');
                   2538:                 return $result;
1.165     raeburn  2539:             }
                   2540:         }
1.586     raeburn  2541:     } else {
                   2542:         if ($authnum == 1) {
1.784     bisitz   2543:             $authtype = '<input type="hidden" name="login" value="int" />';
1.586     raeburn  2544:         }
                   2545:     }
                   2546:     if (!$can_assign{'int'}) {
                   2547:         return;
1.587     raeburn  2548:     } elsif ($authtype eq '') {
1.591     raeburn  2549:         if (defined($in{'mode'})) {
1.587     raeburn  2550:             if ($in{'mode'} eq 'modifycourse') {
                   2551:                 if ($authnum == 1) {
1.784     bisitz   2552:                     $authtype = '<input type="hidden" name="login" value="int" />';
1.587     raeburn  2553:                 }
                   2554:             }
                   2555:         }
1.165     raeburn  2556:     }
1.586     raeburn  2557:     $jscall = "javascript:changed_radio('int',$in{'formname'});";
                   2558:     if ($authtype eq '') {
                   2559:         $authtype = '<input type="radio" name="login" value="int" '.$intcheck.
                   2560:                     ' onchange="'.$jscall.'" onclick="'.$jscall.'" />';
                   2561:     }
1.605     bisitz   2562:     $autharg = '<input type="password" size="10" name="intarg" value="'.
1.586     raeburn  2563:                $intarg.'" onchange="'.$jscall.'" />';
                   2564:     $result = &mt
1.144     matthew  2565:         ('[_1] Internally authenticated (with initial password [_2])',
1.586     raeburn  2566:          '<label>'.$authtype,'</label>'.$autharg);
1.824     bisitz   2567:     $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  2568:     return $result;
                   2569: }
                   2570: 
                   2571: sub authform_local{  
                   2572:     my %in = (
                   2573:               formname => 'document.cu',
                   2574:               kerb_def_dom => 'MSU.EDU',
                   2575:               @_,
                   2576:               );
1.586     raeburn  2577:     my ($loccheck,$locarg,$result,$authtype,$autharg,$jscall);
                   2578:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2579:     if (defined($in{'curr_authtype'})) {
                   2580:         if ($in{'curr_authtype'} eq 'loc') {
1.586     raeburn  2581:             if ($can_assign{'loc'}) {
1.772     bisitz   2582:                 $loccheck = 'checked="checked" ';
1.623     raeburn  2583:                 if (defined($in{'mode'})) {
                   2584:                     if ($in{'mode'} eq 'modifyuser') {
                   2585:                         $loccheck = '';
                   2586:                     }
                   2587:                 }
1.591     raeburn  2588:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2589:                     $locarg = $in{'curr_autharg'};
                   2590:                 }
                   2591:             } else {
                   2592:                 $result = &mt('Currently using local (institutional) authentication.');
                   2593:                 return $result;
1.165     raeburn  2594:             }
                   2595:         }
1.586     raeburn  2596:     } else {
                   2597:         if ($authnum == 1) {
1.784     bisitz   2598:             $authtype = '<input type="hidden" name="login" value="loc" />';
1.586     raeburn  2599:         }
                   2600:     }
                   2601:     if (!$can_assign{'loc'}) {
                   2602:         return;
1.587     raeburn  2603:     } elsif ($authtype eq '') {
1.591     raeburn  2604:         if (defined($in{'mode'})) {
1.587     raeburn  2605:             if ($in{'mode'} eq 'modifycourse') {
                   2606:                 if ($authnum == 1) {
1.784     bisitz   2607:                     $authtype = '<input type="hidden" name="login" value="loc" />';
1.587     raeburn  2608:                 }
                   2609:             }
                   2610:         }
1.165     raeburn  2611:     }
1.586     raeburn  2612:     $jscall = "javascript:changed_radio('loc',$in{'formname'});";
                   2613:     if ($authtype eq '') {
                   2614:         $authtype = '<input type="radio" name="login" value="loc" '.
                   2615:                     $loccheck.' onchange="'.$jscall.'" onclick="'.
                   2616:                     $jscall.'" />';
                   2617:     }
                   2618:     $autharg = '<input type="text" size="10" name="locarg" value="'.
                   2619:                $locarg.'" onchange="'.$jscall.'" />';
                   2620:     $result = &mt('[_1] Local Authentication with argument [_2]',
                   2621:                   '<label>'.$authtype,'</label>'.$autharg);
1.32      matthew  2622:     return $result;
                   2623: }
                   2624: 
                   2625: sub authform_filesystem{  
                   2626:     my %in = (
                   2627:               formname => 'document.cu',
                   2628:               kerb_def_dom => 'MSU.EDU',
                   2629:               @_,
                   2630:               );
1.586     raeburn  2631:     my ($fsyscheck,$result,$authtype,$autharg,$jscall);
                   2632:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2633:     if (defined($in{'curr_authtype'})) {
                   2634:         if ($in{'curr_authtype'} eq 'fsys') {
1.586     raeburn  2635:             if ($can_assign{'fsys'}) {
1.772     bisitz   2636:                 $fsyscheck = 'checked="checked" ';
1.623     raeburn  2637:                 if (defined($in{'mode'})) {
                   2638:                     if ($in{'mode'} eq 'modifyuser') {
                   2639:                         $fsyscheck = '';
                   2640:                     }
                   2641:                 }
1.586     raeburn  2642:             } else {
                   2643:                 $result = &mt('Currently Filesystem Authenticated.');
                   2644:                 return $result;
                   2645:             }           
                   2646:         }
                   2647:     } else {
                   2648:         if ($authnum == 1) {
1.784     bisitz   2649:             $authtype = '<input type="hidden" name="login" value="fsys" />';
1.586     raeburn  2650:         }
                   2651:     }
                   2652:     if (!$can_assign{'fsys'}) {
                   2653:         return;
1.587     raeburn  2654:     } elsif ($authtype eq '') {
1.591     raeburn  2655:         if (defined($in{'mode'})) {
1.587     raeburn  2656:             if ($in{'mode'} eq 'modifycourse') {
                   2657:                 if ($authnum == 1) {
1.784     bisitz   2658:                     $authtype = '<input type="hidden" name="login" value="fsys" />';
1.587     raeburn  2659:                 }
                   2660:             }
                   2661:         }
1.586     raeburn  2662:     }
                   2663:     $jscall = "javascript:changed_radio('fsys',$in{'formname'});";
                   2664:     if ($authtype eq '') {
                   2665:         $authtype = '<input type="radio" name="login" value="fsys" '.
                   2666:                     $fsyscheck.' onchange="'.$jscall.'" onclick="'.
                   2667:                     $jscall.'" />';
                   2668:     }
                   2669:     $autharg = '<input type="text" size="10" name="fsysarg" value=""'.
                   2670:                ' onchange="'.$jscall.'" />';
                   2671:     $result = &mt
1.144     matthew  2672:         ('[_1] Filesystem Authenticated (with initial password [_2])',
1.281     albertel 2673:          '<label><input type="radio" name="login" value="fsys" '.
1.586     raeburn  2674:          $fsyscheck.'onchange="'.$jscall.'" onclick="'.$jscall.'" />',
1.605     bisitz   2675:          '</label><input type="password" size="10" name="fsysarg" value="" '.
1.144     matthew  2676:                   'onchange="'.$jscall.'" />');
1.32      matthew  2677:     return $result;
                   2678: }
                   2679: 
1.586     raeburn  2680: sub get_assignable_auth {
                   2681:     my ($dom) = @_;
                   2682:     if ($dom eq '') {
                   2683:         $dom = $env{'request.role.domain'};
                   2684:     }
                   2685:     my %can_assign = (
                   2686:                           krb4 => 1,
                   2687:                           krb5 => 1,
                   2688:                           int  => 1,
                   2689:                           loc  => 1,
                   2690:                      );
                   2691:     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom);
                   2692:     if (ref($domconfig{'usercreation'}) eq 'HASH') {
                   2693:         if (ref($domconfig{'usercreation'}{'authtypes'}) eq 'HASH') {
                   2694:             my $authhash = $domconfig{'usercreation'}{'authtypes'};
                   2695:             my $context;
                   2696:             if ($env{'request.role'} =~ /^au/) {
                   2697:                 $context = 'author';
                   2698:             } elsif ($env{'request.role'} =~ /^dc/) {
                   2699:                 $context = 'domain';
                   2700:             } elsif ($env{'request.course.id'}) {
                   2701:                 $context = 'course';
                   2702:             }
                   2703:             if ($context) {
                   2704:                 if (ref($authhash->{$context}) eq 'HASH') {
                   2705:                    %can_assign = %{$authhash->{$context}}; 
                   2706:                 }
                   2707:             }
                   2708:         }
                   2709:     }
                   2710:     my $authnum = 0;
                   2711:     foreach my $key (keys(%can_assign)) {
                   2712:         if ($can_assign{$key}) {
                   2713:             $authnum ++;
                   2714:         }
                   2715:     }
                   2716:     if ($can_assign{'krb4'} && $can_assign{'krb5'}) {
                   2717:         $authnum --;
                   2718:     }
                   2719:     return ($authnum,%can_assign);
                   2720: }
                   2721: 
1.80      albertel 2722: ###############################################################
                   2723: ##    Get Kerberos Defaults for Domain                 ##
                   2724: ###############################################################
                   2725: ##
                   2726: ## Returns default kerberos version and an associated argument
                   2727: ## as listed in file domain.tab. If not listed, provides
                   2728: ## appropriate default domain and kerberos version.
                   2729: ##
                   2730: #-------------------------------------------
                   2731: 
                   2732: =pod
                   2733: 
1.648     raeburn  2734: =item * &get_kerberos_defaults()
1.80      albertel 2735: 
                   2736: get_kerberos_defaults($target_domain) returns the default kerberos
1.641     raeburn  2737: version and domain. If not found, it defaults to version 4 and the 
                   2738: domain of the server.
1.80      albertel 2739: 
1.648     raeburn  2740: =over 4
                   2741: 
1.80      albertel 2742: ($def_version, $def_krb_domain) = &get_kerberos_defaults($target_domain);
                   2743: 
1.648     raeburn  2744: =back
                   2745: 
                   2746: =back
                   2747: 
1.80      albertel 2748: =cut
                   2749: 
                   2750: #-------------------------------------------
                   2751: sub get_kerberos_defaults {
                   2752:     my $domain=shift;
1.641     raeburn  2753:     my ($krbdef,$krbdefdom);
                   2754:     my %domdefaults = &Apache::lonnet::get_domain_defaults($domain);
                   2755:     if (($domdefaults{'auth_def'} =~/^krb(4|5)$/) && ($domdefaults{'auth_arg_def'} ne '')) {
                   2756:         $krbdef = $domdefaults{'auth_def'};
                   2757:         $krbdefdom = $domdefaults{'auth_arg_def'};
                   2758:     } else {
1.80      albertel 2759:         $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/;
                   2760:         my $krbdefdom=$1;
                   2761:         $krbdefdom=~tr/a-z/A-Z/;
                   2762:         $krbdef = "krb4";
                   2763:     }
                   2764:     return ($krbdef,$krbdefdom);
                   2765: }
1.112     bowersj2 2766: 
1.32      matthew  2767: 
1.46      matthew  2768: ###############################################################
                   2769: ##                Thesaurus Functions                        ##
                   2770: ###############################################################
1.20      www      2771: 
1.46      matthew  2772: =pod
1.20      www      2773: 
1.112     bowersj2 2774: =head1 Thesaurus Functions
                   2775: 
                   2776: =over 4
                   2777: 
1.648     raeburn  2778: =item * &initialize_keywords()
1.46      matthew  2779: 
                   2780: Initializes the package variable %Keywords if it is empty.  Uses the
                   2781: package variable $thesaurus_db_file.
                   2782: 
                   2783: =cut
                   2784: 
                   2785: ###################################################
                   2786: 
                   2787: sub initialize_keywords {
                   2788:     return 1 if (scalar keys(%Keywords));
                   2789:     # If we are here, %Keywords is empty, so fill it up
                   2790:     #   Make sure the file we need exists...
                   2791:     if (! -e $thesaurus_db_file) {
                   2792:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file".
                   2793:                                  " failed because it does not exist");
                   2794:         return 0;
                   2795:     }
                   2796:     #   Set up the hash as a database
                   2797:     my %thesaurus_db;
                   2798:     if (! tie(%thesaurus_db,'GDBM_File',
1.53      albertel 2799:               $thesaurus_db_file,&GDBM_READER(),0640)){
1.46      matthew  2800:         &Apache::lonnet::logthis("Could not tie \%thesaurus_db to ".
                   2801:                                  $thesaurus_db_file);
                   2802:         return 0;
                   2803:     } 
                   2804:     #  Get the average number of appearances of a word.
                   2805:     my $avecount = $thesaurus_db{'average.count'};
                   2806:     #  Put keywords (those that appear > average) into %Keywords
                   2807:     while (my ($word,$data)=each (%thesaurus_db)) {
                   2808:         my ($count,undef) = split /:/,$data;
                   2809:         $Keywords{$word}++ if ($count > $avecount);
                   2810:     }
                   2811:     untie %thesaurus_db;
                   2812:     # Remove special values from %Keywords.
1.356     albertel 2813:     foreach my $value ('total.count','average.count') {
                   2814:         delete($Keywords{$value}) if (exists($Keywords{$value}));
1.586     raeburn  2815:   }
1.46      matthew  2816:     return 1;
                   2817: }
                   2818: 
                   2819: ###################################################
                   2820: 
                   2821: =pod
                   2822: 
1.648     raeburn  2823: =item * &keyword($word)
1.46      matthew  2824: 
                   2825: Returns true if $word is a keyword.  A keyword is a word that appears more 
                   2826: than the average number of times in the thesaurus database.  Calls 
                   2827: &initialize_keywords
                   2828: 
                   2829: =cut
                   2830: 
                   2831: ###################################################
1.20      www      2832: 
                   2833: sub keyword {
1.46      matthew  2834:     return if (!&initialize_keywords());
                   2835:     my $word=lc(shift());
                   2836:     $word=~s/\W//g;
                   2837:     return exists($Keywords{$word});
1.20      www      2838: }
1.46      matthew  2839: 
                   2840: ###############################################################
                   2841: 
                   2842: =pod 
1.20      www      2843: 
1.648     raeburn  2844: =item * &get_related_words()
1.46      matthew  2845: 
1.160     matthew  2846: Look up a word in the thesaurus.  Takes a scalar argument and returns
1.46      matthew  2847: an array of words.  If the keyword is not in the thesaurus, an empty array
                   2848: will be returned.  The order of the words returned is determined by the
                   2849: database which holds them.
                   2850: 
                   2851: Uses global $thesaurus_db_file.
                   2852: 
                   2853: =cut
                   2854: 
                   2855: ###############################################################
                   2856: sub get_related_words {
                   2857:     my $keyword = shift;
                   2858:     my %thesaurus_db;
                   2859:     if (! -e $thesaurus_db_file) {
                   2860:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file ".
                   2861:                                  "failed because the file does not exist");
                   2862:         return ();
                   2863:     }
                   2864:     if (! tie(%thesaurus_db,'GDBM_File',
1.53      albertel 2865:               $thesaurus_db_file,&GDBM_READER(),0640)){
1.46      matthew  2866:         return ();
                   2867:     } 
                   2868:     my @Words=();
1.429     www      2869:     my $count=0;
1.46      matthew  2870:     if (exists($thesaurus_db{$keyword})) {
1.356     albertel 2871: 	# The first element is the number of times
                   2872: 	# the word appears.  We do not need it now.
1.429     www      2873: 	my (undef,@RelatedWords) = (split(/:/,$thesaurus_db{$keyword}));
                   2874: 	my (undef,$mostfrequentcount)=split(/\,/,$RelatedWords[0]);
                   2875: 	my $threshold=$mostfrequentcount/10;
                   2876:         foreach my $possibleword (@RelatedWords) {
                   2877:             my ($word,$wordcount)=split(/\,/,$possibleword);
                   2878:             if ($wordcount>$threshold) {
                   2879: 		push(@Words,$word);
                   2880:                 $count++;
                   2881:                 if ($count>10) { last; }
                   2882: 	    }
1.20      www      2883:         }
                   2884:     }
1.46      matthew  2885:     untie %thesaurus_db;
                   2886:     return @Words;
1.14      harris41 2887: }
1.46      matthew  2888: 
1.112     bowersj2 2889: =pod
                   2890: 
                   2891: =back
                   2892: 
                   2893: =cut
1.61      www      2894: 
                   2895: # -------------------------------------------------------------- Plaintext name
1.81      albertel 2896: =pod
                   2897: 
1.112     bowersj2 2898: =head1 User Name Functions
                   2899: 
                   2900: =over 4
                   2901: 
1.648     raeburn  2902: =item * &plainname($uname,$udom,$first)
1.81      albertel 2903: 
1.112     bowersj2 2904: Takes a users logon name and returns it as a string in
1.226     albertel 2905: "first middle last generation" form 
                   2906: if $first is set to 'lastname' then it returns it as
                   2907: 'lastname generation, firstname middlename' if their is a lastname
1.81      albertel 2908: 
                   2909: =cut
1.61      www      2910: 
1.295     www      2911: 
1.81      albertel 2912: ###############################################################
1.61      www      2913: sub plainname {
1.226     albertel 2914:     my ($uname,$udom,$first)=@_;
1.537     albertel 2915:     return if (!defined($uname) || !defined($udom));
1.295     www      2916:     my %names=&getnames($uname,$udom);
1.226     albertel 2917:     my $name=&Apache::lonnet::format_name($names{'firstname'},
                   2918: 					  $names{'middlename'},
                   2919: 					  $names{'lastname'},
                   2920: 					  $names{'generation'},$first);
                   2921:     $name=~s/^\s+//;
1.62      www      2922:     $name=~s/\s+$//;
                   2923:     $name=~s/\s+/ /g;
1.353     albertel 2924:     if ($name !~ /\S/) { $name=$uname.':'.$udom; }
1.62      www      2925:     return $name;
1.61      www      2926: }
1.66      www      2927: 
                   2928: # -------------------------------------------------------------------- Nickname
1.81      albertel 2929: =pod
                   2930: 
1.648     raeburn  2931: =item * &nickname($uname,$udom)
1.81      albertel 2932: 
                   2933: Gets a users name and returns it as a string as
                   2934: 
                   2935: "&quot;nickname&quot;"
1.66      www      2936: 
1.81      albertel 2937: if the user has a nickname or
                   2938: 
                   2939: "first middle last generation"
                   2940: 
                   2941: if the user does not
                   2942: 
                   2943: =cut
1.66      www      2944: 
                   2945: sub nickname {
                   2946:     my ($uname,$udom)=@_;
1.537     albertel 2947:     return if (!defined($uname) || !defined($udom));
1.295     www      2948:     my %names=&getnames($uname,$udom);
1.68      albertel 2949:     my $name=$names{'nickname'};
1.66      www      2950:     if ($name) {
                   2951:        $name='&quot;'.$name.'&quot;'; 
                   2952:     } else {
                   2953:        $name=$names{'firstname'}.' '.$names{'middlename'}.' '.
                   2954: 	     $names{'lastname'}.' '.$names{'generation'};
                   2955:        $name=~s/\s+$//;
                   2956:        $name=~s/\s+/ /g;
                   2957:     }
                   2958:     return $name;
                   2959: }
                   2960: 
1.295     www      2961: sub getnames {
                   2962:     my ($uname,$udom)=@_;
1.537     albertel 2963:     return if (!defined($uname) || !defined($udom));
1.433     albertel 2964:     if ($udom eq 'public' && $uname eq 'public') {
                   2965: 	return ('lastname' => &mt('Public'));
                   2966:     }
1.295     www      2967:     my $id=$uname.':'.$udom;
                   2968:     my ($names,$cached)=&Apache::lonnet::is_cached_new('namescache',$id);
                   2969:     if ($cached) {
                   2970: 	return %{$names};
                   2971:     } else {
                   2972: 	my %loadnames=&Apache::lonnet::get('environment',
                   2973:                     ['firstname','middlename','lastname','generation','nickname'],
                   2974: 					 $udom,$uname);
                   2975: 	&Apache::lonnet::do_cache_new('namescache',$id,\%loadnames);
                   2976: 	return %loadnames;
                   2977:     }
                   2978: }
1.61      www      2979: 
1.542     raeburn  2980: # -------------------------------------------------------------------- getemails
1.648     raeburn  2981: 
1.542     raeburn  2982: =pod
                   2983: 
1.648     raeburn  2984: =item * &getemails($uname,$udom)
1.542     raeburn  2985: 
                   2986: Gets a user's email information and returns it as a hash with keys:
                   2987: notification, critnotification, permanentemail
                   2988: 
                   2989: For notification and critnotification, values are comma-separated lists 
1.648     raeburn  2990: of e-mail addresses; for permanentemail, value is a single e-mail address.
1.542     raeburn  2991:  
1.648     raeburn  2992: 
1.542     raeburn  2993: =cut
                   2994: 
1.648     raeburn  2995: 
1.466     albertel 2996: sub getemails {
                   2997:     my ($uname,$udom)=@_;
                   2998:     if ($udom eq 'public' && $uname eq 'public') {
                   2999: 	return;
                   3000:     }
1.467     www      3001:     if (!$udom) { $udom=$env{'user.domain'}; }
                   3002:     if (!$uname) { $uname=$env{'user.name'}; }
1.466     albertel 3003:     my $id=$uname.':'.$udom;
                   3004:     my ($names,$cached)=&Apache::lonnet::is_cached_new('emailscache',$id);
                   3005:     if ($cached) {
                   3006: 	return %{$names};
                   3007:     } else {
                   3008: 	my %loadnames=&Apache::lonnet::get('environment',
                   3009:                     			   ['notification','critnotification',
                   3010: 					    'permanentemail'],
                   3011: 					   $udom,$uname);
                   3012: 	&Apache::lonnet::do_cache_new('emailscache',$id,\%loadnames);
                   3013: 	return %loadnames;
                   3014:     }
                   3015: }
                   3016: 
1.551     albertel 3017: sub flush_email_cache {
                   3018:     my ($uname,$udom)=@_;
                   3019:     if (!$udom)  { $udom =$env{'user.domain'}; }
                   3020:     if (!$uname) { $uname=$env{'user.name'};   }
                   3021:     return if ($udom eq 'public' && $uname eq 'public');
                   3022:     my $id=$uname.':'.$udom;
                   3023:     &Apache::lonnet::devalidate_cache_new('emailscache',$id);
                   3024: }
                   3025: 
1.728     raeburn  3026: # -------------------------------------------------------------------- getlangs
                   3027: 
                   3028: =pod
                   3029: 
                   3030: =item * &getlangs($uname,$udom)
                   3031: 
                   3032: Gets a user's language preference and returns it as a hash with key:
                   3033: language.
                   3034: 
                   3035: =cut
                   3036: 
                   3037: 
                   3038: sub getlangs {
                   3039:     my ($uname,$udom) = @_;
                   3040:     if (!$udom)  { $udom =$env{'user.domain'}; }
                   3041:     if (!$uname) { $uname=$env{'user.name'};   }
                   3042:     my $id=$uname.':'.$udom;
                   3043:     my ($langs,$cached)=&Apache::lonnet::is_cached_new('userlangs',$id);
                   3044:     if ($cached) {
                   3045:         return %{$langs};
                   3046:     } else {
                   3047:         my %loadlangs=&Apache::lonnet::get('environment',['languages'],
                   3048:                                            $udom,$uname);
                   3049:         &Apache::lonnet::do_cache_new('userlangs',$id,\%loadlangs);
                   3050:         return %loadlangs;
                   3051:     }
                   3052: }
                   3053: 
                   3054: sub flush_langs_cache {
                   3055:     my ($uname,$udom)=@_;
                   3056:     if (!$udom)  { $udom =$env{'user.domain'}; }
                   3057:     if (!$uname) { $uname=$env{'user.name'};   }
                   3058:     return if ($udom eq 'public' && $uname eq 'public');
                   3059:     my $id=$uname.':'.$udom;
                   3060:     &Apache::lonnet::devalidate_cache_new('userlangs',$id);
                   3061: }
                   3062: 
1.61      www      3063: # ------------------------------------------------------------------ Screenname
1.81      albertel 3064: 
                   3065: =pod
                   3066: 
1.648     raeburn  3067: =item * &screenname($uname,$udom)
1.81      albertel 3068: 
                   3069: Gets a users screenname and returns it as a string
                   3070: 
                   3071: =cut
1.61      www      3072: 
                   3073: sub screenname {
                   3074:     my ($uname,$udom)=@_;
1.258     albertel 3075:     if ($uname eq $env{'user.name'} &&
                   3076: 	$udom eq $env{'user.domain'}) {return $env{'environment.screenname'};}
1.212     albertel 3077:     my %names=&Apache::lonnet::get('environment',['screenname'],$udom,$uname);
1.68      albertel 3078:     return $names{'screenname'};
1.62      www      3079: }
                   3080: 
1.212     albertel 3081: 
1.802     bisitz   3082: # ------------------------------------------------------------- Confirm Wrapper
                   3083: =pod
                   3084: 
                   3085: =item confirmwrapper
                   3086: 
                   3087: Wrap messages about completion of operation in box
                   3088: 
                   3089: =cut
                   3090: 
                   3091: sub confirmwrapper {
                   3092:     my ($message)=@_;
                   3093:     if ($message) {
                   3094:         return "\n".'<div class="LC_confirm_box">'."\n"
                   3095:                .$message."\n"
                   3096:                .'</div>'."\n";
                   3097:     } else {
                   3098:         return $message;
                   3099:     }
                   3100: }
                   3101: 
1.62      www      3102: # ------------------------------------------------------------- Message Wrapper
                   3103: 
                   3104: sub messagewrapper {
1.369     www      3105:     my ($link,$username,$domain,$subject,$text)=@_;
1.62      www      3106:     return 
1.441     albertel 3107:         '<a href="/adm/email?compose=individual&amp;'.
                   3108:         'recname='.$username.'&amp;recdom='.$domain.
                   3109: 	'&amp;subject='.&escape($subject).'&amp;text='.&escape($text).'" '.
1.200     matthew  3110:         'title="'.&mt('Send message').'">'.$link.'</a>';
1.74      www      3111: }
1.802     bisitz   3112: 
1.74      www      3113: # --------------------------------------------------------------- Notes Wrapper
                   3114: 
                   3115: sub noteswrapper {
                   3116:     my ($link,$un,$do)=@_;
                   3117:     return 
1.896     amueller 3118: "<a href='/adm/email?recordftf=retrieve&amp;recname=$un&amp;recdom=$do'>$link</a>";
1.62      www      3119: }
1.802     bisitz   3120: 
1.62      www      3121: # ------------------------------------------------------------- Aboutme Wrapper
                   3122: 
                   3123: sub aboutmewrapper {
1.166     www      3124:     my ($link,$username,$domain,$target)=@_;
1.447     raeburn  3125:     if (!defined($username)  && !defined($domain)) {
                   3126:         return;
                   3127:     }
1.892     amueller 3128:     return '<a href="/adm/'.$domain.'/'.$username.'/aboutme?forcestudent=1"'.
1.756     weissno  3129: 	($target?' target="$target"':'').' title="'.&mt("View this user's personal information page").'">'.$link.'</a>';
1.62      www      3130: }
                   3131: 
                   3132: # ------------------------------------------------------------ Syllabus Wrapper
                   3133: 
                   3134: sub syllabuswrapper {
1.707     bisitz   3135:     my ($linktext,$coursedir,$domain)=@_;
1.208     matthew  3136:     return qq{<a href="/public/$domain/$coursedir/syllabus">$linktext</a>};
1.61      www      3137: }
1.14      harris41 3138: 
1.802     bisitz   3139: # -----------------------------------------------------------------------------
                   3140: 
1.208     matthew  3141: sub track_student_link {
1.887     raeburn  3142:     my ($linktext,$sname,$sdom,$target,$start,$only_body) = @_;
1.268     albertel 3143:     my $link ="/adm/trackstudent?";
1.208     matthew  3144:     my $title = 'View recent activity';
                   3145:     if (defined($sname) && $sname !~ /^\s*$/ &&
                   3146:         defined($sdom)  && $sdom  !~ /^\s*$/) {
1.268     albertel 3147:         $link .= "selected_student=$sname:$sdom";
1.208     matthew  3148:         $title .= ' of this student';
1.268     albertel 3149:     } 
1.208     matthew  3150:     if (defined($target) && $target !~ /^\s*$/) {
                   3151:         $target = qq{target="$target"};
                   3152:     } else {
                   3153:         $target = '';
                   3154:     }
1.268     albertel 3155:     if ($start) { $link.='&amp;start='.$start; }
1.887     raeburn  3156:     if ($only_body) { $link .= '&amp;only_body=1'; }
1.554     albertel 3157:     $title = &mt($title);
                   3158:     $linktext = &mt($linktext);
1.448     albertel 3159:     return qq{<a href="$link" title="$title" $target>$linktext</a>}.
                   3160: 	&help_open_topic('View_recent_activity');
1.208     matthew  3161: }
                   3162: 
1.781     raeburn  3163: sub slot_reservations_link {
                   3164:     my ($linktext,$sname,$sdom,$target) = @_;
                   3165:     my $link ="/adm/slotrequest?command=showresv&amp;origin=aboutme";
                   3166:     my $title = 'View slot reservation history';
                   3167:     if (defined($sname) && $sname !~ /^\s*$/ &&
                   3168:         defined($sdom)  && $sdom  !~ /^\s*$/) {
                   3169:         $link .= "&amp;uname=$sname&amp;udom=$sdom";
                   3170:         $title .= ' of this student';
                   3171:     }
                   3172:     if (defined($target) && $target !~ /^\s*$/) {
                   3173:         $target = qq{target="$target"};
                   3174:     } else {
                   3175:         $target = '';
                   3176:     }
                   3177:     $title = &mt($title);
                   3178:     $linktext = &mt($linktext);
                   3179:     return qq{<a href="$link" title="$title" $target>$linktext</a>};
                   3180: # FIXME uncomment when help item created: &help_open_topic('Slot_Reservation_History');
                   3181: 
                   3182: }
                   3183: 
1.508     www      3184: # ===================================================== Display a student photo
                   3185: 
                   3186: 
1.509     albertel 3187: sub student_image_tag {
1.508     www      3188:     my ($domain,$user)=@_;
                   3189:     my $imgsrc=&Apache::lonnet::studentphoto($domain,$user,'jpg');
                   3190:     if (($imgsrc) && ($imgsrc ne '/adm/lonKaputt/lonlogo_broken.gif')) {
                   3191: 	return '<img src="'.$imgsrc.'" align="right" />';
                   3192:     } else {
                   3193: 	return '';
                   3194:     }
                   3195: }
                   3196: 
1.112     bowersj2 3197: =pod
                   3198: 
                   3199: =back
                   3200: 
                   3201: =head1 Access .tab File Data
                   3202: 
                   3203: =over 4
                   3204: 
1.648     raeburn  3205: =item * &languageids() 
1.112     bowersj2 3206: 
                   3207: returns list of all language ids
                   3208: 
                   3209: =cut
                   3210: 
1.14      harris41 3211: sub languageids {
1.16      harris41 3212:     return sort(keys(%language));
1.14      harris41 3213: }
                   3214: 
1.112     bowersj2 3215: =pod
                   3216: 
1.648     raeburn  3217: =item * &languagedescription() 
1.112     bowersj2 3218: 
                   3219: returns description of a specified language id
                   3220: 
                   3221: =cut
                   3222: 
1.14      harris41 3223: sub languagedescription {
1.125     www      3224:     my $code=shift;
                   3225:     return  ($supported_language{$code}?'* ':'').
                   3226:             $language{$code}.
1.126     www      3227: 	    ($supported_language{$code}?' ('.&mt('interface available').')':'');
1.145     www      3228: }
                   3229: 
                   3230: sub plainlanguagedescription {
                   3231:     my $code=shift;
                   3232:     return $language{$code};
                   3233: }
                   3234: 
                   3235: sub supportedlanguagecode {
                   3236:     my $code=shift;
                   3237:     return $supported_language{$code};
1.97      www      3238: }
                   3239: 
1.112     bowersj2 3240: =pod
                   3241: 
1.648     raeburn  3242: =item * &copyrightids() 
1.112     bowersj2 3243: 
                   3244: returns list of all copyrights
                   3245: 
                   3246: =cut
                   3247: 
                   3248: sub copyrightids {
                   3249:     return sort(keys(%cprtag));
                   3250: }
                   3251: 
                   3252: =pod
                   3253: 
1.648     raeburn  3254: =item * &copyrightdescription() 
1.112     bowersj2 3255: 
                   3256: returns description of a specified copyright id
                   3257: 
                   3258: =cut
                   3259: 
                   3260: sub copyrightdescription {
1.166     www      3261:     return &mt($cprtag{shift(@_)});
1.112     bowersj2 3262: }
1.197     matthew  3263: 
                   3264: =pod
                   3265: 
1.648     raeburn  3266: =item * &source_copyrightids() 
1.192     taceyjo1 3267: 
                   3268: returns list of all source copyrights
                   3269: 
                   3270: =cut
                   3271: 
                   3272: sub source_copyrightids {
                   3273:     return sort(keys(%scprtag));
                   3274: }
                   3275: 
                   3276: =pod
                   3277: 
1.648     raeburn  3278: =item * &source_copyrightdescription() 
1.192     taceyjo1 3279: 
                   3280: returns description of a specified source copyright id
                   3281: 
                   3282: =cut
                   3283: 
                   3284: sub source_copyrightdescription {
                   3285:     return &mt($scprtag{shift(@_)});
                   3286: }
1.112     bowersj2 3287: 
                   3288: =pod
                   3289: 
1.648     raeburn  3290: =item * &filecategories() 
1.112     bowersj2 3291: 
                   3292: returns list of all file categories
                   3293: 
                   3294: =cut
                   3295: 
                   3296: sub filecategories {
                   3297:     return sort(keys(%category_extensions));
                   3298: }
                   3299: 
                   3300: =pod
                   3301: 
1.648     raeburn  3302: =item * &filecategorytypes() 
1.112     bowersj2 3303: 
                   3304: returns list of file types belonging to a given file
                   3305: category
                   3306: 
                   3307: =cut
                   3308: 
                   3309: sub filecategorytypes {
1.356     albertel 3310:     my ($cat) = @_;
                   3311:     return @{$category_extensions{lc($cat)}};
1.112     bowersj2 3312: }
                   3313: 
                   3314: =pod
                   3315: 
1.648     raeburn  3316: =item * &fileembstyle() 
1.112     bowersj2 3317: 
                   3318: returns embedding style for a specified file type
                   3319: 
                   3320: =cut
                   3321: 
                   3322: sub fileembstyle {
                   3323:     return $fe{lc(shift(@_))};
1.169     www      3324: }
                   3325: 
1.351     www      3326: sub filemimetype {
                   3327:     return $fm{lc(shift(@_))};
                   3328: }
                   3329: 
1.169     www      3330: 
                   3331: sub filecategoryselect {
                   3332:     my ($name,$value)=@_;
1.189     matthew  3333:     return &select_form($value,$name,
1.970     raeburn  3334:                         {'' => &mt('Any category'), map { $_,$_ } sort(keys(%category_extensions))});
1.112     bowersj2 3335: }
                   3336: 
                   3337: =pod
                   3338: 
1.648     raeburn  3339: =item * &filedescription() 
1.112     bowersj2 3340: 
                   3341: returns description for a specified file type
                   3342: 
                   3343: =cut
                   3344: 
                   3345: sub filedescription {
1.188     matthew  3346:     my $file_description = $fd{lc(shift())};
                   3347:     $file_description =~ s:([\[\]]):~$1:g;
                   3348:     return &mt($file_description);
1.112     bowersj2 3349: }
                   3350: 
                   3351: =pod
                   3352: 
1.648     raeburn  3353: =item * &filedescriptionex() 
1.112     bowersj2 3354: 
                   3355: returns description for a specified file type with
                   3356: extra formatting
                   3357: 
                   3358: =cut
                   3359: 
                   3360: sub filedescriptionex {
                   3361:     my $ex=shift;
1.188     matthew  3362:     my $file_description = $fd{lc($ex)};
                   3363:     $file_description =~ s:([\[\]]):~$1:g;
                   3364:     return '.'.$ex.' '.&mt($file_description);
1.112     bowersj2 3365: }
                   3366: 
                   3367: # End of .tab access
                   3368: =pod
                   3369: 
                   3370: =back
                   3371: 
                   3372: =cut
                   3373: 
                   3374: # ------------------------------------------------------------------ File Types
                   3375: sub fileextensions {
                   3376:     return sort(keys(%fe));
                   3377: }
                   3378: 
1.97      www      3379: # ----------------------------------------------------------- Display Languages
                   3380: # returns a hash with all desired display languages
                   3381: #
                   3382: 
                   3383: sub display_languages {
                   3384:     my %languages=();
1.695     raeburn  3385:     foreach my $lang (&Apache::lonlocal::preferred_languages()) {
1.356     albertel 3386: 	$languages{$lang}=1;
1.97      www      3387:     }
                   3388:     &get_unprocessed_cgi($ENV{'QUERY_STRING'},['displaylanguage']);
1.258     albertel 3389:     if ($env{'form.displaylanguage'}) {
1.356     albertel 3390: 	foreach my $lang (split(/\s*(\,|\;|\:)\s*/,$env{'form.displaylanguage'})) {
                   3391: 	    $languages{$lang}=1;
1.97      www      3392:         }
                   3393:     }
                   3394:     return %languages;
1.14      harris41 3395: }
                   3396: 
1.582     albertel 3397: sub languages {
                   3398:     my ($possible_langs) = @_;
1.695     raeburn  3399:     my @preferred_langs = &Apache::lonlocal::preferred_languages();
1.582     albertel 3400:     if (!ref($possible_langs)) {
                   3401: 	if( wantarray ) {
                   3402: 	    return @preferred_langs;
                   3403: 	} else {
                   3404: 	    return $preferred_langs[0];
                   3405: 	}
                   3406:     }
                   3407:     my %possibilities = map { $_ => 1 } (@$possible_langs);
                   3408:     my @preferred_possibilities;
                   3409:     foreach my $preferred_lang (@preferred_langs) {
                   3410: 	if (exists($possibilities{$preferred_lang})) {
                   3411: 	    push(@preferred_possibilities, $preferred_lang);
                   3412: 	}
                   3413:     }
                   3414:     if( wantarray ) {
                   3415: 	return @preferred_possibilities;
                   3416:     }
                   3417:     return $preferred_possibilities[0];
                   3418: }
                   3419: 
1.742     raeburn  3420: sub user_lang {
                   3421:     my ($touname,$toudom,$fromcid) = @_;
                   3422:     my @userlangs;
                   3423:     if (($fromcid ne '') && ($env{'course.'.$fromcid.'.languages'} ne '')) {
                   3424:         @userlangs=(@userlangs,split(/\s*(\,|\;|\:)\s*/,
                   3425:                     $env{'course.'.$fromcid.'.languages'}));
                   3426:     } else {
                   3427:         my %langhash = &getlangs($touname,$toudom);
                   3428:         if ($langhash{'languages'} ne '') {
                   3429:             @userlangs = split(/\s*(\,|\;|\:)\s*/,$langhash{'languages'});
                   3430:         } else {
                   3431:             my %domdefs = &Apache::lonnet::get_domain_defaults($toudom);
                   3432:             if ($domdefs{'lang_def'} ne '') {
                   3433:                 @userlangs = ($domdefs{'lang_def'});
                   3434:             }
                   3435:         }
                   3436:     }
                   3437:     my @languages=&Apache::lonlocal::get_genlanguages(@userlangs);
                   3438:     my $user_lh = Apache::localize->get_handle(@languages);
                   3439:     return $user_lh;
                   3440: }
                   3441: 
                   3442: 
1.112     bowersj2 3443: ###############################################################
                   3444: ##               Student Answer Attempts                     ##
                   3445: ###############################################################
                   3446: 
                   3447: =pod
                   3448: 
                   3449: =head1 Alternate Problem Views
                   3450: 
                   3451: =over 4
                   3452: 
1.648     raeburn  3453: =item * &get_previous_attempt($symb, $username, $domain, $course,
1.112     bowersj2 3454:     $getattempt, $regexp, $gradesub)
                   3455: 
                   3456: Return string with previous attempt on problem. Arguments:
                   3457: 
                   3458: =over 4
                   3459: 
                   3460: =item * $symb: Problem, including path
                   3461: 
                   3462: =item * $username: username of the desired student
                   3463: 
                   3464: =item * $domain: domain of the desired student
1.14      harris41 3465: 
1.112     bowersj2 3466: =item * $course: Course ID
1.14      harris41 3467: 
1.112     bowersj2 3468: =item * $getattempt: Leave blank for all attempts, otherwise put
                   3469:     something
1.14      harris41 3470: 
1.112     bowersj2 3471: =item * $regexp: if string matches this regexp, the string will be
                   3472:     sent to $gradesub
1.14      harris41 3473: 
1.112     bowersj2 3474: =item * $gradesub: routine that processes the string if it matches $regexp
1.14      harris41 3475: 
1.112     bowersj2 3476: =back
1.14      harris41 3477: 
1.112     bowersj2 3478: The output string is a table containing all desired attempts, if any.
1.16      harris41 3479: 
1.112     bowersj2 3480: =cut
1.1       albertel 3481: 
                   3482: sub get_previous_attempt {
1.43      ng       3483:   my ($symb,$username,$domain,$course,$getattempt,$regexp,$gradesub)=@_;
1.1       albertel 3484:   my $prevattempts='';
1.43      ng       3485:   no strict 'refs';
1.1       albertel 3486:   if ($symb) {
1.3       albertel 3487:     my (%returnhash)=
                   3488:       &Apache::lonnet::restore($symb,$course,$domain,$username);
1.1       albertel 3489:     if ($returnhash{'version'}) {
                   3490:       my %lasthash=();
                   3491:       my $version;
                   3492:       for ($version=1;$version<=$returnhash{'version'};$version++) {
1.356     albertel 3493:         foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
                   3494: 	  $lasthash{$key}=$returnhash{$version.':'.$key};
1.19      harris41 3495:         }
1.1       albertel 3496:       }
1.596     albertel 3497:       $prevattempts=&start_data_table().&start_data_table_header_row();
                   3498:       $prevattempts.='<th>'.&mt('History').'</th>';
1.978     raeburn  3499:       my (%typeparts,%lasthidden);
1.945     raeburn  3500:       my $showsurv=&Apache::lonnet::allowed('vas',$env{'request.course.id'});
1.356     albertel 3501:       foreach my $key (sort(keys(%lasthash))) {
                   3502: 	my ($ign,@parts) = split(/\./,$key);
1.41      ng       3503: 	if ($#parts > 0) {
1.31      albertel 3504: 	  my $data=$parts[-1];
1.989     raeburn  3505:           next if ($data eq 'foilorder');
1.31      albertel 3506: 	  pop(@parts);
1.1010    www      3507:           $prevattempts.='<th>'.&mt('Part ').join('.',@parts).'<br />'.$data.'&nbsp;</th>';
1.945     raeburn  3508:           if ($data eq 'type') {
                   3509:               unless ($showsurv) {
                   3510:                   my $id = join(',',@parts);
                   3511:                   $typeparts{$ign.'.'.$id} = $lasthash{$key};
1.978     raeburn  3512:                   if (($lasthash{$key} eq 'anonsurvey') || ($lasthash{$key} eq 'anonsurveycred')) {
                   3513:                       $lasthidden{$ign.'.'.$id} = 1;
                   3514:                   }
1.945     raeburn  3515:               }
1.1010    www      3516:           } 
1.31      albertel 3517: 	} else {
1.41      ng       3518: 	  if ($#parts == 0) {
                   3519: 	    $prevattempts.='<th>'.$parts[0].'</th>';
                   3520: 	  } else {
                   3521: 	    $prevattempts.='<th>'.$ign.'</th>';
                   3522: 	  }
1.31      albertel 3523: 	}
1.16      harris41 3524:       }
1.596     albertel 3525:       $prevattempts.=&end_data_table_header_row();
1.40      ng       3526:       if ($getattempt eq '') {
                   3527: 	for ($version=1;$version<=$returnhash{'version'};$version++) {
1.945     raeburn  3528:             my @hidden;
                   3529:             if (%typeparts) {
                   3530:                 foreach my $id (keys(%typeparts)) {
                   3531:                     if (($returnhash{$version.':'.$id.'.type'} eq 'anonsurvey') || ($returnhash{$version.':'.$id.'.type'} eq 'anonsurveycred')) {
                   3532:                         push(@hidden,$id);
                   3533:                     }
                   3534:                 }
                   3535:             }
                   3536:             $prevattempts.=&start_data_table_row().
                   3537:                            '<td>'.&mt('Transaction [_1]',$version).'</td>';
                   3538:             if (@hidden) {
                   3539:                 foreach my $key (sort(keys(%lasthash))) {
1.989     raeburn  3540:                     next if ($key =~ /\.foilorder$/);
1.945     raeburn  3541:                     my $hide;
                   3542:                     foreach my $id (@hidden) {
                   3543:                         if ($key =~ /^\Q$id\E/) {
                   3544:                             $hide = 1;
                   3545:                             last;
                   3546:                         }
                   3547:                     }
                   3548:                     if ($hide) {
                   3549:                         my ($id,$data) = ($key =~ /^(.+)\.([^.]+)$/);
                   3550:                         if (($data eq 'award') || ($data eq 'awarddetail')) {
                   3551:                             my $value = &format_previous_attempt_value($key,
                   3552:                                              $returnhash{$version.':'.$key});
                   3553:                             $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3554:                         } else {
                   3555:                             $prevattempts.='<td>&nbsp;</td>';
                   3556:                         }
                   3557:                     } else {
                   3558:                         if ($key =~ /\./) {
                   3559:                             my $value = &format_previous_attempt_value($key,
                   3560:                                               $returnhash{$version.':'.$key});
                   3561:                             $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3562:                         } else {
                   3563:                             $prevattempts.='<td>&nbsp;</td>';
                   3564:                         }
                   3565:                     }
                   3566:                 }
                   3567:             } else {
                   3568: 	        foreach my $key (sort(keys(%lasthash))) {
1.989     raeburn  3569:                     next if ($key =~ /\.foilorder$/);
1.945     raeburn  3570: 		    my $value = &format_previous_attempt_value($key,
                   3571: 			            $returnhash{$version.':'.$key});
                   3572: 		    $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3573: 	        }
                   3574:             }
                   3575: 	    $prevattempts.=&end_data_table_row();
1.40      ng       3576: 	 }
1.1       albertel 3577:       }
1.945     raeburn  3578:       my @currhidden = keys(%lasthidden);
1.596     albertel 3579:       $prevattempts.=&start_data_table_row().'<td>'.&mt('Current').'</td>';
1.356     albertel 3580:       foreach my $key (sort(keys(%lasthash))) {
1.989     raeburn  3581:           next if ($key =~ /\.foilorder$/);
1.945     raeburn  3582:           if (%typeparts) {
                   3583:               my $hidden;
                   3584:               foreach my $id (@currhidden) {
                   3585:                   if ($key =~ /^\Q$id\E/) {
                   3586:                       $hidden = 1;
                   3587:                       last;
                   3588:                   }
                   3589:               }
                   3590:               if ($hidden) {
                   3591:                   my ($id,$data) = ($key =~ /^(.+)\.([^.]+)$/);
                   3592:                   if (($data eq 'award') || ($data eq 'awarddetail')) {
                   3593:                       my $value = &format_previous_attempt_value($key,$lasthash{$key});
                   3594:                       if ($key =~/$regexp$/ && (defined &$gradesub)) {
                   3595:                           $value = &$gradesub($value);
                   3596:                       }
                   3597:                       $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3598:                   } else {
                   3599:                       $prevattempts.='<td>&nbsp;</td>';
                   3600:                   }
                   3601:               } else {
                   3602:                   my $value = &format_previous_attempt_value($key,$lasthash{$key});
                   3603:                   if ($key =~/$regexp$/ && (defined &$gradesub)) {
                   3604:                       $value = &$gradesub($value);
                   3605:                   }
                   3606:                   $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3607:               }
                   3608:           } else {
                   3609: 	      my $value = &format_previous_attempt_value($key,$lasthash{$key});
                   3610: 	      if ($key =~/$regexp$/ && (defined &$gradesub)) {
                   3611:                   $value = &$gradesub($value);
                   3612:               }
                   3613: 	      $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3614:           }
1.16      harris41 3615:       }
1.596     albertel 3616:       $prevattempts.= &end_data_table_row().&end_data_table();
1.1       albertel 3617:     } else {
1.596     albertel 3618:       $prevattempts=
                   3619: 	  &start_data_table().&start_data_table_row().
                   3620: 	  '<td>'.&mt('Nothing submitted - no attempts.').'</td>'.
                   3621: 	  &end_data_table_row().&end_data_table();
1.1       albertel 3622:     }
                   3623:   } else {
1.596     albertel 3624:     $prevattempts=
                   3625: 	  &start_data_table().&start_data_table_row().
                   3626: 	  '<td>'.&mt('No data.').'</td>'.
                   3627: 	  &end_data_table_row().&end_data_table();
1.1       albertel 3628:   }
1.10      albertel 3629: }
                   3630: 
1.581     albertel 3631: sub format_previous_attempt_value {
                   3632:     my ($key,$value) = @_;
1.1011    www      3633:     if (($key =~ /timestamp/) || ($key=~/duedate/)) {
1.581     albertel 3634: 	$value = &Apache::lonlocal::locallocaltime($value);
                   3635:     } elsif (ref($value) eq 'ARRAY') {
                   3636: 	$value = '('.join(', ', @{ $value }).')';
1.988     raeburn  3637:     } elsif ($key =~ /answerstring$/) {
                   3638:         my %answers = &Apache::lonnet::str2hash($value);
                   3639:         my @anskeys = sort(keys(%answers));
                   3640:         if (@anskeys == 1) {
                   3641:             my $answer = $answers{$anskeys[0]};
1.1001    raeburn  3642:             if ($answer =~ m{\0}) {
                   3643:                 $answer =~ s{\0}{,}g;
1.988     raeburn  3644:             }
                   3645:             my $tag_internal_answer_name = 'INTERNAL';
                   3646:             if ($anskeys[0] eq $tag_internal_answer_name) {
                   3647:                 $value = $answer; 
                   3648:             } else {
                   3649:                 $value = $anskeys[0].'='.$answer;
                   3650:             }
                   3651:         } else {
                   3652:             foreach my $ans (@anskeys) {
                   3653:                 my $answer = $answers{$ans};
1.1001    raeburn  3654:                 if ($answer =~ m{\0}) {
                   3655:                     $answer =~ s{\0}{,}g;
1.988     raeburn  3656:                 }
                   3657:                 $value .=  $ans.'='.$answer.'<br />';;
                   3658:             } 
                   3659:         }
1.581     albertel 3660:     } else {
                   3661: 	$value = &unescape($value);
                   3662:     }
                   3663:     return $value;
                   3664: }
                   3665: 
                   3666: 
1.107     albertel 3667: sub relative_to_absolute {
                   3668:     my ($url,$output)=@_;
                   3669:     my $parser=HTML::TokeParser->new(\$output);
                   3670:     my $token;
                   3671:     my $thisdir=$url;
                   3672:     my @rlinks=();
                   3673:     while ($token=$parser->get_token) {
                   3674: 	if ($token->[0] eq 'S') {
                   3675: 	    if ($token->[1] eq 'a') {
                   3676: 		if ($token->[2]->{'href'}) {
                   3677: 		    $rlinks[$#rlinks+1]=$token->[2]->{'href'};
                   3678: 		}
                   3679: 	    } elsif ($token->[1] eq 'img' || $token->[1] eq 'embed' ) {
                   3680: 		$rlinks[$#rlinks+1]=$token->[2]->{'src'};
                   3681: 	    } elsif ($token->[1] eq 'base') {
                   3682: 		$thisdir=$token->[2]->{'href'};
                   3683: 	    }
                   3684: 	}
                   3685:     }
                   3686:     $thisdir=~s-/[^/]*$--;
1.356     albertel 3687:     foreach my $link (@rlinks) {
1.726     raeburn  3688: 	unless (($link=~/^https?\:\/\//i) ||
1.356     albertel 3689: 		($link=~/^\//) ||
                   3690: 		($link=~/^javascript:/i) ||
                   3691: 		($link=~/^mailto:/i) ||
                   3692: 		($link=~/^\#/)) {
                   3693: 	    my $newlocation=&Apache::lonnet::hreflocation($thisdir,$link);
                   3694: 	    $output=~s/(\"|\'|\=\s*)\Q$link\E(\"|\'|\s|\>)/$1$newlocation$2/;
1.107     albertel 3695: 	}
                   3696:     }
                   3697: # -------------------------------------------------- Deal with Applet codebases
                   3698:     $output=~s/(\<applet[^\>]+)(codebase\=[^\S\>]+)*([^\>]*)\>/$1.($2?$2:' codebase="'.$thisdir.'"').$3.'>'/gei;
                   3699:     return $output;
                   3700: }
                   3701: 
1.112     bowersj2 3702: =pod
                   3703: 
1.648     raeburn  3704: =item * &get_student_view()
1.112     bowersj2 3705: 
                   3706: show a snapshot of what student was looking at
                   3707: 
                   3708: =cut
                   3709: 
1.10      albertel 3710: sub get_student_view {
1.186     albertel 3711:   my ($symb,$username,$domain,$courseid,$target,$moreenv) = @_;
1.114     www      3712:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
1.186     albertel 3713:   my (%form);
1.10      albertel 3714:   my @elements=('symb','courseid','domain','username');
                   3715:   foreach my $element (@elements) {
1.186     albertel 3716:       $form{'grade_'.$element}=eval '$'.$element #'
1.10      albertel 3717:   }
1.186     albertel 3718:   if (defined($moreenv)) {
                   3719:       %form=(%form,%{$moreenv});
                   3720:   }
1.236     albertel 3721:   if (defined($target)) { $form{'grade_target'} = $target; }
1.107     albertel 3722:   $feedurl=&Apache::lonnet::clutter($feedurl);
1.650     www      3723:   my ($userview,$response)=&Apache::lonnet::ssi_body($feedurl,%form);
1.11      albertel 3724:   $userview=~s/\<body[^\>]*\>//gi;
                   3725:   $userview=~s/\<\/body\>//gi;
                   3726:   $userview=~s/\<html\>//gi;
                   3727:   $userview=~s/\<\/html\>//gi;
                   3728:   $userview=~s/\<head\>//gi;
                   3729:   $userview=~s/\<\/head\>//gi;
                   3730:   $userview=~s/action\s*\=/would_be_action\=/gi;
1.107     albertel 3731:   $userview=&relative_to_absolute($feedurl,$userview);
1.650     www      3732:   if (wantarray) {
                   3733:      return ($userview,$response);
                   3734:   } else {
                   3735:      return $userview;
                   3736:   }
                   3737: }
                   3738: 
                   3739: sub get_student_view_with_retries {
                   3740:   my ($symb,$retries,$username,$domain,$courseid,$target,$moreenv) = @_;
                   3741: 
                   3742:     my $ok = 0;                 # True if we got a good response.
                   3743:     my $content;
                   3744:     my $response;
                   3745: 
                   3746:     # Try to get the student_view done. within the retries count:
                   3747:     
                   3748:     do {
                   3749:          ($content, $response) = &get_student_view($symb,$username,$domain,$courseid,$target,$moreenv);
                   3750:          $ok      = $response->is_success;
                   3751:          if (!$ok) {
                   3752:             &Apache::lonnet::logthis("Failed get_student_view_with_retries on $symb: ".$response->is_success.', '.$response->code.', '.$response->message);
                   3753:          }
                   3754:          $retries--;
                   3755:     } while (!$ok && ($retries > 0));
                   3756:     
                   3757:     if (!$ok) {
                   3758:        $content = '';          # On error return an empty content.
                   3759:     }
1.651     www      3760:     if (wantarray) {
                   3761:        return ($content, $response);
                   3762:     } else {
                   3763:        return $content;
                   3764:     }
1.11      albertel 3765: }
                   3766: 
1.112     bowersj2 3767: =pod
                   3768: 
1.648     raeburn  3769: =item * &get_student_answers() 
1.112     bowersj2 3770: 
                   3771: show a snapshot of how student was answering problem
                   3772: 
                   3773: =cut
                   3774: 
1.11      albertel 3775: sub get_student_answers {
1.100     sakharuk 3776:   my ($symb,$username,$domain,$courseid,%form) = @_;
1.114     www      3777:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
1.186     albertel 3778:   my (%moreenv);
1.11      albertel 3779:   my @elements=('symb','courseid','domain','username');
                   3780:   foreach my $element (@elements) {
1.186     albertel 3781:     $moreenv{'grade_'.$element}=eval '$'.$element #'
1.10      albertel 3782:   }
1.186     albertel 3783:   $moreenv{'grade_target'}='answer';
                   3784:   %moreenv=(%form,%moreenv);
1.497     raeburn  3785:   $feedurl = &Apache::lonnet::clutter($feedurl);
                   3786:   my $userview=&Apache::lonnet::ssi($feedurl,%moreenv);
1.10      albertel 3787:   return $userview;
1.1       albertel 3788: }
1.116     albertel 3789: 
                   3790: =pod
                   3791: 
                   3792: =item * &submlink()
                   3793: 
1.242     albertel 3794: Inputs: $text $uname $udom $symb $target
1.116     albertel 3795: 
                   3796: Returns: A link to grades.pm such as to see the SUBM view of a student
                   3797: 
                   3798: =cut
                   3799: 
                   3800: ###############################################
                   3801: sub submlink {
1.242     albertel 3802:     my ($text,$uname,$udom,$symb,$target)=@_;
1.116     albertel 3803:     if (!($uname && $udom)) {
                   3804: 	(my $cursymb, my $courseid,$udom,$uname)=
1.463     albertel 3805: 	    &Apache::lonnet::whichuser($symb);
1.116     albertel 3806: 	if (!$symb) { $symb=$cursymb; }
                   3807:     }
1.254     matthew  3808:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
1.369     www      3809:     $symb=&escape($symb);
1.960     bisitz   3810:     if ($target) { $target=" target=\"$target\""; }
                   3811:     return
                   3812:         '<a href="/adm/grades?command=submission'.
                   3813:         '&amp;symb='.$symb.
                   3814:         '&amp;student='.$uname.
                   3815:         '&amp;userdom='.$udom.'"'.
                   3816:         $target.'>'.$text.'</a>';
1.242     albertel 3817: }
                   3818: ##############################################
                   3819: 
                   3820: =pod
                   3821: 
                   3822: =item * &pgrdlink()
                   3823: 
                   3824: Inputs: $text $uname $udom $symb $target
                   3825: 
                   3826: Returns: A link to grades.pm such as to see the PGRD view of a student
                   3827: 
                   3828: =cut
                   3829: 
                   3830: ###############################################
                   3831: sub pgrdlink {
                   3832:     my $link=&submlink(@_);
                   3833:     $link=~s/(&command=submission)/$1&showgrading=yes/;
                   3834:     return $link;
                   3835: }
                   3836: ##############################################
                   3837: 
                   3838: =pod
                   3839: 
                   3840: =item * &pprmlink()
                   3841: 
                   3842: Inputs: $text $uname $udom $symb $target
                   3843: 
                   3844: Returns: A link to parmset.pm such as to see the PPRM view of a
1.283     albertel 3845: student and a specific resource
1.242     albertel 3846: 
                   3847: =cut
                   3848: 
                   3849: ###############################################
                   3850: sub pprmlink {
                   3851:     my ($text,$uname,$udom,$symb,$target)=@_;
                   3852:     if (!($uname && $udom)) {
                   3853: 	(my $cursymb, my $courseid,$udom,$uname)=
1.463     albertel 3854: 	    &Apache::lonnet::whichuser($symb);
1.242     albertel 3855: 	if (!$symb) { $symb=$cursymb; }
                   3856:     }
1.254     matthew  3857:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
1.369     www      3858:     $symb=&escape($symb);
1.242     albertel 3859:     if ($target) { $target="target=\"$target\""; }
1.595     albertel 3860:     return '<a href="/adm/parmset?command=set&amp;'.
                   3861: 	'symb='.$symb.'&amp;uname='.$uname.
                   3862: 	'&amp;udom='.$udom.'" '.$target.'>'.$text.'</a>';
1.116     albertel 3863: }
                   3864: ##############################################
1.37      matthew  3865: 
1.112     bowersj2 3866: =pod
                   3867: 
                   3868: =back
                   3869: 
                   3870: =cut
                   3871: 
1.37      matthew  3872: ###############################################
1.51      www      3873: 
                   3874: 
                   3875: sub timehash {
1.687     raeburn  3876:     my ($thistime) = @_;
                   3877:     my $timezone = &Apache::lonlocal::gettimezone();
                   3878:     my $dt = DateTime->from_epoch(epoch => $thistime)
                   3879:                      ->set_time_zone($timezone);
                   3880:     my $wday = $dt->day_of_week();
                   3881:     if ($wday == 7) { $wday = 0; }
                   3882:     return ( 'second' => $dt->second(),
                   3883:              'minute' => $dt->minute(),
                   3884:              'hour'   => $dt->hour(),
                   3885:              'day'     => $dt->day_of_month(),
                   3886:              'month'   => $dt->month(),
                   3887:              'year'    => $dt->year(),
                   3888:              'weekday' => $wday,
                   3889:              'dayyear' => $dt->day_of_year(),
                   3890:              'dlsav'   => $dt->is_dst() );
1.51      www      3891: }
                   3892: 
1.370     www      3893: sub utc_string {
                   3894:     my ($date)=@_;
1.371     www      3895:     return strftime("%Y%m%dT%H%M%SZ",gmtime($date));
1.370     www      3896: }
                   3897: 
1.51      www      3898: sub maketime {
                   3899:     my %th=@_;
1.687     raeburn  3900:     my ($epoch_time,$timezone,$dt);
                   3901:     $timezone = &Apache::lonlocal::gettimezone();
                   3902:     eval {
                   3903:         $dt = DateTime->new( year   => $th{'year'},
                   3904:                              month  => $th{'month'},
                   3905:                              day    => $th{'day'},
                   3906:                              hour   => $th{'hour'},
                   3907:                              minute => $th{'minute'},
                   3908:                              second => $th{'second'},
                   3909:                              time_zone => $timezone,
                   3910:                          );
                   3911:     };
                   3912:     if (!$@) {
                   3913:         $epoch_time = $dt->epoch;
                   3914:         if ($epoch_time) {
                   3915:             return $epoch_time;
                   3916:         }
                   3917:     }
1.51      www      3918:     return POSIX::mktime(
                   3919:         ($th{'seconds'},$th{'minutes'},$th{'hours'},
1.210     www      3920:          $th{'day'},$th{'month'}-1,$th{'year'}-1900,0,0,-1));
1.70      www      3921: }
                   3922: 
                   3923: #########################################
1.51      www      3924: 
                   3925: sub findallcourses {
1.482     raeburn  3926:     my ($roles,$uname,$udom) = @_;
1.355     albertel 3927:     my %roles;
                   3928:     if (ref($roles)) { %roles = map { $_ => 1 } @{$roles}; }
1.348     albertel 3929:     my %courses;
1.51      www      3930:     my $now=time;
1.482     raeburn  3931:     if (!defined($uname)) {
                   3932:         $uname = $env{'user.name'};
                   3933:     }
                   3934:     if (!defined($udom)) {
                   3935:         $udom = $env{'user.domain'};
                   3936:     }
                   3937:     if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
1.982     raeburn  3938:         my $extra = &Apache::lonnet::freeze_escape({'skipcheck' => 1});
                   3939:         my %roleshash = &Apache::lonnet::dump('roles',$udom,$uname,'.',undef,
                   3940:                                               $extra);
1.482     raeburn  3941:         if (!%roles) {
                   3942:             %roles = (
                   3943:                        cc => 1,
1.907     raeburn  3944:                        co => 1,
1.482     raeburn  3945:                        in => 1,
                   3946:                        ep => 1,
                   3947:                        ta => 1,
                   3948:                        cr => 1,
                   3949:                        st => 1,
                   3950:              );
                   3951:         }
                   3952:         foreach my $entry (keys(%roleshash)) {
                   3953:             my ($trole,$tend,$tstart) = split(/_/,$roleshash{$entry});
                   3954:             if ($trole =~ /^cr/) { 
                   3955:                 next if (!exists($roles{$trole}) && !exists($roles{'cr'}));
                   3956:             } else {
                   3957:                 next if (!exists($roles{$trole}));
                   3958:             }
                   3959:             if ($tend) {
                   3960:                 next if ($tend < $now);
                   3961:             }
                   3962:             if ($tstart) {
                   3963:                 next if ($tstart > $now);
                   3964:             }
                   3965:             my ($cdom,$cnum,$sec,$cnumpart,$secpart,$role,$realsec);
                   3966:             (undef,$cdom,$cnumpart,$secpart) = split(/\//,$entry);
                   3967:             if ($secpart eq '') {
                   3968:                 ($cnum,$role) = split(/_/,$cnumpart); 
                   3969:                 $sec = 'none';
                   3970:                 $realsec = '';
                   3971:             } else {
                   3972:                 $cnum = $cnumpart;
                   3973:                 ($sec,$role) = split(/_/,$secpart);
                   3974:                 $realsec = $sec;
1.490     raeburn  3975:             }
1.482     raeburn  3976:             $courses{$cdom.'_'.$cnum}{$sec} = $trole.'/'.$cdom.'/'.$cnum.'/'.$realsec;
                   3977:         }
                   3978:     } else {
                   3979:         foreach my $key (keys(%env)) {
1.483     albertel 3980: 	    if ( $key=~m{^user\.role\.(\w+)\./($match_domain)/($match_courseid)/?(\w*)$} ||
                   3981:                  $key=~m{^user\.role\.(cr/$match_domain/$match_username/\w+)\./($match_domain)/($match_courseid)/?(\w*)$}) {
1.482     raeburn  3982: 	        my ($role,$cdom,$cnum,$sec) = ($1,$2,$3,$4);
                   3983: 	        next if ($role eq 'ca' || $role eq 'aa');
                   3984: 	        next if (%roles && !exists($roles{$role}));
                   3985: 	        my ($starttime,$endtime)=split(/\./,$env{$key});
                   3986:                 my $active=1;
                   3987:                 if ($starttime) {
                   3988: 		    if ($now<$starttime) { $active=0; }
                   3989:                 }
                   3990:                 if ($endtime) {
                   3991:                     if ($now>$endtime) { $active=0; }
                   3992:                 }
                   3993:                 if ($active) {
                   3994:                     if ($sec eq '') {
                   3995:                         $sec = 'none';
                   3996:                     }
                   3997:                     $courses{$cdom.'_'.$cnum}{$sec} = 
                   3998:                                      $role.'/'.$cdom.'/'.$cnum.'/'.$sec;
1.474     raeburn  3999:                 }
                   4000:             }
1.51      www      4001:         }
                   4002:     }
1.474     raeburn  4003:     return %courses;
1.51      www      4004: }
1.37      matthew  4005: 
1.54      www      4006: ###############################################
1.474     raeburn  4007: 
                   4008: sub blockcheck {
1.482     raeburn  4009:     my ($setters,$activity,$uname,$udom) = @_;
1.490     raeburn  4010: 
                   4011:     if (!defined($udom)) {
                   4012:         $udom = $env{'user.domain'};
                   4013:     }
                   4014:     if (!defined($uname)) {
                   4015:         $uname = $env{'user.name'};
                   4016:     }
                   4017: 
                   4018:     # If uname and udom are for a course, check for blocks in the course.
                   4019: 
                   4020:     if (&Apache::lonnet::is_course($udom,$uname)) {
                   4021:         my %records = &Apache::lonnet::dump('comm_block',$udom,$uname);
1.502     raeburn  4022:         my ($startblock,$endblock)=&get_blocks($setters,$activity,$udom,$uname);
1.490     raeburn  4023:         return ($startblock,$endblock);
                   4024:     }
1.474     raeburn  4025: 
1.502     raeburn  4026:     my $startblock = 0;
                   4027:     my $endblock = 0;
1.482     raeburn  4028:     my %live_courses = &findallcourses(undef,$uname,$udom);
1.474     raeburn  4029: 
1.490     raeburn  4030:     # If uname is for a user, and activity is course-specific, i.e.,
                   4031:     # boards, chat or groups, check for blocking in current course only.
1.474     raeburn  4032: 
1.490     raeburn  4033:     if (($activity eq 'boards' || $activity eq 'chat' ||
                   4034:          $activity eq 'groups') && ($env{'request.course.id'})) {
                   4035:         foreach my $key (keys(%live_courses)) {
                   4036:             if ($key ne $env{'request.course.id'}) {
                   4037:                 delete($live_courses{$key});
                   4038:             }
                   4039:         }
                   4040:     }
                   4041: 
                   4042:     my $otheruser = 0;
                   4043:     my %own_courses;
                   4044:     if ((($uname ne $env{'user.name'})) || ($udom ne $env{'user.domain'})) {
                   4045:         # Resource belongs to user other than current user.
                   4046:         $otheruser = 1;
                   4047:         # Gather courses for current user
                   4048:         %own_courses = 
                   4049:             &findallcourses(undef,$env{'user.name'},$env{'user.domain'});
                   4050:     }
                   4051: 
                   4052:     # Gather active course roles - course coordinator, instructor, 
                   4053:     # exam proctor, ta, student, or custom role.
1.474     raeburn  4054: 
                   4055:     foreach my $course (keys(%live_courses)) {
1.482     raeburn  4056:         my ($cdom,$cnum);
                   4057:         if ((defined($env{'course.'.$course.'.domain'})) && (defined($env{'course.'.$course.'.num'}))) {
                   4058:             $cdom = $env{'course.'.$course.'.domain'};
                   4059:             $cnum = $env{'course.'.$course.'.num'};
                   4060:         } else {
1.490     raeburn  4061:             ($cdom,$cnum) = split(/_/,$course); 
1.482     raeburn  4062:         }
                   4063:         my $no_ownblock = 0;
                   4064:         my $no_userblock = 0;
1.533     raeburn  4065:         if ($otheruser && $activity ne 'com') {
1.490     raeburn  4066:             # Check if current user has 'evb' priv for this
                   4067:             if (defined($own_courses{$course})) {
                   4068:                 foreach my $sec (keys(%{$own_courses{$course}})) {
                   4069:                     my $checkrole = 'cm./'.$cdom.'/'.$cnum;
                   4070:                     if ($sec ne 'none') {
                   4071:                         $checkrole .= '/'.$sec;
                   4072:                     }
                   4073:                     if (&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) {
                   4074:                         $no_ownblock = 1;
                   4075:                         last;
                   4076:                     }
                   4077:                 }
                   4078:             }
                   4079:             # if they have 'evb' priv and are currently not playing student
                   4080:             next if (($no_ownblock) &&
                   4081:                  ($env{'request.role'} !~ m{^st\./$cdom/$cnum}));
                   4082:         }
1.474     raeburn  4083:         foreach my $sec (keys(%{$live_courses{$course}})) {
1.482     raeburn  4084:             my $checkrole = 'cm./'.$cdom.'/'.$cnum;
1.474     raeburn  4085:             if ($sec ne 'none') {
1.482     raeburn  4086:                 $checkrole .= '/'.$sec;
1.474     raeburn  4087:             }
1.490     raeburn  4088:             if ($otheruser) {
                   4089:                 # Resource belongs to user other than current user.
                   4090:                 # Assemble privs for that user, and check for 'evb' priv.
1.482     raeburn  4091:                 my ($trole,$tdom,$tnum,$tsec);
                   4092:                 my $entry = $live_courses{$course}{$sec};
                   4093:                 if ($entry =~ /^cr/) {
                   4094:                     ($trole,$tdom,$tnum,$tsec) = 
                   4095:                       ($entry =~ m|^(cr/$match_domain/$match_username/\w+)\./($match_domain)/($match_username)/?(\w*)$|);
                   4096:                 } else {
                   4097:                     ($trole,$tdom,$tnum,$tsec) = split(/\//,$entry);
                   4098:                 }
                   4099:                 my ($spec,$area,$trest,%allroles,%userroles);
                   4100:                 $area = '/'.$tdom.'/'.$tnum;
                   4101:                 $trest = $tnum;
                   4102:                 if ($tsec ne '') {
                   4103:                     $area .= '/'.$tsec;
                   4104:                     $trest .= '/'.$tsec;
                   4105:                 }
                   4106:                 $spec = $trole.'.'.$area;
                   4107:                 if ($trole =~ /^cr/) {
                   4108:                     &Apache::lonnet::custom_roleprivs(\%allroles,$trole,
                   4109:                                                       $tdom,$spec,$trest,$area);
                   4110:                 } else {
                   4111:                     &Apache::lonnet::standard_roleprivs(\%allroles,$trole,
                   4112:                                                        $tdom,$spec,$trest,$area);
                   4113:                 }
                   4114:                 my ($author,$adv) = &Apache::lonnet::set_userprivs(\%userroles,\%allroles);
1.486     raeburn  4115:                 if ($userroles{'user.priv.'.$checkrole} =~ /evb\&([^\:]*)/) {
                   4116:                     if ($1) {
                   4117:                         $no_userblock = 1;
                   4118:                         last;
                   4119:                     }
                   4120:                 }
1.490     raeburn  4121:             } else {
                   4122:                 # Resource belongs to current user
                   4123:                 # Check for 'evb' priv via lonnet::allowed().
1.482     raeburn  4124:                 if (&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) {
                   4125:                     $no_ownblock = 1;
                   4126:                     last;
                   4127:                 }
1.474     raeburn  4128:             }
                   4129:         }
                   4130:         # if they have the evb priv and are currently not playing student
1.482     raeburn  4131:         next if (($no_ownblock) &&
1.491     albertel 4132:                  ($env{'request.role'} !~ m{^st\./\Q$cdom\E/\Q$cnum\E}));
1.482     raeburn  4133:         next if ($no_userblock);
1.474     raeburn  4134: 
1.866     kalberla 4135:         # Retrieve blocking times and identity of locker for course
1.490     raeburn  4136:         # of specified user, unless user has 'evb' privilege.
1.502     raeburn  4137:         
                   4138:         my ($start,$end)=&get_blocks($setters,$activity,$cdom,$cnum);
                   4139:         if (($start != 0) && 
                   4140:             (($startblock == 0) || ($startblock > $start))) {
                   4141:             $startblock = $start;
                   4142:         }
                   4143:         if (($end != 0)  &&
                   4144:             (($endblock == 0) || ($endblock < $end))) {
                   4145:             $endblock = $end;
                   4146:         }
1.490     raeburn  4147:     }
                   4148:     return ($startblock,$endblock);
                   4149: }
                   4150: 
                   4151: sub get_blocks {
                   4152:     my ($setters,$activity,$cdom,$cnum) = @_;
                   4153:     my $startblock = 0;
                   4154:     my $endblock = 0;
                   4155:     my $course = $cdom.'_'.$cnum;
                   4156:     $setters->{$course} = {};
                   4157:     $setters->{$course}{'staff'} = [];
                   4158:     $setters->{$course}{'times'} = [];
                   4159:     my %records = &Apache::lonnet::dump('comm_block',$cdom,$cnum);
                   4160:     foreach my $record (keys(%records)) {
                   4161:         my ($start,$end) = ($record =~ m/^(\d+)____(\d+)$/);
                   4162:         if ($start <= time && $end >= time) {
                   4163:             my ($staff_name,$staff_dom,$title,$blocks) =
                   4164:                 &parse_block_record($records{$record});
                   4165:             if ($blocks->{$activity} eq 'on') {
                   4166:                 push(@{$$setters{$course}{'staff'}},[$staff_name,$staff_dom]);
                   4167:                 push(@{$$setters{$course}{'times'}}, [$start,$end]);
1.491     albertel 4168:                 if ( ($startblock == 0) || ($startblock > $start) ) {
                   4169:                     $startblock = $start;
1.490     raeburn  4170:                 }
1.491     albertel 4171:                 if ( ($endblock == 0) || ($endblock < $end) ) {
                   4172:                     $endblock = $end;
1.474     raeburn  4173:                 }
                   4174:             }
                   4175:         }
                   4176:     }
                   4177:     return ($startblock,$endblock);
                   4178: }
                   4179: 
                   4180: sub parse_block_record {
                   4181:     my ($record) = @_;
                   4182:     my ($setuname,$setudom,$title,$blocks);
                   4183:     if (ref($record) eq 'HASH') {
                   4184:         ($setuname,$setudom) = split(/:/,$record->{'setter'});
                   4185:         $title = &unescape($record->{'event'});
                   4186:         $blocks = $record->{'blocks'};
                   4187:     } else {
                   4188:         my @data = split(/:/,$record,3);
                   4189:         if (scalar(@data) eq 2) {
                   4190:             $title = $data[1];
                   4191:             ($setuname,$setudom) = split(/@/,$data[0]);
                   4192:         } else {
                   4193:             ($setuname,$setudom,$title) = @data;
                   4194:         }
                   4195:         $blocks = { 'com' => 'on' };
                   4196:     }
                   4197:     return ($setuname,$setudom,$title,$blocks);
                   4198: }
                   4199: 
1.854     kalberla 4200: sub blocking_status {
                   4201:   my ($activity,$uname,$udom) = @_;
1.867     kalberla 4202:   my %setters;
1.890     droeschl 4203: 
                   4204:   # check for active blocking
1.867     kalberla 4205:   my ($startblock,$endblock)=&blockcheck(\%setters,$activity,$uname,$udom);
1.854     kalberla 4206: 
1.890     droeschl 4207:   my $blocked = $startblock && $endblock ? 1 : 0;
                   4208: 
                   4209:   # caller just wants to know whether a block is active
                   4210:   if (!wantarray) { return $blocked; }
                   4211: 
                   4212:   # build a link to a popup window containing the details
                   4213:   my $querystring  = "?activity=$activity";
                   4214:   # $uname and $udom decide whose portfolio the user is trying to look at
                   4215:      $querystring .= "&amp;udom=$udom"      if $udom;
                   4216:      $querystring .= "&amp;uname=$uname"    if $uname;
                   4217: 
                   4218:   my $output .= <<'END_MYBLOCK';
1.854     kalberla 4219:     function openWindow(url, wdwName, w, h, toolbar,scrollbar) {
                   4220:         var options = "width=" + w + ",height=" + h + ",";
                   4221:         options += "resizable=yes,scrollbars="+scrollbar+",status=no,";
                   4222:         options += "menubar=no,toolbar="+toolbar+",location=no,directories=no";
                   4223:         var newWin = window.open(url, wdwName, options);
                   4224:         newWin.focus();
                   4225:     }
1.890     droeschl 4226: END_MYBLOCK
1.854     kalberla 4227: 
1.890     droeschl 4228:   $output = Apache::lonhtmlcommon::scripttag($output);
                   4229:   
1.854     kalberla 4230:   my $popupUrl = "/adm/blockingstatus/$querystring";
1.890     droeschl 4231:   my $text = mt('Communication Blocked');
                   4232: 
1.867     kalberla 4233:   $output .= <<"END_BLOCK";
                   4234: <div class='LC_comblock'>
1.869     kalberla 4235:   <a onclick='openWindow("$popupUrl","Blocking Table",600,300,"no","no");return false;' href='/adm/blockingstatus/$querystring'
1.890     droeschl 4236:   title='$text'>
                   4237:   <img class='LC_noBorder LC_middle' title='$text' src='/res/adm/pages/comblock.png' alt='$text'/></a>
1.869     kalberla 4238:   <a onclick='openWindow("$popupUrl","Blocking Table",600,300,"no","no");return false;' href='/adm/blockingstatus/$querystring' 
1.890     droeschl 4239:   title='$text'>$text</a>
1.867     kalberla 4240: </div>
                   4241: 
                   4242: END_BLOCK
1.474     raeburn  4243: 
1.854     kalberla 4244:   return ($blocked, $output);
                   4245: }
1.490     raeburn  4246: 
1.60      matthew  4247: ###############################################
                   4248: 
1.682     raeburn  4249: sub check_ip_acc {
                   4250:     my ($acc)=@_;
                   4251:     &Apache::lonxml::debug("acc is $acc");
                   4252:     if (!defined($acc) || $acc =~ /^\s*$/ || $acc =~/^\s*no\s*$/i) {
                   4253:         return 1;
                   4254:     }
                   4255:     my $allowed=0;
                   4256:     my $ip=$env{'request.host'} || $ENV{'REMOTE_ADDR'};
                   4257: 
                   4258:     my $name;
                   4259:     foreach my $pattern (split(',',$acc)) {
                   4260:         $pattern =~ s/^\s*//;
                   4261:         $pattern =~ s/\s*$//;
                   4262:         if ($pattern =~ /\*$/) {
                   4263:             #35.8.*
                   4264:             $pattern=~s/\*//;
                   4265:             if ($ip =~ /^\Q$pattern\E/) { $allowed=1; }
                   4266:         } elsif ($pattern =~ /(\d+\.\d+\.\d+)\.\[(\d+)-(\d+)\]$/) {
                   4267:             #35.8.3.[34-56]
                   4268:             my $low=$2;
                   4269:             my $high=$3;
                   4270:             $pattern=$1;
                   4271:             if ($ip =~ /^\Q$pattern\E/) {
                   4272:                 my $last=(split(/\./,$ip))[3];
                   4273:                 if ($last <=$high && $last >=$low) { $allowed=1; }
                   4274:             }
                   4275:         } elsif ($pattern =~ /^\*/) {
                   4276:             #*.msu.edu
                   4277:             $pattern=~s/\*//;
                   4278:             if (!defined($name)) {
                   4279:                 use Socket;
                   4280:                 my $netaddr=inet_aton($ip);
                   4281:                 ($name)=gethostbyaddr($netaddr,AF_INET);
                   4282:             }
                   4283:             if ($name =~ /\Q$pattern\E$/i) { $allowed=1; }
                   4284:         } elsif ($pattern =~ /\d+\.\d+\.\d+\.\d+/) {
                   4285:             #127.0.0.1
                   4286:             if ($ip =~ /^\Q$pattern\E/) { $allowed=1; }
                   4287:         } else {
                   4288:             #some.name.com
                   4289:             if (!defined($name)) {
                   4290:                 use Socket;
                   4291:                 my $netaddr=inet_aton($ip);
                   4292:                 ($name)=gethostbyaddr($netaddr,AF_INET);
                   4293:             }
                   4294:             if ($name =~ /\Q$pattern\E$/i) { $allowed=1; }
                   4295:         }
                   4296:         if ($allowed) { last; }
                   4297:     }
                   4298:     return $allowed;
                   4299: }
                   4300: 
                   4301: ###############################################
                   4302: 
1.60      matthew  4303: =pod
                   4304: 
1.112     bowersj2 4305: =head1 Domain Template Functions
                   4306: 
                   4307: =over 4
                   4308: 
                   4309: =item * &determinedomain()
1.60      matthew  4310: 
                   4311: Inputs: $domain (usually will be undef)
                   4312: 
1.63      www      4313: Returns: Determines which domain should be used for designs
1.60      matthew  4314: 
                   4315: =cut
1.54      www      4316: 
1.60      matthew  4317: ###############################################
1.63      www      4318: sub determinedomain {
                   4319:     my $domain=shift;
1.531     albertel 4320:     if (! $domain) {
1.60      matthew  4321:         # Determine domain if we have not been given one
1.893     raeburn  4322:         $domain = &Apache::lonnet::default_login_domain();
1.258     albertel 4323:         if ($env{'user.domain'}) { $domain=$env{'user.domain'}; }
                   4324:         if ($env{'request.role.domain'}) { 
                   4325:             $domain=$env{'request.role.domain'}; 
1.60      matthew  4326:         }
                   4327:     }
1.63      www      4328:     return $domain;
                   4329: }
                   4330: ###############################################
1.517     raeburn  4331: 
1.518     albertel 4332: sub devalidate_domconfig_cache {
                   4333:     my ($udom)=@_;
                   4334:     &Apache::lonnet::devalidate_cache_new('domainconfig',$udom);
                   4335: }
                   4336: 
                   4337: # ---------------------- Get domain configuration for a domain
                   4338: sub get_domainconf {
                   4339:     my ($udom) = @_;
                   4340:     my $cachetime=1800;
                   4341:     my ($result,$cached)=&Apache::lonnet::is_cached_new('domainconfig',$udom);
                   4342:     if (defined($cached)) { return %{$result}; }
                   4343: 
                   4344:     my %domconfig = &Apache::lonnet::get_dom('configuration',
1.948     raeburn  4345: 					     ['login','rolecolors','autoenroll'],$udom);
1.632     raeburn  4346:     my (%designhash,%legacy);
1.518     albertel 4347:     if (keys(%domconfig) > 0) {
                   4348:         if (ref($domconfig{'login'}) eq 'HASH') {
1.632     raeburn  4349:             if (keys(%{$domconfig{'login'}})) {
                   4350:                 foreach my $key (keys(%{$domconfig{'login'}})) {
1.699     raeburn  4351:                     if (ref($domconfig{'login'}{$key}) eq 'HASH') {
1.946     raeburn  4352:                         if ($key eq 'loginvia') {
                   4353:                             if (ref($domconfig{'login'}{'loginvia'}) eq 'HASH') {
1.1013    raeburn  4354:                                 foreach my $hostname (keys(%{$domconfig{'login'}{'loginvia'}})) {
1.948     raeburn  4355:                                     if (ref($domconfig{'login'}{'loginvia'}{$hostname}) eq 'HASH') {
                   4356:                                         if ($domconfig{'login'}{'loginvia'}{$hostname}{'server'}) {
                   4357:                                             my $server = $domconfig{'login'}{'loginvia'}{$hostname}{'server'};
                   4358:                                             $designhash{$udom.'.login.loginvia'} = $server;
                   4359:                                             if ($domconfig{'login'}{'loginvia'}{$hostname}{'serverpath'} eq 'custom') {
                   4360: 
                   4361:                                                 $designhash{$udom.'.login.loginvia_'.$hostname} = $server.':'.$domconfig{'login'}{'loginvia'}{$hostname}{'custompath'};
                   4362:                                             } else {
1.1013    raeburn  4363:                                                 $designhash{$udom.'.login.loginvia_'.$hostname} = $server.':'.$domconfig{'login'}{'loginvia'}{$hostname}{'serverpath'};
1.948     raeburn  4364:                                             }
                   4365:                                             if ($domconfig{'login'}{'loginvia'}{$hostname}{'exempt'}) {
                   4366:                                                 $designhash{$udom.'.login.loginvia_exempt_'.$hostname} = $domconfig{'login'}{'loginvia'}{$hostname}{'exempt'};
                   4367:                                             }
1.946     raeburn  4368:                                         }
                   4369:                                     }
                   4370:                                 }
                   4371:                             }
                   4372:                         } else {
                   4373:                             foreach my $img (keys(%{$domconfig{'login'}{$key}})) {
                   4374:                                 $designhash{$udom.'.login.'.$key.'_'.$img} = 
                   4375:                                     $domconfig{'login'}{$key}{$img};
                   4376:                             }
1.699     raeburn  4377:                         }
                   4378:                     } else {
                   4379:                         $designhash{$udom.'.login.'.$key}=$domconfig{'login'}{$key};
                   4380:                     }
1.632     raeburn  4381:                 }
                   4382:             } else {
                   4383:                 $legacy{'login'} = 1;
1.518     albertel 4384:             }
1.632     raeburn  4385:         } else {
                   4386:             $legacy{'login'} = 1;
1.518     albertel 4387:         }
                   4388:         if (ref($domconfig{'rolecolors'}) eq 'HASH') {
1.632     raeburn  4389:             if (keys(%{$domconfig{'rolecolors'}})) {
                   4390:                 foreach my $role (keys(%{$domconfig{'rolecolors'}})) {
                   4391:                     if (ref($domconfig{'rolecolors'}{$role}) eq 'HASH') {
                   4392:                         foreach my $item (keys(%{$domconfig{'rolecolors'}{$role}})) {
                   4393:                             $designhash{$udom.'.'.$role.'.'.$item}=$domconfig{'rolecolors'}{$role}{$item};
                   4394:                         }
1.518     albertel 4395:                     }
                   4396:                 }
1.632     raeburn  4397:             } else {
                   4398:                 $legacy{'rolecolors'} = 1;
1.518     albertel 4399:             }
1.632     raeburn  4400:         } else {
                   4401:             $legacy{'rolecolors'} = 1;
1.518     albertel 4402:         }
1.948     raeburn  4403:         if (ref($domconfig{'autoenroll'}) eq 'HASH') {
                   4404:             if ($domconfig{'autoenroll'}{'co-owners'}) {
                   4405:                 $designhash{$udom.'.autoassign.co-owners'}=$domconfig{'autoenroll'}{'co-owners'};
                   4406:             }
                   4407:         }
1.632     raeburn  4408:         if (keys(%legacy) > 0) {
                   4409:             my %legacyhash = &get_legacy_domconf($udom);
                   4410:             foreach my $item (keys(%legacyhash)) {
                   4411:                 if ($item =~ /^\Q$udom\E\.login/) {
                   4412:                     if ($legacy{'login'}) { 
                   4413:                         $designhash{$item} = $legacyhash{$item};
                   4414:                     }
                   4415:                 } else {
                   4416:                     if ($legacy{'rolecolors'}) {
                   4417:                         $designhash{$item} = $legacyhash{$item};
                   4418:                     }
1.518     albertel 4419:                 }
                   4420:             }
                   4421:         }
1.632     raeburn  4422:     } else {
                   4423:         %designhash = &get_legacy_domconf($udom); 
1.518     albertel 4424:     }
                   4425:     &Apache::lonnet::do_cache_new('domainconfig',$udom,\%designhash,
                   4426: 				  $cachetime);
                   4427:     return %designhash;
                   4428: }
                   4429: 
1.632     raeburn  4430: sub get_legacy_domconf {
                   4431:     my ($udom) = @_;
                   4432:     my %legacyhash;
                   4433:     my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
                   4434:     my $designfile =  $designdir.'/'.$udom.'.tab';
                   4435:     if (-e $designfile) {
                   4436:         if ( open (my $fh,"<$designfile") ) {
                   4437:             while (my $line = <$fh>) {
                   4438:                 next if ($line =~ /^\#/);
                   4439:                 chomp($line);
                   4440:                 my ($key,$val)=(split(/\=/,$line));
                   4441:                 if ($val) { $legacyhash{$udom.'.'.$key}=$val; }
                   4442:             }
                   4443:             close($fh);
                   4444:         }
                   4445:     }
1.1026    raeburn  4446:     if (-e $Apache::lonnet::perlvar{'lonDocRoot'}.'/adm/lonDomLogos/'.$udom.'.gif') {
1.632     raeburn  4447:         $legacyhash{$udom.'.login.domlogo'} = "/adm/lonDomLogos/$udom.gif";
                   4448:     }
                   4449:     return %legacyhash;
                   4450: }
                   4451: 
1.63      www      4452: =pod
                   4453: 
1.112     bowersj2 4454: =item * &domainlogo()
1.63      www      4455: 
                   4456: Inputs: $domain (usually will be undef)
                   4457: 
                   4458: Returns: A link to a domain logo, if the domain logo exists.
                   4459: If the domain logo does not exist, a description of the domain.
                   4460: 
                   4461: =cut
1.112     bowersj2 4462: 
1.63      www      4463: ###############################################
                   4464: sub domainlogo {
1.517     raeburn  4465:     my $domain = &determinedomain(shift);
1.518     albertel 4466:     my %designhash = &get_domainconf($domain);    
1.517     raeburn  4467:     # See if there is a logo
                   4468:     if ($designhash{$domain.'.login.domlogo'} ne '') {
1.519     raeburn  4469:         my $imgsrc = $designhash{$domain.'.login.domlogo'};
1.538     albertel 4470:         if ($imgsrc =~ m{^/(adm|res)/}) {
                   4471: 	    if ($imgsrc =~ m{^/res/}) {
                   4472: 		my $local_name = &Apache::lonnet::filelocation('',$imgsrc);
                   4473: 		&Apache::lonnet::repcopy($local_name);
                   4474: 	    }
                   4475: 	   $imgsrc = &lonhttpdurl($imgsrc);
1.519     raeburn  4476:         } 
                   4477:         return '<img src="'.$imgsrc.'" alt="'.$domain.'" />';
1.514     albertel 4478:     } elsif (defined(&Apache::lonnet::domain($domain,'description'))) {
                   4479:         return &Apache::lonnet::domain($domain,'description');
1.59      www      4480:     } else {
1.60      matthew  4481:         return '';
1.59      www      4482:     }
                   4483: }
1.63      www      4484: ##############################################
                   4485: 
                   4486: =pod
                   4487: 
1.112     bowersj2 4488: =item * &designparm()
1.63      www      4489: 
                   4490: Inputs: $which parameter; $domain (usually will be undef)
                   4491: 
                   4492: Returns: value of designparamter $which
                   4493: 
                   4494: =cut
1.112     bowersj2 4495: 
1.397     albertel 4496: 
1.400     albertel 4497: ##############################################
1.397     albertel 4498: sub designparm {
                   4499:     my ($which,$domain)=@_;
                   4500:     if (exists($env{'environment.color.'.$which})) {
1.817     bisitz   4501:         return $env{'environment.color.'.$which};
1.96      www      4502:     }
1.63      www      4503:     $domain=&determinedomain($domain);
1.1016    raeburn  4504:     my %domdesign;
                   4505:     unless ($domain eq 'public') {
                   4506:         %domdesign = &get_domainconf($domain);
                   4507:     }
1.520     raeburn  4508:     my $output;
1.517     raeburn  4509:     if ($domdesign{$domain.'.'.$which} ne '') {
1.817     bisitz   4510:         $output = $domdesign{$domain.'.'.$which};
1.63      www      4511:     } else {
1.520     raeburn  4512:         $output = $defaultdesign{$which};
                   4513:     }
                   4514:     if (($which =~ /^(student|coordinator|author|admin)\.img$/) ||
1.635     raeburn  4515:         ($which =~ /login\.(img|logo|domlogo|login)/)) {
1.538     albertel 4516:         if ($output =~ m{^/(adm|res)/}) {
1.817     bisitz   4517:             if ($output =~ m{^/res/}) {
                   4518:                 my $local_name = &Apache::lonnet::filelocation('',$output);
                   4519:                 &Apache::lonnet::repcopy($local_name);
                   4520:             }
1.520     raeburn  4521:             $output = &lonhttpdurl($output);
                   4522:         }
1.63      www      4523:     }
1.520     raeburn  4524:     return $output;
1.63      www      4525: }
1.59      www      4526: 
1.822     bisitz   4527: ##############################################
                   4528: =pod
                   4529: 
1.832     bisitz   4530: =item * &authorspace()
                   4531: 
1.1028    raeburn  4532: Inputs: $url (usually will be undef).
1.832     bisitz   4533: 
1.1028    raeburn  4534: Returns: Path to Construction Space containing the resource or 
                   4535:          directory being viewed (or for which action is being taken). 
                   4536:          If $url is provided, and begins /priv/<domain>/<uname>
                   4537:          the path will be that portion of the $context argument.
                   4538:          Otherwise the path will be for the author space of the current
                   4539:          user when the current role is author, or for that of the 
                   4540:          co-author/assistant co-author space when the current role 
                   4541:          is co-author or assistant co-author.
1.832     bisitz   4542: 
                   4543: =cut
                   4544: 
                   4545: sub authorspace {
1.1028    raeburn  4546:     my ($url) = @_;
                   4547:     if ($url ne '') {
                   4548:         if ($url =~ m{^(/priv/$match_domain/$match_username/)}) {
                   4549:            return $1;
                   4550:         }
                   4551:     }
1.832     bisitz   4552:     my $caname = '';
1.1024    www      4553:     my $cadom = '';
1.1028    raeburn  4554:     if ($env{'request.role'} =~ /^(?:ca|aa)/) {
1.1024    www      4555:         ($cadom,$caname) =
1.832     bisitz   4556:             ($env{'request.role'}=~/($match_domain)\/($match_username)$/);
1.1028    raeburn  4557:     } elsif ($env{'request.role'} =~ m{^au\./($match_domain)/}) {
1.832     bisitz   4558:         $caname = $env{'user.name'};
1.1024    www      4559:         $cadom = $env{'user.domain'};
1.832     bisitz   4560:     }
1.1028    raeburn  4561:     if (($caname ne '') && ($cadom ne '')) {
                   4562:         return "/priv/$cadom/$caname/";
                   4563:     }
                   4564:     return;
1.832     bisitz   4565: }
                   4566: 
                   4567: ##############################################
                   4568: =pod
                   4569: 
1.822     bisitz   4570: =item * &head_subbox()
                   4571: 
                   4572: Inputs: $content (contains HTML code with page functions, etc.)
                   4573: 
                   4574: Returns: HTML div with $content
                   4575:          To be included in page header
                   4576: 
                   4577: =cut
                   4578: 
                   4579: sub head_subbox {
                   4580:     my ($content)=@_;
                   4581:     my $output =
1.993     raeburn  4582:         '<div class="LC_head_subbox">'
1.822     bisitz   4583:        .$content
                   4584:        .'</div>'
                   4585: }
                   4586: 
                   4587: ##############################################
                   4588: =pod
                   4589: 
                   4590: =item * &CSTR_pageheader()
                   4591: 
1.1026    raeburn  4592: Input: (optional) filename from which breadcrumb trail is built.
                   4593:        In most cases no input as needed, as $env{'request.filename'}
                   4594:        is appropriate for use in building the breadcrumb trail.
1.822     bisitz   4595: 
                   4596: Returns: HTML div with CSTR path and recent box
                   4597:          To be included on Construction Space pages
                   4598: 
                   4599: =cut
                   4600: 
                   4601: sub CSTR_pageheader {
1.1026    raeburn  4602:     my ($trailfile) = @_;
                   4603:     if ($trailfile eq '') {
                   4604:         $trailfile = $env{'request.filename'};
                   4605:     }
                   4606: 
                   4607: # this is for resources; directories have customtitle, and crumbs
                   4608: # and select recent are created in lonpubdir.pm
                   4609: 
                   4610:     my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
1.1022    www      4611:     my ($udom,$uname,$thisdisfn)=
1.1026    raeburn  4612:         ($trailfile =~ m{^\Q$londocroot\E/priv/([^/]+)/([^/]+)/(.*)$});
                   4613:     my $formaction = "/priv/$udom/$uname/$thisdisfn";
                   4614:     $formaction =~ s{/+}{/}g;
1.822     bisitz   4615: 
                   4616:     my $parentpath = '';
                   4617:     my $lastitem = '';
                   4618:     if ($thisdisfn =~ m-(.+/)([^/]*)$-) {
                   4619:         $parentpath = $1;
                   4620:         $lastitem = $2;
                   4621:     } else {
                   4622:         $lastitem = $thisdisfn;
                   4623:     }
1.921     bisitz   4624: 
                   4625:     my $output =
1.822     bisitz   4626:          '<div>'
                   4627:         .&Apache::loncommon::help_open_menu('','',3,'Authoring') #FIXME: Broken? Where is it?
                   4628:         .'<b>'.&mt('Construction Space:').'</b> '
                   4629:         .'<form name="dirs" method="post" action="'.$formaction
1.921     bisitz   4630:         .'" target="_top">' #FIXME lonpubdir: target="_parent"
1.1024    www      4631:         .&Apache::lonhtmlcommon::crumbs($uname.'/'.$parentpath,'_top','/priv/'.$udom,undef,undef);
1.921     bisitz   4632: 
                   4633:     if ($lastitem) {
                   4634:         $output .=
                   4635:              '<span class="LC_filename">'
                   4636:             .$lastitem
                   4637:             .'</span>';
                   4638:     }
                   4639:     $output .=
                   4640:          '<br />'
1.822     bisitz   4641:         #FIXME lonpubdir: &Apache::lonhtmlcommon::crumbs($uname.$thisdisfn.'/','_top','/priv','','+1',1)."</b></tt><br />"
                   4642:         .&Apache::lonhtmlcommon::select_recent('construct','recent','this.form.action=this.form.recent.value;this.form.submit()')
                   4643:         .'</form>'
                   4644:         .&Apache::lonmenu::constspaceform()
                   4645:         .'</div>';
1.921     bisitz   4646: 
                   4647:     return $output;
1.822     bisitz   4648: }
                   4649: 
1.60      matthew  4650: ###############################################
                   4651: ###############################################
                   4652: 
                   4653: =pod
                   4654: 
1.112     bowersj2 4655: =back
                   4656: 
1.549     albertel 4657: =head1 HTML Helpers
1.112     bowersj2 4658: 
                   4659: =over 4
                   4660: 
                   4661: =item * &bodytag()
1.60      matthew  4662: 
                   4663: Returns a uniform header for LON-CAPA web pages.
                   4664: 
                   4665: Inputs: 
                   4666: 
1.112     bowersj2 4667: =over 4
                   4668: 
                   4669: =item * $title, A title to be displayed on the page.
                   4670: 
                   4671: =item * $function, the current role (can be undef).
                   4672: 
                   4673: =item * $addentries, extra parameters for the <body> tag.
                   4674: 
                   4675: =item * $bodyonly, if defined, only return the <body> tag.
                   4676: 
                   4677: =item * $domain, if defined, force a given domain.
                   4678: 
                   4679: =item * $forcereg, if page should register as content page (relevant for 
1.86      www      4680:             text interface only)
1.60      matthew  4681: 
1.814     bisitz   4682: =item * $no_nav_bar, if true, keep the 'what is this' info but remove the
                   4683:                      navigational links
1.317     albertel 4684: 
1.338     albertel 4685: =item * $bgcolor, used to override the bgcolor on a webpage to a specific value
                   4686: 
1.460     albertel 4687: =item * $args, optional argument valid values are
                   4688:             no_auto_mt_title -> prevents &mt()ing the title arg
1.562     albertel 4689:             inherit_jsmath -> when creating popup window in a page,
                   4690:                               should it have jsmath forced on by the
                   4691:                               current page
1.460     albertel 4692: 
1.112     bowersj2 4693: =back
                   4694: 
1.60      matthew  4695: Returns: A uniform header for LON-CAPA web pages.  
                   4696: If $bodyonly is nonzero, a string containing a <body> tag will be returned.
                   4697: If $bodyonly is undef or zero, an html string containing a <body> tag and 
                   4698: other decorations will be returned.
                   4699: 
                   4700: =cut
                   4701: 
1.54      www      4702: sub bodytag {
1.831     bisitz   4703:     my ($title,$function,$addentries,$bodyonly,$domain,$forcereg,
1.962     droeschl 4704:         $no_nav_bar,$bgcolor,$args)=@_;
1.339     albertel 4705: 
1.954     raeburn  4706:     my $public;
                   4707:     if ((($env{'user.name'} eq 'public') && ($env{'user.domain'} eq 'public'))
                   4708:         || ($env{'user.name'} eq '') && ($env{'user.domain'} eq '')) {
                   4709:         $public = 1;
                   4710:     }
1.460     albertel 4711:     if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }
1.339     albertel 4712: 
1.183     matthew  4713:     $function = &get_users_function() if (!$function);
1.339     albertel 4714:     my $img =    &designparm($function.'.img',$domain);
                   4715:     my $font =   &designparm($function.'.font',$domain);
                   4716:     my $pgbg   = $bgcolor || &designparm($function.'.pgbg',$domain);
                   4717: 
1.803     bisitz   4718:     my %design = ( 'style'   => 'margin-top: 0',
1.535     albertel 4719: 		   'bgcolor' => $pgbg,
1.339     albertel 4720: 		   'text'    => $font,
                   4721:                    'alink'   => &designparm($function.'.alink',$domain),
                   4722: 		   'vlink'   => &designparm($function.'.vlink',$domain),
                   4723: 		   'link'    => &designparm($function.'.link',$domain),);
1.438     albertel 4724:     @design{keys(%$addentries)} = @$addentries{keys(%$addentries)}; 
1.339     albertel 4725: 
1.63      www      4726:  # role and realm
1.378     raeburn  4727:     my ($role,$realm) = split(/\./,$env{'request.role'},2);
                   4728:     if ($role  eq 'ca') {
1.479     albertel 4729:         my ($rdom,$rname) = ($realm =~ m{^/($match_domain)/($match_username)$});
1.500     albertel 4730:         $realm = &plainname($rname,$rdom);
1.378     raeburn  4731:     } 
1.55      www      4732: # realm
1.258     albertel 4733:     if ($env{'request.course.id'}) {
1.378     raeburn  4734:         if ($env{'request.role'} !~ /^cr/) {
                   4735:             $role = &Apache::lonnet::plaintext($role,&course_type());
                   4736:         }
1.898     raeburn  4737:         if ($env{'request.course.sec'}) {
                   4738:             $role .= ('&nbsp;'x2).'-&nbsp;'.&mt('section:').'&nbsp;'.$env{'request.course.sec'};
                   4739:         }   
1.359     albertel 4740: 	$realm = $env{'course.'.$env{'request.course.id'}.'.description'};
1.378     raeburn  4741:     } else {
                   4742:         $role = &Apache::lonnet::plaintext($role);
1.54      www      4743:     }
1.433     albertel 4744: 
1.359     albertel 4745:     if (!$realm) { $realm='&nbsp;'; }
1.330     albertel 4746: 
1.438     albertel 4747:     my $extra_body_attr = &make_attr_string($forcereg,\%design);
1.329     albertel 4748: 
1.101     www      4749: # construct main body tag
1.359     albertel 4750:     my $bodytag = "<body $extra_body_attr>".
1.562     albertel 4751: 	&Apache::lontexconvert::init_math_support($args->{'inherit_jsmath'});
1.252     albertel 4752: 
1.530     albertel 4753:     if ($bodyonly) {
1.60      matthew  4754:         return $bodytag;
1.798     tempelho 4755:     } 
1.359     albertel 4756: 
1.410     albertel 4757:     my $name = &plainname($env{'user.name'},$env{'user.domain'});
1.954     raeburn  4758:     if ($public) {
1.433     albertel 4759: 	undef($role);
1.434     albertel 4760:     } else {
                   4761: 	$name = &aboutmewrapper($name,$env{'user.name'},$env{'user.domain'});
1.433     albertel 4762:     }
1.359     albertel 4763:     
1.762     bisitz   4764:     my $titleinfo = '<h1>'.$title.'</h1>';
1.359     albertel 4765:     #
                   4766:     # Extra info if you are the DC
                   4767:     my $dc_info = '';
                   4768:     if ($env{'user.adv'} && exists($env{'user.role.dc./'.
                   4769:                         $env{'course.'.$env{'request.course.id'}.
                   4770:                                  '.domain'}.'/'})) {
                   4771:         my $cid = $env{'request.course.id'};
1.917     raeburn  4772:         $dc_info = $cid.' '.$env{'course.'.$cid.'.internal.coursecode'};
1.380     www      4773:         $dc_info =~ s/\s+$//;
1.359     albertel 4774:     }
                   4775: 
1.898     raeburn  4776:     $role = '<span class="LC_nobreak">('.$role.')</span>' if $role;
1.853     droeschl 4777:     &get_unprocessed_cgi($ENV{'QUERY_STRING'}, ['inhibitmenu']);
                   4778: 
1.916     droeschl 4779:         if ($no_nav_bar || $env{'form.inhibitmenu'} eq 'yes') { 
                   4780:             return $bodytag; 
                   4781:         } 
1.903     droeschl 4782: 
                   4783:         if ($env{'request.state'} eq 'construct') { $forcereg=1; }
                   4784: 
                   4785:         #    if ($env{'request.state'} eq 'construct') {
                   4786:         #        $titleinfo = &CSTR_pageheader(); #FIXME: Will be removed once all scripts have their own calls
                   4787:         #    }
                   4788: 
1.359     albertel 4789: 
                   4790: 
1.916     droeschl 4791:         if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) {
1.917     raeburn  4792:              if ($dc_info) {
                   4793:                  $dc_info = qq|<span class="LC_cusr_subheading">$dc_info</span>|;
                   4794:              }
1.916     droeschl 4795:              $bodytag .= qq|<div id="LC_nav_bar">$name $role<br />
                   4796:                 <em>$realm</em> $dc_info</div>|;
1.903     droeschl 4797:             return $bodytag;
                   4798:         }
1.894     droeschl 4799: 
1.927     raeburn  4800:         unless ($env{'request.symb'} =~ m/\.page___\d+___/) {
                   4801:             $bodytag .= qq|<div id="LC_nav_bar">$name $role</div>|;
                   4802:         }
1.916     droeschl 4803: 
1.903     droeschl 4804:         $bodytag .= Apache::lonhtmlcommon::scripttag(
                   4805:             Apache::lonmenu::utilityfunctions(), 'start');
1.816     bisitz   4806: 
1.903     droeschl 4807:         $bodytag .= Apache::lonmenu::primary_menu();
1.852     droeschl 4808: 
1.917     raeburn  4809:         if ($dc_info) {
                   4810:             $dc_info = &dc_courseid_toggle($dc_info);
                   4811:         }
                   4812:         $bodytag .= qq|<div id="LC_realm">$realm $dc_info</div>|;
1.916     droeschl 4813: 
1.903     droeschl 4814:         #don't show menus for public users
1.954     raeburn  4815:         if (!$public){
1.903     droeschl 4816:             $bodytag .= Apache::lonmenu::secondary_menu();
                   4817:             $bodytag .= Apache::lonmenu::serverform();
1.920     raeburn  4818:             $bodytag .= Apache::lonhtmlcommon::scripttag('', 'end');
                   4819:             if ($env{'request.state'} eq 'construct') {
1.962     droeschl 4820:                 $bodytag .= &Apache::lonmenu::innerregister($forcereg,
1.920     raeburn  4821:                                 $args->{'bread_crumbs'});
                   4822:             } elsif ($forcereg) { 
                   4823:                 $bodytag .= &Apache::lonmenu::innerregister($forcereg);
                   4824:             }
1.903     droeschl 4825:         }else{
                   4826:             # this is to seperate menu from content when there's no secondary
                   4827:             # menu. Especially needed for public accessible ressources.
                   4828:             $bodytag .= '<hr style="clear:both" />';
                   4829:             $bodytag .= Apache::lonhtmlcommon::scripttag('', 'end'); 
1.235     raeburn  4830:         }
1.903     droeschl 4831: 
1.235     raeburn  4832:         return $bodytag;
1.182     matthew  4833: }
                   4834: 
1.917     raeburn  4835: sub dc_courseid_toggle {
                   4836:     my ($dc_info) = @_;
1.980     raeburn  4837:     return ' <span id="dccidtext" class="LC_cusr_subheading LC_nobreak">'.
1.917     raeburn  4838:            '<a href="javascript:showCourseID();">'.
                   4839:            &mt('(More ...)').'</a></span>'.
                   4840:            '<div id="dccid" class="LC_dccid">'.$dc_info.'</div>';
                   4841: }
                   4842: 
1.330     albertel 4843: sub make_attr_string {
                   4844:     my ($register,$attr_ref) = @_;
                   4845: 
                   4846:     if ($attr_ref && !ref($attr_ref)) {
                   4847: 	die("addentries Must be a hash ref ".
                   4848: 	    join(':',caller(1))." ".
                   4849: 	    join(':',caller(0))." ");
                   4850:     }
                   4851: 
                   4852:     if ($register) {
1.339     albertel 4853: 	my ($on_load,$on_unload);
                   4854: 	foreach my $key (keys(%{$attr_ref})) {
                   4855: 	    if      (lc($key) eq 'onload') {
                   4856: 		$on_load.=$attr_ref->{$key}.';';
                   4857: 		delete($attr_ref->{$key});
                   4858: 
                   4859: 	    } elsif (lc($key) eq 'onunload') {
                   4860: 		$on_unload.=$attr_ref->{$key}.';';
                   4861: 		delete($attr_ref->{$key});
                   4862: 	    }
                   4863: 	}
1.953     droeschl 4864: 	$attr_ref->{'onload'}  = $on_load;
                   4865: 	$attr_ref->{'onunload'}= $on_unload;
1.330     albertel 4866:     }
1.339     albertel 4867: 
1.330     albertel 4868:     my $attr_string;
                   4869:     foreach my $attr (keys(%$attr_ref)) {
                   4870: 	$attr_string .= " $attr=\"".$attr_ref->{$attr}.'" ';
                   4871:     }
                   4872:     return $attr_string;
                   4873: }
                   4874: 
                   4875: 
1.182     matthew  4876: ###############################################
1.251     albertel 4877: ###############################################
                   4878: 
                   4879: =pod
                   4880: 
                   4881: =item * &endbodytag()
                   4882: 
                   4883: Returns a uniform footer for LON-CAPA web pages.
                   4884: 
1.635     raeburn  4885: Inputs: 1 - optional reference to an args hash
                   4886: If in the hash, key for noredirectlink has a value which evaluates to true,
                   4887: a 'Continue' link is not displayed if the page contains an
                   4888: internal redirect in the <head></head> section,
                   4889: i.e., $env{'internal.head.redirect'} exists   
1.251     albertel 4890: 
                   4891: =cut
                   4892: 
                   4893: sub endbodytag {
1.635     raeburn  4894:     my ($args) = @_;
1.251     albertel 4895:     my $endbodytag='</body>';
1.269     albertel 4896:     $endbodytag=&Apache::lontexconvert::jsMath_process()."\n".$endbodytag;
1.315     albertel 4897:     if ( exists( $env{'internal.head.redirect'} ) ) {
1.635     raeburn  4898:         if (!(ref($args) eq 'HASH' && $args->{'noredirectlink'})) {
                   4899: 	    $endbodytag=
                   4900: 	        "<br /><a href=\"$env{'internal.head.redirect'}\">".
                   4901: 	        &mt('Continue').'</a>'.
                   4902: 	        $endbodytag;
                   4903:         }
1.315     albertel 4904:     }
1.251     albertel 4905:     return $endbodytag;
                   4906: }
                   4907: 
1.352     albertel 4908: =pod
                   4909: 
                   4910: =item * &standard_css()
                   4911: 
                   4912: Returns a style sheet
                   4913: 
                   4914: Inputs: (all optional)
                   4915:             domain         -> force to color decorate a page for a specific
                   4916:                                domain
                   4917:             function       -> force usage of a specific rolish color scheme
                   4918:             bgcolor        -> override the default page bgcolor
                   4919: 
                   4920: =cut
                   4921: 
1.343     albertel 4922: sub standard_css {
1.345     albertel 4923:     my ($function,$domain,$bgcolor) = @_;
1.352     albertel 4924:     $function  = &get_users_function() if (!$function);
                   4925:     my $img    = &designparm($function.'.img',   $domain);
                   4926:     my $tabbg  = &designparm($function.'.tabbg', $domain);
                   4927:     my $font   = &designparm($function.'.font',  $domain);
1.801     tempelho 4928:     my $fontmenu = &designparm($function.'.fontmenu', $domain);
1.791     tempelho 4929: #second colour for later usage
1.345     albertel 4930:     my $sidebg = &designparm($function.'.sidebg',$domain);
1.382     albertel 4931:     my $pgbg_or_bgcolor =
                   4932: 	         $bgcolor ||
1.352     albertel 4933: 	         &designparm($function.'.pgbg',  $domain);
1.382     albertel 4934:     my $pgbg   = &designparm($function.'.pgbg',  $domain);
1.352     albertel 4935:     my $alink  = &designparm($function.'.alink', $domain);
                   4936:     my $vlink  = &designparm($function.'.vlink', $domain);
                   4937:     my $link   = &designparm($function.'.link',  $domain);
                   4938: 
1.602     albertel 4939:     my $sans                 = 'Verdana,Arial,Helvetica,sans-serif';
1.395     albertel 4940:     my $mono                 = 'monospace';
1.850     bisitz   4941:     my $data_table_head      = $sidebg;
                   4942:     my $data_table_light     = '#FAFAFA';
                   4943:     my $data_table_dark      = '#F0F0F0';
1.470     banghart 4944:     my $data_table_darker    = '#CCCCCC';
1.349     albertel 4945:     my $data_table_highlight = '#FFFF00';
1.352     albertel 4946:     my $mail_new             = '#FFBB77';
                   4947:     my $mail_new_hover       = '#DD9955';
                   4948:     my $mail_read            = '#BBBB77';
                   4949:     my $mail_read_hover      = '#999944';
                   4950:     my $mail_replied         = '#AAAA88';
                   4951:     my $mail_replied_hover   = '#888855';
                   4952:     my $mail_other           = '#99BBBB';
                   4953:     my $mail_other_hover     = '#669999';
1.391     albertel 4954:     my $table_header         = '#DDDDDD';
1.489     raeburn  4955:     my $feedback_link_bg     = '#BBBBBB';
1.911     bisitz   4956:     my $lg_border_color      = '#C8C8C8';
1.952     onken    4957:     my $button_hover         = '#BF2317';
1.392     albertel 4958: 
1.608     albertel 4959:     my $border = ($env{'browser.type'} eq 'explorer' ||
1.911     bisitz   4960:       $env{'browser.type'} eq 'safari'     ) ? '0 2px 0 2px'
                   4961:                                              : '0 3px 0 4px';
1.448     albertel 4962: 
1.523     albertel 4963: 
1.343     albertel 4964:     return <<END;
1.947     droeschl 4965: 
                   4966: /* needed for iframe to allow 100% height in FF */
                   4967: body, html { 
                   4968:     margin: 0;
                   4969:     padding: 0 0.5%;
                   4970:     height: 99%; /* to avoid scrollbars */
                   4971: }
                   4972: 
1.795     www      4973: body {
1.911     bisitz   4974:   font-family: $sans;
                   4975:   line-height:130%;
                   4976:   font-size:0.83em;
                   4977:   color:$font;
1.795     www      4978: }
                   4979: 
1.959     onken    4980: a:focus,
                   4981: a:focus img {
1.795     www      4982:   color: red;
1.911     bisitz   4983:   background: yellow;
1.795     www      4984: }
1.698     harmsja  4985: 
1.911     bisitz   4986: form, .inline {
                   4987:   display: inline;
1.795     www      4988: }
1.721     harmsja  4989: 
1.795     www      4990: .LC_right {
1.911     bisitz   4991:   text-align:right;
1.795     www      4992: }
                   4993: 
                   4994: .LC_middle {
1.911     bisitz   4995:   vertical-align:middle;
1.795     www      4996: }
1.721     harmsja  4997: 
1.911     bisitz   4998: .LC_400Box {
                   4999:   width:400px;
                   5000: }
1.721     harmsja  5001: 
1.947     droeschl 5002: .LC_iframecontainer {
                   5003:     width: 98%;
                   5004:     margin: 0;
                   5005:     position: fixed;
                   5006:     top: 8.5em;
                   5007:     bottom: 0;
                   5008: }
                   5009: 
                   5010: .LC_iframecontainer iframe{
                   5011:     border: none;
                   5012:     width: 100%;
                   5013:     height: 100%;
                   5014: }
                   5015: 
1.778     bisitz   5016: .LC_filename {
                   5017:   font-family: $mono;
                   5018:   white-space:pre;
1.921     bisitz   5019:   font-size: 120%;
1.778     bisitz   5020: }
                   5021: 
                   5022: .LC_fileicon {
                   5023:   border: none;
                   5024:   height: 1.3em;
                   5025:   vertical-align: text-bottom;
                   5026:   margin-right: 0.3em;
                   5027:   text-decoration:none;
                   5028: }
                   5029: 
1.1008    www      5030: .LC_setting {
                   5031:   text-decoration:underline;
                   5032: }
                   5033: 
1.350     albertel 5034: .LC_error {
                   5035:   color: red;
                   5036:   font-size: larger;
                   5037: }
1.795     www      5038: 
1.457     albertel 5039: .LC_warning,
                   5040: .LC_diff_removed {
1.733     bisitz   5041:   color: red;
1.394     albertel 5042: }
1.532     albertel 5043: 
                   5044: .LC_info,
1.457     albertel 5045: .LC_success,
                   5046: .LC_diff_added {
1.350     albertel 5047:   color: green;
                   5048: }
1.795     www      5049: 
1.802     bisitz   5050: div.LC_confirm_box {
                   5051:   background-color: #FAFAFA;
                   5052:   border: 1px solid $lg_border_color;
                   5053:   margin-right: 0;
                   5054:   padding: 5px;
                   5055: }
                   5056: 
                   5057: div.LC_confirm_box .LC_error img,
                   5058: div.LC_confirm_box .LC_success img {
                   5059:   vertical-align: middle;
                   5060: }
                   5061: 
1.440     albertel 5062: .LC_icon {
1.771     droeschl 5063:   border: none;
1.790     droeschl 5064:   vertical-align: middle;
1.771     droeschl 5065: }
                   5066: 
1.543     albertel 5067: .LC_docs_spacer {
                   5068:   width: 25px;
                   5069:   height: 1px;
1.771     droeschl 5070:   border: none;
1.543     albertel 5071: }
1.346     albertel 5072: 
1.532     albertel 5073: .LC_internal_info {
1.735     bisitz   5074:   color: #999999;
1.532     albertel 5075: }
                   5076: 
1.794     www      5077: .LC_discussion {
1.911     bisitz   5078:   background: $tabbg;
                   5079:   border: 1px solid black;
                   5080:   margin: 2px;
1.794     www      5081: }
                   5082: 
                   5083: .LC_disc_action_links_bar {
1.911     bisitz   5084:   background: $tabbg;
                   5085:   border: none;
                   5086:   margin: 4px;
1.794     www      5087: }
                   5088: 
                   5089: .LC_disc_action_left {
1.911     bisitz   5090:   text-align: left;
1.794     www      5091: }
                   5092: 
                   5093: .LC_disc_action_right {
1.911     bisitz   5094:   text-align: right;
1.794     www      5095: }
                   5096: 
                   5097: .LC_disc_new_item {
1.911     bisitz   5098:   background: white;
                   5099:   border: 2px solid red;
                   5100:   margin: 2px;
1.794     www      5101: }
                   5102: 
                   5103: .LC_disc_old_item {
1.911     bisitz   5104:   background: white;
                   5105:   border: 1px solid black;
                   5106:   margin: 2px;
1.794     www      5107: }
                   5108: 
1.458     albertel 5109: table.LC_pastsubmission {
                   5110:   border: 1px solid black;
                   5111:   margin: 2px;
                   5112: }
                   5113: 
1.924     bisitz   5114: table#LC_menubuttons {
1.345     albertel 5115:   width: 100%;
                   5116:   background: $pgbg;
1.392     albertel 5117:   border: 2px;
1.402     albertel 5118:   border-collapse: separate;
1.803     bisitz   5119:   padding: 0;
1.345     albertel 5120: }
1.392     albertel 5121: 
1.801     tempelho 5122: table#LC_title_bar a {
                   5123:   color: $fontmenu;
                   5124: }
1.836     bisitz   5125: 
1.807     droeschl 5126: table#LC_title_bar {
1.819     tempelho 5127:   clear: both;
1.836     bisitz   5128:   display: none;
1.807     droeschl 5129: }
                   5130: 
1.795     www      5131: table#LC_title_bar,
1.933     droeschl 5132: table.LC_breadcrumbs, /* obsolete? */
1.393     albertel 5133: table#LC_title_bar.LC_with_remote {
1.359     albertel 5134:   width: 100%;
1.392     albertel 5135:   border-color: $pgbg;
                   5136:   border-style: solid;
                   5137:   border-width: $border;
1.379     albertel 5138:   background: $pgbg;
1.801     tempelho 5139:   color: $fontmenu;
1.392     albertel 5140:   border-collapse: collapse;
1.803     bisitz   5141:   padding: 0;
1.819     tempelho 5142:   margin: 0;
1.359     albertel 5143: }
1.795     www      5144: 
1.933     droeschl 5145: ul.LC_breadcrumb_tools_outerlist {
1.913     droeschl 5146:     margin: 0;
                   5147:     padding: 0;
1.933     droeschl 5148:     position: relative;
                   5149:     list-style: none;
1.913     droeschl 5150: }
1.933     droeschl 5151: ul.LC_breadcrumb_tools_outerlist li {
1.913     droeschl 5152:     display: inline;
                   5153: }
1.933     droeschl 5154: 
                   5155: .LC_breadcrumb_tools_navigation {
1.913     droeschl 5156:     padding: 0;
1.933     droeschl 5157:     margin: 0;
                   5158:     float: left;
1.913     droeschl 5159: }
1.933     droeschl 5160: .LC_breadcrumb_tools_tools {
                   5161:     padding: 0;
                   5162:     margin: 0;
1.913     droeschl 5163:     float: right;
                   5164: }
                   5165: 
1.359     albertel 5166: table#LC_title_bar td {
                   5167:   background: $tabbg;
                   5168: }
1.795     www      5169: 
1.911     bisitz   5170: table#LC_menubuttons img {
1.803     bisitz   5171:   border: none;
1.346     albertel 5172: }
1.795     www      5173: 
1.842     droeschl 5174: .LC_breadcrumbs_component {
1.911     bisitz   5175:   float: right;
                   5176:   margin: 0 1em;
1.357     albertel 5177: }
1.842     droeschl 5178: .LC_breadcrumbs_component img {
1.911     bisitz   5179:   vertical-align: middle;
1.777     tempelho 5180: }
1.795     www      5181: 
1.383     albertel 5182: td.LC_table_cell_checkbox {
                   5183:   text-align: center;
                   5184: }
1.795     www      5185: 
                   5186: .LC_fontsize_small {
1.911     bisitz   5187:   font-size: 70%;
1.705     tempelho 5188: }
                   5189: 
1.844     bisitz   5190: #LC_breadcrumbs {
1.911     bisitz   5191:   clear:both;
                   5192:   background: $sidebg;
                   5193:   border-bottom: 1px solid $lg_border_color;
                   5194:   line-height: 2.5em;
1.933     droeschl 5195:   overflow: hidden;
1.911     bisitz   5196:   margin: 0;
                   5197:   padding: 0;
1.995     raeburn  5198:   text-align: left;
1.819     tempelho 5199: }
1.862     bisitz   5200: 
1.993     raeburn  5201: .LC_head_subbox {
1.911     bisitz   5202:   clear:both;
                   5203:   background: #F8F8F8; /* $sidebg; */
1.915     droeschl 5204:   border: 1px solid $sidebg;
                   5205:   margin: 0 0 10px 0;      
1.966     bisitz   5206:   padding: 3px;
1.995     raeburn  5207:   text-align: left;
1.822     bisitz   5208: }
                   5209: 
1.795     www      5210: .LC_fontsize_medium {
1.911     bisitz   5211:   font-size: 85%;
1.705     tempelho 5212: }
                   5213: 
1.795     www      5214: .LC_fontsize_large {
1.911     bisitz   5215:   font-size: 120%;
1.705     tempelho 5216: }
                   5217: 
1.346     albertel 5218: .LC_menubuttons_inline_text {
                   5219:   color: $font;
1.698     harmsja  5220:   font-size: 90%;
1.701     harmsja  5221:   padding-left:3px;
1.346     albertel 5222: }
                   5223: 
1.934     droeschl 5224: .LC_menubuttons_inline_text img{
                   5225:   vertical-align: middle;
                   5226: }
                   5227: 
1.951     onken    5228: li.LC_menubuttons_inline_text img,a {
                   5229:   cursor:pointer;
1.1002    droeschl 5230:   text-decoration: none;
1.951     onken    5231: }
                   5232: 
1.526     www      5233: .LC_menubuttons_link {
                   5234:   text-decoration: none;
                   5235: }
1.795     www      5236: 
1.522     albertel 5237: .LC_menubuttons_category {
1.521     www      5238:   color: $font;
1.526     www      5239:   background: $pgbg;
1.521     www      5240:   font-size: larger;
                   5241:   font-weight: bold;
                   5242: }
                   5243: 
1.346     albertel 5244: td.LC_menubuttons_text {
1.911     bisitz   5245:   color: $font;
1.346     albertel 5246: }
1.706     harmsja  5247: 
1.346     albertel 5248: .LC_current_location {
                   5249:   background: $tabbg;
                   5250: }
1.795     www      5251: 
1.938     bisitz   5252: table.LC_data_table {
1.347     albertel 5253:   border: 1px solid #000000;
1.402     albertel 5254:   border-collapse: separate;
1.426     albertel 5255:   border-spacing: 1px;
1.610     albertel 5256:   background: $pgbg;
1.347     albertel 5257: }
1.795     www      5258: 
1.422     albertel 5259: .LC_data_table_dense {
                   5260:   font-size: small;
                   5261: }
1.795     www      5262: 
1.507     raeburn  5263: table.LC_nested_outer {
                   5264:   border: 1px solid #000000;
1.589     raeburn  5265:   border-collapse: collapse;
1.803     bisitz   5266:   border-spacing: 0;
1.507     raeburn  5267:   width: 100%;
                   5268: }
1.795     www      5269: 
1.879     raeburn  5270: table.LC_innerpickbox,
1.507     raeburn  5271: table.LC_nested {
1.803     bisitz   5272:   border: none;
1.589     raeburn  5273:   border-collapse: collapse;
1.803     bisitz   5274:   border-spacing: 0;
1.507     raeburn  5275:   width: 100%;
                   5276: }
1.795     www      5277: 
1.911     bisitz   5278: table.LC_data_table tr th,
                   5279: table.LC_calendar tr th,
1.879     raeburn  5280: table.LC_prior_tries tr th,
                   5281: table.LC_innerpickbox tr th {
1.349     albertel 5282:   font-weight: bold;
                   5283:   background-color: $data_table_head;
1.801     tempelho 5284:   color:$fontmenu;
1.701     harmsja  5285:   font-size:90%;
1.347     albertel 5286: }
1.795     www      5287: 
1.879     raeburn  5288: table.LC_innerpickbox tr th,
                   5289: table.LC_innerpickbox tr td {
                   5290:   vertical-align: top;
                   5291: }
                   5292: 
1.711     raeburn  5293: table.LC_data_table tr.LC_info_row > td {
1.735     bisitz   5294:   background-color: #CCCCCC;
1.711     raeburn  5295:   font-weight: bold;
                   5296:   text-align: left;
                   5297: }
1.795     www      5298: 
1.912     bisitz   5299: table.LC_data_table tr.LC_odd_row > td {
                   5300:   background-color: $data_table_light;
                   5301:   padding: 2px;
                   5302:   vertical-align: top;
                   5303: }
                   5304: 
1.809     bisitz   5305: table.LC_pick_box tr > td.LC_odd_row {
1.349     albertel 5306:   background-color: $data_table_light;
1.912     bisitz   5307:   vertical-align: top;
                   5308: }
                   5309: 
                   5310: table.LC_data_table tr.LC_even_row > td {
                   5311:   background-color: $data_table_dark;
1.425     albertel 5312:   padding: 2px;
1.900     bisitz   5313:   vertical-align: top;
1.347     albertel 5314: }
1.795     www      5315: 
1.809     bisitz   5316: table.LC_pick_box tr > td.LC_even_row {
1.349     albertel 5317:   background-color: $data_table_dark;
1.900     bisitz   5318:   vertical-align: top;
1.347     albertel 5319: }
1.795     www      5320: 
1.425     albertel 5321: table.LC_data_table tr.LC_data_table_highlight td {
                   5322:   background-color: $data_table_darker;
                   5323: }
1.795     www      5324: 
1.639     raeburn  5325: table.LC_data_table tr td.LC_leftcol_header {
                   5326:   background-color: $data_table_head;
                   5327:   font-weight: bold;
                   5328: }
1.795     www      5329: 
1.451     albertel 5330: table.LC_data_table tr.LC_empty_row td,
1.507     raeburn  5331: table.LC_nested tr.LC_empty_row td {
1.421     albertel 5332:   font-weight: bold;
                   5333:   font-style: italic;
                   5334:   text-align: center;
                   5335:   padding: 8px;
1.347     albertel 5336: }
1.795     www      5337: 
1.940     bisitz   5338: table.LC_data_table tr.LC_empty_row td {
                   5339:   background-color: $sidebg;
                   5340: }
                   5341: 
                   5342: table.LC_nested tr.LC_empty_row td {
                   5343:   background-color: #FFFFFF;
                   5344: }
                   5345: 
1.890     droeschl 5346: table.LC_caption {
                   5347: }
                   5348: 
1.507     raeburn  5349: table.LC_nested tr.LC_empty_row td {
1.465     albertel 5350:   padding: 4ex
                   5351: }
1.795     www      5352: 
1.507     raeburn  5353: table.LC_nested_outer tr th {
                   5354:   font-weight: bold;
1.801     tempelho 5355:   color:$fontmenu;
1.507     raeburn  5356:   background-color: $data_table_head;
1.701     harmsja  5357:   font-size: small;
1.507     raeburn  5358:   border-bottom: 1px solid #000000;
                   5359: }
1.795     www      5360: 
1.507     raeburn  5361: table.LC_nested_outer tr td.LC_subheader {
                   5362:   background-color: $data_table_head;
                   5363:   font-weight: bold;
                   5364:   font-size: small;
                   5365:   border-bottom: 1px solid #000000;
                   5366:   text-align: right;
1.451     albertel 5367: }
1.795     www      5368: 
1.507     raeburn  5369: table.LC_nested tr.LC_info_row td {
1.735     bisitz   5370:   background-color: #CCCCCC;
1.451     albertel 5371:   font-weight: bold;
                   5372:   font-size: small;
1.507     raeburn  5373:   text-align: center;
                   5374: }
1.795     www      5375: 
1.589     raeburn  5376: table.LC_nested tr.LC_info_row td.LC_left_item,
                   5377: table.LC_nested_outer tr th.LC_left_item {
1.507     raeburn  5378:   text-align: left;
1.451     albertel 5379: }
1.795     www      5380: 
1.507     raeburn  5381: table.LC_nested td {
1.735     bisitz   5382:   background-color: #FFFFFF;
1.451     albertel 5383:   font-size: small;
1.507     raeburn  5384: }
1.795     www      5385: 
1.507     raeburn  5386: table.LC_nested_outer tr th.LC_right_item,
                   5387: table.LC_nested tr.LC_info_row td.LC_right_item,
                   5388: table.LC_nested tr.LC_odd_row td.LC_right_item,
                   5389: table.LC_nested tr td.LC_right_item {
1.451     albertel 5390:   text-align: right;
                   5391: }
                   5392: 
1.507     raeburn  5393: table.LC_nested tr.LC_odd_row td {
1.735     bisitz   5394:   background-color: #EEEEEE;
1.451     albertel 5395: }
                   5396: 
1.473     raeburn  5397: table.LC_createuser {
                   5398: }
                   5399: 
                   5400: table.LC_createuser tr.LC_section_row td {
1.701     harmsja  5401:   font-size: small;
1.473     raeburn  5402: }
                   5403: 
                   5404: table.LC_createuser tr.LC_info_row td  {
1.735     bisitz   5405:   background-color: #CCCCCC;
1.473     raeburn  5406:   font-weight: bold;
                   5407:   text-align: center;
                   5408: }
                   5409: 
1.349     albertel 5410: table.LC_calendar {
                   5411:   border: 1px solid #000000;
                   5412:   border-collapse: collapse;
1.917     raeburn  5413:   width: 98%;
1.349     albertel 5414: }
1.795     www      5415: 
1.349     albertel 5416: table.LC_calendar_pickdate {
                   5417:   font-size: xx-small;
                   5418: }
1.795     www      5419: 
1.349     albertel 5420: table.LC_calendar tr td {
                   5421:   border: 1px solid #000000;
                   5422:   vertical-align: top;
1.917     raeburn  5423:   width: 14%;
1.349     albertel 5424: }
1.795     www      5425: 
1.349     albertel 5426: table.LC_calendar tr td.LC_calendar_day_empty {
                   5427:   background-color: $data_table_dark;
                   5428: }
1.795     www      5429: 
1.779     bisitz   5430: table.LC_calendar tr td.LC_calendar_day_current {
                   5431:   background-color: $data_table_highlight;
1.777     tempelho 5432: }
1.795     www      5433: 
1.938     bisitz   5434: table.LC_data_table tr td.LC_mail_new {
1.349     albertel 5435:   background-color: $mail_new;
                   5436: }
1.795     www      5437: 
1.938     bisitz   5438: table.LC_data_table tr.LC_mail_new:hover {
1.349     albertel 5439:   background-color: $mail_new_hover;
                   5440: }
1.795     www      5441: 
1.938     bisitz   5442: table.LC_data_table tr td.LC_mail_read {
1.349     albertel 5443:   background-color: $mail_read;
                   5444: }
1.795     www      5445: 
1.938     bisitz   5446: /*
                   5447: table.LC_data_table tr.LC_mail_read:hover {
1.349     albertel 5448:   background-color: $mail_read_hover;
                   5449: }
1.938     bisitz   5450: */
1.795     www      5451: 
1.938     bisitz   5452: table.LC_data_table tr td.LC_mail_replied {
1.349     albertel 5453:   background-color: $mail_replied;
                   5454: }
1.795     www      5455: 
1.938     bisitz   5456: /*
                   5457: table.LC_data_table tr.LC_mail_replied:hover {
1.349     albertel 5458:   background-color: $mail_replied_hover;
                   5459: }
1.938     bisitz   5460: */
1.795     www      5461: 
1.938     bisitz   5462: table.LC_data_table tr td.LC_mail_other {
1.349     albertel 5463:   background-color: $mail_other;
                   5464: }
1.795     www      5465: 
1.938     bisitz   5466: /*
                   5467: table.LC_data_table tr.LC_mail_other:hover {
1.349     albertel 5468:   background-color: $mail_other_hover;
                   5469: }
1.938     bisitz   5470: */
1.494     raeburn  5471: 
1.777     tempelho 5472: table.LC_data_table tr > td.LC_browser_file,
                   5473: table.LC_data_table tr > td.LC_browser_file_published {
1.899     bisitz   5474:   background: #AAEE77;
1.389     albertel 5475: }
1.795     www      5476: 
1.777     tempelho 5477: table.LC_data_table tr > td.LC_browser_file_locked,
                   5478: table.LC_data_table tr > td.LC_browser_file_unpublished {
1.389     albertel 5479:   background: #FFAA99;
1.387     albertel 5480: }
1.795     www      5481: 
1.777     tempelho 5482: table.LC_data_table tr > td.LC_browser_file_obsolete {
1.899     bisitz   5483:   background: #888888;
1.779     bisitz   5484: }
1.795     www      5485: 
1.777     tempelho 5486: table.LC_data_table tr > td.LC_browser_file_modified,
1.779     bisitz   5487: table.LC_data_table tr > td.LC_browser_file_metamodified {
1.899     bisitz   5488:   background: #F8F866;
1.777     tempelho 5489: }
1.795     www      5490: 
1.696     bisitz   5491: table.LC_data_table tr.LC_browser_folder > td {
1.899     bisitz   5492:   background: #E0E8FF;
1.387     albertel 5493: }
1.696     bisitz   5494: 
1.707     bisitz   5495: table.LC_data_table tr > td.LC_roles_is {
1.911     bisitz   5496:   /* background: #77FF77; */
1.707     bisitz   5497: }
1.795     www      5498: 
1.707     bisitz   5499: table.LC_data_table tr > td.LC_roles_future {
1.939     bisitz   5500:   border-right: 8px solid #FFFF77;
1.707     bisitz   5501: }
1.795     www      5502: 
1.707     bisitz   5503: table.LC_data_table tr > td.LC_roles_will {
1.939     bisitz   5504:   border-right: 8px solid #FFAA77;
1.707     bisitz   5505: }
1.795     www      5506: 
1.707     bisitz   5507: table.LC_data_table tr > td.LC_roles_expired {
1.939     bisitz   5508:   border-right: 8px solid #FF7777;
1.707     bisitz   5509: }
1.795     www      5510: 
1.707     bisitz   5511: table.LC_data_table tr > td.LC_roles_will_not {
1.939     bisitz   5512:   border-right: 8px solid #AAFF77;
1.707     bisitz   5513: }
1.795     www      5514: 
1.707     bisitz   5515: table.LC_data_table tr > td.LC_roles_selected {
1.939     bisitz   5516:   border-right: 8px solid #11CC55;
1.707     bisitz   5517: }
                   5518: 
1.388     albertel 5519: span.LC_current_location {
1.701     harmsja  5520:   font-size:larger;
1.388     albertel 5521:   background: $pgbg;
                   5522: }
1.387     albertel 5523: 
1.1029    www      5524: span.LC_current_nav_location {
                   5525:   font-weight:bold;
                   5526:   background: $sidebg;
                   5527: }
                   5528: 
1.395     albertel 5529: span.LC_parm_menu_item {
                   5530:   font-size: larger;
                   5531: }
1.795     www      5532: 
1.395     albertel 5533: span.LC_parm_scope_all {
                   5534:   color: red;
                   5535: }
1.795     www      5536: 
1.395     albertel 5537: span.LC_parm_scope_folder {
                   5538:   color: green;
                   5539: }
1.795     www      5540: 
1.395     albertel 5541: span.LC_parm_scope_resource {
                   5542:   color: orange;
                   5543: }
1.795     www      5544: 
1.395     albertel 5545: span.LC_parm_part {
                   5546:   color: blue;
                   5547: }
1.795     www      5548: 
1.911     bisitz   5549: span.LC_parm_folder,
                   5550: span.LC_parm_symb {
1.395     albertel 5551:   font-size: x-small;
                   5552:   font-family: $mono;
                   5553:   color: #AAAAAA;
                   5554: }
                   5555: 
1.977     bisitz   5556: ul.LC_parm_parmlist li {
                   5557:   display: inline-block;
                   5558:   padding: 0.3em 0.8em;
                   5559:   vertical-align: top;
                   5560:   width: 150px;
                   5561:   border-top:1px solid $lg_border_color;
                   5562: }
                   5563: 
1.795     www      5564: td.LC_parm_overview_level_menu,
                   5565: td.LC_parm_overview_map_menu,
                   5566: td.LC_parm_overview_parm_selectors,
                   5567: td.LC_parm_overview_restrictions  {
1.396     albertel 5568:   border: 1px solid black;
                   5569:   border-collapse: collapse;
                   5570: }
1.795     www      5571: 
1.396     albertel 5572: table.LC_parm_overview_restrictions td {
                   5573:   border-width: 1px 4px 1px 4px;
                   5574:   border-style: solid;
                   5575:   border-color: $pgbg;
                   5576:   text-align: center;
                   5577: }
1.795     www      5578: 
1.396     albertel 5579: table.LC_parm_overview_restrictions th {
                   5580:   background: $tabbg;
                   5581:   border-width: 1px 4px 1px 4px;
                   5582:   border-style: solid;
                   5583:   border-color: $pgbg;
                   5584: }
1.795     www      5585: 
1.398     albertel 5586: table#LC_helpmenu {
1.803     bisitz   5587:   border: none;
1.398     albertel 5588:   height: 55px;
1.803     bisitz   5589:   border-spacing: 0;
1.398     albertel 5590: }
                   5591: 
                   5592: table#LC_helpmenu fieldset legend {
                   5593:   font-size: larger;
                   5594: }
1.795     www      5595: 
1.397     albertel 5596: table#LC_helpmenu_links {
                   5597:   width: 100%;
                   5598:   border: 1px solid black;
                   5599:   background: $pgbg;
1.803     bisitz   5600:   padding: 0;
1.397     albertel 5601:   border-spacing: 1px;
                   5602: }
1.795     www      5603: 
1.397     albertel 5604: table#LC_helpmenu_links tr td {
                   5605:   padding: 1px;
                   5606:   background: $tabbg;
1.399     albertel 5607:   text-align: center;
                   5608:   font-weight: bold;
1.397     albertel 5609: }
1.396     albertel 5610: 
1.795     www      5611: table#LC_helpmenu_links a:link,
                   5612: table#LC_helpmenu_links a:visited,
1.397     albertel 5613: table#LC_helpmenu_links a:active {
                   5614:   text-decoration: none;
                   5615:   color: $font;
                   5616: }
1.795     www      5617: 
1.397     albertel 5618: table#LC_helpmenu_links a:hover {
                   5619:   text-decoration: underline;
                   5620:   color: $vlink;
                   5621: }
1.396     albertel 5622: 
1.417     albertel 5623: .LC_chrt_popup_exists {
                   5624:   border: 1px solid #339933;
                   5625:   margin: -1px;
                   5626: }
1.795     www      5627: 
1.417     albertel 5628: .LC_chrt_popup_up {
                   5629:   border: 1px solid yellow;
                   5630:   margin: -1px;
                   5631: }
1.795     www      5632: 
1.417     albertel 5633: .LC_chrt_popup {
                   5634:   border: 1px solid #8888FF;
                   5635:   background: #CCCCFF;
                   5636: }
1.795     www      5637: 
1.421     albertel 5638: table.LC_pick_box {
                   5639:   border-collapse: separate;
                   5640:   background: white;
                   5641:   border: 1px solid black;
                   5642:   border-spacing: 1px;
                   5643: }
1.795     www      5644: 
1.421     albertel 5645: table.LC_pick_box td.LC_pick_box_title {
1.850     bisitz   5646:   background: $sidebg;
1.421     albertel 5647:   font-weight: bold;
1.900     bisitz   5648:   text-align: left;
1.740     bisitz   5649:   vertical-align: top;
1.421     albertel 5650:   width: 184px;
                   5651:   padding: 8px;
                   5652: }
1.795     www      5653: 
1.579     raeburn  5654: table.LC_pick_box td.LC_pick_box_value {
                   5655:   text-align: left;
                   5656:   padding: 8px;
                   5657: }
1.795     www      5658: 
1.579     raeburn  5659: table.LC_pick_box td.LC_pick_box_select {
                   5660:   text-align: left;
                   5661:   padding: 8px;
                   5662: }
1.795     www      5663: 
1.424     albertel 5664: table.LC_pick_box td.LC_pick_box_separator {
1.803     bisitz   5665:   padding: 0;
1.421     albertel 5666:   height: 1px;
                   5667:   background: black;
                   5668: }
1.795     www      5669: 
1.421     albertel 5670: table.LC_pick_box td.LC_pick_box_submit {
                   5671:   text-align: right;
                   5672: }
1.795     www      5673: 
1.579     raeburn  5674: table.LC_pick_box td.LC_evenrow_value {
                   5675:   text-align: left;
                   5676:   padding: 8px;
                   5677:   background-color: $data_table_light;
                   5678: }
1.795     www      5679: 
1.579     raeburn  5680: table.LC_pick_box td.LC_oddrow_value {
                   5681:   text-align: left;
                   5682:   padding: 8px;
                   5683:   background-color: $data_table_light;
                   5684: }
1.795     www      5685: 
1.579     raeburn  5686: span.LC_helpform_receipt_cat {
                   5687:   font-weight: bold;
                   5688: }
1.795     www      5689: 
1.424     albertel 5690: table.LC_group_priv_box {
                   5691:   background: white;
                   5692:   border: 1px solid black;
                   5693:   border-spacing: 1px;
                   5694: }
1.795     www      5695: 
1.424     albertel 5696: table.LC_group_priv_box td.LC_pick_box_title {
                   5697:   background: $tabbg;
                   5698:   font-weight: bold;
                   5699:   text-align: right;
                   5700:   width: 184px;
                   5701: }
1.795     www      5702: 
1.424     albertel 5703: table.LC_group_priv_box td.LC_groups_fixed {
                   5704:   background: $data_table_light;
                   5705:   text-align: center;
                   5706: }
1.795     www      5707: 
1.424     albertel 5708: table.LC_group_priv_box td.LC_groups_optional {
                   5709:   background: $data_table_dark;
                   5710:   text-align: center;
                   5711: }
1.795     www      5712: 
1.424     albertel 5713: table.LC_group_priv_box td.LC_groups_functionality {
                   5714:   background: $data_table_darker;
                   5715:   text-align: center;
                   5716:   font-weight: bold;
                   5717: }
1.795     www      5718: 
1.424     albertel 5719: table.LC_group_priv td {
                   5720:   text-align: left;
1.803     bisitz   5721:   padding: 0;
1.424     albertel 5722: }
                   5723: 
                   5724: .LC_navbuttons {
                   5725:   margin: 2ex 0ex 2ex 0ex;
                   5726: }
1.795     www      5727: 
1.423     albertel 5728: .LC_topic_bar {
                   5729:   font-weight: bold;
                   5730:   background: $tabbg;
1.918     wenzelju 5731:   margin: 1em 0em 1em 2em;
1.805     bisitz   5732:   padding: 3px;
1.918     wenzelju 5733:   font-size: 1.2em;
1.423     albertel 5734: }
1.795     www      5735: 
1.423     albertel 5736: .LC_topic_bar span {
1.918     wenzelju 5737:   left: 0.5em;
                   5738:   position: absolute;
1.423     albertel 5739:   vertical-align: middle;
1.918     wenzelju 5740:   font-size: 1.2em;
1.423     albertel 5741: }
1.795     www      5742: 
1.423     albertel 5743: table.LC_course_group_status {
                   5744:   margin: 20px;
                   5745: }
1.795     www      5746: 
1.423     albertel 5747: table.LC_status_selector td {
                   5748:   vertical-align: top;
                   5749:   text-align: center;
1.424     albertel 5750:   padding: 4px;
                   5751: }
1.795     www      5752: 
1.599     albertel 5753: div.LC_feedback_link {
1.616     albertel 5754:   clear: both;
1.829     kalberla 5755:   background: $sidebg;
1.779     bisitz   5756:   width: 100%;
1.829     kalberla 5757:   padding-bottom: 10px;
                   5758:   border: 1px $tabbg solid;
1.833     kalberla 5759:   height: 22px;
                   5760:   line-height: 22px;
                   5761:   padding-top: 5px;
                   5762: }
                   5763: 
                   5764: div.LC_feedback_link img {
                   5765:   height: 22px;
1.867     kalberla 5766:   vertical-align:middle;
1.829     kalberla 5767: }
                   5768: 
1.911     bisitz   5769: div.LC_feedback_link a {
1.829     kalberla 5770:   text-decoration: none;
1.489     raeburn  5771: }
1.795     www      5772: 
1.867     kalberla 5773: div.LC_comblock {
1.911     bisitz   5774:   display:inline;
1.867     kalberla 5775:   color:$font;
                   5776:   font-size:90%;
                   5777: }
                   5778: 
                   5779: div.LC_feedback_link div.LC_comblock {
                   5780:   padding-left:5px;
                   5781: }
                   5782: 
                   5783: div.LC_feedback_link div.LC_comblock a {
                   5784:   color:$font;
                   5785: }
                   5786: 
1.489     raeburn  5787: span.LC_feedback_link {
1.858     bisitz   5788:   /* background: $feedback_link_bg; */
1.599     albertel 5789:   font-size: larger;
                   5790: }
1.795     www      5791: 
1.599     albertel 5792: span.LC_message_link {
1.858     bisitz   5793:   /* background: $feedback_link_bg; */
1.599     albertel 5794:   font-size: larger;
                   5795:   position: absolute;
                   5796:   right: 1em;
1.489     raeburn  5797: }
1.421     albertel 5798: 
1.515     albertel 5799: table.LC_prior_tries {
1.524     albertel 5800:   border: 1px solid #000000;
                   5801:   border-collapse: separate;
                   5802:   border-spacing: 1px;
1.515     albertel 5803: }
1.523     albertel 5804: 
1.515     albertel 5805: table.LC_prior_tries td {
1.524     albertel 5806:   padding: 2px;
1.515     albertel 5807: }
1.523     albertel 5808: 
                   5809: .LC_answer_correct {
1.795     www      5810:   background: lightgreen;
                   5811:   color: darkgreen;
                   5812:   padding: 6px;
1.523     albertel 5813: }
1.795     www      5814: 
1.523     albertel 5815: .LC_answer_charged_try {
1.797     www      5816:   background: #FFAAAA;
1.795     www      5817:   color: darkred;
                   5818:   padding: 6px;
1.523     albertel 5819: }
1.795     www      5820: 
1.779     bisitz   5821: .LC_answer_not_charged_try,
1.523     albertel 5822: .LC_answer_no_grade,
                   5823: .LC_answer_late {
1.795     www      5824:   background: lightyellow;
1.523     albertel 5825:   color: black;
1.795     www      5826:   padding: 6px;
1.523     albertel 5827: }
1.795     www      5828: 
1.523     albertel 5829: .LC_answer_previous {
1.795     www      5830:   background: lightblue;
                   5831:   color: darkblue;
                   5832:   padding: 6px;
1.523     albertel 5833: }
1.795     www      5834: 
1.779     bisitz   5835: .LC_answer_no_message {
1.777     tempelho 5836:   background: #FFFFFF;
                   5837:   color: black;
1.795     www      5838:   padding: 6px;
1.779     bisitz   5839: }
1.795     www      5840: 
1.779     bisitz   5841: .LC_answer_unknown {
                   5842:   background: orange;
                   5843:   color: black;
1.795     www      5844:   padding: 6px;
1.777     tempelho 5845: }
1.795     www      5846: 
1.529     albertel 5847: span.LC_prior_numerical,
                   5848: span.LC_prior_string,
                   5849: span.LC_prior_custom,
                   5850: span.LC_prior_reaction,
                   5851: span.LC_prior_math {
1.925     bisitz   5852:   font-family: $mono;
1.523     albertel 5853:   white-space: pre;
                   5854: }
                   5855: 
1.525     albertel 5856: span.LC_prior_string {
1.925     bisitz   5857:   font-family: $mono;
1.525     albertel 5858:   white-space: pre;
                   5859: }
                   5860: 
1.523     albertel 5861: table.LC_prior_option {
                   5862:   width: 100%;
                   5863:   border-collapse: collapse;
                   5864: }
1.795     www      5865: 
1.911     bisitz   5866: table.LC_prior_rank,
1.795     www      5867: table.LC_prior_match {
1.528     albertel 5868:   border-collapse: collapse;
                   5869: }
1.795     www      5870: 
1.528     albertel 5871: table.LC_prior_option tr td,
                   5872: table.LC_prior_rank tr td,
                   5873: table.LC_prior_match tr td {
1.524     albertel 5874:   border: 1px solid #000000;
1.515     albertel 5875: }
                   5876: 
1.855     bisitz   5877: .LC_nobreak {
1.544     albertel 5878:   white-space: nowrap;
1.519     raeburn  5879: }
                   5880: 
1.576     raeburn  5881: span.LC_cusr_emph {
                   5882:   font-style: italic;
                   5883: }
                   5884: 
1.633     raeburn  5885: span.LC_cusr_subheading {
                   5886:   font-weight: normal;
                   5887:   font-size: 85%;
                   5888: }
                   5889: 
1.861     bisitz   5890: div.LC_docs_entry_move {
1.859     bisitz   5891:   border: 1px solid #BBBBBB;
1.545     albertel 5892:   background: #DDDDDD;
1.861     bisitz   5893:   width: 22px;
1.859     bisitz   5894:   padding: 1px;
                   5895:   margin: 0;
1.545     albertel 5896: }
                   5897: 
1.861     bisitz   5898: table.LC_data_table tr > td.LC_docs_entry_commands,
                   5899: table.LC_data_table tr > td.LC_docs_entry_parameter {
1.545     albertel 5900:   background: #DDDDDD;
                   5901:   font-size: x-small;
                   5902: }
1.795     www      5903: 
1.861     bisitz   5904: .LC_docs_entry_parameter {
                   5905:   white-space: nowrap;
                   5906: }
                   5907: 
1.544     albertel 5908: .LC_docs_copy {
1.545     albertel 5909:   color: #000099;
1.544     albertel 5910: }
1.795     www      5911: 
1.544     albertel 5912: .LC_docs_cut {
1.545     albertel 5913:   color: #550044;
1.544     albertel 5914: }
1.795     www      5915: 
1.544     albertel 5916: .LC_docs_rename {
1.545     albertel 5917:   color: #009900;
1.544     albertel 5918: }
1.795     www      5919: 
1.544     albertel 5920: .LC_docs_remove {
1.545     albertel 5921:   color: #990000;
                   5922: }
                   5923: 
1.547     albertel 5924: .LC_docs_reinit_warn,
                   5925: .LC_docs_ext_edit {
                   5926:   font-size: x-small;
                   5927: }
                   5928: 
1.545     albertel 5929: table.LC_docs_adddocs td,
                   5930: table.LC_docs_adddocs th {
                   5931:   border: 1px solid #BBBBBB;
                   5932:   padding: 4px;
                   5933:   background: #DDDDDD;
1.543     albertel 5934: }
                   5935: 
1.584     albertel 5936: table.LC_sty_begin {
                   5937:   background: #BBFFBB;
                   5938: }
1.795     www      5939: 
1.584     albertel 5940: table.LC_sty_end {
                   5941:   background: #FFBBBB;
                   5942: }
                   5943: 
1.589     raeburn  5944: table.LC_double_column {
1.803     bisitz   5945:   border-width: 0;
1.589     raeburn  5946:   border-collapse: collapse;
                   5947:   width: 100%;
                   5948:   padding: 2px;
                   5949: }
                   5950: 
                   5951: table.LC_double_column tr td.LC_left_col {
1.590     raeburn  5952:   top: 2px;
1.589     raeburn  5953:   left: 2px;
                   5954:   width: 47%;
                   5955:   vertical-align: top;
                   5956: }
                   5957: 
                   5958: table.LC_double_column tr td.LC_right_col {
                   5959:   top: 2px;
1.779     bisitz   5960:   right: 2px;
1.589     raeburn  5961:   width: 47%;
                   5962:   vertical-align: top;
                   5963: }
                   5964: 
1.591     raeburn  5965: div.LC_left_float {
                   5966:   float: left;
                   5967:   padding-right: 5%;
1.597     albertel 5968:   padding-bottom: 4px;
1.591     raeburn  5969: }
                   5970: 
                   5971: div.LC_clear_float_header {
1.597     albertel 5972:   padding-bottom: 2px;
1.591     raeburn  5973: }
                   5974: 
                   5975: div.LC_clear_float_footer {
1.597     albertel 5976:   padding-top: 10px;
1.591     raeburn  5977:   clear: both;
                   5978: }
                   5979: 
1.597     albertel 5980: div.LC_grade_show_user {
1.941     bisitz   5981: /*  border-left: 5px solid $sidebg; */
                   5982:   border-top: 5px solid #000000;
                   5983:   margin: 50px 0 0 0;
1.936     bisitz   5984:   padding: 15px 0 5px 10px;
1.597     albertel 5985: }
1.795     www      5986: 
1.936     bisitz   5987: div.LC_grade_show_user_odd_row {
1.941     bisitz   5988: /*  border-left: 5px solid #000000; */
                   5989: }
                   5990: 
                   5991: div.LC_grade_show_user div.LC_Box {
                   5992:   margin-right: 50px;
1.597     albertel 5993: }
                   5994: 
                   5995: div.LC_grade_submissions,
                   5996: div.LC_grade_message_center,
1.936     bisitz   5997: div.LC_grade_info_links {
1.597     albertel 5998:   margin: 5px;
                   5999:   width: 99%;
                   6000:   background: #FFFFFF;
                   6001: }
1.795     www      6002: 
1.597     albertel 6003: div.LC_grade_submissions_header,
1.936     bisitz   6004: div.LC_grade_message_center_header {
1.705     tempelho 6005:   font-weight: bold;
                   6006:   font-size: large;
1.597     albertel 6007: }
1.795     www      6008: 
1.597     albertel 6009: div.LC_grade_submissions_body,
1.936     bisitz   6010: div.LC_grade_message_center_body {
1.597     albertel 6011:   border: 1px solid black;
                   6012:   width: 99%;
                   6013:   background: #FFFFFF;
                   6014: }
1.795     www      6015: 
1.613     albertel 6016: table.LC_scantron_action {
                   6017:   width: 100%;
                   6018: }
1.795     www      6019: 
1.613     albertel 6020: table.LC_scantron_action tr th {
1.698     harmsja  6021:   font-weight:bold;
                   6022:   font-style:normal;
1.613     albertel 6023: }
1.795     www      6024: 
1.779     bisitz   6025: .LC_edit_problem_header,
1.614     albertel 6026: div.LC_edit_problem_footer {
1.705     tempelho 6027:   font-weight: normal;
                   6028:   font-size:  medium;
1.602     albertel 6029:   margin: 2px;
1.600     albertel 6030: }
1.795     www      6031: 
1.600     albertel 6032: div.LC_edit_problem_header,
1.602     albertel 6033: div.LC_edit_problem_header div,
1.614     albertel 6034: div.LC_edit_problem_footer,
                   6035: div.LC_edit_problem_footer div,
1.602     albertel 6036: div.LC_edit_problem_editxml_header,
                   6037: div.LC_edit_problem_editxml_header div {
1.600     albertel 6038:   margin-top: 5px;
                   6039: }
1.795     www      6040: 
1.600     albertel 6041: div.LC_edit_problem_header_title {
1.705     tempelho 6042:   font-weight: bold;
                   6043:   font-size: larger;
1.602     albertel 6044:   background: $tabbg;
                   6045:   padding: 3px;
                   6046: }
1.795     www      6047: 
1.602     albertel 6048: table.LC_edit_problem_header_title {
                   6049:   width: 100%;
1.600     albertel 6050:   background: $tabbg;
1.602     albertel 6051: }
                   6052: 
                   6053: div.LC_edit_problem_discards {
                   6054:   float: left;
                   6055:   padding-bottom: 5px;
                   6056: }
1.795     www      6057: 
1.602     albertel 6058: div.LC_edit_problem_saves {
                   6059:   float: right;
                   6060:   padding-bottom: 5px;
1.600     albertel 6061: }
1.795     www      6062: 
1.911     bisitz   6063: img.stift {
1.803     bisitz   6064:   border-width: 0;
                   6065:   vertical-align: middle;
1.677     riegler  6066: }
1.680     riegler  6067: 
1.923     bisitz   6068: table td.LC_mainmenu_col_fieldset {
1.680     riegler  6069:   vertical-align: top;
1.777     tempelho 6070: }
1.795     www      6071: 
1.716     raeburn  6072: div.LC_createcourse {
1.911     bisitz   6073:   margin: 10px 10px 10px 10px;
1.716     raeburn  6074: }
                   6075: 
1.917     raeburn  6076: .LC_dccid {
                   6077:   margin: 0.2em 0 0 0;
                   6078:   padding: 0;
                   6079:   font-size: 90%;
                   6080:   display:none;
                   6081: }
                   6082: 
1.698     harmsja  6083: a:hover,
1.897     wenzelju 6084: ol.LC_primary_menu a:hover,
1.721     harmsja  6085: ol#LC_MenuBreadcrumbs a:hover,
                   6086: ol#LC_PathBreadcrumbs a:hover,
1.897     wenzelju 6087: ul#LC_secondary_menu a:hover,
1.721     harmsja  6088: .LC_FormSectionClearButton input:hover
1.795     www      6089: ul.LC_TabContent   li:hover a {
1.952     onken    6090:   color:$button_hover;
1.911     bisitz   6091:   text-decoration:none;
1.693     droeschl 6092: }
                   6093: 
1.779     bisitz   6094: h1 {
1.911     bisitz   6095:   padding: 0;
                   6096:   line-height:130%;
1.693     droeschl 6097: }
1.698     harmsja  6098: 
1.911     bisitz   6099: h2,
                   6100: h3,
                   6101: h4,
                   6102: h5,
                   6103: h6 {
                   6104:   margin: 5px 0 5px 0;
                   6105:   padding: 0;
                   6106:   line-height:130%;
1.693     droeschl 6107: }
1.795     www      6108: 
                   6109: .LC_hcell {
1.911     bisitz   6110:   padding:3px 15px 3px 15px;
                   6111:   margin: 0;
                   6112:   background-color:$tabbg;
                   6113:   color:$fontmenu;
                   6114:   border-bottom:solid 1px $lg_border_color;
1.693     droeschl 6115: }
1.795     www      6116: 
1.840     bisitz   6117: .LC_Box > .LC_hcell {
1.911     bisitz   6118:   margin: 0 -10px 10px -10px;
1.835     bisitz   6119: }
                   6120: 
1.721     harmsja  6121: .LC_noBorder {
1.911     bisitz   6122:   border: 0;
1.698     harmsja  6123: }
1.693     droeschl 6124: 
1.721     harmsja  6125: .LC_FormSectionClearButton input {
1.911     bisitz   6126:   background-color:transparent;
                   6127:   border: none;
                   6128:   cursor:pointer;
                   6129:   text-decoration:underline;
1.693     droeschl 6130: }
1.763     bisitz   6131: 
                   6132: .LC_help_open_topic {
1.911     bisitz   6133:   color: #FFFFFF;
                   6134:   background-color: #EEEEFF;
                   6135:   margin: 1px;
                   6136:   padding: 4px;
                   6137:   border: 1px solid #000033;
                   6138:   white-space: nowrap;
                   6139:   /* vertical-align: middle; */
1.759     neumanie 6140: }
1.693     droeschl 6141: 
1.911     bisitz   6142: dl,
                   6143: ul,
                   6144: div,
                   6145: fieldset {
                   6146:   margin: 10px 10px 10px 0;
                   6147:   /* overflow: hidden; */
1.693     droeschl 6148: }
1.795     www      6149: 
1.838     bisitz   6150: fieldset > legend {
1.911     bisitz   6151:   font-weight: bold;
                   6152:   padding: 0 5px 0 5px;
1.838     bisitz   6153: }
                   6154: 
1.813     bisitz   6155: #LC_nav_bar {
1.911     bisitz   6156:   float: left;
1.995     raeburn  6157:   background-color: $pgbg_or_bgcolor;
1.966     bisitz   6158:   margin: 0 0 2px 0;
1.807     droeschl 6159: }
                   6160: 
1.916     droeschl 6161: #LC_realm {
                   6162:   margin: 0.2em 0 0 0;
                   6163:   padding: 0;
                   6164:   font-weight: bold;
                   6165:   text-align: center;
1.995     raeburn  6166:   background-color: $pgbg_or_bgcolor;
1.916     droeschl 6167: }
                   6168: 
1.911     bisitz   6169: #LC_nav_bar em {
                   6170:   font-weight: bold;
                   6171:   font-style: normal;
1.807     droeschl 6172: }
                   6173: 
1.897     wenzelju 6174: ol.LC_primary_menu {
1.911     bisitz   6175:   float: right;
1.934     droeschl 6176:   margin: 0;
1.995     raeburn  6177:   background-color: $pgbg_or_bgcolor;
1.807     droeschl 6178: }
                   6179: 
1.852     droeschl 6180: ol#LC_PathBreadcrumbs {
1.911     bisitz   6181:   margin: 0;
1.693     droeschl 6182: }
                   6183: 
1.897     wenzelju 6184: ol.LC_primary_menu li {
1.911     bisitz   6185:   display: inline;
                   6186:   padding: 5px 5px 0 10px;
                   6187:   vertical-align: top;
1.693     droeschl 6188: }
                   6189: 
1.897     wenzelju 6190: ol.LC_primary_menu li img {
1.911     bisitz   6191:   vertical-align: bottom;
1.934     droeschl 6192:   height: 1.1em;
1.693     droeschl 6193: }
                   6194: 
1.897     wenzelju 6195: ol.LC_primary_menu a {
1.911     bisitz   6196:   color: RGB(80, 80, 80);
                   6197:   text-decoration: none;
1.693     droeschl 6198: }
1.795     www      6199: 
1.949     droeschl 6200: ol.LC_primary_menu a.LC_new_message {
                   6201:   font-weight:bold;
                   6202:   color: darkred;
                   6203: }
                   6204: 
1.975     raeburn  6205: ol.LC_docs_parameters {
                   6206:   margin-left: 0;
                   6207:   padding: 0;
                   6208:   list-style: none;
                   6209: }
                   6210: 
                   6211: ol.LC_docs_parameters li {
                   6212:   margin: 0;
                   6213:   padding-right: 20px;
                   6214:   display: inline;
                   6215: }
                   6216: 
1.976     raeburn  6217: ol.LC_docs_parameters li:before {
                   6218:   content: "\\002022 \\0020";
                   6219: }
                   6220: 
                   6221: li.LC_docs_parameters_title {
                   6222:   font-weight: bold;
                   6223: }
                   6224: 
                   6225: ol.LC_docs_parameters li.LC_docs_parameters_title:before {
                   6226:   content: "";
                   6227: }
                   6228: 
1.897     wenzelju 6229: ul#LC_secondary_menu {
1.911     bisitz   6230:   clear: both;
                   6231:   color: $fontmenu;
                   6232:   background: $tabbg;
                   6233:   list-style: none;
                   6234:   padding: 0;
                   6235:   margin: 0;
                   6236:   width: 100%;
1.995     raeburn  6237:   text-align: left;
1.808     droeschl 6238: }
                   6239: 
1.897     wenzelju 6240: ul#LC_secondary_menu li {
1.911     bisitz   6241:   font-weight: bold;
                   6242:   line-height: 1.8em;
                   6243:   padding: 0 0.8em;
                   6244:   border-right: 1px solid black;
                   6245:   display: inline;
                   6246:   vertical-align: middle;
1.807     droeschl 6247: }
                   6248: 
1.847     tempelho 6249: ul.LC_TabContent {
1.911     bisitz   6250:   display:block;
                   6251:   background: $sidebg;
                   6252:   border-bottom: solid 1px $lg_border_color;
                   6253:   list-style:none;
1.1020    raeburn  6254:   margin: -1px -10px 0 -10px;
1.911     bisitz   6255:   padding: 0;
1.693     droeschl 6256: }
                   6257: 
1.795     www      6258: ul.LC_TabContent li,
                   6259: ul.LC_TabContentBigger li {
1.911     bisitz   6260:   float:left;
1.741     harmsja  6261: }
1.795     www      6262: 
1.897     wenzelju 6263: ul#LC_secondary_menu li a {
1.911     bisitz   6264:   color: $fontmenu;
                   6265:   text-decoration: none;
1.693     droeschl 6266: }
1.795     www      6267: 
1.721     harmsja  6268: ul.LC_TabContent {
1.952     onken    6269:   min-height:20px;
1.721     harmsja  6270: }
1.795     www      6271: 
                   6272: ul.LC_TabContent li {
1.911     bisitz   6273:   vertical-align:middle;
1.959     onken    6274:   padding: 0 16px 0 10px;
1.911     bisitz   6275:   background-color:$tabbg;
                   6276:   border-bottom:solid 1px $lg_border_color;
1.1020    raeburn  6277:   border-left: solid 1px $font;
1.721     harmsja  6278: }
1.795     www      6279: 
1.847     tempelho 6280: ul.LC_TabContent .right {
1.911     bisitz   6281:   float:right;
1.847     tempelho 6282: }
                   6283: 
1.911     bisitz   6284: ul.LC_TabContent li a,
                   6285: ul.LC_TabContent li {
                   6286:   color:rgb(47,47,47);
                   6287:   text-decoration:none;
                   6288:   font-size:95%;
                   6289:   font-weight:bold;
1.952     onken    6290:   min-height:20px;
                   6291: }
                   6292: 
1.959     onken    6293: ul.LC_TabContent li a:hover,
                   6294: ul.LC_TabContent li a:focus {
1.952     onken    6295:   color: $button_hover;
1.959     onken    6296:   background:none;
                   6297:   outline:none;
1.952     onken    6298: }
                   6299: 
                   6300: ul.LC_TabContent li:hover {
                   6301:   color: $button_hover;
                   6302:   cursor:pointer;
1.721     harmsja  6303: }
1.795     www      6304: 
1.911     bisitz   6305: ul.LC_TabContent li.active {
1.952     onken    6306:   color: $font;
1.911     bisitz   6307:   background:#FFFFFF url(/adm/lonIcons/open.gif) no-repeat scroll right center;
1.952     onken    6308:   border-bottom:solid 1px #FFFFFF;
                   6309:   cursor: default;
1.744     ehlerst  6310: }
1.795     www      6311: 
1.959     onken    6312: ul.LC_TabContent li.active a {
                   6313:   color:$font;
                   6314:   background:#FFFFFF;
                   6315:   outline: none;
                   6316: }
1.1047  ! raeburn  6317: 
        !          6318: ul.LC_TabContent li.goback {
        !          6319:   float: left;
        !          6320:   border-left: none;
        !          6321: }
        !          6322: 
1.870     tempelho 6323: #maincoursedoc {
1.911     bisitz   6324:   clear:both;
1.870     tempelho 6325: }
                   6326: 
                   6327: ul.LC_TabContentBigger {
1.911     bisitz   6328:   display:block;
                   6329:   list-style:none;
                   6330:   padding: 0;
1.870     tempelho 6331: }
                   6332: 
1.795     www      6333: ul.LC_TabContentBigger li {
1.911     bisitz   6334:   vertical-align:bottom;
                   6335:   height: 30px;
                   6336:   font-size:110%;
                   6337:   font-weight:bold;
                   6338:   color: #737373;
1.841     tempelho 6339: }
                   6340: 
1.957     onken    6341: ul.LC_TabContentBigger li.active {
                   6342:   position: relative;
                   6343:   top: 1px;
                   6344: }
                   6345: 
1.870     tempelho 6346: ul.LC_TabContentBigger li a {
1.911     bisitz   6347:   background:url('/adm/lonIcons/tabbgleft.gif') left bottom no-repeat;
                   6348:   height: 30px;
                   6349:   line-height: 30px;
                   6350:   text-align: center;
                   6351:   display: block;
                   6352:   text-decoration: none;
1.958     onken    6353:   outline: none;  
1.741     harmsja  6354: }
1.795     www      6355: 
1.870     tempelho 6356: ul.LC_TabContentBigger li.active a {
1.911     bisitz   6357:   background:url('/adm/lonIcons/tabbgleft.gif') left top no-repeat;
                   6358:   color:$font;
1.744     ehlerst  6359: }
1.795     www      6360: 
1.870     tempelho 6361: ul.LC_TabContentBigger li b {
1.911     bisitz   6362:   background: url('/adm/lonIcons/tabbgright.gif') no-repeat right bottom;
                   6363:   display: block;
                   6364:   float: left;
                   6365:   padding: 0 30px;
1.957     onken    6366:   border-bottom: 1px solid $lg_border_color;
1.870     tempelho 6367: }
                   6368: 
1.956     onken    6369: ul.LC_TabContentBigger li:hover b {
                   6370:   color:$button_hover;
                   6371: }
                   6372: 
1.870     tempelho 6373: ul.LC_TabContentBigger li.active b {
1.911     bisitz   6374:   background:url('/adm/lonIcons/tabbgright.gif') right top no-repeat;
                   6375:   color:$font;
1.957     onken    6376:   border: 0;
1.741     harmsja  6377: }
1.693     droeschl 6378: 
1.870     tempelho 6379: 
1.862     bisitz   6380: ul.LC_CourseBreadcrumbs {
                   6381:   background: $sidebg;
1.1020    raeburn  6382:   height: 2em;
1.862     bisitz   6383:   padding-left: 10px;
1.1020    raeburn  6384:   margin: 0;
1.862     bisitz   6385:   list-style-position: inside;
                   6386: }
                   6387: 
1.911     bisitz   6388: ol#LC_MenuBreadcrumbs,
1.862     bisitz   6389: ol#LC_PathBreadcrumbs {
1.911     bisitz   6390:   padding-left: 10px;
                   6391:   margin: 0;
1.933     droeschl 6392:   height: 2.5em;  /* equal to #LC_breadcrumbs line-height */
1.693     droeschl 6393: }
                   6394: 
1.911     bisitz   6395: ol#LC_MenuBreadcrumbs li,
                   6396: ol#LC_PathBreadcrumbs li,
1.862     bisitz   6397: ul.LC_CourseBreadcrumbs li {
1.911     bisitz   6398:   display: inline;
1.933     droeschl 6399:   white-space: normal;  
1.693     droeschl 6400: }
                   6401: 
1.823     bisitz   6402: ol#LC_MenuBreadcrumbs li a,
1.862     bisitz   6403: ul.LC_CourseBreadcrumbs li a {
1.911     bisitz   6404:   text-decoration: none;
                   6405:   font-size:90%;
1.693     droeschl 6406: }
1.795     www      6407: 
1.969     droeschl 6408: ol#LC_MenuBreadcrumbs h1 {
                   6409:   display: inline;
                   6410:   font-size: 90%;
                   6411:   line-height: 2.5em;
                   6412:   margin: 0;
                   6413:   padding: 0;
                   6414: }
                   6415: 
1.795     www      6416: ol#LC_PathBreadcrumbs li a {
1.911     bisitz   6417:   text-decoration:none;
                   6418:   font-size:100%;
                   6419:   font-weight:bold;
1.693     droeschl 6420: }
1.795     www      6421: 
1.840     bisitz   6422: .LC_Box {
1.911     bisitz   6423:   border: solid 1px $lg_border_color;
                   6424:   padding: 0 10px 10px 10px;
1.746     neumanie 6425: }
1.795     www      6426: 
1.1020    raeburn  6427: .LC_DocsBox {
                   6428:   border: solid 1px $lg_border_color;
                   6429:   padding: 0 0 10px 10px;
                   6430: }
                   6431: 
1.795     www      6432: .LC_AboutMe_Image {
1.911     bisitz   6433:   float:left;
                   6434:   margin-right:10px;
1.747     neumanie 6435: }
1.795     www      6436: 
                   6437: .LC_Clear_AboutMe_Image {
1.911     bisitz   6438:   clear:left;
1.747     neumanie 6439: }
1.795     www      6440: 
1.721     harmsja  6441: dl.LC_ListStyleClean dt {
1.911     bisitz   6442:   padding-right: 5px;
                   6443:   display: table-header-group;
1.693     droeschl 6444: }
                   6445: 
1.721     harmsja  6446: dl.LC_ListStyleClean dd {
1.911     bisitz   6447:   display: table-row;
1.693     droeschl 6448: }
                   6449: 
1.721     harmsja  6450: .LC_ListStyleClean,
                   6451: .LC_ListStyleSimple,
                   6452: .LC_ListStyleNormal,
1.795     www      6453: .LC_ListStyleSpecial {
1.911     bisitz   6454:   /* display:block; */
                   6455:   list-style-position: inside;
                   6456:   list-style-type: none;
                   6457:   overflow: hidden;
                   6458:   padding: 0;
1.693     droeschl 6459: }
                   6460: 
1.721     harmsja  6461: .LC_ListStyleSimple li,
                   6462: .LC_ListStyleSimple dd,
                   6463: .LC_ListStyleNormal li,
                   6464: .LC_ListStyleNormal dd,
                   6465: .LC_ListStyleSpecial li,
1.795     www      6466: .LC_ListStyleSpecial dd {
1.911     bisitz   6467:   margin: 0;
                   6468:   padding: 5px 5px 5px 10px;
                   6469:   clear: both;
1.693     droeschl 6470: }
                   6471: 
1.721     harmsja  6472: .LC_ListStyleClean li,
                   6473: .LC_ListStyleClean dd {
1.911     bisitz   6474:   padding-top: 0;
                   6475:   padding-bottom: 0;
1.693     droeschl 6476: }
                   6477: 
1.721     harmsja  6478: .LC_ListStyleSimple dd,
1.795     www      6479: .LC_ListStyleSimple li {
1.911     bisitz   6480:   border-bottom: solid 1px $lg_border_color;
1.693     droeschl 6481: }
                   6482: 
1.721     harmsja  6483: .LC_ListStyleSpecial li,
                   6484: .LC_ListStyleSpecial dd {
1.911     bisitz   6485:   list-style-type: none;
                   6486:   background-color: RGB(220, 220, 220);
                   6487:   margin-bottom: 4px;
1.693     droeschl 6488: }
                   6489: 
1.721     harmsja  6490: table.LC_SimpleTable {
1.911     bisitz   6491:   margin:5px;
                   6492:   border:solid 1px $lg_border_color;
1.795     www      6493: }
1.693     droeschl 6494: 
1.721     harmsja  6495: table.LC_SimpleTable tr {
1.911     bisitz   6496:   padding: 0;
                   6497:   border:solid 1px $lg_border_color;
1.693     droeschl 6498: }
1.795     www      6499: 
                   6500: table.LC_SimpleTable thead {
1.911     bisitz   6501:   background:rgb(220,220,220);
1.693     droeschl 6502: }
                   6503: 
1.721     harmsja  6504: div.LC_columnSection {
1.911     bisitz   6505:   display: block;
                   6506:   clear: both;
                   6507:   overflow: hidden;
                   6508:   margin: 0;
1.693     droeschl 6509: }
                   6510: 
1.721     harmsja  6511: div.LC_columnSection>* {
1.911     bisitz   6512:   float: left;
                   6513:   margin: 10px 20px 10px 0;
                   6514:   overflow:hidden;
1.693     droeschl 6515: }
1.721     harmsja  6516: 
1.795     www      6517: table em {
1.911     bisitz   6518:   font-weight: bold;
                   6519:   font-style: normal;
1.748     schulted 6520: }
1.795     www      6521: 
1.779     bisitz   6522: table.LC_tableBrowseRes,
1.795     www      6523: table.LC_tableOfContent {
1.911     bisitz   6524:   border:none;
                   6525:   border-spacing: 1px;
                   6526:   padding: 3px;
                   6527:   background-color: #FFFFFF;
                   6528:   font-size: 90%;
1.753     droeschl 6529: }
1.789     droeschl 6530: 
1.911     bisitz   6531: table.LC_tableOfContent {
                   6532:   border-collapse: collapse;
1.789     droeschl 6533: }
                   6534: 
1.771     droeschl 6535: table.LC_tableBrowseRes a,
1.768     schulted 6536: table.LC_tableOfContent a {
1.911     bisitz   6537:   background-color: transparent;
                   6538:   text-decoration: none;
1.753     droeschl 6539: }
                   6540: 
1.795     www      6541: table.LC_tableOfContent img {
1.911     bisitz   6542:   border: none;
                   6543:   height: 1.3em;
                   6544:   vertical-align: text-bottom;
                   6545:   margin-right: 0.3em;
1.753     droeschl 6546: }
1.757     schulted 6547: 
1.795     www      6548: a#LC_content_toolbar_firsthomework {
1.911     bisitz   6549:   background-image:url(/res/adm/pages/open-first-problem.gif);
1.774     ehlerst  6550: }
                   6551: 
1.795     www      6552: a#LC_content_toolbar_everything {
1.911     bisitz   6553:   background-image:url(/res/adm/pages/show-all.gif);
1.774     ehlerst  6554: }
                   6555: 
1.795     www      6556: a#LC_content_toolbar_uncompleted {
1.911     bisitz   6557:   background-image:url(/res/adm/pages/show-incomplete-problems.gif);
1.774     ehlerst  6558: }
                   6559: 
1.795     www      6560: #LC_content_toolbar_clearbubbles {
1.911     bisitz   6561:   background-image:url(/res/adm/pages/mark-discussionentries-read.gif);
1.774     ehlerst  6562: }
                   6563: 
1.795     www      6564: a#LC_content_toolbar_changefolder {
1.911     bisitz   6565:   background : url(/res/adm/pages/close-all-folders.gif) top center ;
1.757     schulted 6566: }
                   6567: 
1.795     www      6568: a#LC_content_toolbar_changefolder_toggled {
1.911     bisitz   6569:   background-image:url(/res/adm/pages/open-all-folders.gif);
1.757     schulted 6570: }
                   6571: 
1.1043    raeburn  6572: a#LC_content_toolbar_edittoplevel {
                   6573:   background-image:url(/res/adm/pages/edittoplevel.gif);
                   6574: }
                   6575: 
1.795     www      6576: ul#LC_toolbar li a:hover {
1.911     bisitz   6577:   background-position: bottom center;
1.757     schulted 6578: }
                   6579: 
1.795     www      6580: ul#LC_toolbar {
1.911     bisitz   6581:   padding: 0;
                   6582:   margin: 2px;
                   6583:   list-style:none;
                   6584:   position:relative;
                   6585:   background-color:white;
1.757     schulted 6586: }
                   6587: 
1.795     www      6588: ul#LC_toolbar li {
1.911     bisitz   6589:   border:1px solid white;
                   6590:   padding: 0;
                   6591:   margin: 0;
                   6592:   float: left;
                   6593:   display:inline;
                   6594:   vertical-align:middle;
                   6595: }
1.757     schulted 6596: 
1.783     amueller 6597: 
1.795     www      6598: a.LC_toolbarItem {
1.911     bisitz   6599:   display:block;
                   6600:   padding: 0;
                   6601:   margin: 0;
                   6602:   height: 32px;
                   6603:   width: 32px;
                   6604:   color:white;
                   6605:   border: none;
                   6606:   background-repeat:no-repeat;
                   6607:   background-color:transparent;
1.757     schulted 6608: }
                   6609: 
1.915     droeschl 6610: ul.LC_funclist {
                   6611:     margin: 0;
                   6612:     padding: 0.5em 1em 0.5em 0;
                   6613: }
                   6614: 
1.933     droeschl 6615: ul.LC_funclist > li:first-child {
                   6616:     font-weight:bold; 
                   6617:     margin-left:0.8em;
                   6618: }
                   6619: 
1.915     droeschl 6620: ul.LC_funclist + ul.LC_funclist {
                   6621:     /* 
                   6622:        left border as a seperator if we have more than
                   6623:        one list 
                   6624:     */
                   6625:     border-left: 1px solid $sidebg;
                   6626:     /* 
                   6627:        this hides the left border behind the border of the 
                   6628:        outer box if element is wrapped to the next 'line' 
                   6629:     */
                   6630:     margin-left: -1px;
                   6631: }
                   6632: 
1.843     bisitz   6633: ul.LC_funclist li {
1.915     droeschl 6634:   display: inline;
1.782     bisitz   6635:   white-space: nowrap;
1.915     droeschl 6636:   margin: 0 0 0 25px;
                   6637:   line-height: 150%;
1.782     bisitz   6638: }
                   6639: 
1.974     wenzelju 6640: .LC_hidden {
                   6641:   display: none;
                   6642: }
                   6643: 
1.1030    www      6644: .LCmodal-overlay {
                   6645: 		position:fixed;
                   6646: 		top:0;
                   6647: 		right:0;
                   6648: 		bottom:0;
                   6649: 		left:0;
                   6650: 		height:100%;
                   6651: 		width:100%;
                   6652: 		margin:0;
                   6653: 		padding:0;
                   6654: 		background:#999;
                   6655: 		opacity:.75;
                   6656: 		filter: alpha(opacity=75);
                   6657: 		-moz-opacity: 0.75;
                   6658: 		z-index:101;
                   6659: }
                   6660: 
                   6661: * html .LCmodal-overlay {   
                   6662: 		position: absolute;
                   6663: 		height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
                   6664: }
                   6665: 
                   6666: .LCmodal-window {
                   6667: 		position:fixed;
                   6668: 		top:50%;
                   6669: 		left:50%;
                   6670: 		margin:0;
                   6671: 		padding:0;
                   6672: 		z-index:102;
                   6673: 	}
                   6674: 
                   6675: * html .LCmodal-window {
                   6676: 		position:absolute;
                   6677: }
                   6678: 
                   6679: .LCclose-window {
                   6680: 		position:absolute;
                   6681: 		width:32px;
                   6682: 		height:32px;
                   6683: 		right:8px;
                   6684: 		top:8px;
                   6685: 		background:transparent url('/res/adm/pages/process-stop.png') no-repeat scroll right top;
                   6686: 		text-indent:-99999px;
                   6687: 		overflow:hidden;
                   6688: 		cursor:pointer;
                   6689: }
                   6690: 
1.343     albertel 6691: END
                   6692: }
                   6693: 
1.306     albertel 6694: =pod
                   6695: 
                   6696: =item * &headtag()
                   6697: 
                   6698: Returns a uniform footer for LON-CAPA web pages.
                   6699: 
1.307     albertel 6700: Inputs: $title - optional title for the head
                   6701:         $head_extra - optional extra HTML to put inside the <head>
1.315     albertel 6702:         $args - optional arguments
1.319     albertel 6703:             force_register - if is true call registerurl so the remote is 
                   6704:                              informed
1.415     albertel 6705:             redirect       -> array ref of
                   6706:                                    1- seconds before redirect occurs
                   6707:                                    2- url to redirect to
                   6708:                                    3- whether the side effect should occur
1.315     albertel 6709:                            (side effect of setting 
                   6710:                                $env{'internal.head.redirect'} to the url 
                   6711:                                redirected too)
1.352     albertel 6712:             domain         -> force to color decorate a page for a specific
                   6713:                                domain
                   6714:             function       -> force usage of a specific rolish color scheme
                   6715:             bgcolor        -> override the default page bgcolor
1.460     albertel 6716:             no_auto_mt_title
                   6717:                            -> prevent &mt()ing the title arg
1.464     albertel 6718: 
1.306     albertel 6719: =cut
                   6720: 
                   6721: sub headtag {
1.313     albertel 6722:     my ($title,$head_extra,$args) = @_;
1.306     albertel 6723:     
1.363     albertel 6724:     my $function = $args->{'function'} || &get_users_function();
                   6725:     my $domain   = $args->{'domain'}   || &determinedomain();
                   6726:     my $bgcolor  = $args->{'bgcolor'}  || &designparm($function.'.pgbg',$domain);
1.418     albertel 6727:     my $url = join(':',$env{'user.name'},$env{'user.domain'},
1.458     albertel 6728: 		   $Apache::lonnet::perlvar{'lonVersion'},
1.531     albertel 6729: 		   #time(),
1.418     albertel 6730: 		   $env{'environment.color.timestamp'},
1.363     albertel 6731: 		   $function,$domain,$bgcolor);
                   6732: 
1.369     www      6733:     $url = '/adm/css/'.&escape($url).'.css';
1.363     albertel 6734: 
1.308     albertel 6735:     my $result =
                   6736: 	'<head>'.
1.461     albertel 6737: 	&font_settings();
1.319     albertel 6738: 
1.461     albertel 6739:     if (!$args->{'frameset'}) {
                   6740: 	$result .= &Apache::lonhtmlcommon::htmlareaheaders();
                   6741:     }
1.962     droeschl 6742:     if ($args->{'force_register'} && $env{'request.noversionuri'} !~ m{^/res/adm/pages/}) {
                   6743:         $result .= Apache::lonxml::display_title();
1.319     albertel 6744:     }
1.436     albertel 6745:     if (!$args->{'no_nav_bar'} 
                   6746: 	&& !$args->{'only_body'}
                   6747: 	&& !$args->{'frameset'}) {
                   6748: 	$result .= &help_menu_js();
1.1032    www      6749:         $result.=&modal_window();
1.1038    www      6750:         $result.=&togglebox_script();
1.1034    www      6751:         $result.=&wishlist_window();
1.1041    www      6752:         $result.=&LCprogressbarUpdate_script();
1.1034    www      6753:     } else {
                   6754:         if ($args->{'add_modal'}) {
                   6755:            $result.=&modal_window();
                   6756:         }
                   6757:         if ($args->{'add_wishlist'}) {
                   6758:            $result.=&wishlist_window();
                   6759:         }
1.1038    www      6760:         if ($args->{'add_togglebox'}) {
                   6761:            $result.=&togglebox_script();
                   6762:         }
1.1041    www      6763:         if ($args->{'add_progressbar'}) {
                   6764:            $result.=&LCprogressbarUpdate_script();
                   6765:         }
1.436     albertel 6766:     }
1.314     albertel 6767:     if (ref($args->{'redirect'})) {
1.414     albertel 6768: 	my ($time,$url,$inhibit_continue) = @{$args->{'redirect'}};
1.315     albertel 6769: 	$url = &Apache::lonenc::check_encrypt($url);
1.414     albertel 6770: 	if (!$inhibit_continue) {
                   6771: 	    $env{'internal.head.redirect'} = $url;
                   6772: 	}
1.313     albertel 6773: 	$result.=<<ADDMETA
                   6774: <meta http-equiv="pragma" content="no-cache" />
1.344     albertel 6775: <meta http-equiv="Refresh" content="$time; url=$url" />
1.313     albertel 6776: ADDMETA
                   6777:     }
1.306     albertel 6778:     if (!defined($title)) {
                   6779: 	$title = 'The LearningOnline Network with CAPA';
                   6780:     }
1.460     albertel 6781:     if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }
                   6782:     $result .= '<title> LON-CAPA '.$title.'</title>'
1.414     albertel 6783: 	.'<link rel="stylesheet" type="text/css" href="'.$url.'" />'
                   6784: 	.$head_extra;
1.962     droeschl 6785:     return $result.'</head>';
1.306     albertel 6786: }
                   6787: 
                   6788: =pod
                   6789: 
1.340     albertel 6790: =item * &font_settings()
                   6791: 
                   6792: Returns neccessary <meta> to set the proper encoding
                   6793: 
                   6794: Inputs: none
                   6795: 
                   6796: =cut
                   6797: 
                   6798: sub font_settings {
                   6799:     my $headerstring='';
1.647     www      6800:     if (!$env{'browser.mathml'} && $env{'browser.unicode'}) {
1.340     albertel 6801: 	$headerstring.=
                   6802: 	    '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
                   6803:     }
                   6804:     return $headerstring;
                   6805: }
                   6806: 
1.341     albertel 6807: =pod
                   6808: 
                   6809: =item * &xml_begin()
                   6810: 
                   6811: Returns the needed doctype and <html>
                   6812: 
                   6813: Inputs: none
                   6814: 
                   6815: =cut
                   6816: 
                   6817: sub xml_begin {
                   6818:     my $output='';
                   6819: 
                   6820:     if ($env{'browser.mathml'}) {
                   6821: 	$output='<?xml version="1.0"?>'
                   6822:             #.'<?xml-stylesheet type="text/css" href="/adm/MathML/mathml.css"?>'."\n"
                   6823: #            .'<!DOCTYPE html SYSTEM "/adm/MathML/mathml.dtd" '
                   6824:             
                   6825: #	    .'<!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">] >'
                   6826: 	    .'<!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">'
                   6827:             .'<html xmlns:math="http://www.w3.org/1998/Math/MathML" ' 
                   6828: 	    .'xmlns="http://www.w3.org/1999/xhtml">';
                   6829:     } else {
1.849     bisitz   6830: 	$output='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'
                   6831:            .'<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">';
1.341     albertel 6832:     }
                   6833:     return $output;
                   6834: }
1.340     albertel 6835: 
                   6836: =pod
                   6837: 
1.306     albertel 6838: =item * &start_page()
                   6839: 
                   6840: Returns a complete <html> .. <body> section for LON-CAPA web pages.
                   6841: 
1.648     raeburn  6842: Inputs:
                   6843: 
                   6844: =over 4
                   6845: 
                   6846: $title - optional title for the page
                   6847: 
                   6848: $head_extra - optional extra HTML to incude inside the <head>
                   6849: 
                   6850: $args - additional optional args supported are:
                   6851: 
                   6852: =over 8
                   6853: 
                   6854:              only_body      -> is true will set &bodytag() onlybodytag
1.317     albertel 6855:                                     arg on
1.814     bisitz   6856:              no_nav_bar     -> is true will set &bodytag() no_nav_bar arg on
1.648     raeburn  6857:              add_entries    -> additional attributes to add to the  <body>
                   6858:              domain         -> force to color decorate a page for a 
1.317     albertel 6859:                                     specific domain
1.648     raeburn  6860:              function       -> force usage of a specific rolish color
1.317     albertel 6861:                                     scheme
1.648     raeburn  6862:              redirect       -> see &headtag()
                   6863:              bgcolor        -> override the default page bg color
                   6864:              js_ready       -> return a string ready for being used in 
1.317     albertel 6865:                                     a javascript writeln
1.648     raeburn  6866:              html_encode    -> return a string ready for being used in 
1.320     albertel 6867:                                     a html attribute
1.648     raeburn  6868:              force_register -> if is true will turn on the &bodytag()
1.317     albertel 6869:                                     $forcereg arg
1.648     raeburn  6870:              frameset       -> if true will start with a <frameset>
1.330     albertel 6871:                                     rather than <body>
1.648     raeburn  6872:              skip_phases    -> hash ref of 
1.338     albertel 6873:                                     head -> skip the <html><head> generation
                   6874:                                     body -> skip all <body> generation
1.648     raeburn  6875:              no_auto_mt_title -> prevent &mt()ing the title arg
                   6876:              inherit_jsmath -> when creating popup window in a page,
                   6877:                                     should it have jsmath forced on by the
                   6878:                                     current page
1.867     kalberla 6879:              bread_crumbs ->             Array containing breadcrumbs
1.983     raeburn  6880:              bread_crumbs_component ->  if exists show it as headline else show only the breadcrumbs
1.361     albertel 6881: 
1.648     raeburn  6882: =back
1.460     albertel 6883: 
1.648     raeburn  6884: =back
1.562     albertel 6885: 
1.306     albertel 6886: =cut
                   6887: 
                   6888: sub start_page {
1.309     albertel 6889:     my ($title,$head_extra,$args) = @_;
1.318     albertel 6890:     #&Apache::lonnet::logthis("start_page ".join(':',caller(0)));
1.319     albertel 6891: 
1.315     albertel 6892:     $env{'internal.start_page'}++;
1.338     albertel 6893:     my $result;
1.964     droeschl 6894: 
1.338     albertel 6895:     if (! exists($args->{'skip_phases'}{'head'}) ) {
1.1030    www      6896:         $result .= &xml_begin() . &headtag($title, $head_extra, $args);
1.338     albertel 6897:     }
                   6898:     
                   6899:     if (! exists($args->{'skip_phases'}{'body'}) ) {
                   6900: 	if ($args->{'frameset'}) {
                   6901: 	    my $attr_string = &make_attr_string($args->{'force_register'},
                   6902: 						$args->{'add_entries'});
                   6903: 	    $result .= "\n<frameset $attr_string>\n";
1.831     bisitz   6904:         } else {
                   6905:             $result .=
                   6906:                 &bodytag($title, 
                   6907:                          $args->{'function'},       $args->{'add_entries'},
                   6908:                          $args->{'only_body'},      $args->{'domain'},
                   6909:                          $args->{'force_register'}, $args->{'no_nav_bar'},
1.962     droeschl 6910:                          $args->{'bgcolor'},        $args);
1.831     bisitz   6911:         }
1.330     albertel 6912:     }
1.338     albertel 6913: 
1.315     albertel 6914:     if ($args->{'js_ready'}) {
1.713     kaisler  6915: 		$result = &js_ready($result);
1.315     albertel 6916:     }
1.320     albertel 6917:     if ($args->{'html_encode'}) {
1.713     kaisler  6918: 		$result = &html_encode($result);
                   6919:     }
                   6920: 
1.813     bisitz   6921:     # Preparation for new and consistent functionlist at top of screen
                   6922:     # if ($args->{'functionlist'}) {
                   6923:     #            $result .= &build_functionlist();
                   6924:     #}
                   6925: 
1.964     droeschl 6926:     # Don't add anything more if only_body wanted or in const space
                   6927:     return $result if    $args->{'only_body'} 
                   6928:                       || $env{'request.state'} eq 'construct';
1.813     bisitz   6929: 
                   6930:     #Breadcrumbs
1.758     kaisler  6931:     if (exists($args->{'bread_crumbs'}) or exists($args->{'bread_crumbs_component'})) {
                   6932: 		&Apache::lonhtmlcommon::clear_breadcrumbs();
                   6933: 		#if any br links exists, add them to the breadcrumbs
                   6934: 		if (exists($args->{'bread_crumbs'}) and ref($args->{'bread_crumbs'}) eq 'ARRAY') {         
                   6935: 			foreach my $crumb (@{$args->{'bread_crumbs'}}){
                   6936: 				&Apache::lonhtmlcommon::add_breadcrumb($crumb);
                   6937: 			}
                   6938: 		}
                   6939: 
                   6940: 		#if bread_crumbs_component exists show it as headline else show only the breadcrumbs
                   6941: 		if(exists($args->{'bread_crumbs_component'})){
                   6942: 			$result .= &Apache::lonhtmlcommon::breadcrumbs($args->{'bread_crumbs_component'});
                   6943: 		}else{
                   6944: 			$result .= &Apache::lonhtmlcommon::breadcrumbs();
                   6945: 		}
1.320     albertel 6946:     }
1.315     albertel 6947:     return $result;
1.306     albertel 6948: }
                   6949: 
                   6950: sub end_page {
1.315     albertel 6951:     my ($args) = @_;
                   6952:     $env{'internal.end_page'}++;
1.330     albertel 6953:     my $result;
1.335     albertel 6954:     if ($args->{'discussion'}) {
                   6955: 	my ($target,$parser);
                   6956: 	if (ref($args->{'discussion'})) {
                   6957: 	    ($target,$parser) =($args->{'discussion'}{'target'},
                   6958: 				$args->{'discussion'}{'parser'});
                   6959: 	}
                   6960: 	$result .= &Apache::lonxml::xmlend($target,$parser);
                   6961:     }
1.330     albertel 6962:     if ($args->{'frameset'}) {
                   6963: 	$result .= '</frameset>';
                   6964:     } else {
1.635     raeburn  6965: 	$result .= &endbodytag($args);
1.330     albertel 6966:     }
                   6967:     $result .= "\n</html>";
                   6968: 
1.315     albertel 6969:     if ($args->{'js_ready'}) {
1.317     albertel 6970: 	$result = &js_ready($result);
1.315     albertel 6971:     }
1.335     albertel 6972: 
1.320     albertel 6973:     if ($args->{'html_encode'}) {
                   6974: 	$result = &html_encode($result);
                   6975:     }
1.335     albertel 6976: 
1.315     albertel 6977:     return $result;
                   6978: }
                   6979: 
1.1034    www      6980: sub wishlist_window {
                   6981:     return(<<'ENDWISHLIST');
1.1046    raeburn  6982: <script type="text/javascript">
1.1034    www      6983: // <![CDATA[
                   6984: // <!-- BEGIN LON-CAPA Internal
                   6985: function set_wishlistlink(title, path) {
                   6986:     if (!title) {
                   6987:         title = document.title;
                   6988:         title = title.replace(/^LON-CAPA /,'');
                   6989:     }
                   6990:     if (!path) {
                   6991:         path = location.pathname;
                   6992:     }
                   6993:     Win = window.open('/adm/wishlist?mode=newLink&setTitle='+title+'&setPath='+path,
                   6994:                       'wishlistNewLink','width=560,height=350,scrollbars=0');
                   6995: }
                   6996: // END LON-CAPA Internal -->
                   6997: // ]]>
                   6998: </script>
                   6999: ENDWISHLIST
                   7000: }
                   7001: 
1.1030    www      7002: sub modal_window {
                   7003:     return(<<'ENDMODAL');
1.1046    raeburn  7004: <script type="text/javascript">
1.1030    www      7005: // <![CDATA[
                   7006: // <!-- BEGIN LON-CAPA Internal
                   7007: var modalWindow = {
                   7008: 	parent:"body",
                   7009: 	windowId:null,
                   7010: 	content:null,
                   7011: 	width:null,
                   7012: 	height:null,
                   7013: 	close:function()
                   7014: 	{
                   7015: 	        $(".LCmodal-window").remove();
                   7016: 	        $(".LCmodal-overlay").remove();
                   7017: 	},
                   7018: 	open:function()
                   7019: 	{
                   7020: 		var modal = "";
                   7021: 		modal += "<div class=\"LCmodal-overlay\"></div>";
                   7022: 		modal += "<div id=\"" + this.windowId + "\" class=\"LCmodal-window\" style=\"width:" + this.width + "px; height:" + this.height + "px; margin-top:-" + (this.height / 2) + "px; margin-left:-" + (this.width / 2) + "px;\">";
                   7023: 		modal += this.content;
                   7024: 		modal += "</div>";	
                   7025: 
                   7026: 		$(this.parent).append(modal);
                   7027: 
                   7028: 		$(".LCmodal-window").append("<a class=\"LCclose-window\"></a>");
                   7029: 		$(".LCclose-window").click(function(){modalWindow.close();});
                   7030: 		$(".LCmodal-overlay").click(function(){modalWindow.close();});
                   7031: 	}
                   7032: };
1.1031    www      7033: 	var openMyModal = function(source,width,height,scrolling)
1.1030    www      7034: 	{
                   7035: 		modalWindow.windowId = "myModal";
                   7036: 		modalWindow.width = width;
                   7037: 		modalWindow.height = height;
1.1031    www      7038: 		modalWindow.content = "<iframe width='"+width+"' height='"+height+"' frameborder='0' scrolling='"+scrolling+"' allowtransparency='true' src='" + source + "'>&lt/iframe>";
1.1030    www      7039: 		modalWindow.open();
                   7040: 	};	
                   7041: // END LON-CAPA Internal -->
                   7042: // ]]>
                   7043: </script>
                   7044: ENDMODAL
                   7045: }
                   7046: 
                   7047: sub modal_link {
1.1031    www      7048:     my ($link,$linktext,$width,$height,$target,$scrolling)=@_;
1.1030    www      7049:     unless ($width) { $width=480; }
                   7050:     unless ($height) { $height=400; }
1.1031    www      7051:     unless ($scrolling) { $scrolling='yes'; }
                   7052:     return '<a href="'.$link.'" target="'.$target.'" onclick="openMyModal(\''.$link.'\','.$width.','.$height.',\''.$scrolling.'\'); return false;">'.
                   7053:            $linktext.'</a>';
1.1030    www      7054: }
                   7055: 
1.1032    www      7056: sub modal_adhoc_script {
                   7057:     my ($funcname,$width,$height,$content)=@_;
                   7058:     return (<<ENDADHOC);
1.1046    raeburn  7059: <script type="text/javascript">
1.1032    www      7060: // <![CDATA[
                   7061:         var $funcname = function()
                   7062:         {
                   7063:                 modalWindow.windowId = "myModal";
                   7064:                 modalWindow.width = $width;
                   7065:                 modalWindow.height = $height;
                   7066:                 modalWindow.content = '$content';
                   7067:                 modalWindow.open();
                   7068:         };  
                   7069: // ]]>
                   7070: </script>
                   7071: ENDADHOC
                   7072: }
                   7073: 
1.1041    www      7074: sub modal_adhoc_inner {
                   7075:     my ($funcname,$width,$height,$content)=@_;
                   7076:     my $innerwidth=$width-20;
                   7077:     $content=&js_ready(
1.1042    www      7078:                &start_page('Dialog',undef,{'only_body'=>1,'bgcolor'=>'#FFFFFF'}).
1.1041    www      7079:                  &start_scrollbox($width.'px',$innerwidth.'px',$height.'px').
                   7080:                     $content.
                   7081:                  &end_scrollbox().
                   7082:                &end_page()
                   7083:              );
                   7084:     return &modal_adhoc_script($funcname,$width,$height,$content);
                   7085: }
                   7086: 
                   7087: sub modal_adhoc_window {
                   7088:     my ($funcname,$width,$height,$content,$linktext)=@_;
                   7089:     return &modal_adhoc_inner($funcname,$width,$height,$content).
                   7090:            "<a href=\"javascript:$funcname();void(0);\">".$linktext."</a>";
                   7091: }
                   7092: 
                   7093: sub modal_adhoc_launch {
                   7094:     my ($funcname,$width,$height,$content)=@_;
                   7095:     return &modal_adhoc_inner($funcname,$width,$height,$content).(<<ENDLAUNCH);
                   7096: <script type="text/javascript">
                   7097: // <![CDATA[
                   7098: $funcname();
                   7099: // ]]>
                   7100: </script>
                   7101: ENDLAUNCH
                   7102: }
                   7103: 
                   7104: sub modal_adhoc_close {
                   7105:     return (<<ENDCLOSE);
                   7106: <script type="text/javascript">
                   7107: // <![CDATA[
                   7108: modalWindow.close();
                   7109: // ]]>
                   7110: </script>
                   7111: ENDCLOSE
                   7112: }
                   7113: 
1.1038    www      7114: sub togglebox_script {
                   7115:    return(<<ENDTOGGLE);
                   7116: <script type="text/javascript"> 
                   7117: // <![CDATA[
                   7118: function LCtoggleDisplay(id,hidetext,showtext) {
                   7119:    link = document.getElementById(id + "link").childNodes[0];
                   7120:    with (document.getElementById(id).style) {
                   7121:       if (display == "none" ) {
                   7122:           display = "inline";
                   7123:           link.nodeValue = hidetext;
                   7124:         } else {
                   7125:           display = "none";
                   7126:           link.nodeValue = showtext;
                   7127:        }
                   7128:    }
                   7129: }
                   7130: // ]]>
                   7131: </script>
                   7132: ENDTOGGLE
                   7133: }
                   7134: 
1.1039    www      7135: sub start_togglebox {
                   7136:     my ($id,$heading,$headerbg,$hidetext,$showtext)=@_;
                   7137:     unless ($heading) { $heading=''; } else { $heading.=' '; }
                   7138:     unless ($showtext) { $showtext=&mt('show'); }
                   7139:     unless ($hidetext) { $hidetext=&mt('hide'); }
                   7140:     unless ($headerbg) { $headerbg='#FFFFFF'; }
                   7141:     return &start_data_table().
                   7142:            &start_data_table_header_row().
                   7143:            '<td bgcolor="'.$headerbg.'">'.$heading.
                   7144:            '[<a id="'.$id.'link" href="javascript:LCtoggleDisplay(\''.$id.'\',\''.$hidetext.'\',\''.
                   7145:            $showtext.'\')">'.$showtext.'</a>]</td>'.
                   7146:            &end_data_table_header_row().
                   7147:            '<tr id="'.$id.'" style="display:none""><td>';
                   7148: }
                   7149: 
                   7150: sub end_togglebox {
                   7151:     return '</td></tr>'.&end_data_table();
                   7152: }
                   7153: 
1.1041    www      7154: sub LCprogressbar_script {
1.1045    www      7155:    my ($id)=@_;
1.1041    www      7156:    return(<<ENDPROGRESS);
                   7157: <script type="text/javascript">
                   7158: // <![CDATA[
1.1045    www      7159: \$('#progressbar$id').progressbar({
1.1041    www      7160:   value: 0,
                   7161:   change: function(event, ui) {
                   7162:     var newVal = \$(this).progressbar('option', 'value');
                   7163:     \$('.pblabel', this).text(LCprogressTxt);
                   7164:   }
                   7165: });
                   7166: // ]]>
                   7167: </script>
                   7168: ENDPROGRESS
                   7169: }
                   7170: 
                   7171: sub LCprogressbarUpdate_script {
                   7172:    return(<<ENDPROGRESSUPDATE);
                   7173: <style type="text/css">
                   7174: .ui-progressbar { position:relative; }
                   7175: .pblabel { position: absolute; width: 100%; text-align: center; line-height: 1.9em; }
                   7176: </style>
                   7177: <script type="text/javascript">
                   7178: // <![CDATA[
1.1045    www      7179: var LCprogressTxt='---';
                   7180: 
                   7181: function LCupdateProgress(percent,progresstext,id) {
1.1041    www      7182:    LCprogressTxt=progresstext;
1.1045    www      7183:    \$('#progressbar'+id).progressbar('value',percent);
1.1041    www      7184: }
                   7185: // ]]>
                   7186: </script>
                   7187: ENDPROGRESSUPDATE
                   7188: }
                   7189: 
1.1042    www      7190: my $LClastpercent;
1.1045    www      7191: my $LCidcnt;
                   7192: my $LCcurrentid;
1.1042    www      7193: 
1.1041    www      7194: sub LCprogressbar {
1.1042    www      7195:     my ($r)=(@_);
                   7196:     $LClastpercent=0;
1.1045    www      7197:     $LCidcnt++;
                   7198:     $LCcurrentid=$$.'_'.$LCidcnt;
1.1041    www      7199:     my $starting=&mt('Starting');
                   7200:     my $content=(<<ENDPROGBAR);
                   7201: <p>
1.1045    www      7202:   <div id="progressbar$LCcurrentid">
1.1041    www      7203:     <span class="pblabel">$starting</span>
                   7204:   </div>
                   7205: </p>
                   7206: ENDPROGBAR
1.1045    www      7207:     &r_print($r,$content.&LCprogressbar_script($LCcurrentid));
1.1041    www      7208: }
                   7209: 
                   7210: sub LCprogressbarUpdate {
1.1042    www      7211:     my ($r,$val,$text)=@_;
                   7212:     unless ($val) { 
                   7213:        if ($LClastpercent) {
                   7214:            $val=$LClastpercent;
                   7215:        } else {
                   7216:            $val=0;
                   7217:        }
                   7218:     }
1.1041    www      7219:     if ($val<0) { $val=0; }
                   7220:     if ($val>100) { $val=0; }
1.1042    www      7221:     $LClastpercent=$val;
1.1041    www      7222:     unless ($text) { $text=$val.'%'; }
                   7223:     $text=&js_ready($text);
1.1044    www      7224:     &r_print($r,<<ENDUPDATE);
1.1041    www      7225: <script type="text/javascript">
                   7226: // <![CDATA[
1.1045    www      7227: LCupdateProgress($val,'$text','$LCcurrentid');
1.1041    www      7228: // ]]>
                   7229: </script>
                   7230: ENDUPDATE
1.1035    www      7231: }
                   7232: 
1.1042    www      7233: sub LCprogressbarClose {
                   7234:     my ($r)=@_;
                   7235:     $LClastpercent=0;
1.1044    www      7236:     &r_print($r,<<ENDCLOSE);
1.1042    www      7237: <script type="text/javascript">
                   7238: // <![CDATA[
1.1045    www      7239: \$("#progressbar$LCcurrentid").hide('slow'); 
1.1042    www      7240: // ]]>
                   7241: </script>
                   7242: ENDCLOSE
1.1044    www      7243: }
                   7244: 
                   7245: sub r_print {
                   7246:     my ($r,$to_print)=@_;
                   7247:     if ($r) {
                   7248:       $r->print($to_print);
                   7249:       $r->rflush();
                   7250:     } else {
                   7251:       print($to_print);
                   7252:     }
1.1042    www      7253: }
                   7254: 
1.320     albertel 7255: sub html_encode {
                   7256:     my ($result) = @_;
                   7257: 
1.322     albertel 7258:     $result = &HTML::Entities::encode($result,'<>&"');
1.320     albertel 7259:     
                   7260:     return $result;
                   7261: }
1.1044    www      7262: 
1.317     albertel 7263: sub js_ready {
                   7264:     my ($result) = @_;
                   7265: 
1.323     albertel 7266:     $result =~ s/[\n\r]/ /xmsg;
                   7267:     $result =~ s/\\/\\\\/xmsg;
                   7268:     $result =~ s/'/\\'/xmsg;
1.372     albertel 7269:     $result =~ s{</}{<\\/}xmsg;
1.317     albertel 7270:     
                   7271:     return $result;
                   7272: }
                   7273: 
1.315     albertel 7274: sub validate_page {
                   7275:     if (  exists($env{'internal.start_page'})
1.316     albertel 7276: 	  &&     $env{'internal.start_page'} > 1) {
                   7277: 	&Apache::lonnet::logthis('start_page called multiple times '.
1.318     albertel 7278: 				 $env{'internal.start_page'}.' '.
1.316     albertel 7279: 				 $ENV{'request.filename'});
1.315     albertel 7280:     }
                   7281:     if (  exists($env{'internal.end_page'})
1.316     albertel 7282: 	  &&     $env{'internal.end_page'} > 1) {
                   7283: 	&Apache::lonnet::logthis('end_page called multiple times '.
1.318     albertel 7284: 				 $env{'internal.end_page'}.' '.
1.316     albertel 7285: 				 $env{'request.filename'});
1.315     albertel 7286:     }
                   7287:     if (     exists($env{'internal.start_page'})
                   7288: 	&& ! exists($env{'internal.end_page'})) {
1.316     albertel 7289: 	&Apache::lonnet::logthis('start_page called without end_page '.
                   7290: 				 $env{'request.filename'});
1.315     albertel 7291:     }
                   7292:     if (   ! exists($env{'internal.start_page'})
                   7293: 	&&   exists($env{'internal.end_page'})) {
1.316     albertel 7294: 	&Apache::lonnet::logthis('end_page called without start_page'.
                   7295: 				 $env{'request.filename'});
1.315     albertel 7296:     }
1.306     albertel 7297: }
1.315     albertel 7298: 
1.996     www      7299: 
                   7300: sub start_scrollbox {
1.1018    raeburn  7301:     my ($outerwidth,$width,$height,$id)=@_;
1.998     raeburn  7302:     unless ($outerwidth) { $outerwidth='520px'; }
                   7303:     unless ($width) { $width='500px'; }
                   7304:     unless ($height) { $height='200px'; }
1.1020    raeburn  7305:     my ($table_id,$div_id);
1.1018    raeburn  7306:     if ($id ne '') {
1.1020    raeburn  7307:         $table_id = " id='table_$id'";
                   7308:         $div_id = " id='div_$id'";
1.1018    raeburn  7309:     }
1.1020    raeburn  7310:     return "<table style='width: $outerwidth; border: 1px solid none;'$table_id><tr><td style='width: $width;' bgcolor='#FFFFFF'><div style='overflow:auto; width:$width; height: $height;'$div_id>";
1.996     www      7311: }
                   7312: 
                   7313: sub end_scrollbox {
1.1036    www      7314:     return '</div></td></tr></table>';
1.996     www      7315: }
                   7316: 
1.318     albertel 7317: sub simple_error_page {
                   7318:     my ($r,$title,$msg) = @_;
                   7319:     my $page =
                   7320: 	&Apache::loncommon::start_page($title).
                   7321: 	&mt($msg).
                   7322: 	&Apache::loncommon::end_page();
                   7323:     if (ref($r)) {
                   7324: 	$r->print($page);
1.327     albertel 7325: 	return;
1.318     albertel 7326:     }
                   7327:     return $page;
                   7328: }
1.347     albertel 7329: 
                   7330: {
1.610     albertel 7331:     my @row_count;
1.961     onken    7332: 
                   7333:     sub start_data_table_count {
                   7334:         unshift(@row_count, 0);
                   7335:         return;
                   7336:     }
                   7337: 
                   7338:     sub end_data_table_count {
                   7339:         shift(@row_count);
                   7340:         return;
                   7341:     }
                   7342: 
1.347     albertel 7343:     sub start_data_table {
1.1018    raeburn  7344: 	my ($add_class,$id) = @_;
1.422     albertel 7345: 	my $css_class = (join(' ','LC_data_table',$add_class));
1.1018    raeburn  7346:         my $table_id;
                   7347:         if (defined($id)) {
                   7348:             $table_id = ' id="'.$id.'"';
                   7349:         }
1.961     onken    7350: 	&start_data_table_count();
1.1018    raeburn  7351: 	return '<table class="'.$css_class.'"'.$table_id.'>'."\n";
1.347     albertel 7352:     }
                   7353: 
                   7354:     sub end_data_table {
1.961     onken    7355: 	&end_data_table_count();
1.389     albertel 7356: 	return '</table>'."\n";;
1.347     albertel 7357:     }
                   7358: 
                   7359:     sub start_data_table_row {
1.974     wenzelju 7360: 	my ($add_class, $id) = @_;
1.610     albertel 7361: 	$row_count[0]++;
                   7362: 	my $css_class = ($row_count[0] % 2)?'LC_odd_row':'LC_even_row';
1.900     bisitz   7363: 	$css_class = (join(' ',$css_class,$add_class)) unless ($add_class eq '');
1.974     wenzelju 7364:         $id = (' id="'.$id.'"') unless ($id eq '');
                   7365:         return  '<tr class="'.$css_class.'"'.$id.'>'."\n";
1.347     albertel 7366:     }
1.471     banghart 7367:     
                   7368:     sub continue_data_table_row {
1.974     wenzelju 7369: 	my ($add_class, $id) = @_;
1.610     albertel 7370: 	my $css_class = ($row_count[0] % 2)?'LC_odd_row':'LC_even_row';
1.974     wenzelju 7371: 	$css_class = (join(' ',$css_class,$add_class)) unless ($add_class eq '');
                   7372:         $id = (' id="'.$id.'"') unless ($id eq '');
                   7373:         return  '<tr class="'.$css_class.'"'.$id.'>'."\n";
1.471     banghart 7374:     }
1.347     albertel 7375: 
                   7376:     sub end_data_table_row {
1.389     albertel 7377: 	return '</tr>'."\n";;
1.347     albertel 7378:     }
1.367     www      7379: 
1.421     albertel 7380:     sub start_data_table_empty_row {
1.707     bisitz   7381: #	$row_count[0]++;
1.421     albertel 7382: 	return  '<tr class="LC_empty_row" >'."\n";;
                   7383:     }
                   7384: 
                   7385:     sub end_data_table_empty_row {
                   7386: 	return '</tr>'."\n";;
                   7387:     }
                   7388: 
1.367     www      7389:     sub start_data_table_header_row {
1.389     albertel 7390: 	return  '<tr class="LC_header_row">'."\n";;
1.367     www      7391:     }
                   7392: 
                   7393:     sub end_data_table_header_row {
1.389     albertel 7394: 	return '</tr>'."\n";;
1.367     www      7395:     }
1.890     droeschl 7396: 
                   7397:     sub data_table_caption {
                   7398:         my $caption = shift;
                   7399:         return "<caption class=\"LC_caption\">$caption</caption>";
                   7400:     }
1.347     albertel 7401: }
                   7402: 
1.548     albertel 7403: =pod
                   7404: 
                   7405: =item * &inhibit_menu_check($arg)
                   7406: 
                   7407: Checks for a inhibitmenu state and generates output to preserve it
                   7408: 
                   7409: Inputs:         $arg - can be any of
                   7410:                      - undef - in which case the return value is a string 
                   7411:                                to add  into arguments list of a uri
                   7412:                      - 'input' - in which case the return value is a HTML
                   7413:                                  <form> <input> field of type hidden to
                   7414:                                  preserve the value
                   7415:                      - a url - in which case the return value is the url with
                   7416:                                the neccesary cgi args added to preserve the
                   7417:                                inhibitmenu state
                   7418:                      - a ref to a url - no return value, but the string is
                   7419:                                         updated to include the neccessary cgi
                   7420:                                         args to preserve the inhibitmenu state
                   7421: 
                   7422: =cut
                   7423: 
                   7424: sub inhibit_menu_check {
                   7425:     my ($arg) = @_;
                   7426:     &get_unprocessed_cgi($ENV{'QUERY_STRING'}, ['inhibitmenu']);
                   7427:     if ($arg eq 'input') {
                   7428: 	if ($env{'form.inhibitmenu'}) {
                   7429: 	    return '<input type="hidden" name="inhibitmenu" value="'.$env{'form.inhibitmenu'}.'" />';
                   7430: 	} else {
                   7431: 	    return
                   7432: 	}
                   7433:     }
                   7434:     if ($env{'form.inhibitmenu'}) {
                   7435: 	if (ref($arg)) {
                   7436: 	    $$arg .= '?inhibitmenu='.$env{'form.inhibitmenu'};
                   7437: 	} elsif ($arg eq '') {
                   7438: 	    $arg .= 'inhibitmenu='.$env{'form.inhibitmenu'};
                   7439: 	} else {
                   7440: 	    $arg .= '?inhibitmenu='.$env{'form.inhibitmenu'};
                   7441: 	}
                   7442:     }
                   7443:     if (!ref($arg)) {
                   7444: 	return $arg;
                   7445:     }
                   7446: }
                   7447: 
1.251     albertel 7448: ###############################################
1.182     matthew  7449: 
                   7450: =pod
                   7451: 
1.549     albertel 7452: =back
                   7453: 
                   7454: =head1 User Information Routines
                   7455: 
                   7456: =over 4
                   7457: 
1.405     albertel 7458: =item * &get_users_function()
1.182     matthew  7459: 
                   7460: Used by &bodytag to determine the current users primary role.
                   7461: Returns either 'student','coordinator','admin', or 'author'.
                   7462: 
                   7463: =cut
                   7464: 
                   7465: ###############################################
                   7466: sub get_users_function {
1.815     tempelho 7467:     my $function = 'norole';
1.818     tempelho 7468:     if ($env{'request.role'}=~/^(st)/) {
                   7469:         $function='student';
                   7470:     }
1.907     raeburn  7471:     if ($env{'request.role'}=~/^(cc|co|in|ta|ep)/) {
1.182     matthew  7472:         $function='coordinator';
                   7473:     }
1.258     albertel 7474:     if ($env{'request.role'}=~/^(su|dc|ad|li)/) {
1.182     matthew  7475:         $function='admin';
                   7476:     }
1.826     bisitz   7477:     if (($env{'request.role'}=~/^(au|ca|aa)/) ||
1.1025    raeburn  7478:         ($ENV{'REQUEST_URI'}=~ m{/^(/priv)})) {
1.182     matthew  7479:         $function='author';
                   7480:     }
                   7481:     return $function;
1.54      www      7482: }
1.99      www      7483: 
                   7484: ###############################################
                   7485: 
1.233     raeburn  7486: =pod
                   7487: 
1.821     raeburn  7488: =item * &show_course()
                   7489: 
                   7490: Used by lonmenu.pm and lonroles.pm to determine whether to use the word
                   7491: 'Courses' or 'Roles' in inline navigation and on screen displaying user's roles.
                   7492: 
                   7493: Inputs:
                   7494: None
                   7495: 
                   7496: Outputs:
                   7497: Scalar: 1 if 'Course' to be used, 0 otherwise.
                   7498: 
                   7499: =cut
                   7500: 
                   7501: ###############################################
                   7502: sub show_course {
                   7503:     my $course = !$env{'user.adv'};
                   7504:     if (!$env{'user.adv'}) {
                   7505:         foreach my $env (keys(%env)) {
                   7506:             next if ($env !~ m/^user\.priv\./);
                   7507:             if ($env !~ m/^user\.priv\.(?:st|cm)/) {
                   7508:                 $course = 0;
                   7509:                 last;
                   7510:             }
                   7511:         }
                   7512:     }
                   7513:     return $course;
                   7514: }
                   7515: 
                   7516: ###############################################
                   7517: 
                   7518: =pod
                   7519: 
1.542     raeburn  7520: =item * &check_user_status()
1.274     raeburn  7521: 
                   7522: Determines current status of supplied role for a
                   7523: specific user. Roles can be active, previous or future.
                   7524: 
                   7525: Inputs: 
                   7526: user's domain, user's username, course's domain,
1.375     raeburn  7527: course's number, optional section ID.
1.274     raeburn  7528: 
                   7529: Outputs:
                   7530: role status: active, previous or future. 
                   7531: 
                   7532: =cut
                   7533: 
                   7534: sub check_user_status {
1.412     raeburn  7535:     my ($udom,$uname,$cdom,$crs,$role,$sec) = @_;
1.982     raeburn  7536:     my $extra = &Apache::lonnet::freeze_escape({'skipcheck' => 1});
                   7537:     my %userinfo = &Apache::lonnet::dump('roles',$udom,$uname,'.',undef,$extra);
1.274     raeburn  7538:     my @uroles = keys %userinfo;
                   7539:     my $srchstr;
                   7540:     my $active_chk = 'none';
1.412     raeburn  7541:     my $now = time;
1.274     raeburn  7542:     if (@uroles > 0) {
1.908     raeburn  7543:         if (($role eq 'cc') || ($role eq 'co') || ($sec eq '') || (!defined($sec))) {
1.274     raeburn  7544:             $srchstr = '/'.$cdom.'/'.$crs.'_'.$role;
                   7545:         } else {
1.412     raeburn  7546:             $srchstr = '/'.$cdom.'/'.$crs.'/'.$sec.'_'.$role;
                   7547:         }
                   7548:         if (grep/^\Q$srchstr\E$/,@uroles) {
1.274     raeburn  7549:             my $role_end = 0;
                   7550:             my $role_start = 0;
                   7551:             $active_chk = 'active';
1.412     raeburn  7552:             if ($userinfo{$srchstr} =~ m/^\Q$role\E_(\d+)/) {
                   7553:                 $role_end = $1;
                   7554:                 if ($userinfo{$srchstr} =~ m/^\Q$role\E_\Q$role_end\E_(\d+)$/) {
                   7555:                     $role_start = $1;
1.274     raeburn  7556:                 }
                   7557:             }
                   7558:             if ($role_start > 0) {
1.412     raeburn  7559:                 if ($now < $role_start) {
1.274     raeburn  7560:                     $active_chk = 'future';
                   7561:                 }
                   7562:             }
                   7563:             if ($role_end > 0) {
1.412     raeburn  7564:                 if ($now > $role_end) {
1.274     raeburn  7565:                     $active_chk = 'previous';
                   7566:                 }
                   7567:             }
                   7568:         }
                   7569:     }
                   7570:     return $active_chk;
                   7571: }
                   7572: 
                   7573: ###############################################
                   7574: 
                   7575: =pod
                   7576: 
1.405     albertel 7577: =item * &get_sections()
1.233     raeburn  7578: 
                   7579: Determines all the sections for a course including
                   7580: sections with students and sections containing other roles.
1.419     raeburn  7581: Incoming parameters: 
                   7582: 
                   7583: 1. domain
                   7584: 2. course number 
                   7585: 3. reference to array containing roles for which sections should 
                   7586: be gathered (optional).
                   7587: 4. reference to array containing status types for which sections 
                   7588: should be gathered (optional).
                   7589: 
                   7590: If the third argument is undefined, sections are gathered for any role. 
                   7591: If the fourth argument is undefined, sections are gathered for any status.
                   7592: Permissible values are 'active' or 'future' or 'previous'.
1.233     raeburn  7593:  
1.374     raeburn  7594: Returns section hash (keys are section IDs, values are
                   7595: number of users in each section), subject to the
1.419     raeburn  7596: optional roles filter, optional status filter 
1.233     raeburn  7597: 
                   7598: =cut
                   7599: 
                   7600: ###############################################
                   7601: sub get_sections {
1.419     raeburn  7602:     my ($cdom,$cnum,$possible_roles,$possible_status) = @_;
1.366     albertel 7603:     if (!defined($cdom) || !defined($cnum)) {
                   7604:         my $cid =  $env{'request.course.id'};
                   7605: 
                   7606: 	return if (!defined($cid));
                   7607: 
                   7608:         $cdom = $env{'course.'.$cid.'.domain'};
                   7609:         $cnum = $env{'course.'.$cid.'.num'};
                   7610:     }
                   7611: 
                   7612:     my %sectioncount;
1.419     raeburn  7613:     my $now = time;
1.240     albertel 7614: 
1.366     albertel 7615:     if (!defined($possible_roles) || (grep(/^st$/,@$possible_roles))) {
1.276     albertel 7616: 	my ($classlist) = &Apache::loncoursedata::get_classlist($cdom,$cnum);
1.240     albertel 7617: 	my $sec_index = &Apache::loncoursedata::CL_SECTION();
                   7618: 	my $status_index = &Apache::loncoursedata::CL_STATUS();
1.419     raeburn  7619:         my $start_index = &Apache::loncoursedata::CL_START();
                   7620:         my $end_index = &Apache::loncoursedata::CL_END();
                   7621:         my $status;
1.366     albertel 7622: 	while (my ($student,$data) = each(%$classlist)) {
1.419     raeburn  7623: 	    my ($section,$stu_status,$start,$end) = ($data->[$sec_index],
                   7624: 				                     $data->[$status_index],
                   7625:                                                      $data->[$start_index],
                   7626:                                                      $data->[$end_index]);
                   7627:             if ($stu_status eq 'Active') {
                   7628:                 $status = 'active';
                   7629:             } elsif ($end < $now) {
                   7630:                 $status = 'previous';
                   7631:             } elsif ($start > $now) {
                   7632:                 $status = 'future';
                   7633:             } 
                   7634: 	    if ($section ne '-1' && $section !~ /^\s*$/) {
                   7635:                 if ((!defined($possible_status)) || (($status ne '') && 
                   7636:                     (grep/^\Q$status\E$/,@{$possible_status}))) { 
                   7637: 		    $sectioncount{$section}++;
                   7638:                 }
1.240     albertel 7639: 	    }
                   7640: 	}
                   7641:     }
                   7642:     my %courseroles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   7643:     foreach my $user (sort(keys(%courseroles))) {
                   7644: 	if ($user !~ /^(\w{2})/) { next; }
                   7645: 	my ($role) = ($user =~ /^(\w{2})/);
                   7646: 	if ($possible_roles && !(grep(/^$role$/,@$possible_roles))) { next; }
1.419     raeburn  7647: 	my ($section,$status);
1.240     albertel 7648: 	if ($role eq 'cr' &&
                   7649: 	    $user =~ m-^$role/[^/]*/[^/]*/[^/]*:[^:]*:[^:]*:(\w+)-) {
                   7650: 	    $section=$1;
                   7651: 	}
                   7652: 	if ($user =~ /^$role:[^:]*:[^:]*:(\w+)/) { $section=$1; }
                   7653: 	if (!defined($section) || $section eq '-1') { next; }
1.419     raeburn  7654:         my ($end,$start) = ($courseroles{$user} =~ /^([^:]*):([^:]*)$/);
                   7655:         if ($end == -1 && $start == -1) {
                   7656:             next; #deleted role
                   7657:         }
                   7658:         if (!defined($possible_status)) { 
                   7659:             $sectioncount{$section}++;
                   7660:         } else {
                   7661:             if ((!$end || $end >= $now) && (!$start || $start <= $now)) {
                   7662:                 $status = 'active';
                   7663:             } elsif ($end < $now) {
                   7664:                 $status = 'future';
                   7665:             } elsif ($start > $now) {
                   7666:                 $status = 'previous';
                   7667:             }
                   7668:             if (($status ne '') && (grep/^\Q$status\E$/,@{$possible_status})) {
                   7669:                 $sectioncount{$section}++;
                   7670:             }
                   7671:         }
1.233     raeburn  7672:     }
1.366     albertel 7673:     return %sectioncount;
1.233     raeburn  7674: }
                   7675: 
1.274     raeburn  7676: ###############################################
1.294     raeburn  7677: 
                   7678: =pod
1.405     albertel 7679: 
                   7680: =item * &get_course_users()
                   7681: 
1.275     raeburn  7682: Retrieves usernames:domains for users in the specified course
                   7683: with specific role(s), and access status. 
                   7684: 
                   7685: Incoming parameters:
1.277     albertel 7686: 1. course domain
                   7687: 2. course number
                   7688: 3. access status: users must have - either active, 
1.275     raeburn  7689: previous, future, or all.
1.277     albertel 7690: 4. reference to array of permissible roles
1.288     raeburn  7691: 5. reference to array of section restrictions (optional)
                   7692: 6. reference to results object (hash of hashes).
                   7693: 7. reference to optional userdata hash
1.609     raeburn  7694: 8. reference to optional statushash
1.630     raeburn  7695: 9. flag if privileged users (except those set to unhide in
                   7696:    course settings) should be excluded    
1.609     raeburn  7697: Keys of top level results hash are roles.
1.275     raeburn  7698: Keys of inner hashes are username:domain, with 
                   7699: values set to access type.
1.288     raeburn  7700: Optional userdata hash returns an array with arguments in the 
                   7701: same order as loncoursedata::get_classlist() for student data.
                   7702: 
1.609     raeburn  7703: Optional statushash returns
                   7704: 
1.288     raeburn  7705: Entries for end, start, section and status are blank because
                   7706: of the possibility of multiple values for non-student roles.
                   7707: 
1.275     raeburn  7708: =cut
1.405     albertel 7709: 
1.275     raeburn  7710: ###############################################
1.405     albertel 7711: 
1.275     raeburn  7712: sub get_course_users {
1.630     raeburn  7713:     my ($cdom,$cnum,$types,$roles,$sections,$users,$userdata,$statushash,$hidepriv) = @_;
1.288     raeburn  7714:     my %idx = ();
1.419     raeburn  7715:     my %seclists;
1.288     raeburn  7716: 
                   7717:     $idx{udom} = &Apache::loncoursedata::CL_SDOM();
                   7718:     $idx{uname} =  &Apache::loncoursedata::CL_SNAME();
                   7719:     $idx{end} = &Apache::loncoursedata::CL_END();
                   7720:     $idx{start} = &Apache::loncoursedata::CL_START();
                   7721:     $idx{id} = &Apache::loncoursedata::CL_ID();
                   7722:     $idx{section} = &Apache::loncoursedata::CL_SECTION();
                   7723:     $idx{fullname} = &Apache::loncoursedata::CL_FULLNAME();
                   7724:     $idx{status} = &Apache::loncoursedata::CL_STATUS();
                   7725: 
1.290     albertel 7726:     if (grep(/^st$/,@{$roles})) {
1.276     albertel 7727:         my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist($cdom,$cnum);
1.278     raeburn  7728:         my $now = time;
1.277     albertel 7729:         foreach my $student (keys(%{$classlist})) {
1.288     raeburn  7730:             my $match = 0;
1.412     raeburn  7731:             my $secmatch = 0;
1.419     raeburn  7732:             my $section = $$classlist{$student}[$idx{section}];
1.609     raeburn  7733:             my $status = $$classlist{$student}[$idx{status}];
1.419     raeburn  7734:             if ($section eq '') {
                   7735:                 $section = 'none';
                   7736:             }
1.291     albertel 7737:             if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
1.420     albertel 7738:                 if (grep(/^all$/,@{$sections})) {
1.412     raeburn  7739:                     $secmatch = 1;
                   7740:                 } elsif ($$classlist{$student}[$idx{section}] eq '') {
1.420     albertel 7741:                     if (grep(/^none$/,@{$sections})) {
1.412     raeburn  7742:                         $secmatch = 1;
                   7743:                     }
                   7744:                 } else {  
1.419     raeburn  7745: 		    if (grep(/^\Q$section\E$/,@{$sections})) {
1.412     raeburn  7746: 		        $secmatch = 1;
                   7747:                     }
1.290     albertel 7748: 		}
1.412     raeburn  7749:                 if (!$secmatch) {
                   7750:                     next;
                   7751:                 }
1.419     raeburn  7752:             }
1.275     raeburn  7753:             if (defined($$types{'active'})) {
1.288     raeburn  7754:                 if ($$classlist{$student}[$idx{status}] eq 'Active') {
1.275     raeburn  7755:                     push(@{$$users{st}{$student}},'active');
1.288     raeburn  7756:                     $match = 1;
1.275     raeburn  7757:                 }
                   7758:             }
                   7759:             if (defined($$types{'previous'})) {
1.609     raeburn  7760:                 if ($$classlist{$student}[$idx{status}] eq 'Expired') {
1.275     raeburn  7761:                     push(@{$$users{st}{$student}},'previous');
1.288     raeburn  7762:                     $match = 1;
1.275     raeburn  7763:                 }
                   7764:             }
                   7765:             if (defined($$types{'future'})) {
1.609     raeburn  7766:                 if ($$classlist{$student}[$idx{status}] eq 'Future') {
1.275     raeburn  7767:                     push(@{$$users{st}{$student}},'future');
1.288     raeburn  7768:                     $match = 1;
1.275     raeburn  7769:                 }
                   7770:             }
1.609     raeburn  7771:             if ($match) {
                   7772:                 push(@{$seclists{$student}},$section);
                   7773:                 if (ref($userdata) eq 'HASH') {
                   7774:                     $$userdata{$student} = $$classlist{$student};
                   7775:                 }
                   7776:                 if (ref($statushash) eq 'HASH') {
                   7777:                     $statushash->{$student}{'st'}{$section} = $status;
                   7778:                 }
1.288     raeburn  7779:             }
1.275     raeburn  7780:         }
                   7781:     }
1.412     raeburn  7782:     if ((@{$roles} > 1) || ((@{$roles} == 1) && ($$roles[0] ne "st"))) {
1.439     raeburn  7783:         my %coursepersonnel = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   7784:         my $now = time;
1.609     raeburn  7785:         my %displaystatus = ( previous => 'Expired',
                   7786:                               active   => 'Active',
                   7787:                               future   => 'Future',
                   7788:                             );
1.630     raeburn  7789:         my %nothide;
                   7790:         if ($hidepriv) {
                   7791:             my %coursehash=&Apache::lonnet::coursedescription($cdom.'_'.$cnum);
                   7792:             foreach my $user (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
                   7793:                 if ($user !~ /:/) {
                   7794:                     $nothide{join(':',split(/[\@]/,$user))}=1;
                   7795:                 } else {
                   7796:                     $nothide{$user} = 1;
                   7797:                 }
                   7798:             }
                   7799:         }
1.439     raeburn  7800:         foreach my $person (sort(keys(%coursepersonnel))) {
1.288     raeburn  7801:             my $match = 0;
1.412     raeburn  7802:             my $secmatch = 0;
1.439     raeburn  7803:             my $status;
1.412     raeburn  7804:             my ($role,$user,$usec) = ($person =~ /^([^:]*):([^:]+:[^:]+):([^:]*)/);
1.275     raeburn  7805:             $user =~ s/:$//;
1.439     raeburn  7806:             my ($end,$start) = split(/:/,$coursepersonnel{$person});
                   7807:             if ($end == -1 || $start == -1) {
                   7808:                 next;
                   7809:             }
                   7810:             if (($role) && ((grep(/^\Q$role\E$/,@{$roles})) ||
                   7811:                 (grep(/^cr$/,@{$roles}) && $role =~ /^cr\//))) {
1.412     raeburn  7812:                 my ($uname,$udom) = split(/:/,$user);
                   7813:                 if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
1.420     albertel 7814:                     if (grep(/^all$/,@{$sections})) {
1.412     raeburn  7815:                         $secmatch = 1;
                   7816:                     } elsif ($usec eq '') {
1.420     albertel 7817:                         if (grep(/^none$/,@{$sections})) {
1.412     raeburn  7818:                             $secmatch = 1;
                   7819:                         }
                   7820:                     } else {
                   7821:                         if (grep(/^\Q$usec\E$/,@{$sections})) {
                   7822:                             $secmatch = 1;
                   7823:                         }
                   7824:                     }
                   7825:                     if (!$secmatch) {
                   7826:                         next;
                   7827:                     }
1.288     raeburn  7828:                 }
1.419     raeburn  7829:                 if ($usec eq '') {
                   7830:                     $usec = 'none';
                   7831:                 }
1.275     raeburn  7832:                 if ($uname ne '' && $udom ne '') {
1.630     raeburn  7833:                     if ($hidepriv) {
                   7834:                         if ((&Apache::lonnet::privileged($uname,$udom)) &&
                   7835:                             (!$nothide{$uname.':'.$udom})) {
                   7836:                             next;
                   7837:                         }
                   7838:                     }
1.503     raeburn  7839:                     if ($end > 0 && $end < $now) {
1.439     raeburn  7840:                         $status = 'previous';
                   7841:                     } elsif ($start > $now) {
                   7842:                         $status = 'future';
                   7843:                     } else {
                   7844:                         $status = 'active';
                   7845:                     }
1.277     albertel 7846:                     foreach my $type (keys(%{$types})) { 
1.275     raeburn  7847:                         if ($status eq $type) {
1.420     albertel 7848:                             if (!grep(/^\Q$type\E$/,@{$$users{$role}{$user}})) {
1.419     raeburn  7849:                                 push(@{$$users{$role}{$user}},$type);
                   7850:                             }
1.288     raeburn  7851:                             $match = 1;
                   7852:                         }
                   7853:                     }
1.419     raeburn  7854:                     if (($match) && (ref($userdata) eq 'HASH')) {
                   7855:                         if (!exists($$userdata{$uname.':'.$udom})) {
                   7856: 			    &get_user_info($udom,$uname,\%idx,$userdata);
                   7857:                         }
1.420     albertel 7858:                         if (!grep(/^\Q$usec\E$/,@{$seclists{$uname.':'.$udom}})) {
1.419     raeburn  7859:                             push(@{$seclists{$uname.':'.$udom}},$usec);
                   7860:                         }
1.609     raeburn  7861:                         if (ref($statushash) eq 'HASH') {
                   7862:                             $statushash->{$uname.':'.$udom}{$role}{$usec} = $displaystatus{$status};
                   7863:                         }
1.275     raeburn  7864:                     }
                   7865:                 }
                   7866:             }
                   7867:         }
1.290     albertel 7868:         if (grep(/^ow$/,@{$roles})) {
1.279     raeburn  7869:             if ((defined($cdom)) && (defined($cnum))) {
                   7870:                 my %csettings = &Apache::lonnet::get('environment',['internal.courseowner'],$cdom,$cnum);
                   7871:                 if ( defined($csettings{'internal.courseowner'}) ) {
                   7872:                     my $owner = $csettings{'internal.courseowner'};
1.609     raeburn  7873:                     next if ($owner eq '');
                   7874:                     my ($ownername,$ownerdom);
                   7875:                     if ($owner =~ /^([^:]+):([^:]+)$/) {
                   7876:                         $ownername = $1;
                   7877:                         $ownerdom = $2;
                   7878:                     } else {
                   7879:                         $ownername = $owner;
                   7880:                         $ownerdom = $cdom;
                   7881:                         $owner = $ownername.':'.$ownerdom;
1.439     raeburn  7882:                     }
                   7883:                     @{$$users{'ow'}{$owner}} = 'any';
1.290     albertel 7884:                     if (defined($userdata) && 
1.609     raeburn  7885: 			!exists($$userdata{$owner})) {
                   7886: 			&get_user_info($ownerdom,$ownername,\%idx,$userdata);
                   7887:                         if (!grep(/^none$/,@{$seclists{$owner}})) {
                   7888:                             push(@{$seclists{$owner}},'none');
                   7889:                         }
                   7890:                         if (ref($statushash) eq 'HASH') {
                   7891:                             $statushash->{$owner}{'ow'}{'none'} = 'Any';
1.419     raeburn  7892:                         }
1.290     albertel 7893: 		    }
1.279     raeburn  7894:                 }
                   7895:             }
                   7896:         }
1.419     raeburn  7897:         foreach my $user (keys(%seclists)) {
                   7898:             @{$seclists{$user}} = (sort {$a <=> $b} @{$seclists{$user}});
                   7899:             $$userdata{$user}[$idx{section}] = join(',',@{$seclists{$user}});
                   7900:         }
1.275     raeburn  7901:     }
                   7902:     return;
                   7903: }
                   7904: 
1.288     raeburn  7905: sub get_user_info {
                   7906:     my ($udom,$uname,$idx,$userdata) = @_;
1.289     albertel 7907:     $$userdata{$uname.':'.$udom}[$$idx{fullname}] = 
                   7908: 	&plainname($uname,$udom,'lastname');
1.291     albertel 7909:     $$userdata{$uname.':'.$udom}[$$idx{uname}] = $uname;
1.297     raeburn  7910:     $$userdata{$uname.':'.$udom}[$$idx{udom}] = $udom;
1.609     raeburn  7911:     my %idhash =  &Apache::lonnet::idrget($udom,($uname));
                   7912:     $$userdata{$uname.':'.$udom}[$$idx{id}] = $idhash{$uname}; 
1.288     raeburn  7913:     return;
                   7914: }
1.275     raeburn  7915: 
1.472     raeburn  7916: ###############################################
                   7917: 
                   7918: =pod
                   7919: 
                   7920: =item * &get_user_quota()
                   7921: 
                   7922: Retrieves quota assigned for storage of portfolio files for a user  
                   7923: 
                   7924: Incoming parameters:
                   7925: 1. user's username
                   7926: 2. user's domain
                   7927: 
                   7928: Returns:
1.536     raeburn  7929: 1. Disk quota (in Mb) assigned to student.
                   7930: 2. (Optional) Type of setting: custom or default
                   7931:    (individually assigned or default for user's 
                   7932:    institutional status).
                   7933: 3. (Optional) - User's institutional status (e.g., faculty, staff
                   7934:    or student - types as defined in localenroll::inst_usertypes 
                   7935:    for user's domain, which determines default quota for user.
                   7936: 4. (Optional) - Default quota which would apply to the user.
1.472     raeburn  7937: 
                   7938: If a value has been stored in the user's environment, 
1.536     raeburn  7939: it will return that, otherwise it returns the maximal default
                   7940: defined for the user's instituional status(es) in the domain.
1.472     raeburn  7941: 
                   7942: =cut
                   7943: 
                   7944: ###############################################
                   7945: 
                   7946: 
                   7947: sub get_user_quota {
                   7948:     my ($uname,$udom) = @_;
1.536     raeburn  7949:     my ($quota,$quotatype,$settingstatus,$defquota);
1.472     raeburn  7950:     if (!defined($udom)) {
                   7951:         $udom = $env{'user.domain'};
                   7952:     }
                   7953:     if (!defined($uname)) {
                   7954:         $uname = $env{'user.name'};
                   7955:     }
                   7956:     if (($udom eq '' || $uname eq '') ||
                   7957:         ($udom eq 'public') && ($uname eq 'public')) {
                   7958:         $quota = 0;
1.536     raeburn  7959:         $quotatype = 'default';
                   7960:         $defquota = 0; 
1.472     raeburn  7961:     } else {
1.536     raeburn  7962:         my $inststatus;
1.472     raeburn  7963:         if ($udom eq $env{'user.domain'} && $uname eq $env{'user.name'}) {
                   7964:             $quota = $env{'environment.portfolioquota'};
1.536     raeburn  7965:             $inststatus = $env{'environment.inststatus'};
1.472     raeburn  7966:         } else {
1.536     raeburn  7967:             my %userenv = 
                   7968:                 &Apache::lonnet::get('environment',['portfolioquota',
                   7969:                                      'inststatus'],$udom,$uname);
1.472     raeburn  7970:             my ($tmp) = keys(%userenv);
                   7971:             if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
                   7972:                 $quota = $userenv{'portfolioquota'};
1.536     raeburn  7973:                 $inststatus = $userenv{'inststatus'};
1.472     raeburn  7974:             } else {
                   7975:                 undef(%userenv);
                   7976:             }
                   7977:         }
1.536     raeburn  7978:         ($defquota,$settingstatus) = &default_quota($udom,$inststatus);
1.472     raeburn  7979:         if ($quota eq '') {
1.536     raeburn  7980:             $quota = $defquota;
                   7981:             $quotatype = 'default';
                   7982:         } else {
                   7983:             $quotatype = 'custom';
1.472     raeburn  7984:         }
                   7985:     }
1.536     raeburn  7986:     if (wantarray) {
                   7987:         return ($quota,$quotatype,$settingstatus,$defquota);
                   7988:     } else {
                   7989:         return $quota;
                   7990:     }
1.472     raeburn  7991: }
                   7992: 
                   7993: ###############################################
                   7994: 
                   7995: =pod
                   7996: 
                   7997: =item * &default_quota()
                   7998: 
1.536     raeburn  7999: Retrieves default quota assigned for storage of user portfolio files,
                   8000: given an (optional) user's institutional status.
1.472     raeburn  8001: 
                   8002: Incoming parameters:
                   8003: 1. domain
1.536     raeburn  8004: 2. (Optional) institutional status(es).  This is a : separated list of 
                   8005:    status types (e.g., faculty, staff, student etc.)
                   8006:    which apply to the user for whom the default is being retrieved.
                   8007:    If the institutional status string in undefined, the domain
                   8008:    default quota will be returned. 
1.472     raeburn  8009: 
                   8010: Returns:
                   8011: 1. Default disk quota (in Mb) for user portfolios in the domain.
1.536     raeburn  8012: 2. (Optional) institutional type which determined the value of the
                   8013:    default quota.
1.472     raeburn  8014: 
                   8015: If a value has been stored in the domain's configuration db,
                   8016: it will return that, otherwise it returns 20 (for backwards 
                   8017: compatibility with domains which have not set up a configuration
                   8018: db file; the original statically defined portfolio quota was 20 Mb). 
                   8019: 
1.536     raeburn  8020: If the user's status includes multiple types (e.g., staff and student),
                   8021: the largest default quota which applies to the user determines the
                   8022: default quota returned.
                   8023: 
1.780     raeburn  8024: =back
                   8025: 
1.472     raeburn  8026: =cut
                   8027: 
                   8028: ###############################################
                   8029: 
                   8030: 
                   8031: sub default_quota {
1.536     raeburn  8032:     my ($udom,$inststatus) = @_;
                   8033:     my ($defquota,$settingstatus);
                   8034:     my %quotahash = &Apache::lonnet::get_dom('configuration',
1.622     raeburn  8035:                                             ['quotas'],$udom);
                   8036:     if (ref($quotahash{'quotas'}) eq 'HASH') {
1.536     raeburn  8037:         if ($inststatus ne '') {
1.765     raeburn  8038:             my @statuses = map { &unescape($_); } split(/:/,$inststatus);
1.536     raeburn  8039:             foreach my $item (@statuses) {
1.711     raeburn  8040:                 if (ref($quotahash{'quotas'}{'defaultquota'}) eq 'HASH') {
                   8041:                     if ($quotahash{'quotas'}{'defaultquota'}{$item} ne '') {
                   8042:                         if ($defquota eq '') {
                   8043:                             $defquota = $quotahash{'quotas'}{'defaultquota'}{$item};
                   8044:                             $settingstatus = $item;
                   8045:                         } elsif ($quotahash{'quotas'}{'defaultquota'}{$item} > $defquota) {
                   8046:                             $defquota = $quotahash{'quotas'}{'defaultquota'}{$item};
                   8047:                             $settingstatus = $item;
                   8048:                         }
                   8049:                     }
                   8050:                 } else {
                   8051:                     if ($quotahash{'quotas'}{$item} ne '') {
                   8052:                         if ($defquota eq '') {
                   8053:                             $defquota = $quotahash{'quotas'}{$item};
                   8054:                             $settingstatus = $item;
                   8055:                         } elsif ($quotahash{'quotas'}{$item} > $defquota) {
                   8056:                             $defquota = $quotahash{'quotas'}{$item};
                   8057:                             $settingstatus = $item;
                   8058:                         }
1.536     raeburn  8059:                     }
                   8060:                 }
                   8061:             }
                   8062:         }
                   8063:         if ($defquota eq '') {
1.711     raeburn  8064:             if (ref($quotahash{'quotas'}{'defaultquota'}) eq 'HASH') {
                   8065:                 $defquota = $quotahash{'quotas'}{'defaultquota'}{'default'};
                   8066:             } else {
                   8067:                 $defquota = $quotahash{'quotas'}{'default'};
                   8068:             }
1.536     raeburn  8069:             $settingstatus = 'default';
                   8070:         }
                   8071:     } else {
                   8072:         $settingstatus = 'default';
                   8073:         $defquota = 20;
                   8074:     }
                   8075:     if (wantarray) {
                   8076:         return ($defquota,$settingstatus);
1.472     raeburn  8077:     } else {
1.536     raeburn  8078:         return $defquota;
1.472     raeburn  8079:     }
                   8080: }
                   8081: 
1.384     raeburn  8082: sub get_secgrprole_info {
                   8083:     my ($cdom,$cnum,$needroles,$type)  = @_;
                   8084:     my %sections_count = &get_sections($cdom,$cnum);
                   8085:     my @sections =  (sort {$a <=> $b} keys(%sections_count));
                   8086:     my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum);
                   8087:     my @groups = sort(keys(%curr_groups));
                   8088:     my $allroles = [];
                   8089:     my $rolehash;
                   8090:     my $accesshash = {
                   8091:                      active => 'Currently has access',
                   8092:                      future => 'Will have future access',
                   8093:                      previous => 'Previously had access',
                   8094:                   };
                   8095:     if ($needroles) {
                   8096:         $rolehash = {'all' => 'all'};
1.385     albertel 8097:         my %user_roles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   8098: 	if (&Apache::lonnet::error(%user_roles)) {
                   8099: 	    undef(%user_roles);
                   8100: 	}
                   8101:         foreach my $item (keys(%user_roles)) {
1.384     raeburn  8102:             my ($role)=split(/\:/,$item,2);
                   8103:             if ($role eq 'cr') { next; }
                   8104:             if ($role =~ /^cr/) {
                   8105:                 $$rolehash{$role} = (split('/',$role))[3];
                   8106:             } else {
                   8107:                 $$rolehash{$role} = &Apache::lonnet::plaintext($role,$type);
                   8108:             }
                   8109:         }
                   8110:         foreach my $key (sort(keys(%{$rolehash}))) {
                   8111:             push(@{$allroles},$key);
                   8112:         }
                   8113:         push (@{$allroles},'st');
                   8114:         $$rolehash{'st'} = &Apache::lonnet::plaintext('st',$type);
                   8115:     }
                   8116:     return (\@sections,\@groups,$allroles,$rolehash,$accesshash);
                   8117: }
                   8118: 
1.555     raeburn  8119: sub user_picker {
1.994     raeburn  8120:     my ($dom,$srch,$forcenewuser,$caller,$cancreate,$usertype,$context) = @_;
1.555     raeburn  8121:     my $currdom = $dom;
                   8122:     my %curr_selected = (
                   8123:                         srchin => 'dom',
1.580     raeburn  8124:                         srchby => 'lastname',
1.555     raeburn  8125:                       );
                   8126:     my $srchterm;
1.625     raeburn  8127:     if ((ref($srch) eq 'HASH') && ($env{'form.origform'} ne 'crtusername')) {
1.555     raeburn  8128:         if ($srch->{'srchby'} ne '') {
                   8129:             $curr_selected{'srchby'} = $srch->{'srchby'};
                   8130:         }
                   8131:         if ($srch->{'srchin'} ne '') {
                   8132:             $curr_selected{'srchin'} = $srch->{'srchin'};
                   8133:         }
                   8134:         if ($srch->{'srchtype'} ne '') {
                   8135:             $curr_selected{'srchtype'} = $srch->{'srchtype'};
                   8136:         }
                   8137:         if ($srch->{'srchdomain'} ne '') {
                   8138:             $currdom = $srch->{'srchdomain'};
                   8139:         }
                   8140:         $srchterm = $srch->{'srchterm'};
                   8141:     }
                   8142:     my %lt=&Apache::lonlocal::texthash(
1.573     raeburn  8143:                     'usr'       => 'Search criteria',
1.563     raeburn  8144:                     'doma'      => 'Domain/institution to search',
1.558     albertel 8145:                     'uname'     => 'username',
                   8146:                     'lastname'  => 'last name',
1.555     raeburn  8147:                     'lastfirst' => 'last name, first name',
1.558     albertel 8148:                     'crs'       => 'in this course',
1.576     raeburn  8149:                     'dom'       => 'in selected LON-CAPA domain', 
1.558     albertel 8150:                     'alc'       => 'all LON-CAPA',
1.573     raeburn  8151:                     'instd'     => 'in institutional directory for selected domain',
1.558     albertel 8152:                     'exact'     => 'is',
                   8153:                     'contains'  => 'contains',
1.569     raeburn  8154:                     'begins'    => 'begins with',
1.571     raeburn  8155:                     'youm'      => "You must include some text to search for.",
                   8156:                     'thte'      => "The text you are searching for must contain at least two characters when using a 'begins' type search.",
                   8157:                     'thet'      => "The text you are searching for must contain at least three characters when using a 'contains' type search.",
                   8158:                     'yomc'      => "You must choose a domain when using an institutional directory search.",
                   8159:                     'ymcd'      => "You must choose a domain when using a domain search.",
                   8160:                     'whus'      => "When using searching by last,first you must include a comma as separator between last name and first name.",
                   8161:                     'whse'      => "When searching by last,first you must include at least one character in the first name.",
                   8162:                      'thfo'     => "The following need to be corrected before the search can be run:",
1.555     raeburn  8163:                                        );
1.563     raeburn  8164:     my $domform = &select_dom_form($currdom,'srchdomain',1,1);
                   8165:     my $srchinsel = ' <select name="srchin">';
1.555     raeburn  8166: 
                   8167:     my @srchins = ('crs','dom','alc','instd');
                   8168: 
                   8169:     foreach my $option (@srchins) {
                   8170:         # FIXME 'alc' option unavailable until 
                   8171:         #       loncreateuser::print_user_query_page()
                   8172:         #       has been completed.
                   8173:         next if ($option eq 'alc');
1.880     raeburn  8174:         next if (($option eq 'crs') && ($env{'form.form'} eq 'requestcrs'));  
1.555     raeburn  8175:         next if ($option eq 'crs' && !$env{'request.course.id'});
1.563     raeburn  8176:         if ($curr_selected{'srchin'} eq $option) {
                   8177:             $srchinsel .= ' 
                   8178:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   8179:         } else {
                   8180:             $srchinsel .= '
                   8181:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   8182:         }
1.555     raeburn  8183:     }
1.563     raeburn  8184:     $srchinsel .= "\n  </select>\n";
1.555     raeburn  8185: 
                   8186:     my $srchbysel =  ' <select name="srchby">';
1.580     raeburn  8187:     foreach my $option ('lastname','lastfirst','uname') {
1.555     raeburn  8188:         if ($curr_selected{'srchby'} eq $option) {
                   8189:             $srchbysel .= '
                   8190:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   8191:         } else {
                   8192:             $srchbysel .= '
                   8193:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   8194:          }
                   8195:     }
                   8196:     $srchbysel .= "\n  </select>\n";
                   8197: 
                   8198:     my $srchtypesel = ' <select name="srchtype">';
1.580     raeburn  8199:     foreach my $option ('begins','contains','exact') {
1.555     raeburn  8200:         if ($curr_selected{'srchtype'} eq $option) {
                   8201:             $srchtypesel .= '
                   8202:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   8203:         } else {
                   8204:             $srchtypesel .= '
                   8205:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   8206:         }
                   8207:     }
                   8208:     $srchtypesel .= "\n  </select>\n";
                   8209: 
1.558     albertel 8210:     my ($newuserscript,$new_user_create);
1.994     raeburn  8211:     my $context_dom = $env{'request.role.domain'};
                   8212:     if ($context eq 'requestcrs') {
                   8213:         if ($env{'form.coursedom'} ne '') { 
                   8214:             $context_dom = $env{'form.coursedom'};
                   8215:         }
                   8216:     }
1.556     raeburn  8217:     if ($forcenewuser) {
1.576     raeburn  8218:         if (ref($srch) eq 'HASH') {
1.994     raeburn  8219:             if ($srch->{'srchby'} eq 'uname' && $srch->{'srchtype'} eq 'exact' && $srch->{'srchin'} eq 'dom' && $srch->{'srchdomain'} eq $context_dom) {
1.627     raeburn  8220:                 if ($cancreate) {
                   8221:                     $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>';
                   8222:                 } else {
1.799     bisitz   8223:                     my $helplink = 'javascript:helpMenu('."'display'".')';
1.627     raeburn  8224:                     my %usertypetext = (
                   8225:                         official   => 'institutional',
                   8226:                         unofficial => 'non-institutional',
                   8227:                     );
1.799     bisitz   8228:                     $new_user_create = '<p class="LC_warning">'
                   8229:                                       .&mt("You are not authorized to create new $usertypetext{$usertype} users in this domain.")
                   8230:                                       .' '
                   8231:                                       .&mt('Please contact the [_1]helpdesk[_2] for assistance.'
                   8232:                                           ,'<a href="'.$helplink.'">','</a>')
                   8233:                                       .'</p><br />';
1.627     raeburn  8234:                 }
1.576     raeburn  8235:             }
                   8236:         }
                   8237: 
1.556     raeburn  8238:         $newuserscript = <<"ENDSCRIPT";
                   8239: 
1.570     raeburn  8240: function setSearch(createnew,callingForm) {
1.556     raeburn  8241:     if (createnew == 1) {
1.570     raeburn  8242:         for (var i=0; i<callingForm.srchby.length; i++) {
                   8243:             if (callingForm.srchby.options[i].value == 'uname') {
                   8244:                 callingForm.srchby.selectedIndex = i;
1.556     raeburn  8245:             }
                   8246:         }
1.570     raeburn  8247:         for (var i=0; i<callingForm.srchin.length; i++) {
                   8248:             if ( callingForm.srchin.options[i].value == 'dom') {
                   8249: 		callingForm.srchin.selectedIndex = i;
1.556     raeburn  8250:             }
                   8251:         }
1.570     raeburn  8252:         for (var i=0; i<callingForm.srchtype.length; i++) {
                   8253:             if (callingForm.srchtype.options[i].value == 'exact') {
                   8254:                 callingForm.srchtype.selectedIndex = i;
1.556     raeburn  8255:             }
                   8256:         }
1.570     raeburn  8257:         for (var i=0; i<callingForm.srchdomain.length; i++) {
1.994     raeburn  8258:             if (callingForm.srchdomain.options[i].value == '$context_dom') {
1.570     raeburn  8259:                 callingForm.srchdomain.selectedIndex = i;
1.556     raeburn  8260:             }
                   8261:         }
                   8262:     }
                   8263: }
                   8264: ENDSCRIPT
1.558     albertel 8265: 
1.556     raeburn  8266:     }
                   8267: 
1.555     raeburn  8268:     my $output = <<"END_BLOCK";
1.556     raeburn  8269: <script type="text/javascript">
1.824     bisitz   8270: // <![CDATA[
1.570     raeburn  8271: function validateEntry(callingForm) {
1.558     albertel 8272: 
1.556     raeburn  8273:     var checkok = 1;
1.558     albertel 8274:     var srchin;
1.570     raeburn  8275:     for (var i=0; i<callingForm.srchin.length; i++) {
                   8276: 	if ( callingForm.srchin[i].checked ) {
                   8277: 	    srchin = callingForm.srchin[i].value;
1.558     albertel 8278: 	}
                   8279:     }
                   8280: 
1.570     raeburn  8281:     var srchtype = callingForm.srchtype.options[callingForm.srchtype.selectedIndex].value;
                   8282:     var srchby = callingForm.srchby.options[callingForm.srchby.selectedIndex].value;
                   8283:     var srchdomain = callingForm.srchdomain.options[callingForm.srchdomain.selectedIndex].value;
                   8284:     var srchterm =  callingForm.srchterm.value;
                   8285:     var srchin = callingForm.srchin.options[callingForm.srchin.selectedIndex].value;
1.556     raeburn  8286:     var msg = "";
                   8287: 
                   8288:     if (srchterm == "") {
                   8289:         checkok = 0;
1.571     raeburn  8290:         msg += "$lt{'youm'}\\n";
1.556     raeburn  8291:     }
                   8292: 
1.569     raeburn  8293:     if (srchtype== 'begins') {
                   8294:         if (srchterm.length < 2) {
                   8295:             checkok = 0;
1.571     raeburn  8296:             msg += "$lt{'thte'}\\n";
1.569     raeburn  8297:         }
                   8298:     }
                   8299: 
1.556     raeburn  8300:     if (srchtype== 'contains') {
                   8301:         if (srchterm.length < 3) {
                   8302:             checkok = 0;
1.571     raeburn  8303:             msg += "$lt{'thet'}\\n";
1.556     raeburn  8304:         }
                   8305:     }
                   8306:     if (srchin == 'instd') {
                   8307:         if (srchdomain == '') {
                   8308:             checkok = 0;
1.571     raeburn  8309:             msg += "$lt{'yomc'}\\n";
1.556     raeburn  8310:         }
                   8311:     }
                   8312:     if (srchin == 'dom') {
                   8313:         if (srchdomain == '') {
                   8314:             checkok = 0;
1.571     raeburn  8315:             msg += "$lt{'ymcd'}\\n";
1.556     raeburn  8316:         }
                   8317:     }
                   8318:     if (srchby == 'lastfirst') {
                   8319:         if (srchterm.indexOf(",") == -1) {
                   8320:             checkok = 0;
1.571     raeburn  8321:             msg += "$lt{'whus'}\\n";
1.556     raeburn  8322:         }
                   8323:         if (srchterm.indexOf(",") == srchterm.length -1) {
                   8324:             checkok = 0;
1.571     raeburn  8325:             msg += "$lt{'whse'}\\n";
1.556     raeburn  8326:         }
                   8327:     }
                   8328:     if (checkok == 0) {
1.571     raeburn  8329:         alert("$lt{'thfo'}\\n"+msg);
1.556     raeburn  8330:         return;
                   8331:     }
                   8332:     if (checkok == 1) {
1.570     raeburn  8333:         callingForm.submit();
1.556     raeburn  8334:     }
                   8335: }
                   8336: 
                   8337: $newuserscript
                   8338: 
1.824     bisitz   8339: // ]]>
1.556     raeburn  8340: </script>
1.558     albertel 8341: 
                   8342: $new_user_create
                   8343: 
1.555     raeburn  8344: END_BLOCK
1.558     albertel 8345: 
1.876     raeburn  8346:     $output .= &Apache::lonhtmlcommon::start_pick_box().
                   8347:                &Apache::lonhtmlcommon::row_title($lt{'doma'}).
                   8348:                $domform.
                   8349:                &Apache::lonhtmlcommon::row_closure().
                   8350:                &Apache::lonhtmlcommon::row_title($lt{'usr'}).
                   8351:                $srchbysel.
                   8352:                $srchtypesel. 
                   8353:                '<input type="text" size="15" name="srchterm" value="'.$srchterm.'" />'.
                   8354:                $srchinsel.
                   8355:                &Apache::lonhtmlcommon::row_closure(1). 
                   8356:                &Apache::lonhtmlcommon::end_pick_box().
                   8357:                '<br />';
1.555     raeburn  8358:     return $output;
                   8359: }
                   8360: 
1.612     raeburn  8361: sub user_rule_check {
1.615     raeburn  8362:     my ($usershash,$checks,$alerts,$rulematch,$inst_results,$curr_rules,$got_rules) = @_;
1.612     raeburn  8363:     my $response;
                   8364:     if (ref($usershash) eq 'HASH') {
                   8365:         foreach my $user (keys(%{$usershash})) {
                   8366:             my ($uname,$udom) = split(/:/,$user);
                   8367:             next if ($udom eq '' || $uname eq '');
1.615     raeburn  8368:             my ($id,$newuser);
1.612     raeburn  8369:             if (ref($usershash->{$user}) eq 'HASH') {
1.615     raeburn  8370:                 $newuser = $usershash->{$user}->{'newuser'};
1.612     raeburn  8371:                 $id = $usershash->{$user}->{'id'};
                   8372:             }
                   8373:             my $inst_response;
                   8374:             if (ref($checks) eq 'HASH') {
                   8375:                 if (defined($checks->{'username'})) {
1.615     raeburn  8376:                     ($inst_response,%{$inst_results->{$user}}) = 
1.612     raeburn  8377:                         &Apache::lonnet::get_instuser($udom,$uname);
                   8378:                 } elsif (defined($checks->{'id'})) {
1.615     raeburn  8379:                     ($inst_response,%{$inst_results->{$user}}) =
1.612     raeburn  8380:                         &Apache::lonnet::get_instuser($udom,undef,$id);
                   8381:                 }
1.615     raeburn  8382:             } else {
                   8383:                 ($inst_response,%{$inst_results->{$user}}) =
                   8384:                     &Apache::lonnet::get_instuser($udom,$uname);
                   8385:                 return;
1.612     raeburn  8386:             }
1.615     raeburn  8387:             if (!$got_rules->{$udom}) {
1.612     raeburn  8388:                 my %domconfig = &Apache::lonnet::get_dom('configuration',
                   8389:                                                   ['usercreation'],$udom);
                   8390:                 if (ref($domconfig{'usercreation'}) eq 'HASH') {
1.615     raeburn  8391:                     foreach my $item ('username','id') {
1.612     raeburn  8392:                         if (ref($domconfig{'usercreation'}{$item.'_rule'}) eq 'ARRAY') {
                   8393:                             $$curr_rules{$udom}{$item} = 
                   8394:                                 $domconfig{'usercreation'}{$item.'_rule'};
1.585     raeburn  8395:                         }
                   8396:                     }
                   8397:                 }
1.615     raeburn  8398:                 $got_rules->{$udom} = 1;  
1.585     raeburn  8399:             }
1.612     raeburn  8400:             foreach my $item (keys(%{$checks})) {
                   8401:                 if (ref($$curr_rules{$udom}) eq 'HASH') {
                   8402:                     if (ref($$curr_rules{$udom}{$item}) eq 'ARRAY') {
                   8403:                         if (@{$$curr_rules{$udom}{$item}} > 0) {
                   8404:                             my %rule_check = &Apache::lonnet::inst_rulecheck($udom,$uname,$id,$item,$$curr_rules{$udom}{$item});
                   8405:                             foreach my $rule (@{$$curr_rules{$udom}{$item}}) {
                   8406:                                 if ($rule_check{$rule}) {
                   8407:                                     $$rulematch{$user}{$item} = $rule;
                   8408:                                     if ($inst_response eq 'ok') {
1.615     raeburn  8409:                                         if (ref($inst_results) eq 'HASH') {
                   8410:                                             if (ref($inst_results->{$user}) eq 'HASH') {
                   8411:                                                 if (keys(%{$inst_results->{$user}}) == 0) {
                   8412:                                                     $$alerts{$item}{$udom}{$uname} = 1;
                   8413:                                                 }
1.612     raeburn  8414:                                             }
                   8415:                                         }
1.615     raeburn  8416:                                     }
                   8417:                                     last;
1.585     raeburn  8418:                                 }
                   8419:                             }
                   8420:                         }
                   8421:                     }
                   8422:                 }
                   8423:             }
                   8424:         }
                   8425:     }
1.612     raeburn  8426:     return;
                   8427: }
                   8428: 
                   8429: sub user_rule_formats {
                   8430:     my ($domain,$domdesc,$curr_rules,$check) = @_;
                   8431:     my %text = ( 
                   8432:                  'username' => 'Usernames',
                   8433:                  'id'       => 'IDs',
                   8434:                );
                   8435:     my $output;
                   8436:     my ($rules,$ruleorder) = &Apache::lonnet::inst_userrules($domain,$check);
                   8437:     if ((ref($rules) eq 'HASH') && (ref($ruleorder) eq 'ARRAY')) {
                   8438:         if (@{$ruleorder} > 0) {
                   8439:             $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>';
                   8440:             foreach my $rule (@{$ruleorder}) {
                   8441:                 if (ref($curr_rules) eq 'ARRAY') {
                   8442:                     if (grep(/^\Q$rule\E$/,@{$curr_rules})) {
                   8443:                         if (ref($rules->{$rule}) eq 'HASH') {
                   8444:                             $output .= '<li>'.$rules->{$rule}{'name'}.': '.
                   8445:                                         $rules->{$rule}{'desc'}.'</li>';
                   8446:                         }
                   8447:                     }
                   8448:                 }
                   8449:             }
                   8450:             $output .= '</ul>';
                   8451:         }
                   8452:     }
                   8453:     return $output;
                   8454: }
                   8455: 
                   8456: sub instrule_disallow_msg {
1.615     raeburn  8457:     my ($checkitem,$domdesc,$count,$mode) = @_;
1.612     raeburn  8458:     my $response;
                   8459:     my %text = (
                   8460:                   item   => 'username',
                   8461:                   items  => 'usernames',
                   8462:                   match  => 'matches',
                   8463:                   do     => 'does',
                   8464:                   action => 'a username',
                   8465:                   one    => 'one',
                   8466:                );
                   8467:     if ($count > 1) {
                   8468:         $text{'item'} = 'usernames';
                   8469:         $text{'match'} ='match';
                   8470:         $text{'do'} = 'do';
                   8471:         $text{'action'} = 'usernames',
                   8472:         $text{'one'} = 'ones';
                   8473:     }
                   8474:     if ($checkitem eq 'id') {
                   8475:         $text{'items'} = 'IDs';
                   8476:         $text{'item'} = 'ID';
                   8477:         $text{'action'} = 'an ID';
1.615     raeburn  8478:         if ($count > 1) {
                   8479:             $text{'item'} = 'IDs';
                   8480:             $text{'action'} = 'IDs';
                   8481:         }
1.612     raeburn  8482:     }
1.674     bisitz   8483:     $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  8484:     if ($mode eq 'upload') {
                   8485:         if ($checkitem eq 'username') {
                   8486:             $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'}.");
                   8487:         } elsif ($checkitem eq 'id') {
1.674     bisitz   8488:             $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  8489:         }
1.669     raeburn  8490:     } elsif ($mode eq 'selfcreate') {
                   8491:         if ($checkitem eq 'id') {
                   8492:             $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.");
                   8493:         }
1.615     raeburn  8494:     } else {
                   8495:         if ($checkitem eq 'username') {
                   8496:             $response .= &mt("You must choose $text{'action'} with a different format --  $text{'one'} that will not conflict with 'official' institutional $text{'items'}.");
                   8497:         } elsif ($checkitem eq 'id') {
                   8498:             $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.");
                   8499:         }
1.612     raeburn  8500:     }
                   8501:     return $response;
1.585     raeburn  8502: }
                   8503: 
1.624     raeburn  8504: sub personal_data_fieldtitles {
                   8505:     my %fieldtitles = &Apache::lonlocal::texthash (
                   8506:                         id => 'Student/Employee ID',
                   8507:                         permanentemail => 'E-mail address',
                   8508:                         lastname => 'Last Name',
                   8509:                         firstname => 'First Name',
                   8510:                         middlename => 'Middle Name',
                   8511:                         generation => 'Generation',
                   8512:                         gen => 'Generation',
1.765     raeburn  8513:                         inststatus => 'Affiliation',
1.624     raeburn  8514:                    );
                   8515:     return %fieldtitles;
                   8516: }
                   8517: 
1.642     raeburn  8518: sub sorted_inst_types {
                   8519:     my ($dom) = @_;
                   8520:     my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($dom);
                   8521:     my $othertitle = &mt('All users');
                   8522:     if ($env{'request.course.id'}) {
1.668     raeburn  8523:         $othertitle  = &mt('Any users');
1.642     raeburn  8524:     }
                   8525:     my @types;
                   8526:     if (ref($order) eq 'ARRAY') {
                   8527:         @types = @{$order};
                   8528:     }
                   8529:     if (@types == 0) {
                   8530:         if (ref($usertypes) eq 'HASH') {
                   8531:             @types = sort(keys(%{$usertypes}));
                   8532:         }
                   8533:     }
                   8534:     if (keys(%{$usertypes}) > 0) {
                   8535:         $othertitle = &mt('Other users');
                   8536:     }
                   8537:     return ($othertitle,$usertypes,\@types);
                   8538: }
                   8539: 
1.645     raeburn  8540: sub get_institutional_codes {
                   8541:     my ($settings,$allcourses,$LC_code) = @_;
                   8542: # Get complete list of course sections to update
                   8543:     my @currsections = ();
                   8544:     my @currxlists = ();
                   8545:     my $coursecode = $$settings{'internal.coursecode'};
                   8546: 
                   8547:     if ($$settings{'internal.sectionnums'} ne '') {
                   8548:         @currsections = split(/,/,$$settings{'internal.sectionnums'});
                   8549:     }
                   8550: 
                   8551:     if ($$settings{'internal.crosslistings'} ne '') {
                   8552:         @currxlists = split(/,/,$$settings{'internal.crosslistings'});
                   8553:     }
                   8554: 
                   8555:     if (@currxlists > 0) {
                   8556:         foreach (@currxlists) {
                   8557:             if (m/^([^:]+):(\w*)$/) {
                   8558:                 unless (grep/^$1$/,@{$allcourses}) {
                   8559:                     push @{$allcourses},$1;
                   8560:                     $$LC_code{$1} = $2;
                   8561:                 }
                   8562:             }
                   8563:         }
                   8564:     }
                   8565:  
                   8566:     if (@currsections > 0) {
                   8567:         foreach (@currsections) {
                   8568:             if (m/^(\w+):(\w*)$/) {
                   8569:                 my $sec = $coursecode.$1;
                   8570:                 my $lc_sec = $2;
                   8571:                 unless (grep/^$sec$/,@{$allcourses}) {
                   8572:                     push @{$allcourses},$sec;
                   8573:                     $$LC_code{$sec} = $lc_sec;
                   8574:                 }
                   8575:             }
                   8576:         }
                   8577:     }
                   8578:     return;
                   8579: }
                   8580: 
1.971     raeburn  8581: sub get_standard_codeitems {
                   8582:     return ('Year','Semester','Department','Number','Section');
                   8583: }
                   8584: 
1.112     bowersj2 8585: =pod
                   8586: 
1.780     raeburn  8587: =head1 Slot Helpers
                   8588: 
                   8589: =over 4
                   8590: 
                   8591: =item * sorted_slots()
                   8592: 
1.1040    raeburn  8593: Sorts an array of slot names in order of an optional sort key,
                   8594: default sort is by slot start time (earliest first). 
1.780     raeburn  8595: 
                   8596: Inputs:
                   8597: 
                   8598: =over 4
                   8599: 
                   8600: slotsarr  - Reference to array of unsorted slot names.
                   8601: 
                   8602: slots     - Reference to hash of hash, where outer hash keys are slot names.
                   8603: 
1.1040    raeburn  8604: sortkey   - Name of key in inner hash to be sorted on (e.g., starttime).
                   8605: 
1.549     albertel 8606: =back
                   8607: 
1.780     raeburn  8608: Returns:
                   8609: 
                   8610: =over 4
                   8611: 
1.1040    raeburn  8612: sorted   - An array of slot names sorted by a specified sort key 
                   8613:            (default sort key is start time of the slot).
1.780     raeburn  8614: 
                   8615: =back
                   8616: 
                   8617: =cut
                   8618: 
                   8619: 
                   8620: sub sorted_slots {
1.1040    raeburn  8621:     my ($slotsarr,$slots,$sortkey) = @_;
                   8622:     if ($sortkey eq '') {
                   8623:         $sortkey = 'starttime';
                   8624:     }
1.780     raeburn  8625:     my @sorted;
                   8626:     if ((ref($slotsarr) eq 'ARRAY') && (ref($slots) eq 'HASH')) {
                   8627:         @sorted =
                   8628:             sort {
                   8629:                      if (ref($slots->{$a}) && ref($slots->{$b})) {
1.1040    raeburn  8630:                          return $slots->{$a}{$sortkey} <=> $slots->{$b}{$sortkey}
1.780     raeburn  8631:                      }
                   8632:                      if (ref($slots->{$a})) { return -1;}
                   8633:                      if (ref($slots->{$b})) { return 1;}
                   8634:                      return 0;
                   8635:                  } @{$slotsarr};
                   8636:     }
                   8637:     return @sorted;
                   8638: }
                   8639: 
1.1040    raeburn  8640: =pod
                   8641: 
                   8642: =item * get_future_slots()
                   8643: 
                   8644: Inputs:
                   8645: 
                   8646: =over 4
                   8647: 
                   8648: cnum - course number
                   8649: 
                   8650: cdom - course domain
                   8651: 
                   8652: now - current UNIX time
                   8653: 
                   8654: symb - optional symb
                   8655: 
                   8656: =back
                   8657: 
                   8658: Returns:
                   8659: 
                   8660: =over 4
                   8661: 
                   8662: sorted_reservable - ref to array of student_schedulable slots currently 
                   8663:                     reservable, ordered by end date of reservation period.
                   8664: 
                   8665: reservable_now - ref to hash of student_schedulable slots currently
                   8666:                  reservable.
                   8667: 
                   8668:     Keys in inner hash are:
                   8669:     (a) symb: either blank or symb to which slot use is restricted.
                   8670:     (b) endreserve: end date of reservation period. 
                   8671: 
                   8672: sorted_future - ref to array of student_schedulable slots reservable in
                   8673:                 the future, ordered by start date of reservation period.
                   8674: 
                   8675: future_reservable - ref to hash of student_schedulable slots reservable
                   8676:                     in the future.
                   8677: 
                   8678:     Keys in inner hash are:
                   8679:     (a) symb: either blank or symb to which slot use is restricted.
                   8680:     (b) startreserve:  start date of reservation period.
                   8681: 
                   8682: =back
                   8683: 
                   8684: =cut
                   8685: 
                   8686: sub get_future_slots {
                   8687:     my ($cnum,$cdom,$now,$symb) = @_;
                   8688:     my (%reservable_now,%future_reservable,@sorted_reservable,@sorted_future);
                   8689:     my %slots = &Apache::lonnet::get_course_slots($cnum,$cdom);
                   8690:     foreach my $slot (keys(%slots)) {
                   8691:         next unless($slots{$slot}->{'type'} eq 'schedulable_student');
                   8692:         if ($symb) {
                   8693:             next if (($slots{$slot}->{'symb'} ne '') && 
                   8694:                      ($slots{$slot}->{'symb'} ne $symb));
                   8695:         }
                   8696:         if (($slots{$slot}->{'starttime'} > $now) &&
                   8697:             ($slots{$slot}->{'endtime'} > $now)) {
                   8698:             if (($slots{$slot}->{'allowedsections'}) || ($slots{$slot}->{'allowedusers'})) {
                   8699:                 my $userallowed = 0;
                   8700:                 if ($slots{$slot}->{'allowedsections'}) {
                   8701:                     my @allowed_sec = split(',',$slots{$slot}->{'allowedsections'});
                   8702:                     if (!defined($env{'request.role.sec'})
                   8703:                         && grep(/^No section assigned$/,@allowed_sec)) {
                   8704:                         $userallowed=1;
                   8705:                     } else {
                   8706:                         if (grep(/^\Q$env{'request.role.sec'}\E$/,@allowed_sec)) {
                   8707:                             $userallowed=1;
                   8708:                         }
                   8709:                     }
                   8710:                     unless ($userallowed) {
                   8711:                         if (defined($env{'request.course.groups'})) {
                   8712:                             my @groups = split(/:/,$env{'request.course.groups'});
                   8713:                             foreach my $group (@groups) {
                   8714:                                 if (grep(/^\Q$group\E$/,@allowed_sec)) {
                   8715:                                     $userallowed=1;
                   8716:                                     last;
                   8717:                                 }
                   8718:                             }
                   8719:                         }
                   8720:                     }
                   8721:                 }
                   8722:                 if ($slots{$slot}->{'allowedusers'}) {
                   8723:                     my @allowed_users = split(',',$slots{$slot}->{'allowedusers'});
                   8724:                     my $user = $env{'user.name'}.':'.$env{'user.domain'};
                   8725:                     if (grep(/^\Q$user\E$/,@allowed_users)) {
                   8726:                         $userallowed = 1;
                   8727:                     }
                   8728:                 }
                   8729:                 next unless($userallowed);
                   8730:             }
                   8731:             my $startreserve = $slots{$slot}->{'startreserve'};
                   8732:             my $endreserve = $slots{$slot}->{'endreserve'};
                   8733:             my $symb = $slots{$slot}->{'symb'};
                   8734:             if (($startreserve < $now) &&
                   8735:                 (!$endreserve || $endreserve > $now)) {
                   8736:                 my $lastres = $endreserve;
                   8737:                 if (!$lastres) {
                   8738:                     $lastres = $slots{$slot}->{'starttime'};
                   8739:                 }
                   8740:                 $reservable_now{$slot} = {
                   8741:                                            symb       => $symb,
                   8742:                                            endreserve => $lastres
                   8743:                                          };
                   8744:             } elsif (($startreserve > $now) &&
                   8745:                      (!$endreserve || $endreserve > $startreserve)) {
                   8746:                 $future_reservable{$slot} = {
                   8747:                                               symb         => $symb,
                   8748:                                               startreserve => $startreserve
                   8749:                                             };
                   8750:             }
                   8751:         }
                   8752:     }
                   8753:     my @unsorted_reservable = keys(%reservable_now);
                   8754:     if (@unsorted_reservable > 0) {
                   8755:         @sorted_reservable = 
                   8756:             &sorted_slots(\@unsorted_reservable,\%reservable_now,'endreserve');
                   8757:     }
                   8758:     my @unsorted_future = keys(%future_reservable);
                   8759:     if (@unsorted_future > 0) {
                   8760:         @sorted_future =
                   8761:             &sorted_slots(\@unsorted_future,\%future_reservable,'startreserve');
                   8762:     }
                   8763:     return (\@sorted_reservable,\%reservable_now,\@sorted_future,\%future_reservable);
                   8764: }
1.780     raeburn  8765: 
                   8766: =pod
                   8767: 
1.549     albertel 8768: =head1 HTTP Helpers
                   8769: 
                   8770: =over 4
                   8771: 
1.648     raeburn  8772: =item * &get_unprocessed_cgi($query,$possible_names)
1.112     bowersj2 8773: 
1.258     albertel 8774: Modify the %env hash to contain unprocessed CGI form parameters held in
1.112     bowersj2 8775: $query.  The parameters listed in $possible_names (an array reference),
1.258     albertel 8776: will be set in $env{'form.name'} if they do not already exist.
1.112     bowersj2 8777: 
                   8778: Typically called with $ENV{'QUERY_STRING'} as the first parameter.  
                   8779: $possible_names is an ref to an array of form element names.  As an example:
                   8780: get_unprocessed_cgi($ENV{'QUERY_STRING'},['uname','udom']);
1.258     albertel 8781: will result in $env{'form.uname'} and $env{'form.udom'} being set.
1.112     bowersj2 8782: 
                   8783: =cut
1.1       albertel 8784: 
1.6       albertel 8785: sub get_unprocessed_cgi {
1.25      albertel 8786:   my ($query,$possible_names)= @_;
1.26      matthew  8787:   # $Apache::lonxml::debug=1;
1.356     albertel 8788:   foreach my $pair (split(/&/,$query)) {
                   8789:     my ($name, $value) = split(/=/,$pair);
1.369     www      8790:     $name = &unescape($name);
1.25      albertel 8791:     if (!defined($possible_names) || (grep {$_ eq $name} @$possible_names)) {
                   8792:       $value =~ tr/+/ /;
                   8793:       $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
1.258     albertel 8794:       unless (defined($env{'form.'.$name})) { &add_to_env('form.'.$name,$value) };
1.25      albertel 8795:     }
1.16      harris41 8796:   }
1.6       albertel 8797: }
                   8798: 
1.112     bowersj2 8799: =pod
                   8800: 
1.648     raeburn  8801: =item * &cacheheader() 
1.112     bowersj2 8802: 
                   8803: returns cache-controlling header code
                   8804: 
                   8805: =cut
                   8806: 
1.7       albertel 8807: sub cacheheader {
1.258     albertel 8808:     unless ($env{'request.method'} eq 'GET') { return ''; }
1.216     albertel 8809:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime);
                   8810:     my $output .='<meta HTTP-EQUIV="Expires" CONTENT="'.$date.'" />
1.7       albertel 8811:                 <meta HTTP-EQUIV="Cache-control" CONTENT="no-cache" />
                   8812:                 <meta HTTP-EQUIV="Pragma" CONTENT="no-cache" />';
1.216     albertel 8813:     return $output;
1.7       albertel 8814: }
                   8815: 
1.112     bowersj2 8816: =pod
                   8817: 
1.648     raeburn  8818: =item * &no_cache($r) 
1.112     bowersj2 8819: 
                   8820: specifies header code to not have cache
                   8821: 
                   8822: =cut
                   8823: 
1.9       albertel 8824: sub no_cache {
1.216     albertel 8825:     my ($r) = @_;
                   8826:     if ($ENV{'REQUEST_METHOD'} ne 'GET' &&
1.258     albertel 8827: 	$env{'request.method'} ne 'GET') { return ''; }
1.216     albertel 8828:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime(time));
                   8829:     $r->no_cache(1);
                   8830:     $r->header_out("Expires" => $date);
                   8831:     $r->header_out("Pragma" => "no-cache");
1.123     www      8832: }
                   8833: 
                   8834: sub content_type {
1.181     albertel 8835:     my ($r,$type,$charset) = @_;
1.299     foxr     8836:     if ($r) {
                   8837: 	#  Note that printout.pl calls this with undef for $r.
                   8838: 	&no_cache($r);
                   8839:     }
1.258     albertel 8840:     if ($env{'browser.mathml'} && $type eq 'text/html') { $type='text/xml'; }
1.181     albertel 8841:     unless ($charset) {
                   8842: 	$charset=&Apache::lonlocal::current_encoding;
                   8843:     }
                   8844:     if ($charset) { $type.='; charset='.$charset; }
                   8845:     if ($r) {
                   8846: 	$r->content_type($type);
                   8847:     } else {
                   8848: 	print("Content-type: $type\n\n");
                   8849:     }
1.9       albertel 8850: }
1.25      albertel 8851: 
1.112     bowersj2 8852: =pod
                   8853: 
1.648     raeburn  8854: =item * &add_to_env($name,$value) 
1.112     bowersj2 8855: 
1.258     albertel 8856: adds $name to the %env hash with value
1.112     bowersj2 8857: $value, if $name already exists, the entry is converted to an array
                   8858: reference and $value is added to the array.
                   8859: 
                   8860: =cut
                   8861: 
1.25      albertel 8862: sub add_to_env {
                   8863:   my ($name,$value)=@_;
1.258     albertel 8864:   if (defined($env{$name})) {
                   8865:     if (ref($env{$name})) {
1.25      albertel 8866:       #already have multiple values
1.258     albertel 8867:       push(@{ $env{$name} },$value);
1.25      albertel 8868:     } else {
                   8869:       #first time seeing multiple values, convert hash entry to an arrayref
1.258     albertel 8870:       my $first=$env{$name};
                   8871:       undef($env{$name});
                   8872:       push(@{ $env{$name} },$first,$value);
1.25      albertel 8873:     }
                   8874:   } else {
1.258     albertel 8875:     $env{$name}=$value;
1.25      albertel 8876:   }
1.31      albertel 8877: }
1.149     albertel 8878: 
                   8879: =pod
                   8880: 
1.648     raeburn  8881: =item * &get_env_multiple($name) 
1.149     albertel 8882: 
1.258     albertel 8883: gets $name from the %env hash, it seemlessly handles the cases where multiple
1.149     albertel 8884: values may be defined and end up as an array ref.
                   8885: 
                   8886: returns an array of values
                   8887: 
                   8888: =cut
                   8889: 
                   8890: sub get_env_multiple {
                   8891:     my ($name) = @_;
                   8892:     my @values;
1.258     albertel 8893:     if (defined($env{$name})) {
1.149     albertel 8894:         # exists is it an array
1.258     albertel 8895:         if (ref($env{$name})) {
                   8896:             @values=@{ $env{$name} };
1.149     albertel 8897:         } else {
1.258     albertel 8898:             $values[0]=$env{$name};
1.149     albertel 8899:         }
                   8900:     }
                   8901:     return(@values);
                   8902: }
                   8903: 
1.660     raeburn  8904: sub ask_for_embedded_content {
                   8905:     my ($actionurl,$state,$allfiles,$codebase,$args)=@_;
1.987     raeburn  8906:     my (%subdependencies,%dependencies,%mapping,%existing,%newfiles,%pathchanges);
1.660     raeburn  8907:     my $num = 0;
1.987     raeburn  8908:     my $numremref = 0;
                   8909:     my $numinvalid = 0;
                   8910:     my $numpathchg = 0;
                   8911:     my $numexisting = 0;
                   8912:     my ($output,$upload_output,$toplevel,$url,$udom,$uname,$getpropath);
1.984     raeburn  8913:     if (($actionurl eq '/adm/portfolio') || ($actionurl eq '/adm/coursegrp_portfolio')) {
                   8914:         my $current_path='/';
                   8915:         if ($env{'form.currentpath'}) {
                   8916:             $current_path = $env{'form.currentpath'};
                   8917:         }
                   8918:         if ($actionurl eq '/adm/coursegrp_portfolio') {
                   8919:             $udom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   8920:             $uname = $env{'course.'.$env{'request.course.id'}.'.num'};
                   8921:             $url = '/userfiles/groups/'.$env{'form.group'}.'/portfolio';
                   8922:         } else {
                   8923:             $udom = $env{'user.domain'};
                   8924:             $uname = $env{'user.name'};
                   8925:             $url = '/userfiles/portfolio';
                   8926:         }
1.987     raeburn  8927:         $toplevel = $url.'/';
1.984     raeburn  8928:         $url .= $current_path;
                   8929:         $getpropath = 1;
1.987     raeburn  8930:     } elsif (($actionurl eq '/adm/upload') || ($actionurl eq '/adm/testbank') ||
                   8931:              ($actionurl eq '/adm/imsimport')) { 
1.1022    www      8932:         my ($udom,$uname,$rest) = ($args->{'current_path'} =~ m{/priv/($match_domain)/($match_username)/?(.*)$});
1.1026    raeburn  8933:         $url = $Apache::lonnet::perlvar{'lonDocRoot'}."/priv/$udom/$uname/";
1.987     raeburn  8934:         $toplevel = $url;
1.984     raeburn  8935:         if ($rest ne '') {
1.987     raeburn  8936:             $url .= $rest;
                   8937:         }
                   8938:     } elsif ($actionurl eq '/adm/coursedocs') {
                   8939:         if (ref($args) eq 'HASH') {
                   8940:            $url = $args->{'docs_url'};
                   8941:            $toplevel = $url;
                   8942:         }
                   8943:     }
                   8944:     my $now = time();
                   8945:     foreach my $embed_file (keys(%{$allfiles})) {
                   8946:         my $absolutepath;
                   8947:         if ($embed_file =~ m{^\w+://}) {
                   8948:             $newfiles{$embed_file} = 1;
                   8949:             $mapping{$embed_file} = $embed_file;
                   8950:         } else {
                   8951:             if ($embed_file =~ m{^/}) {
                   8952:                 $absolutepath = $embed_file;
                   8953:                 $embed_file =~ s{^(/+)}{};
                   8954:             }
                   8955:             if ($embed_file =~ m{/}) {
                   8956:                 my ($path,$fname) = ($embed_file =~ m{^(.+)/([^/]*)$});
                   8957:                 $path = &check_for_traversal($path,$url,$toplevel);
                   8958:                 my $item = $fname;
                   8959:                 if ($path ne '') {
                   8960:                     $item = $path.'/'.$fname;
                   8961:                     $subdependencies{$path}{$fname} = 1;
                   8962:                 } else {
                   8963:                     $dependencies{$item} = 1;
                   8964:                 }
                   8965:                 if ($absolutepath) {
                   8966:                     $mapping{$item} = $absolutepath;
                   8967:                 } else {
                   8968:                     $mapping{$item} = $embed_file;
                   8969:                 }
                   8970:             } else {
                   8971:                 $dependencies{$embed_file} = 1;
                   8972:                 if ($absolutepath) {
                   8973:                     $mapping{$embed_file} = $absolutepath;
                   8974:                 } else {
                   8975:                     $mapping{$embed_file} = $embed_file;
                   8976:                 }
                   8977:             }
1.984     raeburn  8978:         }
                   8979:     }
                   8980:     foreach my $path (keys(%subdependencies)) {
                   8981:         my %currsubfile;
                   8982:         if (($actionurl eq '/adm/portfolio') || ($actionurl eq '/adm/coursegrp_portfolio')) { 
1.1021    raeburn  8983:             my ($sublistref,$listerror) =
                   8984:                 &Apache::lonnet::dirlist($url.$path,$udom,$uname,$getpropath);
                   8985:             if (ref($sublistref) eq 'ARRAY') {
                   8986:                 foreach my $line (@{$sublistref}) {
                   8987:                     my ($file_name,$rest) = split(/\&/,$line,2);
                   8988:                     $currsubfile{$file_name} = 1;
                   8989:                 }
1.984     raeburn  8990:             }
1.987     raeburn  8991:         } elsif (($actionurl eq '/adm/upload') || ($actionurl eq '/adm/testbank')) {
1.984     raeburn  8992:             if (opendir(my $dir,$url.'/'.$path)) {
                   8993:                 my @subdir_list = grep(!/^\./,readdir($dir));
                   8994:                 map {$currsubfile{$_} = 1;} @subdir_list;
                   8995:             }
                   8996:         }
                   8997:         foreach my $file (keys(%{$subdependencies{$path}})) {
1.987     raeburn  8998:             if ($currsubfile{$file}) {
                   8999:                 my $item = $path.'/'.$file;
                   9000:                 unless ($mapping{$item} eq $item) {
                   9001:                     $pathchanges{$item} = 1;
                   9002:                 }
                   9003:                 $existing{$item} = 1;
                   9004:                 $numexisting ++;
                   9005:             } else {
                   9006:                 $newfiles{$path.'/'.$file} = 1;
1.984     raeburn  9007:             }
                   9008:         }
                   9009:     }
1.987     raeburn  9010:     my %currfile;
1.984     raeburn  9011:     if (($actionurl eq '/adm/portfolio') || ($actionurl eq '/adm/coursegrp_portfolio')) {
1.1021    raeburn  9012:         my ($dirlistref,$listerror) =
                   9013:             &Apache::lonnet::dirlist($url,$udom,$uname,$getpropath);
                   9014:         if (ref($dirlistref) eq 'ARRAY') {
                   9015:             foreach my $line (@{$dirlistref}) {
                   9016:                 my ($file_name,$rest) = split(/\&/,$line,2);
                   9017:                 $currfile{$file_name} = 1;
                   9018:             }
1.984     raeburn  9019:         }
1.987     raeburn  9020:     } elsif (($actionurl eq '/adm/upload') || ($actionurl eq '/adm/testbank')) {
1.984     raeburn  9021:         if (opendir(my $dir,$url)) {
1.987     raeburn  9022:             my @dir_list = grep(!/^\./,readdir($dir));
1.984     raeburn  9023:             map {$currfile{$_} = 1;} @dir_list;
                   9024:         }
                   9025:     }
                   9026:     foreach my $file (keys(%dependencies)) {
1.987     raeburn  9027:         if ($currfile{$file}) {
                   9028:             unless ($mapping{$file} eq $file) {
                   9029:                 $pathchanges{$file} = 1;
                   9030:             }
                   9031:             $existing{$file} = 1;
                   9032:             $numexisting ++;
                   9033:         } else {
1.984     raeburn  9034:             $newfiles{$file} = 1;
                   9035:         }
                   9036:     }
                   9037:     foreach my $embed_file (sort {lc($a) cmp lc($b)} keys(%newfiles)) {
1.660     raeburn  9038:         $upload_output .= &start_data_table_row().
1.987     raeburn  9039:                           '<td><span class="LC_filename">'.$embed_file.'</span>';
                   9040:         unless ($mapping{$embed_file} eq $embed_file) {
                   9041:             $upload_output .= '<br /><span class="LC_info" style="font-size:smaller;">'.&mt('changed from: [_1]',$mapping{$embed_file}).'</span>';
                   9042:         }
                   9043:         $upload_output .= '</td><td>';
1.660     raeburn  9044:         if ($args->{'ignore_remote_references'}
                   9045:             && $embed_file =~ m{^\w+://}) {
                   9046:             $upload_output.='<span class="LC_warning">'.&mt("URL points to other server.").'</span>';
1.987     raeburn  9047:             $numremref++;
1.660     raeburn  9048:         } elsif ($args->{'error_on_invalid_names'}
                   9049:             && $embed_file ne &Apache::lonnet::clean_filename($embed_file,{'keep_path' => 1,})) {
                   9050: 
1.987     raeburn  9051:             $upload_output.='<span class="LC_warning">'.&mt('Invalid characters').'</span>';
                   9052:             $numinvalid++;
1.660     raeburn  9053:         } else {
1.987     raeburn  9054:             $upload_output .= &embedded_file_element('upload_embedded',$num,
                   9055:                                                      $embed_file,\%mapping,
                   9056:                                                      $allfiles,$codebase);
                   9057:             $num++;
                   9058:         }
                   9059:         $upload_output .= '</td>'.&Apache::loncommon::end_data_table_row()."\n";
                   9060:     }
                   9061:     foreach my $embed_file (sort {lc($a) cmp lc($b)} keys(%existing)) {
                   9062:         $upload_output .= &start_data_table_row().
                   9063:                           '<td><span class="LC_filename">'.$embed_file.'</span></td>'.
                   9064:                           '<td><span class="LC_warning">'.&mt('Already exists').'</span></td>'.
                   9065:                           &Apache::loncommon::end_data_table_row()."\n";
                   9066:     }
                   9067:     if ($upload_output) {
                   9068:         $upload_output = &start_data_table().
                   9069:                          $upload_output.
                   9070:                          &end_data_table()."\n";
                   9071:     }
                   9072:     my $applies = 0;
                   9073:     if ($numremref) {
                   9074:         $applies ++;
                   9075:     }
                   9076:     if ($numinvalid) {
                   9077:         $applies ++;
                   9078:     }
                   9079:     if ($numexisting) {
                   9080:         $applies ++;
                   9081:     }
                   9082:     if ($num) {
                   9083:         $output = '<form name="upload_embedded" action="'.$actionurl.'"'.
                   9084:                   ' method="post" enctype="multipart/form-data">'."\n".
                   9085:                   $state.
                   9086:                   '<h3>'.&mt('Upload embedded files').
                   9087:                   ':</h3>'.$upload_output.'<br />'."\n".
                   9088:                   '<input type ="hidden" name="number_embedded_items" value="'.
                   9089:                   $num.'" />'."\n";
                   9090:         if ($actionurl eq '') {
                   9091:             $output .=  '<input type="hidden" name="phase" value="three" />';
                   9092:         }
                   9093:     } elsif ($applies) {
                   9094:         $output = '<b>'.&mt('Referenced files').'</b>:<br />';
                   9095:         if ($applies > 1) {
                   9096:             $output .=  
                   9097:                 &mt('No files need to be uploaded, as one of the following applies to each reference:').'<ul>';
                   9098:             if ($numremref) {
                   9099:                 $output .= '<li>'.&mt('reference is to a URL which points to another server').'</li>'."\n";
                   9100:             }
                   9101:             if ($numinvalid) {
                   9102:                 $output .= '<li>'.&mt('reference is to file with a name containing invalid characters').'</li>'."\n";
                   9103:             }
                   9104:             if ($numexisting) {
                   9105:                 $output .= '<li>'.&mt('reference is to an existing file at the specified location').'</li>'."\n";
                   9106:             }
                   9107:             $output .= '</ul><br />';
                   9108:         } elsif ($numremref) {
                   9109:             $output .= '<p>'.&mt('None to upload, as all references are to URLs pointing to another server.').'</p>';
                   9110:         } elsif ($numinvalid) {
                   9111:             $output .= '<p>'.&mt('None to upload, as all references are to files with names containing invalid characters.').'</p>';
                   9112:         } elsif ($numexisting) {
                   9113:             $output .= '<p>'.&mt('None to upload, as all references are to existing files.').'</p>';
                   9114:         }
                   9115:         $output .= $upload_output.'<br />';
                   9116:     }
                   9117:     my ($pathchange_output,$chgcount);
                   9118:     $chgcount = $num;
                   9119:     if (keys(%pathchanges) > 0) {
                   9120:         foreach my $embed_file (sort {lc($a) cmp lc($b)} keys(%pathchanges)) {
                   9121:             if ($num) {
                   9122:                 $output .= &embedded_file_element('pathchange',$chgcount,
                   9123:                                                   $embed_file,\%mapping,
                   9124:                                                   $allfiles,$codebase);
                   9125:             } else {
                   9126:                 $pathchange_output .= 
                   9127:                     &start_data_table_row().
                   9128:                     '<td><input type ="checkbox" name="namechange" value="'.
                   9129:                     $chgcount.'" checked="checked" /></td>'.
                   9130:                     '<td>'.$mapping{$embed_file}.'</td>'.
                   9131:                     '<td>'.$embed_file.
                   9132:                     &embedded_file_element('pathchange',$numpathchg,$embed_file,
                   9133:                                            \%mapping,$allfiles,$codebase).
                   9134:                     '</td>'.&end_data_table_row();
1.660     raeburn  9135:             }
1.987     raeburn  9136:             $numpathchg ++;
                   9137:             $chgcount ++;
1.660     raeburn  9138:         }
                   9139:     }
1.984     raeburn  9140:     if ($num) {
1.987     raeburn  9141:         if ($numpathchg) {
                   9142:             $output .= '<input type ="hidden" name="number_pathchange_items" value="'.
                   9143:                        $numpathchg.'" />'."\n";
                   9144:         }
                   9145:         if (($actionurl eq '/adm/upload') || ($actionurl eq '/adm/testbank') || 
                   9146:             ($actionurl eq '/adm/imsimport')) {
                   9147:             $output .= '<input type="hidden" name="phase" value="three" />'."\n";
                   9148:         } elsif ($actionurl eq '/adm/portfolio' || $actionurl eq '/adm/coursegrp_portfolio') {
                   9149:             $output .= '<input type="hidden" name="action" value="upload_embedded" />';
                   9150:         }
                   9151:         $output .=  '<input type ="submit" value="'.&mt('Upload Listed Files').'" />'."\n".
                   9152:                     &mt('(only files for which a location has been provided will be uploaded)').'</form>'."\n";
                   9153:     } elsif ($numpathchg) {
                   9154:         my %pathchange = ();
                   9155:         $output .= &modify_html_form('pathchange',$actionurl,$state,\%pathchange,$pathchange_output);
                   9156:         if (($actionurl eq '/adm/portfolio') || ($actionurl eq '/adm/coursegrp_portfolio')) {
                   9157:             $output .= '<p>'.&mt('or').'</p>'; 
                   9158:         } 
                   9159:     }
                   9160:     return ($output,$num,$numpathchg);
                   9161: }
                   9162: 
                   9163: sub embedded_file_element {
                   9164:     my ($context,$num,$embed_file,$mapping,$allfiles,$codebase) = @_;
                   9165:     return unless ((ref($mapping) eq 'HASH') && (ref($allfiles) eq 'HASH') &&
                   9166:                    (ref($codebase) eq 'HASH'));
                   9167:     my $output;
                   9168:     if ($context eq 'upload_embedded') {
                   9169:        $output = '<input name="embedded_item_'.$num.'" type="file" value="" />'."\n";
                   9170:     }
                   9171:     $output .= '<input name="embedded_orig_'.$num.'" type="hidden" value="'.
                   9172:                &escape($embed_file).'" />';
                   9173:     unless (($context eq 'upload_embedded') && 
                   9174:             ($mapping->{$embed_file} eq $embed_file)) {
                   9175:         $output .='
                   9176:         <input name="embedded_ref_'.$num.'" type="hidden" value="'.&escape($mapping->{$embed_file}).'" />';
                   9177:     }
                   9178:     my $attrib;
                   9179:     if (ref($allfiles->{$mapping->{$embed_file}}) eq 'ARRAY') {
                   9180:         $attrib = &escape(join(':',@{$allfiles->{$mapping->{$embed_file}}}));
                   9181:     }
                   9182:     $output .=
                   9183:         "\n\t\t".
                   9184:         '<input name="embedded_attrib_'.$num.'" type="hidden" value="'.
                   9185:         $attrib.'" />';
                   9186:     if (exists($codebase->{$mapping->{$embed_file}})) {
                   9187:         $output .=
                   9188:             "\n\t\t".
                   9189:             '<input name="codebase_'.$num.'" type="hidden" value="'.
                   9190:             &escape($codebase->{$mapping->{$embed_file}}).'" />';
1.984     raeburn  9191:     }
1.987     raeburn  9192:     return $output;
1.660     raeburn  9193: }
                   9194: 
1.661     raeburn  9195: sub upload_embedded {
                   9196:     my ($context,$dirpath,$uname,$udom,$dir_root,$url_root,$group,$disk_quota,
1.987     raeburn  9197:         $current_disk_usage,$hiddenstate,$actionurl) = @_;
                   9198:     my (%pathchange,$output,$modifyform,$footer,$returnflag);
1.661     raeburn  9199:     for (my $i=0; $i<$env{'form.number_embedded_items'}; $i++) {
                   9200:         next if (!exists($env{'form.embedded_item_'.$i.'.filename'}));
                   9201:         my $orig_uploaded_filename =
                   9202:             $env{'form.embedded_item_'.$i.'.filename'};
1.987     raeburn  9203:         foreach my $type ('orig','ref','attrib','codebase') {
                   9204:             if ($env{'form.embedded_'.$type.'_'.$i} ne '') {
                   9205:                 $env{'form.embedded_'.$type.'_'.$i} =
                   9206:                     &unescape($env{'form.embedded_'.$type.'_'.$i});
                   9207:             }
                   9208:         }
1.661     raeburn  9209:         my ($path,$fname) =
                   9210:             ($env{'form.embedded_orig_'.$i} =~ m{(.*/)([^/]*)});
                   9211:         # no path, whole string is fname
                   9212:         if (!$fname) { $fname = $env{'form.embedded_orig_'.$i} };
                   9213:         $fname = &Apache::lonnet::clean_filename($fname);
                   9214:         # See if there is anything left
                   9215:         next if ($fname eq '');
                   9216: 
                   9217:         # Check if file already exists as a file or directory.
                   9218:         my ($state,$msg);
                   9219:         if ($context eq 'portfolio') {
                   9220:             my $port_path = $dirpath;
                   9221:             if ($group ne '') {
                   9222:                 $port_path = "groups/$group/$port_path";
                   9223:             }
1.987     raeburn  9224:             ($state,$msg) = &check_for_upload($env{'form.currentpath'}.$path,
                   9225:                                               $fname,$group,'embedded_item_'.$i,
1.661     raeburn  9226:                                               $dir_root,$port_path,$disk_quota,
                   9227:                                               $current_disk_usage,$uname,$udom);
                   9228:             if ($state eq 'will_exceed_quota'
1.984     raeburn  9229:                 || $state eq 'file_locked') {
1.661     raeburn  9230:                 $output .= $msg;
                   9231:                 next;
                   9232:             }
                   9233:         } elsif (($context eq 'author') || ($context eq 'testbank')) {
                   9234:             ($state,$msg) = &check_for_existing($path,$fname,'embedded_item_'.$i);
                   9235:             if ($state eq 'exists') {
                   9236:                 $output .= $msg;
                   9237:                 next;
                   9238:             }
                   9239:         }
                   9240:         # Check if extension is valid
                   9241:         if (($fname =~ /\.(\w+)$/) &&
                   9242:             (&Apache::loncommon::fileembstyle($1) eq 'hdn')) {
1.987     raeburn  9243:             $output .= &mt('Invalid file extension ([_1]) - reserved for LONCAPA use - rename the file with a different extension and re-upload. ',$1).'<br />';
1.661     raeburn  9244:             next;
                   9245:         } elsif (($fname =~ /\.(\w+)$/) &&
                   9246:                  (!defined(&Apache::loncommon::fileembstyle($1)))) {
1.987     raeburn  9247:             $output .= &mt('Unrecognized file extension ([_1]) - rename the file with a proper extension and re-upload.',$1).'<br />';
1.661     raeburn  9248:             next;
                   9249:         } elsif ($fname=~/\.(\d+)\.(\w+)$/) {
1.987     raeburn  9250:             $output .= &mt('File name not allowed - rename the file to remove the number immediately before the file extension([_1]) and re-upload.',$2).'<br />';
1.661     raeburn  9251:             next;
                   9252:         }
                   9253: 
                   9254:         $env{'form.embedded_item_'.$i.'.filename'}=$fname;
                   9255:         if ($context eq 'portfolio') {
1.984     raeburn  9256:             my $result;
                   9257:             if ($state eq 'existingfile') {
                   9258:                 $result=
                   9259:                     &Apache::lonnet::userfileupload('embedded_item_'.$i,'existingfile',
1.987     raeburn  9260:                                                     $dirpath.$env{'form.currentpath'}.$path);
1.661     raeburn  9261:             } else {
1.984     raeburn  9262:                 $result=
                   9263:                     &Apache::lonnet::userfileupload('embedded_item_'.$i,'',
1.987     raeburn  9264:                                                     $dirpath.
                   9265:                                                     $env{'form.currentpath'}.$path);
1.984     raeburn  9266:                 if ($result !~ m|^/uploaded/|) {
                   9267:                     $output .= '<span class="LC_error">'
                   9268:                                .&mt('An error occurred ([_1]) while trying to upload [_2] for embedded element [_3].'
                   9269:                                ,$result,$orig_uploaded_filename,$env{'form.embedded_orig_'.$i})
                   9270:                                .'</span><br />';
                   9271:                     next;
                   9272:                 } else {
1.987     raeburn  9273:                     $output .= &mt('Uploaded [_1]','<span class="LC_filename">'.
                   9274:                                $path.$fname.'</span>').'<br />';     
1.984     raeburn  9275:                 }
1.661     raeburn  9276:             }
1.987     raeburn  9277:         } elsif ($context eq 'coursedoc') {
                   9278:             my $result =
                   9279:                 &Apache::lonnet::userfileupload('embedded_item_'.$i,'coursedoc',
                   9280:                                                 $dirpath.'/'.$path);
                   9281:             if ($result !~ m|^/uploaded/|) {
                   9282:                 $output .= '<span class="LC_error">'
                   9283:                            .&mt('An error occurred ([_1]) while trying to upload [_2] for embedded element [_3].'
                   9284:                            ,$result,$orig_uploaded_filename,$env{'form.embedded_orig_'.$i})
                   9285:                            .'</span><br />';
                   9286:                     next;
                   9287:             } else {
                   9288:                 $output .= &mt('Uploaded [_1]','<span class="LC_filename">'.
                   9289:                            $path.$fname.'</span>').'<br />';
                   9290:             }
1.661     raeburn  9291:         } else {
                   9292: # Save the file
                   9293:             my $target = $env{'form.embedded_item_'.$i};
                   9294:             my $fullpath = $dir_root.$dirpath.'/'.$path;
                   9295:             my $dest = $fullpath.$fname;
                   9296:             my $url = $url_root.$dirpath.'/'.$path.$fname;
1.1027    raeburn  9297:             my @parts=split(/\//,"$dirpath/$path");
1.661     raeburn  9298:             my $count;
                   9299:             my $filepath = $dir_root;
1.1027    raeburn  9300:             foreach my $subdir (@parts) {
                   9301:                 $filepath .= "/$subdir";
                   9302:                 if (!-e $filepath) {
1.661     raeburn  9303:                     mkdir($filepath,0770);
                   9304:                 }
                   9305:             }
                   9306:             my $fh;
                   9307:             if (!open($fh,'>'.$dest)) {
                   9308:                 &Apache::lonnet::logthis('Failed to create '.$dest);
                   9309:                 $output .= '<span class="LC_error">'.
                   9310:                            &mt('An error occurred while trying to upload [_1] for embedded element [_2].',$orig_uploaded_filename,$env{'form.embedded_orig_'.$i}).
                   9311:                            '</span><br />';
                   9312:             } else {
                   9313:                 if (!print $fh $env{'form.embedded_item_'.$i}) {
                   9314:                     &Apache::lonnet::logthis('Failed to write to '.$dest);
                   9315:                     $output .= '<span class="LC_error">'.
                   9316:                               &mt('An error occurred while writing the file [_1] for embedded element [_2].',$orig_uploaded_filename,$env{'form.embedded_orig_'.$i}).
                   9317:                               '</span><br />';
                   9318:                 } else {
1.987     raeburn  9319:                     $output .= &mt('Uploaded [_1]','<span class="LC_filename">'.
                   9320:                                $url.'</span>').'<br />';
                   9321:                     unless ($context eq 'testbank') {
                   9322:                         $footer .= &mt('View embedded file: [_1]',
                   9323:                                        '<a href="'.$url.'">'.$fname.'</a>').'<br />';
                   9324:                     }
                   9325:                 }
                   9326:                 close($fh);
                   9327:             }
                   9328:         }
                   9329:         if ($env{'form.embedded_ref_'.$i}) {
                   9330:             $pathchange{$i} = 1;
                   9331:         }
                   9332:     }
                   9333:     if ($output) {
                   9334:         $output = '<p>'.$output.'</p>';
                   9335:     }
                   9336:     $output .= &modify_html_form('upload_embedded',$actionurl,$hiddenstate,\%pathchange);
                   9337:     $returnflag = 'ok';
                   9338:     if (keys(%pathchange) > 0) {
                   9339:         if ($context eq 'portfolio') {
                   9340:             $output .= '<p>'.&mt('or').'</p>';
                   9341:         } elsif ($context eq 'testbank') {
1.988     raeburn  9342:             $output .=  '<p>'.&mt('Or [_1]continue[_2] the testbank import without modifying the reference(s).','<a href="javascript:document.testbankForm.submit();">','</a>').'</p>';
1.987     raeburn  9343:             $returnflag = 'modify_orightml';
                   9344:         }
                   9345:     }
                   9346:     return ($output.$footer,$returnflag);
                   9347: }
                   9348: 
                   9349: sub modify_html_form {
                   9350:     my ($context,$actionurl,$hiddenstate,$pathchange,$pathchgtable) = @_;
                   9351:     my $end = 0;
                   9352:     my $modifyform;
                   9353:     if ($context eq 'upload_embedded') {
                   9354:         return unless (ref($pathchange) eq 'HASH');
                   9355:         if ($env{'form.number_embedded_items'}) {
                   9356:             $end += $env{'form.number_embedded_items'};
                   9357:         }
                   9358:         if ($env{'form.number_pathchange_items'}) {
                   9359:             $end += $env{'form.number_pathchange_items'};
                   9360:         }
                   9361:         if ($end) {
                   9362:             for (my $i=0; $i<$end; $i++) {
                   9363:                 if ($i < $env{'form.number_embedded_items'}) {
                   9364:                     next unless($pathchange->{$i});
                   9365:                 }
                   9366:                 $modifyform .=
                   9367:                     &start_data_table_row().
                   9368:                     '<td><input type ="checkbox" name="namechange" value="'.$i.'" '.
                   9369:                     'checked="checked" /></td>'.
                   9370:                     '<td>'.$env{'form.embedded_ref_'.$i}.
                   9371:                     '<input type="hidden" name="embedded_ref_'.$i.'" value="'.
                   9372:                     &escape($env{'form.embedded_ref_'.$i}).'" />'.
                   9373:                     '<input type="hidden" name="embedded_codebase_'.$i.'" value="'.
                   9374:                     &escape($env{'form.embedded_codebase_'.$i}).'" />'.
                   9375:                     '<input type="hidden" name="embedded_attrib_'.$i.'" value="'.
                   9376:                     &escape($env{'form.embedded_attrib_'.$i}).'" /></td>'.
                   9377:                     '<td>'.$env{'form.embedded_orig_'.$i}.
                   9378:                     '<input type="hidden" name="embedded_orig_'.$i.'" value="'.
                   9379:                     &escape($env{'form.embedded_orig_'.$i}).'" /></td>'.
                   9380:                     &end_data_table_row();
                   9381:             } 
                   9382:         }
                   9383:     } else {
                   9384:         $modifyform = $pathchgtable;
                   9385:         if (($actionurl eq '/adm/upload') || ($actionurl eq '/adm/testbank')) {
                   9386:             $hiddenstate .= '<input type="hidden" name="phase" value="four" />';
                   9387:         } elsif (($actionurl eq '/adm/portfolio') || ($actionurl eq '/adm/coursegrp_portfolio')) {
                   9388:             $hiddenstate .= '<input type="hidden" name="action" value="modify_orightml" />';
                   9389:         }
                   9390:     }
                   9391:     if ($modifyform) {
                   9392:         return '<h3>'.&mt('Changes in content of HTML file required').'</h3>'."\n".
                   9393:                '<p>'.&mt('Changes need to be made to the reference(s) used for one or more of the dependencies, if your HTML file is to work correctly:').'<ol>'."\n".
                   9394:                '<li>'.&mt('For consistency between the reference(s) and the location of the corresponding stored file within LON-CAPA.').'</li>'."\n".
                   9395:                '<li>'.&mt('To change absolute paths to relative paths, or replace directory traversal via "../" within the original reference.').'</li>'."\n".
                   9396:                '</ol></p>'."\n".'<p>'.
                   9397:                &mt('LON-CAPA can make the required changes to your HTML file.').'</p>'."\n".
                   9398:                '<form method="post" name="refchanger" action="'.$actionurl.'">'.
                   9399:                &start_data_table()."\n".
                   9400:                &start_data_table_header_row().
                   9401:                '<th>'.&mt('Change?').'</th>'.
                   9402:                '<th>'.&mt('Current reference').'</th>'.
                   9403:                '<th>'.&mt('Required reference').'</th>'.
                   9404:                &end_data_table_header_row()."\n".
                   9405:                $modifyform.
                   9406:                &end_data_table().'<br />'."\n".$hiddenstate.
                   9407:                '<input type="submit" name="pathchanges" value="'.&mt('Modify HTML file').'" />'.
                   9408:                '</form>'."\n";
                   9409:     }
                   9410:     return;
                   9411: }
                   9412: 
                   9413: sub modify_html_refs {
                   9414:     my ($context,$dirpath,$uname,$udom,$dir_root) = @_;
                   9415:     my $container;
                   9416:     if ($context eq 'portfolio') {
                   9417:         $container = $env{'form.container'};
                   9418:     } elsif ($context eq 'coursedoc') {
                   9419:         $container = $env{'form.primaryurl'};
                   9420:     } else {
1.1027    raeburn  9421:         $container = $Apache::lonnet::perlvar{'lonDocRoot'}.$env{'form.filename'};
1.987     raeburn  9422:     }
                   9423:     my (%allfiles,%codebase,$output,$content);
                   9424:     my @changes = &get_env_multiple('form.namechange');
                   9425:     return unless (@changes > 0);
                   9426:     if (($context eq 'portfolio') || ($context eq 'coursedoc')) {
                   9427:         return unless ($container =~ m{^/uploaded/\Q$udom\E/\Q$uname\E/});
                   9428:         $content = &Apache::lonnet::getfile($container);
                   9429:         return if ($content eq '-1');
                   9430:     } else {
                   9431:         return unless ($container =~ /^\Q$dir_root\E/); 
                   9432:         if (open(my $fh,"<$container")) {
                   9433:             $content = join('', <$fh>);
                   9434:             close($fh);
                   9435:         } else {
                   9436:             return;
                   9437:         }
                   9438:     }
                   9439:     my ($count,$codebasecount) = (0,0);
                   9440:     my $mm = new File::MMagic;
                   9441:     my $mime_type = $mm->checktype_contents($content);
                   9442:     if ($mime_type eq 'text/html') {
                   9443:         my $parse_result = 
                   9444:             &Apache::lonnet::extract_embedded_items($container,\%allfiles,
                   9445:                                                     \%codebase,\$content);
                   9446:         if ($parse_result eq 'ok') {
                   9447:             foreach my $i (@changes) {
                   9448:                 my $orig = &unescape($env{'form.embedded_orig_'.$i});
                   9449:                 my $ref = &unescape($env{'form.embedded_ref_'.$i});
                   9450:                 if ($allfiles{$ref}) {
                   9451:                     my $newname =  $orig;
                   9452:                     my ($attrib_regexp,$codebase);
1.1006    raeburn  9453:                     $attrib_regexp = &unescape($env{'form.embedded_attrib_'.$i});
1.987     raeburn  9454:                     if ($attrib_regexp =~ /:/) {
                   9455:                         $attrib_regexp =~ s/\:/|/g;
                   9456:                     }
                   9457:                     if ($content =~ m{($attrib_regexp\s*=\s*['"]?)\Q$ref\E(['"]?)}) {
                   9458:                         my $numchg = ($content =~ s{($attrib_regexp\s*=\s*['"]?)\Q$ref\E(['"]?)}{$1$newname$2}gi);
                   9459:                         $count += $numchg;
                   9460:                     }
                   9461:                     if ($env{'form.embedded_codebase_'.$i} ne '') {
1.1006    raeburn  9462:                         $codebase = &unescape($env{'form.embedded_codebase_'.$i});
1.987     raeburn  9463:                         my $numchg = ($content =~ s/(codebase\s*=\s*["']?)\Q$codebase\E(["']?)/$1.$2/i); #' stupid emacs
                   9464:                         $codebasecount ++;
                   9465:                     }
                   9466:                 }
                   9467:             }
                   9468:             if ($count || $codebasecount) {
                   9469:                 my $saveresult;
                   9470:                 if ($context eq 'portfolio' || $context eq 'coursedoc') {
                   9471:                     my $url = &Apache::lonnet::store_edited_file($container,$content,$udom,$uname,\$saveresult);
                   9472:                     if ($url eq $container) {
                   9473:                         my ($fname) = ($container =~ m{/([^/]+)$});
                   9474:                         $output = '<p>'.&mt('Updated [quant,_1,reference] in [_2].',
                   9475:                                             $count,'<span class="LC_filename">'.
                   9476:                                             $fname.'</span>').'</p>'; 
                   9477:                     } else {
                   9478:                          $output = '<p class="LC_error">'.
                   9479:                                    &mt('Error: update failed for: [_1].',
                   9480:                                    '<span class="LC_filename">'.
                   9481:                                    $container.'</span>').'</p>';
                   9482:                     }
                   9483:                 } else {
                   9484:                     if (open(my $fh,">$container")) {
                   9485:                         print $fh $content;
                   9486:                         close($fh);
                   9487:                         $output = '<p>'.&mt('Updated [quant,_1,reference] in [_2].',
                   9488:                                   $count,'<span class="LC_filename">'.
                   9489:                                   $container.'</span>').'</p>';
1.661     raeburn  9490:                     } else {
1.987     raeburn  9491:                          $output = '<p class="LC_error">'.
                   9492:                                    &mt('Error: could not update [_1].',
                   9493:                                    '<span class="LC_filename">'.
                   9494:                                    $container.'</span>').'</p>';
1.661     raeburn  9495:                     }
                   9496:                 }
                   9497:             }
1.987     raeburn  9498:         } else {
                   9499:             &logthis('Failed to parse '.$container.
                   9500:                      ' to modify references: '.$parse_result);
1.661     raeburn  9501:         }
                   9502:     }
                   9503:     return $output;
                   9504: }
                   9505: 
                   9506: sub check_for_existing {
                   9507:     my ($path,$fname,$element) = @_;
                   9508:     my ($state,$msg);
                   9509:     if (-d $path.'/'.$fname) {
                   9510:         $state = 'exists';
                   9511:         $msg = &mt('Unable to upload [_1]. A directory by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$path);
                   9512:     } elsif (-e $path.'/'.$fname) {
                   9513:         $state = 'exists';
                   9514:         $msg = &mt('Unable to upload [_1]. A file by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$path);
                   9515:     }
                   9516:     if ($state eq 'exists') {
                   9517:         $msg = '<span class="LC_error">'.$msg.'</span><br />';
                   9518:     }
                   9519:     return ($state,$msg);
                   9520: }
                   9521: 
                   9522: sub check_for_upload {
                   9523:     my ($path,$fname,$group,$element,$portfolio_root,$port_path,
                   9524:         $disk_quota,$current_disk_usage,$uname,$udom) = @_;
1.985     raeburn  9525:     my $filesize = length($env{'form.'.$element});
                   9526:     if (!$filesize) {
                   9527:         my $msg = '<span class="LC_error">'.
                   9528:                   &mt('Unable to upload [_1]. (size = [_2] bytes)', 
                   9529:                       '<span class="LC_filename">'.$fname.'</span>',
                   9530:                       $filesize).'<br />'.
1.1007    raeburn  9531:                   &mt('Either the file you attempted to upload was empty, or your web browser was unable to read its contents.').'<br />'.
1.985     raeburn  9532:                   '</span>';
                   9533:         return ('zero_bytes',$msg);
                   9534:     }
                   9535:     $filesize =  $filesize/1000; #express in k (1024?)
1.661     raeburn  9536:     my $getpropath = 1;
1.1021    raeburn  9537:     my ($dirlistref,$listerror) =
                   9538:          &Apache::lonnet::dirlist($portfolio_root.$path,$udom,$uname,$getpropath);
1.661     raeburn  9539:     my $found_file = 0;
                   9540:     my $locked_file = 0;
1.991     raeburn  9541:     my @lockers;
                   9542:     my $navmap;
                   9543:     if ($env{'request.course.id'}) {
                   9544:         $navmap = Apache::lonnavmaps::navmap->new();
                   9545:     }
1.1021    raeburn  9546:     if (ref($dirlistref) eq 'ARRAY') {
                   9547:         foreach my $line (@{$dirlistref}) {
                   9548:             my ($file_name,$rest)=split(/\&/,$line,2);
                   9549:             if ($file_name eq $fname){
                   9550:                 $file_name = $path.$file_name;
                   9551:                 if ($group ne '') {
                   9552:                     $file_name = $group.$file_name;
                   9553:                 }
                   9554:                 $found_file = 1;
                   9555:                 if (&Apache::lonnet::is_locked($file_name,$udom,$uname,\@lockers) eq 'true') {
                   9556:                     foreach my $lock (@lockers) {
                   9557:                         if (ref($lock) eq 'ARRAY') {
                   9558:                             my ($symb,$crsid) = @{$lock};
                   9559:                             if ($crsid eq $env{'request.course.id'}) {
                   9560:                                 if (ref($navmap)) {
                   9561:                                     my $res = $navmap->getBySymb($symb);
                   9562:                                     foreach my $part (@{$res->parts()}) { 
                   9563:                                         my ($slot_status,$slot_time,$slot_name)=$res->check_for_slot($part);
                   9564:                                         unless (($slot_status == $res->RESERVED) ||
                   9565:                                                 ($slot_status == $res->RESERVED_LOCATION)) {
                   9566:                                             $locked_file = 1;
                   9567:                                         }
1.991     raeburn  9568:                                     }
1.1021    raeburn  9569:                                 } else {
                   9570:                                     $locked_file = 1;
1.991     raeburn  9571:                                 }
                   9572:                             } else {
                   9573:                                 $locked_file = 1;
                   9574:                             }
                   9575:                         }
1.1021    raeburn  9576:                    }
                   9577:                 } else {
                   9578:                     my @info = split(/\&/,$rest);
                   9579:                     my $currsize = $info[6]/1000;
                   9580:                     if ($currsize < $filesize) {
                   9581:                         my $extra = $filesize - $currsize;
                   9582:                         if (($current_disk_usage + $extra) > $disk_quota) {
                   9583:                             my $msg = '<span class="LC_error">'.
                   9584:                                       &mt('Unable to upload [_1]. (size = [_2] kilobytes). Disk quota will be exceeded if existing (smaller) file with same name (size = [_3] kilobytes) is replaced.',
                   9585:                                           '<span class="LC_filename">'.$fname.'</span>',$filesize,$currsize).'</span>'.
                   9586:                                       '<br />'.&mt('Disk quota is [_1] kilobytes. Your current disk usage is [_2] kilobytes.',
                   9587:                                                    $disk_quota,$current_disk_usage);
                   9588:                             return ('will_exceed_quota',$msg);
                   9589:                         }
1.984     raeburn  9590:                     }
                   9591:                 }
1.661     raeburn  9592:             }
                   9593:         }
                   9594:     }
                   9595:     if (($current_disk_usage + $filesize) > $disk_quota){
                   9596:         my $msg = '<span class="LC_error">'.
                   9597:                 &mt('Unable to upload [_1]. (size = [_2] kilobytes). Disk quota will be exceeded.','<span class="LC_filename">'.$fname.'</span>',$filesize).'</span>'.
                   9598:                   '<br />'.&mt('Disk quota is [_1] kilobytes. Your current disk usage is [_2] kilobytes.',$disk_quota,$current_disk_usage);
                   9599:         return ('will_exceed_quota',$msg);
                   9600:     } elsif ($found_file) {
                   9601:         if ($locked_file) {
                   9602:             my $msg = '<span class="LC_error">';
                   9603:             $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>');
                   9604:             $msg .= '</span><br />';
                   9605:             $msg .= &mt('You will be able to rename or delete existing [_1] after a grade has been assigned.','<span class="LC_filename">'.$fname.'</span>');
                   9606:             return ('file_locked',$msg);
                   9607:         } else {
                   9608:             my $msg = '<span class="LC_error">';
1.984     raeburn  9609:             $msg .= &mt(' A file by that name: [_1] was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$port_path.$env{'form.currentpath'});
1.661     raeburn  9610:             $msg .= '</span>';
1.984     raeburn  9611:             return ('existingfile',$msg);
1.661     raeburn  9612:         }
                   9613:     }
                   9614: }
                   9615: 
1.987     raeburn  9616: sub check_for_traversal {
                   9617:     my ($path,$url,$toplevel) = @_;
                   9618:     my @parts=split(/\//,$path);
                   9619:     my $cleanpath;
                   9620:     my $fullpath = $url;
                   9621:     for (my $i=0;$i<@parts;$i++) {
                   9622:         next if ($parts[$i] eq '.');
                   9623:         if ($parts[$i] eq '..') {
                   9624:             $fullpath =~ s{([^/]+/)$}{};
                   9625:         } else {
                   9626:             $fullpath .= $parts[$i].'/';
                   9627:         }
                   9628:     }
                   9629:     if ($fullpath =~ /^\Q$url\E(.*)$/) {
                   9630:         $cleanpath = $1;
                   9631:     } elsif ($fullpath =~ /^\Q$toplevel\E(.*)$/) {
                   9632:         my $curr_toprel = $1;
                   9633:         my @parts = split(/\//,$curr_toprel);
                   9634:         my ($url_toprel) = ($url =~ /^\Q$toplevel\E(.*)$/);
                   9635:         my @urlparts = split(/\//,$url_toprel);
                   9636:         my $doubledots;
                   9637:         my $startdiff = -1;
                   9638:         for (my $i=0; $i<@urlparts; $i++) {
                   9639:             if ($startdiff == -1) {
                   9640:                 unless ($urlparts[$i] eq $parts[$i]) {
                   9641:                     $startdiff = $i;
                   9642:                     $doubledots .= '../';
                   9643:                 }
                   9644:             } else {
                   9645:                 $doubledots .= '../';
                   9646:             }
                   9647:         }
                   9648:         if ($startdiff > -1) {
                   9649:             $cleanpath = $doubledots;
                   9650:             for (my $i=$startdiff; $i<@parts; $i++) {
                   9651:                 $cleanpath .= $parts[$i].'/';
                   9652:             }
                   9653:         }
                   9654:     }
                   9655:     $cleanpath =~ s{(/)$}{};
                   9656:     return $cleanpath;
                   9657: }
1.31      albertel 9658: 
1.41      ng       9659: =pod
1.45      matthew  9660: 
1.1015    raeburn  9661: =item * &get_turnedin_filepath()
                   9662: 
                   9663: Determines path in a user's portfolio file for storage of files uploaded
                   9664: to a specific essayresponse or dropbox item.
                   9665: 
                   9666: Inputs: 3 required + 1 optional.
                   9667: $symb is symb for resource, $uname and $udom are for current user (required).
                   9668: $caller is optional (can be "submission", if routine is called when storing
                   9669: an upoaded file when "Submit Answer" button was pressed).
                   9670: 
                   9671: Returns array containing $path and $multiresp. 
                   9672: $path is path in portfolio.  $multiresp is 1 if this resource contains more
                   9673: than one file upload item.  Callers of routine should append partid as a 
                   9674: subdirectory to $path in cases where $multiresp is 1.
                   9675: 
                   9676: Called by: homework/essayresponse.pm and homework/structuretags.pm
                   9677: 
                   9678: =cut
                   9679: 
                   9680: sub get_turnedin_filepath {
                   9681:     my ($symb,$uname,$udom,$caller) = @_;
                   9682:     my ($map,$resid,$resurl)=&Apache::lonnet::decode_symb($symb);
                   9683:     my $turnindir;
                   9684:     my %userhash = &Apache::lonnet::userenvironment($udom,$uname,'turnindir');
                   9685:     $turnindir = $userhash{'turnindir'};
                   9686:     my ($path,$multiresp);
                   9687:     if ($turnindir eq '') {
                   9688:         if ($caller eq 'submission') {
                   9689:             $turnindir = &mt('turned in');
                   9690:             $turnindir =~ s/\W+/_/g;
                   9691:             my %newhash = (
                   9692:                             'turnindir' => $turnindir,
                   9693:                           );
                   9694:             &Apache::lonnet::put('environment',\%newhash,$udom,$uname);
                   9695:         }
                   9696:     }
                   9697:     if ($turnindir ne '') {
                   9698:         $path = '/'.$turnindir.'/';
                   9699:         my ($multipart,$turnin,@pathitems);
                   9700:         my $navmap = Apache::lonnavmaps::navmap->new();
                   9701:         if (defined($navmap)) {
                   9702:             my $mapres = $navmap->getResourceByUrl($map);
                   9703:             if (ref($mapres)) {
                   9704:                 my $pcslist = $mapres->map_hierarchy();
                   9705:                 if ($pcslist ne '') {
                   9706:                     foreach my $pc (split(/,/,$pcslist)) {
                   9707:                         my $res = $navmap->getByMapPc($pc);
                   9708:                         if (ref($res)) {
                   9709:                             my $title = $res->compTitle();
                   9710:                             $title =~ s/\W+/_/g;
                   9711:                             if ($title ne '') {
                   9712:                                 push(@pathitems,$title);
                   9713:                             }
                   9714:                         }
                   9715:                     }
                   9716:                 }
                   9717:                 my $maptitle = $mapres->compTitle();
                   9718:                 $maptitle =~ s/\W+/_/g;
                   9719:                 if ($maptitle ne '') {
                   9720:                     push(@pathitems,$maptitle);
                   9721:                 }
                   9722:                 unless ($env{'request.state'} eq 'construct') {
                   9723:                     my $res = $navmap->getBySymb($symb);
                   9724:                     if (ref($res)) {
                   9725:                         my $partlist = $res->parts();
                   9726:                         my $totaluploads = 0;
                   9727:                         if (ref($partlist) eq 'ARRAY') {
                   9728:                             foreach my $part (@{$partlist}) {
                   9729:                                 my @types = $res->responseType($part);
                   9730:                                 my @ids = $res->responseIds($part);
                   9731:                                 for (my $i=0; $i < scalar(@ids); $i++) {
                   9732:                                     if ($types[$i] eq 'essay') {
                   9733:                                         my $partid = $part.'_'.$ids[$i];
                   9734:                                         if (&Apache::lonnet::EXT("resource.$partid.uploadedfiletypes") ne '') {
                   9735:                                             $totaluploads ++;
                   9736:                                         }
                   9737:                                     }
                   9738:                                 }
                   9739:                             }
                   9740:                             if ($totaluploads > 1) {
                   9741:                                 $multiresp = 1;
                   9742:                             }
                   9743:                         }
                   9744:                     }
                   9745:                 }
                   9746:             } else {
                   9747:                 return;
                   9748:             }
                   9749:         } else {
                   9750:             return;
                   9751:         }
                   9752:         my $restitle=&Apache::lonnet::gettitle($symb);
                   9753:         $restitle =~ s/\W+/_/g;
                   9754:         if ($restitle eq '') {
                   9755:             $restitle = ($resurl =~ m{/[^/]+$});
                   9756:             if ($restitle eq '') {
                   9757:                 $restitle = time;
                   9758:             }
                   9759:         }
                   9760:         push(@pathitems,$restitle);
                   9761:         $path .= join('/',@pathitems);
                   9762:     }
                   9763:     return ($path,$multiresp);
                   9764: }
                   9765: 
                   9766: =pod
                   9767: 
1.464     albertel 9768: =back
1.41      ng       9769: 
1.112     bowersj2 9770: =head1 CSV Upload/Handling functions
1.38      albertel 9771: 
1.41      ng       9772: =over 4
                   9773: 
1.648     raeburn  9774: =item * &upfile_store($r)
1.41      ng       9775: 
                   9776: Store uploaded file, $r should be the HTTP Request object,
1.258     albertel 9777: needs $env{'form.upfile'}
1.41      ng       9778: returns $datatoken to be put into hidden field
                   9779: 
                   9780: =cut
1.31      albertel 9781: 
                   9782: sub upfile_store {
                   9783:     my $r=shift;
1.258     albertel 9784:     $env{'form.upfile'}=~s/\r/\n/gs;
                   9785:     $env{'form.upfile'}=~s/\f/\n/gs;
                   9786:     $env{'form.upfile'}=~s/\n+/\n/gs;
                   9787:     $env{'form.upfile'}=~s/\n+$//gs;
1.31      albertel 9788: 
1.258     albertel 9789:     my $datatoken=$env{'user.name'}.'_'.$env{'user.domain'}.
                   9790: 	'_enroll_'.$env{'request.course.id'}.'_'.time.'_'.$$;
1.31      albertel 9791:     {
1.158     raeburn  9792:         my $datafile = $r->dir_config('lonDaemons').
                   9793:                            '/tmp/'.$datatoken.'.tmp';
                   9794:         if ( open(my $fh,">$datafile") ) {
1.258     albertel 9795:             print $fh $env{'form.upfile'};
1.158     raeburn  9796:             close($fh);
                   9797:         }
1.31      albertel 9798:     }
                   9799:     return $datatoken;
                   9800: }
                   9801: 
1.56      matthew  9802: =pod
                   9803: 
1.648     raeburn  9804: =item * &load_tmp_file($r)
1.41      ng       9805: 
                   9806: Load uploaded file from tmp, $r should be the HTTP Request object,
1.258     albertel 9807: needs $env{'form.datatoken'},
                   9808: sets $env{'form.upfile'} to the contents of the file
1.41      ng       9809: 
                   9810: =cut
1.31      albertel 9811: 
                   9812: sub load_tmp_file {
                   9813:     my $r=shift;
                   9814:     my @studentdata=();
                   9815:     {
1.158     raeburn  9816:         my $studentfile = $r->dir_config('lonDaemons').
1.258     albertel 9817:                               '/tmp/'.$env{'form.datatoken'}.'.tmp';
1.158     raeburn  9818:         if ( open(my $fh,"<$studentfile") ) {
                   9819:             @studentdata=<$fh>;
                   9820:             close($fh);
                   9821:         }
1.31      albertel 9822:     }
1.258     albertel 9823:     $env{'form.upfile'}=join('',@studentdata);
1.31      albertel 9824: }
                   9825: 
1.56      matthew  9826: =pod
                   9827: 
1.648     raeburn  9828: =item * &upfile_record_sep()
1.41      ng       9829: 
                   9830: Separate uploaded file into records
                   9831: returns array of records,
1.258     albertel 9832: needs $env{'form.upfile'} and $env{'form.upfiletype'}
1.41      ng       9833: 
                   9834: =cut
1.31      albertel 9835: 
                   9836: sub upfile_record_sep {
1.258     albertel 9837:     if ($env{'form.upfiletype'} eq 'xml') {
1.31      albertel 9838:     } else {
1.248     albertel 9839: 	my @records;
1.258     albertel 9840: 	foreach my $line (split(/\n/,$env{'form.upfile'})) {
1.248     albertel 9841: 	    if ($line=~/^\s*$/) { next; }
                   9842: 	    push(@records,$line);
                   9843: 	}
                   9844: 	return @records;
1.31      albertel 9845:     }
                   9846: }
                   9847: 
1.56      matthew  9848: =pod
                   9849: 
1.648     raeburn  9850: =item * &record_sep($record)
1.41      ng       9851: 
1.258     albertel 9852: Separate a record into fields $record should be an item from the upfile_record_sep(), needs $env{'form.upfiletype'}
1.41      ng       9853: 
                   9854: =cut
                   9855: 
1.263     www      9856: sub takeleft {
                   9857:     my $index=shift;
                   9858:     return substr('0000'.$index,-4,4);
                   9859: }
                   9860: 
1.31      albertel 9861: sub record_sep {
                   9862:     my $record=shift;
                   9863:     my %components=();
1.258     albertel 9864:     if ($env{'form.upfiletype'} eq 'xml') {
                   9865:     } elsif ($env{'form.upfiletype'} eq 'space') {
1.31      albertel 9866:         my $i=0;
1.356     albertel 9867:         foreach my $field (split(/\s+/,$record)) {
1.31      albertel 9868:             $field=~s/^(\"|\')//;
                   9869:             $field=~s/(\"|\')$//;
1.263     www      9870:             $components{&takeleft($i)}=$field;
1.31      albertel 9871:             $i++;
                   9872:         }
1.258     albertel 9873:     } elsif ($env{'form.upfiletype'} eq 'tab') {
1.31      albertel 9874:         my $i=0;
1.356     albertel 9875:         foreach my $field (split(/\t/,$record)) {
1.31      albertel 9876:             $field=~s/^(\"|\')//;
                   9877:             $field=~s/(\"|\')$//;
1.263     www      9878:             $components{&takeleft($i)}=$field;
1.31      albertel 9879:             $i++;
                   9880:         }
                   9881:     } else {
1.561     www      9882:         my $separator=',';
1.480     banghart 9883:         if ($env{'form.upfiletype'} eq 'semisv') {
1.561     www      9884:             $separator=';';
1.480     banghart 9885:         }
1.31      albertel 9886:         my $i=0;
1.561     www      9887: # the character we are looking for to indicate the end of a quote or a record 
                   9888:         my $looking_for=$separator;
                   9889: # do not add the characters to the fields
                   9890:         my $ignore=0;
                   9891: # we just encountered a separator (or the beginning of the record)
                   9892:         my $just_found_separator=1;
                   9893: # store the field we are working on here
                   9894:         my $field='';
                   9895: # work our way through all characters in record
                   9896:         foreach my $character ($record=~/(.)/g) {
                   9897:             if ($character eq $looking_for) {
                   9898:                if ($character ne $separator) {
                   9899: # Found the end of a quote, again looking for separator
                   9900:                   $looking_for=$separator;
                   9901:                   $ignore=1;
                   9902:                } else {
                   9903: # Found a separator, store away what we got
                   9904:                   $components{&takeleft($i)}=$field;
                   9905: 	          $i++;
                   9906:                   $just_found_separator=1;
                   9907:                   $ignore=0;
                   9908:                   $field='';
                   9909:                }
                   9910:                next;
                   9911:             }
                   9912: # single or double quotation marks after a separator indicate beginning of a quote
                   9913: # we are now looking for the end of the quote and need to ignore separators
                   9914:             if ((($character eq '"') || ($character eq "'")) && ($just_found_separator))  {
                   9915:                $looking_for=$character;
                   9916:                next;
                   9917:             }
                   9918: # ignore would be true after we reached the end of a quote
                   9919:             if ($ignore) { next; }
                   9920:             if (($just_found_separator) && ($character=~/\s/)) { next; }
                   9921:             $field.=$character;
                   9922:             $just_found_separator=0; 
1.31      albertel 9923:         }
1.561     www      9924: # catch the very last entry, since we never encountered the separator
                   9925:         $components{&takeleft($i)}=$field;
1.31      albertel 9926:     }
                   9927:     return %components;
                   9928: }
                   9929: 
1.144     matthew  9930: ######################################################
                   9931: ######################################################
                   9932: 
1.56      matthew  9933: =pod
                   9934: 
1.648     raeburn  9935: =item * &upfile_select_html()
1.41      ng       9936: 
1.144     matthew  9937: Return HTML code to select a file from the users machine and specify 
                   9938: the file type.
1.41      ng       9939: 
                   9940: =cut
                   9941: 
1.144     matthew  9942: ######################################################
                   9943: ######################################################
1.31      albertel 9944: sub upfile_select_html {
1.144     matthew  9945:     my %Types = (
                   9946:                  csv   => &mt('CSV (comma separated values, spreadsheet)'),
1.480     banghart 9947:                  semisv => &mt('Semicolon separated values'),
1.144     matthew  9948:                  space => &mt('Space separated'),
                   9949:                  tab   => &mt('Tabulator separated'),
                   9950: #                 xml   => &mt('HTML/XML'),
                   9951:                  );
                   9952:     my $Str = '<input type="file" name="upfile" size="50" />'.
1.727     riegler  9953:         '<br />'.&mt('Type').': <select name="upfiletype">';
1.144     matthew  9954:     foreach my $type (sort(keys(%Types))) {
                   9955:         $Str .= '<option value="'.$type.'" >'.$Types{$type}."</option>\n";
                   9956:     }
                   9957:     $Str .= "</select>\n";
                   9958:     return $Str;
1.31      albertel 9959: }
                   9960: 
1.301     albertel 9961: sub get_samples {
                   9962:     my ($records,$toget) = @_;
                   9963:     my @samples=({});
                   9964:     my $got=0;
                   9965:     foreach my $rec (@$records) {
                   9966: 	my %temp = &record_sep($rec);
                   9967: 	if (! grep(/\S/, values(%temp))) { next; }
                   9968: 	if (%temp) {
                   9969: 	    $samples[$got]=\%temp;
                   9970: 	    $got++;
                   9971: 	    if ($got == $toget) { last; }
                   9972: 	}
                   9973:     }
                   9974:     return \@samples;
                   9975: }
                   9976: 
1.144     matthew  9977: ######################################################
                   9978: ######################################################
                   9979: 
1.56      matthew  9980: =pod
                   9981: 
1.648     raeburn  9982: =item * &csv_print_samples($r,$records)
1.41      ng       9983: 
                   9984: Prints a table of sample values from each column uploaded $r is an
                   9985: Apache Request ref, $records is an arrayref from
                   9986: &Apache::loncommon::upfile_record_sep
                   9987: 
                   9988: =cut
                   9989: 
1.144     matthew  9990: ######################################################
                   9991: ######################################################
1.31      albertel 9992: sub csv_print_samples {
                   9993:     my ($r,$records) = @_;
1.662     bisitz   9994:     my $samples = &get_samples($records,5);
1.301     albertel 9995: 
1.594     raeburn  9996:     $r->print(&mt('Samples').'<br />'.&start_data_table().
                   9997:               &start_data_table_header_row());
1.356     albertel 9998:     foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) { 
1.845     bisitz   9999:         $r->print('<th>'.&mt('Column [_1]',($sample+1)).'</th>'); }
1.594     raeburn  10000:     $r->print(&end_data_table_header_row());
1.301     albertel 10001:     foreach my $hash (@$samples) {
1.594     raeburn  10002: 	$r->print(&start_data_table_row());
1.356     albertel 10003: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
1.31      albertel 10004: 	    $r->print('<td>');
1.356     albertel 10005: 	    if (defined($$hash{$sample})) { $r->print($$hash{$sample}); }
1.31      albertel 10006: 	    $r->print('</td>');
                   10007: 	}
1.594     raeburn  10008: 	$r->print(&end_data_table_row());
1.31      albertel 10009:     }
1.594     raeburn  10010:     $r->print(&end_data_table().'<br />'."\n");
1.31      albertel 10011: }
                   10012: 
1.144     matthew  10013: ######################################################
                   10014: ######################################################
                   10015: 
1.56      matthew  10016: =pod
                   10017: 
1.648     raeburn  10018: =item * &csv_print_select_table($r,$records,$d)
1.41      ng       10019: 
                   10020: Prints a table to create associations between values and table columns.
1.144     matthew  10021: 
1.41      ng       10022: $r is an Apache Request ref,
                   10023: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
1.174     matthew  10024: $d is an array of 2 element arrays (internal name, displayed name,defaultcol)
1.41      ng       10025: 
                   10026: =cut
                   10027: 
1.144     matthew  10028: ######################################################
                   10029: ######################################################
1.31      albertel 10030: sub csv_print_select_table {
                   10031:     my ($r,$records,$d) = @_;
1.301     albertel 10032:     my $i=0;
                   10033:     my $samples = &get_samples($records,1);
1.144     matthew  10034:     $r->print(&mt('Associate columns with student attributes.')."\n".
1.594     raeburn  10035: 	      &start_data_table().&start_data_table_header_row().
1.144     matthew  10036:               '<th>'.&mt('Attribute').'</th>'.
1.594     raeburn  10037:               '<th>'.&mt('Column').'</th>'.
                   10038:               &end_data_table_header_row()."\n");
1.356     albertel 10039:     foreach my $array_ref (@$d) {
                   10040: 	my ($value,$display,$defaultcol)=@{ $array_ref };
1.729     raeburn  10041: 	$r->print(&start_data_table_row().'<td>'.$display.'</td>');
1.31      albertel 10042: 
1.875     bisitz   10043: 	$r->print('<td><select name="f'.$i.'"'.
1.32      matthew  10044: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
1.31      albertel 10045: 	$r->print('<option value="none"></option>');
1.356     albertel 10046: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
                   10047: 	    $r->print('<option value="'.$sample.'"'.
                   10048:                       ($sample eq $defaultcol ? ' selected="selected" ' : '').
1.662     bisitz   10049:                       '>'.&mt('Column [_1]',($sample+1)).'</option>');
1.31      albertel 10050: 	}
1.594     raeburn  10051: 	$r->print('</select></td>'.&end_data_table_row()."\n");
1.31      albertel 10052: 	$i++;
                   10053:     }
1.594     raeburn  10054:     $r->print(&end_data_table());
1.31      albertel 10055:     $i--;
                   10056:     return $i;
                   10057: }
1.56      matthew  10058: 
1.144     matthew  10059: ######################################################
                   10060: ######################################################
                   10061: 
1.56      matthew  10062: =pod
1.31      albertel 10063: 
1.648     raeburn  10064: =item * &csv_samples_select_table($r,$records,$d)
1.41      ng       10065: 
                   10066: Prints a table of sample values from the upload and can make associate samples to internal names.
                   10067: 
                   10068: $r is an Apache Request ref,
                   10069: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
                   10070: $d is an array of 2 element arrays (internal name, displayed name)
                   10071: 
                   10072: =cut
                   10073: 
1.144     matthew  10074: ######################################################
                   10075: ######################################################
1.31      albertel 10076: sub csv_samples_select_table {
                   10077:     my ($r,$records,$d) = @_;
                   10078:     my $i=0;
1.144     matthew  10079:     #
1.662     bisitz   10080:     my $max_samples = 5;
                   10081:     my $samples = &get_samples($records,$max_samples);
1.594     raeburn  10082:     $r->print(&start_data_table().
                   10083:               &start_data_table_header_row().'<th>'.
                   10084:               &mt('Field').'</th><th>'.&mt('Samples').'</th>'.
                   10085:               &end_data_table_header_row());
1.301     albertel 10086: 
                   10087:     foreach my $key (sort(keys(%{ $samples->[0] }))) {
1.594     raeburn  10088: 	$r->print(&start_data_table_row().'<td><select name="f'.$i.'"'.
1.32      matthew  10089: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
1.301     albertel 10090: 	foreach my $option (@$d) {
                   10091: 	    my ($value,$display,$defaultcol)=@{ $option };
1.174     matthew  10092: 	    $r->print('<option value="'.$value.'"'.
1.253     albertel 10093:                       ($i eq $defaultcol ? ' selected="selected" ':'').'>'.
1.174     matthew  10094:                       $display.'</option>');
1.31      albertel 10095: 	}
                   10096: 	$r->print('</select></td><td>');
1.662     bisitz   10097: 	foreach my $line (0..($max_samples-1)) {
1.301     albertel 10098: 	    if (defined($samples->[$line]{$key})) { 
                   10099: 		$r->print($samples->[$line]{$key}."<br />\n"); 
                   10100: 	    }
                   10101: 	}
1.594     raeburn  10102: 	$r->print('</td>'.&end_data_table_row());
1.31      albertel 10103: 	$i++;
                   10104:     }
1.594     raeburn  10105:     $r->print(&end_data_table());
1.31      albertel 10106:     $i--;
                   10107:     return($i);
1.115     matthew  10108: }
                   10109: 
1.144     matthew  10110: ######################################################
                   10111: ######################################################
                   10112: 
1.115     matthew  10113: =pod
                   10114: 
1.648     raeburn  10115: =item * &clean_excel_name($name)
1.115     matthew  10116: 
                   10117: Returns a replacement for $name which does not contain any illegal characters.
                   10118: 
                   10119: =cut
                   10120: 
1.144     matthew  10121: ######################################################
                   10122: ######################################################
1.115     matthew  10123: sub clean_excel_name {
                   10124:     my ($name) = @_;
                   10125:     $name =~ s/[:\*\?\/\\]//g;
                   10126:     if (length($name) > 31) {
                   10127:         $name = substr($name,0,31);
                   10128:     }
                   10129:     return $name;
1.25      albertel 10130: }
1.84      albertel 10131: 
1.85      albertel 10132: =pod
                   10133: 
1.648     raeburn  10134: =item * &check_if_partid_hidden($id,$symb,$udom,$uname)
1.85      albertel 10135: 
                   10136: Returns either 1 or undef
                   10137: 
                   10138: 1 if the part is to be hidden, undef if it is to be shown
                   10139: 
                   10140: Arguments are:
                   10141: 
                   10142: $id the id of the part to be checked
                   10143: $symb, optional the symb of the resource to check
                   10144: $udom, optional the domain of the user to check for
                   10145: $uname, optional the username of the user to check for
                   10146: 
                   10147: =cut
1.84      albertel 10148: 
                   10149: sub check_if_partid_hidden {
                   10150:     my ($id,$symb,$udom,$uname) = @_;
1.133     albertel 10151:     my $hiddenparts=&Apache::lonnet::EXT('resource.0.hiddenparts',
1.84      albertel 10152: 					 $symb,$udom,$uname);
1.141     albertel 10153:     my $truth=1;
                   10154:     #if the string starts with !, then the list is the list to show not hide
                   10155:     if ($hiddenparts=~s/^\s*!//) { $truth=undef; }
1.84      albertel 10156:     my @hiddenlist=split(/,/,$hiddenparts);
                   10157:     foreach my $checkid (@hiddenlist) {
1.141     albertel 10158: 	if ($checkid =~ /^\s*\Q$id\E\s*$/) { return $truth; }
1.84      albertel 10159:     }
1.141     albertel 10160:     return !$truth;
1.84      albertel 10161: }
1.127     matthew  10162: 
1.138     matthew  10163: 
                   10164: ############################################################
                   10165: ############################################################
                   10166: 
                   10167: =pod
                   10168: 
1.157     matthew  10169: =back 
                   10170: 
1.138     matthew  10171: =head1 cgi-bin script and graphing routines
                   10172: 
1.157     matthew  10173: =over 4
                   10174: 
1.648     raeburn  10175: =item * &get_cgi_id()
1.138     matthew  10176: 
                   10177: Inputs: none
                   10178: 
                   10179: Returns an id which can be used to pass environment variables
                   10180: to various cgi-bin scripts.  These environment variables will
                   10181: be removed from the users environment after a given time by
                   10182: the routine &Apache::lonnet::transfer_profile_to_env.
                   10183: 
                   10184: =cut
                   10185: 
                   10186: ############################################################
                   10187: ############################################################
1.152     albertel 10188: my $uniq=0;
1.136     matthew  10189: sub get_cgi_id {
1.154     albertel 10190:     $uniq=($uniq+1)%100000;
1.280     albertel 10191:     return (time.'_'.$$.'_'.$uniq);
1.136     matthew  10192: }
                   10193: 
1.127     matthew  10194: ############################################################
                   10195: ############################################################
                   10196: 
                   10197: =pod
                   10198: 
1.648     raeburn  10199: =item * &DrawBarGraph()
1.127     matthew  10200: 
1.138     matthew  10201: Facilitates the plotting of data in a (stacked) bar graph.
                   10202: Puts plot definition data into the users environment in order for 
                   10203: graph.png to plot it.  Returns an <img> tag for the plot.
                   10204: The bars on the plot are labeled '1','2',...,'n'.
                   10205: 
                   10206: Inputs:
                   10207: 
                   10208: =over 4
                   10209: 
                   10210: =item $Title: string, the title of the plot
                   10211: 
                   10212: =item $xlabel: string, text describing the X-axis of the plot
                   10213: 
                   10214: =item $ylabel: string, text describing the Y-axis of the plot
                   10215: 
                   10216: =item $Max: scalar, the maximum Y value to use in the plot
                   10217: If $Max is < any data point, the graph will not be rendered.
                   10218: 
1.140     matthew  10219: =item $colors: array ref holding the colors to be used for the data sets when
1.138     matthew  10220: they are plotted.  If undefined, default values will be used.
                   10221: 
1.178     matthew  10222: =item $labels: array ref holding the labels to use on the x-axis for the bars.
                   10223: 
1.138     matthew  10224: =item @Values: An array of array references.  Each array reference holds data
                   10225: to be plotted in a stacked bar chart.
                   10226: 
1.239     matthew  10227: =item If the final element of @Values is a hash reference the key/value
                   10228: pairs will be added to the graph definition.
                   10229: 
1.138     matthew  10230: =back
                   10231: 
                   10232: Returns:
                   10233: 
                   10234: An <img> tag which references graph.png and the appropriate identifying
                   10235: information for the plot.
                   10236: 
1.127     matthew  10237: =cut
                   10238: 
                   10239: ############################################################
                   10240: ############################################################
1.134     matthew  10241: sub DrawBarGraph {
1.178     matthew  10242:     my ($Title,$xlabel,$ylabel,$Max,$colors,$labels,@Values)=@_;
1.134     matthew  10243:     #
                   10244:     if (! defined($colors)) {
                   10245:         $colors = ['#33ff00', 
                   10246:                   '#0033cc', '#990000', '#aaaa66', '#663399', '#ff9933',
                   10247:                   '#66ccff', '#ff9999', '#cccc33', '#660000', '#33cc66',
                   10248:                   ]; 
                   10249:     }
1.228     matthew  10250:     my $extra_settings = {};
                   10251:     if (ref($Values[-1]) eq 'HASH') {
                   10252:         $extra_settings = pop(@Values);
                   10253:     }
1.127     matthew  10254:     #
1.136     matthew  10255:     my $identifier = &get_cgi_id();
                   10256:     my $id = 'cgi.'.$identifier;        
1.129     matthew  10257:     if (! @Values || ref($Values[0]) ne 'ARRAY') {
1.127     matthew  10258:         return '';
                   10259:     }
1.225     matthew  10260:     #
                   10261:     my @Labels;
                   10262:     if (defined($labels)) {
                   10263:         @Labels = @$labels;
                   10264:     } else {
                   10265:         for (my $i=0;$i<@{$Values[0]};$i++) {
                   10266:             push (@Labels,$i+1);
                   10267:         }
                   10268:     }
                   10269:     #
1.129     matthew  10270:     my $NumBars = scalar(@{$Values[0]});
1.225     matthew  10271:     if ($NumBars < scalar(@Labels)) { $NumBars = scalar(@Labels); }
1.129     matthew  10272:     my %ValuesHash;
                   10273:     my $NumSets=1;
                   10274:     foreach my $array (@Values) {
                   10275:         next if (! ref($array));
1.136     matthew  10276:         $ValuesHash{$id.'.data.'.$NumSets++} = 
1.132     matthew  10277:             join(',',@$array);
1.129     matthew  10278:     }
1.127     matthew  10279:     #
1.136     matthew  10280:     my ($height,$width,$xskip,$bar_width) = (200,120,1,15);
1.225     matthew  10281:     if ($NumBars < 3) {
                   10282:         $width = 120+$NumBars*32;
1.220     matthew  10283:         $xskip = 1;
1.225     matthew  10284:         $bar_width = 30;
                   10285:     } elsif ($NumBars < 5) {
                   10286:         $width = 120+$NumBars*20;
                   10287:         $xskip = 1;
                   10288:         $bar_width = 20;
1.220     matthew  10289:     } elsif ($NumBars < 10) {
1.136     matthew  10290:         $width = 120+$NumBars*15;
                   10291:         $xskip = 1;
                   10292:         $bar_width = 15;
                   10293:     } elsif ($NumBars <= 25) {
                   10294:         $width = 120+$NumBars*11;
                   10295:         $xskip = 5;
                   10296:         $bar_width = 8;
                   10297:     } elsif ($NumBars <= 50) {
                   10298:         $width = 120+$NumBars*8;
                   10299:         $xskip = 5;
                   10300:         $bar_width = 4;
                   10301:     } else {
                   10302:         $width = 120+$NumBars*8;
                   10303:         $xskip = 5;
                   10304:         $bar_width = 4;
                   10305:     }
                   10306:     #
1.137     matthew  10307:     $Max = 1 if ($Max < 1);
                   10308:     if ( int($Max) < $Max ) {
                   10309:         $Max++;
                   10310:         $Max = int($Max);
                   10311:     }
1.127     matthew  10312:     $Title  = '' if (! defined($Title));
                   10313:     $xlabel = '' if (! defined($xlabel));
                   10314:     $ylabel = '' if (! defined($ylabel));
1.369     www      10315:     $ValuesHash{$id.'.title'}    = &escape($Title);
                   10316:     $ValuesHash{$id.'.xlabel'}   = &escape($xlabel);
                   10317:     $ValuesHash{$id.'.ylabel'}   = &escape($ylabel);
1.137     matthew  10318:     $ValuesHash{$id.'.y_max_value'} = $Max;
1.136     matthew  10319:     $ValuesHash{$id.'.NumBars'}  = $NumBars;
                   10320:     $ValuesHash{$id.'.NumSets'}  = $NumSets;
                   10321:     $ValuesHash{$id.'.PlotType'} = 'bar';
                   10322:     $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   10323:     $ValuesHash{$id.'.height'}   = $height;
                   10324:     $ValuesHash{$id.'.width'}    = $width;
                   10325:     $ValuesHash{$id.'.xskip'}    = $xskip;
                   10326:     $ValuesHash{$id.'.bar_width'} = $bar_width;
                   10327:     $ValuesHash{$id.'.labels'} = join(',',@Labels);
1.127     matthew  10328:     #
1.228     matthew  10329:     # Deal with other parameters
                   10330:     while (my ($key,$value) = each(%$extra_settings)) {
                   10331:         $ValuesHash{$id.'.'.$key} = $value;
                   10332:     }
                   10333:     #
1.646     raeburn  10334:     &Apache::lonnet::appenv(\%ValuesHash);
1.137     matthew  10335:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
                   10336: }
                   10337: 
                   10338: ############################################################
                   10339: ############################################################
                   10340: 
                   10341: =pod
                   10342: 
1.648     raeburn  10343: =item * &DrawXYGraph()
1.137     matthew  10344: 
1.138     matthew  10345: Facilitates the plotting of data in an XY graph.
                   10346: Puts plot definition data into the users environment in order for 
                   10347: graph.png to plot it.  Returns an <img> tag for the plot.
                   10348: 
                   10349: Inputs:
                   10350: 
                   10351: =over 4
                   10352: 
                   10353: =item $Title: string, the title of the plot
                   10354: 
                   10355: =item $xlabel: string, text describing the X-axis of the plot
                   10356: 
                   10357: =item $ylabel: string, text describing the Y-axis of the plot
                   10358: 
                   10359: =item $Max: scalar, the maximum Y value to use in the plot
                   10360: If $Max is < any data point, the graph will not be rendered.
                   10361: 
                   10362: =item $colors: Array ref containing the hex color codes for the data to be 
                   10363: plotted in.  If undefined, default values will be used.
                   10364: 
                   10365: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
                   10366: 
                   10367: =item $Ydata: Array ref containing Array refs.  
1.185     www      10368: Each of the contained arrays will be plotted as a separate curve.
1.138     matthew  10369: 
                   10370: =item %Values: hash indicating or overriding any default values which are 
                   10371: passed to graph.png.  
                   10372: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
                   10373: 
                   10374: =back
                   10375: 
                   10376: Returns:
                   10377: 
                   10378: An <img> tag which references graph.png and the appropriate identifying
                   10379: information for the plot.
                   10380: 
1.137     matthew  10381: =cut
                   10382: 
                   10383: ############################################################
                   10384: ############################################################
                   10385: sub DrawXYGraph {
                   10386:     my ($Title,$xlabel,$ylabel,$Max,$colors,$Xlabels,$Ydata,%Values)=@_;
                   10387:     #
                   10388:     # Create the identifier for the graph
                   10389:     my $identifier = &get_cgi_id();
                   10390:     my $id = 'cgi.'.$identifier;
                   10391:     #
                   10392:     $Title  = '' if (! defined($Title));
                   10393:     $xlabel = '' if (! defined($xlabel));
                   10394:     $ylabel = '' if (! defined($ylabel));
                   10395:     my %ValuesHash = 
                   10396:         (
1.369     www      10397:          $id.'.title'  => &escape($Title),
                   10398:          $id.'.xlabel' => &escape($xlabel),
                   10399:          $id.'.ylabel' => &escape($ylabel),
1.137     matthew  10400:          $id.'.y_max_value'=> $Max,
                   10401:          $id.'.labels'     => join(',',@$Xlabels),
                   10402:          $id.'.PlotType'   => 'XY',
                   10403:          );
                   10404:     #
                   10405:     if (defined($colors) && ref($colors) eq 'ARRAY') {
                   10406:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   10407:     }
                   10408:     #
                   10409:     if (! ref($Ydata) || ref($Ydata) ne 'ARRAY') {
                   10410:         return '';
                   10411:     }
                   10412:     my $NumSets=1;
1.138     matthew  10413:     foreach my $array (@{$Ydata}){
1.137     matthew  10414:         next if (! ref($array));
                   10415:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
                   10416:     }
1.138     matthew  10417:     $ValuesHash{$id.'.NumSets'} = $NumSets-1;
1.137     matthew  10418:     #
                   10419:     # Deal with other parameters
                   10420:     while (my ($key,$value) = each(%Values)) {
                   10421:         $ValuesHash{$id.'.'.$key} = $value;
1.127     matthew  10422:     }
                   10423:     #
1.646     raeburn  10424:     &Apache::lonnet::appenv(\%ValuesHash);
1.136     matthew  10425:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
                   10426: }
                   10427: 
                   10428: ############################################################
                   10429: ############################################################
                   10430: 
                   10431: =pod
                   10432: 
1.648     raeburn  10433: =item * &DrawXYYGraph()
1.138     matthew  10434: 
                   10435: Facilitates the plotting of data in an XY graph with two Y axes.
                   10436: Puts plot definition data into the users environment in order for 
                   10437: graph.png to plot it.  Returns an <img> tag for the plot.
                   10438: 
                   10439: Inputs:
                   10440: 
                   10441: =over 4
                   10442: 
                   10443: =item $Title: string, the title of the plot
                   10444: 
                   10445: =item $xlabel: string, text describing the X-axis of the plot
                   10446: 
                   10447: =item $ylabel: string, text describing the Y-axis of the plot
                   10448: 
                   10449: =item $colors: Array ref containing the hex color codes for the data to be 
                   10450: plotted in.  If undefined, default values will be used.
                   10451: 
                   10452: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
                   10453: 
                   10454: =item $Ydata1: The first data set
                   10455: 
                   10456: =item $Min1: The minimum value of the left Y-axis
                   10457: 
                   10458: =item $Max1: The maximum value of the left Y-axis
                   10459: 
                   10460: =item $Ydata2: The second data set
                   10461: 
                   10462: =item $Min2: The minimum value of the right Y-axis
                   10463: 
                   10464: =item $Max2: The maximum value of the left Y-axis
                   10465: 
                   10466: =item %Values: hash indicating or overriding any default values which are 
                   10467: passed to graph.png.  
                   10468: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
                   10469: 
                   10470: =back
                   10471: 
                   10472: Returns:
                   10473: 
                   10474: An <img> tag which references graph.png and the appropriate identifying
                   10475: information for the plot.
1.136     matthew  10476: 
                   10477: =cut
                   10478: 
                   10479: ############################################################
                   10480: ############################################################
1.137     matthew  10481: sub DrawXYYGraph {
                   10482:     my ($Title,$xlabel,$ylabel,$colors,$Xlabels,$Ydata1,$Min1,$Max1,
                   10483:                                         $Ydata2,$Min2,$Max2,%Values)=@_;
1.136     matthew  10484:     #
                   10485:     # Create the identifier for the graph
                   10486:     my $identifier = &get_cgi_id();
                   10487:     my $id = 'cgi.'.$identifier;
                   10488:     #
                   10489:     $Title  = '' if (! defined($Title));
                   10490:     $xlabel = '' if (! defined($xlabel));
                   10491:     $ylabel = '' if (! defined($ylabel));
                   10492:     my %ValuesHash = 
                   10493:         (
1.369     www      10494:          $id.'.title'  => &escape($Title),
                   10495:          $id.'.xlabel' => &escape($xlabel),
                   10496:          $id.'.ylabel' => &escape($ylabel),
1.136     matthew  10497:          $id.'.labels' => join(',',@$Xlabels),
                   10498:          $id.'.PlotType' => 'XY',
                   10499:          $id.'.NumSets' => 2,
1.137     matthew  10500:          $id.'.two_axes' => 1,
                   10501:          $id.'.y1_max_value' => $Max1,
                   10502:          $id.'.y1_min_value' => $Min1,
                   10503:          $id.'.y2_max_value' => $Max2,
                   10504:          $id.'.y2_min_value' => $Min2,
1.136     matthew  10505:          );
                   10506:     #
1.137     matthew  10507:     if (defined($colors) && ref($colors) eq 'ARRAY') {
                   10508:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   10509:     }
                   10510:     #
                   10511:     if (! ref($Ydata1) || ref($Ydata1) ne 'ARRAY' ||
                   10512:         ! ref($Ydata2) || ref($Ydata2) ne 'ARRAY'){
1.136     matthew  10513:         return '';
                   10514:     }
                   10515:     my $NumSets=1;
1.137     matthew  10516:     foreach my $array ($Ydata1,$Ydata2){
1.136     matthew  10517:         next if (! ref($array));
                   10518:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
1.137     matthew  10519:     }
                   10520:     #
                   10521:     # Deal with other parameters
                   10522:     while (my ($key,$value) = each(%Values)) {
                   10523:         $ValuesHash{$id.'.'.$key} = $value;
1.136     matthew  10524:     }
                   10525:     #
1.646     raeburn  10526:     &Apache::lonnet::appenv(\%ValuesHash);
1.130     albertel 10527:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
1.139     matthew  10528: }
                   10529: 
                   10530: ############################################################
                   10531: ############################################################
                   10532: 
                   10533: =pod
                   10534: 
1.157     matthew  10535: =back 
                   10536: 
1.139     matthew  10537: =head1 Statistics helper routines?  
                   10538: 
                   10539: Bad place for them but what the hell.
                   10540: 
1.157     matthew  10541: =over 4
                   10542: 
1.648     raeburn  10543: =item * &chartlink()
1.139     matthew  10544: 
                   10545: Returns a link to the chart for a specific student.  
                   10546: 
                   10547: Inputs:
                   10548: 
                   10549: =over 4
                   10550: 
                   10551: =item $linktext: The text of the link
                   10552: 
                   10553: =item $sname: The students username
                   10554: 
                   10555: =item $sdomain: The students domain
                   10556: 
                   10557: =back
                   10558: 
1.157     matthew  10559: =back
                   10560: 
1.139     matthew  10561: =cut
                   10562: 
                   10563: ############################################################
                   10564: ############################################################
                   10565: sub chartlink {
                   10566:     my ($linktext, $sname, $sdomain) = @_;
                   10567:     my $link = '<a href="/adm/statistics?reportSelected=student_assessment'.
1.369     www      10568:         '&amp;SelectedStudent='.&escape($sname.':'.$sdomain).
1.219     albertel 10569:         '&amp;chartoutputmode='.HTML::Entities::encode('html, with all links').
1.139     matthew  10570:        '">'.$linktext.'</a>';
1.153     matthew  10571: }
                   10572: 
                   10573: #######################################################
                   10574: #######################################################
                   10575: 
                   10576: =pod
                   10577: 
                   10578: =head1 Course Environment Routines
1.157     matthew  10579: 
                   10580: =over 4
1.153     matthew  10581: 
1.648     raeburn  10582: =item * &restore_course_settings()
1.153     matthew  10583: 
1.648     raeburn  10584: =item * &store_course_settings()
1.153     matthew  10585: 
                   10586: Restores/Store indicated form parameters from the course environment.
                   10587: Will not overwrite existing values of the form parameters.
                   10588: 
                   10589: Inputs: 
                   10590: a scalar describing the data (e.g. 'chart', 'problem_analysis')
                   10591: 
                   10592: a hash ref describing the data to be stored.  For example:
                   10593:    
                   10594: %Save_Parameters = ('Status' => 'scalar',
                   10595:     'chartoutputmode' => 'scalar',
                   10596:     'chartoutputdata' => 'scalar',
                   10597:     'Section' => 'array',
1.373     raeburn  10598:     'Group' => 'array',
1.153     matthew  10599:     'StudentData' => 'array',
                   10600:     'Maps' => 'array');
                   10601: 
                   10602: Returns: both routines return nothing
                   10603: 
1.631     raeburn  10604: =back
                   10605: 
1.153     matthew  10606: =cut
                   10607: 
                   10608: #######################################################
                   10609: #######################################################
                   10610: sub store_course_settings {
1.496     albertel 10611:     return &store_settings($env{'request.course.id'},@_);
                   10612: }
                   10613: 
                   10614: sub store_settings {
1.153     matthew  10615:     # save to the environment
                   10616:     # appenv the same items, just to be safe
1.300     albertel 10617:     my $udom  = $env{'user.domain'};
                   10618:     my $uname = $env{'user.name'};
1.496     albertel 10619:     my ($context,$prefix,$Settings) = @_;
1.153     matthew  10620:     my %SaveHash;
                   10621:     my %AppHash;
                   10622:     while (my ($setting,$type) = each(%$Settings)) {
1.496     albertel 10623:         my $basename = join('.','internal',$context,$prefix,$setting);
1.300     albertel 10624:         my $envname = 'environment.'.$basename;
1.258     albertel 10625:         if (exists($env{'form.'.$setting})) {
1.153     matthew  10626:             # Save this value away
                   10627:             if ($type eq 'scalar' &&
1.258     albertel 10628:                 (! exists($env{$envname}) || 
                   10629:                  $env{$envname} ne $env{'form.'.$setting})) {
                   10630:                 $SaveHash{$basename} = $env{'form.'.$setting};
                   10631:                 $AppHash{$envname}   = $env{'form.'.$setting};
1.153     matthew  10632:             } elsif ($type eq 'array') {
                   10633:                 my $stored_form;
1.258     albertel 10634:                 if (ref($env{'form.'.$setting})) {
1.153     matthew  10635:                     $stored_form = join(',',
                   10636:                                         map {
1.369     www      10637:                                             &escape($_);
1.258     albertel 10638:                                         } sort(@{$env{'form.'.$setting}}));
1.153     matthew  10639:                 } else {
                   10640:                     $stored_form = 
1.369     www      10641:                         &escape($env{'form.'.$setting});
1.153     matthew  10642:                 }
                   10643:                 # Determine if the array contents are the same.
1.258     albertel 10644:                 if ($stored_form ne $env{$envname}) {
1.153     matthew  10645:                     $SaveHash{$basename} = $stored_form;
                   10646:                     $AppHash{$envname}   = $stored_form;
                   10647:                 }
                   10648:             }
                   10649:         }
                   10650:     }
                   10651:     my $put_result = &Apache::lonnet::put('environment',\%SaveHash,
1.300     albertel 10652:                                           $udom,$uname);
1.153     matthew  10653:     if ($put_result !~ /^(ok|delayed)/) {
                   10654:         &Apache::lonnet::logthis('unable to save form parameters, '.
                   10655:                                  'got error:'.$put_result);
                   10656:     }
                   10657:     # Make sure these settings stick around in this session, too
1.646     raeburn  10658:     &Apache::lonnet::appenv(\%AppHash);
1.153     matthew  10659:     return;
                   10660: }
                   10661: 
                   10662: sub restore_course_settings {
1.499     albertel 10663:     return &restore_settings($env{'request.course.id'},@_);
1.496     albertel 10664: }
                   10665: 
                   10666: sub restore_settings {
                   10667:     my ($context,$prefix,$Settings) = @_;
1.153     matthew  10668:     while (my ($setting,$type) = each(%$Settings)) {
1.258     albertel 10669:         next if (exists($env{'form.'.$setting}));
1.496     albertel 10670:         my $envname = 'environment.internal.'.$context.'.'.$prefix.
1.153     matthew  10671:             '.'.$setting;
1.258     albertel 10672:         if (exists($env{$envname})) {
1.153     matthew  10673:             if ($type eq 'scalar') {
1.258     albertel 10674:                 $env{'form.'.$setting} = $env{$envname};
1.153     matthew  10675:             } elsif ($type eq 'array') {
1.258     albertel 10676:                 $env{'form.'.$setting} = [ 
1.153     matthew  10677:                                            map { 
1.369     www      10678:                                                &unescape($_); 
1.258     albertel 10679:                                            } split(',',$env{$envname})
1.153     matthew  10680:                                            ];
                   10681:             }
                   10682:         }
                   10683:     }
1.127     matthew  10684: }
                   10685: 
1.618     raeburn  10686: #######################################################
                   10687: #######################################################
                   10688: 
                   10689: =pod
                   10690: 
                   10691: =head1 Domain E-mail Routines  
                   10692: 
                   10693: =over 4
                   10694: 
1.648     raeburn  10695: =item * &build_recipient_list()
1.618     raeburn  10696: 
1.884     raeburn  10697: Build recipient lists for five types of e-mail:
1.766     raeburn  10698: (a) Error Reports, (b) Package Updates, (c) lonstatus warnings/errors
1.884     raeburn  10699: (d) Help requests, (e) Course requests needing approval,  generated by
                   10700: lonerrorhandler.pm, CHECKRPMS, loncron, lonsupportreq.pm and
                   10701: loncoursequeueadmin.pm respectively.
1.618     raeburn  10702: 
                   10703: Inputs:
1.619     raeburn  10704: defmail (scalar - email address of default recipient), 
1.618     raeburn  10705: mailing type (scalar - errormail, packagesmail, or helpdeskmail), 
1.619     raeburn  10706: defdom (domain for which to retrieve configuration settings),
                   10707: origmail (scalar - email address of recipient from loncapa.conf, 
                   10708: i.e., predates configuration by DC via domainprefs.pm 
1.618     raeburn  10709: 
1.655     raeburn  10710: Returns: comma separated list of addresses to which to send e-mail.
                   10711: 
                   10712: =back
1.618     raeburn  10713: 
                   10714: =cut
                   10715: 
                   10716: ############################################################
                   10717: ############################################################
                   10718: sub build_recipient_list {
1.619     raeburn  10719:     my ($defmail,$mailing,$defdom,$origmail) = @_;
1.618     raeburn  10720:     my @recipients;
                   10721:     my $otheremails;
                   10722:     my %domconfig =
                   10723:          &Apache::lonnet::get_dom('configuration',['contacts'],$defdom);
                   10724:     if (ref($domconfig{'contacts'}) eq 'HASH') {
1.766     raeburn  10725:         if (exists($domconfig{'contacts'}{$mailing})) {
                   10726:             if (ref($domconfig{'contacts'}{$mailing}) eq 'HASH') {
                   10727:                 my @contacts = ('adminemail','supportemail');
                   10728:                 foreach my $item (@contacts) {
                   10729:                     if ($domconfig{'contacts'}{$mailing}{$item}) {
                   10730:                         my $addr = $domconfig{'contacts'}{$item}; 
                   10731:                         if (!grep(/^\Q$addr\E$/,@recipients)) {
                   10732:                             push(@recipients,$addr);
                   10733:                         }
1.619     raeburn  10734:                     }
1.766     raeburn  10735:                     $otheremails = $domconfig{'contacts'}{$mailing}{'others'};
1.618     raeburn  10736:                 }
                   10737:             }
1.766     raeburn  10738:         } elsif ($origmail ne '') {
                   10739:             push(@recipients,$origmail);
1.618     raeburn  10740:         }
1.619     raeburn  10741:     } elsif ($origmail ne '') {
                   10742:         push(@recipients,$origmail);
1.618     raeburn  10743:     }
1.688     raeburn  10744:     if (defined($defmail)) {
                   10745:         if ($defmail ne '') {
                   10746:             push(@recipients,$defmail);
                   10747:         }
1.618     raeburn  10748:     }
                   10749:     if ($otheremails) {
1.619     raeburn  10750:         my @others;
                   10751:         if ($otheremails =~ /,/) {
                   10752:             @others = split(/,/,$otheremails);
1.618     raeburn  10753:         } else {
1.619     raeburn  10754:             push(@others,$otheremails);
                   10755:         }
                   10756:         foreach my $addr (@others) {
                   10757:             if (!grep(/^\Q$addr\E$/,@recipients)) {
                   10758:                 push(@recipients,$addr);
                   10759:             }
1.618     raeburn  10760:         }
                   10761:     }
1.619     raeburn  10762:     my $recipientlist = join(',',@recipients); 
1.618     raeburn  10763:     return $recipientlist;
                   10764: }
                   10765: 
1.127     matthew  10766: ############################################################
                   10767: ############################################################
1.154     albertel 10768: 
1.655     raeburn  10769: =pod
                   10770: 
                   10771: =head1 Course Catalog Routines
                   10772: 
                   10773: =over 4
                   10774: 
                   10775: =item * &gather_categories()
                   10776: 
                   10777: Converts category definitions - keys of categories hash stored in  
                   10778: coursecategories in configuration.db on the primary library server in a 
                   10779: domain - to an array.  Also generates javascript and idx hash used to 
                   10780: generate Domain Coordinator interface for editing Course Categories.
                   10781: 
                   10782: Inputs:
1.663     raeburn  10783: 
1.655     raeburn  10784: categories (reference to hash of category definitions).
1.663     raeburn  10785: 
1.655     raeburn  10786: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   10787:       categories and subcategories).
1.663     raeburn  10788: 
1.655     raeburn  10789: idx (reference to hash of counters used in Domain Coordinator interface for 
                   10790:       editing Course Categories).
1.663     raeburn  10791: 
1.655     raeburn  10792: jsarray (reference to array of categories used to create Javascript arrays for
                   10793:          Domain Coordinator interface for editing Course Categories).
                   10794: 
                   10795: Returns: nothing
                   10796: 
                   10797: Side effects: populates cats, idx and jsarray. 
                   10798: 
                   10799: =cut
                   10800: 
                   10801: sub gather_categories {
                   10802:     my ($categories,$cats,$idx,$jsarray) = @_;
                   10803:     my %counters;
                   10804:     my $num = 0;
                   10805:     foreach my $item (keys(%{$categories})) {
                   10806:         my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$item);
                   10807:         if ($container eq '' && $depth == 0) {
                   10808:             $cats->[$depth][$categories->{$item}] = $cat;
                   10809:         } else {
                   10810:             $cats->[$depth]{$container}[$categories->{$item}] = $cat;
                   10811:         }
                   10812:         my ($escitem,$tail) = split(/:/,$item,2);
                   10813:         if ($counters{$tail} eq '') {
                   10814:             $counters{$tail} = $num;
                   10815:             $num ++;
                   10816:         }
                   10817:         if (ref($idx) eq 'HASH') {
                   10818:             $idx->{$item} = $counters{$tail};
                   10819:         }
                   10820:         if (ref($jsarray) eq 'ARRAY') {
                   10821:             push(@{$jsarray->[$counters{$tail}]},$item);
                   10822:         }
                   10823:     }
                   10824:     return;
                   10825: }
                   10826: 
                   10827: =pod
                   10828: 
                   10829: =item * &extract_categories()
                   10830: 
                   10831: Used to generate breadcrumb trails for course categories.
                   10832: 
                   10833: Inputs:
1.663     raeburn  10834: 
1.655     raeburn  10835: categories (reference to hash of category definitions).
1.663     raeburn  10836: 
1.655     raeburn  10837: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   10838:       categories and subcategories).
1.663     raeburn  10839: 
1.655     raeburn  10840: trails (reference to array of breacrumb trails for each category).
1.663     raeburn  10841: 
1.655     raeburn  10842: allitems (reference to hash - key is category key 
                   10843:          (format: escaped(name):escaped(parent category):depth in hierarchy).
1.663     raeburn  10844: 
1.655     raeburn  10845: idx (reference to hash of counters used in Domain Coordinator interface for
                   10846:       editing Course Categories).
1.663     raeburn  10847: 
1.655     raeburn  10848: jsarray (reference to array of categories used to create Javascript arrays for
                   10849:          Domain Coordinator interface for editing Course Categories).
                   10850: 
1.665     raeburn  10851: subcats (reference to hash of arrays containing all subcategories within each 
                   10852:          category, -recursive)
                   10853: 
1.655     raeburn  10854: Returns: nothing
                   10855: 
                   10856: Side effects: populates trails and allitems hash references.
                   10857: 
                   10858: =cut
                   10859: 
                   10860: sub extract_categories {
1.665     raeburn  10861:     my ($categories,$cats,$trails,$allitems,$idx,$jsarray,$subcats) = @_;
1.655     raeburn  10862:     if (ref($categories) eq 'HASH') {
                   10863:         &gather_categories($categories,$cats,$idx,$jsarray);
                   10864:         if (ref($cats->[0]) eq 'ARRAY') {
                   10865:             for (my $i=0; $i<@{$cats->[0]}; $i++) {
                   10866:                 my $name = $cats->[0][$i];
                   10867:                 my $item = &escape($name).'::0';
                   10868:                 my $trailstr;
                   10869:                 if ($name eq 'instcode') {
                   10870:                     $trailstr = &mt('Official courses (with institutional codes)');
1.919     raeburn  10871:                 } elsif ($name eq 'communities') {
                   10872:                     $trailstr = &mt('Communities');
1.655     raeburn  10873:                 } else {
                   10874:                     $trailstr = $name;
                   10875:                 }
                   10876:                 if ($allitems->{$item} eq '') {
                   10877:                     push(@{$trails},$trailstr);
                   10878:                     $allitems->{$item} = scalar(@{$trails})-1;
                   10879:                 }
                   10880:                 my @parents = ($name);
                   10881:                 if (ref($cats->[1]{$name}) eq 'ARRAY') {
                   10882:                     for (my $j=0; $j<@{$cats->[1]{$name}}; $j++) {
                   10883:                         my $category = $cats->[1]{$name}[$j];
1.665     raeburn  10884:                         if (ref($subcats) eq 'HASH') {
                   10885:                             push(@{$subcats->{$item}},&escape($category).':'.&escape($name).':1');
                   10886:                         }
                   10887:                         &recurse_categories($cats,2,$category,$trails,$allitems,\@parents,$subcats);
                   10888:                     }
                   10889:                 } else {
                   10890:                     if (ref($subcats) eq 'HASH') {
                   10891:                         $subcats->{$item} = [];
1.655     raeburn  10892:                     }
                   10893:                 }
                   10894:             }
                   10895:         }
                   10896:     }
                   10897:     return;
                   10898: }
                   10899: 
                   10900: =pod
                   10901: 
                   10902: =item *&recurse_categories()
                   10903: 
                   10904: Recursively used to generate breadcrumb trails for course categories.
                   10905: 
                   10906: Inputs:
1.663     raeburn  10907: 
1.655     raeburn  10908: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   10909:       categories and subcategories).
1.663     raeburn  10910: 
1.655     raeburn  10911: depth (current depth in hierarchy of categories and sub-categories - 0 indexed).
1.663     raeburn  10912: 
                   10913: category (current course category, for which breadcrumb trail is being generated).
                   10914: 
                   10915: trails (reference to array of breadcrumb trails for each category).
                   10916: 
1.655     raeburn  10917: allitems (reference to hash - key is category key
                   10918:          (format: escaped(name):escaped(parent category):depth in hierarchy).
1.663     raeburn  10919: 
1.655     raeburn  10920: parents (array containing containers directories for current category, 
                   10921:          back to top level). 
                   10922: 
                   10923: Returns: nothing
                   10924: 
                   10925: Side effects: populates trails and allitems hash references
                   10926: 
                   10927: =cut
                   10928: 
                   10929: sub recurse_categories {
1.665     raeburn  10930:     my ($cats,$depth,$category,$trails,$allitems,$parents,$subcats) = @_;
1.655     raeburn  10931:     my $shallower = $depth - 1;
                   10932:     if (ref($cats->[$depth]{$category}) eq 'ARRAY') {
                   10933:         for (my $k=0; $k<@{$cats->[$depth]{$category}}; $k++) {
                   10934:             my $name = $cats->[$depth]{$category}[$k];
                   10935:             my $item = &escape($category).':'.&escape($parents->[-1]).':'.$shallower;
                   10936:             my $trailstr = join(' -&gt; ',(@{$parents},$category));
                   10937:             if ($allitems->{$item} eq '') {
                   10938:                 push(@{$trails},$trailstr);
                   10939:                 $allitems->{$item} = scalar(@{$trails})-1;
                   10940:             }
                   10941:             my $deeper = $depth+1;
                   10942:             push(@{$parents},$category);
1.665     raeburn  10943:             if (ref($subcats) eq 'HASH') {
                   10944:                 my $subcat = &escape($name).':'.$category.':'.$depth;
                   10945:                 for (my $j=@{$parents}; $j>=0; $j--) {
                   10946:                     my $higher;
                   10947:                     if ($j > 0) {
                   10948:                         $higher = &escape($parents->[$j]).':'.
                   10949:                                   &escape($parents->[$j-1]).':'.$j;
                   10950:                     } else {
                   10951:                         $higher = &escape($parents->[$j]).'::'.$j;
                   10952:                     }
                   10953:                     push(@{$subcats->{$higher}},$subcat);
                   10954:                 }
                   10955:             }
                   10956:             &recurse_categories($cats,$deeper,$name,$trails,$allitems,$parents,
                   10957:                                 $subcats);
1.655     raeburn  10958:             pop(@{$parents});
                   10959:         }
                   10960:     } else {
                   10961:         my $item = &escape($category).':'.&escape($parents->[-1]).':'.$shallower;
                   10962:         my $trailstr = join(' -&gt; ',(@{$parents},$category));
                   10963:         if ($allitems->{$item} eq '') {
                   10964:             push(@{$trails},$trailstr);
                   10965:             $allitems->{$item} = scalar(@{$trails})-1;
                   10966:         }
                   10967:     }
                   10968:     return;
                   10969: }
                   10970: 
1.663     raeburn  10971: =pod
                   10972: 
                   10973: =item *&assign_categories_table()
                   10974: 
                   10975: Create a datatable for display of hierarchical categories in a domain,
                   10976: with checkboxes to allow a course to be categorized. 
                   10977: 
                   10978: Inputs:
                   10979: 
                   10980: cathash - reference to hash of categories defined for the domain (from
                   10981:           configuration.db)
                   10982: 
                   10983: currcat - scalar with an & separated list of categories assigned to a course. 
                   10984: 
1.919     raeburn  10985: type    - scalar contains course type (Course or Community).
                   10986: 
1.663     raeburn  10987: Returns: $output (markup to be displayed) 
                   10988: 
                   10989: =cut
                   10990: 
                   10991: sub assign_categories_table {
1.919     raeburn  10992:     my ($cathash,$currcat,$type) = @_;
1.663     raeburn  10993:     my $output;
                   10994:     if (ref($cathash) eq 'HASH') {
                   10995:         my (@cats,@trails,%allitems,%idx,@jsarray,@path,$maxdepth);
                   10996:         &extract_categories($cathash,\@cats,\@trails,\%allitems,\%idx,\@jsarray);
                   10997:         $maxdepth = scalar(@cats);
                   10998:         if (@cats > 0) {
                   10999:             my $itemcount = 0;
                   11000:             if (ref($cats[0]) eq 'ARRAY') {
                   11001:                 my @currcategories;
                   11002:                 if ($currcat ne '') {
                   11003:                     @currcategories = split('&',$currcat);
                   11004:                 }
1.919     raeburn  11005:                 my $table;
1.663     raeburn  11006:                 for (my $i=0; $i<@{$cats[0]}; $i++) {
                   11007:                     my $parent = $cats[0][$i];
1.919     raeburn  11008:                     next if ($parent eq 'instcode');
                   11009:                     if ($type eq 'Community') {
                   11010:                         next unless ($parent eq 'communities');
                   11011:                     } else {
                   11012:                         next if ($parent eq 'communities');
                   11013:                     }
1.663     raeburn  11014:                     my $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   11015:                     my $item = &escape($parent).'::0';
                   11016:                     my $checked = '';
                   11017:                     if (@currcategories > 0) {
                   11018:                         if (grep(/^\Q$item\E$/,@currcategories)) {
1.772     bisitz   11019:                             $checked = ' checked="checked"';
1.663     raeburn  11020:                         }
                   11021:                     }
1.919     raeburn  11022:                     my $parent_title = $parent;
                   11023:                     if ($parent eq 'communities') {
                   11024:                         $parent_title = &mt('Communities');
                   11025:                     }
                   11026:                     $table .= '<tr '.$css_class.'><td><span class="LC_nobreak">'.
                   11027:                               '<input type="checkbox" name="usecategory" value="'.
                   11028:                               $item.'"'.$checked.' />'.$parent_title.'</span>'.
                   11029:                               '<input type="hidden" name="catname" value="'.$parent.'" /></td>';
1.663     raeburn  11030:                     my $depth = 1;
                   11031:                     push(@path,$parent);
1.919     raeburn  11032:                     $table .= &assign_category_rows($itemcount,\@cats,$depth,$parent,\@path,\@currcategories);
1.663     raeburn  11033:                     pop(@path);
1.919     raeburn  11034:                     $table .= '</tr><tr><td colspan="'.$maxdepth.'" class="LC_row_separator"></td></tr>';
1.663     raeburn  11035:                     $itemcount ++;
                   11036:                 }
1.919     raeburn  11037:                 if ($itemcount) {
                   11038:                     $output = &Apache::loncommon::start_data_table().
                   11039:                               $table.
                   11040:                               &Apache::loncommon::end_data_table();
                   11041:                 }
1.663     raeburn  11042:             }
                   11043:         }
                   11044:     }
                   11045:     return $output;
                   11046: }
                   11047: 
                   11048: =pod
                   11049: 
                   11050: =item *&assign_category_rows()
                   11051: 
                   11052: Create a datatable row for display of nested categories in a domain,
                   11053: with checkboxes to allow a course to be categorized,called recursively.
                   11054: 
                   11055: Inputs:
                   11056: 
                   11057: itemcount - track row number for alternating colors
                   11058: 
                   11059: cats - reference to array of arrays/hashes which encapsulates hierarchy of
                   11060:       categories and subcategories.
                   11061: 
                   11062: depth - current depth in hierarchy of categories and sub-categories - 0 indexed.
                   11063: 
                   11064: parent - parent of current category item
                   11065: 
                   11066: path - Array containing all categories back up through the hierarchy from the
                   11067:        current category to the top level.
                   11068: 
                   11069: currcategories - reference to array of current categories assigned to the course
                   11070: 
                   11071: Returns: $output (markup to be displayed).
                   11072: 
                   11073: =cut
                   11074: 
                   11075: sub assign_category_rows {
                   11076:     my ($itemcount,$cats,$depth,$parent,$path,$currcategories) = @_;
                   11077:     my ($text,$name,$item,$chgstr);
                   11078:     if (ref($cats) eq 'ARRAY') {
                   11079:         my $maxdepth = scalar(@{$cats});
                   11080:         if (ref($cats->[$depth]) eq 'HASH') {
                   11081:             if (ref($cats->[$depth]{$parent}) eq 'ARRAY') {
                   11082:                 my $numchildren = @{$cats->[$depth]{$parent}};
                   11083:                 my $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   11084:                 $text .= '<td><table class="LC_datatable">';
                   11085:                 for (my $j=0; $j<$numchildren; $j++) {
                   11086:                     $name = $cats->[$depth]{$parent}[$j];
                   11087:                     $item = &escape($name).':'.&escape($parent).':'.$depth;
                   11088:                     my $deeper = $depth+1;
                   11089:                     my $checked = '';
                   11090:                     if (ref($currcategories) eq 'ARRAY') {
                   11091:                         if (@{$currcategories} > 0) {
                   11092:                             if (grep(/^\Q$item\E$/,@{$currcategories})) {
1.772     bisitz   11093:                                 $checked = ' checked="checked"';
1.663     raeburn  11094:                             }
                   11095:                         }
                   11096:                     }
1.664     raeburn  11097:                     $text .= '<tr><td><span class="LC_nobreak"><label>'.
                   11098:                              '<input type="checkbox" name="usecategory" value="'.
1.675     raeburn  11099:                              $item.'"'.$checked.' />'.$name.'</label></span>'.
                   11100:                              '<input type="hidden" name="catname" value="'.$name.'" />'.
                   11101:                              '</td><td>';
1.663     raeburn  11102:                     if (ref($path) eq 'ARRAY') {
                   11103:                         push(@{$path},$name);
                   11104:                         $text .= &assign_category_rows($itemcount,$cats,$deeper,$name,$path,$currcategories);
                   11105:                         pop(@{$path});
                   11106:                     }
                   11107:                     $text .= '</td></tr>';
                   11108:                 }
                   11109:                 $text .= '</table></td>';
                   11110:             }
                   11111:         }
                   11112:     }
                   11113:     return $text;
                   11114: }
                   11115: 
1.655     raeburn  11116: ############################################################
                   11117: ############################################################
                   11118: 
                   11119: 
1.443     albertel 11120: sub commit_customrole {
1.664     raeburn  11121:     my ($udom,$uname,$url,$three,$four,$five,$start,$end,$context) = @_;
1.630     raeburn  11122:     my $output = &mt('Assigning custom role').' "'.$five.'" by '.$four.':'.$three.' in '.$url.
1.443     albertel 11123:                          ($start?', '.&mt('starting').' '.localtime($start):'').
                   11124:                          ($end?', ending '.localtime($end):'').': <b>'.
                   11125:               &Apache::lonnet::assigncustomrole(
1.664     raeburn  11126:                  $udom,$uname,$url,$three,$four,$five,$end,$start,undef,undef,$context).
1.443     albertel 11127:                  '</b><br />';
                   11128:     return $output;
                   11129: }
                   11130: 
                   11131: sub commit_standardrole {
1.541     raeburn  11132:     my ($udom,$uname,$url,$three,$start,$end,$one,$two,$sec,$context) = @_;
                   11133:     my ($output,$logmsg,$linefeed);
                   11134:     if ($context eq 'auto') {
                   11135:         $linefeed = "\n";
                   11136:     } else {
                   11137:         $linefeed = "<br />\n";
                   11138:     }  
1.443     albertel 11139:     if ($three eq 'st') {
1.541     raeburn  11140:         my $result = &commit_studentrole(\$logmsg,$udom,$uname,$url,$three,$start,$end,
                   11141:                                          $one,$two,$sec,$context);
                   11142:         if (($result =~ /^error/) || ($result eq 'not_in_class') || 
1.626     raeburn  11143:             ($result eq 'unknown_course') || ($result eq 'refused')) {
                   11144:             $output = $logmsg.' '.&mt('Error: ').$result."\n"; 
1.443     albertel 11145:         } else {
1.541     raeburn  11146:             $output = $logmsg.$linefeed.&mt('Assigning').' '.$three.' in '.$url.
1.443     albertel 11147:                ($start?', '.&mt('starting').' '.localtime($start):'').
1.541     raeburn  11148:                ($end?', '.&mt('ending').' '.localtime($end):'').': ';
                   11149:             if ($context eq 'auto') {
                   11150:                 $output .= $result.$linefeed.&mt('Add to classlist').': ok';
                   11151:             } else {
                   11152:                $output .= '<b>'.$result.'</b>'.$linefeed.
                   11153:                &mt('Add to classlist').': <b>ok</b>';
                   11154:             }
                   11155:             $output .= $linefeed;
1.443     albertel 11156:         }
                   11157:     } else {
                   11158:         $output = &mt('Assigning').' '.$three.' in '.$url.
                   11159:                ($start?', '.&mt('starting').' '.localtime($start):'').
1.541     raeburn  11160:                ($end?', '.&mt('ending').' '.localtime($end):'').': ';
1.652     raeburn  11161:         my $result = &Apache::lonnet::assignrole($udom,$uname,$url,$three,$end,$start,'','',$context);
1.541     raeburn  11162:         if ($context eq 'auto') {
                   11163:             $output .= $result.$linefeed;
                   11164:         } else {
                   11165:             $output .= '<b>'.$result.'</b>'.$linefeed;
                   11166:         }
1.443     albertel 11167:     }
                   11168:     return $output;
                   11169: }
                   11170: 
                   11171: sub commit_studentrole {
1.541     raeburn  11172:     my ($logmsg,$udom,$uname,$url,$three,$start,$end,$one,$two,$sec,$context) = @_;
1.626     raeburn  11173:     my ($result,$linefeed,$oldsecurl,$newsecurl);
1.541     raeburn  11174:     if ($context eq 'auto') {
                   11175:         $linefeed = "\n";
                   11176:     } else {
                   11177:         $linefeed = '<br />'."\n";
                   11178:     }
1.443     albertel 11179:     if (defined($one) && defined($two)) {
                   11180:         my $cid=$one.'_'.$two;
                   11181:         my $oldsec=&Apache::lonnet::getsection($udom,$uname,$cid);
                   11182:         my $secchange = 0;
                   11183:         my $expire_role_result;
                   11184:         my $modify_section_result;
1.628     raeburn  11185:         if ($oldsec ne '-1') { 
                   11186:             if ($oldsec ne $sec) {
1.443     albertel 11187:                 $secchange = 1;
1.628     raeburn  11188:                 my $now = time;
1.443     albertel 11189:                 my $uurl='/'.$cid;
                   11190:                 $uurl=~s/\_/\//g;
                   11191:                 if ($oldsec) {
                   11192:                     $uurl.='/'.$oldsec;
                   11193:                 }
1.626     raeburn  11194:                 $oldsecurl = $uurl;
1.628     raeburn  11195:                 $expire_role_result = 
1.652     raeburn  11196:                     &Apache::lonnet::assignrole($udom,$uname,$uurl,'st',$now,'','',$context);
1.628     raeburn  11197:                 if ($env{'request.course.sec'} ne '') { 
                   11198:                     if ($expire_role_result eq 'refused') {
                   11199:                         my @roles = ('st');
                   11200:                         my @statuses = ('previous');
                   11201:                         my @roledoms = ($one);
                   11202:                         my $withsec = 1;
                   11203:                         my %roleshash = 
                   11204:                             &Apache::lonnet::get_my_roles($uname,$udom,'userroles',
                   11205:                                               \@statuses,\@roles,\@roledoms,$withsec);
                   11206:                         if (defined ($roleshash{$two.':'.$one.':st:'.$oldsec})) {
                   11207:                             my ($oldstart,$oldend) = 
                   11208:                                 split(':',$roleshash{$two.':'.$one.':st:'.$oldsec});
                   11209:                             if ($oldend > 0 && $oldend <= $now) {
                   11210:                                 $expire_role_result = 'ok';
                   11211:                             }
                   11212:                         }
                   11213:                     }
                   11214:                 }
1.443     albertel 11215:                 $result = $expire_role_result;
                   11216:             }
                   11217:         }
                   11218:         if (($expire_role_result eq 'ok') || ($secchange == 0)) {
1.652     raeburn  11219:             $modify_section_result = &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$end,$start,'','',$cid,'',$context);
1.443     albertel 11220:             if ($modify_section_result =~ /^ok/) {
                   11221:                 if ($secchange == 1) {
1.628     raeburn  11222:                     if ($sec eq '') {
                   11223:                         $$logmsg .= &mt('Section for [_1] switched from (possibly expired) old section: [_2] to student role without a section.',$uname,$oldsec).$linefeed;
                   11224:                     } else {
                   11225:                         $$logmsg .= &mt('Section for [_1] switched from (possibly expired) old section: [_2] to new section: [_3].',$uname,$oldsec,$sec).$linefeed;
                   11226:                     }
1.443     albertel 11227:                 } elsif ($oldsec eq '-1') {
1.628     raeburn  11228:                     if ($sec eq '') {
                   11229:                         $$logmsg .= &mt('New student role without a section for [_1] in course [_2].',$uname,$cid).$linefeed;
                   11230:                     } else {
                   11231:                         $$logmsg .= &mt('New student role for [_1] in section [_2] in course [_3].',$uname,$sec,$cid).$linefeed;
                   11232:                     }
1.443     albertel 11233:                 } else {
1.628     raeburn  11234:                     if ($sec eq '') {
                   11235:                         $$logmsg .= &mt('Student [_1] assigned to course [_2] without a section.',$uname,$cid).$linefeed;
                   11236:                     } else {
                   11237:                         $$logmsg .= &mt('Student [_1] assigned to section [_2] in course [_3].',$uname,$sec,$cid).$linefeed;
                   11238:                     }
1.443     albertel 11239:                 }
                   11240:             } else {
1.628     raeburn  11241:                 if ($secchange) {       
                   11242:                     $$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;
                   11243:                 } else {
                   11244:                     $$logmsg .= &mt('Error when attempting to modify role for [_1] for section: "[_2]" in course [_3] -error:',$uname,$sec,$cid).' '.$modify_section_result.$linefeed;
                   11245:                 }
1.443     albertel 11246:             }
                   11247:             $result = $modify_section_result;
                   11248:         } elsif ($secchange == 1) {
1.628     raeburn  11249:             if ($oldsec eq '') {
                   11250:                 $$logmsg .= &mt('Error when attempting to expire existing role without a section for [_1] in course [_3] -error: ',$uname,$cid).' '.$expire_role_result.$linefeed;
                   11251:             } else {
                   11252:                 $$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;
                   11253:             }
1.626     raeburn  11254:             if ($expire_role_result eq 'refused') {
                   11255:                 my $newsecurl = '/'.$cid;
                   11256:                 $newsecurl =~ s/\_/\//g;
                   11257:                 if ($sec ne '') {
                   11258:                     $newsecurl.='/'.$sec;
                   11259:                 }
                   11260:                 if (&Apache::lonnet::allowed('cst',$newsecurl) && !(&Apache::lonnet::allowed('cst',$oldsecurl))) {
                   11261:                     if ($sec eq '') {
                   11262:                         $$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;
                   11263:                     } else {
                   11264:                         $$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;
                   11265:                     }
                   11266:                 }
                   11267:             }
1.443     albertel 11268:         }
                   11269:     } else {
1.626     raeburn  11270:         $$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 11271:         $result = "error: incomplete course id\n";
                   11272:     }
                   11273:     return $result;
                   11274: }
                   11275: 
                   11276: ############################################################
                   11277: ############################################################
                   11278: 
1.566     albertel 11279: sub check_clone {
1.578     raeburn  11280:     my ($args,$linefeed) = @_;
1.566     albertel 11281:     my $cloneid='/'.$args->{'clonedomain'}.'/'.$args->{'clonecourse'};
                   11282:     my ($clonecrsudom,$clonecrsunum)= &LONCAPA::split_courseid($cloneid);
                   11283:     my $clonehome=&Apache::lonnet::homeserver($clonecrsunum,$clonecrsudom);
                   11284:     my $clonemsg;
                   11285:     my $can_clone = 0;
1.944     raeburn  11286:     my $lctype = lc($args->{'crstype'});
1.908     raeburn  11287:     if ($lctype ne 'community') {
                   11288:         $lctype = 'course';
                   11289:     }
1.566     albertel 11290:     if ($clonehome eq 'no_host') {
1.944     raeburn  11291:         if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  11292:             $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'});
                   11293:         } else {
                   11294:             $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'});
                   11295:         }     
1.566     albertel 11296:     } else {
                   11297: 	my %clonedesc = &Apache::lonnet::coursedescription($cloneid,{'one_time' => 1});
1.944     raeburn  11298:         if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  11299:             if ($clonedesc{'type'} ne 'Community') {
                   11300:                  $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'});
                   11301:                 return ($can_clone, $clonemsg, $cloneid, $clonehome);
                   11302:             }
                   11303:         }
1.882     raeburn  11304: 	if (($env{'request.role.domain'} eq $args->{'clonedomain'}) && 
                   11305:             (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'}))) {
1.566     albertel 11306: 	    $can_clone = 1;
                   11307: 	} else {
                   11308: 	    my %clonehash = &Apache::lonnet::get('environment',['cloners'],
                   11309: 						 $args->{'clonedomain'},$args->{'clonecourse'});
                   11310: 	    my @cloners = split(/,/,$clonehash{'cloners'});
1.578     raeburn  11311:             if (grep(/^\*$/,@cloners)) {
                   11312:                 $can_clone = 1;
                   11313:             } elsif (grep(/^\*\:\Q$args->{'ccdomain'}\E$/,@cloners)) {
                   11314:                 $can_clone = 1;
                   11315:             } else {
1.908     raeburn  11316:                 my $ccrole = 'cc';
1.944     raeburn  11317:                 if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  11318:                     $ccrole = 'co';
                   11319:                 }
1.578     raeburn  11320: 	        my %roleshash =
                   11321: 		    &Apache::lonnet::get_my_roles($args->{'ccuname'},
                   11322: 					 $args->{'ccdomain'},
1.908     raeburn  11323:                                          'userroles',['active'],[$ccrole],
1.578     raeburn  11324: 					 [$args->{'clonedomain'}]);
1.908     raeburn  11325: 	        if (($roleshash{$args->{'clonecourse'}.':'.$args->{'clonedomain'}.':'.$ccrole}) || (grep(/^\Q$args->{'ccuname'}\E:\Q$args->{'ccdomain'}\E$/,@cloners))) {
1.942     raeburn  11326:                     $can_clone = 1;
                   11327:                 } elsif (&Apache::lonnet::is_course_owner($args->{'clonedomain'},$args->{'clonecourse'},$args->{'ccuname'},$args->{'ccdomain'})) {
                   11328:                     $can_clone = 1;
                   11329:                 } else {
1.944     raeburn  11330:                     if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  11331:                         $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'});
                   11332:                     } else {
                   11333:                         $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'});
                   11334:                     }
1.578     raeburn  11335: 	        }
1.566     albertel 11336: 	    }
1.578     raeburn  11337:         }
1.566     albertel 11338:     }
                   11339:     return ($can_clone, $clonemsg, $cloneid, $clonehome);
                   11340: }
                   11341: 
1.444     albertel 11342: sub construct_course {
1.885     raeburn  11343:     my ($args,$logmsg,$courseid,$crsudom,$crsunum,$udom,$uname,$context,$cnum,$category) = @_;
1.444     albertel 11344:     my $outcome;
1.541     raeburn  11345:     my $linefeed =  '<br />'."\n";
                   11346:     if ($context eq 'auto') {
                   11347:         $linefeed = "\n";
                   11348:     }
1.566     albertel 11349: 
                   11350: #
                   11351: # Are we cloning?
                   11352: #
                   11353:     my ($can_clone, $clonemsg, $cloneid, $clonehome);
                   11354:     if (($args->{'clonecourse'}) && ($args->{'clonedomain'})) {
1.578     raeburn  11355: 	($can_clone, $clonemsg, $cloneid, $clonehome) = &check_clone($args,$linefeed);
1.566     albertel 11356: 	if ($context ne 'auto') {
1.578     raeburn  11357:             if ($clonemsg ne '') {
                   11358: 	        $clonemsg = '<span class="LC_error">'.$clonemsg.'</span>';
                   11359:             }
1.566     albertel 11360: 	}
                   11361: 	$outcome .= $clonemsg.$linefeed;
                   11362: 
                   11363:         if (!$can_clone) {
                   11364: 	    return (0,$outcome);
                   11365: 	}
                   11366:     }
                   11367: 
1.444     albertel 11368: #
                   11369: # Open course
                   11370: #
                   11371:     my $crstype = lc($args->{'crstype'});
                   11372:     my %cenv=();
                   11373:     $$courseid=&Apache::lonnet::createcourse($args->{'course_domain'},
                   11374:                                              $args->{'cdescr'},
                   11375:                                              $args->{'curl'},
                   11376:                                              $args->{'course_home'},
                   11377:                                              $args->{'nonstandard'},
                   11378:                                              $args->{'crscode'},
                   11379:                                              $args->{'ccuname'}.':'.
                   11380:                                              $args->{'ccdomain'},
1.882     raeburn  11381:                                              $args->{'crstype'},
1.885     raeburn  11382:                                              $cnum,$context,$category);
1.444     albertel 11383: 
                   11384:     # Note: The testing routines depend on this being output; see 
                   11385:     # Utils::Course. This needs to at least be output as a comment
                   11386:     # if anyone ever decides to not show this, and Utils::Course::new
                   11387:     # will need to be suitably modified.
1.541     raeburn  11388:     $outcome .= &mt('New LON-CAPA [_1] ID: [_2]',$crstype,$$courseid).$linefeed;
1.943     raeburn  11389:     if ($$courseid =~ /^error:/) {
                   11390:         return (0,$outcome);
                   11391:     }
                   11392: 
1.444     albertel 11393: #
                   11394: # Check if created correctly
                   11395: #
1.479     albertel 11396:     ($$crsudom,$$crsunum)= &LONCAPA::split_courseid($$courseid);
1.444     albertel 11397:     my $crsuhome=&Apache::lonnet::homeserver($$crsunum,$$crsudom);
1.943     raeburn  11398:     if ($crsuhome eq 'no_host') {
                   11399:         $outcome .= &mt('Course creation failed, unrecognized course home server.').$linefeed;
                   11400:         return (0,$outcome);
                   11401:     }
1.541     raeburn  11402:     $outcome .= &mt('Created on').': '.$crsuhome.$linefeed;
1.566     albertel 11403: 
1.444     albertel 11404: #
1.566     albertel 11405: # Do the cloning
                   11406: #   
                   11407:     if ($can_clone && $cloneid) {
                   11408: 	$clonemsg = &mt('Cloning [_1] from [_2]',$crstype,$clonehome);
                   11409: 	if ($context ne 'auto') {
                   11410: 	    $clonemsg = '<span class="LC_success">'.$clonemsg.'</span>';
                   11411: 	}
                   11412: 	$outcome .= $clonemsg.$linefeed;
                   11413: 	my %oldcenv=&Apache::lonnet::dump('environment',$$crsudom,$$crsunum);
1.444     albertel 11414: # Copy all files
1.637     www      11415: 	&Apache::lonclonecourse::copycoursefiles($cloneid,$$courseid,$args->{'datemode'},$args->{'dateshift'});
1.444     albertel 11416: # Restore URL
1.566     albertel 11417: 	$cenv{'url'}=$oldcenv{'url'};
1.444     albertel 11418: # Restore title
1.566     albertel 11419: 	$cenv{'description'}=$oldcenv{'description'};
1.955     raeburn  11420: # Restore creation date, creator and creation context.
                   11421:         $cenv{'internal.created'}=$oldcenv{'internal.created'};
                   11422:         $cenv{'internal.creator'}=$oldcenv{'internal.creator'};
                   11423:         $cenv{'internal.creationcontext'}=$oldcenv{'internal.creationcontext'};
1.444     albertel 11424: # Mark as cloned
1.566     albertel 11425: 	$cenv{'clonedfrom'}=$cloneid;
1.638     www      11426: # Need to clone grading mode
                   11427:         my %newenv=&Apache::lonnet::get('environment',['grading'],$$crsudom,$$crsunum);
                   11428:         $cenv{'grading'}=$newenv{'grading'};
                   11429: # Do not clone these environment entries
                   11430:         &Apache::lonnet::del('environment',
                   11431:                   ['default_enrollment_start_date',
                   11432:                    'default_enrollment_end_date',
                   11433:                    'question.email',
                   11434:                    'policy.email',
                   11435:                    'comment.email',
                   11436:                    'pch.users.denied',
1.725     raeburn  11437:                    'plc.users.denied',
                   11438:                    'hidefromcat',
                   11439:                    'categories'],
1.638     www      11440:                    $$crsudom,$$crsunum);
1.444     albertel 11441:     }
1.566     albertel 11442: 
1.444     albertel 11443: #
                   11444: # Set environment (will override cloned, if existing)
                   11445: #
                   11446:     my @sections = ();
                   11447:     my @xlists = ();
                   11448:     if ($args->{'crstype'}) {
                   11449:         $cenv{'type'}=$args->{'crstype'};
                   11450:     }
                   11451:     if ($args->{'crsid'}) {
                   11452:         $cenv{'courseid'}=$args->{'crsid'};
                   11453:     }
                   11454:     if ($args->{'crscode'}) {
                   11455:         $cenv{'internal.coursecode'}=$args->{'crscode'};
                   11456:     }
                   11457:     if ($args->{'crsquota'} ne '') {
                   11458:         $cenv{'internal.coursequota'}=$args->{'crsquota'};
                   11459:     } else {
                   11460:         $cenv{'internal.coursequota'}=$args->{'crsquota'} = 20;
                   11461:     }
                   11462:     if ($args->{'ccuname'}) {
                   11463:         $cenv{'internal.courseowner'} = $args->{'ccuname'}.
                   11464:                                         ':'.$args->{'ccdomain'};
                   11465:     } else {
                   11466:         $cenv{'internal.courseowner'} = $args->{'curruser'};
                   11467:     }
                   11468:     my @badclasses = (); # Used to accumulate sections/crosslistings that did not pass classlist access check for course owner.
                   11469:     if ($args->{'crssections'}) {
                   11470:         $cenv{'internal.sectionnums'} = '';
                   11471:         if ($args->{'crssections'} =~ m/,/) {
                   11472:             @sections = split/,/,$args->{'crssections'};
                   11473:         } else {
                   11474:             $sections[0] = $args->{'crssections'};
                   11475:         }
                   11476:         if (@sections > 0) {
                   11477:             foreach my $item (@sections) {
                   11478:                 my ($sec,$gp) = split/:/,$item;
                   11479:                 my $class = $args->{'crscode'}.$sec;
                   11480:                 my $addcheck = &Apache::lonnet::auto_new_course($$crsunum,$$crsudom,$class,$cenv{'internal.courseowner'});
                   11481:                 $cenv{'internal.sectionnums'} .= $item.',';
                   11482:                 unless ($addcheck eq 'ok') {
                   11483:                     push @badclasses, $class;
                   11484:                 }
                   11485:             }
                   11486:             $cenv{'internal.sectionnums'} =~ s/,$//;
                   11487:         }
                   11488:     }
                   11489: # do not hide course coordinator from staff listing, 
                   11490: # even if privileged
                   11491:     $cenv{'nothideprivileged'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   11492: # add crosslistings
                   11493:     if ($args->{'crsxlist'}) {
                   11494:         $cenv{'internal.crosslistings'}='';
                   11495:         if ($args->{'crsxlist'} =~ m/,/) {
                   11496:             @xlists = split/,/,$args->{'crsxlist'};
                   11497:         } else {
                   11498:             $xlists[0] = $args->{'crsxlist'};
                   11499:         }
                   11500:         if (@xlists > 0) {
                   11501:             foreach my $item (@xlists) {
                   11502:                 my ($xl,$gp) = split/:/,$item;
                   11503:                 my $addcheck =  &Apache::lonnet::auto_new_course($$crsunum,$$crsudom,$xl,$cenv{'internal.courseowner'});
                   11504:                 $cenv{'internal.crosslistings'} .= $item.',';
                   11505:                 unless ($addcheck eq 'ok') {
                   11506:                     push @badclasses, $xl;
                   11507:                 }
                   11508:             }
                   11509:             $cenv{'internal.crosslistings'} =~ s/,$//;
                   11510:         }
                   11511:     }
                   11512:     if ($args->{'autoadds'}) {
                   11513:         $cenv{'internal.autoadds'}=$args->{'autoadds'};
                   11514:     }
                   11515:     if ($args->{'autodrops'}) {
                   11516:         $cenv{'internal.autodrops'}=$args->{'autodrops'};
                   11517:     }
                   11518: # check for notification of enrollment changes
                   11519:     my @notified = ();
                   11520:     if ($args->{'notify_owner'}) {
                   11521:         if ($args->{'ccuname'} ne '') {
                   11522:             push(@notified,$args->{'ccuname'}.':'.$args->{'ccdomain'});
                   11523:         }
                   11524:     }
                   11525:     if ($args->{'notify_dc'}) {
                   11526:         if ($uname ne '') { 
1.630     raeburn  11527:             push(@notified,$uname.':'.$udom);
1.444     albertel 11528:         }
                   11529:     }
                   11530:     if (@notified > 0) {
                   11531:         my $notifylist;
                   11532:         if (@notified > 1) {
                   11533:             $notifylist = join(',',@notified);
                   11534:         } else {
                   11535:             $notifylist = $notified[0];
                   11536:         }
                   11537:         $cenv{'internal.notifylist'} = $notifylist;
                   11538:     }
                   11539:     if (@badclasses > 0) {
                   11540:         my %lt=&Apache::lonlocal::texthash(
                   11541:                 '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',
                   11542:                 'dnhr' => 'does not have rights to access enrollment in these classes',
                   11543:                 'adby' => 'as determined by the policies of your institution on access to official classlists'
                   11544:         );
1.541     raeburn  11545:         my $badclass_msg = $cenv{'internal.courseowner'}.') - '.$lt{'dnhr'}.
                   11546:                            ' ('.$lt{'adby'}.')';
                   11547:         if ($context eq 'auto') {
                   11548:             $outcome .= $badclass_msg.$linefeed;
1.566     albertel 11549:             $outcome .= '<div class="LC_warning">'.$badclass_msg.$linefeed.'<ul>'."\n";
1.541     raeburn  11550:             foreach my $item (@badclasses) {
                   11551:                 if ($context eq 'auto') {
                   11552:                     $outcome .= " - $item\n";
                   11553:                 } else {
                   11554:                     $outcome .= "<li>$item</li>\n";
                   11555:                 }
                   11556:             }
                   11557:             if ($context eq 'auto') {
                   11558:                 $outcome .= $linefeed;
                   11559:             } else {
1.566     albertel 11560:                 $outcome .= "</ul><br /><br /></div>\n";
1.541     raeburn  11561:             }
                   11562:         } 
1.444     albertel 11563:     }
                   11564:     if ($args->{'no_end_date'}) {
                   11565:         $args->{'endaccess'} = 0;
                   11566:     }
                   11567:     $cenv{'internal.autostart'}=$args->{'enrollstart'};
                   11568:     $cenv{'internal.autoend'}=$args->{'enrollend'};
                   11569:     $cenv{'default_enrollment_start_date'}=$args->{'startaccess'};
                   11570:     $cenv{'default_enrollment_end_date'}=$args->{'endaccess'};
                   11571:     if ($args->{'showphotos'}) {
                   11572:       $cenv{'internal.showphotos'}=$args->{'showphotos'};
                   11573:     }
                   11574:     $cenv{'internal.authtype'} = $args->{'authtype'};
                   11575:     $cenv{'internal.autharg'} = $args->{'autharg'}; 
                   11576:     if ( ($cenv{'internal.authtype'} =~ /^krb/) && ($cenv{'internal.autoadds'} == 1)) {
                   11577:         if (! defined($cenv{'internal.autharg'}) || $cenv{'internal.autharg'}  eq '') {
1.541     raeburn  11578:             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'); 
                   11579:             if ($context eq 'auto') {
                   11580:                 $outcome .= $krb_msg;
                   11581:             } else {
1.566     albertel 11582:                 $outcome .= '<span class="LC_error">'.$krb_msg.'</span>';
1.541     raeburn  11583:             }
                   11584:             $outcome .= $linefeed;
1.444     albertel 11585:         }
                   11586:     }
                   11587:     if (($args->{'ccdomain'}) && ($args->{'ccuname'})) {
                   11588:        if ($args->{'setpolicy'}) {
                   11589:            $cenv{'policy.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   11590:        }
                   11591:        if ($args->{'setcontent'}) {
                   11592:            $cenv{'question.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   11593:        }
                   11594:     }
                   11595:     if ($args->{'reshome'}) {
                   11596: 	$cenv{'reshome'}=$args->{'reshome'}.'/';
                   11597: 	$cenv{'reshome'}=~s/\/+$/\//;
                   11598:     }
                   11599: #
                   11600: # course has keyed access
                   11601: #
                   11602:     if ($args->{'setkeys'}) {
                   11603:        $cenv{'keyaccess'}='yes';
                   11604:     }
                   11605: # if specified, key authority is not course, but user
                   11606: # only active if keyaccess is yes
                   11607:     if ($args->{'keyauth'}) {
1.487     albertel 11608: 	my ($user,$domain) = split(':',$args->{'keyauth'});
                   11609: 	$user = &LONCAPA::clean_username($user);
                   11610: 	$domain = &LONCAPA::clean_username($domain);
1.488     foxr     11611: 	if ($user ne '' && $domain ne '') {
1.487     albertel 11612: 	    $cenv{'keyauth'}=$user.':'.$domain;
1.444     albertel 11613: 	}
                   11614:     }
                   11615: 
                   11616:     if ($args->{'disresdis'}) {
                   11617:         $cenv{'pch.roles.denied'}='st';
                   11618:     }
                   11619:     if ($args->{'disablechat'}) {
                   11620:         $cenv{'plc.roles.denied'}='st';
                   11621:     }
                   11622: 
                   11623:     # Record we've not yet viewed the Course Initialization Helper for this 
                   11624:     # course
                   11625:     $cenv{'course.helper.not.run'} = 1;
                   11626:     #
                   11627:     # Use new Randomseed
                   11628:     #
                   11629:     $cenv{'rndseed'}=&Apache::lonnet::latest_rnd_algorithm_id();;
                   11630:     $cenv{'receiptalg'}=&Apache::lonnet::latest_receipt_algorithm_id();;
                   11631:     #
                   11632:     # The encryption code and receipt prefix for this course
                   11633:     #
                   11634:     $cenv{'internal.encseed'}=$Apache::lonnet::perlvar{'lonReceipt'}.$$.time.int(rand(9999));
                   11635:     $cenv{'internal.encpref'}=100+int(9*rand(99));
                   11636:     #
                   11637:     # By default, use standard grading
                   11638:     if (!defined($cenv{'grading'})) { $cenv{'grading'} = 'standard'; }
                   11639: 
1.541     raeburn  11640:     $outcome .= $linefeed.&mt('Setting environment').': '.                 
                   11641:           &Apache::lonnet::put('environment',\%cenv,$$crsudom,$$crsunum).$linefeed;
1.444     albertel 11642: #
                   11643: # Open all assignments
                   11644: #
                   11645:     if ($args->{'openall'}) {
                   11646:        my $storeunder=$$crsudom.'_'.$$crsunum.'.0.opendate';
                   11647:        my %storecontent = ($storeunder         => time,
                   11648:                            $storeunder.'.type' => 'date_start');
                   11649:        
                   11650:        $outcome .= &mt('Opening all assignments').': '.&Apache::lonnet::cput
1.541     raeburn  11651:                  ('resourcedata',\%storecontent,$$crsudom,$$crsunum).$linefeed;
1.444     albertel 11652:    }
                   11653: #
                   11654: # Set first page
                   11655: #
                   11656:     unless (($args->{'nonstandard'}) || ($args->{'firstres'} eq 'blank')
                   11657: 	    || ($cloneid)) {
1.445     albertel 11658: 	use LONCAPA::map;
1.444     albertel 11659: 	$outcome .= &mt('Setting first resource').': ';
1.445     albertel 11660: 
                   11661: 	my $map = '/uploaded/'.$$crsudom.'/'.$$crsunum.'/default.sequence';
                   11662:         my ($errtext,$fatal)=&LONCAPA::map::mapread($map);
                   11663: 
1.444     albertel 11664:         $outcome .= ($fatal?$errtext:'read ok').' - ';
                   11665:         my $title; my $url;
                   11666:         if ($args->{'firstres'} eq 'syl') {
1.690     bisitz   11667: 	    $title=&mt('Syllabus');
1.444     albertel 11668:             $url='/public/'.$$crsudom.'/'.$$crsunum.'/syllabus';
                   11669:         } else {
1.963     raeburn  11670:             $title=&mt('Table of Contents');
1.444     albertel 11671:             $url='/adm/navmaps';
                   11672:         }
1.445     albertel 11673: 
                   11674:         $LONCAPA::map::resources[1]=$title.':'.$url.':false:start:res';
                   11675: 	(my $outtext,$errtext) = &LONCAPA::map::storemap($map,1);
                   11676: 
                   11677: 	if ($errtext) { $fatal=2; }
1.541     raeburn  11678:         $outcome .= ($fatal?$errtext:'write ok').$linefeed;
1.444     albertel 11679:     }
1.566     albertel 11680: 
                   11681:     return (1,$outcome);
1.444     albertel 11682: }
                   11683: 
                   11684: ############################################################
                   11685: ############################################################
                   11686: 
1.953     droeschl 11687: #SD
                   11688: # only Community and Course, or anything else?
1.378     raeburn  11689: sub course_type {
                   11690:     my ($cid) = @_;
                   11691:     if (!defined($cid)) {
                   11692:         $cid = $env{'request.course.id'};
                   11693:     }
1.404     albertel 11694:     if (defined($env{'course.'.$cid.'.type'})) {
                   11695:         return $env{'course.'.$cid.'.type'};
1.378     raeburn  11696:     } else {
                   11697:         return 'Course';
1.377     raeburn  11698:     }
                   11699: }
1.156     albertel 11700: 
1.406     raeburn  11701: sub group_term {
                   11702:     my $crstype = &course_type();
                   11703:     my %names = (
                   11704:                   'Course' => 'group',
1.865     raeburn  11705:                   'Community' => 'group',
1.406     raeburn  11706:                 );
                   11707:     return $names{$crstype};
                   11708: }
                   11709: 
1.902     raeburn  11710: sub course_types {
                   11711:     my @types = ('official','unofficial','community');
                   11712:     my %typename = (
                   11713:                          official   => 'Official course',
                   11714:                          unofficial => 'Unofficial course',
                   11715:                          community  => 'Community',
                   11716:                    );
                   11717:     return (\@types,\%typename);
                   11718: }
                   11719: 
1.156     albertel 11720: sub icon {
                   11721:     my ($file)=@_;
1.505     albertel 11722:     my $curfext = lc((split(/\./,$file))[-1]);
1.168     albertel 11723:     my $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/unknown.gif';
1.156     albertel 11724:     my $embstyle = &Apache::loncommon::fileembstyle($curfext);
1.168     albertel 11725:     if (!(!defined($embstyle) || $embstyle eq 'unk' || $embstyle eq 'hdn')) {
                   11726: 	if (-e  $Apache::lonnet::perlvar{'lonDocRoot'}.'/'.
                   11727: 	          $Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
                   11728: 	            $curfext.".gif") {
                   11729: 	    $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
                   11730: 		$curfext.".gif";
                   11731: 	}
                   11732:     }
1.249     albertel 11733:     return &lonhttpdurl($iconname);
1.154     albertel 11734: } 
1.84      albertel 11735: 
1.575     albertel 11736: sub lonhttpdurl {
1.692     www      11737: #
                   11738: # Had been used for "small fry" static images on separate port 8080.
                   11739: # Modify here if lightweight http functionality desired again.
                   11740: # Currently eliminated due to increasing firewall issues.
                   11741: #
1.575     albertel 11742:     my ($url)=@_;
1.692     www      11743:     return $url;
1.215     albertel 11744: }
                   11745: 
1.213     albertel 11746: sub connection_aborted {
                   11747:     my ($r)=@_;
                   11748:     $r->print(" ");$r->rflush();
                   11749:     my $c = $r->connection;
                   11750:     return $c->aborted();
                   11751: }
                   11752: 
1.221     foxr     11753: #    Escapes strings that may have embedded 's that will be put into
1.222     foxr     11754: #    strings as 'strings'.
                   11755: sub escape_single {
1.221     foxr     11756:     my ($input) = @_;
1.223     albertel 11757:     $input =~ s/\\/\\\\/g;	# Escape the \'s..(must be first)>
1.221     foxr     11758:     $input =~ s/\'/\\\'/g;	# Esacpe the 's....
                   11759:     return $input;
                   11760: }
1.223     albertel 11761: 
1.222     foxr     11762: #  Same as escape_single, but escape's "'s  This 
                   11763: #  can be used for  "strings"
                   11764: sub escape_double {
                   11765:     my ($input) = @_;
                   11766:     $input =~ s/\\/\\\\/g;	# Escape the /'s..(must be first)>
                   11767:     $input =~ s/\"/\\\"/g;	# Esacpe the "s....
                   11768:     return $input;
                   11769: }
1.223     albertel 11770:  
1.222     foxr     11771: #   Escapes the last element of a full URL.
                   11772: sub escape_url {
                   11773:     my ($url)   = @_;
1.238     raeburn  11774:     my @urlslices = split(/\//, $url,-1);
1.369     www      11775:     my $lastitem = &escape(pop(@urlslices));
1.223     albertel 11776:     return join('/',@urlslices).'/'.$lastitem;
1.222     foxr     11777: }
1.462     albertel 11778: 
1.820     raeburn  11779: sub compare_arrays {
                   11780:     my ($arrayref1,$arrayref2) = @_;
                   11781:     my (@difference,%count);
                   11782:     @difference = ();
                   11783:     %count = ();
                   11784:     if ((ref($arrayref1) eq 'ARRAY') && (ref($arrayref2) eq 'ARRAY')) {
                   11785:         foreach my $element (@{$arrayref1}, @{$arrayref2}) { $count{$element}++; }
                   11786:         foreach my $element (keys(%count)) {
                   11787:             if ($count{$element} == 1) {
                   11788:                 push(@difference,$element);
                   11789:             }
                   11790:         }
                   11791:     }
                   11792:     return @difference;
                   11793: }
                   11794: 
1.817     bisitz   11795: # -------------------------------------------------------- Initialize user login
1.462     albertel 11796: sub init_user_environment {
1.463     albertel 11797:     my ($r, $username, $domain, $authhost, $form, $args) = @_;
1.462     albertel 11798:     my $lonids=$Apache::lonnet::perlvar{'lonIDsDir'};
                   11799: 
                   11800:     my $public=($username eq 'public' && $domain eq 'public');
                   11801: 
                   11802: # See if old ID present, if so, remove
                   11803: 
                   11804:     my ($filename,$cookie,$userroles);
                   11805:     my $now=time;
                   11806: 
                   11807:     if ($public) {
                   11808: 	my $max_public=100;
                   11809: 	my $oldest;
                   11810: 	my $oldest_time=0;
                   11811: 	for(my $next=1;$next<=$max_public;$next++) {
                   11812: 	    if (-e $lonids."/publicuser_$next.id") {
                   11813: 		my $mtime=(stat($lonids."/publicuser_$next.id"))[9];
                   11814: 		if ($mtime<$oldest_time || !$oldest_time) {
                   11815: 		    $oldest_time=$mtime;
                   11816: 		    $oldest=$next;
                   11817: 		}
                   11818: 	    } else {
                   11819: 		$cookie="publicuser_$next";
                   11820: 		last;
                   11821: 	    }
                   11822: 	}
                   11823: 	if (!$cookie) { $cookie="publicuser_$oldest"; }
                   11824:     } else {
1.463     albertel 11825: 	# if this isn't a robot, kill any existing non-robot sessions
                   11826: 	if (!$args->{'robot'}) {
                   11827: 	    opendir(DIR,$lonids);
                   11828: 	    while ($filename=readdir(DIR)) {
                   11829: 		if ($filename=~/^$username\_\d+\_$domain\_$authhost\.id$/) {
                   11830: 		    unlink($lonids.'/'.$filename);
                   11831: 		}
1.462     albertel 11832: 	    }
1.463     albertel 11833: 	    closedir(DIR);
1.462     albertel 11834: 	}
                   11835: # Give them a new cookie
1.463     albertel 11836: 	my $id = ($args->{'robot'} ? 'robot'.$args->{'robot'}
1.684     www      11837: 		                   : $now.$$.int(rand(10000)));
1.463     albertel 11838: 	$cookie="$username\_$id\_$domain\_$authhost";
1.462     albertel 11839:     
                   11840: # Initialize roles
                   11841: 
                   11842: 	$userroles=&Apache::lonnet::rolesinit($domain,$username,$authhost);
                   11843:     }
                   11844: # ------------------------------------ Check browser type and MathML capability
                   11845: 
                   11846:     my ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
                   11847:         $clientunicode,$clientos) = &decode_user_agent($r);
                   11848: 
                   11849: # ------------------------------------------------------------- Get environment
                   11850: 
                   11851:     my %userenv = &Apache::lonnet::dump('environment',$domain,$username);
                   11852:     my ($tmp) = keys(%userenv);
                   11853:     if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
                   11854:     } else {
                   11855: 	undef(%userenv);
                   11856:     }
                   11857:     if (($userenv{'interface'}) && (!$form->{'interface'})) {
                   11858: 	$form->{'interface'}=$userenv{'interface'};
                   11859:     }
                   11860:     if ($userenv{'texengine'} eq 'ttm') { $clientmathml=1; }
                   11861: 
                   11862: # --------------- Do not trust query string to be put directly into environment
1.817     bisitz   11863:     foreach my $option ('interface','localpath','localres') {
                   11864:         $form->{$option}=~s/[\n\r\=]//gs;
1.462     albertel 11865:     }
                   11866: # --------------------------------------------------------- Write first profile
                   11867: 
                   11868:     {
                   11869: 	my %initial_env = 
                   11870: 	    ("user.name"          => $username,
                   11871: 	     "user.domain"        => $domain,
                   11872: 	     "user.home"          => $authhost,
                   11873: 	     "browser.type"       => $clientbrowser,
                   11874: 	     "browser.version"    => $clientversion,
                   11875: 	     "browser.mathml"     => $clientmathml,
                   11876: 	     "browser.unicode"    => $clientunicode,
                   11877: 	     "browser.os"         => $clientos,
                   11878: 	     "server.domain"      => $Apache::lonnet::perlvar{'lonDefDomain'},
                   11879: 	     "request.course.fn"  => '',
                   11880: 	     "request.course.uri" => '',
                   11881: 	     "request.course.sec" => '',
                   11882: 	     "request.role"       => 'cm',
                   11883: 	     "request.role.adv"   => $env{'user.adv'},
                   11884: 	     "request.host"       => $ENV{'REMOTE_ADDR'},);
                   11885: 
                   11886:         if ($form->{'localpath'}) {
                   11887: 	    $initial_env{"browser.localpath"}  = $form->{'localpath'};
                   11888: 	    $initial_env{"browser.localres"}   = $form->{'localres'};
                   11889:         }
                   11890: 	
                   11891: 	if ($form->{'interface'}) {
                   11892: 	    $form->{'interface'}=~s/\W//gs;
                   11893: 	    $initial_env{"browser.interface"} = $form->{'interface'};
                   11894: 	    $env{'browser.interface'}=$form->{'interface'};
                   11895: 	}
                   11896: 
1.981     raeburn  11897:         my %is_adv = ( is_adv => $env{'user.adv'} );
1.1016    raeburn  11898:         my %domdef;
                   11899:         unless ($domain eq 'public') {
                   11900:             %domdef = &Apache::lonnet::get_domain_defaults($domain);
                   11901:         }
1.980     raeburn  11902: 
1.724     raeburn  11903:         foreach my $tool ('aboutme','blog','portfolio') {
                   11904:             $userenv{'availabletools.'.$tool} = 
1.980     raeburn  11905:                 &Apache::lonnet::usertools_access($username,$domain,$tool,'reload',
                   11906:                                                   undef,\%userenv,\%domdef,\%is_adv);
1.724     raeburn  11907:         }
                   11908: 
1.864     raeburn  11909:         foreach my $crstype ('official','unofficial','community') {
1.765     raeburn  11910:             $userenv{'canrequest.'.$crstype} =
                   11911:                 &Apache::lonnet::usertools_access($username,$domain,$crstype,
1.980     raeburn  11912:                                                   'reload','requestcourses',
                   11913:                                                   \%userenv,\%domdef,\%is_adv);
1.765     raeburn  11914:         }
                   11915: 
1.462     albertel 11916: 	$env{'user.environment'} = "$lonids/$cookie.id";
                   11917: 	
                   11918: 	if (tie(my %disk_env,'GDBM_File',"$lonids/$cookie.id",
                   11919: 		 &GDBM_WRCREAT(),0640)) {
                   11920: 	    &_add_to_env(\%disk_env,\%initial_env);
                   11921: 	    &_add_to_env(\%disk_env,\%userenv,'environment.');
                   11922: 	    &_add_to_env(\%disk_env,$userroles);
1.463     albertel 11923: 	    if (ref($args->{'extra_env'})) {
                   11924: 		&_add_to_env(\%disk_env,$args->{'extra_env'});
                   11925: 	    }
1.462     albertel 11926: 	    untie(%disk_env);
                   11927: 	} else {
1.705     tempelho 11928: 	    &Apache::lonnet::logthis("<span style=\"color:blue;\">WARNING: ".
                   11929: 			   'Could not create environment storage in lonauth: '.$!.'</span>');
1.462     albertel 11930: 	    return 'error: '.$!;
                   11931: 	}
                   11932:     }
                   11933:     $env{'request.role'}='cm';
                   11934:     $env{'request.role.adv'}=$env{'user.adv'};
                   11935:     $env{'browser.type'}=$clientbrowser;
                   11936: 
                   11937:     return $cookie;
                   11938: 
                   11939: }
                   11940: 
                   11941: sub _add_to_env {
                   11942:     my ($idf,$env_data,$prefix) = @_;
1.676     raeburn  11943:     if (ref($env_data) eq 'HASH') {
                   11944:         while (my ($key,$value) = each(%$env_data)) {
                   11945: 	    $idf->{$prefix.$key} = $value;
                   11946: 	    $env{$prefix.$key}   = $value;
                   11947:         }
1.462     albertel 11948:     }
                   11949: }
                   11950: 
1.685     tempelho 11951: # --- Get the symbolic name of a problem and the url
                   11952: sub get_symb {
                   11953:     my ($request,$silent) = @_;
1.726     raeburn  11954:     (my $url=$env{'form.url'}) =~ s-^https?\://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
1.685     tempelho 11955:     my $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url)));
                   11956:     if ($symb eq '') {
                   11957:         if (!$silent) {
                   11958:             $request->print("Unable to handle ambiguous references:$url:.");
                   11959:             return ();
                   11960:         }
                   11961:     }
                   11962:     &Apache::lonenc::check_decrypt(\$symb);
                   11963:     return ($symb);
                   11964: }
                   11965: 
                   11966: # --------------------------------------------------------------Get annotation
                   11967: 
                   11968: sub get_annotation {
                   11969:     my ($symb,$enc) = @_;
                   11970: 
                   11971:     my $key = $symb;
                   11972:     if (!$enc) {
                   11973:         $key =
                   11974:             &Apache::lonnet::clutter((&Apache::lonnet::decode_symb($symb))[2]);
                   11975:     }
                   11976:     my %annotation=&Apache::lonnet::get('nohist_annotations',[$key]);
                   11977:     return $annotation{$key};
                   11978: }
                   11979: 
                   11980: sub clean_symb {
1.731     raeburn  11981:     my ($symb,$delete_enc) = @_;
1.685     tempelho 11982: 
                   11983:     &Apache::lonenc::check_decrypt(\$symb);
                   11984:     my $enc = $env{'request.enc'};
1.731     raeburn  11985:     if ($delete_enc) {
1.730     raeburn  11986:         delete($env{'request.enc'});
                   11987:     }
1.685     tempelho 11988: 
                   11989:     return ($symb,$enc);
                   11990: }
1.462     albertel 11991: 
1.990     raeburn  11992: sub build_release_hashes {
                   11993:     my ($checkparms,$checkresponsetypes,$checkcrstypes,$anonsurvey,$randomizetry) = @_;
                   11994:     return unless((ref($checkparms) eq 'HASH') && (ref($checkresponsetypes) eq 'HASH') &&
                   11995:                   (ref($checkcrstypes) eq 'HASH') && (ref($anonsurvey) eq 'HASH') &&
                   11996:                   (ref($randomizetry) eq 'HASH'));
                   11997:     foreach my $key (keys(%Apache::lonnet::needsrelease)) {
                   11998:         my ($item,$name,$value) = split(/:/,$key);
                   11999:         if ($item eq 'parameter') {
                   12000:             if (ref($checkparms->{$name}) eq 'ARRAY') {
                   12001:                 unless(grep(/^\Q$name\E$/,@{$checkparms->{$name}})) {
                   12002:                     push(@{$checkparms->{$name}},$value);
                   12003:                 }
                   12004:             } else {
                   12005:                 push(@{$checkparms->{$name}},$value);
                   12006:             }
                   12007:         } elsif ($item eq 'resourcetag') {
                   12008:             if ($name eq 'responsetype') {
                   12009:                 $checkresponsetypes->{$value} = $Apache::lonnet::needsrelease{$key}
                   12010:             }
                   12011:         } elsif ($item eq 'course') {
                   12012:             if ($name eq 'crstype') {
                   12013:                 $checkcrstypes->{$value} = $Apache::lonnet::needsrelease{$key};
                   12014:             }
                   12015:         }
                   12016:     }
                   12017:     ($anonsurvey->{major},$anonsurvey->{minor}) = split(/\./,$Apache::lonnet::needsrelease{'parameter:type:anonsurvey'});
                   12018:     ($randomizetry->{major},$randomizetry->{minor}) = split(/\./,$Apache::lonnet::needsrelease{'parameter:type:randomizetry'});
                   12019:     return;
                   12020: }
                   12021: 
1.41      ng       12022: =pod
                   12023: 
                   12024: =back
                   12025: 
1.112     bowersj2 12026: =cut
1.41      ng       12027: 
1.112     bowersj2 12028: 1;
                   12029: __END__;
1.41      ng       12030: 

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