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

1.10      albertel    1: # The LearningOnline Network with CAPA
1.1       albertel    2: # a pile of common routines
1.10      albertel    3: #
1.966   ! bisitz      4: # $Id: loncommon.pm,v 1.965 2010/04/19 09:22:13 bisitz Exp $
1.10      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.1       albertel   28: 
                     29: # Makes a table out of the previous attempts
1.2       albertel   30: # Inputs result_from_symbread, user, domain, course_id
1.16      harris41   31: # Reads in non-network-related .tab files
1.1       albertel   32: 
1.35      matthew    33: # POD header:
                     34: 
1.45      matthew    35: =pod
                     36: 
1.35      matthew    37: =head1 NAME
                     38: 
                     39: Apache::loncommon - pile of common routines
                     40: 
                     41: =head1 SYNOPSIS
                     42: 
1.112     bowersj2   43: Common routines for manipulating connections, student answers,
                     44:     domains, common Javascript fragments, etc.
1.35      matthew    45: 
1.112     bowersj2   46: =head1 OVERVIEW
1.35      matthew    47: 
1.112     bowersj2   48: A collection of commonly used subroutines that don't have a natural
                     49: home anywhere else. This collection helps remove
1.35      matthew    50: redundancy from other modules and increase efficiency of memory usage.
                     51: 
                     52: =cut 
                     53: 
                     54: # End of POD header
1.1       albertel   55: package Apache::loncommon;
                     56: 
                     57: use strict;
1.258     albertel   58: use Apache::lonnet;
1.46      matthew    59: use GDBM_File;
1.51      www        60: use POSIX qw(strftime mktime);
1.82      www        61: use Apache::lonmenu();
1.498     albertel   62: use Apache::lonenc();
1.117     www        63: use Apache::lonlocal;
1.685     tempelho   64: use Apache::lonnet();
1.139     matthew    65: use HTML::Entities;
1.334     albertel   66: use Apache::lonhtmlcommon();
                     67: use Apache::loncoursedata();
1.344     albertel   68: use Apache::lontexconvert();
1.444     albertel   69: use Apache::lonclonecourse();
1.479     albertel   70: use LONCAPA qw(:DEFAULT :match);
1.657     raeburn    71: use DateTime::TimeZone;
1.687     raeburn    72: use DateTime::Locale::Catalog;
1.117     www        73: 
1.517     raeburn    74: # ---------------------------------------------- Designs
                     75: use vars qw(%defaultdesign);
                     76: 
1.22      www        77: my $readit;
                     78: 
1.517     raeburn    79: 
1.157     matthew    80: ##
                     81: ## Global Variables
                     82: ##
1.46      matthew    83: 
1.643     foxr       84: 
                     85: # ----------------------------------------------- SSI with retries:
                     86: #
                     87: 
                     88: =pod
                     89: 
1.648     raeburn    90: =head1 Server Side include with retries:
1.643     foxr       91: 
                     92: =over 4
                     93: 
1.648     raeburn    94: =item * &ssi_with_retries(resource,retries form)
1.643     foxr       95: 
                     96: Performs an ssi with some number of retries.  Retries continue either
                     97: until the result is ok or until the retry count supplied by the
                     98: caller is exhausted.  
                     99: 
                    100: Inputs:
1.648     raeburn   101: 
                    102: =over 4
                    103: 
1.643     foxr      104: resource   - Identifies the resource to insert.
1.648     raeburn   105: 
1.643     foxr      106: retries    - Count of the number of retries allowed.
1.648     raeburn   107: 
1.643     foxr      108: form       - Hash that identifies the rendering options.
                    109: 
1.648     raeburn   110: =back
                    111: 
                    112: Returns:
                    113: 
                    114: =over 4
                    115: 
1.643     foxr      116: content    - The content of the response.  If retries were exhausted this is empty.
1.648     raeburn   117: 
1.643     foxr      118: response   - The response from the last attempt (which may or may not have been successful.
                    119: 
1.648     raeburn   120: =back
                    121: 
                    122: =back
                    123: 
1.643     foxr      124: =cut
                    125: 
                    126: sub ssi_with_retries {
                    127:     my ($resource, $retries, %form) = @_;
                    128: 
                    129: 
                    130:     my $ok = 0;			# True if we got a good response.
                    131:     my $content;
                    132:     my $response;
                    133: 
                    134:     # Try to get the ssi done. within the retries count:
                    135: 
                    136:     do {
                    137: 	($content, $response) = &Apache::lonnet::ssi($resource, %form);
                    138: 	$ok      = $response->is_success;
1.650     www       139:         if (!$ok) {
                    140:             &Apache::lonnet::logthis("Failed ssi_with_retries on $resource: ".$response->is_success.', '.$response->code.', '.$response->message);
                    141:         }
1.643     foxr      142: 	$retries--;
                    143:     } while (!$ok && ($retries > 0));
                    144: 
                    145:     if (!$ok) {
                    146: 	$content = '';		# On error return an empty content.
                    147:     }
                    148:     return ($content, $response);
                    149: 
                    150: }
                    151: 
                    152: 
                    153: 
1.20      www       154: # ----------------------------------------------- Filetypes/Languages/Copyright
1.12      harris41  155: my %language;
1.124     www       156: my %supported_language;
1.12      harris41  157: my %cprtag;
1.192     taceyjo1  158: my %scprtag;
1.351     www       159: my %fe; my %fd; my %fm;
1.41      ng        160: my %category_extensions;
1.12      harris41  161: 
1.46      matthew   162: # ---------------------------------------------- Thesaurus variables
1.144     matthew   163: #
                    164: # %Keywords:
                    165: #      A hash used by &keyword to determine if a word is considered a keyword.
                    166: # $thesaurus_db_file 
                    167: #      Scalar containing the full path to the thesaurus database.
1.46      matthew   168: 
                    169: my %Keywords;
                    170: my $thesaurus_db_file;
                    171: 
1.144     matthew   172: #
                    173: # Initialize values from language.tab, copyright.tab, filetypes.tab,
                    174: # thesaurus.tab, and filecategories.tab.
                    175: #
1.18      www       176: BEGIN {
1.46      matthew   177:     # Variable initialization
                    178:     $thesaurus_db_file = $Apache::lonnet::perlvar{'lonTabDir'}."/thesaurus.db";
                    179:     #
1.22      www       180:     unless ($readit) {
1.12      harris41  181: # ------------------------------------------------------------------- languages
                    182:     {
1.158     raeburn   183:         my $langtabfile = $Apache::lonnet::perlvar{'lonTabDir'}.
                    184:                                    '/language.tab';
                    185:         if ( open(my $fh,"<$langtabfile") ) {
1.356     albertel  186:             while (my $line = <$fh>) {
                    187:                 next if ($line=~/^\#/);
                    188:                 chomp($line);
                    189:                 my ($key,$two,$country,$three,$enc,$val,$sup)=(split(/\t/,$line));
1.158     raeburn   190:                 $language{$key}=$val.' - '.$enc;
                    191:                 if ($sup) {
                    192:                     $supported_language{$key}=$sup;
                    193:                 }
                    194:             }
                    195:             close($fh);
                    196:         }
1.12      harris41  197:     }
                    198: # ------------------------------------------------------------------ copyrights
                    199:     {
1.158     raeburn   200:         my $copyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
                    201:                                   '/copyright.tab';
                    202:         if ( open (my $fh,"<$copyrightfile") ) {
1.356     albertel  203:             while (my $line = <$fh>) {
                    204:                 next if ($line=~/^\#/);
                    205:                 chomp($line);
                    206:                 my ($key,$val)=(split(/\s+/,$line,2));
1.158     raeburn   207:                 $cprtag{$key}=$val;
                    208:             }
                    209:             close($fh);
                    210:         }
1.12      harris41  211:     }
1.351     www       212: # ----------------------------------------------------------- source copyrights
1.192     taceyjo1  213:     {
                    214:         my $sourcecopyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
                    215:                                   '/source_copyright.tab';
                    216:         if ( open (my $fh,"<$sourcecopyrightfile") ) {
1.356     albertel  217:             while (my $line = <$fh>) {
                    218:                 next if ($line =~ /^\#/);
                    219:                 chomp($line);
                    220:                 my ($key,$val)=(split(/\s+/,$line,2));
1.192     taceyjo1  221:                 $scprtag{$key}=$val;
                    222:             }
                    223:             close($fh);
                    224:         }
                    225:     }
1.63      www       226: 
1.517     raeburn   227: # -------------------------------------------------------------- default domain designs
1.63      www       228:     my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
1.517     raeburn   229:     my $designfile = $designdir.'/default.tab';
                    230:     if ( open (my $fh,"<$designfile") ) {
                    231:         while (my $line = <$fh>) {
                    232:             next if ($line =~ /^\#/);
                    233:             chomp($line);
                    234:             my ($key,$val)=(split(/\=/,$line));
                    235:             if ($val) { $defaultdesign{$key}=$val; }
                    236:         }
                    237:         close($fh);
1.63      www       238:     }
                    239: 
1.15      harris41  240: # ------------------------------------------------------------- file categories
                    241:     {
1.158     raeburn   242:         my $categoryfile = $Apache::lonnet::perlvar{'lonTabDir'}.
                    243:                                   '/filecategories.tab';
                    244:         if ( open (my $fh,"<$categoryfile") ) {
1.356     albertel  245: 	    while (my $line = <$fh>) {
                    246: 		next if ($line =~ /^\#/);
                    247: 		chomp($line);
                    248:                 my ($extension,$category)=(split(/\s+/,$line,2));
1.158     raeburn   249:                 push @{$category_extensions{lc($category)}},$extension;
                    250:             }
                    251:             close($fh);
                    252:         }
                    253: 
1.15      harris41  254:     }
1.12      harris41  255: # ------------------------------------------------------------------ file types
                    256:     {
1.158     raeburn   257:         my $typesfile = $Apache::lonnet::perlvar{'lonTabDir'}.
                    258:                '/filetypes.tab';
                    259:         if ( open (my $fh,"<$typesfile") ) {
1.356     albertel  260:             while (my $line = <$fh>) {
                    261: 		next if ($line =~ /^\#/);
                    262: 		chomp($line);
                    263:                 my ($ending,$emb,$mime,$descr)=split(/\s+/,$line,4);
1.158     raeburn   264:                 if ($descr ne '') {
                    265:                     $fe{$ending}=lc($emb);
                    266:                     $fd{$ending}=$descr;
1.351     www       267:                     if ($mime ne 'unk') { $fm{$ending}=$mime; }
1.158     raeburn   268:                 }
                    269:             }
                    270:             close($fh);
                    271:         }
1.12      harris41  272:     }
1.22      www       273:     &Apache::lonnet::logthis(
1.705     tempelho  274:              "<span style='color:yellow;'>INFO: Read file types</span>");
1.22      www       275:     $readit=1;
1.46      matthew   276:     }  # end of unless($readit) 
1.32      matthew   277:     
                    278: }
1.112     bowersj2  279: 
1.42      matthew   280: ###############################################################
                    281: ##           HTML and Javascript Helper Functions            ##
                    282: ###############################################################
                    283: 
                    284: =pod 
                    285: 
1.112     bowersj2  286: =head1 HTML and Javascript Functions
1.42      matthew   287: 
1.112     bowersj2  288: =over 4
                    289: 
1.648     raeburn   290: =item * &browser_and_searcher_javascript()
1.112     bowersj2  291: 
                    292: X<browsing, javascript>X<searching, javascript>Returns a string
                    293: containing javascript with two functions, C<openbrowser> and
                    294: C<opensearcher>. Returned string does not contain E<lt>scriptE<gt>
                    295: tags.
1.42      matthew   296: 
1.648     raeburn   297: =item * &openbrowser(formname,elementname,only,omit) [javascript]
1.42      matthew   298: 
                    299: inputs: formname, elementname, only, omit
                    300: 
                    301: formname and elementname indicate the name of the html form and name of
                    302: the element that the results of the browsing selection are to be placed in. 
                    303: 
                    304: Specifying 'only' will restrict the browser to displaying only files
1.185     www       305: with the given extension.  Can be a comma separated list.
1.42      matthew   306: 
                    307: Specifying 'omit' will restrict the browser to NOT displaying files
1.185     www       308: with the given extension.  Can be a comma separated list.
1.42      matthew   309: 
1.648     raeburn   310: =item * &opensearcher(formname,elementname) [javascript]
1.42      matthew   311: 
                    312: Inputs: formname, elementname
                    313: 
                    314: formname and elementname specify the name of the html form and the name
                    315: of the element the selection from the search results will be placed in.
1.542     raeburn   316: 
1.42      matthew   317: =cut
                    318: 
                    319: sub browser_and_searcher_javascript {
1.199     albertel  320:     my ($mode)=@_;
                    321:     if (!defined($mode)) { $mode='edit'; }
1.453     albertel  322:     my $resurl=&escape_single(&lastresurl());
1.42      matthew   323:     return <<END;
1.219     albertel  324: // <!-- BEGIN LON-CAPA Internal
1.50      matthew   325:     var editbrowser = null;
1.135     albertel  326:     function openbrowser(formname,elementname,only,omit,titleelement) {
1.170     www       327:         var url = '$resurl/?';
1.42      matthew   328:         if (editbrowser == null) {
                    329:             url += 'launch=1&';
                    330:         }
                    331:         url += 'catalogmode=interactive&';
1.199     albertel  332:         url += 'mode=$mode&';
1.611     albertel  333:         url += 'inhibitmenu=yes&';
1.42      matthew   334:         url += 'form=' + formname + '&';
                    335:         if (only != null) {
                    336:             url += 'only=' + only + '&';
1.217     albertel  337:         } else {
                    338:             url += 'only=&';
                    339: 	}
1.42      matthew   340:         if (omit != null) {
                    341:             url += 'omit=' + omit + '&';
1.217     albertel  342:         } else {
                    343:             url += 'omit=&';
                    344: 	}
1.135     albertel  345:         if (titleelement != null) {
                    346:             url += 'titleelement=' + titleelement + '&';
1.217     albertel  347:         } else {
                    348: 	    url += 'titleelement=&';
                    349: 	}
1.42      matthew   350:         url += 'element=' + elementname + '';
                    351:         var title = 'Browser';
1.435     albertel  352:         var options = 'scrollbars=1,resizable=1,menubar=0,toolbar=1,location=1';
1.42      matthew   353:         options += ',width=700,height=600';
                    354:         editbrowser = open(url,title,options,'1');
                    355:         editbrowser.focus();
                    356:     }
                    357:     var editsearcher;
1.135     albertel  358:     function opensearcher(formname,elementname,titleelement) {
1.42      matthew   359:         var url = '/adm/searchcat?';
                    360:         if (editsearcher == null) {
                    361:             url += 'launch=1&';
                    362:         }
                    363:         url += 'catalogmode=interactive&';
1.199     albertel  364:         url += 'mode=$mode&';
1.42      matthew   365:         url += 'form=' + formname + '&';
1.135     albertel  366:         if (titleelement != null) {
                    367:             url += 'titleelement=' + titleelement + '&';
1.217     albertel  368:         } else {
                    369: 	    url += 'titleelement=&';
                    370: 	}
1.42      matthew   371:         url += 'element=' + elementname + '';
                    372:         var title = 'Search';
1.435     albertel  373:         var options = 'scrollbars=1,resizable=1,menubar=0,toolbar=1,location=1';
1.42      matthew   374:         options += ',width=700,height=600';
                    375:         editsearcher = open(url,title,options,'1');
                    376:         editsearcher.focus();
                    377:     }
1.219     albertel  378: // END LON-CAPA Internal -->
1.42      matthew   379: END
1.170     www       380: }
                    381: 
                    382: sub lastresurl {
1.258     albertel  383:     if ($env{'environment.lastresurl'}) {
                    384: 	return $env{'environment.lastresurl'}
1.170     www       385:     } else {
                    386: 	return '/res';
                    387:     }
                    388: }
                    389: 
                    390: sub storeresurl {
                    391:     my $resurl=&Apache::lonnet::clutter(shift);
                    392:     unless ($resurl=~/^\/res/) { return 0; }
                    393:     $resurl=~s/\/$//;
                    394:     &Apache::lonnet::put('environment',{'lastresurl' => $resurl});
1.646     raeburn   395:     &Apache::lonnet::appenv({'environment.lastresurl' => $resurl});
1.170     www       396:     return 1;
1.42      matthew   397: }
                    398: 
1.74      www       399: sub studentbrowser_javascript {
1.111     www       400:    unless (
1.258     albertel  401:             (($env{'request.course.id'}) && 
1.302     albertel  402:              (&Apache::lonnet::allowed('srm',$env{'request.course.id'})
                    403: 	      || &Apache::lonnet::allowed('srm',$env{'request.course.id'}.
                    404: 					  '/'.$env{'request.course.sec'})
                    405: 	      ))
1.258     albertel  406:          || ($env{'request.role'}=~/^(au|dc|su)/)
1.111     www       407:           ) { return ''; }  
1.74      www       408:    return (<<'ENDSTDBRW');
1.776     bisitz    409: <script type="text/javascript" language="Javascript">
1.824     bisitz    410: // <![CDATA[
1.74      www       411:     var stdeditbrowser;
1.793     raeburn   412:     function openstdbrowser(formname,uname,udom,roleflag,ignorefilter,courseadvonly) {
1.74      www       413:         var url = '/adm/pickstudent?';
                    414:         var filter;
1.558     albertel  415: 	if (!ignorefilter) {
                    416: 	    eval('filter=document.'+formname+'.'+uname+'.value;');
                    417: 	}
1.74      www       418:         if (filter != null) {
                    419:            if (filter != '') {
                    420:                url += 'filter='+filter+'&';
                    421: 	   }
                    422:         }
                    423:         url += 'form=' + formname + '&unameelement='+uname+
                    424:                                     '&udomelement='+udom;
1.111     www       425: 	if (roleflag) { url+="&roles=1"; }
1.793     raeburn   426:         if (courseadvonly) { url+="&courseadvonly=1"; }
1.102     www       427:         var title = 'Student_Browser';
1.74      www       428:         var options = 'scrollbars=1,resizable=1,menubar=0';
                    429:         options += ',width=700,height=600';
                    430:         stdeditbrowser = open(url,title,options,'1');
                    431:         stdeditbrowser.focus();
                    432:     }
1.824     bisitz    433: // ]]>
1.74      www       434: </script>
                    435: ENDSTDBRW
                    436: }
1.42      matthew   437: 
1.74      www       438: sub selectstudent_link {
1.793     raeburn   439:    my ($form,$unameele,$udomele,$courseadvonly)=@_;
                    440:    my $callargs = "'".$form."','".$unameele."','".$udomele."'";
1.258     albertel  441:    if ($env{'request.course.id'}) {  
1.302     albertel  442:        if (!&Apache::lonnet::allowed('srm',$env{'request.course.id'})
                    443: 	   && !&Apache::lonnet::allowed('srm',$env{'request.course.id'}.
                    444: 					'/'.$env{'request.course.sec'})) {
1.111     www       445: 	   return '';
                    446:        }
1.793     raeburn   447:        if ($courseadvonly)  {
                    448:            $callargs .= ",'',1,1";
                    449:        }
                    450:        return '<span class="LC_nobreak">'.
                    451:               '<a href="javascript:openstdbrowser('.$callargs.');">'.
                    452:               &mt('Select User').'</a></span>';
1.74      www       453:    }
1.258     albertel  454:    if ($env{'request.role'}=~/^(au|dc|su)/) {
1.793     raeburn   455:        $callargs .= ",1"; 
                    456:        return '<span class="LC_nobreak">'.
                    457:               '<a href="javascript:openstdbrowser('.$callargs.');">'.
                    458:               &mt('Select User').'</a></span>';
1.111     www       459:    }
                    460:    return '';
1.91      www       461: }
                    462: 
1.653     raeburn   463: sub authorbrowser_javascript {
                    464:     return <<"ENDAUTHORBRW";
1.776     bisitz    465: <script type="text/javascript" language="JavaScript">
1.824     bisitz    466: // <![CDATA[
1.653     raeburn   467: var stdeditbrowser;
                    468: 
                    469: function openauthorbrowser(formname,udom) {
                    470:     var url = '/adm/pickauthor?';
                    471:     url += 'form='+formname+'&roledom='+udom;
                    472:     var title = 'Author_Browser';
                    473:     var options = 'scrollbars=1,resizable=1,menubar=0';
                    474:     options += ',width=700,height=600';
                    475:     stdeditbrowser = open(url,title,options,'1');
                    476:     stdeditbrowser.focus();
                    477: }
                    478: 
1.824     bisitz    479: // ]]>
1.653     raeburn   480: </script>
                    481: ENDAUTHORBRW
                    482: }
                    483: 
1.91      www       484: sub coursebrowser_javascript {
1.909     raeburn   485:     my ($domainfilter,$sec_element,$formname,$role_element,$crstype) = @_;
1.932     raeburn   486:     my $wintitle = 'Course_Browser';
1.931     raeburn   487:     if ($crstype eq 'Community') {
1.932     raeburn   488:         $wintitle = 'Community_Browser';
1.909     raeburn   489:     }
1.876     raeburn   490:     my $id_functions = &javascript_index_functions();
                    491:     my $output = '
1.776     bisitz    492: <script type="text/javascript" language="JavaScript">
1.824     bisitz    493: // <![CDATA[
1.468     raeburn   494:     var stdeditbrowser;'."\n";
1.876     raeburn   495: 
                    496:     $output .= <<"ENDSTDBRW";
1.909     raeburn   497:     function opencrsbrowser(formname,uname,udom,desc,extra_element,multflag,type,type_elem) {
1.91      www       498:         var url = '/adm/pickcourse?';
1.895     raeburn   499:         var formid = getFormIdByName(formname);
1.876     raeburn   500:         var domainfilter = getDomainFromSelectbox(formname,udom);
1.128     albertel  501:         if (domainfilter != null) {
                    502:            if (domainfilter != '') {
                    503:                url += 'domainfilter='+domainfilter+'&';
                    504: 	   }
                    505:         }
1.91      www       506:         url += 'form=' + formname + '&cnumelement='+uname+
1.187     albertel  507: 	                            '&cdomelement='+udom+
                    508:                                     '&cnameelement='+desc;
1.468     raeburn   509:         if (extra_element !=null && extra_element != '') {
1.594     raeburn   510:             if (formname == 'rolechoice' || formname == 'studentform') {
1.468     raeburn   511:                 url += '&roleelement='+extra_element;
                    512:                 if (domainfilter == null || domainfilter == '') {
                    513:                     url += '&domainfilter='+extra_element;
                    514:                 }
1.234     raeburn   515:             }
1.468     raeburn   516:             else {
                    517:                 if (formname == 'portform') {
                    518:                     url += '&setroles='+extra_element;
1.800     raeburn   519:                 } else {
                    520:                     if (formname == 'rules') {
                    521:                         url += '&fixeddom='+extra_element; 
                    522:                     }
1.468     raeburn   523:                 }
                    524:             }     
1.230     raeburn   525:         }
1.909     raeburn   526:         if (type != null && type != '') {
                    527:             url += '&type='+type;
                    528:         }
                    529:         if (type_elem != null && type_elem != '') {
                    530:             url += '&typeelement='+type_elem;
                    531:         }
1.872     raeburn   532:         if (formname == 'ccrs') {
                    533:             var ownername = document.forms[formid].ccuname.value;
                    534:             var ownerdom =  document.forms[formid].ccdomain.options[document.forms[formid].ccdomain.selectedIndex].value;
                    535:             url += '&cloner='+ownername+':'+ownerdom;
                    536:         }
1.293     raeburn   537:         if (multflag !=null && multflag != '') {
                    538:             url += '&multiple='+multflag;
                    539:         }
1.909     raeburn   540:         var title = '$wintitle';
1.91      www       541:         var options = 'scrollbars=1,resizable=1,menubar=0';
                    542:         options += ',width=700,height=600';
                    543:         stdeditbrowser = open(url,title,options,'1');
                    544:         stdeditbrowser.focus();
                    545:     }
1.876     raeburn   546: $id_functions
                    547: ENDSTDBRW
1.905     raeburn   548:     if (($sec_element ne '') || ($role_element ne '')) {
                    549:         $output .= &setsec_javascript($sec_element,$formname,$role_element);
1.876     raeburn   550:     }
                    551:     $output .= '
                    552: // ]]>
                    553: </script>';
                    554:     return $output;
                    555: }
                    556: 
                    557: sub javascript_index_functions {
                    558:     return <<"ENDJS";
                    559: 
                    560: function getFormIdByName(formname) {
                    561:     for (var i=0;i<document.forms.length;i++) {
                    562:         if (document.forms[i].name == formname) {
                    563:             return i;
                    564:         }
                    565:     }
                    566:     return -1;
                    567: }
                    568: 
                    569: function getIndexByName(formid,item) {
                    570:     for (var i=0;i<document.forms[formid].elements.length;i++) {
                    571:         if (document.forms[formid].elements[i].name == item) {
                    572:             return i;
                    573:         }
                    574:     }
                    575:     return -1;
                    576: }
1.468     raeburn   577: 
1.876     raeburn   578: function getDomainFromSelectbox(formname,udom) {
                    579:     var userdom;
                    580:     var formid = getFormIdByName(formname);
                    581:     if (formid > -1) {
                    582:         var domid = getIndexByName(formid,udom);
                    583:         if (domid > -1) {
                    584:             if (document.forms[formid].elements[domid].type == 'select-one') {
                    585:                 userdom=document.forms[formid].elements[domid].options[document.forms[formid].elements[domid].selectedIndex].value;
                    586:             }
                    587:             if (document.forms[formid].elements[domid].type == 'hidden') {
                    588:                 userdom=document.forms[formid].elements[domid].value;
1.468     raeburn   589:             }
                    590:         }
                    591:     }
1.876     raeburn   592:     return userdom;
                    593: }
                    594: 
                    595: ENDJS
1.468     raeburn   596: 
1.876     raeburn   597: }
                    598: 
                    599: sub userbrowser_javascript {
                    600:     my $id_functions = &javascript_index_functions();
                    601:     return <<"ENDUSERBRW";
                    602: 
1.888     raeburn   603: function openuserbrowser(formname,uname,udom,ulast,ufirst,uemail,hideudom,crsdom,caller) {
1.876     raeburn   604:     var url = '/adm/pickuser?';
                    605:     var userdom = getDomainFromSelectbox(formname,udom);
                    606:     if (userdom != null) {
                    607:        if (userdom != '') {
                    608:            url += 'srchdom='+userdom+'&';
                    609:        }
                    610:     }
                    611:     url += 'form=' + formname + '&unameelement='+uname+
                    612:                                 '&udomelement='+udom+
                    613:                                 '&ulastelement='+ulast+
                    614:                                 '&ufirstelement='+ufirst+
                    615:                                 '&uemailelement='+uemail+
1.881     raeburn   616:                                 '&hideudomelement='+hideudom+
                    617:                                 '&coursedom='+crsdom;
1.888     raeburn   618:     if ((caller != null) && (caller != undefined)) {
                    619:         url += '&caller='+caller;
                    620:     }
1.876     raeburn   621:     var title = 'User_Browser';
                    622:     var options = 'scrollbars=1,resizable=1,menubar=0';
                    623:     options += ',width=700,height=600';
                    624:     var stdeditbrowser = open(url,title,options,'1');
                    625:     stdeditbrowser.focus();
                    626: }
                    627: 
1.888     raeburn   628: function fix_domain (formname,udom,origdom,uname) {
1.876     raeburn   629:     var formid = getFormIdByName(formname);
                    630:     if (formid > -1) {
1.888     raeburn   631:         var unameid = getIndexByName(formid,uname);
1.876     raeburn   632:         var domid = getIndexByName(formid,udom);
                    633:         var hidedomid = getIndexByName(formid,origdom);
                    634:         if (hidedomid > -1) {
                    635:             var fixeddom = document.forms[formid].elements[hidedomid].value;
1.888     raeburn   636:             var unameval = document.forms[formid].elements[unameid].value;
                    637:             if ((fixeddom != '') && (fixeddom != undefined) && (fixeddom != null) && (unameval != '') && (unameval != undefined) && (unameval != null)) {
                    638:                 if (domid > -1) {
                    639:                     var slct = document.forms[formid].elements[domid];
                    640:                     if (slct.type == 'select-one') {
                    641:                         var i;
                    642:                         for (i=0;i<slct.length;i++) {
                    643:                             if (slct.options[i].value==fixeddom) { slct.selectedIndex=i; }
                    644:                         }
                    645:                     }
                    646:                     if (slct.type == 'hidden') {
                    647:                         slct.value = fixeddom;
1.876     raeburn   648:                     }
                    649:                 }
1.468     raeburn   650:             }
                    651:         }
                    652:     }
1.876     raeburn   653:     return;
                    654: }
                    655: 
                    656: $id_functions
                    657: ENDUSERBRW
1.468     raeburn   658: }
                    659: 
                    660: sub setsec_javascript {
1.905     raeburn   661:     my ($sec_element,$formname,$role_element) = @_;
                    662:     my (@courserolenames,@communityrolenames,$rolestr,$courserolestr,
                    663:         $communityrolestr);
                    664:     if ($role_element ne '') {
                    665:         my @allroles = ('st','ta','ep','in','ad');
                    666:         foreach my $crstype ('Course','Community') {
                    667:             if ($crstype eq 'Community') {
                    668:                 foreach my $role (@allroles) {
                    669:                     push(@communityrolenames,&Apache::lonnet::plaintext($role,$crstype));
                    670:                 }
                    671:                 push(@communityrolenames,&Apache::lonnet::plaintext('co'));
                    672:             } else {
                    673:                 foreach my $role (@allroles) {
                    674:                     push(@courserolenames,&Apache::lonnet::plaintext($role,$crstype));
                    675:                 }
                    676:                 push(@courserolenames,&Apache::lonnet::plaintext('cc'));
                    677:             }
                    678:         }
                    679:         $rolestr = '"'.join('","',@allroles).'"';
                    680:         $courserolestr = '"'.join('","',@courserolenames).'"';
                    681:         $communityrolestr = '"'.join('","',@communityrolenames).'"';
                    682:     }
1.468     raeburn   683:     my $setsections = qq|
                    684: function setSect(sectionlist) {
1.629     raeburn   685:     var sectionsArray = new Array();
                    686:     if ((sectionlist != '') && (typeof sectionlist != "undefined")) {
                    687:         sectionsArray = sectionlist.split(",");
                    688:     }
1.468     raeburn   689:     var numSections = sectionsArray.length;
                    690:     document.$formname.$sec_element.length = 0;
                    691:     if (numSections == 0) {
                    692:         document.$formname.$sec_element.multiple=false;
                    693:         document.$formname.$sec_element.size=1;
                    694:         document.$formname.$sec_element.options[0] = new Option('No existing sections','',false,false)
                    695:     } else {
                    696:         if (numSections == 1) {
                    697:             document.$formname.$sec_element.multiple=false;
                    698:             document.$formname.$sec_element.size=1;
                    699:             document.$formname.$sec_element.options[0] = new Option('Select','',true,true);
                    700:             document.$formname.$sec_element.options[1] = new Option('No section','',false,false)
                    701:             document.$formname.$sec_element.options[2] = new Option(sectionsArray[0],sectionsArray[0],false,false);
                    702:         } else {
                    703:             for (var i=0; i<numSections; i++) {
                    704:                 document.$formname.$sec_element.options[i] = new Option(sectionsArray[i],sectionsArray[i],false,false)
                    705:             }
                    706:             document.$formname.$sec_element.multiple=true
                    707:             if (numSections < 3) {
                    708:                 document.$formname.$sec_element.size=numSections;
                    709:             } else {
                    710:                 document.$formname.$sec_element.size=3;
                    711:             }
                    712:             document.$formname.$sec_element.options[0].selected = false
                    713:         }
                    714:     }
1.91      www       715: }
1.905     raeburn   716: 
                    717: function setRole(crstype) {
1.468     raeburn   718: |;
1.905     raeburn   719:     if ($role_element eq '') {
                    720:         $setsections .= '    return;
                    721: }
                    722: ';
                    723:     } else {
                    724:         $setsections .= qq|
                    725:     var elementLength = document.$formname.$role_element.length;
                    726:     var allroles = Array($rolestr);
                    727:     var courserolenames = Array($courserolestr);
                    728:     var communityrolenames = Array($communityrolestr);
                    729:     if (elementLength != undefined) {
                    730:         if (document.$formname.$role_element.options[5].value == 'cc') {
                    731:             if (crstype == 'Course') {
                    732:                 return;
                    733:             } else {
                    734:                 allroles[5] = 'co';
                    735:                 for (var i=0; i<6; i++) {
                    736:                     document.$formname.$role_element.options[i].value = allroles[i];
                    737:                     document.$formname.$role_element.options[i].text = communityrolenames[i];
                    738:                 }
                    739:             }
                    740:         } else {
                    741:             if (crstype == 'Community') {
                    742:                 return;
                    743:             } else {
                    744:                 allroles[5] = 'cc';
                    745:                 for (var i=0; i<6; i++) {
                    746:                     document.$formname.$role_element.options[i].value = allroles[i];
                    747:                     document.$formname.$role_element.options[i].text = courserolenames[i];
                    748:                 }
                    749:             }
                    750:         }
                    751:     }
                    752:     return;
                    753: }
                    754: |;
                    755:     }
1.468     raeburn   756:     return $setsections;
                    757: }
                    758: 
1.91      www       759: sub selectcourse_link {
1.909     raeburn   760:    my ($form,$unameele,$udomele,$desc,$extra_element,$multflag,$selecttype,
                    761:        $typeelement) = @_;
                    762:    my $type = $selecttype;
1.871     raeburn   763:    my $linktext = &mt('Select Course');
                    764:    if ($selecttype eq 'Community') {
1.909     raeburn   765:        $linktext = &mt('Select Community');
1.906     raeburn   766:    } elsif ($selecttype eq 'Course/Community') {
                    767:        $linktext = &mt('Select Course/Community');
1.909     raeburn   768:        $type = '';
1.871     raeburn   769:    }
1.787     bisitz    770:    return '<span class="LC_nobreak">'
                    771:          ."<a href='"
                    772:          .'javascript:opencrsbrowser("'.$form.'","'.$unameele
                    773:          .'","'.$udomele.'","'.$desc.'","'.$extra_element
1.909     raeburn   774:          .'","'.$multflag.'","'.$type.'","'.$typeelement.'");'
1.871     raeburn   775:          ."'>".$linktext.'</a>'
1.787     bisitz    776:          .'</span>';
1.74      www       777: }
1.42      matthew   778: 
1.653     raeburn   779: sub selectauthor_link {
                    780:    my ($form,$udom)=@_;
                    781:    return '<a href="javascript:openauthorbrowser('."'$form','$udom'".');">'.
                    782:           &mt('Select Author').'</a>';
                    783: }
                    784: 
1.876     raeburn   785: sub selectuser_link {
1.881     raeburn   786:     my ($form,$unameelem,$domelem,$lastelem,$firstelem,$emailelem,$hdomelem,
1.888     raeburn   787:         $coursedom,$linktext,$caller) = @_;
1.876     raeburn   788:     return '<a href="javascript:openuserbrowser('."'$form','$unameelem','$domelem',".
1.888     raeburn   789:            "'$lastelem','$firstelem','$emailelem','$hdomelem','$coursedom','$caller'".
1.881     raeburn   790:            ');">'.$linktext.'</a>';
1.876     raeburn   791: }
                    792: 
1.273     raeburn   793: sub check_uncheck_jscript {
                    794:     my $jscript = <<"ENDSCRT";
                    795: function checkAll(field) {
                    796:     if (field.length > 0) {
                    797:         for (i = 0; i < field.length; i++) {
                    798:             field[i].checked = true ;
                    799:         }
                    800:     } else {
                    801:         field.checked = true
                    802:     }
                    803: }
                    804:  
                    805: function uncheckAll(field) {
                    806:     if (field.length > 0) {
                    807:         for (i = 0; i < field.length; i++) {
                    808:             field[i].checked = false ;
1.543     albertel  809:         }
                    810:     } else {
1.273     raeburn   811:         field.checked = false ;
                    812:     }
                    813: }
                    814: ENDSCRT
                    815:     return $jscript;
                    816: }
                    817: 
1.656     www       818: sub select_timezone {
1.659     raeburn   819:    my ($name,$selected,$onchange,$includeempty)=@_;
                    820:    my $output='<select name="'.$name.'" '.$onchange.'>'."\n";
                    821:    if ($includeempty) {
                    822:        $output .= '<option value=""';
                    823:        if (($selected eq '') || ($selected eq 'local')) {
                    824:            $output .= ' selected="selected" ';
                    825:        }
                    826:        $output .= '> </option>';
                    827:    }
1.657     raeburn   828:    my @timezones = DateTime::TimeZone->all_names;
                    829:    foreach my $tzone (@timezones) {
                    830:        $output.= '<option value="'.$tzone.'"';
                    831:        if ($tzone eq $selected) {
                    832:            $output.=' selected="selected"';
                    833:        }
                    834:        $output.=">$tzone</option>\n";
1.656     www       835:    }
                    836:    $output.="</select>";
                    837:    return $output;
                    838: }
1.273     raeburn   839: 
1.687     raeburn   840: sub select_datelocale {
                    841:     my ($name,$selected,$onchange,$includeempty)=@_;
                    842:     my $output='<select name="'.$name.'" '.$onchange.'>'."\n";
                    843:     if ($includeempty) {
                    844:         $output .= '<option value=""';
                    845:         if ($selected eq '') {
                    846:             $output .= ' selected="selected" ';
                    847:         }
                    848:         $output .= '> </option>';
                    849:     }
                    850:     my (@possibles,%locale_names);
                    851:     my @locales = DateTime::Locale::Catalog::Locales;
                    852:     foreach my $locale (@locales) {
                    853:         if (ref($locale) eq 'HASH') {
                    854:             my $id = $locale->{'id'};
                    855:             if ($id ne '') {
                    856:                 my $en_terr = $locale->{'en_territory'};
                    857:                 my $native_terr = $locale->{'native_territory'};
1.695     raeburn   858:                 my @languages = &Apache::lonlocal::preferred_languages();
1.687     raeburn   859:                 if (grep(/^en$/,@languages) || !@languages) {
                    860:                     if ($en_terr ne '') {
                    861:                         $locale_names{$id} = '('.$en_terr.')';
                    862:                     } elsif ($native_terr ne '') {
                    863:                         $locale_names{$id} = $native_terr;
                    864:                     }
                    865:                 } else {
                    866:                     if ($native_terr ne '') {
                    867:                         $locale_names{$id} = $native_terr.' ';
                    868:                     } elsif ($en_terr ne '') {
                    869:                         $locale_names{$id} = '('.$en_terr.')';
                    870:                     }
                    871:                 }
                    872:                 push (@possibles,$id);
                    873:             }
                    874:         }
                    875:     }
                    876:     foreach my $item (sort(@possibles)) {
                    877:         $output.= '<option value="'.$item.'"';
                    878:         if ($item eq $selected) {
                    879:             $output.=' selected="selected"';
                    880:         }
                    881:         $output.=">$item";
                    882:         if ($locale_names{$item} ne '') {
                    883:             $output.="  $locale_names{$item}</option>\n";
                    884:         }
                    885:         $output.="</option>\n";
                    886:     }
                    887:     $output.="</select>";
                    888:     return $output;
                    889: }
                    890: 
1.792     raeburn   891: sub select_language {
                    892:     my ($name,$selected,$includeempty) = @_;
                    893:     my %langchoices;
                    894:     if ($includeempty) {
                    895:         %langchoices = ('' => 'No language preference');
                    896:     }
                    897:     foreach my $id (&languageids()) {
                    898:         my $code = &supportedlanguagecode($id);
                    899:         if ($code) {
                    900:             $langchoices{$code} = &plainlanguagedescription($id);
                    901:         }
                    902:     }
                    903:     return &select_form($selected,$name,%langchoices);
                    904: }
                    905: 
1.42      matthew   906: =pod
1.36      matthew   907: 
1.648     raeburn   908: =item * &linked_select_forms(...)
1.36      matthew   909: 
                    910: linked_select_forms returns a string containing a <script></script> block
                    911: and html for two <select> menus.  The select menus will be linked in that
                    912: changing the value of the first menu will result in new values being placed
                    913: in the second menu.  The values in the select menu will appear in alphabetical
1.609     raeburn   914: order unless a defined order is provided.
1.36      matthew   915: 
                    916: linked_select_forms takes the following ordered inputs:
                    917: 
                    918: =over 4
                    919: 
1.112     bowersj2  920: =item * $formname, the name of the <form> tag
1.36      matthew   921: 
1.112     bowersj2  922: =item * $middletext, the text which appears between the <select> tags
1.36      matthew   923: 
1.112     bowersj2  924: =item * $firstdefault, the default value for the first menu
1.36      matthew   925: 
1.112     bowersj2  926: =item * $firstselectname, the name of the first <select> tag
1.36      matthew   927: 
1.112     bowersj2  928: =item * $secondselectname, the name of the second <select> tag
1.36      matthew   929: 
1.112     bowersj2  930: =item * $hashref, a reference to a hash containing the data for the menus.
1.36      matthew   931: 
1.609     raeburn   932: =item * $menuorder, the order of values in the first menu
                    933: 
1.41      ng        934: =back 
                    935: 
1.36      matthew   936: Below is an example of such a hash.  Only the 'text', 'default', and 
                    937: 'select2' keys must appear as stated.  keys(%menu) are the possible 
                    938: values for the first select menu.  The text that coincides with the 
1.41      ng        939: first menu value is given in $menu{$choice1}->{'text'}.  The values 
1.36      matthew   940: and text for the second menu are given in the hash pointed to by 
                    941: $menu{$choice1}->{'select2'}.  
                    942: 
1.112     bowersj2  943:  my %menu = ( A1 => { text =>"Choice A1" ,
                    944:                        default => "B3",
                    945:                        select2 => { 
                    946:                            B1 => "Choice B1",
                    947:                            B2 => "Choice B2",
                    948:                            B3 => "Choice B3",
                    949:                            B4 => "Choice B4"
1.609     raeburn   950:                            },
                    951:                        order => ['B4','B3','B1','B2'],
1.112     bowersj2  952:                    },
                    953:                A2 => { text =>"Choice A2" ,
                    954:                        default => "C2",
                    955:                        select2 => { 
                    956:                            C1 => "Choice C1",
                    957:                            C2 => "Choice C2",
                    958:                            C3 => "Choice C3"
1.609     raeburn   959:                            },
                    960:                        order => ['C2','C1','C3'],
1.112     bowersj2  961:                    },
                    962:                A3 => { text =>"Choice A3" ,
                    963:                        default => "D6",
                    964:                        select2 => { 
                    965:                            D1 => "Choice D1",
                    966:                            D2 => "Choice D2",
                    967:                            D3 => "Choice D3",
                    968:                            D4 => "Choice D4",
                    969:                            D5 => "Choice D5",
                    970:                            D6 => "Choice D6",
                    971:                            D7 => "Choice D7"
1.609     raeburn   972:                            },
                    973:                        order => ['D4','D3','D2','D1','D7','D6','D5'],
1.112     bowersj2  974:                    }
                    975:                );
1.36      matthew   976: 
                    977: =cut
                    978: 
                    979: sub linked_select_forms {
                    980:     my ($formname,
                    981:         $middletext,
                    982:         $firstdefault,
                    983:         $firstselectname,
                    984:         $secondselectname, 
1.609     raeburn   985:         $hashref,
                    986:         $menuorder,
1.36      matthew   987:         ) = @_;
                    988:     my $second = "document.$formname.$secondselectname";
                    989:     my $first = "document.$formname.$firstselectname";
                    990:     # output the javascript to do the changing
                    991:     my $result = '';
1.776     bisitz    992:     $result.='<script type="text/javascript" language="JavaScript">'."\n";
1.824     bisitz    993:     $result.="// <![CDATA[\n";
1.36      matthew   994:     $result.="var select2data = new Object();\n";
                    995:     $" = '","';
                    996:     my $debug = '';
                    997:     foreach my $s1 (sort(keys(%$hashref))) {
                    998:         $result.="select2data.d_$s1 = new Object();\n";        
                    999:         $result.="select2data.d_$s1.def = new String('".
                   1000:             $hashref->{$s1}->{'default'}."');\n";
1.609     raeburn  1001:         $result.="select2data.d_$s1.values = new Array(";
1.36      matthew  1002:         my @s2values = sort(keys( %{ $hashref->{$s1}->{'select2'} } ));
1.609     raeburn  1003:         if (ref($hashref->{$s1}->{'order'}) eq 'ARRAY') {
                   1004:             @s2values = @{$hashref->{$s1}->{'order'}};
                   1005:         }
1.36      matthew  1006:         $result.="\"@s2values\");\n";
                   1007:         $result.="select2data.d_$s1.texts = new Array(";        
                   1008:         my @s2texts;
                   1009:         foreach my $value (@s2values) {
                   1010:             push @s2texts, $hashref->{$s1}->{'select2'}->{$value};
                   1011:         }
                   1012:         $result.="\"@s2texts\");\n";
                   1013:     }
                   1014:     $"=' ';
                   1015:     $result.= <<"END";
                   1016: 
                   1017: function select1_changed() {
                   1018:     // Determine new choice
                   1019:     var newvalue = "d_" + $first.value;
                   1020:     // update select2
                   1021:     var values     = select2data[newvalue].values;
                   1022:     var texts      = select2data[newvalue].texts;
                   1023:     var select2def = select2data[newvalue].def;
                   1024:     var i;
                   1025:     // out with the old
                   1026:     for (i = 0; i < $second.options.length; i++) {
                   1027:         $second.options[i] = null;
                   1028:     }
                   1029:     // in with the nuclear
                   1030:     for (i=0;i<values.length; i++) {
                   1031:         $second.options[i] = new Option(values[i]);
1.143     matthew  1032:         $second.options[i].value = values[i];
1.36      matthew  1033:         $second.options[i].text = texts[i];
                   1034:         if (values[i] == select2def) {
                   1035:             $second.options[i].selected = true;
                   1036:         }
                   1037:     }
                   1038: }
1.824     bisitz   1039: // ]]>
1.36      matthew  1040: </script>
                   1041: END
                   1042:     # output the initial values for the selection lists
                   1043:     $result .= "<select size=\"1\" name=\"$firstselectname\" onchange=\"select1_changed()\">\n";
1.609     raeburn  1044:     my @order = sort(keys(%{$hashref}));
                   1045:     if (ref($menuorder) eq 'ARRAY') {
                   1046:         @order = @{$menuorder};
                   1047:     }
                   1048:     foreach my $value (@order) {
1.36      matthew  1049:         $result.="    <option value=\"$value\" ";
1.253     albertel 1050:         $result.=" selected=\"selected\" " if ($value eq $firstdefault);
1.119     www      1051:         $result.=">".&mt($hashref->{$value}->{'text'})."</option>\n";
1.36      matthew  1052:     }
                   1053:     $result .= "</select>\n";
                   1054:     my %select2 = %{$hashref->{$firstdefault}->{'select2'}};
                   1055:     $result .= $middletext;
                   1056:     $result .= "<select size=\"1\" name=\"$secondselectname\">\n";
                   1057:     my $seconddefault = $hashref->{$firstdefault}->{'default'};
1.609     raeburn  1058:     
                   1059:     my @secondorder = sort(keys(%select2));
                   1060:     if (ref($hashref->{$firstdefault}->{'order'}) eq 'ARRAY') {
                   1061:         @secondorder = @{$hashref->{$firstdefault}->{'order'}};
                   1062:     }
                   1063:     foreach my $value (@secondorder) {
1.36      matthew  1064:         $result.="    <option value=\"$value\" ";        
1.253     albertel 1065:         $result.=" selected=\"selected\" " if ($value eq $seconddefault);
1.119     www      1066:         $result.=">".&mt($select2{$value})."</option>\n";
1.36      matthew  1067:     }
                   1068:     $result .= "</select>\n";
                   1069:     #    return $debug;
                   1070:     return $result;
                   1071: }   #  end of sub linked_select_forms {
                   1072: 
1.45      matthew  1073: =pod
1.44      bowersj2 1074: 
1.648     raeburn  1075: =item * &help_open_topic($topic,$text,$stayOnPage,$width,$height)
1.44      bowersj2 1076: 
1.112     bowersj2 1077: Returns a string corresponding to an HTML link to the given help
                   1078: $topic, where $topic corresponds to the name of a .tex file in
                   1079: /home/httpd/html/adm/help/tex, with underscores replaced by
                   1080: spaces. 
                   1081: 
                   1082: $text will optionally be linked to the same topic, allowing you to
                   1083: link text in addition to the graphic. If you do not want to link
                   1084: text, but wish to specify one of the later parameters, pass an
                   1085: empty string. 
                   1086: 
                   1087: $stayOnPage is a value that will be interpreted as a boolean. If true,
                   1088: the link will not open a new window. If false, the link will open
                   1089: a new window using Javascript. (Default is false.) 
                   1090: 
                   1091: $width and $height are optional numerical parameters that will
                   1092: override the width and height of the popped up window, which may
                   1093: be useful for certain help topics with big pictures included. 
1.44      bowersj2 1094: 
                   1095: =cut
                   1096: 
                   1097: sub help_open_topic {
1.48      bowersj2 1098:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
                   1099:     $text = "" if (not defined $text);
1.44      bowersj2 1100:     $stayOnPage = 0 if (not defined $stayOnPage);
                   1101:     $width = 350 if (not defined $width);
                   1102:     $height = 400 if (not defined $height);
                   1103:     my $filename = $topic;
                   1104:     $filename =~ s/ /_/g;
                   1105: 
1.48      bowersj2 1106:     my $template = "";
                   1107:     my $link;
1.572     banghart 1108:     
1.159     www      1109:     $topic=~s/\W/\_/g;
1.44      bowersj2 1110: 
1.572     banghart 1111:     if (!$stayOnPage) {
1.72      bowersj2 1112: 	$link = "javascript:void(open('/adm/help/${filename}.hlp', 'Help_for_$topic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
1.572     banghart 1113:     } else {
1.48      bowersj2 1114: 	$link = "/adm/help/${filename}.hlp";
                   1115:     }
                   1116: 
                   1117:     # Add the text
1.755     neumanie 1118:     if ($text ne "") {	
1.763     bisitz   1119: 	$template.='<span class="LC_help_open_topic">'
                   1120:                   .'<a target="_top" href="'.$link.'">'
                   1121:                   .$text.'</a>';
1.48      bowersj2 1122:     }
                   1123: 
1.763     bisitz   1124:     # (Always) Add the graphic
1.179     matthew  1125:     my $title = &mt('Online Help');
1.667     raeburn  1126:     my $helpicon=&lonhttpdurl("/adm/help/help.png");
1.763     bisitz   1127:     $template.=' <a target="_top" href="'.$link.'" title="'.$title.'">'
                   1128:               .'<img src="'.$helpicon.'" border="0"'
                   1129:               .' alt="'.&mt('Help: [_1]',$topic).'"'
1.934     droeschl 1130:               .' title="'.$title.'" style="vertical-align:middle;"' 
1.763     bisitz   1131:               .' /></a>';
                   1132:     if ($text ne "") {	
                   1133:         $template.='</span>';
                   1134:     }
1.44      bowersj2 1135:     return $template;
                   1136: 
1.106     bowersj2 1137: }
                   1138: 
                   1139: # This is a quicky function for Latex cheatsheet editing, since it 
                   1140: # appears in at least four places
                   1141: sub helpLatexCheatsheet {
1.732     raeburn  1142:     my ($topic,$text,$not_author) = @_;
                   1143:     my $out;
1.106     bowersj2 1144:     my $addOther = '';
1.732     raeburn  1145:     if ($topic) {
1.763     bisitz   1146: 	$addOther = '<span>'.&Apache::loncommon::help_open_topic($topic,&mt($text),
                   1147: 							       undef, undef, 600).
                   1148: 								   '</span> ';
                   1149:     }
                   1150:     $out = '<span>' # Start cheatsheet
                   1151: 	  .$addOther
                   1152:           .'<span>'
                   1153: 	  .&Apache::loncommon::help_open_topic('Greek_Symbols',&mt('Greek Symbols'),
                   1154: 					       undef,undef,600)
                   1155: 	  .'</span> <span>'
                   1156: 	  .&Apache::loncommon::help_open_topic('Other_Symbols',&mt('Other Symbols'),
                   1157: 					       undef,undef,600)
                   1158: 	  .'</span>';
1.732     raeburn  1159:     unless ($not_author) {
1.763     bisitz   1160:         $out .= ' <span>'
                   1161: 	       .&Apache::loncommon::help_open_topic('Authoring_Output_Tags',&mt('Output Tags'),
                   1162: 	                                            undef,undef,600)
                   1163: 	       .'</span>';
1.732     raeburn  1164:     }
1.763     bisitz   1165:     $out .= '</span>'; # End cheatsheet
1.732     raeburn  1166:     return $out;
1.172     www      1167: }
                   1168: 
1.430     albertel 1169: sub general_help {
                   1170:     my $helptopic='Student_Intro';
                   1171:     if ($env{'request.role'}=~/^(ca|au)/) {
                   1172: 	$helptopic='Authoring_Intro';
1.907     raeburn  1173:     } elsif ($env{'request.role'}=~/^(cc|co)/) {
1.430     albertel 1174: 	$helptopic='Course_Coordination_Intro';
1.672     raeburn  1175:     } elsif ($env{'request.role'}=~/^dc/) {
                   1176:         $helptopic='Domain_Coordination_Intro';
1.430     albertel 1177:     }
                   1178:     return $helptopic;
                   1179: }
                   1180: 
                   1181: sub update_help_link {
                   1182:     my ($topic,$component_help,$faq,$bug,$stayOnPage) = @_;
                   1183:     my $origurl = $ENV{'REQUEST_URI'};
                   1184:     $origurl=~s|^/~|/priv/|;
                   1185:     my $timestamp = time;
                   1186:     foreach my $datum (\$topic,\$component_help,\$faq,\$bug,\$origurl) {
                   1187:         $$datum = &escape($$datum);
                   1188:     }
                   1189: 
                   1190:     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";
                   1191:     my $output .= <<"ENDOUTPUT";
                   1192: <script type="text/javascript">
1.824     bisitz   1193: // <![CDATA[
1.430     albertel 1194: banner_link = '$banner_link';
1.824     bisitz   1195: // ]]>
1.430     albertel 1196: </script>
                   1197: ENDOUTPUT
                   1198:     return $output;
                   1199: }
                   1200: 
                   1201: # now just updates the help link and generates a blue icon
1.193     raeburn  1202: sub help_open_menu {
1.430     albertel 1203:     my ($topic,$component_help,$faq,$bug,$stayOnPage,$width,$height,$text) 
1.552     banghart 1204: 	= @_;    
1.949     droeschl 1205:     $stayOnPage = 1;
1.430     albertel 1206:     my $output;
                   1207:     if ($component_help) {
                   1208: 	if (!$text) {
                   1209: 	    $output=&help_open_topic($component_help,undef,$stayOnPage,
                   1210: 				       $width,$height);
                   1211: 	} else {
                   1212: 	    my $help_text;
                   1213: 	    $help_text=&unescape($topic);
                   1214: 	    $output='<table><tr><td>'.
                   1215: 		&help_open_topic($component_help,$help_text,$stayOnPage,
                   1216: 				 $width,$height).'</td></tr></table>';
                   1217: 	}
                   1218:     }
                   1219:     my $banner_link = &update_help_link($topic,$component_help,$faq,$bug,$stayOnPage);
                   1220:     return $output.$banner_link;
                   1221: }
                   1222: 
                   1223: sub top_nav_help {
                   1224:     my ($text) = @_;
1.436     albertel 1225:     $text = &mt($text);
1.949     droeschl 1226:     my $stay_on_page = 1;
                   1227: 
1.572     banghart 1228:     my $link = ($stay_on_page) ? "javascript:helpMenu('display')"
1.436     albertel 1229: 	                     : "javascript:helpMenu('open')";
1.572     banghart 1230:     my $banner_link = &update_help_link(undef,undef,undef,undef,$stay_on_page);
1.436     albertel 1231: 
1.201     raeburn  1232:     my $title = &mt('Get help');
1.436     albertel 1233: 
                   1234:     return <<"END";
                   1235: $banner_link
                   1236:  <a href="$link" title="$title">$text</a>
                   1237: END
                   1238: }
                   1239: 
                   1240: sub help_menu_js {
                   1241:     my ($text) = @_;
1.949     droeschl 1242:     my $stayOnPage = 1;
1.436     albertel 1243:     my $width = 620;
                   1244:     my $height = 600;
1.430     albertel 1245:     my $helptopic=&general_help();
                   1246:     my $details_link = '/adm/help/'.$helptopic.'.hlp';
1.261     albertel 1247:     my $nothing=&Apache::lonhtmlcommon::javascript_nothing();
1.331     albertel 1248:     my $start_page =
                   1249:         &Apache::loncommon::start_page('Help Menu', undef,
                   1250: 				       {'frameset'    => 1,
                   1251: 					'js_ready'    => 1,
                   1252: 					'add_entries' => {
                   1253: 					    'border' => '0',
1.579     raeburn  1254: 					    'rows'   => "110,*",},});
1.331     albertel 1255:     my $end_page =
                   1256:         &Apache::loncommon::end_page({'frameset' => 1,
                   1257: 				      'js_ready' => 1,});
                   1258: 
1.436     albertel 1259:     my $template .= <<"ENDTEMPLATE";
                   1260: <script type="text/javascript">
1.877     bisitz   1261: // <![CDATA[
1.253     albertel 1262: // <!-- BEGIN LON-CAPA Internal
1.430     albertel 1263: var banner_link = '';
1.243     raeburn  1264: function helpMenu(target) {
                   1265:     var caller = this;
                   1266:     if (target == 'open') {
                   1267:         var newWindow = null;
                   1268:         try {
1.262     albertel 1269:             newWindow =  window.open($nothing,"helpmenu","HEIGHT=$height,WIDTH=$width,resizable=yes,scrollbars=yes" )
1.243     raeburn  1270:         }
                   1271:         catch(error) {
                   1272:             writeHelp(caller);
                   1273:             return;
                   1274:         }
                   1275:         if (newWindow) {
                   1276:             caller = newWindow;
                   1277:         }
1.193     raeburn  1278:     }
1.243     raeburn  1279:     writeHelp(caller);
                   1280:     return;
                   1281: }
                   1282: function writeHelp(caller) {
1.430     albertel 1283:     caller.document.writeln('$start_page<frame name="bannerframe"  src="'+banner_link+'" /><frame name="bodyframe" src="$details_link" /> $end_page')
1.243     raeburn  1284:     caller.document.close()
                   1285:     caller.focus()
1.193     raeburn  1286: }
1.877     bisitz   1287: // END LON-CAPA Internal -->
1.253     albertel 1288: // ]]>
1.436     albertel 1289: </script>
1.193     raeburn  1290: ENDTEMPLATE
                   1291:     return $template;
                   1292: }
                   1293: 
1.172     www      1294: sub help_open_bug {
                   1295:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
1.258     albertel 1296:     unless ($env{'user.adv'}) { return ''; }
1.172     www      1297:     unless ($Apache::lonnet::perlvar{'BugzillaHost'}) { return ''; }
                   1298:     $text = "" if (not defined $text);
                   1299: 	$stayOnPage=1;
1.184     albertel 1300:     $width = 600 if (not defined $width);
                   1301:     $height = 600 if (not defined $height);
1.172     www      1302: 
                   1303:     $topic=~s/\W+/\+/g;
                   1304:     my $link='';
                   1305:     my $template='';
1.379     albertel 1306:     my $url=$Apache::lonnet::perlvar{'BugzillaHost'}.'enter_bug.cgi?product=LON-CAPA&amp;bug_file_loc='.
                   1307: 	&escape($ENV{'REQUEST_URI'}).'&amp;component='.$topic;
1.172     www      1308:     if (!$stayOnPage)
                   1309:     {
                   1310: 	$link = "javascript:void(open('$url', 'Bugzilla', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
                   1311:     }
                   1312:     else
                   1313:     {
                   1314: 	$link = $url;
                   1315:     }
                   1316:     # Add the text
                   1317:     if ($text ne "")
                   1318:     {
                   1319: 	$template .= 
                   1320:   "<table bgcolor='#AA3333' cellspacing='1' cellpadding='1' border='0'><tr>".
1.705     tempelho 1321:   "<td bgcolor='#FF5555'><a target=\"_top\" href=\"$link\"><span style=\"color:#FFFFFF;font-size:10pt;\">$text</span></a>";
1.172     www      1322:     }
                   1323: 
                   1324:     # Add the graphic
1.179     matthew  1325:     my $title = &mt('Report a Bug');
1.215     albertel 1326:     my $bugicon=&lonhttpdurl("/adm/lonMisc/smallBug.gif");
1.172     www      1327:     $template .= <<"ENDTEMPLATE";
1.436     albertel 1328:  <a target="_top" href="$link" title="$title"><img src="$bugicon" border="0" alt="(Bug: $topic)" /></a>
1.172     www      1329: ENDTEMPLATE
                   1330:     if ($text ne '') { $template.='</td></tr></table>' };
                   1331:     return $template;
                   1332: 
                   1333: }
                   1334: 
                   1335: sub help_open_faq {
                   1336:     my ($topic, $text, $stayOnPage, $width, $height) = @_;
1.258     albertel 1337:     unless ($env{'user.adv'}) { return ''; }
1.172     www      1338:     unless ($Apache::lonnet::perlvar{'FAQHost'}) { return ''; }
                   1339:     $text = "" if (not defined $text);
                   1340: 	$stayOnPage=1;
                   1341:     $width = 350 if (not defined $width);
                   1342:     $height = 400 if (not defined $height);
                   1343: 
                   1344:     $topic=~s/\W+/\+/g;
                   1345:     my $link='';
                   1346:     my $template='';
                   1347:     my $url=$Apache::lonnet::perlvar{'FAQHost'}.'/fom/cache/'.$topic.'.html';
                   1348:     if (!$stayOnPage)
                   1349:     {
                   1350: 	$link = "javascript:void(open('$url', 'FAQ-O-Matic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
                   1351:     }
                   1352:     else
                   1353:     {
                   1354: 	$link = $url;
                   1355:     }
                   1356: 
                   1357:     # Add the text
                   1358:     if ($text ne "")
                   1359:     {
                   1360: 	$template .= 
1.173     www      1361:   "<table bgcolor='#337733' cellspacing='1' cellpadding='1' border='0'><tr>".
1.705     tempelho 1362:   "<td bgcolor='#448844'><a target=\"_top\" href=\"$link\"><span style=\"color:#FFFFFF; font-size:10pt;\">$text</span></a>";
1.172     www      1363:     }
                   1364: 
                   1365:     # Add the graphic
1.179     matthew  1366:     my $title = &mt('View the FAQ');
1.215     albertel 1367:     my $faqicon=&lonhttpdurl("/adm/lonMisc/smallFAQ.gif");
1.172     www      1368:     $template .= <<"ENDTEMPLATE";
1.436     albertel 1369:  <a target="_top" href="$link" title="$title"><img src="$faqicon" border="0" alt="(FAQ: $topic)" /></a>
1.172     www      1370: ENDTEMPLATE
                   1371:     if ($text ne '') { $template.='</td></tr></table>' };
                   1372:     return $template;
                   1373: 
1.44      bowersj2 1374: }
1.37      matthew  1375: 
1.180     matthew  1376: ###############################################################
                   1377: ###############################################################
                   1378: 
1.45      matthew  1379: =pod
                   1380: 
1.648     raeburn  1381: =item * &change_content_javascript():
1.256     matthew  1382: 
                   1383: This and the next function allow you to create small sections of an
                   1384: otherwise static HTML page that you can update on the fly with
                   1385: Javascript, even in Netscape 4.
                   1386: 
                   1387: The Javascript fragment returned by this function (no E<lt>scriptE<gt> tag)
                   1388: must be written to the HTML page once. It will prove the Javascript
                   1389: function "change(name, content)". Calling the change function with the
                   1390: name of the section 
                   1391: you want to update, matching the name passed to C<changable_area>, and
                   1392: the new content you want to put in there, will put the content into
                   1393: that area.
                   1394: 
                   1395: B<Note>: Netscape 4 only reserves enough space for the changable area
                   1396: to contain room for the original contents. You need to "make space"
                   1397: for whatever changes you wish to make, and be B<sure> to check your
                   1398: code in Netscape 4. This feature in Netscape 4 is B<not> powerful;
                   1399: it's adequate for updating a one-line status display, but little more.
                   1400: This script will set the space to 100% width, so you only need to
                   1401: worry about height in Netscape 4.
                   1402: 
                   1403: Modern browsers are much less limiting, and if you can commit to the
                   1404: user not using Netscape 4, this feature may be used freely with
                   1405: pretty much any HTML.
                   1406: 
                   1407: =cut
                   1408: 
                   1409: sub change_content_javascript {
                   1410:     # If we're on Netscape 4, we need to use Layer-based code
1.258     albertel 1411:     if ($env{'browser.type'} eq 'netscape' &&
                   1412: 	$env{'browser.version'} =~ /^4\./) {
1.256     matthew  1413: 	return (<<NETSCAPE4);
                   1414: 	function change(name, content) {
                   1415: 	    doc = document.layers[name+"___escape"].layers[0].document;
                   1416: 	    doc.open();
                   1417: 	    doc.write(content);
                   1418: 	    doc.close();
                   1419: 	}
                   1420: NETSCAPE4
                   1421:     } else {
                   1422: 	# Otherwise, we need to use semi-standards-compliant code
                   1423: 	# (technically, "innerHTML" isn't standard but the equivalent
                   1424: 	# is really scary, and every useful browser supports it
                   1425: 	return (<<DOMBASED);
                   1426: 	function change(name, content) {
                   1427: 	    element = document.getElementById(name);
                   1428: 	    element.innerHTML = content;
                   1429: 	}
                   1430: DOMBASED
                   1431:     }
                   1432: }
                   1433: 
                   1434: =pod
                   1435: 
1.648     raeburn  1436: =item * &changable_area($name,$origContent):
1.256     matthew  1437: 
                   1438: This provides a "changable area" that can be modified on the fly via
                   1439: the Javascript code provided in C<change_content_javascript>. $name is
                   1440: the name you will use to reference the area later; do not repeat the
                   1441: same name on a given HTML page more then once. $origContent is what
                   1442: the area will originally contain, which can be left blank.
                   1443: 
                   1444: =cut
                   1445: 
                   1446: sub changable_area {
                   1447:     my ($name, $origContent) = @_;
                   1448: 
1.258     albertel 1449:     if ($env{'browser.type'} eq 'netscape' &&
                   1450: 	$env{'browser.version'} =~ /^4\./) {
1.256     matthew  1451: 	# If this is netscape 4, we need to use the Layer tag
                   1452: 	return "<ilayer width='100%' id='${name}___escape' overflow='none'><layer width='100%' id='$name' overflow='none'>$origContent</layer></ilayer>";
                   1453:     } else {
                   1454: 	return "<span id='$name'>$origContent</span>";
                   1455:     }
                   1456: }
                   1457: 
                   1458: =pod
                   1459: 
1.648     raeburn  1460: =item * &viewport_geometry_js 
1.590     raeburn  1461: 
                   1462: Provides javascript object (Geometry) which can provide information about the viewport geometry for the client browser.
                   1463: 
                   1464: =cut
                   1465: 
                   1466: 
                   1467: sub viewport_geometry_js { 
                   1468:     return <<"GEOMETRY";
                   1469: var Geometry = {};
                   1470: function init_geometry() {
                   1471:     if (Geometry.init) { return };
                   1472:     Geometry.init=1;
                   1473:     if (window.innerHeight) {
                   1474:         Geometry.getViewportHeight   = function() { return window.innerHeight; };
                   1475:         Geometry.getViewportWidth   = function() { return window.innerWidth; };
                   1476:         Geometry.getHorizontalScroll = function() { return window.pageXOffset; };
                   1477:         Geometry.getVerticalScroll   = function() { return window.pageYOffset; };
                   1478:     }
                   1479:     else if (document.documentElement && document.documentElement.clientHeight) {
                   1480:         Geometry.getViewportHeight =
                   1481:             function() { return document.documentElement.clientHeight; };
                   1482:         Geometry.getViewportWidth =
                   1483:             function() { return document.documentElement.clientWidth; };
                   1484: 
                   1485:         Geometry.getHorizontalScroll =
                   1486:             function() { return document.documentElement.scrollLeft; };
                   1487:         Geometry.getVerticalScroll =
                   1488:             function() { return document.documentElement.scrollTop; };
                   1489:     }
                   1490:     else if (document.body.clientHeight) {
                   1491:         Geometry.getViewportHeight =
                   1492:             function() { return document.body.clientHeight; };
                   1493:         Geometry.getViewportWidth =
                   1494:             function() { return document.body.clientWidth; };
                   1495:         Geometry.getHorizontalScroll =
                   1496:             function() { return document.body.scrollLeft; };
                   1497:         Geometry.getVerticalScroll =
                   1498:             function() { return document.body.scrollTop; };
                   1499:     }
                   1500: }
                   1501: 
                   1502: GEOMETRY
                   1503: }
                   1504: 
                   1505: =pod
                   1506: 
1.648     raeburn  1507: =item * &viewport_size_js()
1.590     raeburn  1508: 
                   1509: 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. 
                   1510: 
                   1511: =cut
                   1512: 
                   1513: sub viewport_size_js {
                   1514:     my $geometry = &viewport_geometry_js();
                   1515:     return <<"DIMS";
                   1516: 
                   1517: $geometry
                   1518: 
                   1519: function getViewportDims(width,height) {
                   1520:     init_geometry();
                   1521:     width.value = Geometry.getViewportWidth();
                   1522:     height.value = Geometry.getViewportHeight();
                   1523:     return;
                   1524: }
                   1525: 
                   1526: DIMS
                   1527: }
                   1528: 
                   1529: =pod
                   1530: 
1.648     raeburn  1531: =item * &resize_textarea_js()
1.565     albertel 1532: 
                   1533: emits the needed javascript to resize a textarea to be as big as possible
                   1534: 
                   1535: creates a function resize_textrea that takes two IDs first should be
                   1536: the id of the element to resize, second should be the id of a div that
                   1537: surrounds everything that comes after the textarea, this routine needs
                   1538: to be attached to the <body> for the onload and onresize events.
                   1539: 
1.648     raeburn  1540: =back
1.565     albertel 1541: 
                   1542: =cut
                   1543: 
                   1544: sub resize_textarea_js {
1.590     raeburn  1545:     my $geometry = &viewport_geometry_js();
1.565     albertel 1546:     return <<"RESIZE";
                   1547:     <script type="text/javascript">
1.824     bisitz   1548: // <![CDATA[
1.590     raeburn  1549: $geometry
1.565     albertel 1550: 
1.588     albertel 1551: function getX(element) {
                   1552:     var x = 0;
                   1553:     while (element) {
                   1554: 	x += element.offsetLeft;
                   1555: 	element = element.offsetParent;
                   1556:     }
                   1557:     return x;
                   1558: }
                   1559: function getY(element) {
                   1560:     var y = 0;
                   1561:     while (element) {
                   1562: 	y += element.offsetTop;
                   1563: 	element = element.offsetParent;
                   1564:     }
                   1565:     return y;
                   1566: }
                   1567: 
                   1568: 
1.565     albertel 1569: function resize_textarea(textarea_id,bottom_id) {
                   1570:     init_geometry();
                   1571:     var textarea        = document.getElementById(textarea_id);
                   1572:     //alert(textarea);
                   1573: 
1.588     albertel 1574:     var textarea_top    = getY(textarea);
1.565     albertel 1575:     var textarea_height = textarea.offsetHeight;
                   1576:     var bottom          = document.getElementById(bottom_id);
1.588     albertel 1577:     var bottom_top      = getY(bottom);
1.565     albertel 1578:     var bottom_height   = bottom.offsetHeight;
                   1579:     var window_height   = Geometry.getViewportHeight();
1.588     albertel 1580:     var fudge           = 23;
1.565     albertel 1581:     var new_height      = window_height-fudge-textarea_top-bottom_height;
                   1582:     if (new_height < 300) {
                   1583: 	new_height = 300;
                   1584:     }
                   1585:     textarea.style.height=new_height+'px';
                   1586: }
1.824     bisitz   1587: // ]]>
1.565     albertel 1588: </script>
                   1589: RESIZE
                   1590: 
                   1591: }
                   1592: 
                   1593: =pod
                   1594: 
1.256     matthew  1595: =head1 Excel and CSV file utility routines
                   1596: 
                   1597: =over 4
                   1598: 
                   1599: =cut
                   1600: 
                   1601: ###############################################################
                   1602: ###############################################################
                   1603: 
                   1604: =pod
                   1605: 
1.648     raeburn  1606: =item * &csv_translate($text) 
1.37      matthew  1607: 
1.185     www      1608: Translate $text to allow it to be output as a 'comma separated values' 
1.37      matthew  1609: format.
                   1610: 
                   1611: =cut
                   1612: 
1.180     matthew  1613: ###############################################################
                   1614: ###############################################################
1.37      matthew  1615: sub csv_translate {
                   1616:     my $text = shift;
                   1617:     $text =~ s/\"/\"\"/g;
1.209     albertel 1618:     $text =~ s/\n/ /g;
1.37      matthew  1619:     return $text;
                   1620: }
1.180     matthew  1621: 
                   1622: ###############################################################
                   1623: ###############################################################
                   1624: 
                   1625: =pod
                   1626: 
1.648     raeburn  1627: =item * &define_excel_formats()
1.180     matthew  1628: 
                   1629: Define some commonly used Excel cell formats.
                   1630: 
                   1631: Currently supported formats:
                   1632: 
                   1633: =over 4
                   1634: 
                   1635: =item header
                   1636: 
                   1637: =item bold
                   1638: 
                   1639: =item h1
                   1640: 
                   1641: =item h2
                   1642: 
                   1643: =item h3
                   1644: 
1.256     matthew  1645: =item h4
                   1646: 
                   1647: =item i
                   1648: 
1.180     matthew  1649: =item date
                   1650: 
                   1651: =back
                   1652: 
                   1653: Inputs: $workbook
                   1654: 
                   1655: Returns: $format, a hash reference.
                   1656: 
                   1657: =cut
                   1658: 
                   1659: ###############################################################
                   1660: ###############################################################
                   1661: sub define_excel_formats {
                   1662:     my ($workbook) = @_;
                   1663:     my $format;
                   1664:     $format->{'header'} = $workbook->add_format(bold      => 1, 
                   1665:                                                 bottom    => 1,
                   1666:                                                 align     => 'center');
                   1667:     $format->{'bold'} = $workbook->add_format(bold=>1);
                   1668:     $format->{'h1'}   = $workbook->add_format(bold=>1, size=>18);
                   1669:     $format->{'h2'}   = $workbook->add_format(bold=>1, size=>16);
                   1670:     $format->{'h3'}   = $workbook->add_format(bold=>1, size=>14);
1.255     matthew  1671:     $format->{'h4'}   = $workbook->add_format(bold=>1, size=>12);
1.246     matthew  1672:     $format->{'i'}    = $workbook->add_format(italic=>1);
1.180     matthew  1673:     $format->{'date'} = $workbook->add_format(num_format=>
1.207     matthew  1674:                                             'mm/dd/yyyy hh:mm:ss');
1.180     matthew  1675:     return $format;
                   1676: }
                   1677: 
                   1678: ###############################################################
                   1679: ###############################################################
1.113     bowersj2 1680: 
                   1681: =pod
                   1682: 
1.648     raeburn  1683: =item * &create_workbook()
1.255     matthew  1684: 
                   1685: Create an Excel worksheet.  If it fails, output message on the
                   1686: request object and return undefs.
                   1687: 
                   1688: Inputs: Apache request object
                   1689: 
                   1690: Returns (undef) on failure, 
                   1691:     Excel worksheet object, scalar with filename, and formats 
                   1692:     from &Apache::loncommon::define_excel_formats on success
                   1693: 
                   1694: =cut
                   1695: 
                   1696: ###############################################################
                   1697: ###############################################################
                   1698: sub create_workbook {
                   1699:     my ($r) = @_;
                   1700:         #
                   1701:     # Create the excel spreadsheet
                   1702:     my $filename = '/prtspool/'.
1.258     albertel 1703:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
1.255     matthew  1704:         time.'_'.rand(1000000000).'.xls';
                   1705:     my $workbook  = Spreadsheet::WriteExcel->new('/home/httpd'.$filename);
                   1706:     if (! defined($workbook)) {
                   1707:         $r->log_error("Error creating excel spreadsheet $filename: $!");
1.928     bisitz   1708:         $r->print(
                   1709:             '<p class="LC_error">'
                   1710:            .&mt('Problems occurred in creating the new Excel file.')
                   1711:            .' '.&mt('This error has been logged.')
                   1712:            .' '.&mt('Please alert your LON-CAPA administrator.')
                   1713:            .'</p>'
                   1714:         );
1.255     matthew  1715:         return (undef);
                   1716:     }
                   1717:     #
                   1718:     $workbook->set_tempdir('/home/httpd/perl/tmp');
                   1719:     #
                   1720:     my $format = &Apache::loncommon::define_excel_formats($workbook);
                   1721:     return ($workbook,$filename,$format);
                   1722: }
                   1723: 
                   1724: ###############################################################
                   1725: ###############################################################
                   1726: 
                   1727: =pod
                   1728: 
1.648     raeburn  1729: =item * &create_text_file()
1.113     bowersj2 1730: 
1.542     raeburn  1731: Create a file to write to and eventually make available to the user.
1.256     matthew  1732: If file creation fails, outputs an error message on the request object and 
                   1733: return undefs.
1.113     bowersj2 1734: 
1.256     matthew  1735: Inputs: Apache request object, and file suffix
1.113     bowersj2 1736: 
1.256     matthew  1737: Returns (undef) on failure, 
                   1738:     Filehandle and filename on success.
1.113     bowersj2 1739: 
                   1740: =cut
                   1741: 
1.256     matthew  1742: ###############################################################
                   1743: ###############################################################
                   1744: sub create_text_file {
                   1745:     my ($r,$suffix) = @_;
                   1746:     if (! defined($suffix)) { $suffix = 'txt'; };
                   1747:     my $fh;
                   1748:     my $filename = '/prtspool/'.
1.258     albertel 1749:         $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
1.256     matthew  1750:         time.'_'.rand(1000000000).'.'.$suffix;
                   1751:     $fh = Apache::File->new('>/home/httpd'.$filename);
                   1752:     if (! defined($fh)) {
                   1753:         $r->log_error("Couldn't open $filename for output $!");
1.928     bisitz   1754:         $r->print(
                   1755:             '<p class="LC_error">'
                   1756:            .&mt('Problems occurred in creating the output file.')
                   1757:            .' '.&mt('This error has been logged.')
                   1758:            .' '.&mt('Please alert your LON-CAPA administrator.')
                   1759:            .'</p>'
                   1760:         );
1.113     bowersj2 1761:     }
1.256     matthew  1762:     return ($fh,$filename)
1.113     bowersj2 1763: }
                   1764: 
                   1765: 
1.256     matthew  1766: =pod 
1.113     bowersj2 1767: 
                   1768: =back
                   1769: 
                   1770: =cut
1.37      matthew  1771: 
                   1772: ###############################################################
1.33      matthew  1773: ##        Home server <option> list generating code          ##
                   1774: ###############################################################
1.35      matthew  1775: 
1.169     www      1776: # ------------------------------------------
                   1777: 
                   1778: sub domain_select {
                   1779:     my ($name,$value,$multiple)=@_;
                   1780:     my %domains=map { 
1.514     albertel 1781: 	$_ => $_.' '. &Apache::lonnet::domain($_,'description') 
1.512     albertel 1782:     } &Apache::lonnet::all_domains();
1.169     www      1783:     if ($multiple) {
                   1784: 	$domains{''}=&mt('Any domain');
1.550     albertel 1785: 	$domains{'select_form_order'} = [sort {lc($a) cmp lc($b) } (keys(%domains))];
1.287     albertel 1786: 	return &multiple_select_form($name,$value,4,\%domains);
1.169     www      1787:     } else {
1.550     albertel 1788: 	$domains{'select_form_order'} = [sort {lc($a) cmp lc($b) } (keys(%domains))];
1.169     www      1789: 	return &select_form($name,$value,%domains);
                   1790:     }
                   1791: }
                   1792: 
1.282     albertel 1793: #-------------------------------------------
                   1794: 
                   1795: =pod
                   1796: 
1.519     raeburn  1797: =head1 Routines for form select boxes
                   1798: 
                   1799: =over 4
                   1800: 
1.648     raeburn  1801: =item * &multiple_select_form($name,$value,$size,$hash,$order)
1.282     albertel 1802: 
                   1803: Returns a string containing a <select> element int multiple mode
                   1804: 
                   1805: 
                   1806: Args:
                   1807:   $name - name of the <select> element
1.506     raeburn  1808:   $value - scalar or array ref of values that should already be selected
1.282     albertel 1809:   $size - number of rows long the select element is
1.283     albertel 1810:   $hash - the elements should be 'option' => 'shown text'
1.282     albertel 1811:           (shown text should already have been &mt())
1.506     raeburn  1812:   $order - (optional) array ref of the order to show the elements in
1.283     albertel 1813: 
1.282     albertel 1814: =cut
                   1815: 
                   1816: #-------------------------------------------
1.169     www      1817: sub multiple_select_form {
1.284     albertel 1818:     my ($name,$value,$size,$hash,$order)=@_;
1.169     www      1819:     my %selected = map { $_ => 1 } ref($value)?@{$value}:($value);
                   1820:     my $output='';
1.191     matthew  1821:     if (! defined($size)) {
                   1822:         $size = 4;
1.283     albertel 1823:         if (scalar(keys(%$hash))<4) {
                   1824:             $size = scalar(keys(%$hash));
1.191     matthew  1825:         }
                   1826:     }
1.734     bisitz   1827:     $output.="\n".'<select name="'.$name.'" size="'.$size.'" multiple="multiple">';
1.501     banghart 1828:     my @order;
1.506     raeburn  1829:     if (ref($order) eq 'ARRAY')  {
                   1830:         @order = @{$order};
                   1831:     } else {
                   1832:         @order = sort(keys(%$hash));
1.501     banghart 1833:     }
                   1834:     if (exists($$hash{'select_form_order'})) {
                   1835:         @order = @{$$hash{'select_form_order'}};
                   1836:     }
                   1837:         
1.284     albertel 1838:     foreach my $key (@order) {
1.356     albertel 1839:         $output.='<option value="'.&HTML::Entities::encode($key,'"<>&').'" ';
1.284     albertel 1840:         $output.='selected="selected" ' if ($selected{$key});
                   1841:         $output.='>'.$hash->{$key}."</option>\n";
1.169     www      1842:     }
                   1843:     $output.="</select>\n";
                   1844:     return $output;
                   1845: }
                   1846: 
1.88      www      1847: #-------------------------------------------
                   1848: 
                   1849: =pod
                   1850: 
1.648     raeburn  1851: =item * &select_form($defdom,$name,%hash)
1.88      www      1852: 
                   1853: Returns a string containing a <select name='$name' size='1'> form to 
                   1854: allow a user to select options from a hash option_name => displayed text.  
                   1855: See lonrights.pm for an example invocation and use.
                   1856: 
                   1857: =cut
                   1858: 
                   1859: #-------------------------------------------
                   1860: sub select_form {
                   1861:     my ($def,$name,%hash) = @_;
                   1862:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
1.128     albertel 1863:     my @keys;
                   1864:     if (exists($hash{'select_form_order'})) {
                   1865: 	@keys=@{$hash{'select_form_order'}};
                   1866:     } else {
                   1867: 	@keys=sort(keys(%hash));
                   1868:     }
1.356     albertel 1869:     foreach my $key (@keys) {
                   1870:         $selectform.=
                   1871: 	    '<option value="'.&HTML::Entities::encode($key,'"<>&').'" '.
                   1872:             ($key eq $def ? 'selected="selected" ' : '').
1.922     bisitz   1873:                 ">".$hash{$key}."</option>\n";
1.88      www      1874:     }
                   1875:     $selectform.="</select>";
                   1876:     return $selectform;
                   1877: }
                   1878: 
1.475     www      1879: # For display filters
                   1880: 
                   1881: sub display_filter {
                   1882:     if (!$env{'form.show'}) { $env{'form.show'}=10; }
1.477     www      1883:     if (!$env{'form.displayfilter'}) { $env{'form.displayfilter'}='currentfolder'; }
1.714     bisitz   1884:     return '<span class="LC_nobreak"><label>'.&mt('Records [_1]',
1.475     www      1885: 			       &Apache::lonmeta::selectbox('show',$env{'form.show'},undef,
                   1886: 							   (&mt('all'),10,20,50,100,1000,10000))).
1.714     bisitz   1887: 	   '</label></span> <span class="LC_nobreak">'.
1.475     www      1888:            &mt('Filter [_1]',
1.477     www      1889: 	   &select_form($env{'form.displayfilter'},
                   1890: 			'displayfilter',
                   1891: 			('currentfolder' => 'Current folder/page',
                   1892: 			 'containing' => 'Containing phrase',
                   1893: 			 'none' => 'None'))).
1.714     bisitz   1894: 			 '<input type="text" name="containingphrase" size="30" value="'.&HTML::Entities::encode($env{'form.containingphrase'}).'" /></span>';
1.475     www      1895: }
                   1896: 
1.167     www      1897: sub gradeleveldescription {
                   1898:     my $gradelevel=shift;
                   1899:     my %gradelevels=(0 => 'Not specified',
                   1900: 		     1 => 'Grade 1',
                   1901: 		     2 => 'Grade 2',
                   1902: 		     3 => 'Grade 3',
                   1903: 		     4 => 'Grade 4',
                   1904: 		     5 => 'Grade 5',
                   1905: 		     6 => 'Grade 6',
                   1906: 		     7 => 'Grade 7',
                   1907: 		     8 => 'Grade 8',
                   1908: 		     9 => 'Grade 9',
                   1909: 		     10 => 'Grade 10',
                   1910: 		     11 => 'Grade 11',
                   1911: 		     12 => 'Grade 12',
                   1912: 		     13 => 'Grade 13',
                   1913: 		     14 => '100 Level',
                   1914: 		     15 => '200 Level',
                   1915: 		     16 => '300 Level',
                   1916: 		     17 => '400 Level',
                   1917: 		     18 => 'Graduate Level');
                   1918:     return &mt($gradelevels{$gradelevel});
                   1919: }
                   1920: 
1.163     www      1921: sub select_level_form {
                   1922:     my ($deflevel,$name)=@_;
                   1923:     unless ($deflevel) { $deflevel=0; }
1.167     www      1924:     my $selectform = "<select name=\"$name\" size=\"1\">\n";
                   1925:     for (my $i=0; $i<=18; $i++) {
                   1926:         $selectform.="<option value=\"$i\" ".
1.253     albertel 1927:             ($i==$deflevel ? 'selected="selected" ' : '').
1.167     www      1928:                 ">".&gradeleveldescription($i)."</option>\n";
                   1929:     }
                   1930:     $selectform.="</select>";
                   1931:     return $selectform;
1.163     www      1932: }
1.167     www      1933: 
1.35      matthew  1934: #-------------------------------------------
                   1935: 
1.45      matthew  1936: =pod
                   1937: 
1.910     raeburn  1938: =item * &select_dom_form($defdom,$name,$includeempty,$showdomdesc,$onchange,$incdoms)
1.35      matthew  1939: 
                   1940: Returns a string containing a <select name='$name' size='1'> form to 
                   1941: allow a user to select the domain to preform an operation in.  
                   1942: See loncreateuser.pm for an example invocation and use.
                   1943: 
1.90      www      1944: If the $includeempty flag is set, it also includes an empty choice ("no domain
                   1945: selected");
                   1946: 
1.743     raeburn  1947: If the $showdomdesc flag is set, the domain name is followed by the domain description.
                   1948: 
1.910     raeburn  1949: 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.
                   1950: 
                   1951: The optional $incdoms is a reference to an array of domains which will be the only available options. 
1.563     raeburn  1952: 
1.35      matthew  1953: =cut
                   1954: 
                   1955: #-------------------------------------------
1.34      matthew  1956: sub select_dom_form {
1.910     raeburn  1957:     my ($defdom,$name,$includeempty,$showdomdesc,$onchange,$incdoms) = @_;
1.872     raeburn  1958:     if ($onchange) {
1.874     raeburn  1959:         $onchange = ' onchange="'.$onchange.'"';
1.743     raeburn  1960:     }
1.910     raeburn  1961:     my @domains;
                   1962:     if (ref($incdoms) eq 'ARRAY') {
                   1963:         @domains = sort {lc($a) cmp lc($b)} (@{$incdoms});
                   1964:     } else {
                   1965:         @domains = sort {lc($a) cmp lc($b)} (&Apache::lonnet::all_domains());
                   1966:     }
1.90      www      1967:     if ($includeempty) { @domains=('',@domains); }
1.743     raeburn  1968:     my $selectdomain = "<select name=\"$name\" size=\"1\"$onchange>\n";
1.356     albertel 1969:     foreach my $dom (@domains) {
                   1970:         $selectdomain.="<option value=\"$dom\" ".
1.563     raeburn  1971:             ($dom eq $defdom ? 'selected="selected" ' : '').'>'.$dom;
                   1972:         if ($showdomdesc) {
                   1973:             if ($dom ne '') {
                   1974:                 my $domdesc = &Apache::lonnet::domain($dom,'description');
                   1975:                 if ($domdesc ne '') {
                   1976:                     $selectdomain .= ' ('.$domdesc.')';
                   1977:                 }
                   1978:             } 
                   1979:         }
                   1980:         $selectdomain .= "</option>\n";
1.34      matthew  1981:     }
                   1982:     $selectdomain.="</select>";
                   1983:     return $selectdomain;
                   1984: }
                   1985: 
1.35      matthew  1986: #-------------------------------------------
                   1987: 
1.45      matthew  1988: =pod
                   1989: 
1.648     raeburn  1990: =item * &home_server_form_item($domain,$name,$defaultflag)
1.35      matthew  1991: 
1.586     raeburn  1992: input: 4 arguments (two required, two optional) - 
                   1993:     $domain - domain of new user
                   1994:     $name - name of form element
                   1995:     $default - Value of 'default' causes a default item to be first 
                   1996:                             option, and selected by default. 
                   1997:     $hide - Value of 'hide' causes hiding of the name of the server, 
                   1998:                             if 1 server found, or default, if 0 found.
1.594     raeburn  1999: output: returns 2 items: 
1.586     raeburn  2000: (a) form element which contains either:
                   2001:    (i) <select name="$name">
                   2002:         <option value="$hostid1">$hostid $servers{$hostid}</option>
                   2003:         <option value="$hostid2">$hostid $servers{$hostid}</option>       
                   2004:        </select>
                   2005:        form item if there are multiple library servers in $domain, or
                   2006:    (ii) an <input type="hidden" name="$name" value="$hostid" /> form item 
                   2007:        if there is only one library server in $domain.
                   2008: 
                   2009: (b) number of library servers found.
                   2010: 
                   2011: See loncreateuser.pm for example of use.
1.35      matthew  2012: 
                   2013: =cut
                   2014: 
                   2015: #-------------------------------------------
1.586     raeburn  2016: sub home_server_form_item {
                   2017:     my ($domain,$name,$default,$hide) = @_;
1.513     albertel 2018:     my %servers = &Apache::lonnet::get_servers($domain,'library');
1.586     raeburn  2019:     my $result;
                   2020:     my $numlib = keys(%servers);
                   2021:     if ($numlib > 1) {
                   2022:         $result .= '<select name="'.$name.'" />'."\n";
                   2023:         if ($default) {
1.804     bisitz   2024:             $result .= '<option value="default" selected="selected">'.&mt('default').
1.586     raeburn  2025:                        '</option>'."\n";
                   2026:         }
                   2027:         foreach my $hostid (sort(keys(%servers))) {
                   2028:             $result.= '<option value="'.$hostid.'">'.
                   2029: 	              $hostid.' '.$servers{$hostid}."</option>\n";
                   2030:         }
                   2031:         $result .= '</select>'."\n";
                   2032:     } elsif ($numlib == 1) {
                   2033:         my $hostid;
                   2034:         foreach my $item (keys(%servers)) {
                   2035:             $hostid = $item;
                   2036:         }
                   2037:         $result .= '<input type="hidden" name="'.$name.'" value="'.
                   2038:                    $hostid.'" />';
                   2039:                    if (!$hide) {
                   2040:                        $result .= $hostid.' '.$servers{$hostid};
                   2041:                    }
                   2042:                    $result .= "\n";
                   2043:     } elsif ($default) {
                   2044:         $result .= '<input type="hidden" name="'.$name.
                   2045:                    '" value="default" />';
                   2046:                    if (!$hide) {
                   2047:                        $result .= &mt('default');
                   2048:                    }
                   2049:                    $result .= "\n";
1.33      matthew  2050:     }
1.586     raeburn  2051:     return ($result,$numlib);
1.33      matthew  2052: }
1.112     bowersj2 2053: 
                   2054: =pod
                   2055: 
1.534     albertel 2056: =back 
                   2057: 
1.112     bowersj2 2058: =cut
1.87      matthew  2059: 
                   2060: ###############################################################
1.112     bowersj2 2061: ##                  Decoding User Agent                      ##
1.87      matthew  2062: ###############################################################
                   2063: 
                   2064: =pod
                   2065: 
1.112     bowersj2 2066: =head1 Decoding the User Agent
                   2067: 
                   2068: =over 4
                   2069: 
                   2070: =item * &decode_user_agent()
1.87      matthew  2071: 
                   2072: Inputs: $r
                   2073: 
                   2074: Outputs:
                   2075: 
                   2076: =over 4
                   2077: 
1.112     bowersj2 2078: =item * $httpbrowser
1.87      matthew  2079: 
1.112     bowersj2 2080: =item * $clientbrowser
1.87      matthew  2081: 
1.112     bowersj2 2082: =item * $clientversion
1.87      matthew  2083: 
1.112     bowersj2 2084: =item * $clientmathml
1.87      matthew  2085: 
1.112     bowersj2 2086: =item * $clientunicode
1.87      matthew  2087: 
1.112     bowersj2 2088: =item * $clientos
1.87      matthew  2089: 
                   2090: =back
                   2091: 
1.157     matthew  2092: =back 
                   2093: 
1.87      matthew  2094: =cut
                   2095: 
                   2096: ###############################################################
                   2097: ###############################################################
                   2098: sub decode_user_agent {
1.247     albertel 2099:     my ($r)=@_;
1.87      matthew  2100:     my @browsertype=split(/\&/,$Apache::lonnet::perlvar{"lonBrowsDet"});
                   2101:     my %mathcap=split(/\&/,$$Apache::lonnet::perlvar{"lonMathML"});
                   2102:     my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
1.247     albertel 2103:     if (!$httpbrowser && $r) { $httpbrowser=$r->header_in('User-Agent'); }
1.87      matthew  2104:     my $clientbrowser='unknown';
                   2105:     my $clientversion='0';
                   2106:     my $clientmathml='';
                   2107:     my $clientunicode='0';
                   2108:     for (my $i=0;$i<=$#browsertype;$i++) {
                   2109:         my ($bname,$match,$notmatch,$vreg,$minv,$univ)=split(/\:/,$browsertype[$i]);
                   2110: 	if (($httpbrowser=~/$match/i)  && ($httpbrowser!~/$notmatch/i)) {
                   2111: 	    $clientbrowser=$bname;
                   2112:             $httpbrowser=~/$vreg/i;
                   2113: 	    $clientversion=$1;
                   2114:             $clientmathml=($clientversion>=$minv);
                   2115:             $clientunicode=($clientversion>=$univ);
                   2116: 	}
                   2117:     }
                   2118:     my $clientos='unknown';
                   2119:     if (($httpbrowser=~/linux/i) ||
                   2120:         ($httpbrowser=~/unix/i) ||
                   2121:         ($httpbrowser=~/ux/i) ||
                   2122:         ($httpbrowser=~/solaris/i)) { $clientos='unix'; }
                   2123:     if (($httpbrowser=~/vax/i) ||
                   2124:         ($httpbrowser=~/vms/i)) { $clientos='vms'; }
                   2125:     if ($httpbrowser=~/next/i) { $clientos='next'; }
                   2126:     if (($httpbrowser=~/mac/i) ||
                   2127:         ($httpbrowser=~/powerpc/i)) { $clientos='mac'; }
                   2128:     if ($httpbrowser=~/win/i) { $clientos='win'; }
                   2129:     if ($httpbrowser=~/embed/i) { $clientos='pda'; }
                   2130:     return ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
                   2131:             $clientunicode,$clientos,);
                   2132: }
                   2133: 
1.32      matthew  2134: ###############################################################
                   2135: ##    Authentication changing form generation subroutines    ##
                   2136: ###############################################################
                   2137: ##
                   2138: ## All of the authform_xxxxxxx subroutines take their inputs in a
                   2139: ## hash, and have reasonable default values.
                   2140: ##
                   2141: ##    formname = the name given in the <form> tag.
1.35      matthew  2142: #-------------------------------------------
                   2143: 
1.45      matthew  2144: =pod
                   2145: 
1.112     bowersj2 2146: =head1 Authentication Routines
                   2147: 
                   2148: =over 4
                   2149: 
1.648     raeburn  2150: =item * &authform_xxxxxx()
1.35      matthew  2151: 
                   2152: The authform_xxxxxx subroutines provide javascript and html forms which 
                   2153: handle some of the conveniences required for authentication forms.  
                   2154: This is not an optimal method, but it works.  
                   2155: 
                   2156: =over 4
                   2157: 
1.112     bowersj2 2158: =item * authform_header
1.35      matthew  2159: 
1.112     bowersj2 2160: =item * authform_authorwarning
1.35      matthew  2161: 
1.112     bowersj2 2162: =item * authform_nochange
1.35      matthew  2163: 
1.112     bowersj2 2164: =item * authform_kerberos
1.35      matthew  2165: 
1.112     bowersj2 2166: =item * authform_internal
1.35      matthew  2167: 
1.112     bowersj2 2168: =item * authform_filesystem
1.35      matthew  2169: 
                   2170: =back
                   2171: 
1.648     raeburn  2172: See loncreateuser.pm for invocation and use examples.
1.157     matthew  2173: 
1.35      matthew  2174: =cut
                   2175: 
                   2176: #-------------------------------------------
1.32      matthew  2177: sub authform_header{  
                   2178:     my %in = (
                   2179:         formname => 'cu',
1.80      albertel 2180:         kerb_def_dom => '',
1.32      matthew  2181:         @_,
                   2182:     );
                   2183:     $in{'formname'} = 'document.' . $in{'formname'};
                   2184:     my $result='';
1.80      albertel 2185: 
                   2186: #---------------------------------------------- Code for upper case translation
                   2187:     my $Javascript_toUpperCase;
                   2188:     unless ($in{kerb_def_dom}) {
                   2189:         $Javascript_toUpperCase =<<"END";
                   2190:         switch (choice) {
                   2191:            case 'krb': currentform.elements[choicearg].value =
                   2192:                currentform.elements[choicearg].value.toUpperCase();
                   2193:                break;
                   2194:            default:
                   2195:         }
                   2196: END
                   2197:     } else {
                   2198:         $Javascript_toUpperCase = "";
                   2199:     }
                   2200: 
1.165     raeburn  2201:     my $radioval = "'nochange'";
1.591     raeburn  2202:     if (defined($in{'curr_authtype'})) {
                   2203:         if ($in{'curr_authtype'} ne '') {
                   2204:             $radioval = "'".$in{'curr_authtype'}."arg'";
                   2205:         }
1.174     matthew  2206:     }
1.165     raeburn  2207:     my $argfield = 'null';
1.591     raeburn  2208:     if (defined($in{'mode'})) {
1.165     raeburn  2209:         if ($in{'mode'} eq 'modifycourse')  {
1.591     raeburn  2210:             if (defined($in{'curr_autharg'})) {
                   2211:                 if ($in{'curr_autharg'} ne '') {
1.165     raeburn  2212:                     $argfield = "'$in{'curr_autharg'}'";
                   2213:                 }
                   2214:             }
                   2215:         }
                   2216:     }
                   2217: 
1.32      matthew  2218:     $result.=<<"END";
                   2219: var current = new Object();
1.165     raeburn  2220: current.radiovalue = $radioval;
                   2221: current.argfield = $argfield;
1.32      matthew  2222: 
                   2223: function changed_radio(choice,currentform) {
                   2224:     var choicearg = choice + 'arg';
                   2225:     // If a radio button in changed, we need to change the argfield
                   2226:     if (current.radiovalue != choice) {
                   2227:         current.radiovalue = choice;
                   2228:         if (current.argfield != null) {
                   2229:             currentform.elements[current.argfield].value = '';
                   2230:         }
                   2231:         if (choice == 'nochange') {
                   2232:             current.argfield = null;
                   2233:         } else {
                   2234:             current.argfield = choicearg;
                   2235:             switch(choice) {
                   2236:                 case 'krb': 
                   2237:                     currentform.elements[current.argfield].value = 
                   2238:                         "$in{'kerb_def_dom'}";
                   2239:                 break;
                   2240:               default:
                   2241:                 break;
                   2242:             }
                   2243:         }
                   2244:     }
                   2245:     return;
                   2246: }
1.22      www      2247: 
1.32      matthew  2248: function changed_text(choice,currentform) {
                   2249:     var choicearg = choice + 'arg';
                   2250:     if (currentform.elements[choicearg].value !='') {
1.80      albertel 2251:         $Javascript_toUpperCase
1.32      matthew  2252:         // clear old field
                   2253:         if ((current.argfield != choicearg) && (current.argfield != null)) {
                   2254:             currentform.elements[current.argfield].value = '';
                   2255:         }
                   2256:         current.argfield = choicearg;
                   2257:     }
                   2258:     set_auth_radio_buttons(choice,currentform);
                   2259:     return;
1.20      www      2260: }
1.32      matthew  2261: 
                   2262: function set_auth_radio_buttons(newvalue,currentform) {
                   2263:     var i=0;
                   2264:     while (i < currentform.login.length) {
                   2265:         if (currentform.login[i].value == newvalue) { break; }
                   2266:         i++;
                   2267:     }
                   2268:     if (i == currentform.login.length) {
                   2269:         return;
                   2270:     }
                   2271:     current.radiovalue = newvalue;
                   2272:     currentform.login[i].checked = true;
                   2273:     return;
                   2274: }
                   2275: END
                   2276:     return $result;
                   2277: }
                   2278: 
                   2279: sub authform_authorwarning{
                   2280:     my $result='';
1.144     matthew  2281:     $result='<i>'.
                   2282:         &mt('As a general rule, only authors or co-authors should be '.
                   2283:             'filesystem authenticated '.
                   2284:             '(which allows access to the server filesystem).')."</i>\n";
1.32      matthew  2285:     return $result;
                   2286: }
                   2287: 
                   2288: sub authform_nochange{  
                   2289:     my %in = (
                   2290:               formname => 'document.cu',
                   2291:               kerb_def_dom => 'MSU.EDU',
                   2292:               @_,
                   2293:           );
1.586     raeburn  2294:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'}); 
                   2295:     my $result;
                   2296:     if (keys(%can_assign) == 0) {
                   2297:         $result = &mt('Under you current role you are not permitted to change login settings for this user');  
                   2298:     } else {
                   2299:         $result = '<label>'.&mt('[_1] Do not change login data',
                   2300:                   '<input type="radio" name="login" value="nochange" '.
                   2301:                   'checked="checked" onclick="'.
1.281     albertel 2302:             "javascript:changed_radio('nochange',$in{'formname'});".'" />').
                   2303: 	    '</label>';
1.586     raeburn  2304:     }
1.32      matthew  2305:     return $result;
                   2306: }
                   2307: 
1.591     raeburn  2308: sub authform_kerberos {
1.32      matthew  2309:     my %in = (
                   2310:               formname => 'document.cu',
                   2311:               kerb_def_dom => 'MSU.EDU',
1.80      albertel 2312:               kerb_def_auth => 'krb4',
1.32      matthew  2313:               @_,
                   2314:               );
1.586     raeburn  2315:     my ($check4,$check5,$krbcheck,$krbarg,$krbver,$result,$authtype,
                   2316:         $autharg,$jscall);
                   2317:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.80      albertel 2318:     if ($in{'kerb_def_auth'} eq 'krb5') {
1.772     bisitz   2319:        $check5 = ' checked="checked"';
1.80      albertel 2320:     } else {
1.772     bisitz   2321:        $check4 = ' checked="checked"';
1.80      albertel 2322:     }
1.165     raeburn  2323:     $krbarg = $in{'kerb_def_dom'};
1.591     raeburn  2324:     if (defined($in{'curr_authtype'})) {
                   2325:         if ($in{'curr_authtype'} eq 'krb') {
1.772     bisitz   2326:             $krbcheck = ' checked="checked"';
1.623     raeburn  2327:             if (defined($in{'mode'})) {
                   2328:                 if ($in{'mode'} eq 'modifyuser') {
                   2329:                     $krbcheck = '';
                   2330:                 }
                   2331:             }
1.591     raeburn  2332:             if (defined($in{'curr_kerb_ver'})) {
                   2333:                 if ($in{'curr_krb_ver'} eq '5') {
1.772     bisitz   2334:                     $check5 = ' checked="checked"';
1.591     raeburn  2335:                     $check4 = '';
                   2336:                 } else {
1.772     bisitz   2337:                     $check4 = ' checked="checked"';
1.591     raeburn  2338:                     $check5 = '';
                   2339:                 }
1.586     raeburn  2340:             }
1.591     raeburn  2341:             if (defined($in{'curr_autharg'})) {
1.165     raeburn  2342:                 $krbarg = $in{'curr_autharg'};
                   2343:             }
1.586     raeburn  2344:             if (!$can_assign{'krb4'} && !$can_assign{'krb5'}) {
1.591     raeburn  2345:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2346:                     $result = 
                   2347:     &mt('Currently Kerberos authenticated with domain [_1] Version [_2].',
                   2348:         $in{'curr_autharg'},$krbver);
                   2349:                 } else {
                   2350:                     $result =
                   2351:     &mt('Currently Kerberos authenticated, Version [_1].',$krbver);
                   2352:                 }
                   2353:                 return $result; 
                   2354:             }
                   2355:         }
                   2356:     } else {
                   2357:         if ($authnum == 1) {
1.784     bisitz   2358:             $authtype = '<input type="hidden" name="login" value="krb" />';
1.165     raeburn  2359:         }
                   2360:     }
1.586     raeburn  2361:     if (!$can_assign{'krb4'} && !$can_assign{'krb5'}) {
                   2362:         return;
1.587     raeburn  2363:     } elsif ($authtype eq '') {
1.591     raeburn  2364:         if (defined($in{'mode'})) {
1.587     raeburn  2365:             if ($in{'mode'} eq 'modifycourse') {
                   2366:                 if ($authnum == 1) {
1.784     bisitz   2367:                     $authtype = '<input type="hidden" name="login" value="krb" />';
1.587     raeburn  2368:                 }
                   2369:             }
                   2370:         }
1.586     raeburn  2371:     }
                   2372:     $jscall = "javascript:changed_radio('krb',$in{'formname'});";
                   2373:     if ($authtype eq '') {
                   2374:         $authtype = '<input type="radio" name="login" value="krb" '.
                   2375:                     'onclick="'.$jscall.'" onchange="'.$jscall.'"'.
                   2376:                     $krbcheck.' />';
                   2377:     }
                   2378:     if (($can_assign{'krb4'} && $can_assign{'krb5'}) ||
                   2379:         ($can_assign{'krb4'} && !$can_assign{'krb5'} && 
                   2380:          $in{'curr_authtype'} eq 'krb5') ||
                   2381:         (!$can_assign{'krb4'} && $can_assign{'krb5'} && 
                   2382:          $in{'curr_authtype'} eq 'krb4')) {
                   2383:         $result .= &mt
1.144     matthew  2384:         ('[_1] Kerberos authenticated with domain [_2] '.
1.281     albertel 2385:          '[_3] Version 4 [_4] Version 5 [_5]',
1.586     raeburn  2386:          '<label>'.$authtype,
1.281     albertel 2387:          '</label><input type="text" size="10" name="krbarg" '.
1.165     raeburn  2388:              'value="'.$krbarg.'" '.
1.144     matthew  2389:              'onchange="'.$jscall.'" />',
1.281     albertel 2390:          '<label><input type="radio" name="krbver" value="4" '.$check4.' />',
                   2391:          '</label><label><input type="radio" name="krbver" value="5" '.$check5.' />',
                   2392: 	 '</label>');
1.586     raeburn  2393:     } elsif ($can_assign{'krb4'}) {
                   2394:         $result .= &mt
                   2395:         ('[_1] Kerberos authenticated with domain [_2] '.
                   2396:          '[_3] Version 4 [_4]',
                   2397:          '<label>'.$authtype,
                   2398:          '</label><input type="text" size="10" name="krbarg" '.
                   2399:              'value="'.$krbarg.'" '.
                   2400:              'onchange="'.$jscall.'" />',
                   2401:          '<label><input type="hidden" name="krbver" value="4" />',
                   2402:          '</label>');
                   2403:     } elsif ($can_assign{'krb5'}) {
                   2404:         $result .= &mt
                   2405:         ('[_1] Kerberos authenticated with domain [_2] '.
                   2406:          '[_3] Version 5 [_4]',
                   2407:          '<label>'.$authtype,
                   2408:          '</label><input type="text" size="10" name="krbarg" '.
                   2409:              'value="'.$krbarg.'" '.
                   2410:              'onchange="'.$jscall.'" />',
                   2411:          '<label><input type="hidden" name="krbver" value="5" />',
                   2412:          '</label>');
                   2413:     }
1.32      matthew  2414:     return $result;
                   2415: }
                   2416: 
                   2417: sub authform_internal{  
1.586     raeburn  2418:     my %in = (
1.32      matthew  2419:                 formname => 'document.cu',
                   2420:                 kerb_def_dom => 'MSU.EDU',
                   2421:                 @_,
                   2422:                 );
1.586     raeburn  2423:     my ($intcheck,$intarg,$result,$authtype,$autharg,$jscall);
                   2424:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2425:     if (defined($in{'curr_authtype'})) {
                   2426:         if ($in{'curr_authtype'} eq 'int') {
1.586     raeburn  2427:             if ($can_assign{'int'}) {
1.772     bisitz   2428:                 $intcheck = 'checked="checked" ';
1.623     raeburn  2429:                 if (defined($in{'mode'})) {
                   2430:                     if ($in{'mode'} eq 'modifyuser') {
                   2431:                         $intcheck = '';
                   2432:                     }
                   2433:                 }
1.591     raeburn  2434:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2435:                     $intarg = $in{'curr_autharg'};
                   2436:                 }
                   2437:             } else {
                   2438:                 $result = &mt('Currently internally authenticated.');
                   2439:                 return $result;
1.165     raeburn  2440:             }
                   2441:         }
1.586     raeburn  2442:     } else {
                   2443:         if ($authnum == 1) {
1.784     bisitz   2444:             $authtype = '<input type="hidden" name="login" value="int" />';
1.586     raeburn  2445:         }
                   2446:     }
                   2447:     if (!$can_assign{'int'}) {
                   2448:         return;
1.587     raeburn  2449:     } elsif ($authtype eq '') {
1.591     raeburn  2450:         if (defined($in{'mode'})) {
1.587     raeburn  2451:             if ($in{'mode'} eq 'modifycourse') {
                   2452:                 if ($authnum == 1) {
1.784     bisitz   2453:                     $authtype = '<input type="hidden" name="login" value="int" />';
1.587     raeburn  2454:                 }
                   2455:             }
                   2456:         }
1.165     raeburn  2457:     }
1.586     raeburn  2458:     $jscall = "javascript:changed_radio('int',$in{'formname'});";
                   2459:     if ($authtype eq '') {
                   2460:         $authtype = '<input type="radio" name="login" value="int" '.$intcheck.
                   2461:                     ' onchange="'.$jscall.'" onclick="'.$jscall.'" />';
                   2462:     }
1.605     bisitz   2463:     $autharg = '<input type="password" size="10" name="intarg" value="'.
1.586     raeburn  2464:                $intarg.'" onchange="'.$jscall.'" />';
                   2465:     $result = &mt
1.144     matthew  2466:         ('[_1] Internally authenticated (with initial password [_2])',
1.586     raeburn  2467:          '<label>'.$authtype,'</label>'.$autharg);
1.824     bisitz   2468:     $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  2469:     return $result;
                   2470: }
                   2471: 
                   2472: sub authform_local{  
                   2473:     my %in = (
                   2474:               formname => 'document.cu',
                   2475:               kerb_def_dom => 'MSU.EDU',
                   2476:               @_,
                   2477:               );
1.586     raeburn  2478:     my ($loccheck,$locarg,$result,$authtype,$autharg,$jscall);
                   2479:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2480:     if (defined($in{'curr_authtype'})) {
                   2481:         if ($in{'curr_authtype'} eq 'loc') {
1.586     raeburn  2482:             if ($can_assign{'loc'}) {
1.772     bisitz   2483:                 $loccheck = 'checked="checked" ';
1.623     raeburn  2484:                 if (defined($in{'mode'})) {
                   2485:                     if ($in{'mode'} eq 'modifyuser') {
                   2486:                         $loccheck = '';
                   2487:                     }
                   2488:                 }
1.591     raeburn  2489:                 if (defined($in{'curr_autharg'})) {
1.586     raeburn  2490:                     $locarg = $in{'curr_autharg'};
                   2491:                 }
                   2492:             } else {
                   2493:                 $result = &mt('Currently using local (institutional) authentication.');
                   2494:                 return $result;
1.165     raeburn  2495:             }
                   2496:         }
1.586     raeburn  2497:     } else {
                   2498:         if ($authnum == 1) {
1.784     bisitz   2499:             $authtype = '<input type="hidden" name="login" value="loc" />';
1.586     raeburn  2500:         }
                   2501:     }
                   2502:     if (!$can_assign{'loc'}) {
                   2503:         return;
1.587     raeburn  2504:     } elsif ($authtype eq '') {
1.591     raeburn  2505:         if (defined($in{'mode'})) {
1.587     raeburn  2506:             if ($in{'mode'} eq 'modifycourse') {
                   2507:                 if ($authnum == 1) {
1.784     bisitz   2508:                     $authtype = '<input type="hidden" name="login" value="loc" />';
1.587     raeburn  2509:                 }
                   2510:             }
                   2511:         }
1.165     raeburn  2512:     }
1.586     raeburn  2513:     $jscall = "javascript:changed_radio('loc',$in{'formname'});";
                   2514:     if ($authtype eq '') {
                   2515:         $authtype = '<input type="radio" name="login" value="loc" '.
                   2516:                     $loccheck.' onchange="'.$jscall.'" onclick="'.
                   2517:                     $jscall.'" />';
                   2518:     }
                   2519:     $autharg = '<input type="text" size="10" name="locarg" value="'.
                   2520:                $locarg.'" onchange="'.$jscall.'" />';
                   2521:     $result = &mt('[_1] Local Authentication with argument [_2]',
                   2522:                   '<label>'.$authtype,'</label>'.$autharg);
1.32      matthew  2523:     return $result;
                   2524: }
                   2525: 
                   2526: sub authform_filesystem{  
                   2527:     my %in = (
                   2528:               formname => 'document.cu',
                   2529:               kerb_def_dom => 'MSU.EDU',
                   2530:               @_,
                   2531:               );
1.586     raeburn  2532:     my ($fsyscheck,$result,$authtype,$autharg,$jscall);
                   2533:     my ($authnum,%can_assign) =  &get_assignable_auth($in{'domain'});
1.591     raeburn  2534:     if (defined($in{'curr_authtype'})) {
                   2535:         if ($in{'curr_authtype'} eq 'fsys') {
1.586     raeburn  2536:             if ($can_assign{'fsys'}) {
1.772     bisitz   2537:                 $fsyscheck = 'checked="checked" ';
1.623     raeburn  2538:                 if (defined($in{'mode'})) {
                   2539:                     if ($in{'mode'} eq 'modifyuser') {
                   2540:                         $fsyscheck = '';
                   2541:                     }
                   2542:                 }
1.586     raeburn  2543:             } else {
                   2544:                 $result = &mt('Currently Filesystem Authenticated.');
                   2545:                 return $result;
                   2546:             }           
                   2547:         }
                   2548:     } else {
                   2549:         if ($authnum == 1) {
1.784     bisitz   2550:             $authtype = '<input type="hidden" name="login" value="fsys" />';
1.586     raeburn  2551:         }
                   2552:     }
                   2553:     if (!$can_assign{'fsys'}) {
                   2554:         return;
1.587     raeburn  2555:     } elsif ($authtype eq '') {
1.591     raeburn  2556:         if (defined($in{'mode'})) {
1.587     raeburn  2557:             if ($in{'mode'} eq 'modifycourse') {
                   2558:                 if ($authnum == 1) {
1.784     bisitz   2559:                     $authtype = '<input type="hidden" name="login" value="fsys" />';
1.587     raeburn  2560:                 }
                   2561:             }
                   2562:         }
1.586     raeburn  2563:     }
                   2564:     $jscall = "javascript:changed_radio('fsys',$in{'formname'});";
                   2565:     if ($authtype eq '') {
                   2566:         $authtype = '<input type="radio" name="login" value="fsys" '.
                   2567:                     $fsyscheck.' onchange="'.$jscall.'" onclick="'.
                   2568:                     $jscall.'" />';
                   2569:     }
                   2570:     $autharg = '<input type="text" size="10" name="fsysarg" value=""'.
                   2571:                ' onchange="'.$jscall.'" />';
                   2572:     $result = &mt
1.144     matthew  2573:         ('[_1] Filesystem Authenticated (with initial password [_2])',
1.281     albertel 2574:          '<label><input type="radio" name="login" value="fsys" '.
1.586     raeburn  2575:          $fsyscheck.'onchange="'.$jscall.'" onclick="'.$jscall.'" />',
1.605     bisitz   2576:          '</label><input type="password" size="10" name="fsysarg" value="" '.
1.144     matthew  2577:                   'onchange="'.$jscall.'" />');
1.32      matthew  2578:     return $result;
                   2579: }
                   2580: 
1.586     raeburn  2581: sub get_assignable_auth {
                   2582:     my ($dom) = @_;
                   2583:     if ($dom eq '') {
                   2584:         $dom = $env{'request.role.domain'};
                   2585:     }
                   2586:     my %can_assign = (
                   2587:                           krb4 => 1,
                   2588:                           krb5 => 1,
                   2589:                           int  => 1,
                   2590:                           loc  => 1,
                   2591:                      );
                   2592:     my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom);
                   2593:     if (ref($domconfig{'usercreation'}) eq 'HASH') {
                   2594:         if (ref($domconfig{'usercreation'}{'authtypes'}) eq 'HASH') {
                   2595:             my $authhash = $domconfig{'usercreation'}{'authtypes'};
                   2596:             my $context;
                   2597:             if ($env{'request.role'} =~ /^au/) {
                   2598:                 $context = 'author';
                   2599:             } elsif ($env{'request.role'} =~ /^dc/) {
                   2600:                 $context = 'domain';
                   2601:             } elsif ($env{'request.course.id'}) {
                   2602:                 $context = 'course';
                   2603:             }
                   2604:             if ($context) {
                   2605:                 if (ref($authhash->{$context}) eq 'HASH') {
                   2606:                    %can_assign = %{$authhash->{$context}}; 
                   2607:                 }
                   2608:             }
                   2609:         }
                   2610:     }
                   2611:     my $authnum = 0;
                   2612:     foreach my $key (keys(%can_assign)) {
                   2613:         if ($can_assign{$key}) {
                   2614:             $authnum ++;
                   2615:         }
                   2616:     }
                   2617:     if ($can_assign{'krb4'} && $can_assign{'krb5'}) {
                   2618:         $authnum --;
                   2619:     }
                   2620:     return ($authnum,%can_assign);
                   2621: }
                   2622: 
1.80      albertel 2623: ###############################################################
                   2624: ##    Get Kerberos Defaults for Domain                 ##
                   2625: ###############################################################
                   2626: ##
                   2627: ## Returns default kerberos version and an associated argument
                   2628: ## as listed in file domain.tab. If not listed, provides
                   2629: ## appropriate default domain and kerberos version.
                   2630: ##
                   2631: #-------------------------------------------
                   2632: 
                   2633: =pod
                   2634: 
1.648     raeburn  2635: =item * &get_kerberos_defaults()
1.80      albertel 2636: 
                   2637: get_kerberos_defaults($target_domain) returns the default kerberos
1.641     raeburn  2638: version and domain. If not found, it defaults to version 4 and the 
                   2639: domain of the server.
1.80      albertel 2640: 
1.648     raeburn  2641: =over 4
                   2642: 
1.80      albertel 2643: ($def_version, $def_krb_domain) = &get_kerberos_defaults($target_domain);
                   2644: 
1.648     raeburn  2645: =back
                   2646: 
                   2647: =back
                   2648: 
1.80      albertel 2649: =cut
                   2650: 
                   2651: #-------------------------------------------
                   2652: sub get_kerberos_defaults {
                   2653:     my $domain=shift;
1.641     raeburn  2654:     my ($krbdef,$krbdefdom);
                   2655:     my %domdefaults = &Apache::lonnet::get_domain_defaults($domain);
                   2656:     if (($domdefaults{'auth_def'} =~/^krb(4|5)$/) && ($domdefaults{'auth_arg_def'} ne '')) {
                   2657:         $krbdef = $domdefaults{'auth_def'};
                   2658:         $krbdefdom = $domdefaults{'auth_arg_def'};
                   2659:     } else {
1.80      albertel 2660:         $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/;
                   2661:         my $krbdefdom=$1;
                   2662:         $krbdefdom=~tr/a-z/A-Z/;
                   2663:         $krbdef = "krb4";
                   2664:     }
                   2665:     return ($krbdef,$krbdefdom);
                   2666: }
1.112     bowersj2 2667: 
1.32      matthew  2668: 
1.46      matthew  2669: ###############################################################
                   2670: ##                Thesaurus Functions                        ##
                   2671: ###############################################################
1.20      www      2672: 
1.46      matthew  2673: =pod
1.20      www      2674: 
1.112     bowersj2 2675: =head1 Thesaurus Functions
                   2676: 
                   2677: =over 4
                   2678: 
1.648     raeburn  2679: =item * &initialize_keywords()
1.46      matthew  2680: 
                   2681: Initializes the package variable %Keywords if it is empty.  Uses the
                   2682: package variable $thesaurus_db_file.
                   2683: 
                   2684: =cut
                   2685: 
                   2686: ###################################################
                   2687: 
                   2688: sub initialize_keywords {
                   2689:     return 1 if (scalar keys(%Keywords));
                   2690:     # If we are here, %Keywords is empty, so fill it up
                   2691:     #   Make sure the file we need exists...
                   2692:     if (! -e $thesaurus_db_file) {
                   2693:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file".
                   2694:                                  " failed because it does not exist");
                   2695:         return 0;
                   2696:     }
                   2697:     #   Set up the hash as a database
                   2698:     my %thesaurus_db;
                   2699:     if (! tie(%thesaurus_db,'GDBM_File',
1.53      albertel 2700:               $thesaurus_db_file,&GDBM_READER(),0640)){
1.46      matthew  2701:         &Apache::lonnet::logthis("Could not tie \%thesaurus_db to ".
                   2702:                                  $thesaurus_db_file);
                   2703:         return 0;
                   2704:     } 
                   2705:     #  Get the average number of appearances of a word.
                   2706:     my $avecount = $thesaurus_db{'average.count'};
                   2707:     #  Put keywords (those that appear > average) into %Keywords
                   2708:     while (my ($word,$data)=each (%thesaurus_db)) {
                   2709:         my ($count,undef) = split /:/,$data;
                   2710:         $Keywords{$word}++ if ($count > $avecount);
                   2711:     }
                   2712:     untie %thesaurus_db;
                   2713:     # Remove special values from %Keywords.
1.356     albertel 2714:     foreach my $value ('total.count','average.count') {
                   2715:         delete($Keywords{$value}) if (exists($Keywords{$value}));
1.586     raeburn  2716:   }
1.46      matthew  2717:     return 1;
                   2718: }
                   2719: 
                   2720: ###################################################
                   2721: 
                   2722: =pod
                   2723: 
1.648     raeburn  2724: =item * &keyword($word)
1.46      matthew  2725: 
                   2726: Returns true if $word is a keyword.  A keyword is a word that appears more 
                   2727: than the average number of times in the thesaurus database.  Calls 
                   2728: &initialize_keywords
                   2729: 
                   2730: =cut
                   2731: 
                   2732: ###################################################
1.20      www      2733: 
                   2734: sub keyword {
1.46      matthew  2735:     return if (!&initialize_keywords());
                   2736:     my $word=lc(shift());
                   2737:     $word=~s/\W//g;
                   2738:     return exists($Keywords{$word});
1.20      www      2739: }
1.46      matthew  2740: 
                   2741: ###############################################################
                   2742: 
                   2743: =pod 
1.20      www      2744: 
1.648     raeburn  2745: =item * &get_related_words()
1.46      matthew  2746: 
1.160     matthew  2747: Look up a word in the thesaurus.  Takes a scalar argument and returns
1.46      matthew  2748: an array of words.  If the keyword is not in the thesaurus, an empty array
                   2749: will be returned.  The order of the words returned is determined by the
                   2750: database which holds them.
                   2751: 
                   2752: Uses global $thesaurus_db_file.
                   2753: 
                   2754: =cut
                   2755: 
                   2756: ###############################################################
                   2757: sub get_related_words {
                   2758:     my $keyword = shift;
                   2759:     my %thesaurus_db;
                   2760:     if (! -e $thesaurus_db_file) {
                   2761:         &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file ".
                   2762:                                  "failed because the file does not exist");
                   2763:         return ();
                   2764:     }
                   2765:     if (! tie(%thesaurus_db,'GDBM_File',
1.53      albertel 2766:               $thesaurus_db_file,&GDBM_READER(),0640)){
1.46      matthew  2767:         return ();
                   2768:     } 
                   2769:     my @Words=();
1.429     www      2770:     my $count=0;
1.46      matthew  2771:     if (exists($thesaurus_db{$keyword})) {
1.356     albertel 2772: 	# The first element is the number of times
                   2773: 	# the word appears.  We do not need it now.
1.429     www      2774: 	my (undef,@RelatedWords) = (split(/:/,$thesaurus_db{$keyword}));
                   2775: 	my (undef,$mostfrequentcount)=split(/\,/,$RelatedWords[0]);
                   2776: 	my $threshold=$mostfrequentcount/10;
                   2777:         foreach my $possibleword (@RelatedWords) {
                   2778:             my ($word,$wordcount)=split(/\,/,$possibleword);
                   2779:             if ($wordcount>$threshold) {
                   2780: 		push(@Words,$word);
                   2781:                 $count++;
                   2782:                 if ($count>10) { last; }
                   2783: 	    }
1.20      www      2784:         }
                   2785:     }
1.46      matthew  2786:     untie %thesaurus_db;
                   2787:     return @Words;
1.14      harris41 2788: }
1.46      matthew  2789: 
1.112     bowersj2 2790: =pod
                   2791: 
                   2792: =back
                   2793: 
                   2794: =cut
1.61      www      2795: 
                   2796: # -------------------------------------------------------------- Plaintext name
1.81      albertel 2797: =pod
                   2798: 
1.112     bowersj2 2799: =head1 User Name Functions
                   2800: 
                   2801: =over 4
                   2802: 
1.648     raeburn  2803: =item * &plainname($uname,$udom,$first)
1.81      albertel 2804: 
1.112     bowersj2 2805: Takes a users logon name and returns it as a string in
1.226     albertel 2806: "first middle last generation" form 
                   2807: if $first is set to 'lastname' then it returns it as
                   2808: 'lastname generation, firstname middlename' if their is a lastname
1.81      albertel 2809: 
                   2810: =cut
1.61      www      2811: 
1.295     www      2812: 
1.81      albertel 2813: ###############################################################
1.61      www      2814: sub plainname {
1.226     albertel 2815:     my ($uname,$udom,$first)=@_;
1.537     albertel 2816:     return if (!defined($uname) || !defined($udom));
1.295     www      2817:     my %names=&getnames($uname,$udom);
1.226     albertel 2818:     my $name=&Apache::lonnet::format_name($names{'firstname'},
                   2819: 					  $names{'middlename'},
                   2820: 					  $names{'lastname'},
                   2821: 					  $names{'generation'},$first);
                   2822:     $name=~s/^\s+//;
1.62      www      2823:     $name=~s/\s+$//;
                   2824:     $name=~s/\s+/ /g;
1.353     albertel 2825:     if ($name !~ /\S/) { $name=$uname.':'.$udom; }
1.62      www      2826:     return $name;
1.61      www      2827: }
1.66      www      2828: 
                   2829: # -------------------------------------------------------------------- Nickname
1.81      albertel 2830: =pod
                   2831: 
1.648     raeburn  2832: =item * &nickname($uname,$udom)
1.81      albertel 2833: 
                   2834: Gets a users name and returns it as a string as
                   2835: 
                   2836: "&quot;nickname&quot;"
1.66      www      2837: 
1.81      albertel 2838: if the user has a nickname or
                   2839: 
                   2840: "first middle last generation"
                   2841: 
                   2842: if the user does not
                   2843: 
                   2844: =cut
1.66      www      2845: 
                   2846: sub nickname {
                   2847:     my ($uname,$udom)=@_;
1.537     albertel 2848:     return if (!defined($uname) || !defined($udom));
1.295     www      2849:     my %names=&getnames($uname,$udom);
1.68      albertel 2850:     my $name=$names{'nickname'};
1.66      www      2851:     if ($name) {
                   2852:        $name='&quot;'.$name.'&quot;'; 
                   2853:     } else {
                   2854:        $name=$names{'firstname'}.' '.$names{'middlename'}.' '.
                   2855: 	     $names{'lastname'}.' '.$names{'generation'};
                   2856:        $name=~s/\s+$//;
                   2857:        $name=~s/\s+/ /g;
                   2858:     }
                   2859:     return $name;
                   2860: }
                   2861: 
1.295     www      2862: sub getnames {
                   2863:     my ($uname,$udom)=@_;
1.537     albertel 2864:     return if (!defined($uname) || !defined($udom));
1.433     albertel 2865:     if ($udom eq 'public' && $uname eq 'public') {
                   2866: 	return ('lastname' => &mt('Public'));
                   2867:     }
1.295     www      2868:     my $id=$uname.':'.$udom;
                   2869:     my ($names,$cached)=&Apache::lonnet::is_cached_new('namescache',$id);
                   2870:     if ($cached) {
                   2871: 	return %{$names};
                   2872:     } else {
                   2873: 	my %loadnames=&Apache::lonnet::get('environment',
                   2874:                     ['firstname','middlename','lastname','generation','nickname'],
                   2875: 					 $udom,$uname);
                   2876: 	&Apache::lonnet::do_cache_new('namescache',$id,\%loadnames);
                   2877: 	return %loadnames;
                   2878:     }
                   2879: }
1.61      www      2880: 
1.542     raeburn  2881: # -------------------------------------------------------------------- getemails
1.648     raeburn  2882: 
1.542     raeburn  2883: =pod
                   2884: 
1.648     raeburn  2885: =item * &getemails($uname,$udom)
1.542     raeburn  2886: 
                   2887: Gets a user's email information and returns it as a hash with keys:
                   2888: notification, critnotification, permanentemail
                   2889: 
                   2890: For notification and critnotification, values are comma-separated lists 
1.648     raeburn  2891: of e-mail addresses; for permanentemail, value is a single e-mail address.
1.542     raeburn  2892:  
1.648     raeburn  2893: 
1.542     raeburn  2894: =cut
                   2895: 
1.648     raeburn  2896: 
1.466     albertel 2897: sub getemails {
                   2898:     my ($uname,$udom)=@_;
                   2899:     if ($udom eq 'public' && $uname eq 'public') {
                   2900: 	return;
                   2901:     }
1.467     www      2902:     if (!$udom) { $udom=$env{'user.domain'}; }
                   2903:     if (!$uname) { $uname=$env{'user.name'}; }
1.466     albertel 2904:     my $id=$uname.':'.$udom;
                   2905:     my ($names,$cached)=&Apache::lonnet::is_cached_new('emailscache',$id);
                   2906:     if ($cached) {
                   2907: 	return %{$names};
                   2908:     } else {
                   2909: 	my %loadnames=&Apache::lonnet::get('environment',
                   2910:                     			   ['notification','critnotification',
                   2911: 					    'permanentemail'],
                   2912: 					   $udom,$uname);
                   2913: 	&Apache::lonnet::do_cache_new('emailscache',$id,\%loadnames);
                   2914: 	return %loadnames;
                   2915:     }
                   2916: }
                   2917: 
1.551     albertel 2918: sub flush_email_cache {
                   2919:     my ($uname,$udom)=@_;
                   2920:     if (!$udom)  { $udom =$env{'user.domain'}; }
                   2921:     if (!$uname) { $uname=$env{'user.name'};   }
                   2922:     return if ($udom eq 'public' && $uname eq 'public');
                   2923:     my $id=$uname.':'.$udom;
                   2924:     &Apache::lonnet::devalidate_cache_new('emailscache',$id);
                   2925: }
                   2926: 
1.728     raeburn  2927: # -------------------------------------------------------------------- getlangs
                   2928: 
                   2929: =pod
                   2930: 
                   2931: =item * &getlangs($uname,$udom)
                   2932: 
                   2933: Gets a user's language preference and returns it as a hash with key:
                   2934: language.
                   2935: 
                   2936: =cut
                   2937: 
                   2938: 
                   2939: sub getlangs {
                   2940:     my ($uname,$udom) = @_;
                   2941:     if (!$udom)  { $udom =$env{'user.domain'}; }
                   2942:     if (!$uname) { $uname=$env{'user.name'};   }
                   2943:     my $id=$uname.':'.$udom;
                   2944:     my ($langs,$cached)=&Apache::lonnet::is_cached_new('userlangs',$id);
                   2945:     if ($cached) {
                   2946:         return %{$langs};
                   2947:     } else {
                   2948:         my %loadlangs=&Apache::lonnet::get('environment',['languages'],
                   2949:                                            $udom,$uname);
                   2950:         &Apache::lonnet::do_cache_new('userlangs',$id,\%loadlangs);
                   2951:         return %loadlangs;
                   2952:     }
                   2953: }
                   2954: 
                   2955: sub flush_langs_cache {
                   2956:     my ($uname,$udom)=@_;
                   2957:     if (!$udom)  { $udom =$env{'user.domain'}; }
                   2958:     if (!$uname) { $uname=$env{'user.name'};   }
                   2959:     return if ($udom eq 'public' && $uname eq 'public');
                   2960:     my $id=$uname.':'.$udom;
                   2961:     &Apache::lonnet::devalidate_cache_new('userlangs',$id);
                   2962: }
                   2963: 
1.61      www      2964: # ------------------------------------------------------------------ Screenname
1.81      albertel 2965: 
                   2966: =pod
                   2967: 
1.648     raeburn  2968: =item * &screenname($uname,$udom)
1.81      albertel 2969: 
                   2970: Gets a users screenname and returns it as a string
                   2971: 
                   2972: =cut
1.61      www      2973: 
                   2974: sub screenname {
                   2975:     my ($uname,$udom)=@_;
1.258     albertel 2976:     if ($uname eq $env{'user.name'} &&
                   2977: 	$udom eq $env{'user.domain'}) {return $env{'environment.screenname'};}
1.212     albertel 2978:     my %names=&Apache::lonnet::get('environment',['screenname'],$udom,$uname);
1.68      albertel 2979:     return $names{'screenname'};
1.62      www      2980: }
                   2981: 
1.212     albertel 2982: 
1.802     bisitz   2983: # ------------------------------------------------------------- Confirm Wrapper
                   2984: =pod
                   2985: 
                   2986: =item confirmwrapper
                   2987: 
                   2988: Wrap messages about completion of operation in box
                   2989: 
                   2990: =cut
                   2991: 
                   2992: sub confirmwrapper {
                   2993:     my ($message)=@_;
                   2994:     if ($message) {
                   2995:         return "\n".'<div class="LC_confirm_box">'."\n"
                   2996:                .$message."\n"
                   2997:                .'</div>'."\n";
                   2998:     } else {
                   2999:         return $message;
                   3000:     }
                   3001: }
                   3002: 
1.62      www      3003: # ------------------------------------------------------------- Message Wrapper
                   3004: 
                   3005: sub messagewrapper {
1.369     www      3006:     my ($link,$username,$domain,$subject,$text)=@_;
1.62      www      3007:     return 
1.441     albertel 3008:         '<a href="/adm/email?compose=individual&amp;'.
                   3009:         'recname='.$username.'&amp;recdom='.$domain.
                   3010: 	'&amp;subject='.&escape($subject).'&amp;text='.&escape($text).'" '.
1.200     matthew  3011:         'title="'.&mt('Send message').'">'.$link.'</a>';
1.74      www      3012: }
1.802     bisitz   3013: 
1.74      www      3014: # --------------------------------------------------------------- Notes Wrapper
                   3015: 
                   3016: sub noteswrapper {
                   3017:     my ($link,$un,$do)=@_;
                   3018:     return 
1.896     amueller 3019: "<a href='/adm/email?recordftf=retrieve&amp;recname=$un&amp;recdom=$do'>$link</a>";
1.62      www      3020: }
1.802     bisitz   3021: 
1.62      www      3022: # ------------------------------------------------------------- Aboutme Wrapper
                   3023: 
                   3024: sub aboutmewrapper {
1.166     www      3025:     my ($link,$username,$domain,$target)=@_;
1.447     raeburn  3026:     if (!defined($username)  && !defined($domain)) {
                   3027:         return;
                   3028:     }
1.892     amueller 3029:     return '<a href="/adm/'.$domain.'/'.$username.'/aboutme?forcestudent=1"'.
1.756     weissno  3030: 	($target?' target="$target"':'').' title="'.&mt("View this user's personal information page").'">'.$link.'</a>';
1.62      www      3031: }
                   3032: 
                   3033: # ------------------------------------------------------------ Syllabus Wrapper
                   3034: 
                   3035: sub syllabuswrapper {
1.707     bisitz   3036:     my ($linktext,$coursedir,$domain)=@_;
1.208     matthew  3037:     return qq{<a href="/public/$domain/$coursedir/syllabus">$linktext</a>};
1.61      www      3038: }
1.14      harris41 3039: 
1.802     bisitz   3040: # -----------------------------------------------------------------------------
                   3041: 
1.208     matthew  3042: sub track_student_link {
1.887     raeburn  3043:     my ($linktext,$sname,$sdom,$target,$start,$only_body) = @_;
1.268     albertel 3044:     my $link ="/adm/trackstudent?";
1.208     matthew  3045:     my $title = 'View recent activity';
                   3046:     if (defined($sname) && $sname !~ /^\s*$/ &&
                   3047:         defined($sdom)  && $sdom  !~ /^\s*$/) {
1.268     albertel 3048:         $link .= "selected_student=$sname:$sdom";
1.208     matthew  3049:         $title .= ' of this student';
1.268     albertel 3050:     } 
1.208     matthew  3051:     if (defined($target) && $target !~ /^\s*$/) {
                   3052:         $target = qq{target="$target"};
                   3053:     } else {
                   3054:         $target = '';
                   3055:     }
1.268     albertel 3056:     if ($start) { $link.='&amp;start='.$start; }
1.887     raeburn  3057:     if ($only_body) { $link .= '&amp;only_body=1'; }
1.554     albertel 3058:     $title = &mt($title);
                   3059:     $linktext = &mt($linktext);
1.448     albertel 3060:     return qq{<a href="$link" title="$title" $target>$linktext</a>}.
                   3061: 	&help_open_topic('View_recent_activity');
1.208     matthew  3062: }
                   3063: 
1.781     raeburn  3064: sub slot_reservations_link {
                   3065:     my ($linktext,$sname,$sdom,$target) = @_;
                   3066:     my $link ="/adm/slotrequest?command=showresv&amp;origin=aboutme";
                   3067:     my $title = 'View slot reservation history';
                   3068:     if (defined($sname) && $sname !~ /^\s*$/ &&
                   3069:         defined($sdom)  && $sdom  !~ /^\s*$/) {
                   3070:         $link .= "&amp;uname=$sname&amp;udom=$sdom";
                   3071:         $title .= ' of this student';
                   3072:     }
                   3073:     if (defined($target) && $target !~ /^\s*$/) {
                   3074:         $target = qq{target="$target"};
                   3075:     } else {
                   3076:         $target = '';
                   3077:     }
                   3078:     $title = &mt($title);
                   3079:     $linktext = &mt($linktext);
                   3080:     return qq{<a href="$link" title="$title" $target>$linktext</a>};
                   3081: # FIXME uncomment when help item created: &help_open_topic('Slot_Reservation_History');
                   3082: 
                   3083: }
                   3084: 
1.508     www      3085: # ===================================================== Display a student photo
                   3086: 
                   3087: 
1.509     albertel 3088: sub student_image_tag {
1.508     www      3089:     my ($domain,$user)=@_;
                   3090:     my $imgsrc=&Apache::lonnet::studentphoto($domain,$user,'jpg');
                   3091:     if (($imgsrc) && ($imgsrc ne '/adm/lonKaputt/lonlogo_broken.gif')) {
                   3092: 	return '<img src="'.$imgsrc.'" align="right" />';
                   3093:     } else {
                   3094: 	return '';
                   3095:     }
                   3096: }
                   3097: 
1.112     bowersj2 3098: =pod
                   3099: 
                   3100: =back
                   3101: 
                   3102: =head1 Access .tab File Data
                   3103: 
                   3104: =over 4
                   3105: 
1.648     raeburn  3106: =item * &languageids() 
1.112     bowersj2 3107: 
                   3108: returns list of all language ids
                   3109: 
                   3110: =cut
                   3111: 
1.14      harris41 3112: sub languageids {
1.16      harris41 3113:     return sort(keys(%language));
1.14      harris41 3114: }
                   3115: 
1.112     bowersj2 3116: =pod
                   3117: 
1.648     raeburn  3118: =item * &languagedescription() 
1.112     bowersj2 3119: 
                   3120: returns description of a specified language id
                   3121: 
                   3122: =cut
                   3123: 
1.14      harris41 3124: sub languagedescription {
1.125     www      3125:     my $code=shift;
                   3126:     return  ($supported_language{$code}?'* ':'').
                   3127:             $language{$code}.
1.126     www      3128: 	    ($supported_language{$code}?' ('.&mt('interface available').')':'');
1.145     www      3129: }
                   3130: 
                   3131: sub plainlanguagedescription {
                   3132:     my $code=shift;
                   3133:     return $language{$code};
                   3134: }
                   3135: 
                   3136: sub supportedlanguagecode {
                   3137:     my $code=shift;
                   3138:     return $supported_language{$code};
1.97      www      3139: }
                   3140: 
1.112     bowersj2 3141: =pod
                   3142: 
1.648     raeburn  3143: =item * &copyrightids() 
1.112     bowersj2 3144: 
                   3145: returns list of all copyrights
                   3146: 
                   3147: =cut
                   3148: 
                   3149: sub copyrightids {
                   3150:     return sort(keys(%cprtag));
                   3151: }
                   3152: 
                   3153: =pod
                   3154: 
1.648     raeburn  3155: =item * &copyrightdescription() 
1.112     bowersj2 3156: 
                   3157: returns description of a specified copyright id
                   3158: 
                   3159: =cut
                   3160: 
                   3161: sub copyrightdescription {
1.166     www      3162:     return &mt($cprtag{shift(@_)});
1.112     bowersj2 3163: }
1.197     matthew  3164: 
                   3165: =pod
                   3166: 
1.648     raeburn  3167: =item * &source_copyrightids() 
1.192     taceyjo1 3168: 
                   3169: returns list of all source copyrights
                   3170: 
                   3171: =cut
                   3172: 
                   3173: sub source_copyrightids {
                   3174:     return sort(keys(%scprtag));
                   3175: }
                   3176: 
                   3177: =pod
                   3178: 
1.648     raeburn  3179: =item * &source_copyrightdescription() 
1.192     taceyjo1 3180: 
                   3181: returns description of a specified source copyright id
                   3182: 
                   3183: =cut
                   3184: 
                   3185: sub source_copyrightdescription {
                   3186:     return &mt($scprtag{shift(@_)});
                   3187: }
1.112     bowersj2 3188: 
                   3189: =pod
                   3190: 
1.648     raeburn  3191: =item * &filecategories() 
1.112     bowersj2 3192: 
                   3193: returns list of all file categories
                   3194: 
                   3195: =cut
                   3196: 
                   3197: sub filecategories {
                   3198:     return sort(keys(%category_extensions));
                   3199: }
                   3200: 
                   3201: =pod
                   3202: 
1.648     raeburn  3203: =item * &filecategorytypes() 
1.112     bowersj2 3204: 
                   3205: returns list of file types belonging to a given file
                   3206: category
                   3207: 
                   3208: =cut
                   3209: 
                   3210: sub filecategorytypes {
1.356     albertel 3211:     my ($cat) = @_;
                   3212:     return @{$category_extensions{lc($cat)}};
1.112     bowersj2 3213: }
                   3214: 
                   3215: =pod
                   3216: 
1.648     raeburn  3217: =item * &fileembstyle() 
1.112     bowersj2 3218: 
                   3219: returns embedding style for a specified file type
                   3220: 
                   3221: =cut
                   3222: 
                   3223: sub fileembstyle {
                   3224:     return $fe{lc(shift(@_))};
1.169     www      3225: }
                   3226: 
1.351     www      3227: sub filemimetype {
                   3228:     return $fm{lc(shift(@_))};
                   3229: }
                   3230: 
1.169     www      3231: 
                   3232: sub filecategoryselect {
                   3233:     my ($name,$value)=@_;
1.189     matthew  3234:     return &select_form($value,$name,
1.169     www      3235: 			'' => &mt('Any category'),
                   3236: 			map { $_,$_ } sort(keys(%category_extensions)));
1.112     bowersj2 3237: }
                   3238: 
                   3239: =pod
                   3240: 
1.648     raeburn  3241: =item * &filedescription() 
1.112     bowersj2 3242: 
                   3243: returns description for a specified file type
                   3244: 
                   3245: =cut
                   3246: 
                   3247: sub filedescription {
1.188     matthew  3248:     my $file_description = $fd{lc(shift())};
                   3249:     $file_description =~ s:([\[\]]):~$1:g;
                   3250:     return &mt($file_description);
1.112     bowersj2 3251: }
                   3252: 
                   3253: =pod
                   3254: 
1.648     raeburn  3255: =item * &filedescriptionex() 
1.112     bowersj2 3256: 
                   3257: returns description for a specified file type with
                   3258: extra formatting
                   3259: 
                   3260: =cut
                   3261: 
                   3262: sub filedescriptionex {
                   3263:     my $ex=shift;
1.188     matthew  3264:     my $file_description = $fd{lc($ex)};
                   3265:     $file_description =~ s:([\[\]]):~$1:g;
                   3266:     return '.'.$ex.' '.&mt($file_description);
1.112     bowersj2 3267: }
                   3268: 
                   3269: # End of .tab access
                   3270: =pod
                   3271: 
                   3272: =back
                   3273: 
                   3274: =cut
                   3275: 
                   3276: # ------------------------------------------------------------------ File Types
                   3277: sub fileextensions {
                   3278:     return sort(keys(%fe));
                   3279: }
                   3280: 
1.97      www      3281: # ----------------------------------------------------------- Display Languages
                   3282: # returns a hash with all desired display languages
                   3283: #
                   3284: 
                   3285: sub display_languages {
                   3286:     my %languages=();
1.695     raeburn  3287:     foreach my $lang (&Apache::lonlocal::preferred_languages()) {
1.356     albertel 3288: 	$languages{$lang}=1;
1.97      www      3289:     }
                   3290:     &get_unprocessed_cgi($ENV{'QUERY_STRING'},['displaylanguage']);
1.258     albertel 3291:     if ($env{'form.displaylanguage'}) {
1.356     albertel 3292: 	foreach my $lang (split(/\s*(\,|\;|\:)\s*/,$env{'form.displaylanguage'})) {
                   3293: 	    $languages{$lang}=1;
1.97      www      3294:         }
                   3295:     }
                   3296:     return %languages;
1.14      harris41 3297: }
                   3298: 
1.582     albertel 3299: sub languages {
                   3300:     my ($possible_langs) = @_;
1.695     raeburn  3301:     my @preferred_langs = &Apache::lonlocal::preferred_languages();
1.582     albertel 3302:     if (!ref($possible_langs)) {
                   3303: 	if( wantarray ) {
                   3304: 	    return @preferred_langs;
                   3305: 	} else {
                   3306: 	    return $preferred_langs[0];
                   3307: 	}
                   3308:     }
                   3309:     my %possibilities = map { $_ => 1 } (@$possible_langs);
                   3310:     my @preferred_possibilities;
                   3311:     foreach my $preferred_lang (@preferred_langs) {
                   3312: 	if (exists($possibilities{$preferred_lang})) {
                   3313: 	    push(@preferred_possibilities, $preferred_lang);
                   3314: 	}
                   3315:     }
                   3316:     if( wantarray ) {
                   3317: 	return @preferred_possibilities;
                   3318:     }
                   3319:     return $preferred_possibilities[0];
                   3320: }
                   3321: 
1.742     raeburn  3322: sub user_lang {
                   3323:     my ($touname,$toudom,$fromcid) = @_;
                   3324:     my @userlangs;
                   3325:     if (($fromcid ne '') && ($env{'course.'.$fromcid.'.languages'} ne '')) {
                   3326:         @userlangs=(@userlangs,split(/\s*(\,|\;|\:)\s*/,
                   3327:                     $env{'course.'.$fromcid.'.languages'}));
                   3328:     } else {
                   3329:         my %langhash = &getlangs($touname,$toudom);
                   3330:         if ($langhash{'languages'} ne '') {
                   3331:             @userlangs = split(/\s*(\,|\;|\:)\s*/,$langhash{'languages'});
                   3332:         } else {
                   3333:             my %domdefs = &Apache::lonnet::get_domain_defaults($toudom);
                   3334:             if ($domdefs{'lang_def'} ne '') {
                   3335:                 @userlangs = ($domdefs{'lang_def'});
                   3336:             }
                   3337:         }
                   3338:     }
                   3339:     my @languages=&Apache::lonlocal::get_genlanguages(@userlangs);
                   3340:     my $user_lh = Apache::localize->get_handle(@languages);
                   3341:     return $user_lh;
                   3342: }
                   3343: 
                   3344: 
1.112     bowersj2 3345: ###############################################################
                   3346: ##               Student Answer Attempts                     ##
                   3347: ###############################################################
                   3348: 
                   3349: =pod
                   3350: 
                   3351: =head1 Alternate Problem Views
                   3352: 
                   3353: =over 4
                   3354: 
1.648     raeburn  3355: =item * &get_previous_attempt($symb, $username, $domain, $course,
1.112     bowersj2 3356:     $getattempt, $regexp, $gradesub)
                   3357: 
                   3358: Return string with previous attempt on problem. Arguments:
                   3359: 
                   3360: =over 4
                   3361: 
                   3362: =item * $symb: Problem, including path
                   3363: 
                   3364: =item * $username: username of the desired student
                   3365: 
                   3366: =item * $domain: domain of the desired student
1.14      harris41 3367: 
1.112     bowersj2 3368: =item * $course: Course ID
1.14      harris41 3369: 
1.112     bowersj2 3370: =item * $getattempt: Leave blank for all attempts, otherwise put
                   3371:     something
1.14      harris41 3372: 
1.112     bowersj2 3373: =item * $regexp: if string matches this regexp, the string will be
                   3374:     sent to $gradesub
1.14      harris41 3375: 
1.112     bowersj2 3376: =item * $gradesub: routine that processes the string if it matches $regexp
1.14      harris41 3377: 
1.112     bowersj2 3378: =back
1.14      harris41 3379: 
1.112     bowersj2 3380: The output string is a table containing all desired attempts, if any.
1.16      harris41 3381: 
1.112     bowersj2 3382: =cut
1.1       albertel 3383: 
                   3384: sub get_previous_attempt {
1.43      ng       3385:   my ($symb,$username,$domain,$course,$getattempt,$regexp,$gradesub)=@_;
1.1       albertel 3386:   my $prevattempts='';
1.43      ng       3387:   no strict 'refs';
1.1       albertel 3388:   if ($symb) {
1.3       albertel 3389:     my (%returnhash)=
                   3390:       &Apache::lonnet::restore($symb,$course,$domain,$username);
1.1       albertel 3391:     if ($returnhash{'version'}) {
                   3392:       my %lasthash=();
                   3393:       my $version;
                   3394:       for ($version=1;$version<=$returnhash{'version'};$version++) {
1.356     albertel 3395:         foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
                   3396: 	  $lasthash{$key}=$returnhash{$version.':'.$key};
1.19      harris41 3397:         }
1.1       albertel 3398:       }
1.596     albertel 3399:       $prevattempts=&start_data_table().&start_data_table_header_row();
                   3400:       $prevattempts.='<th>'.&mt('History').'</th>';
1.945     raeburn  3401:       my %typeparts;
                   3402:       my $showsurv=&Apache::lonnet::allowed('vas',$env{'request.course.id'});
1.356     albertel 3403:       foreach my $key (sort(keys(%lasthash))) {
                   3404: 	my ($ign,@parts) = split(/\./,$key);
1.41      ng       3405: 	if ($#parts > 0) {
1.31      albertel 3406: 	  my $data=$parts[-1];
                   3407: 	  pop(@parts);
1.945     raeburn  3408:           if ($data eq 'type') {
                   3409:               unless ($showsurv) {
                   3410:                   my $id = join(',',@parts);
                   3411:                   $typeparts{$ign.'.'.$id} = $lasthash{$key};
                   3412:               }
                   3413:               delete($lasthash{$key});
                   3414:           } else {
                   3415: 	      $prevattempts.='<th>'.&mt('Part ').join('.',@parts).'<br />'.$data.'&nbsp;</th>';
                   3416:           }
1.31      albertel 3417: 	} else {
1.41      ng       3418: 	  if ($#parts == 0) {
                   3419: 	    $prevattempts.='<th>'.$parts[0].'</th>';
                   3420: 	  } else {
                   3421: 	    $prevattempts.='<th>'.$ign.'</th>';
                   3422: 	  }
1.31      albertel 3423: 	}
1.16      harris41 3424:       }
1.596     albertel 3425:       $prevattempts.=&end_data_table_header_row();
1.945     raeburn  3426:       my %lasthidden;
1.40      ng       3427:       if ($getattempt eq '') {
                   3428: 	for ($version=1;$version<=$returnhash{'version'};$version++) {
1.945     raeburn  3429:             my @hidden;
                   3430:             if (%typeparts) {
                   3431:                 foreach my $id (keys(%typeparts)) {
                   3432:                     if (($returnhash{$version.':'.$id.'.type'} eq 'anonsurvey') || ($returnhash{$version.':'.$id.'.type'} eq 'anonsurveycred')) {
                   3433:                         push(@hidden,$id);
                   3434:                         $lasthidden{$id} = 1;
                   3435:                     } elsif ($lasthidden{$id}) {
                   3436:                         if (exists($returnhash{$version.':'.$id.'.award'})) {
                   3437:                             delete($lasthidden{$id});
                   3438:                         }
                   3439:                     }
                   3440:                 }
                   3441:             }
                   3442:             $prevattempts.=&start_data_table_row().
                   3443:                            '<td>'.&mt('Transaction [_1]',$version).'</td>';
                   3444:             if (@hidden) {
                   3445:                 foreach my $key (sort(keys(%lasthash))) {
                   3446:                     my $hide;
                   3447:                     foreach my $id (@hidden) {
                   3448:                         if ($key =~ /^\Q$id\E/) {
                   3449:                             $hide = 1;
                   3450:                             last;
                   3451:                         }
                   3452:                     }
                   3453:                     if ($hide) {
                   3454:                         my ($id,$data) = ($key =~ /^(.+)\.([^.]+)$/);
                   3455:                         if (($data eq 'award') || ($data eq 'awarddetail')) {
                   3456:                             my $value = &format_previous_attempt_value($key,
                   3457:                                              $returnhash{$version.':'.$key});
                   3458:                             $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3459:                         } else {
                   3460:                             $prevattempts.='<td>&nbsp;</td>';
                   3461:                         }
                   3462:                     } else {
                   3463:                         if ($key =~ /\./) {
                   3464:                             my $value = &format_previous_attempt_value($key,
                   3465:                                               $returnhash{$version.':'.$key});
                   3466:                             $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3467:                         } else {
                   3468:                             $prevattempts.='<td>&nbsp;</td>';
                   3469:                         }
                   3470:                     }
                   3471:                 }
                   3472:             } else {
                   3473: 	        foreach my $key (sort(keys(%lasthash))) {
                   3474: 		    my $value = &format_previous_attempt_value($key,
                   3475: 			            $returnhash{$version.':'.$key});
                   3476: 		    $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3477: 	        }
                   3478:             }
                   3479: 	    $prevattempts.=&end_data_table_row();
1.40      ng       3480: 	 }
1.1       albertel 3481:       }
1.945     raeburn  3482:       my @currhidden = keys(%lasthidden);
1.596     albertel 3483:       $prevattempts.=&start_data_table_row().'<td>'.&mt('Current').'</td>';
1.356     albertel 3484:       foreach my $key (sort(keys(%lasthash))) {
1.945     raeburn  3485:           if (%typeparts) {
                   3486:               my $hidden;
                   3487:               foreach my $id (@currhidden) {
                   3488:                   if ($key =~ /^\Q$id\E/) {
                   3489:                       $hidden = 1;
                   3490:                       last;
                   3491:                   }
                   3492:               }
                   3493:               if ($hidden) {
                   3494:                   my ($id,$data) = ($key =~ /^(.+)\.([^.]+)$/);
                   3495:                   if (($data eq 'award') || ($data eq 'awarddetail')) {
                   3496:                       my $value = &format_previous_attempt_value($key,$lasthash{$key});
                   3497:                       if ($key =~/$regexp$/ && (defined &$gradesub)) {
                   3498:                           $value = &$gradesub($value);
                   3499:                       }
                   3500:                       $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3501:                   } else {
                   3502:                       $prevattempts.='<td>&nbsp;</td>';
                   3503:                   }
                   3504:               } else {
                   3505:                   my $value = &format_previous_attempt_value($key,$lasthash{$key});
                   3506:                   if ($key =~/$regexp$/ && (defined &$gradesub)) {
                   3507:                       $value = &$gradesub($value);
                   3508:                   }
                   3509:                   $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3510:               }
                   3511:           } else {
                   3512: 	      my $value = &format_previous_attempt_value($key,$lasthash{$key});
                   3513: 	      if ($key =~/$regexp$/ && (defined &$gradesub)) {
                   3514:                   $value = &$gradesub($value);
                   3515:               }
                   3516: 	      $prevattempts.='<td>'.$value.'&nbsp;</td>';
                   3517:           }
1.16      harris41 3518:       }
1.596     albertel 3519:       $prevattempts.= &end_data_table_row().&end_data_table();
1.1       albertel 3520:     } else {
1.596     albertel 3521:       $prevattempts=
                   3522: 	  &start_data_table().&start_data_table_row().
                   3523: 	  '<td>'.&mt('Nothing submitted - no attempts.').'</td>'.
                   3524: 	  &end_data_table_row().&end_data_table();
1.1       albertel 3525:     }
                   3526:   } else {
1.596     albertel 3527:     $prevattempts=
                   3528: 	  &start_data_table().&start_data_table_row().
                   3529: 	  '<td>'.&mt('No data.').'</td>'.
                   3530: 	  &end_data_table_row().&end_data_table();
1.1       albertel 3531:   }
1.10      albertel 3532: }
                   3533: 
1.581     albertel 3534: sub format_previous_attempt_value {
                   3535:     my ($key,$value) = @_;
                   3536:     if ($key =~ /timestamp/) {
                   3537: 	$value = &Apache::lonlocal::locallocaltime($value);
                   3538:     } elsif (ref($value) eq 'ARRAY') {
                   3539: 	$value = '('.join(', ', @{ $value }).')';
                   3540:     } else {
                   3541: 	$value = &unescape($value);
                   3542:     }
                   3543:     return $value;
                   3544: }
                   3545: 
                   3546: 
1.107     albertel 3547: sub relative_to_absolute {
                   3548:     my ($url,$output)=@_;
                   3549:     my $parser=HTML::TokeParser->new(\$output);
                   3550:     my $token;
                   3551:     my $thisdir=$url;
                   3552:     my @rlinks=();
                   3553:     while ($token=$parser->get_token) {
                   3554: 	if ($token->[0] eq 'S') {
                   3555: 	    if ($token->[1] eq 'a') {
                   3556: 		if ($token->[2]->{'href'}) {
                   3557: 		    $rlinks[$#rlinks+1]=$token->[2]->{'href'};
                   3558: 		}
                   3559: 	    } elsif ($token->[1] eq 'img' || $token->[1] eq 'embed' ) {
                   3560: 		$rlinks[$#rlinks+1]=$token->[2]->{'src'};
                   3561: 	    } elsif ($token->[1] eq 'base') {
                   3562: 		$thisdir=$token->[2]->{'href'};
                   3563: 	    }
                   3564: 	}
                   3565:     }
                   3566:     $thisdir=~s-/[^/]*$--;
1.356     albertel 3567:     foreach my $link (@rlinks) {
1.726     raeburn  3568: 	unless (($link=~/^https?\:\/\//i) ||
1.356     albertel 3569: 		($link=~/^\//) ||
                   3570: 		($link=~/^javascript:/i) ||
                   3571: 		($link=~/^mailto:/i) ||
                   3572: 		($link=~/^\#/)) {
                   3573: 	    my $newlocation=&Apache::lonnet::hreflocation($thisdir,$link);
                   3574: 	    $output=~s/(\"|\'|\=\s*)\Q$link\E(\"|\'|\s|\>)/$1$newlocation$2/;
1.107     albertel 3575: 	}
                   3576:     }
                   3577: # -------------------------------------------------- Deal with Applet codebases
                   3578:     $output=~s/(\<applet[^\>]+)(codebase\=[^\S\>]+)*([^\>]*)\>/$1.($2?$2:' codebase="'.$thisdir.'"').$3.'>'/gei;
                   3579:     return $output;
                   3580: }
                   3581: 
1.112     bowersj2 3582: =pod
                   3583: 
1.648     raeburn  3584: =item * &get_student_view()
1.112     bowersj2 3585: 
                   3586: show a snapshot of what student was looking at
                   3587: 
                   3588: =cut
                   3589: 
1.10      albertel 3590: sub get_student_view {
1.186     albertel 3591:   my ($symb,$username,$domain,$courseid,$target,$moreenv) = @_;
1.114     www      3592:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
1.186     albertel 3593:   my (%form);
1.10      albertel 3594:   my @elements=('symb','courseid','domain','username');
                   3595:   foreach my $element (@elements) {
1.186     albertel 3596:       $form{'grade_'.$element}=eval '$'.$element #'
1.10      albertel 3597:   }
1.186     albertel 3598:   if (defined($moreenv)) {
                   3599:       %form=(%form,%{$moreenv});
                   3600:   }
1.236     albertel 3601:   if (defined($target)) { $form{'grade_target'} = $target; }
1.107     albertel 3602:   $feedurl=&Apache::lonnet::clutter($feedurl);
1.650     www      3603:   my ($userview,$response)=&Apache::lonnet::ssi_body($feedurl,%form);
1.11      albertel 3604:   $userview=~s/\<body[^\>]*\>//gi;
                   3605:   $userview=~s/\<\/body\>//gi;
                   3606:   $userview=~s/\<html\>//gi;
                   3607:   $userview=~s/\<\/html\>//gi;
                   3608:   $userview=~s/\<head\>//gi;
                   3609:   $userview=~s/\<\/head\>//gi;
                   3610:   $userview=~s/action\s*\=/would_be_action\=/gi;
1.107     albertel 3611:   $userview=&relative_to_absolute($feedurl,$userview);
1.650     www      3612:   if (wantarray) {
                   3613:      return ($userview,$response);
                   3614:   } else {
                   3615:      return $userview;
                   3616:   }
                   3617: }
                   3618: 
                   3619: sub get_student_view_with_retries {
                   3620:   my ($symb,$retries,$username,$domain,$courseid,$target,$moreenv) = @_;
                   3621: 
                   3622:     my $ok = 0;                 # True if we got a good response.
                   3623:     my $content;
                   3624:     my $response;
                   3625: 
                   3626:     # Try to get the student_view done. within the retries count:
                   3627:     
                   3628:     do {
                   3629:          ($content, $response) = &get_student_view($symb,$username,$domain,$courseid,$target,$moreenv);
                   3630:          $ok      = $response->is_success;
                   3631:          if (!$ok) {
                   3632:             &Apache::lonnet::logthis("Failed get_student_view_with_retries on $symb: ".$response->is_success.', '.$response->code.', '.$response->message);
                   3633:          }
                   3634:          $retries--;
                   3635:     } while (!$ok && ($retries > 0));
                   3636:     
                   3637:     if (!$ok) {
                   3638:        $content = '';          # On error return an empty content.
                   3639:     }
1.651     www      3640:     if (wantarray) {
                   3641:        return ($content, $response);
                   3642:     } else {
                   3643:        return $content;
                   3644:     }
1.11      albertel 3645: }
                   3646: 
1.112     bowersj2 3647: =pod
                   3648: 
1.648     raeburn  3649: =item * &get_student_answers() 
1.112     bowersj2 3650: 
                   3651: show a snapshot of how student was answering problem
                   3652: 
                   3653: =cut
                   3654: 
1.11      albertel 3655: sub get_student_answers {
1.100     sakharuk 3656:   my ($symb,$username,$domain,$courseid,%form) = @_;
1.114     www      3657:   my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
1.186     albertel 3658:   my (%moreenv);
1.11      albertel 3659:   my @elements=('symb','courseid','domain','username');
                   3660:   foreach my $element (@elements) {
1.186     albertel 3661:     $moreenv{'grade_'.$element}=eval '$'.$element #'
1.10      albertel 3662:   }
1.186     albertel 3663:   $moreenv{'grade_target'}='answer';
                   3664:   %moreenv=(%form,%moreenv);
1.497     raeburn  3665:   $feedurl = &Apache::lonnet::clutter($feedurl);
                   3666:   my $userview=&Apache::lonnet::ssi($feedurl,%moreenv);
1.10      albertel 3667:   return $userview;
1.1       albertel 3668: }
1.116     albertel 3669: 
                   3670: =pod
                   3671: 
                   3672: =item * &submlink()
                   3673: 
1.242     albertel 3674: Inputs: $text $uname $udom $symb $target
1.116     albertel 3675: 
                   3676: Returns: A link to grades.pm such as to see the SUBM view of a student
                   3677: 
                   3678: =cut
                   3679: 
                   3680: ###############################################
                   3681: sub submlink {
1.242     albertel 3682:     my ($text,$uname,$udom,$symb,$target)=@_;
1.116     albertel 3683:     if (!($uname && $udom)) {
                   3684: 	(my $cursymb, my $courseid,$udom,$uname)=
1.463     albertel 3685: 	    &Apache::lonnet::whichuser($symb);
1.116     albertel 3686: 	if (!$symb) { $symb=$cursymb; }
                   3687:     }
1.254     matthew  3688:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
1.369     www      3689:     $symb=&escape($symb);
1.960     bisitz   3690:     if ($target) { $target=" target=\"$target\""; }
                   3691:     return
                   3692:         '<a href="/adm/grades?command=submission'.
                   3693:         '&amp;symb='.$symb.
                   3694:         '&amp;student='.$uname.
                   3695:         '&amp;userdom='.$udom.'"'.
                   3696:         $target.'>'.$text.'</a>';
1.242     albertel 3697: }
                   3698: ##############################################
                   3699: 
                   3700: =pod
                   3701: 
                   3702: =item * &pgrdlink()
                   3703: 
                   3704: Inputs: $text $uname $udom $symb $target
                   3705: 
                   3706: Returns: A link to grades.pm such as to see the PGRD view of a student
                   3707: 
                   3708: =cut
                   3709: 
                   3710: ###############################################
                   3711: sub pgrdlink {
                   3712:     my $link=&submlink(@_);
                   3713:     $link=~s/(&command=submission)/$1&showgrading=yes/;
                   3714:     return $link;
                   3715: }
                   3716: ##############################################
                   3717: 
                   3718: =pod
                   3719: 
                   3720: =item * &pprmlink()
                   3721: 
                   3722: Inputs: $text $uname $udom $symb $target
                   3723: 
                   3724: Returns: A link to parmset.pm such as to see the PPRM view of a
1.283     albertel 3725: student and a specific resource
1.242     albertel 3726: 
                   3727: =cut
                   3728: 
                   3729: ###############################################
                   3730: sub pprmlink {
                   3731:     my ($text,$uname,$udom,$symb,$target)=@_;
                   3732:     if (!($uname && $udom)) {
                   3733: 	(my $cursymb, my $courseid,$udom,$uname)=
1.463     albertel 3734: 	    &Apache::lonnet::whichuser($symb);
1.242     albertel 3735: 	if (!$symb) { $symb=$cursymb; }
                   3736:     }
1.254     matthew  3737:     if (!$symb) { $symb=&Apache::lonnet::symbread(); }
1.369     www      3738:     $symb=&escape($symb);
1.242     albertel 3739:     if ($target) { $target="target=\"$target\""; }
1.595     albertel 3740:     return '<a href="/adm/parmset?command=set&amp;'.
                   3741: 	'symb='.$symb.'&amp;uname='.$uname.
                   3742: 	'&amp;udom='.$udom.'" '.$target.'>'.$text.'</a>';
1.116     albertel 3743: }
                   3744: ##############################################
1.37      matthew  3745: 
1.112     bowersj2 3746: =pod
                   3747: 
                   3748: =back
                   3749: 
                   3750: =cut
                   3751: 
1.37      matthew  3752: ###############################################
1.51      www      3753: 
                   3754: 
                   3755: sub timehash {
1.687     raeburn  3756:     my ($thistime) = @_;
                   3757:     my $timezone = &Apache::lonlocal::gettimezone();
                   3758:     my $dt = DateTime->from_epoch(epoch => $thistime)
                   3759:                      ->set_time_zone($timezone);
                   3760:     my $wday = $dt->day_of_week();
                   3761:     if ($wday == 7) { $wday = 0; }
                   3762:     return ( 'second' => $dt->second(),
                   3763:              'minute' => $dt->minute(),
                   3764:              'hour'   => $dt->hour(),
                   3765:              'day'     => $dt->day_of_month(),
                   3766:              'month'   => $dt->month(),
                   3767:              'year'    => $dt->year(),
                   3768:              'weekday' => $wday,
                   3769:              'dayyear' => $dt->day_of_year(),
                   3770:              'dlsav'   => $dt->is_dst() );
1.51      www      3771: }
                   3772: 
1.370     www      3773: sub utc_string {
                   3774:     my ($date)=@_;
1.371     www      3775:     return strftime("%Y%m%dT%H%M%SZ",gmtime($date));
1.370     www      3776: }
                   3777: 
1.51      www      3778: sub maketime {
                   3779:     my %th=@_;
1.687     raeburn  3780:     my ($epoch_time,$timezone,$dt);
                   3781:     $timezone = &Apache::lonlocal::gettimezone();
                   3782:     eval {
                   3783:         $dt = DateTime->new( year   => $th{'year'},
                   3784:                              month  => $th{'month'},
                   3785:                              day    => $th{'day'},
                   3786:                              hour   => $th{'hour'},
                   3787:                              minute => $th{'minute'},
                   3788:                              second => $th{'second'},
                   3789:                              time_zone => $timezone,
                   3790:                          );
                   3791:     };
                   3792:     if (!$@) {
                   3793:         $epoch_time = $dt->epoch;
                   3794:         if ($epoch_time) {
                   3795:             return $epoch_time;
                   3796:         }
                   3797:     }
1.51      www      3798:     return POSIX::mktime(
                   3799:         ($th{'seconds'},$th{'minutes'},$th{'hours'},
1.210     www      3800:          $th{'day'},$th{'month'}-1,$th{'year'}-1900,0,0,-1));
1.70      www      3801: }
                   3802: 
                   3803: #########################################
1.51      www      3804: 
                   3805: sub findallcourses {
1.482     raeburn  3806:     my ($roles,$uname,$udom) = @_;
1.355     albertel 3807:     my %roles;
                   3808:     if (ref($roles)) { %roles = map { $_ => 1 } @{$roles}; }
1.348     albertel 3809:     my %courses;
1.51      www      3810:     my $now=time;
1.482     raeburn  3811:     if (!defined($uname)) {
                   3812:         $uname = $env{'user.name'};
                   3813:     }
                   3814:     if (!defined($udom)) {
                   3815:         $udom = $env{'user.domain'};
                   3816:     }
                   3817:     if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
                   3818:         my %roleshash = &Apache::lonnet::dump('roles',$udom,$uname);
                   3819:         if (!%roles) {
                   3820:             %roles = (
                   3821:                        cc => 1,
1.907     raeburn  3822:                        co => 1,
1.482     raeburn  3823:                        in => 1,
                   3824:                        ep => 1,
                   3825:                        ta => 1,
                   3826:                        cr => 1,
                   3827:                        st => 1,
                   3828:              );
                   3829:         }
                   3830:         foreach my $entry (keys(%roleshash)) {
                   3831:             my ($trole,$tend,$tstart) = split(/_/,$roleshash{$entry});
                   3832:             if ($trole =~ /^cr/) { 
                   3833:                 next if (!exists($roles{$trole}) && !exists($roles{'cr'}));
                   3834:             } else {
                   3835:                 next if (!exists($roles{$trole}));
                   3836:             }
                   3837:             if ($tend) {
                   3838:                 next if ($tend < $now);
                   3839:             }
                   3840:             if ($tstart) {
                   3841:                 next if ($tstart > $now);
                   3842:             }
                   3843:             my ($cdom,$cnum,$sec,$cnumpart,$secpart,$role,$realsec);
                   3844:             (undef,$cdom,$cnumpart,$secpart) = split(/\//,$entry);
                   3845:             if ($secpart eq '') {
                   3846:                 ($cnum,$role) = split(/_/,$cnumpart); 
                   3847:                 $sec = 'none';
                   3848:                 $realsec = '';
                   3849:             } else {
                   3850:                 $cnum = $cnumpart;
                   3851:                 ($sec,$role) = split(/_/,$secpart);
                   3852:                 $realsec = $sec;
1.490     raeburn  3853:             }
1.482     raeburn  3854:             $courses{$cdom.'_'.$cnum}{$sec} = $trole.'/'.$cdom.'/'.$cnum.'/'.$realsec;
                   3855:         }
                   3856:     } else {
                   3857:         foreach my $key (keys(%env)) {
1.483     albertel 3858: 	    if ( $key=~m{^user\.role\.(\w+)\./($match_domain)/($match_courseid)/?(\w*)$} ||
                   3859:                  $key=~m{^user\.role\.(cr/$match_domain/$match_username/\w+)\./($match_domain)/($match_courseid)/?(\w*)$}) {
1.482     raeburn  3860: 	        my ($role,$cdom,$cnum,$sec) = ($1,$2,$3,$4);
                   3861: 	        next if ($role eq 'ca' || $role eq 'aa');
                   3862: 	        next if (%roles && !exists($roles{$role}));
                   3863: 	        my ($starttime,$endtime)=split(/\./,$env{$key});
                   3864:                 my $active=1;
                   3865:                 if ($starttime) {
                   3866: 		    if ($now<$starttime) { $active=0; }
                   3867:                 }
                   3868:                 if ($endtime) {
                   3869:                     if ($now>$endtime) { $active=0; }
                   3870:                 }
                   3871:                 if ($active) {
                   3872:                     if ($sec eq '') {
                   3873:                         $sec = 'none';
                   3874:                     }
                   3875:                     $courses{$cdom.'_'.$cnum}{$sec} = 
                   3876:                                      $role.'/'.$cdom.'/'.$cnum.'/'.$sec;
1.474     raeburn  3877:                 }
                   3878:             }
1.51      www      3879:         }
                   3880:     }
1.474     raeburn  3881:     return %courses;
1.51      www      3882: }
1.37      matthew  3883: 
1.54      www      3884: ###############################################
1.474     raeburn  3885: 
                   3886: sub blockcheck {
1.482     raeburn  3887:     my ($setters,$activity,$uname,$udom) = @_;
1.490     raeburn  3888: 
                   3889:     if (!defined($udom)) {
                   3890:         $udom = $env{'user.domain'};
                   3891:     }
                   3892:     if (!defined($uname)) {
                   3893:         $uname = $env{'user.name'};
                   3894:     }
                   3895: 
                   3896:     # If uname and udom are for a course, check for blocks in the course.
                   3897: 
                   3898:     if (&Apache::lonnet::is_course($udom,$uname)) {
                   3899:         my %records = &Apache::lonnet::dump('comm_block',$udom,$uname);
1.502     raeburn  3900:         my ($startblock,$endblock)=&get_blocks($setters,$activity,$udom,$uname);
1.490     raeburn  3901:         return ($startblock,$endblock);
                   3902:     }
1.474     raeburn  3903: 
1.502     raeburn  3904:     my $startblock = 0;
                   3905:     my $endblock = 0;
1.482     raeburn  3906:     my %live_courses = &findallcourses(undef,$uname,$udom);
1.474     raeburn  3907: 
1.490     raeburn  3908:     # If uname is for a user, and activity is course-specific, i.e.,
                   3909:     # boards, chat or groups, check for blocking in current course only.
1.474     raeburn  3910: 
1.490     raeburn  3911:     if (($activity eq 'boards' || $activity eq 'chat' ||
                   3912:          $activity eq 'groups') && ($env{'request.course.id'})) {
                   3913:         foreach my $key (keys(%live_courses)) {
                   3914:             if ($key ne $env{'request.course.id'}) {
                   3915:                 delete($live_courses{$key});
                   3916:             }
                   3917:         }
                   3918:     }
                   3919: 
                   3920:     my $otheruser = 0;
                   3921:     my %own_courses;
                   3922:     if ((($uname ne $env{'user.name'})) || ($udom ne $env{'user.domain'})) {
                   3923:         # Resource belongs to user other than current user.
                   3924:         $otheruser = 1;
                   3925:         # Gather courses for current user
                   3926:         %own_courses = 
                   3927:             &findallcourses(undef,$env{'user.name'},$env{'user.domain'});
                   3928:     }
                   3929: 
                   3930:     # Gather active course roles - course coordinator, instructor, 
                   3931:     # exam proctor, ta, student, or custom role.
1.474     raeburn  3932: 
                   3933:     foreach my $course (keys(%live_courses)) {
1.482     raeburn  3934:         my ($cdom,$cnum);
                   3935:         if ((defined($env{'course.'.$course.'.domain'})) && (defined($env{'course.'.$course.'.num'}))) {
                   3936:             $cdom = $env{'course.'.$course.'.domain'};
                   3937:             $cnum = $env{'course.'.$course.'.num'};
                   3938:         } else {
1.490     raeburn  3939:             ($cdom,$cnum) = split(/_/,$course); 
1.482     raeburn  3940:         }
                   3941:         my $no_ownblock = 0;
                   3942:         my $no_userblock = 0;
1.533     raeburn  3943:         if ($otheruser && $activity ne 'com') {
1.490     raeburn  3944:             # Check if current user has 'evb' priv for this
                   3945:             if (defined($own_courses{$course})) {
                   3946:                 foreach my $sec (keys(%{$own_courses{$course}})) {
                   3947:                     my $checkrole = 'cm./'.$cdom.'/'.$cnum;
                   3948:                     if ($sec ne 'none') {
                   3949:                         $checkrole .= '/'.$sec;
                   3950:                     }
                   3951:                     if (&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) {
                   3952:                         $no_ownblock = 1;
                   3953:                         last;
                   3954:                     }
                   3955:                 }
                   3956:             }
                   3957:             # if they have 'evb' priv and are currently not playing student
                   3958:             next if (($no_ownblock) &&
                   3959:                  ($env{'request.role'} !~ m{^st\./$cdom/$cnum}));
                   3960:         }
1.474     raeburn  3961:         foreach my $sec (keys(%{$live_courses{$course}})) {
1.482     raeburn  3962:             my $checkrole = 'cm./'.$cdom.'/'.$cnum;
1.474     raeburn  3963:             if ($sec ne 'none') {
1.482     raeburn  3964:                 $checkrole .= '/'.$sec;
1.474     raeburn  3965:             }
1.490     raeburn  3966:             if ($otheruser) {
                   3967:                 # Resource belongs to user other than current user.
                   3968:                 # Assemble privs for that user, and check for 'evb' priv.
1.482     raeburn  3969:                 my ($trole,$tdom,$tnum,$tsec);
                   3970:                 my $entry = $live_courses{$course}{$sec};
                   3971:                 if ($entry =~ /^cr/) {
                   3972:                     ($trole,$tdom,$tnum,$tsec) = 
                   3973:                       ($entry =~ m|^(cr/$match_domain/$match_username/\w+)\./($match_domain)/($match_username)/?(\w*)$|);
                   3974:                 } else {
                   3975:                     ($trole,$tdom,$tnum,$tsec) = split(/\//,$entry);
                   3976:                 }
                   3977:                 my ($spec,$area,$trest,%allroles,%userroles);
                   3978:                 $area = '/'.$tdom.'/'.$tnum;
                   3979:                 $trest = $tnum;
                   3980:                 if ($tsec ne '') {
                   3981:                     $area .= '/'.$tsec;
                   3982:                     $trest .= '/'.$tsec;
                   3983:                 }
                   3984:                 $spec = $trole.'.'.$area;
                   3985:                 if ($trole =~ /^cr/) {
                   3986:                     &Apache::lonnet::custom_roleprivs(\%allroles,$trole,
                   3987:                                                       $tdom,$spec,$trest,$area);
                   3988:                 } else {
                   3989:                     &Apache::lonnet::standard_roleprivs(\%allroles,$trole,
                   3990:                                                        $tdom,$spec,$trest,$area);
                   3991:                 }
                   3992:                 my ($author,$adv) = &Apache::lonnet::set_userprivs(\%userroles,\%allroles);
1.486     raeburn  3993:                 if ($userroles{'user.priv.'.$checkrole} =~ /evb\&([^\:]*)/) {
                   3994:                     if ($1) {
                   3995:                         $no_userblock = 1;
                   3996:                         last;
                   3997:                     }
                   3998:                 }
1.490     raeburn  3999:             } else {
                   4000:                 # Resource belongs to current user
                   4001:                 # Check for 'evb' priv via lonnet::allowed().
1.482     raeburn  4002:                 if (&Apache::lonnet::allowed('evb',undef,undef,$checkrole)) {
                   4003:                     $no_ownblock = 1;
                   4004:                     last;
                   4005:                 }
1.474     raeburn  4006:             }
                   4007:         }
                   4008:         # if they have the evb priv and are currently not playing student
1.482     raeburn  4009:         next if (($no_ownblock) &&
1.491     albertel 4010:                  ($env{'request.role'} !~ m{^st\./\Q$cdom\E/\Q$cnum\E}));
1.482     raeburn  4011:         next if ($no_userblock);
1.474     raeburn  4012: 
1.866     kalberla 4013:         # Retrieve blocking times and identity of locker for course
1.490     raeburn  4014:         # of specified user, unless user has 'evb' privilege.
1.502     raeburn  4015:         
                   4016:         my ($start,$end)=&get_blocks($setters,$activity,$cdom,$cnum);
                   4017:         if (($start != 0) && 
                   4018:             (($startblock == 0) || ($startblock > $start))) {
                   4019:             $startblock = $start;
                   4020:         }
                   4021:         if (($end != 0)  &&
                   4022:             (($endblock == 0) || ($endblock < $end))) {
                   4023:             $endblock = $end;
                   4024:         }
1.490     raeburn  4025:     }
                   4026:     return ($startblock,$endblock);
                   4027: }
                   4028: 
                   4029: sub get_blocks {
                   4030:     my ($setters,$activity,$cdom,$cnum) = @_;
                   4031:     my $startblock = 0;
                   4032:     my $endblock = 0;
                   4033:     my $course = $cdom.'_'.$cnum;
                   4034:     $setters->{$course} = {};
                   4035:     $setters->{$course}{'staff'} = [];
                   4036:     $setters->{$course}{'times'} = [];
                   4037:     my %records = &Apache::lonnet::dump('comm_block',$cdom,$cnum);
                   4038:     foreach my $record (keys(%records)) {
                   4039:         my ($start,$end) = ($record =~ m/^(\d+)____(\d+)$/);
                   4040:         if ($start <= time && $end >= time) {
                   4041:             my ($staff_name,$staff_dom,$title,$blocks) =
                   4042:                 &parse_block_record($records{$record});
                   4043:             if ($blocks->{$activity} eq 'on') {
                   4044:                 push(@{$$setters{$course}{'staff'}},[$staff_name,$staff_dom]);
                   4045:                 push(@{$$setters{$course}{'times'}}, [$start,$end]);
1.491     albertel 4046:                 if ( ($startblock == 0) || ($startblock > $start) ) {
                   4047:                     $startblock = $start;
1.490     raeburn  4048:                 }
1.491     albertel 4049:                 if ( ($endblock == 0) || ($endblock < $end) ) {
                   4050:                     $endblock = $end;
1.474     raeburn  4051:                 }
                   4052:             }
                   4053:         }
                   4054:     }
                   4055:     return ($startblock,$endblock);
                   4056: }
                   4057: 
                   4058: sub parse_block_record {
                   4059:     my ($record) = @_;
                   4060:     my ($setuname,$setudom,$title,$blocks);
                   4061:     if (ref($record) eq 'HASH') {
                   4062:         ($setuname,$setudom) = split(/:/,$record->{'setter'});
                   4063:         $title = &unescape($record->{'event'});
                   4064:         $blocks = $record->{'blocks'};
                   4065:     } else {
                   4066:         my @data = split(/:/,$record,3);
                   4067:         if (scalar(@data) eq 2) {
                   4068:             $title = $data[1];
                   4069:             ($setuname,$setudom) = split(/@/,$data[0]);
                   4070:         } else {
                   4071:             ($setuname,$setudom,$title) = @data;
                   4072:         }
                   4073:         $blocks = { 'com' => 'on' };
                   4074:     }
                   4075:     return ($setuname,$setudom,$title,$blocks);
                   4076: }
                   4077: 
1.854     kalberla 4078: sub blocking_status {
                   4079:   my ($activity,$uname,$udom) = @_;
1.867     kalberla 4080:   my %setters;
1.890     droeschl 4081: 
                   4082:   # check for active blocking
1.867     kalberla 4083:   my ($startblock,$endblock)=&blockcheck(\%setters,$activity,$uname,$udom);
1.854     kalberla 4084: 
1.890     droeschl 4085:   my $blocked = $startblock && $endblock ? 1 : 0;
                   4086: 
                   4087:   # caller just wants to know whether a block is active
                   4088:   if (!wantarray) { return $blocked; }
                   4089: 
                   4090:   # build a link to a popup window containing the details
                   4091:   my $querystring  = "?activity=$activity";
                   4092:   # $uname and $udom decide whose portfolio the user is trying to look at
                   4093:      $querystring .= "&amp;udom=$udom"      if $udom;
                   4094:      $querystring .= "&amp;uname=$uname"    if $uname;
                   4095: 
                   4096:   my $output .= <<'END_MYBLOCK';
1.854     kalberla 4097:     function openWindow(url, wdwName, w, h, toolbar,scrollbar) {
                   4098:         var options = "width=" + w + ",height=" + h + ",";
                   4099:         options += "resizable=yes,scrollbars="+scrollbar+",status=no,";
                   4100:         options += "menubar=no,toolbar="+toolbar+",location=no,directories=no";
                   4101:         var newWin = window.open(url, wdwName, options);
                   4102:         newWin.focus();
                   4103:     }
1.890     droeschl 4104: END_MYBLOCK
1.854     kalberla 4105: 
1.890     droeschl 4106:   $output = Apache::lonhtmlcommon::scripttag($output);
                   4107:   
1.854     kalberla 4108:   my $popupUrl = "/adm/blockingstatus/$querystring";
1.890     droeschl 4109:   my $text = mt('Communication Blocked');
                   4110: 
1.867     kalberla 4111:   $output .= <<"END_BLOCK";
                   4112: <div class='LC_comblock'>
1.869     kalberla 4113:   <a onclick='openWindow("$popupUrl","Blocking Table",600,300,"no","no");return false;' href='/adm/blockingstatus/$querystring'
1.890     droeschl 4114:   title='$text'>
                   4115:   <img class='LC_noBorder LC_middle' title='$text' src='/res/adm/pages/comblock.png' alt='$text'/></a>
1.869     kalberla 4116:   <a onclick='openWindow("$popupUrl","Blocking Table",600,300,"no","no");return false;' href='/adm/blockingstatus/$querystring' 
1.890     droeschl 4117:   title='$text'>$text</a>
1.867     kalberla 4118: </div>
                   4119: 
                   4120: END_BLOCK
1.474     raeburn  4121: 
1.854     kalberla 4122:   return ($blocked, $output);
                   4123: }
1.490     raeburn  4124: 
1.60      matthew  4125: ###############################################
                   4126: 
1.682     raeburn  4127: sub check_ip_acc {
                   4128:     my ($acc)=@_;
                   4129:     &Apache::lonxml::debug("acc is $acc");
                   4130:     if (!defined($acc) || $acc =~ /^\s*$/ || $acc =~/^\s*no\s*$/i) {
                   4131:         return 1;
                   4132:     }
                   4133:     my $allowed=0;
                   4134:     my $ip=$env{'request.host'} || $ENV{'REMOTE_ADDR'};
                   4135: 
                   4136:     my $name;
                   4137:     foreach my $pattern (split(',',$acc)) {
                   4138:         $pattern =~ s/^\s*//;
                   4139:         $pattern =~ s/\s*$//;
                   4140:         if ($pattern =~ /\*$/) {
                   4141:             #35.8.*
                   4142:             $pattern=~s/\*//;
                   4143:             if ($ip =~ /^\Q$pattern\E/) { $allowed=1; }
                   4144:         } elsif ($pattern =~ /(\d+\.\d+\.\d+)\.\[(\d+)-(\d+)\]$/) {
                   4145:             #35.8.3.[34-56]
                   4146:             my $low=$2;
                   4147:             my $high=$3;
                   4148:             $pattern=$1;
                   4149:             if ($ip =~ /^\Q$pattern\E/) {
                   4150:                 my $last=(split(/\./,$ip))[3];
                   4151:                 if ($last <=$high && $last >=$low) { $allowed=1; }
                   4152:             }
                   4153:         } elsif ($pattern =~ /^\*/) {
                   4154:             #*.msu.edu
                   4155:             $pattern=~s/\*//;
                   4156:             if (!defined($name)) {
                   4157:                 use Socket;
                   4158:                 my $netaddr=inet_aton($ip);
                   4159:                 ($name)=gethostbyaddr($netaddr,AF_INET);
                   4160:             }
                   4161:             if ($name =~ /\Q$pattern\E$/i) { $allowed=1; }
                   4162:         } elsif ($pattern =~ /\d+\.\d+\.\d+\.\d+/) {
                   4163:             #127.0.0.1
                   4164:             if ($ip =~ /^\Q$pattern\E/) { $allowed=1; }
                   4165:         } else {
                   4166:             #some.name.com
                   4167:             if (!defined($name)) {
                   4168:                 use Socket;
                   4169:                 my $netaddr=inet_aton($ip);
                   4170:                 ($name)=gethostbyaddr($netaddr,AF_INET);
                   4171:             }
                   4172:             if ($name =~ /\Q$pattern\E$/i) { $allowed=1; }
                   4173:         }
                   4174:         if ($allowed) { last; }
                   4175:     }
                   4176:     return $allowed;
                   4177: }
                   4178: 
                   4179: ###############################################
                   4180: 
1.60      matthew  4181: =pod
                   4182: 
1.112     bowersj2 4183: =head1 Domain Template Functions
                   4184: 
                   4185: =over 4
                   4186: 
                   4187: =item * &determinedomain()
1.60      matthew  4188: 
                   4189: Inputs: $domain (usually will be undef)
                   4190: 
1.63      www      4191: Returns: Determines which domain should be used for designs
1.60      matthew  4192: 
                   4193: =cut
1.54      www      4194: 
1.60      matthew  4195: ###############################################
1.63      www      4196: sub determinedomain {
                   4197:     my $domain=shift;
1.531     albertel 4198:     if (! $domain) {
1.60      matthew  4199:         # Determine domain if we have not been given one
1.893     raeburn  4200:         $domain = &Apache::lonnet::default_login_domain();
1.258     albertel 4201:         if ($env{'user.domain'}) { $domain=$env{'user.domain'}; }
                   4202:         if ($env{'request.role.domain'}) { 
                   4203:             $domain=$env{'request.role.domain'}; 
1.60      matthew  4204:         }
                   4205:     }
1.63      www      4206:     return $domain;
                   4207: }
                   4208: ###############################################
1.517     raeburn  4209: 
1.518     albertel 4210: sub devalidate_domconfig_cache {
                   4211:     my ($udom)=@_;
                   4212:     &Apache::lonnet::devalidate_cache_new('domainconfig',$udom);
                   4213: }
                   4214: 
                   4215: # ---------------------- Get domain configuration for a domain
                   4216: sub get_domainconf {
                   4217:     my ($udom) = @_;
                   4218:     my $cachetime=1800;
                   4219:     my ($result,$cached)=&Apache::lonnet::is_cached_new('domainconfig',$udom);
                   4220:     if (defined($cached)) { return %{$result}; }
                   4221: 
                   4222:     my %domconfig = &Apache::lonnet::get_dom('configuration',
1.948     raeburn  4223: 					     ['login','rolecolors','autoenroll'],$udom);
1.632     raeburn  4224:     my (%designhash,%legacy);
1.518     albertel 4225:     if (keys(%domconfig) > 0) {
                   4226:         if (ref($domconfig{'login'}) eq 'HASH') {
1.632     raeburn  4227:             if (keys(%{$domconfig{'login'}})) {
                   4228:                 foreach my $key (keys(%{$domconfig{'login'}})) {
1.699     raeburn  4229:                     if (ref($domconfig{'login'}{$key}) eq 'HASH') {
1.946     raeburn  4230:                         if ($key eq 'loginvia') {
                   4231:                             if (ref($domconfig{'login'}{'loginvia'}) eq 'HASH') {
                   4232:                                 my @ids = &Apache::lonnet::current_machine_ids();
                   4233:                                 foreach my $hostname (@ids) {
1.948     raeburn  4234:                                     if (ref($domconfig{'login'}{'loginvia'}{$hostname}) eq 'HASH') {
                   4235:                                         if ($domconfig{'login'}{'loginvia'}{$hostname}{'server'}) {
                   4236:                                             my $server = $domconfig{'login'}{'loginvia'}{$hostname}{'server'};
                   4237:                                             $designhash{$udom.'.login.loginvia'} = $server;
                   4238:                                             if ($domconfig{'login'}{'loginvia'}{$hostname}{'serverpath'} eq 'custom') {
                   4239: 
                   4240:                                                 $designhash{$udom.'.login.loginvia_'.$hostname} = $server.':'.$domconfig{'login'}{'loginvia'}{$hostname}{'custompath'};
                   4241:                                             } else {
                   4242:                                                  $designhash{$udom.'.login.loginvia_'.$hostname} = $server.':'.$domconfig{'login'}{'loginvia'}{$hostname}{'serverpath'};
                   4243:                                             }
                   4244:                                             if ($domconfig{'login'}{'loginvia'}{$hostname}{'exempt'}) {
                   4245:                                                 $designhash{$udom.'.login.loginvia_exempt_'.$hostname} = $domconfig{'login'}{'loginvia'}{$hostname}{'exempt'};
                   4246:                                             }
1.946     raeburn  4247:                                         }
                   4248:                                     }
                   4249:                                 }
                   4250:                             }
                   4251:                         } else {
                   4252:                             foreach my $img (keys(%{$domconfig{'login'}{$key}})) {
                   4253:                                 $designhash{$udom.'.login.'.$key.'_'.$img} = 
                   4254:                                     $domconfig{'login'}{$key}{$img};
                   4255:                             }
1.699     raeburn  4256:                         }
                   4257:                     } else {
                   4258:                         $designhash{$udom.'.login.'.$key}=$domconfig{'login'}{$key};
                   4259:                     }
1.632     raeburn  4260:                 }
                   4261:             } else {
                   4262:                 $legacy{'login'} = 1;
1.518     albertel 4263:             }
1.632     raeburn  4264:         } else {
                   4265:             $legacy{'login'} = 1;
1.518     albertel 4266:         }
                   4267:         if (ref($domconfig{'rolecolors'}) eq 'HASH') {
1.632     raeburn  4268:             if (keys(%{$domconfig{'rolecolors'}})) {
                   4269:                 foreach my $role (keys(%{$domconfig{'rolecolors'}})) {
                   4270:                     if (ref($domconfig{'rolecolors'}{$role}) eq 'HASH') {
                   4271:                         foreach my $item (keys(%{$domconfig{'rolecolors'}{$role}})) {
                   4272:                             $designhash{$udom.'.'.$role.'.'.$item}=$domconfig{'rolecolors'}{$role}{$item};
                   4273:                         }
1.518     albertel 4274:                     }
                   4275:                 }
1.632     raeburn  4276:             } else {
                   4277:                 $legacy{'rolecolors'} = 1;
1.518     albertel 4278:             }
1.632     raeburn  4279:         } else {
                   4280:             $legacy{'rolecolors'} = 1;
1.518     albertel 4281:         }
1.948     raeburn  4282:         if (ref($domconfig{'autoenroll'}) eq 'HASH') {
                   4283:             if ($domconfig{'autoenroll'}{'co-owners'}) {
                   4284:                 $designhash{$udom.'.autoassign.co-owners'}=$domconfig{'autoenroll'}{'co-owners'};
                   4285:             }
                   4286:         }
1.632     raeburn  4287:         if (keys(%legacy) > 0) {
                   4288:             my %legacyhash = &get_legacy_domconf($udom);
                   4289:             foreach my $item (keys(%legacyhash)) {
                   4290:                 if ($item =~ /^\Q$udom\E\.login/) {
                   4291:                     if ($legacy{'login'}) { 
                   4292:                         $designhash{$item} = $legacyhash{$item};
                   4293:                     }
                   4294:                 } else {
                   4295:                     if ($legacy{'rolecolors'}) {
                   4296:                         $designhash{$item} = $legacyhash{$item};
                   4297:                     }
1.518     albertel 4298:                 }
                   4299:             }
                   4300:         }
1.632     raeburn  4301:     } else {
                   4302:         %designhash = &get_legacy_domconf($udom); 
1.518     albertel 4303:     }
                   4304:     &Apache::lonnet::do_cache_new('domainconfig',$udom,\%designhash,
                   4305: 				  $cachetime);
                   4306:     return %designhash;
                   4307: }
                   4308: 
1.632     raeburn  4309: sub get_legacy_domconf {
                   4310:     my ($udom) = @_;
                   4311:     my %legacyhash;
                   4312:     my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
                   4313:     my $designfile =  $designdir.'/'.$udom.'.tab';
                   4314:     if (-e $designfile) {
                   4315:         if ( open (my $fh,"<$designfile") ) {
                   4316:             while (my $line = <$fh>) {
                   4317:                 next if ($line =~ /^\#/);
                   4318:                 chomp($line);
                   4319:                 my ($key,$val)=(split(/\=/,$line));
                   4320:                 if ($val) { $legacyhash{$udom.'.'.$key}=$val; }
                   4321:             }
                   4322:             close($fh);
                   4323:         }
                   4324:     }
                   4325:     if (-e '/home/httpd/html/adm/lonDomLogos/'.$udom.'.gif') {
                   4326:         $legacyhash{$udom.'.login.domlogo'} = "/adm/lonDomLogos/$udom.gif";
                   4327:     }
                   4328:     return %legacyhash;
                   4329: }
                   4330: 
1.63      www      4331: =pod
                   4332: 
1.112     bowersj2 4333: =item * &domainlogo()
1.63      www      4334: 
                   4335: Inputs: $domain (usually will be undef)
                   4336: 
                   4337: Returns: A link to a domain logo, if the domain logo exists.
                   4338: If the domain logo does not exist, a description of the domain.
                   4339: 
                   4340: =cut
1.112     bowersj2 4341: 
1.63      www      4342: ###############################################
                   4343: sub domainlogo {
1.517     raeburn  4344:     my $domain = &determinedomain(shift);
1.518     albertel 4345:     my %designhash = &get_domainconf($domain);    
1.517     raeburn  4346:     # See if there is a logo
                   4347:     if ($designhash{$domain.'.login.domlogo'} ne '') {
1.519     raeburn  4348:         my $imgsrc = $designhash{$domain.'.login.domlogo'};
1.538     albertel 4349:         if ($imgsrc =~ m{^/(adm|res)/}) {
                   4350: 	    if ($imgsrc =~ m{^/res/}) {
                   4351: 		my $local_name = &Apache::lonnet::filelocation('',$imgsrc);
                   4352: 		&Apache::lonnet::repcopy($local_name);
                   4353: 	    }
                   4354: 	   $imgsrc = &lonhttpdurl($imgsrc);
1.519     raeburn  4355:         } 
                   4356:         return '<img src="'.$imgsrc.'" alt="'.$domain.'" />';
1.514     albertel 4357:     } elsif (defined(&Apache::lonnet::domain($domain,'description'))) {
                   4358:         return &Apache::lonnet::domain($domain,'description');
1.59      www      4359:     } else {
1.60      matthew  4360:         return '';
1.59      www      4361:     }
                   4362: }
1.63      www      4363: ##############################################
                   4364: 
                   4365: =pod
                   4366: 
1.112     bowersj2 4367: =item * &designparm()
1.63      www      4368: 
                   4369: Inputs: $which parameter; $domain (usually will be undef)
                   4370: 
                   4371: Returns: value of designparamter $which
                   4372: 
                   4373: =cut
1.112     bowersj2 4374: 
1.397     albertel 4375: 
1.400     albertel 4376: ##############################################
1.397     albertel 4377: sub designparm {
                   4378:     my ($which,$domain)=@_;
                   4379:     if (exists($env{'environment.color.'.$which})) {
1.817     bisitz   4380:         return $env{'environment.color.'.$which};
1.96      www      4381:     }
1.63      www      4382:     $domain=&determinedomain($domain);
1.518     albertel 4383:     my %domdesign = &get_domainconf($domain);
1.520     raeburn  4384:     my $output;
1.517     raeburn  4385:     if ($domdesign{$domain.'.'.$which} ne '') {
1.817     bisitz   4386:         $output = $domdesign{$domain.'.'.$which};
1.63      www      4387:     } else {
1.520     raeburn  4388:         $output = $defaultdesign{$which};
                   4389:     }
                   4390:     if (($which =~ /^(student|coordinator|author|admin)\.img$/) ||
1.635     raeburn  4391:         ($which =~ /login\.(img|logo|domlogo|login)/)) {
1.538     albertel 4392:         if ($output =~ m{^/(adm|res)/}) {
1.817     bisitz   4393:             if ($output =~ m{^/res/}) {
                   4394:                 my $local_name = &Apache::lonnet::filelocation('',$output);
                   4395:                 &Apache::lonnet::repcopy($local_name);
                   4396:             }
1.520     raeburn  4397:             $output = &lonhttpdurl($output);
                   4398:         }
1.63      www      4399:     }
1.520     raeburn  4400:     return $output;
1.63      www      4401: }
1.59      www      4402: 
1.822     bisitz   4403: ##############################################
                   4404: =pod
                   4405: 
1.832     bisitz   4406: =item * &authorspace()
                   4407: 
                   4408: Inputs: ./.
                   4409: 
                   4410: Returns: Path to the Construction Space of the current user's
                   4411:          accessed author space
                   4412:          The author space will be that of the current user
                   4413:          when accessing the own author space
                   4414:          and that of the co-author/assistent co-author
                   4415:          when accessing the co-author's/assistent co-author's
                   4416:          space
                   4417: 
                   4418: =cut
                   4419: 
                   4420: sub authorspace {
                   4421:     my $caname = '';
                   4422:     if ($env{'request.role'} =~ /^ca|^aa/) {
                   4423:         (undef,$caname) =
                   4424:             ($env{'request.role'}=~/($match_domain)\/($match_username)$/);
                   4425:     } else {
                   4426:         $caname = $env{'user.name'};
                   4427:     }
                   4428:     return '/priv/'.$caname.'/';
                   4429: }
                   4430: 
                   4431: ##############################################
                   4432: =pod
                   4433: 
1.822     bisitz   4434: =item * &head_subbox()
                   4435: 
                   4436: Inputs: $content (contains HTML code with page functions, etc.)
                   4437: 
                   4438: Returns: HTML div with $content
                   4439:          To be included in page header
                   4440: 
                   4441: =cut
                   4442: 
                   4443: sub head_subbox {
                   4444:     my ($content)=@_;
                   4445:     my $output =
1.844     bisitz   4446:         '<div id="LC_head_subbox">'
1.822     bisitz   4447:        .$content
                   4448:        .'</div>'
                   4449: }
                   4450: 
                   4451: ##############################################
                   4452: =pod
                   4453: 
                   4454: =item * &CSTR_pageheader()
                   4455: 
                   4456: Inputs: ./.
                   4457: 
                   4458: Returns: HTML div with CSTR path and recent box
                   4459:          To be included on Construction Space pages
                   4460: 
                   4461: =cut
                   4462: 
                   4463: sub CSTR_pageheader {
                   4464:     # this is for resources; directories have customtitle, and crumbs
                   4465:             # and select recent are created in lonpubdir.pm  
                   4466:     my ($uname,$thisdisfn)=
                   4467:         ($env{'request.filename'} =~ m|^/home/([^/]+)/public_html/(.*)|);
                   4468:     my $formaction='/priv/'.$uname.'/'.$thisdisfn;
                   4469:     $formaction=~s/\/+/\//g;
                   4470: 
                   4471:     my $parentpath = '';
                   4472:     my $lastitem = '';
                   4473:     if ($thisdisfn =~ m-(.+/)([^/]*)$-) {
                   4474:         $parentpath = $1;
                   4475:         $lastitem = $2;
                   4476:     } else {
                   4477:         $lastitem = $thisdisfn;
                   4478:     }
1.921     bisitz   4479: 
                   4480:     my $output =
1.822     bisitz   4481:          '<div>'
                   4482:         .&Apache::loncommon::help_open_menu('','',3,'Authoring') #FIXME: Broken? Where is it?
                   4483:         .'<b>'.&mt('Construction Space:').'</b> '
                   4484:         .'<form name="dirs" method="post" action="'.$formaction
1.921     bisitz   4485:         .'" target="_top">' #FIXME lonpubdir: target="_parent"
                   4486:         .&Apache::lonhtmlcommon::crumbs($uname.'/'.$parentpath,'_top','/priv',undef,undef);
                   4487: 
                   4488:     if ($lastitem) {
                   4489:         $output .=
                   4490:              '<span class="LC_filename">'
                   4491:             .$lastitem
                   4492:             .'</span>';
                   4493:     }
                   4494:     $output .=
                   4495:          '<br />'
1.822     bisitz   4496:         #FIXME lonpubdir: &Apache::lonhtmlcommon::crumbs($uname.$thisdisfn.'/','_top','/priv','','+1',1)."</b></tt><br />"
                   4497:         .&Apache::lonhtmlcommon::select_recent('construct','recent','this.form.action=this.form.recent.value;this.form.submit()')
                   4498:         .'</form>'
                   4499:         .&Apache::lonmenu::constspaceform()
                   4500:         .'</div>';
1.921     bisitz   4501: 
                   4502:     return $output;
1.822     bisitz   4503: }
                   4504: 
1.60      matthew  4505: ###############################################
                   4506: ###############################################
                   4507: 
                   4508: =pod
                   4509: 
1.112     bowersj2 4510: =back
                   4511: 
1.549     albertel 4512: =head1 HTML Helpers
1.112     bowersj2 4513: 
                   4514: =over 4
                   4515: 
                   4516: =item * &bodytag()
1.60      matthew  4517: 
                   4518: Returns a uniform header for LON-CAPA web pages.
                   4519: 
                   4520: Inputs: 
                   4521: 
1.112     bowersj2 4522: =over 4
                   4523: 
                   4524: =item * $title, A title to be displayed on the page.
                   4525: 
                   4526: =item * $function, the current role (can be undef).
                   4527: 
                   4528: =item * $addentries, extra parameters for the <body> tag.
                   4529: 
                   4530: =item * $bodyonly, if defined, only return the <body> tag.
                   4531: 
                   4532: =item * $domain, if defined, force a given domain.
                   4533: 
                   4534: =item * $forcereg, if page should register as content page (relevant for 
1.86      www      4535:             text interface only)
1.60      matthew  4536: 
1.814     bisitz   4537: =item * $no_nav_bar, if true, keep the 'what is this' info but remove the
                   4538:                      navigational links
1.317     albertel 4539: 
1.338     albertel 4540: =item * $bgcolor, used to override the bgcolor on a webpage to a specific value
                   4541: 
1.460     albertel 4542: =item * $args, optional argument valid values are
                   4543:             no_auto_mt_title -> prevents &mt()ing the title arg
1.562     albertel 4544:             inherit_jsmath -> when creating popup window in a page,
                   4545:                               should it have jsmath forced on by the
                   4546:                               current page
1.460     albertel 4547: 
1.112     bowersj2 4548: =back
                   4549: 
1.60      matthew  4550: Returns: A uniform header for LON-CAPA web pages.  
                   4551: If $bodyonly is nonzero, a string containing a <body> tag will be returned.
                   4552: If $bodyonly is undef or zero, an html string containing a <body> tag and 
                   4553: other decorations will be returned.
                   4554: 
                   4555: =cut
                   4556: 
1.54      www      4557: sub bodytag {
1.831     bisitz   4558:     my ($title,$function,$addentries,$bodyonly,$domain,$forcereg,
1.962     droeschl 4559:         $no_nav_bar,$bgcolor,$args)=@_;
1.339     albertel 4560: 
1.954     raeburn  4561:     my $public;
                   4562:     if ((($env{'user.name'} eq 'public') && ($env{'user.domain'} eq 'public'))
                   4563:         || ($env{'user.name'} eq '') && ($env{'user.domain'} eq '')) {
                   4564:         $public = 1;
                   4565:     }
1.460     albertel 4566:     if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }
1.339     albertel 4567: 
1.183     matthew  4568:     $function = &get_users_function() if (!$function);
1.339     albertel 4569:     my $img =    &designparm($function.'.img',$domain);
                   4570:     my $font =   &designparm($function.'.font',$domain);
                   4571:     my $pgbg   = $bgcolor || &designparm($function.'.pgbg',$domain);
                   4572: 
1.803     bisitz   4573:     my %design = ( 'style'   => 'margin-top: 0',
1.535     albertel 4574: 		   'bgcolor' => $pgbg,
1.339     albertel 4575: 		   'text'    => $font,
                   4576:                    'alink'   => &designparm($function.'.alink',$domain),
                   4577: 		   'vlink'   => &designparm($function.'.vlink',$domain),
                   4578: 		   'link'    => &designparm($function.'.link',$domain),);
1.438     albertel 4579:     @design{keys(%$addentries)} = @$addentries{keys(%$addentries)}; 
1.339     albertel 4580: 
1.63      www      4581:  # role and realm
1.378     raeburn  4582:     my ($role,$realm) = split(/\./,$env{'request.role'},2);
                   4583:     if ($role  eq 'ca') {
1.479     albertel 4584:         my ($rdom,$rname) = ($realm =~ m{^/($match_domain)/($match_username)$});
1.500     albertel 4585:         $realm = &plainname($rname,$rdom);
1.378     raeburn  4586:     } 
1.55      www      4587: # realm
1.258     albertel 4588:     if ($env{'request.course.id'}) {
1.378     raeburn  4589:         if ($env{'request.role'} !~ /^cr/) {
                   4590:             $role = &Apache::lonnet::plaintext($role,&course_type());
                   4591:         }
1.898     raeburn  4592:         if ($env{'request.course.sec'}) {
                   4593:             $role .= ('&nbsp;'x2).'-&nbsp;'.&mt('section:').'&nbsp;'.$env{'request.course.sec'};
                   4594:         }   
1.359     albertel 4595: 	$realm = $env{'course.'.$env{'request.course.id'}.'.description'};
1.378     raeburn  4596:     } else {
                   4597:         $role = &Apache::lonnet::plaintext($role);
1.54      www      4598:     }
1.433     albertel 4599: 
1.359     albertel 4600:     if (!$realm) { $realm='&nbsp;'; }
1.330     albertel 4601: 
1.438     albertel 4602:     my $extra_body_attr = &make_attr_string($forcereg,\%design);
1.329     albertel 4603: 
1.101     www      4604: # construct main body tag
1.359     albertel 4605:     my $bodytag = "<body $extra_body_attr>".
1.562     albertel 4606: 	&Apache::lontexconvert::init_math_support($args->{'inherit_jsmath'});
1.252     albertel 4607: 
1.530     albertel 4608:     if ($bodyonly) {
1.60      matthew  4609:         return $bodytag;
1.798     tempelho 4610:     } 
1.359     albertel 4611: 
1.410     albertel 4612:     my $name = &plainname($env{'user.name'},$env{'user.domain'});
1.954     raeburn  4613:     if ($public) {
1.433     albertel 4614: 	undef($role);
1.434     albertel 4615:     } else {
                   4616: 	$name = &aboutmewrapper($name,$env{'user.name'},$env{'user.domain'});
1.433     albertel 4617:     }
1.359     albertel 4618:     
1.762     bisitz   4619:     my $titleinfo = '<h1>'.$title.'</h1>';
1.359     albertel 4620:     #
                   4621:     # Extra info if you are the DC
                   4622:     my $dc_info = '';
                   4623:     if ($env{'user.adv'} && exists($env{'user.role.dc./'.
                   4624:                         $env{'course.'.$env{'request.course.id'}.
                   4625:                                  '.domain'}.'/'})) {
                   4626:         my $cid = $env{'request.course.id'};
1.917     raeburn  4627:         $dc_info = $cid.' '.$env{'course.'.$cid.'.internal.coursecode'};
1.380     www      4628:         $dc_info =~ s/\s+$//;
1.359     albertel 4629:     }
                   4630: 
1.898     raeburn  4631:     $role = '<span class="LC_nobreak">('.$role.')</span>' if $role;
1.853     droeschl 4632:     &get_unprocessed_cgi($ENV{'QUERY_STRING'}, ['inhibitmenu']);
                   4633: 
1.916     droeschl 4634:         if ($no_nav_bar || $env{'form.inhibitmenu'} eq 'yes') { 
                   4635:             return $bodytag; 
                   4636:         } 
1.903     droeschl 4637: 
                   4638:         if ($env{'request.state'} eq 'construct') { $forcereg=1; }
                   4639: 
                   4640:         #    if ($env{'request.state'} eq 'construct') {
                   4641:         #        $titleinfo = &CSTR_pageheader(); #FIXME: Will be removed once all scripts have their own calls
                   4642:         #    }
                   4643: 
1.359     albertel 4644: 
                   4645: 
1.916     droeschl 4646:         if ($env{'request.noversionuri'} =~ m{^/res/adm/pages/}) {
1.917     raeburn  4647:              if ($dc_info) {
                   4648:                  $dc_info = qq|<span class="LC_cusr_subheading">$dc_info</span>|;
                   4649:              }
1.916     droeschl 4650:              $bodytag .= qq|<div id="LC_nav_bar">$name $role<br />
                   4651:                 <em>$realm</em> $dc_info</div>|;
1.903     droeschl 4652:             return $bodytag;
                   4653:         }
1.894     droeschl 4654: 
1.927     raeburn  4655:         unless ($env{'request.symb'} =~ m/\.page___\d+___/) {
                   4656:             $bodytag .= qq|<div id="LC_nav_bar">$name $role</div>|;
                   4657:         }
1.916     droeschl 4658: 
1.903     droeschl 4659:         $bodytag .= Apache::lonhtmlcommon::scripttag(
                   4660:             Apache::lonmenu::utilityfunctions(), 'start');
1.816     bisitz   4661: 
1.903     droeschl 4662:         $bodytag .= Apache::lonmenu::primary_menu();
1.852     droeschl 4663: 
1.917     raeburn  4664:         if ($dc_info) {
                   4665:             $dc_info = &dc_courseid_toggle($dc_info);
                   4666:         }
                   4667:         $bodytag .= qq|<div id="LC_realm">$realm $dc_info</div>|;
1.916     droeschl 4668: 
1.903     droeschl 4669:         #don't show menus for public users
1.954     raeburn  4670:         if (!$public){
1.903     droeschl 4671:             $bodytag .= Apache::lonmenu::secondary_menu();
                   4672:             $bodytag .= Apache::lonmenu::serverform();
1.920     raeburn  4673:             $bodytag .= Apache::lonhtmlcommon::scripttag('', 'end');
                   4674:             if ($env{'request.state'} eq 'construct') {
1.962     droeschl 4675:                 $bodytag .= &Apache::lonmenu::innerregister($forcereg,
1.920     raeburn  4676:                                 $args->{'bread_crumbs'});
                   4677:             } elsif ($forcereg) { 
                   4678:                 $bodytag .= &Apache::lonmenu::innerregister($forcereg);
                   4679:             }
1.903     droeschl 4680:         }else{
                   4681:             # this is to seperate menu from content when there's no secondary
                   4682:             # menu. Especially needed for public accessible ressources.
                   4683:             $bodytag .= '<hr style="clear:both" />';
                   4684:             $bodytag .= Apache::lonhtmlcommon::scripttag('', 'end'); 
1.235     raeburn  4685:         }
1.903     droeschl 4686: 
1.235     raeburn  4687:         return $bodytag;
1.182     matthew  4688: }
                   4689: 
1.917     raeburn  4690: sub dc_courseid_toggle {
                   4691:     my ($dc_info) = @_;
                   4692:     return ' <span id="dccidtext" class="LC_cusr_subheading">'.
                   4693:            '<a href="javascript:showCourseID();">'.
                   4694:            &mt('(More ...)').'</a></span>'.
                   4695:            '<div id="dccid" class="LC_dccid">'.$dc_info.'</div>';
                   4696: }
                   4697: 
1.330     albertel 4698: sub make_attr_string {
                   4699:     my ($register,$attr_ref) = @_;
                   4700: 
                   4701:     if ($attr_ref && !ref($attr_ref)) {
                   4702: 	die("addentries Must be a hash ref ".
                   4703: 	    join(':',caller(1))." ".
                   4704: 	    join(':',caller(0))." ");
                   4705:     }
                   4706: 
                   4707:     if ($register) {
1.339     albertel 4708: 	my ($on_load,$on_unload);
                   4709: 	foreach my $key (keys(%{$attr_ref})) {
                   4710: 	    if      (lc($key) eq 'onload') {
                   4711: 		$on_load.=$attr_ref->{$key}.';';
                   4712: 		delete($attr_ref->{$key});
                   4713: 
                   4714: 	    } elsif (lc($key) eq 'onunload') {
                   4715: 		$on_unload.=$attr_ref->{$key}.';';
                   4716: 		delete($attr_ref->{$key});
                   4717: 	    }
                   4718: 	}
1.953     droeschl 4719: 	$attr_ref->{'onload'}  = $on_load;
                   4720: 	$attr_ref->{'onunload'}= $on_unload;
1.330     albertel 4721:     }
1.339     albertel 4722: 
1.330     albertel 4723:     my $attr_string;
                   4724:     foreach my $attr (keys(%$attr_ref)) {
                   4725: 	$attr_string .= " $attr=\"".$attr_ref->{$attr}.'" ';
                   4726:     }
                   4727:     return $attr_string;
                   4728: }
                   4729: 
                   4730: 
1.182     matthew  4731: ###############################################
1.251     albertel 4732: ###############################################
                   4733: 
                   4734: =pod
                   4735: 
                   4736: =item * &endbodytag()
                   4737: 
                   4738: Returns a uniform footer for LON-CAPA web pages.
                   4739: 
1.635     raeburn  4740: Inputs: 1 - optional reference to an args hash
                   4741: If in the hash, key for noredirectlink has a value which evaluates to true,
                   4742: a 'Continue' link is not displayed if the page contains an
                   4743: internal redirect in the <head></head> section,
                   4744: i.e., $env{'internal.head.redirect'} exists   
1.251     albertel 4745: 
                   4746: =cut
                   4747: 
                   4748: sub endbodytag {
1.635     raeburn  4749:     my ($args) = @_;
1.251     albertel 4750:     my $endbodytag='</body>';
1.269     albertel 4751:     $endbodytag=&Apache::lontexconvert::jsMath_process()."\n".$endbodytag;
1.315     albertel 4752:     if ( exists( $env{'internal.head.redirect'} ) ) {
1.635     raeburn  4753:         if (!(ref($args) eq 'HASH' && $args->{'noredirectlink'})) {
                   4754: 	    $endbodytag=
                   4755: 	        "<br /><a href=\"$env{'internal.head.redirect'}\">".
                   4756: 	        &mt('Continue').'</a>'.
                   4757: 	        $endbodytag;
                   4758:         }
1.315     albertel 4759:     }
1.251     albertel 4760:     return $endbodytag;
                   4761: }
                   4762: 
1.352     albertel 4763: =pod
                   4764: 
                   4765: =item * &standard_css()
                   4766: 
                   4767: Returns a style sheet
                   4768: 
                   4769: Inputs: (all optional)
                   4770:             domain         -> force to color decorate a page for a specific
                   4771:                                domain
                   4772:             function       -> force usage of a specific rolish color scheme
                   4773:             bgcolor        -> override the default page bgcolor
                   4774: 
                   4775: =cut
                   4776: 
1.343     albertel 4777: sub standard_css {
1.345     albertel 4778:     my ($function,$domain,$bgcolor) = @_;
1.352     albertel 4779:     $function  = &get_users_function() if (!$function);
                   4780:     my $img    = &designparm($function.'.img',   $domain);
                   4781:     my $tabbg  = &designparm($function.'.tabbg', $domain);
                   4782:     my $font   = &designparm($function.'.font',  $domain);
1.801     tempelho 4783:     my $fontmenu = &designparm($function.'.fontmenu', $domain);
1.791     tempelho 4784: #second colour for later usage
1.345     albertel 4785:     my $sidebg = &designparm($function.'.sidebg',$domain);
1.382     albertel 4786:     my $pgbg_or_bgcolor =
                   4787: 	         $bgcolor ||
1.352     albertel 4788: 	         &designparm($function.'.pgbg',  $domain);
1.382     albertel 4789:     my $pgbg   = &designparm($function.'.pgbg',  $domain);
1.352     albertel 4790:     my $alink  = &designparm($function.'.alink', $domain);
                   4791:     my $vlink  = &designparm($function.'.vlink', $domain);
                   4792:     my $link   = &designparm($function.'.link',  $domain);
                   4793: 
1.704     muellerd 4794:     my $loginbg = &designparm('login.sidebg',$domain);
1.712     muellerd 4795:     my $bgcol = &designparm('login.bgcol',$domain);
                   4796:     my $textcol = &designparm('login.textcol',$domain);
1.704     muellerd 4797: 
1.602     albertel 4798:     my $sans                 = 'Verdana,Arial,Helvetica,sans-serif';
1.395     albertel 4799:     my $mono                 = 'monospace';
1.850     bisitz   4800:     my $data_table_head      = $sidebg;
                   4801:     my $data_table_light     = '#FAFAFA';
                   4802:     my $data_table_dark      = '#F0F0F0';
1.470     banghart 4803:     my $data_table_darker    = '#CCCCCC';
1.349     albertel 4804:     my $data_table_highlight = '#FFFF00';
1.352     albertel 4805:     my $mail_new             = '#FFBB77';
                   4806:     my $mail_new_hover       = '#DD9955';
                   4807:     my $mail_read            = '#BBBB77';
                   4808:     my $mail_read_hover      = '#999944';
                   4809:     my $mail_replied         = '#AAAA88';
                   4810:     my $mail_replied_hover   = '#888855';
                   4811:     my $mail_other           = '#99BBBB';
                   4812:     my $mail_other_hover     = '#669999';
1.391     albertel 4813:     my $table_header         = '#DDDDDD';
1.489     raeburn  4814:     my $feedback_link_bg     = '#BBBBBB';
1.911     bisitz   4815:     my $lg_border_color      = '#C8C8C8';
1.952     onken    4816:     my $button_hover         = '#BF2317';
1.392     albertel 4817: 
1.608     albertel 4818:     my $border = ($env{'browser.type'} eq 'explorer' ||
1.911     bisitz   4819:       $env{'browser.type'} eq 'safari'     ) ? '0 2px 0 2px'
                   4820:                                              : '0 3px 0 4px';
1.448     albertel 4821: 
1.523     albertel 4822: 
1.343     albertel 4823:     return <<END;
1.947     droeschl 4824: 
                   4825: /* needed for iframe to allow 100% height in FF */
                   4826: body, html { 
                   4827:     margin: 0;
                   4828:     padding: 0 0.5%;
                   4829:     height: 99%; /* to avoid scrollbars */
                   4830: }
                   4831: 
1.795     www      4832: body {
1.911     bisitz   4833:   font-family: $sans;
                   4834:   line-height:130%;
                   4835:   font-size:0.83em;
                   4836:   color:$font;
1.795     www      4837: }
                   4838: 
1.959     onken    4839: a:focus,
                   4840: a:focus img {
1.795     www      4841:   color: red;
1.911     bisitz   4842:   background: yellow;
1.795     www      4843: }
1.698     harmsja  4844: 
1.911     bisitz   4845: form, .inline {
                   4846:   display: inline;
1.795     www      4847: }
1.721     harmsja  4848: 
1.795     www      4849: .LC_right {
1.911     bisitz   4850:   text-align:right;
1.795     www      4851: }
                   4852: 
                   4853: .LC_middle {
1.911     bisitz   4854:   vertical-align:middle;
1.795     www      4855: }
1.721     harmsja  4856: 
1.911     bisitz   4857: .LC_400Box {
                   4858:   width:400px;
                   4859: }
1.721     harmsja  4860: 
1.947     droeschl 4861: .LC_iframecontainer {
                   4862:     width: 98%;
                   4863:     margin: 0;
                   4864:     position: fixed;
                   4865:     top: 8.5em;
                   4866:     bottom: 0;
                   4867: }
                   4868: 
                   4869: .LC_iframecontainer iframe{
                   4870:     border: none;
                   4871:     width: 100%;
                   4872:     height: 100%;
                   4873: }
                   4874: 
1.778     bisitz   4875: .LC_filename {
                   4876:   font-family: $mono;
                   4877:   white-space:pre;
1.921     bisitz   4878:   font-size: 120%;
1.778     bisitz   4879: }
                   4880: 
                   4881: .LC_fileicon {
                   4882:   border: none;
                   4883:   height: 1.3em;
                   4884:   vertical-align: text-bottom;
                   4885:   margin-right: 0.3em;
                   4886:   text-decoration:none;
                   4887: }
                   4888: 
1.350     albertel 4889: .LC_error {
                   4890:   color: red;
                   4891:   font-size: larger;
                   4892: }
1.795     www      4893: 
1.457     albertel 4894: .LC_warning,
                   4895: .LC_diff_removed {
1.733     bisitz   4896:   color: red;
1.394     albertel 4897: }
1.532     albertel 4898: 
                   4899: .LC_info,
1.457     albertel 4900: .LC_success,
                   4901: .LC_diff_added {
1.350     albertel 4902:   color: green;
                   4903: }
1.795     www      4904: 
1.802     bisitz   4905: div.LC_confirm_box {
                   4906:   background-color: #FAFAFA;
                   4907:   border: 1px solid $lg_border_color;
                   4908:   margin-right: 0;
                   4909:   padding: 5px;
                   4910: }
                   4911: 
                   4912: div.LC_confirm_box .LC_error img,
                   4913: div.LC_confirm_box .LC_success img {
                   4914:   vertical-align: middle;
                   4915: }
                   4916: 
1.440     albertel 4917: .LC_icon {
1.771     droeschl 4918:   border: none;
1.790     droeschl 4919:   vertical-align: middle;
1.771     droeschl 4920: }
                   4921: 
1.543     albertel 4922: .LC_docs_spacer {
                   4923:   width: 25px;
                   4924:   height: 1px;
1.771     droeschl 4925:   border: none;
1.543     albertel 4926: }
1.346     albertel 4927: 
1.532     albertel 4928: .LC_internal_info {
1.735     bisitz   4929:   color: #999999;
1.532     albertel 4930: }
                   4931: 
1.794     www      4932: .LC_discussion {
1.911     bisitz   4933:   background: $tabbg;
                   4934:   border: 1px solid black;
                   4935:   margin: 2px;
1.794     www      4936: }
                   4937: 
                   4938: .LC_disc_action_links_bar {
1.911     bisitz   4939:   background: $tabbg;
                   4940:   border: none;
                   4941:   margin: 4px;
1.794     www      4942: }
                   4943: 
                   4944: .LC_disc_action_left {
1.911     bisitz   4945:   text-align: left;
1.794     www      4946: }
                   4947: 
                   4948: .LC_disc_action_right {
1.911     bisitz   4949:   text-align: right;
1.794     www      4950: }
                   4951: 
                   4952: .LC_disc_new_item {
1.911     bisitz   4953:   background: white;
                   4954:   border: 2px solid red;
                   4955:   margin: 2px;
1.794     www      4956: }
                   4957: 
                   4958: .LC_disc_old_item {
1.911     bisitz   4959:   background: white;
                   4960:   border: 1px solid black;
                   4961:   margin: 2px;
1.794     www      4962: }
                   4963: 
1.458     albertel 4964: table.LC_pastsubmission {
                   4965:   border: 1px solid black;
                   4966:   margin: 2px;
                   4967: }
                   4968: 
1.924     bisitz   4969: table#LC_menubuttons {
1.345     albertel 4970:   width: 100%;
                   4971:   background: $pgbg;
1.392     albertel 4972:   border: 2px;
1.402     albertel 4973:   border-collapse: separate;
1.803     bisitz   4974:   padding: 0;
1.345     albertel 4975: }
1.392     albertel 4976: 
1.801     tempelho 4977: table#LC_title_bar a {
                   4978:   color: $fontmenu;
                   4979: }
1.836     bisitz   4980: 
1.807     droeschl 4981: table#LC_title_bar {
1.819     tempelho 4982:   clear: both;
1.836     bisitz   4983:   display: none;
1.807     droeschl 4984: }
                   4985: 
1.795     www      4986: table#LC_title_bar,
1.933     droeschl 4987: table.LC_breadcrumbs, /* obsolete? */
1.393     albertel 4988: table#LC_title_bar.LC_with_remote {
1.359     albertel 4989:   width: 100%;
1.392     albertel 4990:   border-color: $pgbg;
                   4991:   border-style: solid;
                   4992:   border-width: $border;
1.379     albertel 4993:   background: $pgbg;
1.801     tempelho 4994:   color: $fontmenu;
1.392     albertel 4995:   border-collapse: collapse;
1.803     bisitz   4996:   padding: 0;
1.819     tempelho 4997:   margin: 0;
1.359     albertel 4998: }
1.795     www      4999: 
1.933     droeschl 5000: ul.LC_breadcrumb_tools_outerlist {
1.913     droeschl 5001:     margin: 0;
                   5002:     padding: 0;
1.933     droeschl 5003:     position: relative;
                   5004:     list-style: none;
1.913     droeschl 5005: }
1.933     droeschl 5006: ul.LC_breadcrumb_tools_outerlist li {
1.913     droeschl 5007:     display: inline;
                   5008: }
1.933     droeschl 5009: 
                   5010: .LC_breadcrumb_tools_navigation {
1.913     droeschl 5011:     padding: 0;
1.933     droeschl 5012:     margin: 0;
                   5013:     float: left;
1.913     droeschl 5014: }
1.933     droeschl 5015: .LC_breadcrumb_tools_tools {
                   5016:     padding: 0;
                   5017:     margin: 0;
1.913     droeschl 5018:     float: right;
                   5019: }
                   5020: 
1.359     albertel 5021: table#LC_title_bar td {
                   5022:   background: $tabbg;
                   5023: }
1.795     www      5024: 
1.911     bisitz   5025: table#LC_menubuttons img {
1.803     bisitz   5026:   border: none;
1.346     albertel 5027: }
1.795     www      5028: 
1.842     droeschl 5029: .LC_breadcrumbs_component {
1.911     bisitz   5030:   float: right;
                   5031:   margin: 0 1em;
1.357     albertel 5032: }
1.842     droeschl 5033: .LC_breadcrumbs_component img {
1.911     bisitz   5034:   vertical-align: middle;
1.777     tempelho 5035: }
1.795     www      5036: 
1.383     albertel 5037: td.LC_table_cell_checkbox {
                   5038:   text-align: center;
                   5039: }
1.795     www      5040: 
                   5041: .LC_fontsize_small {
1.911     bisitz   5042:   font-size: 70%;
1.705     tempelho 5043: }
                   5044: 
1.844     bisitz   5045: #LC_breadcrumbs {
1.911     bisitz   5046:   clear:both;
                   5047:   background: $sidebg;
                   5048:   border-bottom: 1px solid $lg_border_color;
                   5049:   line-height: 2.5em;
1.933     droeschl 5050:   overflow: hidden;
1.911     bisitz   5051:   margin: 0;
                   5052:   padding: 0;
1.819     tempelho 5053: }
1.862     bisitz   5054: 
1.844     bisitz   5055: #LC_head_subbox {
1.911     bisitz   5056:   clear:both;
                   5057:   background: #F8F8F8; /* $sidebg; */
1.915     droeschl 5058:   border: 1px solid $sidebg;
                   5059:   margin: 0 0 10px 0;      
1.966   ! bisitz   5060:   padding: 3px;
1.822     bisitz   5061: }
                   5062: 
1.795     www      5063: .LC_fontsize_medium {
1.911     bisitz   5064:   font-size: 85%;
1.705     tempelho 5065: }
                   5066: 
1.795     www      5067: .LC_fontsize_large {
1.911     bisitz   5068:   font-size: 120%;
1.705     tempelho 5069: }
                   5070: 
1.346     albertel 5071: .LC_menubuttons_inline_text {
                   5072:   color: $font;
1.698     harmsja  5073:   font-size: 90%;
1.701     harmsja  5074:   padding-left:3px;
1.346     albertel 5075: }
                   5076: 
1.934     droeschl 5077: .LC_menubuttons_inline_text img{
                   5078:   vertical-align: middle;
                   5079: }
                   5080: 
1.951     onken    5081: li.LC_menubuttons_inline_text img,a {
                   5082:   cursor:pointer;
                   5083: }
                   5084: 
1.526     www      5085: .LC_menubuttons_link {
                   5086:   text-decoration: none;
                   5087: }
1.795     www      5088: 
1.522     albertel 5089: .LC_menubuttons_category {
1.521     www      5090:   color: $font;
1.526     www      5091:   background: $pgbg;
1.521     www      5092:   font-size: larger;
                   5093:   font-weight: bold;
                   5094: }
                   5095: 
1.346     albertel 5096: td.LC_menubuttons_text {
1.911     bisitz   5097:   color: $font;
1.346     albertel 5098: }
1.706     harmsja  5099: 
1.346     albertel 5100: .LC_current_location {
                   5101:   background: $tabbg;
                   5102: }
1.795     www      5103: 
1.938     bisitz   5104: table.LC_data_table {
1.347     albertel 5105:   border: 1px solid #000000;
1.402     albertel 5106:   border-collapse: separate;
1.426     albertel 5107:   border-spacing: 1px;
1.610     albertel 5108:   background: $pgbg;
1.347     albertel 5109: }
1.795     www      5110: 
1.422     albertel 5111: .LC_data_table_dense {
                   5112:   font-size: small;
                   5113: }
1.795     www      5114: 
1.507     raeburn  5115: table.LC_nested_outer {
                   5116:   border: 1px solid #000000;
1.589     raeburn  5117:   border-collapse: collapse;
1.803     bisitz   5118:   border-spacing: 0;
1.507     raeburn  5119:   width: 100%;
                   5120: }
1.795     www      5121: 
1.879     raeburn  5122: table.LC_innerpickbox,
1.507     raeburn  5123: table.LC_nested {
1.803     bisitz   5124:   border: none;
1.589     raeburn  5125:   border-collapse: collapse;
1.803     bisitz   5126:   border-spacing: 0;
1.507     raeburn  5127:   width: 100%;
                   5128: }
1.795     www      5129: 
1.930     faziophi 5130: .ui-accordion,
                   5131: .ui-accordion table.LC_data_table,
                   5132: .ui-accordion table.LC_nested_outer{
                   5133:   border: 0px;
                   5134:   border-spacing: 0px;
                   5135:   margin: 3px;
                   5136: }
                   5137: 
1.911     bisitz   5138: table.LC_data_table tr th,
                   5139: table.LC_calendar tr th,
1.879     raeburn  5140: table.LC_prior_tries tr th,
                   5141: table.LC_innerpickbox tr th {
1.349     albertel 5142:   font-weight: bold;
                   5143:   background-color: $data_table_head;
1.801     tempelho 5144:   color:$fontmenu;
1.701     harmsja  5145:   font-size:90%;
1.347     albertel 5146: }
1.795     www      5147: 
1.879     raeburn  5148: table.LC_innerpickbox tr th,
                   5149: table.LC_innerpickbox tr td {
                   5150:   vertical-align: top;
                   5151: }
                   5152: 
1.711     raeburn  5153: table.LC_data_table tr.LC_info_row > td {
1.735     bisitz   5154:   background-color: #CCCCCC;
1.711     raeburn  5155:   font-weight: bold;
                   5156:   text-align: left;
                   5157: }
1.795     www      5158: 
1.912     bisitz   5159: table.LC_data_table tr.LC_odd_row > td {
                   5160:   background-color: $data_table_light;
                   5161:   padding: 2px;
                   5162:   vertical-align: top;
                   5163: }
                   5164: 
1.809     bisitz   5165: table.LC_pick_box tr > td.LC_odd_row {
1.349     albertel 5166:   background-color: $data_table_light;
1.912     bisitz   5167:   vertical-align: top;
                   5168: }
                   5169: 
                   5170: table.LC_data_table tr.LC_even_row > td {
                   5171:   background-color: $data_table_dark;
1.425     albertel 5172:   padding: 2px;
1.900     bisitz   5173:   vertical-align: top;
1.347     albertel 5174: }
1.795     www      5175: 
1.809     bisitz   5176: table.LC_pick_box tr > td.LC_even_row {
1.349     albertel 5177:   background-color: $data_table_dark;
1.900     bisitz   5178:   vertical-align: top;
1.347     albertel 5179: }
1.795     www      5180: 
1.425     albertel 5181: table.LC_data_table tr.LC_data_table_highlight td {
                   5182:   background-color: $data_table_darker;
                   5183: }
1.795     www      5184: 
1.639     raeburn  5185: table.LC_data_table tr td.LC_leftcol_header {
                   5186:   background-color: $data_table_head;
                   5187:   font-weight: bold;
                   5188: }
1.795     www      5189: 
1.451     albertel 5190: table.LC_data_table tr.LC_empty_row td,
1.507     raeburn  5191: table.LC_nested tr.LC_empty_row td {
1.421     albertel 5192:   font-weight: bold;
                   5193:   font-style: italic;
                   5194:   text-align: center;
                   5195:   padding: 8px;
1.347     albertel 5196: }
1.795     www      5197: 
1.940     bisitz   5198: table.LC_data_table tr.LC_empty_row td {
                   5199:   background-color: $sidebg;
                   5200: }
                   5201: 
                   5202: table.LC_nested tr.LC_empty_row td {
                   5203:   background-color: #FFFFFF;
                   5204: }
                   5205: 
1.890     droeschl 5206: table.LC_caption {
                   5207: }
                   5208: 
1.507     raeburn  5209: table.LC_nested tr.LC_empty_row td {
1.465     albertel 5210:   padding: 4ex
                   5211: }
1.795     www      5212: 
1.507     raeburn  5213: table.LC_nested_outer tr th {
                   5214:   font-weight: bold;
1.801     tempelho 5215:   color:$fontmenu;
1.507     raeburn  5216:   background-color: $data_table_head;
1.701     harmsja  5217:   font-size: small;
1.507     raeburn  5218:   border-bottom: 1px solid #000000;
                   5219: }
1.795     www      5220: 
1.507     raeburn  5221: table.LC_nested_outer tr td.LC_subheader {
                   5222:   background-color: $data_table_head;
                   5223:   font-weight: bold;
                   5224:   font-size: small;
                   5225:   border-bottom: 1px solid #000000;
                   5226:   text-align: right;
1.451     albertel 5227: }
1.795     www      5228: 
1.507     raeburn  5229: table.LC_nested tr.LC_info_row td {
1.735     bisitz   5230:   background-color: #CCCCCC;
1.451     albertel 5231:   font-weight: bold;
                   5232:   font-size: small;
1.507     raeburn  5233:   text-align: center;
                   5234: }
1.795     www      5235: 
1.589     raeburn  5236: table.LC_nested tr.LC_info_row td.LC_left_item,
                   5237: table.LC_nested_outer tr th.LC_left_item {
1.507     raeburn  5238:   text-align: left;
1.451     albertel 5239: }
1.795     www      5240: 
1.507     raeburn  5241: table.LC_nested td {
1.735     bisitz   5242:   background-color: #FFFFFF;
1.451     albertel 5243:   font-size: small;
1.507     raeburn  5244: }
1.795     www      5245: 
1.507     raeburn  5246: table.LC_nested_outer tr th.LC_right_item,
                   5247: table.LC_nested tr.LC_info_row td.LC_right_item,
                   5248: table.LC_nested tr.LC_odd_row td.LC_right_item,
                   5249: table.LC_nested tr td.LC_right_item {
1.451     albertel 5250:   text-align: right;
                   5251: }
                   5252: 
1.930     faziophi 5253: .ui-accordion table.LC_nested tr.LC_odd_row td.LC_left_item,
                   5254: .ui-accordion table.LC_nested tr.LC_even_row td.LC_left_item {
                   5255:   text-align: right;
                   5256:   width: 40%;
                   5257:   padding-right:10px;
                   5258:   vertical-align: top;
                   5259:   padding: 5px;
                   5260: }
                   5261: 
                   5262: .ui-accordion table.LC_nested tr.LC_odd_row td.LC_right_item,
                   5263: .ui-accordion table.LC_nested tr.LC_even_row td.LC_right_item {
                   5264:   text-align: left;
                   5265:   width: 60%;
                   5266:   padding: 2px 4px;
                   5267: }
                   5268: 
1.507     raeburn  5269: table.LC_nested tr.LC_odd_row td {
1.735     bisitz   5270:   background-color: #EEEEEE;
1.451     albertel 5271: }
                   5272: 
1.473     raeburn  5273: table.LC_createuser {
                   5274: }
                   5275: 
                   5276: table.LC_createuser tr.LC_section_row td {
1.701     harmsja  5277:   font-size: small;
1.473     raeburn  5278: }
                   5279: 
                   5280: table.LC_createuser tr.LC_info_row td  {
1.735     bisitz   5281:   background-color: #CCCCCC;
1.473     raeburn  5282:   font-weight: bold;
                   5283:   text-align: center;
                   5284: }
                   5285: 
1.349     albertel 5286: table.LC_calendar {
                   5287:   border: 1px solid #000000;
                   5288:   border-collapse: collapse;
1.917     raeburn  5289:   width: 98%;
1.349     albertel 5290: }
1.795     www      5291: 
1.349     albertel 5292: table.LC_calendar_pickdate {
                   5293:   font-size: xx-small;
                   5294: }
1.795     www      5295: 
1.349     albertel 5296: table.LC_calendar tr td {
                   5297:   border: 1px solid #000000;
                   5298:   vertical-align: top;
1.917     raeburn  5299:   width: 14%;
1.349     albertel 5300: }
1.795     www      5301: 
1.349     albertel 5302: table.LC_calendar tr td.LC_calendar_day_empty {
                   5303:   background-color: $data_table_dark;
                   5304: }
1.795     www      5305: 
1.779     bisitz   5306: table.LC_calendar tr td.LC_calendar_day_current {
                   5307:   background-color: $data_table_highlight;
1.777     tempelho 5308: }
1.795     www      5309: 
1.938     bisitz   5310: table.LC_data_table tr td.LC_mail_new {
1.349     albertel 5311:   background-color: $mail_new;
                   5312: }
1.795     www      5313: 
1.938     bisitz   5314: table.LC_data_table tr.LC_mail_new:hover {
1.349     albertel 5315:   background-color: $mail_new_hover;
                   5316: }
1.795     www      5317: 
1.938     bisitz   5318: table.LC_data_table tr td.LC_mail_read {
1.349     albertel 5319:   background-color: $mail_read;
                   5320: }
1.795     www      5321: 
1.938     bisitz   5322: /*
                   5323: table.LC_data_table tr.LC_mail_read:hover {
1.349     albertel 5324:   background-color: $mail_read_hover;
                   5325: }
1.938     bisitz   5326: */
1.795     www      5327: 
1.938     bisitz   5328: table.LC_data_table tr td.LC_mail_replied {
1.349     albertel 5329:   background-color: $mail_replied;
                   5330: }
1.795     www      5331: 
1.938     bisitz   5332: /*
                   5333: table.LC_data_table tr.LC_mail_replied:hover {
1.349     albertel 5334:   background-color: $mail_replied_hover;
                   5335: }
1.938     bisitz   5336: */
1.795     www      5337: 
1.938     bisitz   5338: table.LC_data_table tr td.LC_mail_other {
1.349     albertel 5339:   background-color: $mail_other;
                   5340: }
1.795     www      5341: 
1.938     bisitz   5342: /*
                   5343: table.LC_data_table tr.LC_mail_other:hover {
1.349     albertel 5344:   background-color: $mail_other_hover;
                   5345: }
1.938     bisitz   5346: */
1.494     raeburn  5347: 
1.777     tempelho 5348: table.LC_data_table tr > td.LC_browser_file,
                   5349: table.LC_data_table tr > td.LC_browser_file_published {
1.899     bisitz   5350:   background: #AAEE77;
1.389     albertel 5351: }
1.795     www      5352: 
1.777     tempelho 5353: table.LC_data_table tr > td.LC_browser_file_locked,
                   5354: table.LC_data_table tr > td.LC_browser_file_unpublished {
1.389     albertel 5355:   background: #FFAA99;
1.387     albertel 5356: }
1.795     www      5357: 
1.777     tempelho 5358: table.LC_data_table tr > td.LC_browser_file_obsolete {
1.899     bisitz   5359:   background: #888888;
1.779     bisitz   5360: }
1.795     www      5361: 
1.777     tempelho 5362: table.LC_data_table tr > td.LC_browser_file_modified,
1.779     bisitz   5363: table.LC_data_table tr > td.LC_browser_file_metamodified {
1.899     bisitz   5364:   background: #F8F866;
1.777     tempelho 5365: }
1.795     www      5366: 
1.696     bisitz   5367: table.LC_data_table tr.LC_browser_folder > td {
1.899     bisitz   5368:   background: #E0E8FF;
1.387     albertel 5369: }
1.696     bisitz   5370: 
1.707     bisitz   5371: table.LC_data_table tr > td.LC_roles_is {
1.911     bisitz   5372:   /* background: #77FF77; */
1.707     bisitz   5373: }
1.795     www      5374: 
1.707     bisitz   5375: table.LC_data_table tr > td.LC_roles_future {
1.939     bisitz   5376:   border-right: 8px solid #FFFF77;
1.707     bisitz   5377: }
1.795     www      5378: 
1.707     bisitz   5379: table.LC_data_table tr > td.LC_roles_will {
1.939     bisitz   5380:   border-right: 8px solid #FFAA77;
1.707     bisitz   5381: }
1.795     www      5382: 
1.707     bisitz   5383: table.LC_data_table tr > td.LC_roles_expired {
1.939     bisitz   5384:   border-right: 8px solid #FF7777;
1.707     bisitz   5385: }
1.795     www      5386: 
1.707     bisitz   5387: table.LC_data_table tr > td.LC_roles_will_not {
1.939     bisitz   5388:   border-right: 8px solid #AAFF77;
1.707     bisitz   5389: }
1.795     www      5390: 
1.707     bisitz   5391: table.LC_data_table tr > td.LC_roles_selected {
1.939     bisitz   5392:   border-right: 8px solid #11CC55;
1.707     bisitz   5393: }
                   5394: 
1.388     albertel 5395: span.LC_current_location {
1.701     harmsja  5396:   font-size:larger;
1.388     albertel 5397:   background: $pgbg;
                   5398: }
1.387     albertel 5399: 
1.395     albertel 5400: span.LC_parm_menu_item {
                   5401:   font-size: larger;
                   5402: }
1.795     www      5403: 
1.395     albertel 5404: span.LC_parm_scope_all {
                   5405:   color: red;
                   5406: }
1.795     www      5407: 
1.395     albertel 5408: span.LC_parm_scope_folder {
                   5409:   color: green;
                   5410: }
1.795     www      5411: 
1.395     albertel 5412: span.LC_parm_scope_resource {
                   5413:   color: orange;
                   5414: }
1.795     www      5415: 
1.395     albertel 5416: span.LC_parm_part {
                   5417:   color: blue;
                   5418: }
1.795     www      5419: 
1.911     bisitz   5420: span.LC_parm_folder,
                   5421: span.LC_parm_symb {
1.395     albertel 5422:   font-size: x-small;
                   5423:   font-family: $mono;
                   5424:   color: #AAAAAA;
                   5425: }
                   5426: 
1.795     www      5427: td.LC_parm_overview_level_menu,
                   5428: td.LC_parm_overview_map_menu,
                   5429: td.LC_parm_overview_parm_selectors,
                   5430: td.LC_parm_overview_restrictions  {
1.396     albertel 5431:   border: 1px solid black;
                   5432:   border-collapse: collapse;
                   5433: }
1.795     www      5434: 
1.396     albertel 5435: table.LC_parm_overview_restrictions td {
                   5436:   border-width: 1px 4px 1px 4px;
                   5437:   border-style: solid;
                   5438:   border-color: $pgbg;
                   5439:   text-align: center;
                   5440: }
1.795     www      5441: 
1.396     albertel 5442: table.LC_parm_overview_restrictions th {
                   5443:   background: $tabbg;
                   5444:   border-width: 1px 4px 1px 4px;
                   5445:   border-style: solid;
                   5446:   border-color: $pgbg;
                   5447: }
1.795     www      5448: 
1.398     albertel 5449: table#LC_helpmenu {
1.803     bisitz   5450:   border: none;
1.398     albertel 5451:   height: 55px;
1.803     bisitz   5452:   border-spacing: 0;
1.398     albertel 5453: }
                   5454: 
                   5455: table#LC_helpmenu fieldset legend {
                   5456:   font-size: larger;
                   5457: }
1.795     www      5458: 
1.397     albertel 5459: table#LC_helpmenu_links {
                   5460:   width: 100%;
                   5461:   border: 1px solid black;
                   5462:   background: $pgbg;
1.803     bisitz   5463:   padding: 0;
1.397     albertel 5464:   border-spacing: 1px;
                   5465: }
1.795     www      5466: 
1.397     albertel 5467: table#LC_helpmenu_links tr td {
                   5468:   padding: 1px;
                   5469:   background: $tabbg;
1.399     albertel 5470:   text-align: center;
                   5471:   font-weight: bold;
1.397     albertel 5472: }
1.396     albertel 5473: 
1.795     www      5474: table#LC_helpmenu_links a:link,
                   5475: table#LC_helpmenu_links a:visited,
1.397     albertel 5476: table#LC_helpmenu_links a:active {
                   5477:   text-decoration: none;
                   5478:   color: $font;
                   5479: }
1.795     www      5480: 
1.397     albertel 5481: table#LC_helpmenu_links a:hover {
                   5482:   text-decoration: underline;
                   5483:   color: $vlink;
                   5484: }
1.396     albertel 5485: 
1.417     albertel 5486: .LC_chrt_popup_exists {
                   5487:   border: 1px solid #339933;
                   5488:   margin: -1px;
                   5489: }
1.795     www      5490: 
1.417     albertel 5491: .LC_chrt_popup_up {
                   5492:   border: 1px solid yellow;
                   5493:   margin: -1px;
                   5494: }
1.795     www      5495: 
1.417     albertel 5496: .LC_chrt_popup {
                   5497:   border: 1px solid #8888FF;
                   5498:   background: #CCCCFF;
                   5499: }
1.795     www      5500: 
1.421     albertel 5501: table.LC_pick_box {
                   5502:   border-collapse: separate;
                   5503:   background: white;
                   5504:   border: 1px solid black;
                   5505:   border-spacing: 1px;
                   5506: }
1.795     www      5507: 
1.421     albertel 5508: table.LC_pick_box td.LC_pick_box_title {
1.850     bisitz   5509:   background: $sidebg;
1.421     albertel 5510:   font-weight: bold;
1.900     bisitz   5511:   text-align: left;
1.740     bisitz   5512:   vertical-align: top;
1.421     albertel 5513:   width: 184px;
                   5514:   padding: 8px;
                   5515: }
1.795     www      5516: 
1.579     raeburn  5517: table.LC_pick_box td.LC_pick_box_value {
                   5518:   text-align: left;
                   5519:   padding: 8px;
                   5520: }
1.795     www      5521: 
1.579     raeburn  5522: table.LC_pick_box td.LC_pick_box_select {
                   5523:   text-align: left;
                   5524:   padding: 8px;
                   5525: }
1.795     www      5526: 
1.424     albertel 5527: table.LC_pick_box td.LC_pick_box_separator {
1.803     bisitz   5528:   padding: 0;
1.421     albertel 5529:   height: 1px;
                   5530:   background: black;
                   5531: }
1.795     www      5532: 
1.421     albertel 5533: table.LC_pick_box td.LC_pick_box_submit {
                   5534:   text-align: right;
                   5535: }
1.795     www      5536: 
1.579     raeburn  5537: table.LC_pick_box td.LC_evenrow_value {
                   5538:   text-align: left;
                   5539:   padding: 8px;
                   5540:   background-color: $data_table_light;
                   5541: }
1.795     www      5542: 
1.579     raeburn  5543: table.LC_pick_box td.LC_oddrow_value {
                   5544:   text-align: left;
                   5545:   padding: 8px;
                   5546:   background-color: $data_table_light;
                   5547: }
1.795     www      5548: 
1.579     raeburn  5549: span.LC_helpform_receipt_cat {
                   5550:   font-weight: bold;
                   5551: }
1.795     www      5552: 
1.424     albertel 5553: table.LC_group_priv_box {
                   5554:   background: white;
                   5555:   border: 1px solid black;
                   5556:   border-spacing: 1px;
                   5557: }
1.795     www      5558: 
1.424     albertel 5559: table.LC_group_priv_box td.LC_pick_box_title {
                   5560:   background: $tabbg;
                   5561:   font-weight: bold;
                   5562:   text-align: right;
                   5563:   width: 184px;
                   5564: }
1.795     www      5565: 
1.424     albertel 5566: table.LC_group_priv_box td.LC_groups_fixed {
                   5567:   background: $data_table_light;
                   5568:   text-align: center;
                   5569: }
1.795     www      5570: 
1.424     albertel 5571: table.LC_group_priv_box td.LC_groups_optional {
                   5572:   background: $data_table_dark;
                   5573:   text-align: center;
                   5574: }
1.795     www      5575: 
1.424     albertel 5576: table.LC_group_priv_box td.LC_groups_functionality {
                   5577:   background: $data_table_darker;
                   5578:   text-align: center;
                   5579:   font-weight: bold;
                   5580: }
1.795     www      5581: 
1.424     albertel 5582: table.LC_group_priv td {
                   5583:   text-align: left;
1.803     bisitz   5584:   padding: 0;
1.424     albertel 5585: }
                   5586: 
1.421     albertel 5587: table.LC_notify_front_page {
                   5588:   background: white;
                   5589:   border: 1px solid black;
                   5590:   padding: 8px;
                   5591: }
1.795     www      5592: 
1.421     albertel 5593: table.LC_notify_front_page td {
                   5594:   padding: 8px;
                   5595: }
1.795     www      5596: 
1.424     albertel 5597: .LC_navbuttons {
                   5598:   margin: 2ex 0ex 2ex 0ex;
                   5599: }
1.795     www      5600: 
1.423     albertel 5601: .LC_topic_bar {
                   5602:   font-weight: bold;
                   5603:   background: $tabbg;
1.918     wenzelju 5604:   margin: 1em 0em 1em 2em;
1.805     bisitz   5605:   padding: 3px;
1.918     wenzelju 5606:   font-size: 1.2em;
1.423     albertel 5607: }
1.795     www      5608: 
1.423     albertel 5609: .LC_topic_bar span {
1.918     wenzelju 5610:   left: 0.5em;
                   5611:   position: absolute;
1.423     albertel 5612:   vertical-align: middle;
1.918     wenzelju 5613:   font-size: 1.2em;
1.423     albertel 5614: }
1.795     www      5615: 
1.423     albertel 5616: table.LC_course_group_status {
                   5617:   margin: 20px;
                   5618: }
1.795     www      5619: 
1.423     albertel 5620: table.LC_status_selector td {
                   5621:   vertical-align: top;
                   5622:   text-align: center;
1.424     albertel 5623:   padding: 4px;
                   5624: }
1.795     www      5625: 
1.599     albertel 5626: div.LC_feedback_link {
1.616     albertel 5627:   clear: both;
1.829     kalberla 5628:   background: $sidebg;
1.779     bisitz   5629:   width: 100%;
1.829     kalberla 5630:   padding-bottom: 10px;
                   5631:   border: 1px $tabbg solid;
1.833     kalberla 5632:   height: 22px;
                   5633:   line-height: 22px;
                   5634:   padding-top: 5px;
                   5635: }
                   5636: 
                   5637: div.LC_feedback_link img {
                   5638:   height: 22px;
1.867     kalberla 5639:   vertical-align:middle;
1.829     kalberla 5640: }
                   5641: 
1.911     bisitz   5642: div.LC_feedback_link a {
1.829     kalberla 5643:   text-decoration: none;
1.489     raeburn  5644: }
1.795     www      5645: 
1.867     kalberla 5646: div.LC_comblock {
1.911     bisitz   5647:   display:inline;
1.867     kalberla 5648:   color:$font;
                   5649:   font-size:90%;
                   5650: }
                   5651: 
                   5652: div.LC_feedback_link div.LC_comblock {
                   5653:   padding-left:5px;
                   5654: }
                   5655: 
                   5656: div.LC_feedback_link div.LC_comblock a {
                   5657:   color:$font;
                   5658: }
                   5659: 
1.489     raeburn  5660: span.LC_feedback_link {
1.858     bisitz   5661:   /* background: $feedback_link_bg; */
1.599     albertel 5662:   font-size: larger;
                   5663: }
1.795     www      5664: 
1.599     albertel 5665: span.LC_message_link {
1.858     bisitz   5666:   /* background: $feedback_link_bg; */
1.599     albertel 5667:   font-size: larger;
                   5668:   position: absolute;
                   5669:   right: 1em;
1.489     raeburn  5670: }
1.421     albertel 5671: 
1.515     albertel 5672: table.LC_prior_tries {
1.524     albertel 5673:   border: 1px solid #000000;
                   5674:   border-collapse: separate;
                   5675:   border-spacing: 1px;
1.515     albertel 5676: }
1.523     albertel 5677: 
1.515     albertel 5678: table.LC_prior_tries td {
1.524     albertel 5679:   padding: 2px;
1.515     albertel 5680: }
1.523     albertel 5681: 
                   5682: .LC_answer_correct {
1.795     www      5683:   background: lightgreen;
                   5684:   color: darkgreen;
                   5685:   padding: 6px;
1.523     albertel 5686: }
1.795     www      5687: 
1.523     albertel 5688: .LC_answer_charged_try {
1.797     www      5689:   background: #FFAAAA;
1.795     www      5690:   color: darkred;
                   5691:   padding: 6px;
1.523     albertel 5692: }
1.795     www      5693: 
1.779     bisitz   5694: .LC_answer_not_charged_try,
1.523     albertel 5695: .LC_answer_no_grade,
                   5696: .LC_answer_late {
1.795     www      5697:   background: lightyellow;
1.523     albertel 5698:   color: black;
1.795     www      5699:   padding: 6px;
1.523     albertel 5700: }
1.795     www      5701: 
1.523     albertel 5702: .LC_answer_previous {
1.795     www      5703:   background: lightblue;
                   5704:   color: darkblue;
                   5705:   padding: 6px;
1.523     albertel 5706: }
1.795     www      5707: 
1.779     bisitz   5708: .LC_answer_no_message {
1.777     tempelho 5709:   background: #FFFFFF;
                   5710:   color: black;
1.795     www      5711:   padding: 6px;
1.779     bisitz   5712: }
1.795     www      5713: 
1.779     bisitz   5714: .LC_answer_unknown {
                   5715:   background: orange;
                   5716:   color: black;
1.795     www      5717:   padding: 6px;
1.777     tempelho 5718: }
1.795     www      5719: 
1.529     albertel 5720: span.LC_prior_numerical,
                   5721: span.LC_prior_string,
                   5722: span.LC_prior_custom,
                   5723: span.LC_prior_reaction,
                   5724: span.LC_prior_math {
1.925     bisitz   5725:   font-family: $mono;
1.523     albertel 5726:   white-space: pre;
                   5727: }
                   5728: 
1.525     albertel 5729: span.LC_prior_string {
1.925     bisitz   5730:   font-family: $mono;
1.525     albertel 5731:   white-space: pre;
                   5732: }
                   5733: 
1.523     albertel 5734: table.LC_prior_option {
                   5735:   width: 100%;
                   5736:   border-collapse: collapse;
                   5737: }
1.795     www      5738: 
1.911     bisitz   5739: table.LC_prior_rank,
1.795     www      5740: table.LC_prior_match {
1.528     albertel 5741:   border-collapse: collapse;
                   5742: }
1.795     www      5743: 
1.528     albertel 5744: table.LC_prior_option tr td,
                   5745: table.LC_prior_rank tr td,
                   5746: table.LC_prior_match tr td {
1.524     albertel 5747:   border: 1px solid #000000;
1.515     albertel 5748: }
                   5749: 
1.855     bisitz   5750: .LC_nobreak {
1.544     albertel 5751:   white-space: nowrap;
1.519     raeburn  5752: }
                   5753: 
1.576     raeburn  5754: span.LC_cusr_emph {
                   5755:   font-style: italic;
                   5756: }
                   5757: 
1.633     raeburn  5758: span.LC_cusr_subheading {
                   5759:   font-weight: normal;
                   5760:   font-size: 85%;
                   5761: }
                   5762: 
1.861     bisitz   5763: div.LC_docs_entry_move {
1.859     bisitz   5764:   border: 1px solid #BBBBBB;
1.545     albertel 5765:   background: #DDDDDD;
1.861     bisitz   5766:   width: 22px;
1.859     bisitz   5767:   padding: 1px;
                   5768:   margin: 0;
1.545     albertel 5769: }
                   5770: 
1.861     bisitz   5771: table.LC_data_table tr > td.LC_docs_entry_commands,
                   5772: table.LC_data_table tr > td.LC_docs_entry_parameter {
1.545     albertel 5773:   background: #DDDDDD;
                   5774:   font-size: x-small;
                   5775: }
1.795     www      5776: 
1.861     bisitz   5777: .LC_docs_entry_parameter {
                   5778:   white-space: nowrap;
                   5779: }
                   5780: 
1.544     albertel 5781: .LC_docs_copy {
1.545     albertel 5782:   color: #000099;
1.544     albertel 5783: }
1.795     www      5784: 
1.544     albertel 5785: .LC_docs_cut {
1.545     albertel 5786:   color: #550044;
1.544     albertel 5787: }
1.795     www      5788: 
1.544     albertel 5789: .LC_docs_rename {
1.545     albertel 5790:   color: #009900;
1.544     albertel 5791: }
1.795     www      5792: 
1.544     albertel 5793: .LC_docs_remove {
1.545     albertel 5794:   color: #990000;
                   5795: }
                   5796: 
1.547     albertel 5797: .LC_docs_reinit_warn,
                   5798: .LC_docs_ext_edit {
                   5799:   font-size: x-small;
                   5800: }
                   5801: 
1.545     albertel 5802: table.LC_docs_adddocs td,
                   5803: table.LC_docs_adddocs th {
                   5804:   border: 1px solid #BBBBBB;
                   5805:   padding: 4px;
                   5806:   background: #DDDDDD;
1.543     albertel 5807: }
                   5808: 
1.584     albertel 5809: table.LC_sty_begin {
                   5810:   background: #BBFFBB;
                   5811: }
1.795     www      5812: 
1.584     albertel 5813: table.LC_sty_end {
                   5814:   background: #FFBBBB;
                   5815: }
                   5816: 
1.589     raeburn  5817: table.LC_double_column {
1.803     bisitz   5818:   border-width: 0;
1.589     raeburn  5819:   border-collapse: collapse;
                   5820:   width: 100%;
                   5821:   padding: 2px;
                   5822: }
                   5823: 
                   5824: table.LC_double_column tr td.LC_left_col {
1.590     raeburn  5825:   top: 2px;
1.589     raeburn  5826:   left: 2px;
                   5827:   width: 47%;
                   5828:   vertical-align: top;
                   5829: }
                   5830: 
                   5831: table.LC_double_column tr td.LC_right_col {
                   5832:   top: 2px;
1.779     bisitz   5833:   right: 2px;
1.589     raeburn  5834:   width: 47%;
                   5835:   vertical-align: top;
                   5836: }
                   5837: 
1.591     raeburn  5838: div.LC_left_float {
                   5839:   float: left;
                   5840:   padding-right: 5%;
1.597     albertel 5841:   padding-bottom: 4px;
1.591     raeburn  5842: }
                   5843: 
                   5844: div.LC_clear_float_header {
1.597     albertel 5845:   padding-bottom: 2px;
1.591     raeburn  5846: }
                   5847: 
                   5848: div.LC_clear_float_footer {
1.597     albertel 5849:   padding-top: 10px;
1.591     raeburn  5850:   clear: both;
                   5851: }
                   5852: 
1.597     albertel 5853: div.LC_grade_show_user {
1.941     bisitz   5854: /*  border-left: 5px solid $sidebg; */
                   5855:   border-top: 5px solid #000000;
                   5856:   margin: 50px 0 0 0;
1.936     bisitz   5857:   padding: 15px 0 5px 10px;
1.597     albertel 5858: }
1.795     www      5859: 
1.936     bisitz   5860: div.LC_grade_show_user_odd_row {
1.941     bisitz   5861: /*  border-left: 5px solid #000000; */
                   5862: }
                   5863: 
                   5864: div.LC_grade_show_user div.LC_Box {
                   5865:   margin-right: 50px;
1.597     albertel 5866: }
                   5867: 
                   5868: div.LC_grade_submissions,
                   5869: div.LC_grade_message_center,
1.936     bisitz   5870: div.LC_grade_info_links {
1.597     albertel 5871:   margin: 5px;
                   5872:   width: 99%;
                   5873:   background: #FFFFFF;
                   5874: }
1.795     www      5875: 
1.597     albertel 5876: div.LC_grade_submissions_header,
1.936     bisitz   5877: div.LC_grade_message_center_header {
1.705     tempelho 5878:   font-weight: bold;
                   5879:   font-size: large;
1.597     albertel 5880: }
1.795     www      5881: 
1.597     albertel 5882: div.LC_grade_submissions_body,
1.936     bisitz   5883: div.LC_grade_message_center_body {
1.597     albertel 5884:   border: 1px solid black;
                   5885:   width: 99%;
                   5886:   background: #FFFFFF;
                   5887: }
1.795     www      5888: 
1.613     albertel 5889: table.LC_scantron_action {
                   5890:   width: 100%;
                   5891: }
1.795     www      5892: 
1.613     albertel 5893: table.LC_scantron_action tr th {
1.698     harmsja  5894:   font-weight:bold;
                   5895:   font-style:normal;
1.613     albertel 5896: }
1.795     www      5897: 
1.779     bisitz   5898: .LC_edit_problem_header,
1.614     albertel 5899: div.LC_edit_problem_footer {
1.705     tempelho 5900:   font-weight: normal;
                   5901:   font-size:  medium;
1.602     albertel 5902:   margin: 2px;
1.600     albertel 5903: }
1.795     www      5904: 
1.600     albertel 5905: div.LC_edit_problem_header,
1.602     albertel 5906: div.LC_edit_problem_header div,
1.614     albertel 5907: div.LC_edit_problem_footer,
                   5908: div.LC_edit_problem_footer div,
1.602     albertel 5909: div.LC_edit_problem_editxml_header,
                   5910: div.LC_edit_problem_editxml_header div {
1.600     albertel 5911:   margin-top: 5px;
                   5912: }
1.795     www      5913: 
1.600     albertel 5914: div.LC_edit_problem_header_title {
1.705     tempelho 5915:   font-weight: bold;
                   5916:   font-size: larger;
1.602     albertel 5917:   background: $tabbg;
                   5918:   padding: 3px;
                   5919: }
1.795     www      5920: 
1.602     albertel 5921: table.LC_edit_problem_header_title {
                   5922:   width: 100%;
1.600     albertel 5923:   background: $tabbg;
1.602     albertel 5924: }
                   5925: 
                   5926: div.LC_edit_problem_discards {
                   5927:   float: left;
                   5928:   padding-bottom: 5px;
                   5929: }
1.795     www      5930: 
1.602     albertel 5931: div.LC_edit_problem_saves {
                   5932:   float: right;
                   5933:   padding-bottom: 5px;
1.600     albertel 5934: }
1.795     www      5935: 
1.911     bisitz   5936: img.stift {
1.803     bisitz   5937:   border-width: 0;
                   5938:   vertical-align: middle;
1.677     riegler  5939: }
1.680     riegler  5940: 
1.923     bisitz   5941: table td.LC_mainmenu_col_fieldset {
1.680     riegler  5942:   vertical-align: top;
1.777     tempelho 5943: }
1.795     www      5944: 
1.716     raeburn  5945: div.LC_createcourse {
1.911     bisitz   5946:   margin: 10px 10px 10px 10px;
1.716     raeburn  5947: }
                   5948: 
1.917     raeburn  5949: .LC_dccid {
                   5950:   margin: 0.2em 0 0 0;
                   5951:   padding: 0;
                   5952:   font-size: 90%;
                   5953:   display:none;
                   5954: }
                   5955: 
1.698     harmsja  5956: a:hover,
1.897     wenzelju 5957: ol.LC_primary_menu a:hover,
1.721     harmsja  5958: ol#LC_MenuBreadcrumbs a:hover,
                   5959: ol#LC_PathBreadcrumbs a:hover,
1.897     wenzelju 5960: ul#LC_secondary_menu a:hover,
1.721     harmsja  5961: .LC_FormSectionClearButton input:hover
1.795     www      5962: ul.LC_TabContent   li:hover a {
1.952     onken    5963:   color:$button_hover;
1.911     bisitz   5964:   text-decoration:none;
1.693     droeschl 5965: }
                   5966: 
1.779     bisitz   5967: h1 {
1.911     bisitz   5968:   padding: 0;
                   5969:   line-height:130%;
1.693     droeschl 5970: }
1.698     harmsja  5971: 
1.911     bisitz   5972: h2,
                   5973: h3,
                   5974: h4,
                   5975: h5,
                   5976: h6 {
                   5977:   margin: 5px 0 5px 0;
                   5978:   padding: 0;
                   5979:   line-height:130%;
1.693     droeschl 5980: }
1.795     www      5981: 
                   5982: .LC_hcell {
1.911     bisitz   5983:   padding:3px 15px 3px 15px;
                   5984:   margin: 0;
                   5985:   background-color:$tabbg;
                   5986:   color:$fontmenu;
                   5987:   border-bottom:solid 1px $lg_border_color;
1.693     droeschl 5988: }
1.795     www      5989: 
1.840     bisitz   5990: .LC_Box > .LC_hcell {
1.911     bisitz   5991:   margin: 0 -10px 10px -10px;
1.835     bisitz   5992: }
                   5993: 
1.721     harmsja  5994: .LC_noBorder {
1.911     bisitz   5995:   border: 0;
1.698     harmsja  5996: }
1.693     droeschl 5997: 
1.721     harmsja  5998: .LC_FormSectionClearButton input {
1.911     bisitz   5999:   background-color:transparent;
                   6000:   border: none;
                   6001:   cursor:pointer;
                   6002:   text-decoration:underline;
1.693     droeschl 6003: }
1.763     bisitz   6004: 
                   6005: .LC_help_open_topic {
1.911     bisitz   6006:   color: #FFFFFF;
                   6007:   background-color: #EEEEFF;
                   6008:   margin: 1px;
                   6009:   padding: 4px;
                   6010:   border: 1px solid #000033;
                   6011:   white-space: nowrap;
                   6012:   /* vertical-align: middle; */
1.759     neumanie 6013: }
1.693     droeschl 6014: 
1.911     bisitz   6015: dl,
                   6016: ul,
                   6017: div,
                   6018: fieldset {
                   6019:   margin: 10px 10px 10px 0;
                   6020:   /* overflow: hidden; */
1.693     droeschl 6021: }
1.795     www      6022: 
1.838     bisitz   6023: fieldset > legend {
1.911     bisitz   6024:   font-weight: bold;
                   6025:   padding: 0 5px 0 5px;
1.838     bisitz   6026: }
                   6027: 
1.813     bisitz   6028: #LC_nav_bar {
1.911     bisitz   6029:   float: left;
1.966   ! bisitz   6030:   margin: 0 0 2px 0;
1.807     droeschl 6031: }
                   6032: 
1.916     droeschl 6033: #LC_realm {
                   6034:   margin: 0.2em 0 0 0;
                   6035:   padding: 0;
                   6036:   font-weight: bold;
                   6037:   text-align: center;
                   6038: }
                   6039: 
1.911     bisitz   6040: #LC_nav_bar em {
                   6041:   font-weight: bold;
                   6042:   font-style: normal;
1.807     droeschl 6043: }
                   6044: 
1.965     bisitz   6045: /* Preliminary fix to hide nav_bar inside bookmarks window */
                   6046: #LC_bookmarks #LC_nav_bar {
                   6047:   display:none;
                   6048: }
                   6049: 
1.897     wenzelju 6050: ol.LC_primary_menu {
1.911     bisitz   6051:   float: right;
1.934     droeschl 6052:   margin: 0;
1.807     droeschl 6053: }
                   6054: 
1.852     droeschl 6055: ol#LC_PathBreadcrumbs {
1.911     bisitz   6056:   margin: 0;
1.693     droeschl 6057: }
                   6058: 
1.897     wenzelju 6059: ol.LC_primary_menu li {
1.911     bisitz   6060:   display: inline;
                   6061:   padding: 5px 5px 0 10px;
                   6062:   vertical-align: top;
1.693     droeschl 6063: }
                   6064: 
1.897     wenzelju 6065: ol.LC_primary_menu li img {
1.911     bisitz   6066:   vertical-align: bottom;
1.934     droeschl 6067:   height: 1.1em;
1.693     droeschl 6068: }
                   6069: 
1.897     wenzelju 6070: ol.LC_primary_menu a {
1.911     bisitz   6071:   color: RGB(80, 80, 80);
                   6072:   text-decoration: none;
1.693     droeschl 6073: }
1.795     www      6074: 
1.949     droeschl 6075: ol.LC_primary_menu a.LC_new_message {
                   6076:   font-weight:bold;
                   6077:   color: darkred;
                   6078: }
                   6079: 
1.897     wenzelju 6080: ul#LC_secondary_menu {
1.911     bisitz   6081:   clear: both;
                   6082:   color: $fontmenu;
                   6083:   background: $tabbg;
                   6084:   list-style: none;
                   6085:   padding: 0;
                   6086:   margin: 0;
                   6087:   width: 100%;
1.808     droeschl 6088: }
                   6089: 
1.897     wenzelju 6090: ul#LC_secondary_menu li {
1.911     bisitz   6091:   font-weight: bold;
                   6092:   line-height: 1.8em;
                   6093:   padding: 0 0.8em;
                   6094:   border-right: 1px solid black;
                   6095:   display: inline;
                   6096:   vertical-align: middle;
1.807     droeschl 6097: }
                   6098: 
1.847     tempelho 6099: ul.LC_TabContent {
1.911     bisitz   6100:   display:block;
                   6101:   background: $sidebg;
                   6102:   border-bottom: solid 1px $lg_border_color;
                   6103:   list-style:none;
                   6104:   margin: 0 -10px;
                   6105:   padding: 0;
1.693     droeschl 6106: }
                   6107: 
1.795     www      6108: ul.LC_TabContent li,
                   6109: ul.LC_TabContentBigger li {
1.911     bisitz   6110:   float:left;
1.741     harmsja  6111: }
1.795     www      6112: 
1.897     wenzelju 6113: ul#LC_secondary_menu li a {
1.911     bisitz   6114:   color: $fontmenu;
                   6115:   text-decoration: none;
1.693     droeschl 6116: }
1.795     www      6117: 
1.721     harmsja  6118: ul.LC_TabContent {
1.952     onken    6119:   min-height:20px;
1.721     harmsja  6120: }
1.795     www      6121: 
                   6122: ul.LC_TabContent li {
1.911     bisitz   6123:   vertical-align:middle;
1.959     onken    6124:   padding: 0 16px 0 10px;
1.911     bisitz   6125:   background-color:$tabbg;
                   6126:   border-bottom:solid 1px $lg_border_color;
1.952     onken    6127:   border-right: solid 1px $font;
1.721     harmsja  6128: }
1.795     www      6129: 
1.847     tempelho 6130: ul.LC_TabContent .right {
1.911     bisitz   6131:   float:right;
1.847     tempelho 6132: }
                   6133: 
1.911     bisitz   6134: ul.LC_TabContent li a,
                   6135: ul.LC_TabContent li {
                   6136:   color:rgb(47,47,47);
                   6137:   text-decoration:none;
                   6138:   font-size:95%;
                   6139:   font-weight:bold;
1.952     onken    6140:   min-height:20px;
                   6141: }
                   6142: 
1.959     onken    6143: ul.LC_TabContent li a:hover,
                   6144: ul.LC_TabContent li a:focus {
1.952     onken    6145:   color: $button_hover;
1.959     onken    6146:   background:none;
                   6147:   outline:none;
1.952     onken    6148: }
                   6149: 
                   6150: ul.LC_TabContent li:hover {
                   6151:   color: $button_hover;
                   6152:   cursor:pointer;
1.721     harmsja  6153: }
1.795     www      6154: 
1.911     bisitz   6155: ul.LC_TabContent li.active {
1.952     onken    6156:   color: $font;
1.911     bisitz   6157:   background:#FFFFFF url(/adm/lonIcons/open.gif) no-repeat scroll right center;
1.952     onken    6158:   border-bottom:solid 1px #FFFFFF;
                   6159:   cursor: default;
1.744     ehlerst  6160: }
1.795     www      6161: 
1.959     onken    6162: ul.LC_TabContent li.active a {
                   6163:   color:$font;
                   6164:   background:#FFFFFF;
                   6165:   outline: none;
                   6166: }
1.870     tempelho 6167: #maincoursedoc {
1.911     bisitz   6168:   clear:both;
1.870     tempelho 6169: }
                   6170: 
                   6171: ul.LC_TabContentBigger {
1.911     bisitz   6172:   display:block;
                   6173:   list-style:none;
                   6174:   padding: 0;
1.870     tempelho 6175: }
                   6176: 
1.795     www      6177: ul.LC_TabContentBigger li {
1.911     bisitz   6178:   vertical-align:bottom;
                   6179:   height: 30px;
                   6180:   font-size:110%;
                   6181:   font-weight:bold;
                   6182:   color: #737373;
1.841     tempelho 6183: }
                   6184: 
1.957     onken    6185: ul.LC_TabContentBigger li.active {
                   6186:   position: relative;
                   6187:   top: 1px;
                   6188: }
                   6189: 
1.870     tempelho 6190: ul.LC_TabContentBigger li a {
1.911     bisitz   6191:   background:url('/adm/lonIcons/tabbgleft.gif') left bottom no-repeat;
                   6192:   height: 30px;
                   6193:   line-height: 30px;
                   6194:   text-align: center;
                   6195:   display: block;
                   6196:   text-decoration: none;
1.958     onken    6197:   outline: none;  
1.741     harmsja  6198: }
1.795     www      6199: 
1.870     tempelho 6200: ul.LC_TabContentBigger li.active a {
1.911     bisitz   6201:   background:url('/adm/lonIcons/tabbgleft.gif') left top no-repeat;
                   6202:   color:$font;
1.744     ehlerst  6203: }
1.795     www      6204: 
1.870     tempelho 6205: ul.LC_TabContentBigger li b {
1.911     bisitz   6206:   background: url('/adm/lonIcons/tabbgright.gif') no-repeat right bottom;
                   6207:   display: block;
                   6208:   float: left;
                   6209:   padding: 0 30px;
1.957     onken    6210:   border-bottom: 1px solid $lg_border_color;
1.870     tempelho 6211: }
                   6212: 
1.956     onken    6213: ul.LC_TabContentBigger li:hover b {
                   6214:   color:$button_hover;
                   6215: }
                   6216: 
1.870     tempelho 6217: ul.LC_TabContentBigger li.active b {
1.911     bisitz   6218:   background:url('/adm/lonIcons/tabbgright.gif') right top no-repeat;
                   6219:   color:$font;
1.957     onken    6220:   border: 0;
1.956     onken    6221:   cursor:default;
1.741     harmsja  6222: }
1.693     droeschl 6223: 
1.870     tempelho 6224: 
1.862     bisitz   6225: ul.LC_CourseBreadcrumbs {
                   6226:   background: $sidebg;
                   6227:   line-height: 32px;
                   6228:   padding-left: 10px;
                   6229:   margin: 0 0 10px 0;
                   6230:   list-style-position: inside;
                   6231: 
                   6232: }
                   6233: 
1.911     bisitz   6234: ol#LC_MenuBreadcrumbs,
1.862     bisitz   6235: ol#LC_PathBreadcrumbs {
1.911     bisitz   6236:   padding-left: 10px;
                   6237:   margin: 0;
1.933     droeschl 6238:   height: 2.5em;  /* equal to #LC_breadcrumbs line-height */
1.693     droeschl 6239: }
                   6240: 
1.911     bisitz   6241: ol#LC_MenuBreadcrumbs li,
                   6242: ol#LC_PathBreadcrumbs li,
1.862     bisitz   6243: ul.LC_CourseBreadcrumbs li {
1.911     bisitz   6244:   display: inline;
1.933     droeschl 6245:   white-space: normal;  
1.693     droeschl 6246: }
                   6247: 
1.823     bisitz   6248: ol#LC_MenuBreadcrumbs li a,
1.862     bisitz   6249: ul.LC_CourseBreadcrumbs li a {
1.911     bisitz   6250:   text-decoration: none;
                   6251:   font-size:90%;
1.693     droeschl 6252: }
1.795     www      6253: 
                   6254: ol#LC_PathBreadcrumbs li a {
1.911     bisitz   6255:   text-decoration:none;
                   6256:   font-size:100%;
                   6257:   font-weight:bold;
1.693     droeschl 6258: }
1.795     www      6259: 
1.840     bisitz   6260: .LC_Box {
1.911     bisitz   6261:   border: solid 1px $lg_border_color;
                   6262:   padding: 0 10px 10px 10px;
1.746     neumanie 6263: }
1.795     www      6264: 
                   6265: .LC_AboutMe_Image {
1.911     bisitz   6266:   float:left;
                   6267:   margin-right:10px;
1.747     neumanie 6268: }
1.795     www      6269: 
                   6270: .LC_Clear_AboutMe_Image {
1.911     bisitz   6271:   clear:left;
1.747     neumanie 6272: }
1.795     www      6273: 
1.721     harmsja  6274: dl.LC_ListStyleClean dt {
1.911     bisitz   6275:   padding-right: 5px;
                   6276:   display: table-header-group;
1.693     droeschl 6277: }
                   6278: 
1.721     harmsja  6279: dl.LC_ListStyleClean dd {
1.911     bisitz   6280:   display: table-row;
1.693     droeschl 6281: }
                   6282: 
1.721     harmsja  6283: .LC_ListStyleClean,
                   6284: .LC_ListStyleSimple,
                   6285: .LC_ListStyleNormal,
1.795     www      6286: .LC_ListStyleSpecial {
1.911     bisitz   6287:   /* display:block; */
                   6288:   list-style-position: inside;
                   6289:   list-style-type: none;
                   6290:   overflow: hidden;
                   6291:   padding: 0;
1.693     droeschl 6292: }
                   6293: 
1.721     harmsja  6294: .LC_ListStyleSimple li,
                   6295: .LC_ListStyleSimple dd,
                   6296: .LC_ListStyleNormal li,
                   6297: .LC_ListStyleNormal dd,
                   6298: .LC_ListStyleSpecial li,
1.795     www      6299: .LC_ListStyleSpecial dd {
1.911     bisitz   6300:   margin: 0;
                   6301:   padding: 5px 5px 5px 10px;
                   6302:   clear: both;
1.693     droeschl 6303: }
                   6304: 
1.721     harmsja  6305: .LC_ListStyleClean li,
                   6306: .LC_ListStyleClean dd {
1.911     bisitz   6307:   padding-top: 0;
                   6308:   padding-bottom: 0;
1.693     droeschl 6309: }
                   6310: 
1.721     harmsja  6311: .LC_ListStyleSimple dd,
1.795     www      6312: .LC_ListStyleSimple li {
1.911     bisitz   6313:   border-bottom: solid 1px $lg_border_color;
1.693     droeschl 6314: }
                   6315: 
1.721     harmsja  6316: .LC_ListStyleSpecial li,
                   6317: .LC_ListStyleSpecial dd {
1.911     bisitz   6318:   list-style-type: none;
                   6319:   background-color: RGB(220, 220, 220);
                   6320:   margin-bottom: 4px;
1.693     droeschl 6321: }
                   6322: 
1.721     harmsja  6323: table.LC_SimpleTable {
1.911     bisitz   6324:   margin:5px;
                   6325:   border:solid 1px $lg_border_color;
1.795     www      6326: }
1.693     droeschl 6327: 
1.721     harmsja  6328: table.LC_SimpleTable tr {
1.911     bisitz   6329:   padding: 0;
                   6330:   border:solid 1px $lg_border_color;
1.693     droeschl 6331: }
1.795     www      6332: 
                   6333: table.LC_SimpleTable thead {
1.911     bisitz   6334:   background:rgb(220,220,220);
1.693     droeschl 6335: }
                   6336: 
1.721     harmsja  6337: div.LC_columnSection {
1.911     bisitz   6338:   display: block;
                   6339:   clear: both;
                   6340:   overflow: hidden;
                   6341:   margin: 0;
1.693     droeschl 6342: }
                   6343: 
1.721     harmsja  6344: div.LC_columnSection>* {
1.911     bisitz   6345:   float: left;
                   6346:   margin: 10px 20px 10px 0;
                   6347:   overflow:hidden;
1.693     droeschl 6348: }
1.721     harmsja  6349: 
1.694     tempelho 6350: .LC_loginpage_container {
1.911     bisitz   6351:   text-align:left;
                   6352:   margin : 0 auto;
                   6353:   width:90%;
                   6354:   padding: 10px;
                   6355:   height: auto;
                   6356:   background-color:#FFFFFF;
                   6357:   border:1px solid #CCCCCC;
1.694     tempelho 6358: }
                   6359: 
                   6360: 
                   6361: .LC_loginpage_loginContainer {
1.911     bisitz   6362:   float:left;
                   6363:   width: 182px;
                   6364:   padding: 2px;
                   6365:   border:1px solid #CCCCCC;
                   6366:   background-color:$loginbg;
1.694     tempelho 6367: }
                   6368: 
1.795     www      6369: .LC_loginpage_loginContainer h2 {
1.911     bisitz   6370:   margin-top: 0;
                   6371:   display:block;
                   6372:   background:$bgcol;
                   6373:   color:$textcol;
                   6374:   padding-left:5px;
1.712     muellerd 6375: }
1.785     tempelho 6376: 
1.694     tempelho 6377: .LC_loginpage_loginInfo {
1.911     bisitz   6378:   float:left;
                   6379:   width:182px;
                   6380:   border:1px solid #CCCCCC;
                   6381:   padding:2px;
1.712     muellerd 6382: }
                   6383: 
1.694     tempelho 6384: .LC_loginpage_space {
1.911     bisitz   6385:   clear: both;
                   6386:   margin-bottom: 20px;
                   6387:   border-bottom: 1px solid #CCCCCC;
1.694     tempelho 6388: }
                   6389: 
1.785     tempelho 6390: .LC_loginpage_floatLeft {
1.911     bisitz   6391:   float: left;
                   6392:   width: 200px;
                   6393:   margin: 0;
1.785     tempelho 6394: }
                   6395: 
1.795     www      6396: table em {
1.911     bisitz   6397:   font-weight: bold;
                   6398:   font-style: normal;
1.748     schulted 6399: }
1.795     www      6400: 
1.779     bisitz   6401: table.LC_tableBrowseRes,
1.795     www      6402: table.LC_tableOfContent {
1.911     bisitz   6403:   border:none;
                   6404:   border-spacing: 1px;
                   6405:   padding: 3px;
                   6406:   background-color: #FFFFFF;
                   6407:   font-size: 90%;
1.753     droeschl 6408: }
1.789     droeschl 6409: 
1.911     bisitz   6410: table.LC_tableOfContent {
                   6411:   border-collapse: collapse;
1.789     droeschl 6412: }
                   6413: 
1.771     droeschl 6414: table.LC_tableBrowseRes a,
1.768     schulted 6415: table.LC_tableOfContent a {
1.911     bisitz   6416:   background-color: transparent;
                   6417:   text-decoration: none;
1.753     droeschl 6418: }
                   6419: 
1.795     www      6420: table.LC_tableOfContent img {
1.911     bisitz   6421:   border: none;
                   6422:   height: 1.3em;
                   6423:   vertical-align: text-bottom;
                   6424:   margin-right: 0.3em;
1.753     droeschl 6425: }
1.757     schulted 6426: 
1.795     www      6427: a#LC_content_toolbar_firsthomework {
1.911     bisitz   6428:   background-image:url(/res/adm/pages/open-first-problem.gif);
1.774     ehlerst  6429: }
                   6430: 
1.795     www      6431: a#LC_content_toolbar_everything {
1.911     bisitz   6432:   background-image:url(/res/adm/pages/show-all.gif);
1.774     ehlerst  6433: }
                   6434: 
1.795     www      6435: a#LC_content_toolbar_uncompleted {
1.911     bisitz   6436:   background-image:url(/res/adm/pages/show-incomplete-problems.gif);
1.774     ehlerst  6437: }
                   6438: 
1.795     www      6439: #LC_content_toolbar_clearbubbles {
1.911     bisitz   6440:   background-image:url(/res/adm/pages/mark-discussionentries-read.gif);
1.774     ehlerst  6441: }
                   6442: 
1.795     www      6443: a#LC_content_toolbar_changefolder {
1.911     bisitz   6444:   background : url(/res/adm/pages/close-all-folders.gif) top center ;
1.757     schulted 6445: }
                   6446: 
1.795     www      6447: a#LC_content_toolbar_changefolder_toggled {
1.911     bisitz   6448:   background-image:url(/res/adm/pages/open-all-folders.gif);
1.757     schulted 6449: }
                   6450: 
1.795     www      6451: ul#LC_toolbar li a:hover {
1.911     bisitz   6452:   background-position: bottom center;
1.757     schulted 6453: }
                   6454: 
1.795     www      6455: ul#LC_toolbar {
1.911     bisitz   6456:   padding: 0;
                   6457:   margin: 2px;
                   6458:   list-style:none;
                   6459:   position:relative;
                   6460:   background-color:white;
1.757     schulted 6461: }
                   6462: 
1.795     www      6463: ul#LC_toolbar li {
1.911     bisitz   6464:   border:1px solid white;
                   6465:   padding: 0;
                   6466:   margin: 0;
                   6467:   float: left;
                   6468:   display:inline;
                   6469:   vertical-align:middle;
                   6470: }
1.757     schulted 6471: 
1.783     amueller 6472: 
1.795     www      6473: a.LC_toolbarItem {
1.911     bisitz   6474:   display:block;
                   6475:   padding: 0;
                   6476:   margin: 0;
                   6477:   height: 32px;
                   6478:   width: 32px;
                   6479:   color:white;
                   6480:   border: none;
                   6481:   background-repeat:no-repeat;
                   6482:   background-color:transparent;
1.757     schulted 6483: }
                   6484: 
1.915     droeschl 6485: ul.LC_funclist {
                   6486:     margin: 0;
                   6487:     padding: 0.5em 1em 0.5em 0;
                   6488: }
                   6489: 
1.933     droeschl 6490: ul.LC_funclist > li:first-child {
                   6491:     font-weight:bold; 
                   6492:     margin-left:0.8em;
                   6493: }
                   6494: 
1.915     droeschl 6495: ul.LC_funclist + ul.LC_funclist {
                   6496:     /* 
                   6497:        left border as a seperator if we have more than
                   6498:        one list 
                   6499:     */
                   6500:     border-left: 1px solid $sidebg;
                   6501:     /* 
                   6502:        this hides the left border behind the border of the 
                   6503:        outer box if element is wrapped to the next 'line' 
                   6504:     */
                   6505:     margin-left: -1px;
                   6506: }
                   6507: 
1.843     bisitz   6508: ul.LC_funclist li {
1.915     droeschl 6509:   display: inline;
1.782     bisitz   6510:   white-space: nowrap;
1.915     droeschl 6511:   margin: 0 0 0 25px;
                   6512:   line-height: 150%;
1.782     bisitz   6513: }
                   6514: 
1.930     faziophi 6515: .ui-accordion .LC_advanced_toggle {
                   6516:   float: right;
                   6517:   font-size: 90%;
                   6518:   padding: 0px 4px
                   6519: }
1.757     schulted 6520: 
1.343     albertel 6521: END
                   6522: }
                   6523: 
1.306     albertel 6524: =pod
                   6525: 
                   6526: =item * &headtag()
                   6527: 
                   6528: Returns a uniform footer for LON-CAPA web pages.
                   6529: 
1.307     albertel 6530: Inputs: $title - optional title for the head
                   6531:         $head_extra - optional extra HTML to put inside the <head>
1.315     albertel 6532:         $args - optional arguments
1.319     albertel 6533:             force_register - if is true call registerurl so the remote is 
                   6534:                              informed
1.415     albertel 6535:             redirect       -> array ref of
                   6536:                                    1- seconds before redirect occurs
                   6537:                                    2- url to redirect to
                   6538:                                    3- whether the side effect should occur
1.315     albertel 6539:                            (side effect of setting 
                   6540:                                $env{'internal.head.redirect'} to the url 
                   6541:                                redirected too)
1.352     albertel 6542:             domain         -> force to color decorate a page for a specific
                   6543:                                domain
                   6544:             function       -> force usage of a specific rolish color scheme
                   6545:             bgcolor        -> override the default page bgcolor
1.460     albertel 6546:             no_auto_mt_title
                   6547:                            -> prevent &mt()ing the title arg
1.464     albertel 6548: 
1.306     albertel 6549: =cut
                   6550: 
                   6551: sub headtag {
1.313     albertel 6552:     my ($title,$head_extra,$args) = @_;
1.306     albertel 6553:     
1.363     albertel 6554:     my $function = $args->{'function'} || &get_users_function();
                   6555:     my $domain   = $args->{'domain'}   || &determinedomain();
                   6556:     my $bgcolor  = $args->{'bgcolor'}  || &designparm($function.'.pgbg',$domain);
1.418     albertel 6557:     my $url = join(':',$env{'user.name'},$env{'user.domain'},
1.458     albertel 6558: 		   $Apache::lonnet::perlvar{'lonVersion'},
1.531     albertel 6559: 		   #time(),
1.418     albertel 6560: 		   $env{'environment.color.timestamp'},
1.363     albertel 6561: 		   $function,$domain,$bgcolor);
                   6562: 
1.369     www      6563:     $url = '/adm/css/'.&escape($url).'.css';
1.363     albertel 6564: 
1.308     albertel 6565:     my $result =
                   6566: 	'<head>'.
1.461     albertel 6567: 	&font_settings();
1.319     albertel 6568: 
1.461     albertel 6569:     if (!$args->{'frameset'}) {
                   6570: 	$result .= &Apache::lonhtmlcommon::htmlareaheaders();
                   6571:     }
1.962     droeschl 6572:     if ($args->{'force_register'} && $env{'request.noversionuri'} !~ m{^/res/adm/pages/}) {
                   6573:         $result .= Apache::lonxml::display_title();
1.319     albertel 6574:     }
1.436     albertel 6575:     if (!$args->{'no_nav_bar'} 
                   6576: 	&& !$args->{'only_body'}
                   6577: 	&& !$args->{'frameset'}) {
                   6578: 	$result .= &help_menu_js();
                   6579:     }
1.319     albertel 6580: 
1.314     albertel 6581:     if (ref($args->{'redirect'})) {
1.414     albertel 6582: 	my ($time,$url,$inhibit_continue) = @{$args->{'redirect'}};
1.315     albertel 6583: 	$url = &Apache::lonenc::check_encrypt($url);
1.414     albertel 6584: 	if (!$inhibit_continue) {
                   6585: 	    $env{'internal.head.redirect'} = $url;
                   6586: 	}
1.313     albertel 6587: 	$result.=<<ADDMETA
                   6588: <meta http-equiv="pragma" content="no-cache" />
1.344     albertel 6589: <meta http-equiv="Refresh" content="$time; url=$url" />
1.313     albertel 6590: ADDMETA
                   6591:     }
1.306     albertel 6592:     if (!defined($title)) {
                   6593: 	$title = 'The LearningOnline Network with CAPA';
                   6594:     }
1.460     albertel 6595:     if (!$args->{'no_auto_mt_title'}) { $title = &mt($title); }
                   6596:     $result .= '<title> LON-CAPA '.$title.'</title>'
1.414     albertel 6597: 	.'<link rel="stylesheet" type="text/css" href="'.$url.'" />'
                   6598: 	.$head_extra;
1.962     droeschl 6599:     return $result.'</head>';
1.306     albertel 6600: }
                   6601: 
                   6602: =pod
                   6603: 
1.340     albertel 6604: =item * &font_settings()
                   6605: 
                   6606: Returns neccessary <meta> to set the proper encoding
                   6607: 
                   6608: Inputs: none
                   6609: 
                   6610: =cut
                   6611: 
                   6612: sub font_settings {
                   6613:     my $headerstring='';
1.647     www      6614:     if (!$env{'browser.mathml'} && $env{'browser.unicode'}) {
1.340     albertel 6615: 	$headerstring.=
                   6616: 	    '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
                   6617:     }
                   6618:     return $headerstring;
                   6619: }
                   6620: 
1.341     albertel 6621: =pod
                   6622: 
                   6623: =item * &xml_begin()
                   6624: 
                   6625: Returns the needed doctype and <html>
                   6626: 
                   6627: Inputs: none
                   6628: 
                   6629: =cut
                   6630: 
                   6631: sub xml_begin {
                   6632:     my $output='';
                   6633: 
1.592     albertel 6634:     if ($env{'internal.start_page'}==1) {
                   6635: 	&Apache::lonhtmlcommon::init_htmlareafields();
                   6636:     }
1.342     albertel 6637: 
1.341     albertel 6638:     if ($env{'browser.mathml'}) {
                   6639: 	$output='<?xml version="1.0"?>'
                   6640:             #.'<?xml-stylesheet type="text/css" href="/adm/MathML/mathml.css"?>'."\n"
                   6641: #            .'<!DOCTYPE html SYSTEM "/adm/MathML/mathml.dtd" '
                   6642:             
                   6643: #	    .'<!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">] >'
                   6644: 	    .'<!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">'
                   6645:             .'<html xmlns:math="http://www.w3.org/1998/Math/MathML" ' 
                   6646: 	    .'xmlns="http://www.w3.org/1999/xhtml">';
                   6647:     } else {
1.849     bisitz   6648: 	$output='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'
                   6649:            .'<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">';
1.341     albertel 6650:     }
                   6651:     return $output;
                   6652: }
1.340     albertel 6653: 
                   6654: =pod
                   6655: 
1.306     albertel 6656: =item * &start_page()
                   6657: 
                   6658: Returns a complete <html> .. <body> section for LON-CAPA web pages.
                   6659: 
1.648     raeburn  6660: Inputs:
                   6661: 
                   6662: =over 4
                   6663: 
                   6664: $title - optional title for the page
                   6665: 
                   6666: $head_extra - optional extra HTML to incude inside the <head>
                   6667: 
                   6668: $args - additional optional args supported are:
                   6669: 
                   6670: =over 8
                   6671: 
                   6672:              only_body      -> is true will set &bodytag() onlybodytag
1.317     albertel 6673:                                     arg on
1.814     bisitz   6674:              no_nav_bar     -> is true will set &bodytag() no_nav_bar arg on
1.648     raeburn  6675:              add_entries    -> additional attributes to add to the  <body>
                   6676:              domain         -> force to color decorate a page for a 
1.317     albertel 6677:                                     specific domain
1.648     raeburn  6678:              function       -> force usage of a specific rolish color
1.317     albertel 6679:                                     scheme
1.648     raeburn  6680:              redirect       -> see &headtag()
                   6681:              bgcolor        -> override the default page bg color
                   6682:              js_ready       -> return a string ready for being used in 
1.317     albertel 6683:                                     a javascript writeln
1.648     raeburn  6684:              html_encode    -> return a string ready for being used in 
1.320     albertel 6685:                                     a html attribute
1.648     raeburn  6686:              force_register -> if is true will turn on the &bodytag()
1.317     albertel 6687:                                     $forcereg arg
1.648     raeburn  6688:              frameset       -> if true will start with a <frameset>
1.330     albertel 6689:                                     rather than <body>
1.648     raeburn  6690:              skip_phases    -> hash ref of 
1.338     albertel 6691:                                     head -> skip the <html><head> generation
                   6692:                                     body -> skip all <body> generation
1.648     raeburn  6693:              no_auto_mt_title -> prevent &mt()ing the title arg
                   6694:              inherit_jsmath -> when creating popup window in a page,
                   6695:                                     should it have jsmath forced on by the
                   6696:                                     current page
1.867     kalberla 6697:              bread_crumbs ->             Array containing breadcrumbs
                   6698:              bread_crumbs_components ->  if exists show it as headline else show only the breadcrumbs
1.361     albertel 6699: 
1.648     raeburn  6700: =back
1.460     albertel 6701: 
1.648     raeburn  6702: =back
1.562     albertel 6703: 
1.306     albertel 6704: =cut
                   6705: 
                   6706: sub start_page {
1.309     albertel 6707:     my ($title,$head_extra,$args) = @_;
1.318     albertel 6708:     #&Apache::lonnet::logthis("start_page ".join(':',caller(0)));
1.964     droeschl 6709: #SD
                   6710: #I don't see why we copy certain elements of %$args to %head_args
                   6711: #head args is passed to headtag() and this routine only reads those
                   6712: #keys that are needed. There doesn't happen any writes or any processing
                   6713: #of other keys.
                   6714: #proposal: just pass $args to headtag instead of \%head_args and delete 
                   6715: #marked lines
                   6716: #<- MARK
1.313     albertel 6717:     my %head_args;
1.352     albertel 6718:     foreach my $arg ('redirect','force_register','domain','function',
1.460     albertel 6719: 		     'bgcolor','frameset','no_nav_bar','only_body',
                   6720: 		     'no_auto_mt_title') {
1.319     albertel 6721: 	if (defined($args->{$arg})) {
1.324     raeburn  6722: 	    $head_args{$arg} = $args->{$arg};
1.319     albertel 6723: 	}
1.313     albertel 6724:     }
1.964     droeschl 6725: #MARK ->
1.319     albertel 6726: 
1.315     albertel 6727:     $env{'internal.start_page'}++;
1.338     albertel 6728:     my $result;
1.964     droeschl 6729: 
1.338     albertel 6730:     if (! exists($args->{'skip_phases'}{'head'}) ) {
1.964     droeschl 6731:         $result .= 
                   6732:                   &xml_begin() . &headtag($title,$head_extra,\%head_args);
                   6733: #replace prev line by
                   6734: #                 &xml_begin() . &headtag($title, $head_extra, $args);
1.338     albertel 6735:     }
                   6736:     
                   6737:     if (! exists($args->{'skip_phases'}{'body'}) ) {
                   6738: 	if ($args->{'frameset'}) {
                   6739: 	    my $attr_string = &make_attr_string($args->{'force_register'},
                   6740: 						$args->{'add_entries'});
                   6741: 	    $result .= "\n<frameset $attr_string>\n";
1.831     bisitz   6742:         } else {
                   6743:             $result .=
                   6744:                 &bodytag($title, 
                   6745:                          $args->{'function'},       $args->{'add_entries'},
                   6746:                          $args->{'only_body'},      $args->{'domain'},
                   6747:                          $args->{'force_register'}, $args->{'no_nav_bar'},
1.962     droeschl 6748:                          $args->{'bgcolor'},        $args);
1.831     bisitz   6749:         }
1.330     albertel 6750:     }
1.338     albertel 6751: 
1.315     albertel 6752:     if ($args->{'js_ready'}) {
1.713     kaisler  6753: 		$result = &js_ready($result);
1.315     albertel 6754:     }
1.320     albertel 6755:     if ($args->{'html_encode'}) {
1.713     kaisler  6756: 		$result = &html_encode($result);
                   6757:     }
                   6758: 
1.813     bisitz   6759:     # Preparation for new and consistent functionlist at top of screen
                   6760:     # if ($args->{'functionlist'}) {
                   6761:     #            $result .= &build_functionlist();
                   6762:     #}
                   6763: 
1.964     droeschl 6764:     # Don't add anything more if only_body wanted or in const space
                   6765:     return $result if    $args->{'only_body'} 
                   6766:                       || $env{'request.state'} eq 'construct';
1.813     bisitz   6767: 
                   6768:     #Breadcrumbs
1.758     kaisler  6769:     if (exists($args->{'bread_crumbs'}) or exists($args->{'bread_crumbs_component'})) {
                   6770: 		&Apache::lonhtmlcommon::clear_breadcrumbs();
                   6771: 		#if any br links exists, add them to the breadcrumbs
                   6772: 		if (exists($args->{'bread_crumbs'}) and ref($args->{'bread_crumbs'}) eq 'ARRAY') {         
                   6773: 			foreach my $crumb (@{$args->{'bread_crumbs'}}){
                   6774: 				&Apache::lonhtmlcommon::add_breadcrumb($crumb);
                   6775: 			}
                   6776: 		}
                   6777: 
                   6778: 		#if bread_crumbs_component exists show it as headline else show only the breadcrumbs
                   6779: 		if(exists($args->{'bread_crumbs_component'})){
                   6780: 			$result .= &Apache::lonhtmlcommon::breadcrumbs($args->{'bread_crumbs_component'});
                   6781: 		}else{
                   6782: 			$result .= &Apache::lonhtmlcommon::breadcrumbs();
                   6783: 		}
1.320     albertel 6784:     }
1.315     albertel 6785:     return $result;
1.306     albertel 6786: }
                   6787: 
                   6788: sub end_page {
1.315     albertel 6789:     my ($args) = @_;
                   6790:     $env{'internal.end_page'}++;
1.330     albertel 6791:     my $result;
1.335     albertel 6792:     if ($args->{'discussion'}) {
                   6793: 	my ($target,$parser);
                   6794: 	if (ref($args->{'discussion'})) {
                   6795: 	    ($target,$parser) =($args->{'discussion'}{'target'},
                   6796: 				$args->{'discussion'}{'parser'});
                   6797: 	}
                   6798: 	$result .= &Apache::lonxml::xmlend($target,$parser);
                   6799:     }
                   6800: 
1.330     albertel 6801:     if ($args->{'frameset'}) {
                   6802: 	$result .= '</frameset>';
                   6803:     } else {
1.635     raeburn  6804: 	$result .= &endbodytag($args);
1.330     albertel 6805:     }
                   6806:     $result .= "\n</html>";
                   6807: 
1.315     albertel 6808:     if ($args->{'js_ready'}) {
1.317     albertel 6809: 	$result = &js_ready($result);
1.315     albertel 6810:     }
1.335     albertel 6811: 
1.320     albertel 6812:     if ($args->{'html_encode'}) {
                   6813: 	$result = &html_encode($result);
                   6814:     }
1.335     albertel 6815: 
1.315     albertel 6816:     return $result;
                   6817: }
                   6818: 
1.320     albertel 6819: sub html_encode {
                   6820:     my ($result) = @_;
                   6821: 
1.322     albertel 6822:     $result = &HTML::Entities::encode($result,'<>&"');
1.320     albertel 6823:     
                   6824:     return $result;
                   6825: }
1.317     albertel 6826: sub js_ready {
                   6827:     my ($result) = @_;
                   6828: 
1.323     albertel 6829:     $result =~ s/[\n\r]/ /xmsg;
                   6830:     $result =~ s/\\/\\\\/xmsg;
                   6831:     $result =~ s/'/\\'/xmsg;
1.372     albertel 6832:     $result =~ s{</}{<\\/}xmsg;
1.317     albertel 6833:     
                   6834:     return $result;
                   6835: }
                   6836: 
1.315     albertel 6837: sub validate_page {
                   6838:     if (  exists($env{'internal.start_page'})
1.316     albertel 6839: 	  &&     $env{'internal.start_page'} > 1) {
                   6840: 	&Apache::lonnet::logthis('start_page called multiple times '.
1.318     albertel 6841: 				 $env{'internal.start_page'}.' '.
1.316     albertel 6842: 				 $ENV{'request.filename'});
1.315     albertel 6843:     }
                   6844:     if (  exists($env{'internal.end_page'})
1.316     albertel 6845: 	  &&     $env{'internal.end_page'} > 1) {
                   6846: 	&Apache::lonnet::logthis('end_page called multiple times '.
1.318     albertel 6847: 				 $env{'internal.end_page'}.' '.
1.316     albertel 6848: 				 $env{'request.filename'});
1.315     albertel 6849:     }
                   6850:     if (     exists($env{'internal.start_page'})
                   6851: 	&& ! exists($env{'internal.end_page'})) {
1.316     albertel 6852: 	&Apache::lonnet::logthis('start_page called without end_page '.
                   6853: 				 $env{'request.filename'});
1.315     albertel 6854:     }
                   6855:     if (   ! exists($env{'internal.start_page'})
                   6856: 	&&   exists($env{'internal.end_page'})) {
1.316     albertel 6857: 	&Apache::lonnet::logthis('end_page called without start_page'.
                   6858: 				 $env{'request.filename'});
1.315     albertel 6859:     }
1.306     albertel 6860: }
1.315     albertel 6861: 
1.318     albertel 6862: sub simple_error_page {
                   6863:     my ($r,$title,$msg) = @_;
                   6864:     my $page =
                   6865: 	&Apache::loncommon::start_page($title).
                   6866: 	&mt($msg).
                   6867: 	&Apache::loncommon::end_page();
                   6868:     if (ref($r)) {
                   6869: 	$r->print($page);
1.327     albertel 6870: 	return;
1.318     albertel 6871:     }
                   6872:     return $page;
                   6873: }
1.347     albertel 6874: 
                   6875: {
1.610     albertel 6876:     my @row_count;
1.961     onken    6877: 
                   6878:     sub start_data_table_count {
                   6879:         unshift(@row_count, 0);
                   6880:         return;
                   6881:     }
                   6882: 
                   6883:     sub end_data_table_count {
                   6884:         shift(@row_count);
                   6885:         return;
                   6886:     }
                   6887: 
1.347     albertel 6888:     sub start_data_table {
1.422     albertel 6889: 	my ($add_class) = @_;
                   6890: 	my $css_class = (join(' ','LC_data_table',$add_class));
1.961     onken    6891: 	&start_data_table_count();
1.422     albertel 6892: 	return '<table class="'.$css_class.'">'."\n";
1.347     albertel 6893:     }
                   6894: 
                   6895:     sub end_data_table {
1.961     onken    6896: 	&end_data_table_count();
1.389     albertel 6897: 	return '</table>'."\n";;
1.347     albertel 6898:     }
                   6899: 
                   6900:     sub start_data_table_row {
1.422     albertel 6901: 	my ($add_class) = @_;
1.610     albertel 6902: 	$row_count[0]++;
                   6903: 	my $css_class = ($row_count[0] % 2)?'LC_odd_row':'LC_even_row';
1.900     bisitz   6904: 	$css_class = (join(' ',$css_class,$add_class)) unless ($add_class eq '');
1.422     albertel 6905: 	return  '<tr class="'.$css_class.'">'."\n";;
1.347     albertel 6906:     }
1.471     banghart 6907:     
                   6908:     sub continue_data_table_row {
                   6909: 	my ($add_class) = @_;
1.610     albertel 6910: 	my $css_class = ($row_count[0] % 2)?'LC_odd_row':'LC_even_row';
1.900     bisitz   6911: 	$css_class = (join(' ',$css_class,$add_class)) unless ($add_class eq '');;
1.471     banghart 6912: 	return  '<tr class="'.$css_class.'">'."\n";;
                   6913:     }
1.347     albertel 6914: 
                   6915:     sub end_data_table_row {
1.389     albertel 6916: 	return '</tr>'."\n";;
1.347     albertel 6917:     }
1.367     www      6918: 
1.421     albertel 6919:     sub start_data_table_empty_row {
1.707     bisitz   6920: #	$row_count[0]++;
1.421     albertel 6921: 	return  '<tr class="LC_empty_row" >'."\n";;
                   6922:     }
                   6923: 
                   6924:     sub end_data_table_empty_row {
                   6925: 	return '</tr>'."\n";;
                   6926:     }
                   6927: 
1.367     www      6928:     sub start_data_table_header_row {
1.389     albertel 6929: 	return  '<tr class="LC_header_row">'."\n";;
1.367     www      6930:     }
                   6931: 
                   6932:     sub end_data_table_header_row {
1.389     albertel 6933: 	return '</tr>'."\n";;
1.367     www      6934:     }
1.890     droeschl 6935: 
                   6936:     sub data_table_caption {
                   6937:         my $caption = shift;
                   6938:         return "<caption class=\"LC_caption\">$caption</caption>";
                   6939:     }
1.347     albertel 6940: }
                   6941: 
1.548     albertel 6942: =pod
                   6943: 
                   6944: =item * &inhibit_menu_check($arg)
                   6945: 
                   6946: Checks for a inhibitmenu state and generates output to preserve it
                   6947: 
                   6948: Inputs:         $arg - can be any of
                   6949:                      - undef - in which case the return value is a string 
                   6950:                                to add  into arguments list of a uri
                   6951:                      - 'input' - in which case the return value is a HTML
                   6952:                                  <form> <input> field of type hidden to
                   6953:                                  preserve the value
                   6954:                      - a url - in which case the return value is the url with
                   6955:                                the neccesary cgi args added to preserve the
                   6956:                                inhibitmenu state
                   6957:                      - a ref to a url - no return value, but the string is
                   6958:                                         updated to include the neccessary cgi
                   6959:                                         args to preserve the inhibitmenu state
                   6960: 
                   6961: =cut
                   6962: 
                   6963: sub inhibit_menu_check {
                   6964:     my ($arg) = @_;
                   6965:     &get_unprocessed_cgi($ENV{'QUERY_STRING'}, ['inhibitmenu']);
                   6966:     if ($arg eq 'input') {
                   6967: 	if ($env{'form.inhibitmenu'}) {
                   6968: 	    return '<input type="hidden" name="inhibitmenu" value="'.$env{'form.inhibitmenu'}.'" />';
                   6969: 	} else {
                   6970: 	    return
                   6971: 	}
                   6972:     }
                   6973:     if ($env{'form.inhibitmenu'}) {
                   6974: 	if (ref($arg)) {
                   6975: 	    $$arg .= '?inhibitmenu='.$env{'form.inhibitmenu'};
                   6976: 	} elsif ($arg eq '') {
                   6977: 	    $arg .= 'inhibitmenu='.$env{'form.inhibitmenu'};
                   6978: 	} else {
                   6979: 	    $arg .= '?inhibitmenu='.$env{'form.inhibitmenu'};
                   6980: 	}
                   6981:     }
                   6982:     if (!ref($arg)) {
                   6983: 	return $arg;
                   6984:     }
                   6985: }
                   6986: 
1.251     albertel 6987: ###############################################
1.182     matthew  6988: 
                   6989: =pod
                   6990: 
1.549     albertel 6991: =back
                   6992: 
                   6993: =head1 User Information Routines
                   6994: 
                   6995: =over 4
                   6996: 
1.405     albertel 6997: =item * &get_users_function()
1.182     matthew  6998: 
                   6999: Used by &bodytag to determine the current users primary role.
                   7000: Returns either 'student','coordinator','admin', or 'author'.
                   7001: 
                   7002: =cut
                   7003: 
                   7004: ###############################################
                   7005: sub get_users_function {
1.815     tempelho 7006:     my $function = 'norole';
1.818     tempelho 7007:     if ($env{'request.role'}=~/^(st)/) {
                   7008:         $function='student';
                   7009:     }
1.907     raeburn  7010:     if ($env{'request.role'}=~/^(cc|co|in|ta|ep)/) {
1.182     matthew  7011:         $function='coordinator';
                   7012:     }
1.258     albertel 7013:     if ($env{'request.role'}=~/^(su|dc|ad|li)/) {
1.182     matthew  7014:         $function='admin';
                   7015:     }
1.826     bisitz   7016:     if (($env{'request.role'}=~/^(au|ca|aa)/) ||
1.182     matthew  7017:         ($ENV{'REQUEST_URI'}=~/^(\/priv|\~)/)) {
                   7018:         $function='author';
                   7019:     }
                   7020:     return $function;
1.54      www      7021: }
1.99      www      7022: 
                   7023: ###############################################
                   7024: 
1.233     raeburn  7025: =pod
                   7026: 
1.821     raeburn  7027: =item * &show_course()
                   7028: 
                   7029: Used by lonmenu.pm and lonroles.pm to determine whether to use the word
                   7030: 'Courses' or 'Roles' in inline navigation and on screen displaying user's roles.
                   7031: 
                   7032: Inputs:
                   7033: None
                   7034: 
                   7035: Outputs:
                   7036: Scalar: 1 if 'Course' to be used, 0 otherwise.
                   7037: 
                   7038: =cut
                   7039: 
                   7040: ###############################################
                   7041: sub show_course {
                   7042:     my $course = !$env{'user.adv'};
                   7043:     if (!$env{'user.adv'}) {
                   7044:         foreach my $env (keys(%env)) {
                   7045:             next if ($env !~ m/^user\.priv\./);
                   7046:             if ($env !~ m/^user\.priv\.(?:st|cm)/) {
                   7047:                 $course = 0;
                   7048:                 last;
                   7049:             }
                   7050:         }
                   7051:     }
                   7052:     return $course;
                   7053: }
                   7054: 
                   7055: ###############################################
                   7056: 
                   7057: =pod
                   7058: 
1.542     raeburn  7059: =item * &check_user_status()
1.274     raeburn  7060: 
                   7061: Determines current status of supplied role for a
                   7062: specific user. Roles can be active, previous or future.
                   7063: 
                   7064: Inputs: 
                   7065: user's domain, user's username, course's domain,
1.375     raeburn  7066: course's number, optional section ID.
1.274     raeburn  7067: 
                   7068: Outputs:
                   7069: role status: active, previous or future. 
                   7070: 
                   7071: =cut
                   7072: 
                   7073: sub check_user_status {
1.412     raeburn  7074:     my ($udom,$uname,$cdom,$crs,$role,$sec) = @_;
1.274     raeburn  7075:     my %userinfo = &Apache::lonnet::dump('roles',$udom,$uname);
                   7076:     my @uroles = keys %userinfo;
                   7077:     my $srchstr;
                   7078:     my $active_chk = 'none';
1.412     raeburn  7079:     my $now = time;
1.274     raeburn  7080:     if (@uroles > 0) {
1.908     raeburn  7081:         if (($role eq 'cc') || ($role eq 'co') || ($sec eq '') || (!defined($sec))) {
1.274     raeburn  7082:             $srchstr = '/'.$cdom.'/'.$crs.'_'.$role;
                   7083:         } else {
1.412     raeburn  7084:             $srchstr = '/'.$cdom.'/'.$crs.'/'.$sec.'_'.$role;
                   7085:         }
                   7086:         if (grep/^\Q$srchstr\E$/,@uroles) {
1.274     raeburn  7087:             my $role_end = 0;
                   7088:             my $role_start = 0;
                   7089:             $active_chk = 'active';
1.412     raeburn  7090:             if ($userinfo{$srchstr} =~ m/^\Q$role\E_(\d+)/) {
                   7091:                 $role_end = $1;
                   7092:                 if ($userinfo{$srchstr} =~ m/^\Q$role\E_\Q$role_end\E_(\d+)$/) {
                   7093:                     $role_start = $1;
1.274     raeburn  7094:                 }
                   7095:             }
                   7096:             if ($role_start > 0) {
1.412     raeburn  7097:                 if ($now < $role_start) {
1.274     raeburn  7098:                     $active_chk = 'future';
                   7099:                 }
                   7100:             }
                   7101:             if ($role_end > 0) {
1.412     raeburn  7102:                 if ($now > $role_end) {
1.274     raeburn  7103:                     $active_chk = 'previous';
                   7104:                 }
                   7105:             }
                   7106:         }
                   7107:     }
                   7108:     return $active_chk;
                   7109: }
                   7110: 
                   7111: ###############################################
                   7112: 
                   7113: =pod
                   7114: 
1.405     albertel 7115: =item * &get_sections()
1.233     raeburn  7116: 
                   7117: Determines all the sections for a course including
                   7118: sections with students and sections containing other roles.
1.419     raeburn  7119: Incoming parameters: 
                   7120: 
                   7121: 1. domain
                   7122: 2. course number 
                   7123: 3. reference to array containing roles for which sections should 
                   7124: be gathered (optional).
                   7125: 4. reference to array containing status types for which sections 
                   7126: should be gathered (optional).
                   7127: 
                   7128: If the third argument is undefined, sections are gathered for any role. 
                   7129: If the fourth argument is undefined, sections are gathered for any status.
                   7130: Permissible values are 'active' or 'future' or 'previous'.
1.233     raeburn  7131:  
1.374     raeburn  7132: Returns section hash (keys are section IDs, values are
                   7133: number of users in each section), subject to the
1.419     raeburn  7134: optional roles filter, optional status filter 
1.233     raeburn  7135: 
                   7136: =cut
                   7137: 
                   7138: ###############################################
                   7139: sub get_sections {
1.419     raeburn  7140:     my ($cdom,$cnum,$possible_roles,$possible_status) = @_;
1.366     albertel 7141:     if (!defined($cdom) || !defined($cnum)) {
                   7142:         my $cid =  $env{'request.course.id'};
                   7143: 
                   7144: 	return if (!defined($cid));
                   7145: 
                   7146:         $cdom = $env{'course.'.$cid.'.domain'};
                   7147:         $cnum = $env{'course.'.$cid.'.num'};
                   7148:     }
                   7149: 
                   7150:     my %sectioncount;
1.419     raeburn  7151:     my $now = time;
1.240     albertel 7152: 
1.366     albertel 7153:     if (!defined($possible_roles) || (grep(/^st$/,@$possible_roles))) {
1.276     albertel 7154: 	my ($classlist) = &Apache::loncoursedata::get_classlist($cdom,$cnum);
1.240     albertel 7155: 	my $sec_index = &Apache::loncoursedata::CL_SECTION();
                   7156: 	my $status_index = &Apache::loncoursedata::CL_STATUS();
1.419     raeburn  7157:         my $start_index = &Apache::loncoursedata::CL_START();
                   7158:         my $end_index = &Apache::loncoursedata::CL_END();
                   7159:         my $status;
1.366     albertel 7160: 	while (my ($student,$data) = each(%$classlist)) {
1.419     raeburn  7161: 	    my ($section,$stu_status,$start,$end) = ($data->[$sec_index],
                   7162: 				                     $data->[$status_index],
                   7163:                                                      $data->[$start_index],
                   7164:                                                      $data->[$end_index]);
                   7165:             if ($stu_status eq 'Active') {
                   7166:                 $status = 'active';
                   7167:             } elsif ($end < $now) {
                   7168:                 $status = 'previous';
                   7169:             } elsif ($start > $now) {
                   7170:                 $status = 'future';
                   7171:             } 
                   7172: 	    if ($section ne '-1' && $section !~ /^\s*$/) {
                   7173:                 if ((!defined($possible_status)) || (($status ne '') && 
                   7174:                     (grep/^\Q$status\E$/,@{$possible_status}))) { 
                   7175: 		    $sectioncount{$section}++;
                   7176:                 }
1.240     albertel 7177: 	    }
                   7178: 	}
                   7179:     }
                   7180:     my %courseroles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   7181:     foreach my $user (sort(keys(%courseroles))) {
                   7182: 	if ($user !~ /^(\w{2})/) { next; }
                   7183: 	my ($role) = ($user =~ /^(\w{2})/);
                   7184: 	if ($possible_roles && !(grep(/^$role$/,@$possible_roles))) { next; }
1.419     raeburn  7185: 	my ($section,$status);
1.240     albertel 7186: 	if ($role eq 'cr' &&
                   7187: 	    $user =~ m-^$role/[^/]*/[^/]*/[^/]*:[^:]*:[^:]*:(\w+)-) {
                   7188: 	    $section=$1;
                   7189: 	}
                   7190: 	if ($user =~ /^$role:[^:]*:[^:]*:(\w+)/) { $section=$1; }
                   7191: 	if (!defined($section) || $section eq '-1') { next; }
1.419     raeburn  7192:         my ($end,$start) = ($courseroles{$user} =~ /^([^:]*):([^:]*)$/);
                   7193:         if ($end == -1 && $start == -1) {
                   7194:             next; #deleted role
                   7195:         }
                   7196:         if (!defined($possible_status)) { 
                   7197:             $sectioncount{$section}++;
                   7198:         } else {
                   7199:             if ((!$end || $end >= $now) && (!$start || $start <= $now)) {
                   7200:                 $status = 'active';
                   7201:             } elsif ($end < $now) {
                   7202:                 $status = 'future';
                   7203:             } elsif ($start > $now) {
                   7204:                 $status = 'previous';
                   7205:             }
                   7206:             if (($status ne '') && (grep/^\Q$status\E$/,@{$possible_status})) {
                   7207:                 $sectioncount{$section}++;
                   7208:             }
                   7209:         }
1.233     raeburn  7210:     }
1.366     albertel 7211:     return %sectioncount;
1.233     raeburn  7212: }
                   7213: 
1.274     raeburn  7214: ###############################################
1.294     raeburn  7215: 
                   7216: =pod
1.405     albertel 7217: 
                   7218: =item * &get_course_users()
                   7219: 
1.275     raeburn  7220: Retrieves usernames:domains for users in the specified course
                   7221: with specific role(s), and access status. 
                   7222: 
                   7223: Incoming parameters:
1.277     albertel 7224: 1. course domain
                   7225: 2. course number
                   7226: 3. access status: users must have - either active, 
1.275     raeburn  7227: previous, future, or all.
1.277     albertel 7228: 4. reference to array of permissible roles
1.288     raeburn  7229: 5. reference to array of section restrictions (optional)
                   7230: 6. reference to results object (hash of hashes).
                   7231: 7. reference to optional userdata hash
1.609     raeburn  7232: 8. reference to optional statushash
1.630     raeburn  7233: 9. flag if privileged users (except those set to unhide in
                   7234:    course settings) should be excluded    
1.609     raeburn  7235: Keys of top level results hash are roles.
1.275     raeburn  7236: Keys of inner hashes are username:domain, with 
                   7237: values set to access type.
1.288     raeburn  7238: Optional userdata hash returns an array with arguments in the 
                   7239: same order as loncoursedata::get_classlist() for student data.
                   7240: 
1.609     raeburn  7241: Optional statushash returns
                   7242: 
1.288     raeburn  7243: Entries for end, start, section and status are blank because
                   7244: of the possibility of multiple values for non-student roles.
                   7245: 
1.275     raeburn  7246: =cut
1.405     albertel 7247: 
1.275     raeburn  7248: ###############################################
1.405     albertel 7249: 
1.275     raeburn  7250: sub get_course_users {
1.630     raeburn  7251:     my ($cdom,$cnum,$types,$roles,$sections,$users,$userdata,$statushash,$hidepriv) = @_;
1.288     raeburn  7252:     my %idx = ();
1.419     raeburn  7253:     my %seclists;
1.288     raeburn  7254: 
                   7255:     $idx{udom} = &Apache::loncoursedata::CL_SDOM();
                   7256:     $idx{uname} =  &Apache::loncoursedata::CL_SNAME();
                   7257:     $idx{end} = &Apache::loncoursedata::CL_END();
                   7258:     $idx{start} = &Apache::loncoursedata::CL_START();
                   7259:     $idx{id} = &Apache::loncoursedata::CL_ID();
                   7260:     $idx{section} = &Apache::loncoursedata::CL_SECTION();
                   7261:     $idx{fullname} = &Apache::loncoursedata::CL_FULLNAME();
                   7262:     $idx{status} = &Apache::loncoursedata::CL_STATUS();
                   7263: 
1.290     albertel 7264:     if (grep(/^st$/,@{$roles})) {
1.276     albertel 7265:         my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist($cdom,$cnum);
1.278     raeburn  7266:         my $now = time;
1.277     albertel 7267:         foreach my $student (keys(%{$classlist})) {
1.288     raeburn  7268:             my $match = 0;
1.412     raeburn  7269:             my $secmatch = 0;
1.419     raeburn  7270:             my $section = $$classlist{$student}[$idx{section}];
1.609     raeburn  7271:             my $status = $$classlist{$student}[$idx{status}];
1.419     raeburn  7272:             if ($section eq '') {
                   7273:                 $section = 'none';
                   7274:             }
1.291     albertel 7275:             if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
1.420     albertel 7276:                 if (grep(/^all$/,@{$sections})) {
1.412     raeburn  7277:                     $secmatch = 1;
                   7278:                 } elsif ($$classlist{$student}[$idx{section}] eq '') {
1.420     albertel 7279:                     if (grep(/^none$/,@{$sections})) {
1.412     raeburn  7280:                         $secmatch = 1;
                   7281:                     }
                   7282:                 } else {  
1.419     raeburn  7283: 		    if (grep(/^\Q$section\E$/,@{$sections})) {
1.412     raeburn  7284: 		        $secmatch = 1;
                   7285:                     }
1.290     albertel 7286: 		}
1.412     raeburn  7287:                 if (!$secmatch) {
                   7288:                     next;
                   7289:                 }
1.419     raeburn  7290:             }
1.275     raeburn  7291:             if (defined($$types{'active'})) {
1.288     raeburn  7292:                 if ($$classlist{$student}[$idx{status}] eq 'Active') {
1.275     raeburn  7293:                     push(@{$$users{st}{$student}},'active');
1.288     raeburn  7294:                     $match = 1;
1.275     raeburn  7295:                 }
                   7296:             }
                   7297:             if (defined($$types{'previous'})) {
1.609     raeburn  7298:                 if ($$classlist{$student}[$idx{status}] eq 'Expired') {
1.275     raeburn  7299:                     push(@{$$users{st}{$student}},'previous');
1.288     raeburn  7300:                     $match = 1;
1.275     raeburn  7301:                 }
                   7302:             }
                   7303:             if (defined($$types{'future'})) {
1.609     raeburn  7304:                 if ($$classlist{$student}[$idx{status}] eq 'Future') {
1.275     raeburn  7305:                     push(@{$$users{st}{$student}},'future');
1.288     raeburn  7306:                     $match = 1;
1.275     raeburn  7307:                 }
                   7308:             }
1.609     raeburn  7309:             if ($match) {
                   7310:                 push(@{$seclists{$student}},$section);
                   7311:                 if (ref($userdata) eq 'HASH') {
                   7312:                     $$userdata{$student} = $$classlist{$student};
                   7313:                 }
                   7314:                 if (ref($statushash) eq 'HASH') {
                   7315:                     $statushash->{$student}{'st'}{$section} = $status;
                   7316:                 }
1.288     raeburn  7317:             }
1.275     raeburn  7318:         }
                   7319:     }
1.412     raeburn  7320:     if ((@{$roles} > 1) || ((@{$roles} == 1) && ($$roles[0] ne "st"))) {
1.439     raeburn  7321:         my %coursepersonnel = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   7322:         my $now = time;
1.609     raeburn  7323:         my %displaystatus = ( previous => 'Expired',
                   7324:                               active   => 'Active',
                   7325:                               future   => 'Future',
                   7326:                             );
1.630     raeburn  7327:         my %nothide;
                   7328:         if ($hidepriv) {
                   7329:             my %coursehash=&Apache::lonnet::coursedescription($cdom.'_'.$cnum);
                   7330:             foreach my $user (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
                   7331:                 if ($user !~ /:/) {
                   7332:                     $nothide{join(':',split(/[\@]/,$user))}=1;
                   7333:                 } else {
                   7334:                     $nothide{$user} = 1;
                   7335:                 }
                   7336:             }
                   7337:         }
1.439     raeburn  7338:         foreach my $person (sort(keys(%coursepersonnel))) {
1.288     raeburn  7339:             my $match = 0;
1.412     raeburn  7340:             my $secmatch = 0;
1.439     raeburn  7341:             my $status;
1.412     raeburn  7342:             my ($role,$user,$usec) = ($person =~ /^([^:]*):([^:]+:[^:]+):([^:]*)/);
1.275     raeburn  7343:             $user =~ s/:$//;
1.439     raeburn  7344:             my ($end,$start) = split(/:/,$coursepersonnel{$person});
                   7345:             if ($end == -1 || $start == -1) {
                   7346:                 next;
                   7347:             }
                   7348:             if (($role) && ((grep(/^\Q$role\E$/,@{$roles})) ||
                   7349:                 (grep(/^cr$/,@{$roles}) && $role =~ /^cr\//))) {
1.412     raeburn  7350:                 my ($uname,$udom) = split(/:/,$user);
                   7351:                 if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
1.420     albertel 7352:                     if (grep(/^all$/,@{$sections})) {
1.412     raeburn  7353:                         $secmatch = 1;
                   7354:                     } elsif ($usec eq '') {
1.420     albertel 7355:                         if (grep(/^none$/,@{$sections})) {
1.412     raeburn  7356:                             $secmatch = 1;
                   7357:                         }
                   7358:                     } else {
                   7359:                         if (grep(/^\Q$usec\E$/,@{$sections})) {
                   7360:                             $secmatch = 1;
                   7361:                         }
                   7362:                     }
                   7363:                     if (!$secmatch) {
                   7364:                         next;
                   7365:                     }
1.288     raeburn  7366:                 }
1.419     raeburn  7367:                 if ($usec eq '') {
                   7368:                     $usec = 'none';
                   7369:                 }
1.275     raeburn  7370:                 if ($uname ne '' && $udom ne '') {
1.630     raeburn  7371:                     if ($hidepriv) {
                   7372:                         if ((&Apache::lonnet::privileged($uname,$udom)) &&
                   7373:                             (!$nothide{$uname.':'.$udom})) {
                   7374:                             next;
                   7375:                         }
                   7376:                     }
1.503     raeburn  7377:                     if ($end > 0 && $end < $now) {
1.439     raeburn  7378:                         $status = 'previous';
                   7379:                     } elsif ($start > $now) {
                   7380:                         $status = 'future';
                   7381:                     } else {
                   7382:                         $status = 'active';
                   7383:                     }
1.277     albertel 7384:                     foreach my $type (keys(%{$types})) { 
1.275     raeburn  7385:                         if ($status eq $type) {
1.420     albertel 7386:                             if (!grep(/^\Q$type\E$/,@{$$users{$role}{$user}})) {
1.419     raeburn  7387:                                 push(@{$$users{$role}{$user}},$type);
                   7388:                             }
1.288     raeburn  7389:                             $match = 1;
                   7390:                         }
                   7391:                     }
1.419     raeburn  7392:                     if (($match) && (ref($userdata) eq 'HASH')) {
                   7393:                         if (!exists($$userdata{$uname.':'.$udom})) {
                   7394: 			    &get_user_info($udom,$uname,\%idx,$userdata);
                   7395:                         }
1.420     albertel 7396:                         if (!grep(/^\Q$usec\E$/,@{$seclists{$uname.':'.$udom}})) {
1.419     raeburn  7397:                             push(@{$seclists{$uname.':'.$udom}},$usec);
                   7398:                         }
1.609     raeburn  7399:                         if (ref($statushash) eq 'HASH') {
                   7400:                             $statushash->{$uname.':'.$udom}{$role}{$usec} = $displaystatus{$status};
                   7401:                         }
1.275     raeburn  7402:                     }
                   7403:                 }
                   7404:             }
                   7405:         }
1.290     albertel 7406:         if (grep(/^ow$/,@{$roles})) {
1.279     raeburn  7407:             if ((defined($cdom)) && (defined($cnum))) {
                   7408:                 my %csettings = &Apache::lonnet::get('environment',['internal.courseowner'],$cdom,$cnum);
                   7409:                 if ( defined($csettings{'internal.courseowner'}) ) {
                   7410:                     my $owner = $csettings{'internal.courseowner'};
1.609     raeburn  7411:                     next if ($owner eq '');
                   7412:                     my ($ownername,$ownerdom);
                   7413:                     if ($owner =~ /^([^:]+):([^:]+)$/) {
                   7414:                         $ownername = $1;
                   7415:                         $ownerdom = $2;
                   7416:                     } else {
                   7417:                         $ownername = $owner;
                   7418:                         $ownerdom = $cdom;
                   7419:                         $owner = $ownername.':'.$ownerdom;
1.439     raeburn  7420:                     }
                   7421:                     @{$$users{'ow'}{$owner}} = 'any';
1.290     albertel 7422:                     if (defined($userdata) && 
1.609     raeburn  7423: 			!exists($$userdata{$owner})) {
                   7424: 			&get_user_info($ownerdom,$ownername,\%idx,$userdata);
                   7425:                         if (!grep(/^none$/,@{$seclists{$owner}})) {
                   7426:                             push(@{$seclists{$owner}},'none');
                   7427:                         }
                   7428:                         if (ref($statushash) eq 'HASH') {
                   7429:                             $statushash->{$owner}{'ow'}{'none'} = 'Any';
1.419     raeburn  7430:                         }
1.290     albertel 7431: 		    }
1.279     raeburn  7432:                 }
                   7433:             }
                   7434:         }
1.419     raeburn  7435:         foreach my $user (keys(%seclists)) {
                   7436:             @{$seclists{$user}} = (sort {$a <=> $b} @{$seclists{$user}});
                   7437:             $$userdata{$user}[$idx{section}] = join(',',@{$seclists{$user}});
                   7438:         }
1.275     raeburn  7439:     }
                   7440:     return;
                   7441: }
                   7442: 
1.288     raeburn  7443: sub get_user_info {
                   7444:     my ($udom,$uname,$idx,$userdata) = @_;
1.289     albertel 7445:     $$userdata{$uname.':'.$udom}[$$idx{fullname}] = 
                   7446: 	&plainname($uname,$udom,'lastname');
1.291     albertel 7447:     $$userdata{$uname.':'.$udom}[$$idx{uname}] = $uname;
1.297     raeburn  7448:     $$userdata{$uname.':'.$udom}[$$idx{udom}] = $udom;
1.609     raeburn  7449:     my %idhash =  &Apache::lonnet::idrget($udom,($uname));
                   7450:     $$userdata{$uname.':'.$udom}[$$idx{id}] = $idhash{$uname}; 
1.288     raeburn  7451:     return;
                   7452: }
1.275     raeburn  7453: 
1.472     raeburn  7454: ###############################################
                   7455: 
                   7456: =pod
                   7457: 
                   7458: =item * &get_user_quota()
                   7459: 
                   7460: Retrieves quota assigned for storage of portfolio files for a user  
                   7461: 
                   7462: Incoming parameters:
                   7463: 1. user's username
                   7464: 2. user's domain
                   7465: 
                   7466: Returns:
1.536     raeburn  7467: 1. Disk quota (in Mb) assigned to student.
                   7468: 2. (Optional) Type of setting: custom or default
                   7469:    (individually assigned or default for user's 
                   7470:    institutional status).
                   7471: 3. (Optional) - User's institutional status (e.g., faculty, staff
                   7472:    or student - types as defined in localenroll::inst_usertypes 
                   7473:    for user's domain, which determines default quota for user.
                   7474: 4. (Optional) - Default quota which would apply to the user.
1.472     raeburn  7475: 
                   7476: If a value has been stored in the user's environment, 
1.536     raeburn  7477: it will return that, otherwise it returns the maximal default
                   7478: defined for the user's instituional status(es) in the domain.
1.472     raeburn  7479: 
                   7480: =cut
                   7481: 
                   7482: ###############################################
                   7483: 
                   7484: 
                   7485: sub get_user_quota {
                   7486:     my ($uname,$udom) = @_;
1.536     raeburn  7487:     my ($quota,$quotatype,$settingstatus,$defquota);
1.472     raeburn  7488:     if (!defined($udom)) {
                   7489:         $udom = $env{'user.domain'};
                   7490:     }
                   7491:     if (!defined($uname)) {
                   7492:         $uname = $env{'user.name'};
                   7493:     }
                   7494:     if (($udom eq '' || $uname eq '') ||
                   7495:         ($udom eq 'public') && ($uname eq 'public')) {
                   7496:         $quota = 0;
1.536     raeburn  7497:         $quotatype = 'default';
                   7498:         $defquota = 0; 
1.472     raeburn  7499:     } else {
1.536     raeburn  7500:         my $inststatus;
1.472     raeburn  7501:         if ($udom eq $env{'user.domain'} && $uname eq $env{'user.name'}) {
                   7502:             $quota = $env{'environment.portfolioquota'};
1.536     raeburn  7503:             $inststatus = $env{'environment.inststatus'};
1.472     raeburn  7504:         } else {
1.536     raeburn  7505:             my %userenv = 
                   7506:                 &Apache::lonnet::get('environment',['portfolioquota',
                   7507:                                      'inststatus'],$udom,$uname);
1.472     raeburn  7508:             my ($tmp) = keys(%userenv);
                   7509:             if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
                   7510:                 $quota = $userenv{'portfolioquota'};
1.536     raeburn  7511:                 $inststatus = $userenv{'inststatus'};
1.472     raeburn  7512:             } else {
                   7513:                 undef(%userenv);
                   7514:             }
                   7515:         }
1.536     raeburn  7516:         ($defquota,$settingstatus) = &default_quota($udom,$inststatus);
1.472     raeburn  7517:         if ($quota eq '') {
1.536     raeburn  7518:             $quota = $defquota;
                   7519:             $quotatype = 'default';
                   7520:         } else {
                   7521:             $quotatype = 'custom';
1.472     raeburn  7522:         }
                   7523:     }
1.536     raeburn  7524:     if (wantarray) {
                   7525:         return ($quota,$quotatype,$settingstatus,$defquota);
                   7526:     } else {
                   7527:         return $quota;
                   7528:     }
1.472     raeburn  7529: }
                   7530: 
                   7531: ###############################################
                   7532: 
                   7533: =pod
                   7534: 
                   7535: =item * &default_quota()
                   7536: 
1.536     raeburn  7537: Retrieves default quota assigned for storage of user portfolio files,
                   7538: given an (optional) user's institutional status.
1.472     raeburn  7539: 
                   7540: Incoming parameters:
                   7541: 1. domain
1.536     raeburn  7542: 2. (Optional) institutional status(es).  This is a : separated list of 
                   7543:    status types (e.g., faculty, staff, student etc.)
                   7544:    which apply to the user for whom the default is being retrieved.
                   7545:    If the institutional status string in undefined, the domain
                   7546:    default quota will be returned. 
1.472     raeburn  7547: 
                   7548: Returns:
                   7549: 1. Default disk quota (in Mb) for user portfolios in the domain.
1.536     raeburn  7550: 2. (Optional) institutional type which determined the value of the
                   7551:    default quota.
1.472     raeburn  7552: 
                   7553: If a value has been stored in the domain's configuration db,
                   7554: it will return that, otherwise it returns 20 (for backwards 
                   7555: compatibility with domains which have not set up a configuration
                   7556: db file; the original statically defined portfolio quota was 20 Mb). 
                   7557: 
1.536     raeburn  7558: If the user's status includes multiple types (e.g., staff and student),
                   7559: the largest default quota which applies to the user determines the
                   7560: default quota returned.
                   7561: 
1.780     raeburn  7562: =back
                   7563: 
1.472     raeburn  7564: =cut
                   7565: 
                   7566: ###############################################
                   7567: 
                   7568: 
                   7569: sub default_quota {
1.536     raeburn  7570:     my ($udom,$inststatus) = @_;
                   7571:     my ($defquota,$settingstatus);
                   7572:     my %quotahash = &Apache::lonnet::get_dom('configuration',
1.622     raeburn  7573:                                             ['quotas'],$udom);
                   7574:     if (ref($quotahash{'quotas'}) eq 'HASH') {
1.536     raeburn  7575:         if ($inststatus ne '') {
1.765     raeburn  7576:             my @statuses = map { &unescape($_); } split(/:/,$inststatus);
1.536     raeburn  7577:             foreach my $item (@statuses) {
1.711     raeburn  7578:                 if (ref($quotahash{'quotas'}{'defaultquota'}) eq 'HASH') {
                   7579:                     if ($quotahash{'quotas'}{'defaultquota'}{$item} ne '') {
                   7580:                         if ($defquota eq '') {
                   7581:                             $defquota = $quotahash{'quotas'}{'defaultquota'}{$item};
                   7582:                             $settingstatus = $item;
                   7583:                         } elsif ($quotahash{'quotas'}{'defaultquota'}{$item} > $defquota) {
                   7584:                             $defquota = $quotahash{'quotas'}{'defaultquota'}{$item};
                   7585:                             $settingstatus = $item;
                   7586:                         }
                   7587:                     }
                   7588:                 } else {
                   7589:                     if ($quotahash{'quotas'}{$item} ne '') {
                   7590:                         if ($defquota eq '') {
                   7591:                             $defquota = $quotahash{'quotas'}{$item};
                   7592:                             $settingstatus = $item;
                   7593:                         } elsif ($quotahash{'quotas'}{$item} > $defquota) {
                   7594:                             $defquota = $quotahash{'quotas'}{$item};
                   7595:                             $settingstatus = $item;
                   7596:                         }
1.536     raeburn  7597:                     }
                   7598:                 }
                   7599:             }
                   7600:         }
                   7601:         if ($defquota eq '') {
1.711     raeburn  7602:             if (ref($quotahash{'quotas'}{'defaultquota'}) eq 'HASH') {
                   7603:                 $defquota = $quotahash{'quotas'}{'defaultquota'}{'default'};
                   7604:             } else {
                   7605:                 $defquota = $quotahash{'quotas'}{'default'};
                   7606:             }
1.536     raeburn  7607:             $settingstatus = 'default';
                   7608:         }
                   7609:     } else {
                   7610:         $settingstatus = 'default';
                   7611:         $defquota = 20;
                   7612:     }
                   7613:     if (wantarray) {
                   7614:         return ($defquota,$settingstatus);
1.472     raeburn  7615:     } else {
1.536     raeburn  7616:         return $defquota;
1.472     raeburn  7617:     }
                   7618: }
                   7619: 
1.384     raeburn  7620: sub get_secgrprole_info {
                   7621:     my ($cdom,$cnum,$needroles,$type)  = @_;
                   7622:     my %sections_count = &get_sections($cdom,$cnum);
                   7623:     my @sections =  (sort {$a <=> $b} keys(%sections_count));
                   7624:     my %curr_groups = &Apache::longroup::coursegroups($cdom,$cnum);
                   7625:     my @groups = sort(keys(%curr_groups));
                   7626:     my $allroles = [];
                   7627:     my $rolehash;
                   7628:     my $accesshash = {
                   7629:                      active => 'Currently has access',
                   7630:                      future => 'Will have future access',
                   7631:                      previous => 'Previously had access',
                   7632:                   };
                   7633:     if ($needroles) {
                   7634:         $rolehash = {'all' => 'all'};
1.385     albertel 7635:         my %user_roles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
                   7636: 	if (&Apache::lonnet::error(%user_roles)) {
                   7637: 	    undef(%user_roles);
                   7638: 	}
                   7639:         foreach my $item (keys(%user_roles)) {
1.384     raeburn  7640:             my ($role)=split(/\:/,$item,2);
                   7641:             if ($role eq 'cr') { next; }
                   7642:             if ($role =~ /^cr/) {
                   7643:                 $$rolehash{$role} = (split('/',$role))[3];
                   7644:             } else {
                   7645:                 $$rolehash{$role} = &Apache::lonnet::plaintext($role,$type);
                   7646:             }
                   7647:         }
                   7648:         foreach my $key (sort(keys(%{$rolehash}))) {
                   7649:             push(@{$allroles},$key);
                   7650:         }
                   7651:         push (@{$allroles},'st');
                   7652:         $$rolehash{'st'} = &Apache::lonnet::plaintext('st',$type);
                   7653:     }
                   7654:     return (\@sections,\@groups,$allroles,$rolehash,$accesshash);
                   7655: }
                   7656: 
1.555     raeburn  7657: sub user_picker {
1.627     raeburn  7658:     my ($dom,$srch,$forcenewuser,$caller,$cancreate,$usertype) = @_;
1.555     raeburn  7659:     my $currdom = $dom;
                   7660:     my %curr_selected = (
                   7661:                         srchin => 'dom',
1.580     raeburn  7662:                         srchby => 'lastname',
1.555     raeburn  7663:                       );
                   7664:     my $srchterm;
1.625     raeburn  7665:     if ((ref($srch) eq 'HASH') && ($env{'form.origform'} ne 'crtusername')) {
1.555     raeburn  7666:         if ($srch->{'srchby'} ne '') {
                   7667:             $curr_selected{'srchby'} = $srch->{'srchby'};
                   7668:         }
                   7669:         if ($srch->{'srchin'} ne '') {
                   7670:             $curr_selected{'srchin'} = $srch->{'srchin'};
                   7671:         }
                   7672:         if ($srch->{'srchtype'} ne '') {
                   7673:             $curr_selected{'srchtype'} = $srch->{'srchtype'};
                   7674:         }
                   7675:         if ($srch->{'srchdomain'} ne '') {
                   7676:             $currdom = $srch->{'srchdomain'};
                   7677:         }
                   7678:         $srchterm = $srch->{'srchterm'};
                   7679:     }
                   7680:     my %lt=&Apache::lonlocal::texthash(
1.573     raeburn  7681:                     'usr'       => 'Search criteria',
1.563     raeburn  7682:                     'doma'      => 'Domain/institution to search',
1.558     albertel 7683:                     'uname'     => 'username',
                   7684:                     'lastname'  => 'last name',
1.555     raeburn  7685:                     'lastfirst' => 'last name, first name',
1.558     albertel 7686:                     'crs'       => 'in this course',
1.576     raeburn  7687:                     'dom'       => 'in selected LON-CAPA domain', 
1.558     albertel 7688:                     'alc'       => 'all LON-CAPA',
1.573     raeburn  7689:                     'instd'     => 'in institutional directory for selected domain',
1.558     albertel 7690:                     'exact'     => 'is',
                   7691:                     'contains'  => 'contains',
1.569     raeburn  7692:                     'begins'    => 'begins with',
1.571     raeburn  7693:                     'youm'      => "You must include some text to search for.",
                   7694:                     'thte'      => "The text you are searching for must contain at least two characters when using a 'begins' type search.",
                   7695:                     'thet'      => "The text you are searching for must contain at least three characters when using a 'contains' type search.",
                   7696:                     'yomc'      => "You must choose a domain when using an institutional directory search.",
                   7697:                     'ymcd'      => "You must choose a domain when using a domain search.",
                   7698:                     'whus'      => "When using searching by last,first you must include a comma as separator between last name and first name.",
                   7699:                     'whse'      => "When searching by last,first you must include at least one character in the first name.",
                   7700:                      'thfo'     => "The following need to be corrected before the search can be run:",
1.555     raeburn  7701:                                        );
1.563     raeburn  7702:     my $domform = &select_dom_form($currdom,'srchdomain',1,1);
                   7703:     my $srchinsel = ' <select name="srchin">';
1.555     raeburn  7704: 
                   7705:     my @srchins = ('crs','dom','alc','instd');
                   7706: 
                   7707:     foreach my $option (@srchins) {
                   7708:         # FIXME 'alc' option unavailable until 
                   7709:         #       loncreateuser::print_user_query_page()
                   7710:         #       has been completed.
                   7711:         next if ($option eq 'alc');
1.880     raeburn  7712:         next if (($option eq 'crs') && ($env{'form.form'} eq 'requestcrs'));  
1.555     raeburn  7713:         next if ($option eq 'crs' && !$env{'request.course.id'});
1.563     raeburn  7714:         if ($curr_selected{'srchin'} eq $option) {
                   7715:             $srchinsel .= ' 
                   7716:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   7717:         } else {
                   7718:             $srchinsel .= '
                   7719:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   7720:         }
1.555     raeburn  7721:     }
1.563     raeburn  7722:     $srchinsel .= "\n  </select>\n";
1.555     raeburn  7723: 
                   7724:     my $srchbysel =  ' <select name="srchby">';
1.580     raeburn  7725:     foreach my $option ('lastname','lastfirst','uname') {
1.555     raeburn  7726:         if ($curr_selected{'srchby'} eq $option) {
                   7727:             $srchbysel .= '
                   7728:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   7729:         } else {
                   7730:             $srchbysel .= '
                   7731:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   7732:          }
                   7733:     }
                   7734:     $srchbysel .= "\n  </select>\n";
                   7735: 
                   7736:     my $srchtypesel = ' <select name="srchtype">';
1.580     raeburn  7737:     foreach my $option ('begins','contains','exact') {
1.555     raeburn  7738:         if ($curr_selected{'srchtype'} eq $option) {
                   7739:             $srchtypesel .= '
                   7740:    <option value="'.$option.'" selected="selected">'.$lt{$option}.'</option>';
                   7741:         } else {
                   7742:             $srchtypesel .= '
                   7743:    <option value="'.$option.'">'.$lt{$option}.'</option>';
                   7744:         }
                   7745:     }
                   7746:     $srchtypesel .= "\n  </select>\n";
                   7747: 
1.558     albertel 7748:     my ($newuserscript,$new_user_create);
1.556     raeburn  7749: 
                   7750:     if ($forcenewuser) {
1.576     raeburn  7751:         if (ref($srch) eq 'HASH') {
                   7752:             if ($srch->{'srchby'} eq 'uname' && $srch->{'srchtype'} eq 'exact' && $srch->{'srchin'} eq 'dom' && $srch->{'srchdomain'} eq $env{'request.role.domain'}) {
1.627     raeburn  7753:                 if ($cancreate) {
                   7754:                     $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>';
                   7755:                 } else {
1.799     bisitz   7756:                     my $helplink = 'javascript:helpMenu('."'display'".')';
1.627     raeburn  7757:                     my %usertypetext = (
                   7758:                         official   => 'institutional',
                   7759:                         unofficial => 'non-institutional',
                   7760:                     );
1.799     bisitz   7761:                     $new_user_create = '<p class="LC_warning">'
                   7762:                                       .&mt("You are not authorized to create new $usertypetext{$usertype} users in this domain.")
                   7763:                                       .' '
                   7764:                                       .&mt('Please contact the [_1]helpdesk[_2] for assistance.'
                   7765:                                           ,'<a href="'.$helplink.'">','</a>')
                   7766:                                       .'</p><br />';
1.627     raeburn  7767:                 }
1.576     raeburn  7768:             }
                   7769:         }
                   7770: 
1.556     raeburn  7771:         $newuserscript = <<"ENDSCRIPT";
                   7772: 
1.570     raeburn  7773: function setSearch(createnew,callingForm) {
1.556     raeburn  7774:     if (createnew == 1) {
1.570     raeburn  7775:         for (var i=0; i<callingForm.srchby.length; i++) {
                   7776:             if (callingForm.srchby.options[i].value == 'uname') {
                   7777:                 callingForm.srchby.selectedIndex = i;
1.556     raeburn  7778:             }
                   7779:         }
1.570     raeburn  7780:         for (var i=0; i<callingForm.srchin.length; i++) {
                   7781:             if ( callingForm.srchin.options[i].value == 'dom') {
                   7782: 		callingForm.srchin.selectedIndex = i;
1.556     raeburn  7783:             }
                   7784:         }
1.570     raeburn  7785:         for (var i=0; i<callingForm.srchtype.length; i++) {
                   7786:             if (callingForm.srchtype.options[i].value == 'exact') {
                   7787:                 callingForm.srchtype.selectedIndex = i;
1.556     raeburn  7788:             }
                   7789:         }
1.570     raeburn  7790:         for (var i=0; i<callingForm.srchdomain.length; i++) {
                   7791:             if (callingForm.srchdomain.options[i].value == '$env{'request.role.domain'}') {
                   7792:                 callingForm.srchdomain.selectedIndex = i;
1.556     raeburn  7793:             }
                   7794:         }
                   7795:     }
                   7796: }
                   7797: ENDSCRIPT
1.558     albertel 7798: 
1.556     raeburn  7799:     }
                   7800: 
1.555     raeburn  7801:     my $output = <<"END_BLOCK";
1.556     raeburn  7802: <script type="text/javascript">
1.824     bisitz   7803: // <![CDATA[
1.570     raeburn  7804: function validateEntry(callingForm) {
1.558     albertel 7805: 
1.556     raeburn  7806:     var checkok = 1;
1.558     albertel 7807:     var srchin;
1.570     raeburn  7808:     for (var i=0; i<callingForm.srchin.length; i++) {
                   7809: 	if ( callingForm.srchin[i].checked ) {
                   7810: 	    srchin = callingForm.srchin[i].value;
1.558     albertel 7811: 	}
                   7812:     }
                   7813: 
1.570     raeburn  7814:     var srchtype = callingForm.srchtype.options[callingForm.srchtype.selectedIndex].value;
                   7815:     var srchby = callingForm.srchby.options[callingForm.srchby.selectedIndex].value;
                   7816:     var srchdomain = callingForm.srchdomain.options[callingForm.srchdomain.selectedIndex].value;
                   7817:     var srchterm =  callingForm.srchterm.value;
                   7818:     var srchin = callingForm.srchin.options[callingForm.srchin.selectedIndex].value;
1.556     raeburn  7819:     var msg = "";
                   7820: 
                   7821:     if (srchterm == "") {
                   7822:         checkok = 0;
1.571     raeburn  7823:         msg += "$lt{'youm'}\\n";
1.556     raeburn  7824:     }
                   7825: 
1.569     raeburn  7826:     if (srchtype== 'begins') {
                   7827:         if (srchterm.length < 2) {
                   7828:             checkok = 0;
1.571     raeburn  7829:             msg += "$lt{'thte'}\\n";
1.569     raeburn  7830:         }
                   7831:     }
                   7832: 
1.556     raeburn  7833:     if (srchtype== 'contains') {
                   7834:         if (srchterm.length < 3) {
                   7835:             checkok = 0;
1.571     raeburn  7836:             msg += "$lt{'thet'}\\n";
1.556     raeburn  7837:         }
                   7838:     }
                   7839:     if (srchin == 'instd') {
                   7840:         if (srchdomain == '') {
                   7841:             checkok = 0;
1.571     raeburn  7842:             msg += "$lt{'yomc'}\\n";
1.556     raeburn  7843:         }
                   7844:     }
                   7845:     if (srchin == 'dom') {
                   7846:         if (srchdomain == '') {
                   7847:             checkok = 0;
1.571     raeburn  7848:             msg += "$lt{'ymcd'}\\n";
1.556     raeburn  7849:         }
                   7850:     }
                   7851:     if (srchby == 'lastfirst') {
                   7852:         if (srchterm.indexOf(",") == -1) {
                   7853:             checkok = 0;
1.571     raeburn  7854:             msg += "$lt{'whus'}\\n";
1.556     raeburn  7855:         }
                   7856:         if (srchterm.indexOf(",") == srchterm.length -1) {
                   7857:             checkok = 0;
1.571     raeburn  7858:             msg += "$lt{'whse'}\\n";
1.556     raeburn  7859:         }
                   7860:     }
                   7861:     if (checkok == 0) {
1.571     raeburn  7862:         alert("$lt{'thfo'}\\n"+msg);
1.556     raeburn  7863:         return;
                   7864:     }
                   7865:     if (checkok == 1) {
1.570     raeburn  7866:         callingForm.submit();
1.556     raeburn  7867:     }
                   7868: }
                   7869: 
                   7870: $newuserscript
                   7871: 
1.824     bisitz   7872: // ]]>
1.556     raeburn  7873: </script>
1.558     albertel 7874: 
                   7875: $new_user_create
                   7876: 
1.555     raeburn  7877: END_BLOCK
1.558     albertel 7878: 
1.876     raeburn  7879:     $output .= &Apache::lonhtmlcommon::start_pick_box().
                   7880:                &Apache::lonhtmlcommon::row_title($lt{'doma'}).
                   7881:                $domform.
                   7882:                &Apache::lonhtmlcommon::row_closure().
                   7883:                &Apache::lonhtmlcommon::row_title($lt{'usr'}).
                   7884:                $srchbysel.
                   7885:                $srchtypesel. 
                   7886:                '<input type="text" size="15" name="srchterm" value="'.$srchterm.'" />'.
                   7887:                $srchinsel.
                   7888:                &Apache::lonhtmlcommon::row_closure(1). 
                   7889:                &Apache::lonhtmlcommon::end_pick_box().
                   7890:                '<br />';
1.555     raeburn  7891:     return $output;
                   7892: }
                   7893: 
1.612     raeburn  7894: sub user_rule_check {
1.615     raeburn  7895:     my ($usershash,$checks,$alerts,$rulematch,$inst_results,$curr_rules,$got_rules) = @_;
1.612     raeburn  7896:     my $response;
                   7897:     if (ref($usershash) eq 'HASH') {
                   7898:         foreach my $user (keys(%{$usershash})) {
                   7899:             my ($uname,$udom) = split(/:/,$user);
                   7900:             next if ($udom eq '' || $uname eq '');
1.615     raeburn  7901:             my ($id,$newuser);
1.612     raeburn  7902:             if (ref($usershash->{$user}) eq 'HASH') {
1.615     raeburn  7903:                 $newuser = $usershash->{$user}->{'newuser'};
1.612     raeburn  7904:                 $id = $usershash->{$user}->{'id'};
                   7905:             }
                   7906:             my $inst_response;
                   7907:             if (ref($checks) eq 'HASH') {
                   7908:                 if (defined($checks->{'username'})) {
1.615     raeburn  7909:                     ($inst_response,%{$inst_results->{$user}}) = 
1.612     raeburn  7910:                         &Apache::lonnet::get_instuser($udom,$uname);
                   7911:                 } elsif (defined($checks->{'id'})) {
1.615     raeburn  7912:                     ($inst_response,%{$inst_results->{$user}}) =
1.612     raeburn  7913:                         &Apache::lonnet::get_instuser($udom,undef,$id);
                   7914:                 }
1.615     raeburn  7915:             } else {
                   7916:                 ($inst_response,%{$inst_results->{$user}}) =
                   7917:                     &Apache::lonnet::get_instuser($udom,$uname);
                   7918:                 return;
1.612     raeburn  7919:             }
1.615     raeburn  7920:             if (!$got_rules->{$udom}) {
1.612     raeburn  7921:                 my %domconfig = &Apache::lonnet::get_dom('configuration',
                   7922:                                                   ['usercreation'],$udom);
                   7923:                 if (ref($domconfig{'usercreation'}) eq 'HASH') {
1.615     raeburn  7924:                     foreach my $item ('username','id') {
1.612     raeburn  7925:                         if (ref($domconfig{'usercreation'}{$item.'_rule'}) eq 'ARRAY') {
                   7926:                             $$curr_rules{$udom}{$item} = 
                   7927:                                 $domconfig{'usercreation'}{$item.'_rule'};
1.585     raeburn  7928:                         }
                   7929:                     }
                   7930:                 }
1.615     raeburn  7931:                 $got_rules->{$udom} = 1;  
1.585     raeburn  7932:             }
1.612     raeburn  7933:             foreach my $item (keys(%{$checks})) {
                   7934:                 if (ref($$curr_rules{$udom}) eq 'HASH') {
                   7935:                     if (ref($$curr_rules{$udom}{$item}) eq 'ARRAY') {
                   7936:                         if (@{$$curr_rules{$udom}{$item}} > 0) {
                   7937:                             my %rule_check = &Apache::lonnet::inst_rulecheck($udom,$uname,$id,$item,$$curr_rules{$udom}{$item});
                   7938:                             foreach my $rule (@{$$curr_rules{$udom}{$item}}) {
                   7939:                                 if ($rule_check{$rule}) {
                   7940:                                     $$rulematch{$user}{$item} = $rule;
                   7941:                                     if ($inst_response eq 'ok') {
1.615     raeburn  7942:                                         if (ref($inst_results) eq 'HASH') {
                   7943:                                             if (ref($inst_results->{$user}) eq 'HASH') {
                   7944:                                                 if (keys(%{$inst_results->{$user}}) == 0) {
                   7945:                                                     $$alerts{$item}{$udom}{$uname} = 1;
                   7946:                                                 }
1.612     raeburn  7947:                                             }
                   7948:                                         }
1.615     raeburn  7949:                                     }
                   7950:                                     last;
1.585     raeburn  7951:                                 }
                   7952:                             }
                   7953:                         }
                   7954:                     }
                   7955:                 }
                   7956:             }
                   7957:         }
                   7958:     }
1.612     raeburn  7959:     return;
                   7960: }
                   7961: 
                   7962: sub user_rule_formats {
                   7963:     my ($domain,$domdesc,$curr_rules,$check) = @_;
                   7964:     my %text = ( 
                   7965:                  'username' => 'Usernames',
                   7966:                  'id'       => 'IDs',
                   7967:                );
                   7968:     my $output;
                   7969:     my ($rules,$ruleorder) = &Apache::lonnet::inst_userrules($domain,$check);
                   7970:     if ((ref($rules) eq 'HASH') && (ref($ruleorder) eq 'ARRAY')) {
                   7971:         if (@{$ruleorder} > 0) {
                   7972:             $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>';
                   7973:             foreach my $rule (@{$ruleorder}) {
                   7974:                 if (ref($curr_rules) eq 'ARRAY') {
                   7975:                     if (grep(/^\Q$rule\E$/,@{$curr_rules})) {
                   7976:                         if (ref($rules->{$rule}) eq 'HASH') {
                   7977:                             $output .= '<li>'.$rules->{$rule}{'name'}.': '.
                   7978:                                         $rules->{$rule}{'desc'}.'</li>';
                   7979:                         }
                   7980:                     }
                   7981:                 }
                   7982:             }
                   7983:             $output .= '</ul>';
                   7984:         }
                   7985:     }
                   7986:     return $output;
                   7987: }
                   7988: 
                   7989: sub instrule_disallow_msg {
1.615     raeburn  7990:     my ($checkitem,$domdesc,$count,$mode) = @_;
1.612     raeburn  7991:     my $response;
                   7992:     my %text = (
                   7993:                   item   => 'username',
                   7994:                   items  => 'usernames',
                   7995:                   match  => 'matches',
                   7996:                   do     => 'does',
                   7997:                   action => 'a username',
                   7998:                   one    => 'one',
                   7999:                );
                   8000:     if ($count > 1) {
                   8001:         $text{'item'} = 'usernames';
                   8002:         $text{'match'} ='match';
                   8003:         $text{'do'} = 'do';
                   8004:         $text{'action'} = 'usernames',
                   8005:         $text{'one'} = 'ones';
                   8006:     }
                   8007:     if ($checkitem eq 'id') {
                   8008:         $text{'items'} = 'IDs';
                   8009:         $text{'item'} = 'ID';
                   8010:         $text{'action'} = 'an ID';
1.615     raeburn  8011:         if ($count > 1) {
                   8012:             $text{'item'} = 'IDs';
                   8013:             $text{'action'} = 'IDs';
                   8014:         }
1.612     raeburn  8015:     }
1.674     bisitz   8016:     $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  8017:     if ($mode eq 'upload') {
                   8018:         if ($checkitem eq 'username') {
                   8019:             $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'}.");
                   8020:         } elsif ($checkitem eq 'id') {
1.674     bisitz   8021:             $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  8022:         }
1.669     raeburn  8023:     } elsif ($mode eq 'selfcreate') {
                   8024:         if ($checkitem eq 'id') {
                   8025:             $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.");
                   8026:         }
1.615     raeburn  8027:     } else {
                   8028:         if ($checkitem eq 'username') {
                   8029:             $response .= &mt("You must choose $text{'action'} with a different format --  $text{'one'} that will not conflict with 'official' institutional $text{'items'}.");
                   8030:         } elsif ($checkitem eq 'id') {
                   8031:             $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.");
                   8032:         }
1.612     raeburn  8033:     }
                   8034:     return $response;
1.585     raeburn  8035: }
                   8036: 
1.624     raeburn  8037: sub personal_data_fieldtitles {
                   8038:     my %fieldtitles = &Apache::lonlocal::texthash (
                   8039:                         id => 'Student/Employee ID',
                   8040:                         permanentemail => 'E-mail address',
                   8041:                         lastname => 'Last Name',
                   8042:                         firstname => 'First Name',
                   8043:                         middlename => 'Middle Name',
                   8044:                         generation => 'Generation',
                   8045:                         gen => 'Generation',
1.765     raeburn  8046:                         inststatus => 'Affiliation',
1.624     raeburn  8047:                    );
                   8048:     return %fieldtitles;
                   8049: }
                   8050: 
1.642     raeburn  8051: sub sorted_inst_types {
                   8052:     my ($dom) = @_;
                   8053:     my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($dom);
                   8054:     my $othertitle = &mt('All users');
                   8055:     if ($env{'request.course.id'}) {
1.668     raeburn  8056:         $othertitle  = &mt('Any users');
1.642     raeburn  8057:     }
                   8058:     my @types;
                   8059:     if (ref($order) eq 'ARRAY') {
                   8060:         @types = @{$order};
                   8061:     }
                   8062:     if (@types == 0) {
                   8063:         if (ref($usertypes) eq 'HASH') {
                   8064:             @types = sort(keys(%{$usertypes}));
                   8065:         }
                   8066:     }
                   8067:     if (keys(%{$usertypes}) > 0) {
                   8068:         $othertitle = &mt('Other users');
                   8069:     }
                   8070:     return ($othertitle,$usertypes,\@types);
                   8071: }
                   8072: 
1.645     raeburn  8073: sub get_institutional_codes {
                   8074:     my ($settings,$allcourses,$LC_code) = @_;
                   8075: # Get complete list of course sections to update
                   8076:     my @currsections = ();
                   8077:     my @currxlists = ();
                   8078:     my $coursecode = $$settings{'internal.coursecode'};
                   8079: 
                   8080:     if ($$settings{'internal.sectionnums'} ne '') {
                   8081:         @currsections = split(/,/,$$settings{'internal.sectionnums'});
                   8082:     }
                   8083: 
                   8084:     if ($$settings{'internal.crosslistings'} ne '') {
                   8085:         @currxlists = split(/,/,$$settings{'internal.crosslistings'});
                   8086:     }
                   8087: 
                   8088:     if (@currxlists > 0) {
                   8089:         foreach (@currxlists) {
                   8090:             if (m/^([^:]+):(\w*)$/) {
                   8091:                 unless (grep/^$1$/,@{$allcourses}) {
                   8092:                     push @{$allcourses},$1;
                   8093:                     $$LC_code{$1} = $2;
                   8094:                 }
                   8095:             }
                   8096:         }
                   8097:     }
                   8098:  
                   8099:     if (@currsections > 0) {
                   8100:         foreach (@currsections) {
                   8101:             if (m/^(\w+):(\w*)$/) {
                   8102:                 my $sec = $coursecode.$1;
                   8103:                 my $lc_sec = $2;
                   8104:                 unless (grep/^$sec$/,@{$allcourses}) {
                   8105:                     push @{$allcourses},$sec;
                   8106:                     $$LC_code{$sec} = $lc_sec;
                   8107:                 }
                   8108:             }
                   8109:         }
                   8110:     }
                   8111:     return;
                   8112: }
                   8113: 
1.112     bowersj2 8114: =pod
                   8115: 
1.780     raeburn  8116: =head1 Slot Helpers
                   8117: 
                   8118: =over 4
                   8119: 
                   8120: =item * sorted_slots()
                   8121: 
                   8122: Sorts an array of slot names in order of slot start time (earliest first). 
                   8123: 
                   8124: Inputs:
                   8125: 
                   8126: =over 4
                   8127: 
                   8128: slotsarr  - Reference to array of unsorted slot names.
                   8129: 
                   8130: slots     - Reference to hash of hash, where outer hash keys are slot names.
                   8131: 
1.549     albertel 8132: =back
                   8133: 
1.780     raeburn  8134: Returns:
                   8135: 
                   8136: =over 4
                   8137: 
                   8138: sorted   - An array of slot names sorted by the start time of the slot.
                   8139: 
                   8140: =back
                   8141: 
                   8142: =back
                   8143: 
                   8144: =cut
                   8145: 
                   8146: 
                   8147: sub sorted_slots {
                   8148:     my ($slotsarr,$slots) = @_;
                   8149:     my @sorted;
                   8150:     if ((ref($slotsarr) eq 'ARRAY') && (ref($slots) eq 'HASH')) {
                   8151:         @sorted =
                   8152:             sort {
                   8153:                      if (ref($slots->{$a}) && ref($slots->{$b})) {
                   8154:                          return $slots->{$a}{'starttime'} <=> $slots->{$b}{'starttime'}
                   8155:                      }
                   8156:                      if (ref($slots->{$a})) { return -1;}
                   8157:                      if (ref($slots->{$b})) { return 1;}
                   8158:                      return 0;
                   8159:                  } @{$slotsarr};
                   8160:     }
                   8161:     return @sorted;
                   8162: }
                   8163: 
                   8164: 
                   8165: =pod
                   8166: 
1.549     albertel 8167: =head1 HTTP Helpers
                   8168: 
                   8169: =over 4
                   8170: 
1.648     raeburn  8171: =item * &get_unprocessed_cgi($query,$possible_names)
1.112     bowersj2 8172: 
1.258     albertel 8173: Modify the %env hash to contain unprocessed CGI form parameters held in
1.112     bowersj2 8174: $query.  The parameters listed in $possible_names (an array reference),
1.258     albertel 8175: will be set in $env{'form.name'} if they do not already exist.
1.112     bowersj2 8176: 
                   8177: Typically called with $ENV{'QUERY_STRING'} as the first parameter.  
                   8178: $possible_names is an ref to an array of form element names.  As an example:
                   8179: get_unprocessed_cgi($ENV{'QUERY_STRING'},['uname','udom']);
1.258     albertel 8180: will result in $env{'form.uname'} and $env{'form.udom'} being set.
1.112     bowersj2 8181: 
                   8182: =cut
1.1       albertel 8183: 
1.6       albertel 8184: sub get_unprocessed_cgi {
1.25      albertel 8185:   my ($query,$possible_names)= @_;
1.26      matthew  8186:   # $Apache::lonxml::debug=1;
1.356     albertel 8187:   foreach my $pair (split(/&/,$query)) {
                   8188:     my ($name, $value) = split(/=/,$pair);
1.369     www      8189:     $name = &unescape($name);
1.25      albertel 8190:     if (!defined($possible_names) || (grep {$_ eq $name} @$possible_names)) {
                   8191:       $value =~ tr/+/ /;
                   8192:       $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
1.258     albertel 8193:       unless (defined($env{'form.'.$name})) { &add_to_env('form.'.$name,$value) };
1.25      albertel 8194:     }
1.16      harris41 8195:   }
1.6       albertel 8196: }
                   8197: 
1.112     bowersj2 8198: =pod
                   8199: 
1.648     raeburn  8200: =item * &cacheheader() 
1.112     bowersj2 8201: 
                   8202: returns cache-controlling header code
                   8203: 
                   8204: =cut
                   8205: 
1.7       albertel 8206: sub cacheheader {
1.258     albertel 8207:     unless ($env{'request.method'} eq 'GET') { return ''; }
1.216     albertel 8208:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime);
                   8209:     my $output .='<meta HTTP-EQUIV="Expires" CONTENT="'.$date.'" />
1.7       albertel 8210:                 <meta HTTP-EQUIV="Cache-control" CONTENT="no-cache" />
                   8211:                 <meta HTTP-EQUIV="Pragma" CONTENT="no-cache" />';
1.216     albertel 8212:     return $output;
1.7       albertel 8213: }
                   8214: 
1.112     bowersj2 8215: =pod
                   8216: 
1.648     raeburn  8217: =item * &no_cache($r) 
1.112     bowersj2 8218: 
                   8219: specifies header code to not have cache
                   8220: 
                   8221: =cut
                   8222: 
1.9       albertel 8223: sub no_cache {
1.216     albertel 8224:     my ($r) = @_;
                   8225:     if ($ENV{'REQUEST_METHOD'} ne 'GET' &&
1.258     albertel 8226: 	$env{'request.method'} ne 'GET') { return ''; }
1.216     albertel 8227:     my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime(time));
                   8228:     $r->no_cache(1);
                   8229:     $r->header_out("Expires" => $date);
                   8230:     $r->header_out("Pragma" => "no-cache");
1.123     www      8231: }
                   8232: 
                   8233: sub content_type {
1.181     albertel 8234:     my ($r,$type,$charset) = @_;
1.299     foxr     8235:     if ($r) {
                   8236: 	#  Note that printout.pl calls this with undef for $r.
                   8237: 	&no_cache($r);
                   8238:     }
1.258     albertel 8239:     if ($env{'browser.mathml'} && $type eq 'text/html') { $type='text/xml'; }
1.181     albertel 8240:     unless ($charset) {
                   8241: 	$charset=&Apache::lonlocal::current_encoding;
                   8242:     }
                   8243:     if ($charset) { $type.='; charset='.$charset; }
                   8244:     if ($r) {
                   8245: 	$r->content_type($type);
                   8246:     } else {
                   8247: 	print("Content-type: $type\n\n");
                   8248:     }
1.9       albertel 8249: }
1.25      albertel 8250: 
1.112     bowersj2 8251: =pod
                   8252: 
1.648     raeburn  8253: =item * &add_to_env($name,$value) 
1.112     bowersj2 8254: 
1.258     albertel 8255: adds $name to the %env hash with value
1.112     bowersj2 8256: $value, if $name already exists, the entry is converted to an array
                   8257: reference and $value is added to the array.
                   8258: 
                   8259: =cut
                   8260: 
1.25      albertel 8261: sub add_to_env {
                   8262:   my ($name,$value)=@_;
1.258     albertel 8263:   if (defined($env{$name})) {
                   8264:     if (ref($env{$name})) {
1.25      albertel 8265:       #already have multiple values
1.258     albertel 8266:       push(@{ $env{$name} },$value);
1.25      albertel 8267:     } else {
                   8268:       #first time seeing multiple values, convert hash entry to an arrayref
1.258     albertel 8269:       my $first=$env{$name};
                   8270:       undef($env{$name});
                   8271:       push(@{ $env{$name} },$first,$value);
1.25      albertel 8272:     }
                   8273:   } else {
1.258     albertel 8274:     $env{$name}=$value;
1.25      albertel 8275:   }
1.31      albertel 8276: }
1.149     albertel 8277: 
                   8278: =pod
                   8279: 
1.648     raeburn  8280: =item * &get_env_multiple($name) 
1.149     albertel 8281: 
1.258     albertel 8282: gets $name from the %env hash, it seemlessly handles the cases where multiple
1.149     albertel 8283: values may be defined and end up as an array ref.
                   8284: 
                   8285: returns an array of values
                   8286: 
                   8287: =cut
                   8288: 
                   8289: sub get_env_multiple {
                   8290:     my ($name) = @_;
                   8291:     my @values;
1.258     albertel 8292:     if (defined($env{$name})) {
1.149     albertel 8293:         # exists is it an array
1.258     albertel 8294:         if (ref($env{$name})) {
                   8295:             @values=@{ $env{$name} };
1.149     albertel 8296:         } else {
1.258     albertel 8297:             $values[0]=$env{$name};
1.149     albertel 8298:         }
                   8299:     }
                   8300:     return(@values);
                   8301: }
                   8302: 
1.660     raeburn  8303: sub ask_for_embedded_content {
                   8304:     my ($actionurl,$state,$allfiles,$codebase,$args)=@_;
                   8305:     my $upload_output = '
                   8306:    <form name="upload_embedded" action="'.$actionurl.'"
                   8307:                   method="post" enctype="multipart/form-data">';
                   8308:     $upload_output .= $state;
1.661     raeburn  8309:     $upload_output .= '<b>Upload embedded files</b>:<br />'.&start_data_table();
1.660     raeburn  8310: 
                   8311:     my $num = 0;
                   8312:     foreach my $embed_file (sort {lc($a) cmp lc($b)} keys(%{$allfiles})) {
                   8313:         $upload_output .= &start_data_table_row().
                   8314:             '<td>'.$embed_file.'</td><td>';
                   8315:         if ($args->{'ignore_remote_references'}
                   8316:             && $embed_file =~ m{^\w+://}) {
                   8317:             $upload_output.='<span class="LC_warning">'.&mt("URL points to other server.").'</span>';
                   8318:         } elsif ($args->{'error_on_invalid_names'}
                   8319:             && $embed_file ne &Apache::lonnet::clean_filename($embed_file,{'keep_path' => 1,})) {
                   8320: 
                   8321:             $upload_output.='<span class="LC_warning">'.&mt("Invalid characters").'</span>';
                   8322: 
                   8323:         } else {
                   8324:             $upload_output .='
1.661     raeburn  8325:            <input name="embedded_item_'.$num.'" type="file" value="" />
1.660     raeburn  8326:            <input name="embedded_orig_'.$num.'" type="hidden" value="'.&escape($embed_file).'" />';
                   8327:             my $attrib = join(':',@{$$allfiles{$embed_file}});
                   8328:             $upload_output .=
                   8329:                 "\n\t\t".
                   8330:                 '<input name="embedded_attrib_'.$num.'" type="hidden" value="'.
                   8331:                 $attrib.'" />';
                   8332:             if (exists($$codebase{$embed_file})) {
                   8333:                 $upload_output .=
                   8334:                     "\n\t\t".
                   8335:                     '<input name="codebase_'.$num.'" type="hidden" value="'.
                   8336:                     &escape($$codebase{$embed_file}).'" />';
                   8337:             }
                   8338:         }
                   8339:         $upload_output .= '</td>'.&Apache::loncommon::end_data_table_row();
                   8340:         $num++;
                   8341:     }
                   8342:     $upload_output .= &Apache::loncommon::end_data_table().'<br />
                   8343:    <input type ="hidden" name="number_embedded_items" value="'.$num.'" />
                   8344:    <input type ="submit" value="'.&mt('Upload Listed Files').'" />
                   8345:    '.&mt('(only files for which a location has been provided will be uploaded)').'
                   8346:    </form>';
                   8347:     return $upload_output;
                   8348: }
                   8349: 
1.661     raeburn  8350: sub upload_embedded {
                   8351:     my ($context,$dirpath,$uname,$udom,$dir_root,$url_root,$group,$disk_quota,
                   8352:         $current_disk_usage) = @_;
                   8353:     my $output;
                   8354:     for (my $i=0; $i<$env{'form.number_embedded_items'}; $i++) {
                   8355:         next if (!exists($env{'form.embedded_item_'.$i.'.filename'}));
                   8356:         my $orig_uploaded_filename =
                   8357:             $env{'form.embedded_item_'.$i.'.filename'};
                   8358: 
                   8359:         $env{'form.embedded_orig_'.$i} =
                   8360:             &unescape($env{'form.embedded_orig_'.$i});
                   8361:         my ($path,$fname) =
                   8362:             ($env{'form.embedded_orig_'.$i} =~ m{(.*/)([^/]*)});
                   8363:         # no path, whole string is fname
                   8364:         if (!$fname) { $fname = $env{'form.embedded_orig_'.$i} };
                   8365: 
                   8366:         $path = $env{'form.currentpath'}.$path;
                   8367:         $fname = &Apache::lonnet::clean_filename($fname);
                   8368:         # See if there is anything left
                   8369:         next if ($fname eq '');
                   8370: 
                   8371:         # Check if file already exists as a file or directory.
                   8372:         my ($state,$msg);
                   8373:         if ($context eq 'portfolio') {
                   8374:             my $port_path = $dirpath;
                   8375:             if ($group ne '') {
                   8376:                 $port_path = "groups/$group/$port_path";
                   8377:             }
                   8378:             ($state,$msg) = &check_for_upload($path,$fname,$group,'embedded_item_'.$i,
                   8379:                                               $dir_root,$port_path,$disk_quota,
                   8380:                                               $current_disk_usage,$uname,$udom);
                   8381:             if ($state eq 'will_exceed_quota'
                   8382:                 || $state eq 'file_locked'
                   8383:                 || $state eq 'file_exists' ) {
                   8384:                 $output .= $msg;
                   8385:                 next;
                   8386:             }
                   8387:         } elsif (($context eq 'author') || ($context eq 'testbank')) {
                   8388:             ($state,$msg) = &check_for_existing($path,$fname,'embedded_item_'.$i);
                   8389:             if ($state eq 'exists') {
                   8390:                 $output .= $msg;
                   8391:                 next;
                   8392:             }
                   8393:         }
                   8394:         # Check if extension is valid
                   8395:         if (($fname =~ /\.(\w+)$/) &&
                   8396:             (&Apache::loncommon::fileembstyle($1) eq 'hdn')) {
                   8397:             $output .= &mt('Invalid file extension ([_1]) - reserved for LONCAPA use - rename the file with a different extension and re-upload. ',$1);
                   8398:             next;
                   8399:         } elsif (($fname =~ /\.(\w+)$/) &&
                   8400:                  (!defined(&Apache::loncommon::fileembstyle($1)))) {
                   8401:             $output .= &mt('Unrecognized file extension ([_1]) - rename the file with a proper extension and re-upload.',$1);
                   8402:             next;
                   8403:         } elsif ($fname=~/\.(\d+)\.(\w+)$/) {
                   8404:             $output .= &mt('File name not allowed - rename the file to remove the number immediately before the file extension([_1]) and re-upload.',$2);
                   8405:             next;
                   8406:         }
                   8407: 
                   8408:         $env{'form.embedded_item_'.$i.'.filename'}=$fname;
                   8409:         if ($context eq 'portfolio') {
                   8410:             my $result=
                   8411:                 &Apache::lonnet::userfileupload('embedded_item_'.$i,'',
                   8412:                                                 $dirpath.$path);
                   8413:             if ($result !~ m|^/uploaded/|) {
                   8414:                 $output .= '<span class="LC_error">'
                   8415:                       .&mt('An error occurred ([_1]) while trying to upload [_2] for embedded element [_3].'
                   8416:                            ,$result,$orig_uploaded_filename,$env{'form.embedded_orig_'.$i})
                   8417:                       .'</span><br />';
                   8418:                 next;
                   8419:             } else {
                   8420:                 $output .= '<p>'.&mt('Uploaded [_1]','<span class="LC_filename">'.
                   8421:                            $path.$fname.'</span>').'</p>';     
                   8422:             }
                   8423:         } else {
                   8424: # Save the file
                   8425:             my $target = $env{'form.embedded_item_'.$i};
                   8426:             my $fullpath = $dir_root.$dirpath.'/'.$path;
                   8427:             my $dest = $fullpath.$fname;
                   8428:             my $url = $url_root.$dirpath.'/'.$path.$fname;
                   8429:             my @parts=split(/\//,$fullpath);
                   8430:             my $count;
                   8431:             my $filepath = $dir_root;
                   8432:             for ($count=4;$count<=$#parts;$count++) {
                   8433:                 $filepath .= "/$parts[$count]";
                   8434:                 if ((-e $filepath)!=1) {
                   8435:                     mkdir($filepath,0770);
                   8436:                 }
                   8437:             }
                   8438:             my $fh;
                   8439:             if (!open($fh,'>'.$dest)) {
                   8440:                 &Apache::lonnet::logthis('Failed to create '.$dest);
                   8441:                 $output .= '<span class="LC_error">'.
                   8442:                            &mt('An error occurred while trying to upload [_1] for embedded element [_2].',$orig_uploaded_filename,$env{'form.embedded_orig_'.$i}).
                   8443:                            '</span><br />';
                   8444:             } else {
                   8445:                 if (!print $fh $env{'form.embedded_item_'.$i}) {
                   8446:                     &Apache::lonnet::logthis('Failed to write to '.$dest);
                   8447:                     $output .= '<span class="LC_error">'.
                   8448:                               &mt('An error occurred while writing the file [_1] for embedded element [_2].',$orig_uploaded_filename,$env{'form.embedded_orig_'.$i}).
                   8449:                               '</span><br />';
                   8450:                 } else {
                   8451:                     if ($context eq 'testbank') {
                   8452:                         $output .= &mt('Embedded file uploaded successfully:').
                   8453:                                    '&nbsp;<a href="'.$url.'">'.
                   8454:                                    $orig_uploaded_filename.'</a><br />';
                   8455:                     } else {
1.705     tempelho 8456:                         $output .= '<span class=\"LC_fontsize_large\">'.
1.661     raeburn  8457:                                    &mt('View embedded file: [_1]','<a href="'.$url.'">'.
1.705     tempelho 8458:                                    $orig_uploaded_filename.'</a>').'</span><br />';
1.661     raeburn  8459:                     }
                   8460:                 }
                   8461:                 close($fh);
                   8462:             }
                   8463:         }
                   8464:     }
                   8465:     return $output;
                   8466: }
                   8467: 
                   8468: sub check_for_existing {
                   8469:     my ($path,$fname,$element) = @_;
                   8470:     my ($state,$msg);
                   8471:     if (-d $path.'/'.$fname) {
                   8472:         $state = 'exists';
                   8473:         $msg = &mt('Unable to upload [_1]. A directory by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$path);
                   8474:     } elsif (-e $path.'/'.$fname) {
                   8475:         $state = 'exists';
                   8476:         $msg = &mt('Unable to upload [_1]. A file by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$path);
                   8477:     }
                   8478:     if ($state eq 'exists') {
                   8479:         $msg = '<span class="LC_error">'.$msg.'</span><br />';
                   8480:     }
                   8481:     return ($state,$msg);
                   8482: }
                   8483: 
                   8484: sub check_for_upload {
                   8485:     my ($path,$fname,$group,$element,$portfolio_root,$port_path,
                   8486:         $disk_quota,$current_disk_usage,$uname,$udom) = @_;
                   8487:     my $filesize = (length($env{'form.'.$element})) / 1000; #express in k (1024?)
                   8488:     my $getpropath = 1;
                   8489:     my @dir_list = &Apache::lonnet::dirlist($portfolio_root.$path,$udom,$uname,
                   8490:                                             $getpropath);
                   8491:     my $found_file = 0;
                   8492:     my $locked_file = 0;
                   8493:     foreach my $line (@dir_list) {
                   8494:         my ($file_name)=split(/\&/,$line,2);
                   8495:         if ($file_name eq $fname){
                   8496:             $file_name = $path.$file_name;
                   8497:             if ($group ne '') {
                   8498:                 $file_name = $group.$file_name;
                   8499:             }
                   8500:             $found_file = 1;
                   8501:             if (&Apache::lonnet::is_locked($file_name,$udom,$uname) eq 'true') {
                   8502:                 $locked_file = 1;
                   8503:             }
                   8504:         }
                   8505:     }
                   8506:     if (($current_disk_usage + $filesize) > $disk_quota){
                   8507:         my $msg = '<span class="LC_error">'.
                   8508:                 &mt('Unable to upload [_1]. (size = [_2] kilobytes). Disk quota will be exceeded.','<span class="LC_filename">'.$fname.'</span>',$filesize).'</span>'.
                   8509:                   '<br />'.&mt('Disk quota is [_1] kilobytes. Your current disk usage is [_2] kilobytes.',$disk_quota,$current_disk_usage);
                   8510:         return ('will_exceed_quota',$msg);
                   8511:     } elsif ($found_file) {
                   8512:         if ($locked_file) {
                   8513:             my $msg = '<span class="LC_error">';
                   8514:             $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>');
                   8515:             $msg .= '</span><br />';
                   8516:             $msg .= &mt('You will be able to rename or delete existing [_1] after a grade has been assigned.','<span class="LC_filename">'.$fname.'</span>');
                   8517:             return ('file_locked',$msg);
                   8518:         } else {
                   8519:             my $msg = '<span class="LC_error">';
                   8520:             $msg .= &mt('Unable to upload [_1]. A file by that name was found in [_2].','<span class="LC_filename">'.$fname.'</span>',$port_path.$env{'form.currentpath'});
                   8521:             $msg .= '</span>';
                   8522:             $msg .= '<br />';
                   8523:             $msg .= &mt('To upload, rename or delete existing [_1] in [_2].','<span class="LC_filename">'.$fname.'</span>', $port_path.$env{'form.currentpath'});
                   8524:             return ('file_exists',$msg);
                   8525:         }
                   8526:     }
                   8527: }
                   8528: 
1.31      albertel 8529: 
1.41      ng       8530: =pod
1.45      matthew  8531: 
1.464     albertel 8532: =back
1.41      ng       8533: 
1.112     bowersj2 8534: =head1 CSV Upload/Handling functions
1.38      albertel 8535: 
1.41      ng       8536: =over 4
                   8537: 
1.648     raeburn  8538: =item * &upfile_store($r)
1.41      ng       8539: 
                   8540: Store uploaded file, $r should be the HTTP Request object,
1.258     albertel 8541: needs $env{'form.upfile'}
1.41      ng       8542: returns $datatoken to be put into hidden field
                   8543: 
                   8544: =cut
1.31      albertel 8545: 
                   8546: sub upfile_store {
                   8547:     my $r=shift;
1.258     albertel 8548:     $env{'form.upfile'}=~s/\r/\n/gs;
                   8549:     $env{'form.upfile'}=~s/\f/\n/gs;
                   8550:     $env{'form.upfile'}=~s/\n+/\n/gs;
                   8551:     $env{'form.upfile'}=~s/\n+$//gs;
1.31      albertel 8552: 
1.258     albertel 8553:     my $datatoken=$env{'user.name'}.'_'.$env{'user.domain'}.
                   8554: 	'_enroll_'.$env{'request.course.id'}.'_'.time.'_'.$$;
1.31      albertel 8555:     {
1.158     raeburn  8556:         my $datafile = $r->dir_config('lonDaemons').
                   8557:                            '/tmp/'.$datatoken.'.tmp';
                   8558:         if ( open(my $fh,">$datafile") ) {
1.258     albertel 8559:             print $fh $env{'form.upfile'};
1.158     raeburn  8560:             close($fh);
                   8561:         }
1.31      albertel 8562:     }
                   8563:     return $datatoken;
                   8564: }
                   8565: 
1.56      matthew  8566: =pod
                   8567: 
1.648     raeburn  8568: =item * &load_tmp_file($r)
1.41      ng       8569: 
                   8570: Load uploaded file from tmp, $r should be the HTTP Request object,
1.258     albertel 8571: needs $env{'form.datatoken'},
                   8572: sets $env{'form.upfile'} to the contents of the file
1.41      ng       8573: 
                   8574: =cut
1.31      albertel 8575: 
                   8576: sub load_tmp_file {
                   8577:     my $r=shift;
                   8578:     my @studentdata=();
                   8579:     {
1.158     raeburn  8580:         my $studentfile = $r->dir_config('lonDaemons').
1.258     albertel 8581:                               '/tmp/'.$env{'form.datatoken'}.'.tmp';
1.158     raeburn  8582:         if ( open(my $fh,"<$studentfile") ) {
                   8583:             @studentdata=<$fh>;
                   8584:             close($fh);
                   8585:         }
1.31      albertel 8586:     }
1.258     albertel 8587:     $env{'form.upfile'}=join('',@studentdata);
1.31      albertel 8588: }
                   8589: 
1.56      matthew  8590: =pod
                   8591: 
1.648     raeburn  8592: =item * &upfile_record_sep()
1.41      ng       8593: 
                   8594: Separate uploaded file into records
                   8595: returns array of records,
1.258     albertel 8596: needs $env{'form.upfile'} and $env{'form.upfiletype'}
1.41      ng       8597: 
                   8598: =cut
1.31      albertel 8599: 
                   8600: sub upfile_record_sep {
1.258     albertel 8601:     if ($env{'form.upfiletype'} eq 'xml') {
1.31      albertel 8602:     } else {
1.248     albertel 8603: 	my @records;
1.258     albertel 8604: 	foreach my $line (split(/\n/,$env{'form.upfile'})) {
1.248     albertel 8605: 	    if ($line=~/^\s*$/) { next; }
                   8606: 	    push(@records,$line);
                   8607: 	}
                   8608: 	return @records;
1.31      albertel 8609:     }
                   8610: }
                   8611: 
1.56      matthew  8612: =pod
                   8613: 
1.648     raeburn  8614: =item * &record_sep($record)
1.41      ng       8615: 
1.258     albertel 8616: Separate a record into fields $record should be an item from the upfile_record_sep(), needs $env{'form.upfiletype'}
1.41      ng       8617: 
                   8618: =cut
                   8619: 
1.263     www      8620: sub takeleft {
                   8621:     my $index=shift;
                   8622:     return substr('0000'.$index,-4,4);
                   8623: }
                   8624: 
1.31      albertel 8625: sub record_sep {
                   8626:     my $record=shift;
                   8627:     my %components=();
1.258     albertel 8628:     if ($env{'form.upfiletype'} eq 'xml') {
                   8629:     } elsif ($env{'form.upfiletype'} eq 'space') {
1.31      albertel 8630:         my $i=0;
1.356     albertel 8631:         foreach my $field (split(/\s+/,$record)) {
1.31      albertel 8632:             $field=~s/^(\"|\')//;
                   8633:             $field=~s/(\"|\')$//;
1.263     www      8634:             $components{&takeleft($i)}=$field;
1.31      albertel 8635:             $i++;
                   8636:         }
1.258     albertel 8637:     } elsif ($env{'form.upfiletype'} eq 'tab') {
1.31      albertel 8638:         my $i=0;
1.356     albertel 8639:         foreach my $field (split(/\t/,$record)) {
1.31      albertel 8640:             $field=~s/^(\"|\')//;
                   8641:             $field=~s/(\"|\')$//;
1.263     www      8642:             $components{&takeleft($i)}=$field;
1.31      albertel 8643:             $i++;
                   8644:         }
                   8645:     } else {
1.561     www      8646:         my $separator=',';
1.480     banghart 8647:         if ($env{'form.upfiletype'} eq 'semisv') {
1.561     www      8648:             $separator=';';
1.480     banghart 8649:         }
1.31      albertel 8650:         my $i=0;
1.561     www      8651: # the character we are looking for to indicate the end of a quote or a record 
                   8652:         my $looking_for=$separator;
                   8653: # do not add the characters to the fields
                   8654:         my $ignore=0;
                   8655: # we just encountered a separator (or the beginning of the record)
                   8656:         my $just_found_separator=1;
                   8657: # store the field we are working on here
                   8658:         my $field='';
                   8659: # work our way through all characters in record
                   8660:         foreach my $character ($record=~/(.)/g) {
                   8661:             if ($character eq $looking_for) {
                   8662:                if ($character ne $separator) {
                   8663: # Found the end of a quote, again looking for separator
                   8664:                   $looking_for=$separator;
                   8665:                   $ignore=1;
                   8666:                } else {
                   8667: # Found a separator, store away what we got
                   8668:                   $components{&takeleft($i)}=$field;
                   8669: 	          $i++;
                   8670:                   $just_found_separator=1;
                   8671:                   $ignore=0;
                   8672:                   $field='';
                   8673:                }
                   8674:                next;
                   8675:             }
                   8676: # single or double quotation marks after a separator indicate beginning of a quote
                   8677: # we are now looking for the end of the quote and need to ignore separators
                   8678:             if ((($character eq '"') || ($character eq "'")) && ($just_found_separator))  {
                   8679:                $looking_for=$character;
                   8680:                next;
                   8681:             }
                   8682: # ignore would be true after we reached the end of a quote
                   8683:             if ($ignore) { next; }
                   8684:             if (($just_found_separator) && ($character=~/\s/)) { next; }
                   8685:             $field.=$character;
                   8686:             $just_found_separator=0; 
1.31      albertel 8687:         }
1.561     www      8688: # catch the very last entry, since we never encountered the separator
                   8689:         $components{&takeleft($i)}=$field;
1.31      albertel 8690:     }
                   8691:     return %components;
                   8692: }
                   8693: 
1.144     matthew  8694: ######################################################
                   8695: ######################################################
                   8696: 
1.56      matthew  8697: =pod
                   8698: 
1.648     raeburn  8699: =item * &upfile_select_html()
1.41      ng       8700: 
1.144     matthew  8701: Return HTML code to select a file from the users machine and specify 
                   8702: the file type.
1.41      ng       8703: 
                   8704: =cut
                   8705: 
1.144     matthew  8706: ######################################################
                   8707: ######################################################
1.31      albertel 8708: sub upfile_select_html {
1.144     matthew  8709:     my %Types = (
                   8710:                  csv   => &mt('CSV (comma separated values, spreadsheet)'),
1.480     banghart 8711:                  semisv => &mt('Semicolon separated values'),
1.144     matthew  8712:                  space => &mt('Space separated'),
                   8713:                  tab   => &mt('Tabulator separated'),
                   8714: #                 xml   => &mt('HTML/XML'),
                   8715:                  );
                   8716:     my $Str = '<input type="file" name="upfile" size="50" />'.
1.727     riegler  8717:         '<br />'.&mt('Type').': <select name="upfiletype">';
1.144     matthew  8718:     foreach my $type (sort(keys(%Types))) {
                   8719:         $Str .= '<option value="'.$type.'" >'.$Types{$type}."</option>\n";
                   8720:     }
                   8721:     $Str .= "</select>\n";
                   8722:     return $Str;
1.31      albertel 8723: }
                   8724: 
1.301     albertel 8725: sub get_samples {
                   8726:     my ($records,$toget) = @_;
                   8727:     my @samples=({});
                   8728:     my $got=0;
                   8729:     foreach my $rec (@$records) {
                   8730: 	my %temp = &record_sep($rec);
                   8731: 	if (! grep(/\S/, values(%temp))) { next; }
                   8732: 	if (%temp) {
                   8733: 	    $samples[$got]=\%temp;
                   8734: 	    $got++;
                   8735: 	    if ($got == $toget) { last; }
                   8736: 	}
                   8737:     }
                   8738:     return \@samples;
                   8739: }
                   8740: 
1.144     matthew  8741: ######################################################
                   8742: ######################################################
                   8743: 
1.56      matthew  8744: =pod
                   8745: 
1.648     raeburn  8746: =item * &csv_print_samples($r,$records)
1.41      ng       8747: 
                   8748: Prints a table of sample values from each column uploaded $r is an
                   8749: Apache Request ref, $records is an arrayref from
                   8750: &Apache::loncommon::upfile_record_sep
                   8751: 
                   8752: =cut
                   8753: 
1.144     matthew  8754: ######################################################
                   8755: ######################################################
1.31      albertel 8756: sub csv_print_samples {
                   8757:     my ($r,$records) = @_;
1.662     bisitz   8758:     my $samples = &get_samples($records,5);
1.301     albertel 8759: 
1.594     raeburn  8760:     $r->print(&mt('Samples').'<br />'.&start_data_table().
                   8761:               &start_data_table_header_row());
1.356     albertel 8762:     foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) { 
1.845     bisitz   8763:         $r->print('<th>'.&mt('Column [_1]',($sample+1)).'</th>'); }
1.594     raeburn  8764:     $r->print(&end_data_table_header_row());
1.301     albertel 8765:     foreach my $hash (@$samples) {
1.594     raeburn  8766: 	$r->print(&start_data_table_row());
1.356     albertel 8767: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
1.31      albertel 8768: 	    $r->print('<td>');
1.356     albertel 8769: 	    if (defined($$hash{$sample})) { $r->print($$hash{$sample}); }
1.31      albertel 8770: 	    $r->print('</td>');
                   8771: 	}
1.594     raeburn  8772: 	$r->print(&end_data_table_row());
1.31      albertel 8773:     }
1.594     raeburn  8774:     $r->print(&end_data_table().'<br />'."\n");
1.31      albertel 8775: }
                   8776: 
1.144     matthew  8777: ######################################################
                   8778: ######################################################
                   8779: 
1.56      matthew  8780: =pod
                   8781: 
1.648     raeburn  8782: =item * &csv_print_select_table($r,$records,$d)
1.41      ng       8783: 
                   8784: Prints a table to create associations between values and table columns.
1.144     matthew  8785: 
1.41      ng       8786: $r is an Apache Request ref,
                   8787: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
1.174     matthew  8788: $d is an array of 2 element arrays (internal name, displayed name,defaultcol)
1.41      ng       8789: 
                   8790: =cut
                   8791: 
1.144     matthew  8792: ######################################################
                   8793: ######################################################
1.31      albertel 8794: sub csv_print_select_table {
                   8795:     my ($r,$records,$d) = @_;
1.301     albertel 8796:     my $i=0;
                   8797:     my $samples = &get_samples($records,1);
1.144     matthew  8798:     $r->print(&mt('Associate columns with student attributes.')."\n".
1.594     raeburn  8799: 	      &start_data_table().&start_data_table_header_row().
1.144     matthew  8800:               '<th>'.&mt('Attribute').'</th>'.
1.594     raeburn  8801:               '<th>'.&mt('Column').'</th>'.
                   8802:               &end_data_table_header_row()."\n");
1.356     albertel 8803:     foreach my $array_ref (@$d) {
                   8804: 	my ($value,$display,$defaultcol)=@{ $array_ref };
1.729     raeburn  8805: 	$r->print(&start_data_table_row().'<td>'.$display.'</td>');
1.31      albertel 8806: 
1.875     bisitz   8807: 	$r->print('<td><select name="f'.$i.'"'.
1.32      matthew  8808: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
1.31      albertel 8809: 	$r->print('<option value="none"></option>');
1.356     albertel 8810: 	foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
                   8811: 	    $r->print('<option value="'.$sample.'"'.
                   8812:                       ($sample eq $defaultcol ? ' selected="selected" ' : '').
1.662     bisitz   8813:                       '>'.&mt('Column [_1]',($sample+1)).'</option>');
1.31      albertel 8814: 	}
1.594     raeburn  8815: 	$r->print('</select></td>'.&end_data_table_row()."\n");
1.31      albertel 8816: 	$i++;
                   8817:     }
1.594     raeburn  8818:     $r->print(&end_data_table());
1.31      albertel 8819:     $i--;
                   8820:     return $i;
                   8821: }
1.56      matthew  8822: 
1.144     matthew  8823: ######################################################
                   8824: ######################################################
                   8825: 
1.56      matthew  8826: =pod
1.31      albertel 8827: 
1.648     raeburn  8828: =item * &csv_samples_select_table($r,$records,$d)
1.41      ng       8829: 
                   8830: Prints a table of sample values from the upload and can make associate samples to internal names.
                   8831: 
                   8832: $r is an Apache Request ref,
                   8833: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
                   8834: $d is an array of 2 element arrays (internal name, displayed name)
                   8835: 
                   8836: =cut
                   8837: 
1.144     matthew  8838: ######################################################
                   8839: ######################################################
1.31      albertel 8840: sub csv_samples_select_table {
                   8841:     my ($r,$records,$d) = @_;
                   8842:     my $i=0;
1.144     matthew  8843:     #
1.662     bisitz   8844:     my $max_samples = 5;
                   8845:     my $samples = &get_samples($records,$max_samples);
1.594     raeburn  8846:     $r->print(&start_data_table().
                   8847:               &start_data_table_header_row().'<th>'.
                   8848:               &mt('Field').'</th><th>'.&mt('Samples').'</th>'.
                   8849:               &end_data_table_header_row());
1.301     albertel 8850: 
                   8851:     foreach my $key (sort(keys(%{ $samples->[0] }))) {
1.594     raeburn  8852: 	$r->print(&start_data_table_row().'<td><select name="f'.$i.'"'.
1.32      matthew  8853: 		  ' onchange="javascript:flip(this.form,'.$i.');">');
1.301     albertel 8854: 	foreach my $option (@$d) {
                   8855: 	    my ($value,$display,$defaultcol)=@{ $option };
1.174     matthew  8856: 	    $r->print('<option value="'.$value.'"'.
1.253     albertel 8857:                       ($i eq $defaultcol ? ' selected="selected" ':'').'>'.
1.174     matthew  8858:                       $display.'</option>');
1.31      albertel 8859: 	}
                   8860: 	$r->print('</select></td><td>');
1.662     bisitz   8861: 	foreach my $line (0..($max_samples-1)) {
1.301     albertel 8862: 	    if (defined($samples->[$line]{$key})) { 
                   8863: 		$r->print($samples->[$line]{$key}."<br />\n"); 
                   8864: 	    }
                   8865: 	}
1.594     raeburn  8866: 	$r->print('</td>'.&end_data_table_row());
1.31      albertel 8867: 	$i++;
                   8868:     }
1.594     raeburn  8869:     $r->print(&end_data_table());
1.31      albertel 8870:     $i--;
                   8871:     return($i);
1.115     matthew  8872: }
                   8873: 
1.144     matthew  8874: ######################################################
                   8875: ######################################################
                   8876: 
1.115     matthew  8877: =pod
                   8878: 
1.648     raeburn  8879: =item * &clean_excel_name($name)
1.115     matthew  8880: 
                   8881: Returns a replacement for $name which does not contain any illegal characters.
                   8882: 
                   8883: =cut
                   8884: 
1.144     matthew  8885: ######################################################
                   8886: ######################################################
1.115     matthew  8887: sub clean_excel_name {
                   8888:     my ($name) = @_;
                   8889:     $name =~ s/[:\*\?\/\\]//g;
                   8890:     if (length($name) > 31) {
                   8891:         $name = substr($name,0,31);
                   8892:     }
                   8893:     return $name;
1.25      albertel 8894: }
1.84      albertel 8895: 
1.85      albertel 8896: =pod
                   8897: 
1.648     raeburn  8898: =item * &check_if_partid_hidden($id,$symb,$udom,$uname)
1.85      albertel 8899: 
                   8900: Returns either 1 or undef
                   8901: 
                   8902: 1 if the part is to be hidden, undef if it is to be shown
                   8903: 
                   8904: Arguments are:
                   8905: 
                   8906: $id the id of the part to be checked
                   8907: $symb, optional the symb of the resource to check
                   8908: $udom, optional the domain of the user to check for
                   8909: $uname, optional the username of the user to check for
                   8910: 
                   8911: =cut
1.84      albertel 8912: 
                   8913: sub check_if_partid_hidden {
                   8914:     my ($id,$symb,$udom,$uname) = @_;
1.133     albertel 8915:     my $hiddenparts=&Apache::lonnet::EXT('resource.0.hiddenparts',
1.84      albertel 8916: 					 $symb,$udom,$uname);
1.141     albertel 8917:     my $truth=1;
                   8918:     #if the string starts with !, then the list is the list to show not hide
                   8919:     if ($hiddenparts=~s/^\s*!//) { $truth=undef; }
1.84      albertel 8920:     my @hiddenlist=split(/,/,$hiddenparts);
                   8921:     foreach my $checkid (@hiddenlist) {
1.141     albertel 8922: 	if ($checkid =~ /^\s*\Q$id\E\s*$/) { return $truth; }
1.84      albertel 8923:     }
1.141     albertel 8924:     return !$truth;
1.84      albertel 8925: }
1.127     matthew  8926: 
1.138     matthew  8927: 
                   8928: ############################################################
                   8929: ############################################################
                   8930: 
                   8931: =pod
                   8932: 
1.157     matthew  8933: =back 
                   8934: 
1.138     matthew  8935: =head1 cgi-bin script and graphing routines
                   8936: 
1.157     matthew  8937: =over 4
                   8938: 
1.648     raeburn  8939: =item * &get_cgi_id()
1.138     matthew  8940: 
                   8941: Inputs: none
                   8942: 
                   8943: Returns an id which can be used to pass environment variables
                   8944: to various cgi-bin scripts.  These environment variables will
                   8945: be removed from the users environment after a given time by
                   8946: the routine &Apache::lonnet::transfer_profile_to_env.
                   8947: 
                   8948: =cut
                   8949: 
                   8950: ############################################################
                   8951: ############################################################
1.152     albertel 8952: my $uniq=0;
1.136     matthew  8953: sub get_cgi_id {
1.154     albertel 8954:     $uniq=($uniq+1)%100000;
1.280     albertel 8955:     return (time.'_'.$$.'_'.$uniq);
1.136     matthew  8956: }
                   8957: 
1.127     matthew  8958: ############################################################
                   8959: ############################################################
                   8960: 
                   8961: =pod
                   8962: 
1.648     raeburn  8963: =item * &DrawBarGraph()
1.127     matthew  8964: 
1.138     matthew  8965: Facilitates the plotting of data in a (stacked) bar graph.
                   8966: Puts plot definition data into the users environment in order for 
                   8967: graph.png to plot it.  Returns an <img> tag for the plot.
                   8968: The bars on the plot are labeled '1','2',...,'n'.
                   8969: 
                   8970: Inputs:
                   8971: 
                   8972: =over 4
                   8973: 
                   8974: =item $Title: string, the title of the plot
                   8975: 
                   8976: =item $xlabel: string, text describing the X-axis of the plot
                   8977: 
                   8978: =item $ylabel: string, text describing the Y-axis of the plot
                   8979: 
                   8980: =item $Max: scalar, the maximum Y value to use in the plot
                   8981: If $Max is < any data point, the graph will not be rendered.
                   8982: 
1.140     matthew  8983: =item $colors: array ref holding the colors to be used for the data sets when
1.138     matthew  8984: they are plotted.  If undefined, default values will be used.
                   8985: 
1.178     matthew  8986: =item $labels: array ref holding the labels to use on the x-axis for the bars.
                   8987: 
1.138     matthew  8988: =item @Values: An array of array references.  Each array reference holds data
                   8989: to be plotted in a stacked bar chart.
                   8990: 
1.239     matthew  8991: =item If the final element of @Values is a hash reference the key/value
                   8992: pairs will be added to the graph definition.
                   8993: 
1.138     matthew  8994: =back
                   8995: 
                   8996: Returns:
                   8997: 
                   8998: An <img> tag which references graph.png and the appropriate identifying
                   8999: information for the plot.
                   9000: 
1.127     matthew  9001: =cut
                   9002: 
                   9003: ############################################################
                   9004: ############################################################
1.134     matthew  9005: sub DrawBarGraph {
1.178     matthew  9006:     my ($Title,$xlabel,$ylabel,$Max,$colors,$labels,@Values)=@_;
1.134     matthew  9007:     #
                   9008:     if (! defined($colors)) {
                   9009:         $colors = ['#33ff00', 
                   9010:                   '#0033cc', '#990000', '#aaaa66', '#663399', '#ff9933',
                   9011:                   '#66ccff', '#ff9999', '#cccc33', '#660000', '#33cc66',
                   9012:                   ]; 
                   9013:     }
1.228     matthew  9014:     my $extra_settings = {};
                   9015:     if (ref($Values[-1]) eq 'HASH') {
                   9016:         $extra_settings = pop(@Values);
                   9017:     }
1.127     matthew  9018:     #
1.136     matthew  9019:     my $identifier = &get_cgi_id();
                   9020:     my $id = 'cgi.'.$identifier;        
1.129     matthew  9021:     if (! @Values || ref($Values[0]) ne 'ARRAY') {
1.127     matthew  9022:         return '';
                   9023:     }
1.225     matthew  9024:     #
                   9025:     my @Labels;
                   9026:     if (defined($labels)) {
                   9027:         @Labels = @$labels;
                   9028:     } else {
                   9029:         for (my $i=0;$i<@{$Values[0]};$i++) {
                   9030:             push (@Labels,$i+1);
                   9031:         }
                   9032:     }
                   9033:     #
1.129     matthew  9034:     my $NumBars = scalar(@{$Values[0]});
1.225     matthew  9035:     if ($NumBars < scalar(@Labels)) { $NumBars = scalar(@Labels); }
1.129     matthew  9036:     my %ValuesHash;
                   9037:     my $NumSets=1;
                   9038:     foreach my $array (@Values) {
                   9039:         next if (! ref($array));
1.136     matthew  9040:         $ValuesHash{$id.'.data.'.$NumSets++} = 
1.132     matthew  9041:             join(',',@$array);
1.129     matthew  9042:     }
1.127     matthew  9043:     #
1.136     matthew  9044:     my ($height,$width,$xskip,$bar_width) = (200,120,1,15);
1.225     matthew  9045:     if ($NumBars < 3) {
                   9046:         $width = 120+$NumBars*32;
1.220     matthew  9047:         $xskip = 1;
1.225     matthew  9048:         $bar_width = 30;
                   9049:     } elsif ($NumBars < 5) {
                   9050:         $width = 120+$NumBars*20;
                   9051:         $xskip = 1;
                   9052:         $bar_width = 20;
1.220     matthew  9053:     } elsif ($NumBars < 10) {
1.136     matthew  9054:         $width = 120+$NumBars*15;
                   9055:         $xskip = 1;
                   9056:         $bar_width = 15;
                   9057:     } elsif ($NumBars <= 25) {
                   9058:         $width = 120+$NumBars*11;
                   9059:         $xskip = 5;
                   9060:         $bar_width = 8;
                   9061:     } elsif ($NumBars <= 50) {
                   9062:         $width = 120+$NumBars*8;
                   9063:         $xskip = 5;
                   9064:         $bar_width = 4;
                   9065:     } else {
                   9066:         $width = 120+$NumBars*8;
                   9067:         $xskip = 5;
                   9068:         $bar_width = 4;
                   9069:     }
                   9070:     #
1.137     matthew  9071:     $Max = 1 if ($Max < 1);
                   9072:     if ( int($Max) < $Max ) {
                   9073:         $Max++;
                   9074:         $Max = int($Max);
                   9075:     }
1.127     matthew  9076:     $Title  = '' if (! defined($Title));
                   9077:     $xlabel = '' if (! defined($xlabel));
                   9078:     $ylabel = '' if (! defined($ylabel));
1.369     www      9079:     $ValuesHash{$id.'.title'}    = &escape($Title);
                   9080:     $ValuesHash{$id.'.xlabel'}   = &escape($xlabel);
                   9081:     $ValuesHash{$id.'.ylabel'}   = &escape($ylabel);
1.137     matthew  9082:     $ValuesHash{$id.'.y_max_value'} = $Max;
1.136     matthew  9083:     $ValuesHash{$id.'.NumBars'}  = $NumBars;
                   9084:     $ValuesHash{$id.'.NumSets'}  = $NumSets;
                   9085:     $ValuesHash{$id.'.PlotType'} = 'bar';
                   9086:     $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   9087:     $ValuesHash{$id.'.height'}   = $height;
                   9088:     $ValuesHash{$id.'.width'}    = $width;
                   9089:     $ValuesHash{$id.'.xskip'}    = $xskip;
                   9090:     $ValuesHash{$id.'.bar_width'} = $bar_width;
                   9091:     $ValuesHash{$id.'.labels'} = join(',',@Labels);
1.127     matthew  9092:     #
1.228     matthew  9093:     # Deal with other parameters
                   9094:     while (my ($key,$value) = each(%$extra_settings)) {
                   9095:         $ValuesHash{$id.'.'.$key} = $value;
                   9096:     }
                   9097:     #
1.646     raeburn  9098:     &Apache::lonnet::appenv(\%ValuesHash);
1.137     matthew  9099:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
                   9100: }
                   9101: 
                   9102: ############################################################
                   9103: ############################################################
                   9104: 
                   9105: =pod
                   9106: 
1.648     raeburn  9107: =item * &DrawXYGraph()
1.137     matthew  9108: 
1.138     matthew  9109: Facilitates the plotting of data in an XY graph.
                   9110: Puts plot definition data into the users environment in order for 
                   9111: graph.png to plot it.  Returns an <img> tag for the plot.
                   9112: 
                   9113: Inputs:
                   9114: 
                   9115: =over 4
                   9116: 
                   9117: =item $Title: string, the title of the plot
                   9118: 
                   9119: =item $xlabel: string, text describing the X-axis of the plot
                   9120: 
                   9121: =item $ylabel: string, text describing the Y-axis of the plot
                   9122: 
                   9123: =item $Max: scalar, the maximum Y value to use in the plot
                   9124: If $Max is < any data point, the graph will not be rendered.
                   9125: 
                   9126: =item $colors: Array ref containing the hex color codes for the data to be 
                   9127: plotted in.  If undefined, default values will be used.
                   9128: 
                   9129: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
                   9130: 
                   9131: =item $Ydata: Array ref containing Array refs.  
1.185     www      9132: Each of the contained arrays will be plotted as a separate curve.
1.138     matthew  9133: 
                   9134: =item %Values: hash indicating or overriding any default values which are 
                   9135: passed to graph.png.  
                   9136: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
                   9137: 
                   9138: =back
                   9139: 
                   9140: Returns:
                   9141: 
                   9142: An <img> tag which references graph.png and the appropriate identifying
                   9143: information for the plot.
                   9144: 
1.137     matthew  9145: =cut
                   9146: 
                   9147: ############################################################
                   9148: ############################################################
                   9149: sub DrawXYGraph {
                   9150:     my ($Title,$xlabel,$ylabel,$Max,$colors,$Xlabels,$Ydata,%Values)=@_;
                   9151:     #
                   9152:     # Create the identifier for the graph
                   9153:     my $identifier = &get_cgi_id();
                   9154:     my $id = 'cgi.'.$identifier;
                   9155:     #
                   9156:     $Title  = '' if (! defined($Title));
                   9157:     $xlabel = '' if (! defined($xlabel));
                   9158:     $ylabel = '' if (! defined($ylabel));
                   9159:     my %ValuesHash = 
                   9160:         (
1.369     www      9161:          $id.'.title'  => &escape($Title),
                   9162:          $id.'.xlabel' => &escape($xlabel),
                   9163:          $id.'.ylabel' => &escape($ylabel),
1.137     matthew  9164:          $id.'.y_max_value'=> $Max,
                   9165:          $id.'.labels'     => join(',',@$Xlabels),
                   9166:          $id.'.PlotType'   => 'XY',
                   9167:          );
                   9168:     #
                   9169:     if (defined($colors) && ref($colors) eq 'ARRAY') {
                   9170:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   9171:     }
                   9172:     #
                   9173:     if (! ref($Ydata) || ref($Ydata) ne 'ARRAY') {
                   9174:         return '';
                   9175:     }
                   9176:     my $NumSets=1;
1.138     matthew  9177:     foreach my $array (@{$Ydata}){
1.137     matthew  9178:         next if (! ref($array));
                   9179:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
                   9180:     }
1.138     matthew  9181:     $ValuesHash{$id.'.NumSets'} = $NumSets-1;
1.137     matthew  9182:     #
                   9183:     # Deal with other parameters
                   9184:     while (my ($key,$value) = each(%Values)) {
                   9185:         $ValuesHash{$id.'.'.$key} = $value;
1.127     matthew  9186:     }
                   9187:     #
1.646     raeburn  9188:     &Apache::lonnet::appenv(\%ValuesHash);
1.136     matthew  9189:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
                   9190: }
                   9191: 
                   9192: ############################################################
                   9193: ############################################################
                   9194: 
                   9195: =pod
                   9196: 
1.648     raeburn  9197: =item * &DrawXYYGraph()
1.138     matthew  9198: 
                   9199: Facilitates the plotting of data in an XY graph with two Y axes.
                   9200: Puts plot definition data into the users environment in order for 
                   9201: graph.png to plot it.  Returns an <img> tag for the plot.
                   9202: 
                   9203: Inputs:
                   9204: 
                   9205: =over 4
                   9206: 
                   9207: =item $Title: string, the title of the plot
                   9208: 
                   9209: =item $xlabel: string, text describing the X-axis of the plot
                   9210: 
                   9211: =item $ylabel: string, text describing the Y-axis of the plot
                   9212: 
                   9213: =item $colors: Array ref containing the hex color codes for the data to be 
                   9214: plotted in.  If undefined, default values will be used.
                   9215: 
                   9216: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
                   9217: 
                   9218: =item $Ydata1: The first data set
                   9219: 
                   9220: =item $Min1: The minimum value of the left Y-axis
                   9221: 
                   9222: =item $Max1: The maximum value of the left Y-axis
                   9223: 
                   9224: =item $Ydata2: The second data set
                   9225: 
                   9226: =item $Min2: The minimum value of the right Y-axis
                   9227: 
                   9228: =item $Max2: The maximum value of the left Y-axis
                   9229: 
                   9230: =item %Values: hash indicating or overriding any default values which are 
                   9231: passed to graph.png.  
                   9232: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
                   9233: 
                   9234: =back
                   9235: 
                   9236: Returns:
                   9237: 
                   9238: An <img> tag which references graph.png and the appropriate identifying
                   9239: information for the plot.
1.136     matthew  9240: 
                   9241: =cut
                   9242: 
                   9243: ############################################################
                   9244: ############################################################
1.137     matthew  9245: sub DrawXYYGraph {
                   9246:     my ($Title,$xlabel,$ylabel,$colors,$Xlabels,$Ydata1,$Min1,$Max1,
                   9247:                                         $Ydata2,$Min2,$Max2,%Values)=@_;
1.136     matthew  9248:     #
                   9249:     # Create the identifier for the graph
                   9250:     my $identifier = &get_cgi_id();
                   9251:     my $id = 'cgi.'.$identifier;
                   9252:     #
                   9253:     $Title  = '' if (! defined($Title));
                   9254:     $xlabel = '' if (! defined($xlabel));
                   9255:     $ylabel = '' if (! defined($ylabel));
                   9256:     my %ValuesHash = 
                   9257:         (
1.369     www      9258:          $id.'.title'  => &escape($Title),
                   9259:          $id.'.xlabel' => &escape($xlabel),
                   9260:          $id.'.ylabel' => &escape($ylabel),
1.136     matthew  9261:          $id.'.labels' => join(',',@$Xlabels),
                   9262:          $id.'.PlotType' => 'XY',
                   9263:          $id.'.NumSets' => 2,
1.137     matthew  9264:          $id.'.two_axes' => 1,
                   9265:          $id.'.y1_max_value' => $Max1,
                   9266:          $id.'.y1_min_value' => $Min1,
                   9267:          $id.'.y2_max_value' => $Max2,
                   9268:          $id.'.y2_min_value' => $Min2,
1.136     matthew  9269:          );
                   9270:     #
1.137     matthew  9271:     if (defined($colors) && ref($colors) eq 'ARRAY') {
                   9272:         $ValuesHash{$id.'.Colors'}   = join(',',@{$colors});
                   9273:     }
                   9274:     #
                   9275:     if (! ref($Ydata1) || ref($Ydata1) ne 'ARRAY' ||
                   9276:         ! ref($Ydata2) || ref($Ydata2) ne 'ARRAY'){
1.136     matthew  9277:         return '';
                   9278:     }
                   9279:     my $NumSets=1;
1.137     matthew  9280:     foreach my $array ($Ydata1,$Ydata2){
1.136     matthew  9281:         next if (! ref($array));
                   9282:         $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
1.137     matthew  9283:     }
                   9284:     #
                   9285:     # Deal with other parameters
                   9286:     while (my ($key,$value) = each(%Values)) {
                   9287:         $ValuesHash{$id.'.'.$key} = $value;
1.136     matthew  9288:     }
                   9289:     #
1.646     raeburn  9290:     &Apache::lonnet::appenv(\%ValuesHash);
1.130     albertel 9291:     return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
1.139     matthew  9292: }
                   9293: 
                   9294: ############################################################
                   9295: ############################################################
                   9296: 
                   9297: =pod
                   9298: 
1.157     matthew  9299: =back 
                   9300: 
1.139     matthew  9301: =head1 Statistics helper routines?  
                   9302: 
                   9303: Bad place for them but what the hell.
                   9304: 
1.157     matthew  9305: =over 4
                   9306: 
1.648     raeburn  9307: =item * &chartlink()
1.139     matthew  9308: 
                   9309: Returns a link to the chart for a specific student.  
                   9310: 
                   9311: Inputs:
                   9312: 
                   9313: =over 4
                   9314: 
                   9315: =item $linktext: The text of the link
                   9316: 
                   9317: =item $sname: The students username
                   9318: 
                   9319: =item $sdomain: The students domain
                   9320: 
                   9321: =back
                   9322: 
1.157     matthew  9323: =back
                   9324: 
1.139     matthew  9325: =cut
                   9326: 
                   9327: ############################################################
                   9328: ############################################################
                   9329: sub chartlink {
                   9330:     my ($linktext, $sname, $sdomain) = @_;
                   9331:     my $link = '<a href="/adm/statistics?reportSelected=student_assessment'.
1.369     www      9332:         '&amp;SelectedStudent='.&escape($sname.':'.$sdomain).
1.219     albertel 9333:         '&amp;chartoutputmode='.HTML::Entities::encode('html, with all links').
1.139     matthew  9334:        '">'.$linktext.'</a>';
1.153     matthew  9335: }
                   9336: 
                   9337: #######################################################
                   9338: #######################################################
                   9339: 
                   9340: =pod
                   9341: 
                   9342: =head1 Course Environment Routines
1.157     matthew  9343: 
                   9344: =over 4
1.153     matthew  9345: 
1.648     raeburn  9346: =item * &restore_course_settings()
1.153     matthew  9347: 
1.648     raeburn  9348: =item * &store_course_settings()
1.153     matthew  9349: 
                   9350: Restores/Store indicated form parameters from the course environment.
                   9351: Will not overwrite existing values of the form parameters.
                   9352: 
                   9353: Inputs: 
                   9354: a scalar describing the data (e.g. 'chart', 'problem_analysis')
                   9355: 
                   9356: a hash ref describing the data to be stored.  For example:
                   9357:    
                   9358: %Save_Parameters = ('Status' => 'scalar',
                   9359:     'chartoutputmode' => 'scalar',
                   9360:     'chartoutputdata' => 'scalar',
                   9361:     'Section' => 'array',
1.373     raeburn  9362:     'Group' => 'array',
1.153     matthew  9363:     'StudentData' => 'array',
                   9364:     'Maps' => 'array');
                   9365: 
                   9366: Returns: both routines return nothing
                   9367: 
1.631     raeburn  9368: =back
                   9369: 
1.153     matthew  9370: =cut
                   9371: 
                   9372: #######################################################
                   9373: #######################################################
                   9374: sub store_course_settings {
1.496     albertel 9375:     return &store_settings($env{'request.course.id'},@_);
                   9376: }
                   9377: 
                   9378: sub store_settings {
1.153     matthew  9379:     # save to the environment
                   9380:     # appenv the same items, just to be safe
1.300     albertel 9381:     my $udom  = $env{'user.domain'};
                   9382:     my $uname = $env{'user.name'};
1.496     albertel 9383:     my ($context,$prefix,$Settings) = @_;
1.153     matthew  9384:     my %SaveHash;
                   9385:     my %AppHash;
                   9386:     while (my ($setting,$type) = each(%$Settings)) {
1.496     albertel 9387:         my $basename = join('.','internal',$context,$prefix,$setting);
1.300     albertel 9388:         my $envname = 'environment.'.$basename;
1.258     albertel 9389:         if (exists($env{'form.'.$setting})) {
1.153     matthew  9390:             # Save this value away
                   9391:             if ($type eq 'scalar' &&
1.258     albertel 9392:                 (! exists($env{$envname}) || 
                   9393:                  $env{$envname} ne $env{'form.'.$setting})) {
                   9394:                 $SaveHash{$basename} = $env{'form.'.$setting};
                   9395:                 $AppHash{$envname}   = $env{'form.'.$setting};
1.153     matthew  9396:             } elsif ($type eq 'array') {
                   9397:                 my $stored_form;
1.258     albertel 9398:                 if (ref($env{'form.'.$setting})) {
1.153     matthew  9399:                     $stored_form = join(',',
                   9400:                                         map {
1.369     www      9401:                                             &escape($_);
1.258     albertel 9402:                                         } sort(@{$env{'form.'.$setting}}));
1.153     matthew  9403:                 } else {
                   9404:                     $stored_form = 
1.369     www      9405:                         &escape($env{'form.'.$setting});
1.153     matthew  9406:                 }
                   9407:                 # Determine if the array contents are the same.
1.258     albertel 9408:                 if ($stored_form ne $env{$envname}) {
1.153     matthew  9409:                     $SaveHash{$basename} = $stored_form;
                   9410:                     $AppHash{$envname}   = $stored_form;
                   9411:                 }
                   9412:             }
                   9413:         }
                   9414:     }
                   9415:     my $put_result = &Apache::lonnet::put('environment',\%SaveHash,
1.300     albertel 9416:                                           $udom,$uname);
1.153     matthew  9417:     if ($put_result !~ /^(ok|delayed)/) {
                   9418:         &Apache::lonnet::logthis('unable to save form parameters, '.
                   9419:                                  'got error:'.$put_result);
                   9420:     }
                   9421:     # Make sure these settings stick around in this session, too
1.646     raeburn  9422:     &Apache::lonnet::appenv(\%AppHash);
1.153     matthew  9423:     return;
                   9424: }
                   9425: 
                   9426: sub restore_course_settings {
1.499     albertel 9427:     return &restore_settings($env{'request.course.id'},@_);
1.496     albertel 9428: }
                   9429: 
                   9430: sub restore_settings {
                   9431:     my ($context,$prefix,$Settings) = @_;
1.153     matthew  9432:     while (my ($setting,$type) = each(%$Settings)) {
1.258     albertel 9433:         next if (exists($env{'form.'.$setting}));
1.496     albertel 9434:         my $envname = 'environment.internal.'.$context.'.'.$prefix.
1.153     matthew  9435:             '.'.$setting;
1.258     albertel 9436:         if (exists($env{$envname})) {
1.153     matthew  9437:             if ($type eq 'scalar') {
1.258     albertel 9438:                 $env{'form.'.$setting} = $env{$envname};
1.153     matthew  9439:             } elsif ($type eq 'array') {
1.258     albertel 9440:                 $env{'form.'.$setting} = [ 
1.153     matthew  9441:                                            map { 
1.369     www      9442:                                                &unescape($_); 
1.258     albertel 9443:                                            } split(',',$env{$envname})
1.153     matthew  9444:                                            ];
                   9445:             }
                   9446:         }
                   9447:     }
1.127     matthew  9448: }
                   9449: 
1.618     raeburn  9450: #######################################################
                   9451: #######################################################
                   9452: 
                   9453: =pod
                   9454: 
                   9455: =head1 Domain E-mail Routines  
                   9456: 
                   9457: =over 4
                   9458: 
1.648     raeburn  9459: =item * &build_recipient_list()
1.618     raeburn  9460: 
1.884     raeburn  9461: Build recipient lists for five types of e-mail:
1.766     raeburn  9462: (a) Error Reports, (b) Package Updates, (c) lonstatus warnings/errors
1.884     raeburn  9463: (d) Help requests, (e) Course requests needing approval,  generated by
                   9464: lonerrorhandler.pm, CHECKRPMS, loncron, lonsupportreq.pm and
                   9465: loncoursequeueadmin.pm respectively.
1.618     raeburn  9466: 
                   9467: Inputs:
1.619     raeburn  9468: defmail (scalar - email address of default recipient), 
1.618     raeburn  9469: mailing type (scalar - errormail, packagesmail, or helpdeskmail), 
1.619     raeburn  9470: defdom (domain for which to retrieve configuration settings),
                   9471: origmail (scalar - email address of recipient from loncapa.conf, 
                   9472: i.e., predates configuration by DC via domainprefs.pm 
1.618     raeburn  9473: 
1.655     raeburn  9474: Returns: comma separated list of addresses to which to send e-mail.
                   9475: 
                   9476: =back
1.618     raeburn  9477: 
                   9478: =cut
                   9479: 
                   9480: ############################################################
                   9481: ############################################################
                   9482: sub build_recipient_list {
1.619     raeburn  9483:     my ($defmail,$mailing,$defdom,$origmail) = @_;
1.618     raeburn  9484:     my @recipients;
                   9485:     my $otheremails;
                   9486:     my %domconfig =
                   9487:          &Apache::lonnet::get_dom('configuration',['contacts'],$defdom);
                   9488:     if (ref($domconfig{'contacts'}) eq 'HASH') {
1.766     raeburn  9489:         if (exists($domconfig{'contacts'}{$mailing})) {
                   9490:             if (ref($domconfig{'contacts'}{$mailing}) eq 'HASH') {
                   9491:                 my @contacts = ('adminemail','supportemail');
                   9492:                 foreach my $item (@contacts) {
                   9493:                     if ($domconfig{'contacts'}{$mailing}{$item}) {
                   9494:                         my $addr = $domconfig{'contacts'}{$item}; 
                   9495:                         if (!grep(/^\Q$addr\E$/,@recipients)) {
                   9496:                             push(@recipients,$addr);
                   9497:                         }
1.619     raeburn  9498:                     }
1.766     raeburn  9499:                     $otheremails = $domconfig{'contacts'}{$mailing}{'others'};
1.618     raeburn  9500:                 }
                   9501:             }
1.766     raeburn  9502:         } elsif ($origmail ne '') {
                   9503:             push(@recipients,$origmail);
1.618     raeburn  9504:         }
1.619     raeburn  9505:     } elsif ($origmail ne '') {
                   9506:         push(@recipients,$origmail);
1.618     raeburn  9507:     }
1.688     raeburn  9508:     if (defined($defmail)) {
                   9509:         if ($defmail ne '') {
                   9510:             push(@recipients,$defmail);
                   9511:         }
1.618     raeburn  9512:     }
                   9513:     if ($otheremails) {
1.619     raeburn  9514:         my @others;
                   9515:         if ($otheremails =~ /,/) {
                   9516:             @others = split(/,/,$otheremails);
1.618     raeburn  9517:         } else {
1.619     raeburn  9518:             push(@others,$otheremails);
                   9519:         }
                   9520:         foreach my $addr (@others) {
                   9521:             if (!grep(/^\Q$addr\E$/,@recipients)) {
                   9522:                 push(@recipients,$addr);
                   9523:             }
1.618     raeburn  9524:         }
                   9525:     }
1.619     raeburn  9526:     my $recipientlist = join(',',@recipients); 
1.618     raeburn  9527:     return $recipientlist;
                   9528: }
                   9529: 
1.127     matthew  9530: ############################################################
                   9531: ############################################################
1.154     albertel 9532: 
1.655     raeburn  9533: =pod
                   9534: 
                   9535: =head1 Course Catalog Routines
                   9536: 
                   9537: =over 4
                   9538: 
                   9539: =item * &gather_categories()
                   9540: 
                   9541: Converts category definitions - keys of categories hash stored in  
                   9542: coursecategories in configuration.db on the primary library server in a 
                   9543: domain - to an array.  Also generates javascript and idx hash used to 
                   9544: generate Domain Coordinator interface for editing Course Categories.
                   9545: 
                   9546: Inputs:
1.663     raeburn  9547: 
1.655     raeburn  9548: categories (reference to hash of category definitions).
1.663     raeburn  9549: 
1.655     raeburn  9550: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   9551:       categories and subcategories).
1.663     raeburn  9552: 
1.655     raeburn  9553: idx (reference to hash of counters used in Domain Coordinator interface for 
                   9554:       editing Course Categories).
1.663     raeburn  9555: 
1.655     raeburn  9556: jsarray (reference to array of categories used to create Javascript arrays for
                   9557:          Domain Coordinator interface for editing Course Categories).
                   9558: 
                   9559: Returns: nothing
                   9560: 
                   9561: Side effects: populates cats, idx and jsarray. 
                   9562: 
                   9563: =cut
                   9564: 
                   9565: sub gather_categories {
                   9566:     my ($categories,$cats,$idx,$jsarray) = @_;
                   9567:     my %counters;
                   9568:     my $num = 0;
                   9569:     foreach my $item (keys(%{$categories})) {
                   9570:         my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$item);
                   9571:         if ($container eq '' && $depth == 0) {
                   9572:             $cats->[$depth][$categories->{$item}] = $cat;
                   9573:         } else {
                   9574:             $cats->[$depth]{$container}[$categories->{$item}] = $cat;
                   9575:         }
                   9576:         my ($escitem,$tail) = split(/:/,$item,2);
                   9577:         if ($counters{$tail} eq '') {
                   9578:             $counters{$tail} = $num;
                   9579:             $num ++;
                   9580:         }
                   9581:         if (ref($idx) eq 'HASH') {
                   9582:             $idx->{$item} = $counters{$tail};
                   9583:         }
                   9584:         if (ref($jsarray) eq 'ARRAY') {
                   9585:             push(@{$jsarray->[$counters{$tail}]},$item);
                   9586:         }
                   9587:     }
                   9588:     return;
                   9589: }
                   9590: 
                   9591: =pod
                   9592: 
                   9593: =item * &extract_categories()
                   9594: 
                   9595: Used to generate breadcrumb trails for course categories.
                   9596: 
                   9597: Inputs:
1.663     raeburn  9598: 
1.655     raeburn  9599: categories (reference to hash of category definitions).
1.663     raeburn  9600: 
1.655     raeburn  9601: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   9602:       categories and subcategories).
1.663     raeburn  9603: 
1.655     raeburn  9604: trails (reference to array of breacrumb trails for each category).
1.663     raeburn  9605: 
1.655     raeburn  9606: allitems (reference to hash - key is category key 
                   9607:          (format: escaped(name):escaped(parent category):depth in hierarchy).
1.663     raeburn  9608: 
1.655     raeburn  9609: idx (reference to hash of counters used in Domain Coordinator interface for
                   9610:       editing Course Categories).
1.663     raeburn  9611: 
1.655     raeburn  9612: jsarray (reference to array of categories used to create Javascript arrays for
                   9613:          Domain Coordinator interface for editing Course Categories).
                   9614: 
1.665     raeburn  9615: subcats (reference to hash of arrays containing all subcategories within each 
                   9616:          category, -recursive)
                   9617: 
1.655     raeburn  9618: Returns: nothing
                   9619: 
                   9620: Side effects: populates trails and allitems hash references.
                   9621: 
                   9622: =cut
                   9623: 
                   9624: sub extract_categories {
1.665     raeburn  9625:     my ($categories,$cats,$trails,$allitems,$idx,$jsarray,$subcats) = @_;
1.655     raeburn  9626:     if (ref($categories) eq 'HASH') {
                   9627:         &gather_categories($categories,$cats,$idx,$jsarray);
                   9628:         if (ref($cats->[0]) eq 'ARRAY') {
                   9629:             for (my $i=0; $i<@{$cats->[0]}; $i++) {
                   9630:                 my $name = $cats->[0][$i];
                   9631:                 my $item = &escape($name).'::0';
                   9632:                 my $trailstr;
                   9633:                 if ($name eq 'instcode') {
                   9634:                     $trailstr = &mt('Official courses (with institutional codes)');
1.919     raeburn  9635:                 } elsif ($name eq 'communities') {
                   9636:                     $trailstr = &mt('Communities');
1.655     raeburn  9637:                 } else {
                   9638:                     $trailstr = $name;
                   9639:                 }
                   9640:                 if ($allitems->{$item} eq '') {
                   9641:                     push(@{$trails},$trailstr);
                   9642:                     $allitems->{$item} = scalar(@{$trails})-1;
                   9643:                 }
                   9644:                 my @parents = ($name);
                   9645:                 if (ref($cats->[1]{$name}) eq 'ARRAY') {
                   9646:                     for (my $j=0; $j<@{$cats->[1]{$name}}; $j++) {
                   9647:                         my $category = $cats->[1]{$name}[$j];
1.665     raeburn  9648:                         if (ref($subcats) eq 'HASH') {
                   9649:                             push(@{$subcats->{$item}},&escape($category).':'.&escape($name).':1');
                   9650:                         }
                   9651:                         &recurse_categories($cats,2,$category,$trails,$allitems,\@parents,$subcats);
                   9652:                     }
                   9653:                 } else {
                   9654:                     if (ref($subcats) eq 'HASH') {
                   9655:                         $subcats->{$item} = [];
1.655     raeburn  9656:                     }
                   9657:                 }
                   9658:             }
                   9659:         }
                   9660:     }
                   9661:     return;
                   9662: }
                   9663: 
                   9664: =pod
                   9665: 
                   9666: =item *&recurse_categories()
                   9667: 
                   9668: Recursively used to generate breadcrumb trails for course categories.
                   9669: 
                   9670: Inputs:
1.663     raeburn  9671: 
1.655     raeburn  9672: cats (reference to array of arrays/hashes which encapsulates hierarchy of
                   9673:       categories and subcategories).
1.663     raeburn  9674: 
1.655     raeburn  9675: depth (current depth in hierarchy of categories and sub-categories - 0 indexed).
1.663     raeburn  9676: 
                   9677: category (current course category, for which breadcrumb trail is being generated).
                   9678: 
                   9679: trails (reference to array of breadcrumb trails for each category).
                   9680: 
1.655     raeburn  9681: allitems (reference to hash - key is category key
                   9682:          (format: escaped(name):escaped(parent category):depth in hierarchy).
1.663     raeburn  9683: 
1.655     raeburn  9684: parents (array containing containers directories for current category, 
                   9685:          back to top level). 
                   9686: 
                   9687: Returns: nothing
                   9688: 
                   9689: Side effects: populates trails and allitems hash references
                   9690: 
                   9691: =cut
                   9692: 
                   9693: sub recurse_categories {
1.665     raeburn  9694:     my ($cats,$depth,$category,$trails,$allitems,$parents,$subcats) = @_;
1.655     raeburn  9695:     my $shallower = $depth - 1;
                   9696:     if (ref($cats->[$depth]{$category}) eq 'ARRAY') {
                   9697:         for (my $k=0; $k<@{$cats->[$depth]{$category}}; $k++) {
                   9698:             my $name = $cats->[$depth]{$category}[$k];
                   9699:             my $item = &escape($category).':'.&escape($parents->[-1]).':'.$shallower;
                   9700:             my $trailstr = join(' -&gt; ',(@{$parents},$category));
                   9701:             if ($allitems->{$item} eq '') {
                   9702:                 push(@{$trails},$trailstr);
                   9703:                 $allitems->{$item} = scalar(@{$trails})-1;
                   9704:             }
                   9705:             my $deeper = $depth+1;
                   9706:             push(@{$parents},$category);
1.665     raeburn  9707:             if (ref($subcats) eq 'HASH') {
                   9708:                 my $subcat = &escape($name).':'.$category.':'.$depth;
                   9709:                 for (my $j=@{$parents}; $j>=0; $j--) {
                   9710:                     my $higher;
                   9711:                     if ($j > 0) {
                   9712:                         $higher = &escape($parents->[$j]).':'.
                   9713:                                   &escape($parents->[$j-1]).':'.$j;
                   9714:                     } else {
                   9715:                         $higher = &escape($parents->[$j]).'::'.$j;
                   9716:                     }
                   9717:                     push(@{$subcats->{$higher}},$subcat);
                   9718:                 }
                   9719:             }
                   9720:             &recurse_categories($cats,$deeper,$name,$trails,$allitems,$parents,
                   9721:                                 $subcats);
1.655     raeburn  9722:             pop(@{$parents});
                   9723:         }
                   9724:     } else {
                   9725:         my $item = &escape($category).':'.&escape($parents->[-1]).':'.$shallower;
                   9726:         my $trailstr = join(' -&gt; ',(@{$parents},$category));
                   9727:         if ($allitems->{$item} eq '') {
                   9728:             push(@{$trails},$trailstr);
                   9729:             $allitems->{$item} = scalar(@{$trails})-1;
                   9730:         }
                   9731:     }
                   9732:     return;
                   9733: }
                   9734: 
1.663     raeburn  9735: =pod
                   9736: 
                   9737: =item *&assign_categories_table()
                   9738: 
                   9739: Create a datatable for display of hierarchical categories in a domain,
                   9740: with checkboxes to allow a course to be categorized. 
                   9741: 
                   9742: Inputs:
                   9743: 
                   9744: cathash - reference to hash of categories defined for the domain (from
                   9745:           configuration.db)
                   9746: 
                   9747: currcat - scalar with an & separated list of categories assigned to a course. 
                   9748: 
1.919     raeburn  9749: type    - scalar contains course type (Course or Community).
                   9750: 
1.663     raeburn  9751: Returns: $output (markup to be displayed) 
                   9752: 
                   9753: =cut
                   9754: 
                   9755: sub assign_categories_table {
1.919     raeburn  9756:     my ($cathash,$currcat,$type) = @_;
1.663     raeburn  9757:     my $output;
                   9758:     if (ref($cathash) eq 'HASH') {
                   9759:         my (@cats,@trails,%allitems,%idx,@jsarray,@path,$maxdepth);
                   9760:         &extract_categories($cathash,\@cats,\@trails,\%allitems,\%idx,\@jsarray);
                   9761:         $maxdepth = scalar(@cats);
                   9762:         if (@cats > 0) {
                   9763:             my $itemcount = 0;
                   9764:             if (ref($cats[0]) eq 'ARRAY') {
                   9765:                 my @currcategories;
                   9766:                 if ($currcat ne '') {
                   9767:                     @currcategories = split('&',$currcat);
                   9768:                 }
1.919     raeburn  9769:                 my $table;
1.663     raeburn  9770:                 for (my $i=0; $i<@{$cats[0]}; $i++) {
                   9771:                     my $parent = $cats[0][$i];
1.919     raeburn  9772:                     next if ($parent eq 'instcode');
                   9773:                     if ($type eq 'Community') {
                   9774:                         next unless ($parent eq 'communities');
                   9775:                     } else {
                   9776:                         next if ($parent eq 'communities');
                   9777:                     }
1.663     raeburn  9778:                     my $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   9779:                     my $item = &escape($parent).'::0';
                   9780:                     my $checked = '';
                   9781:                     if (@currcategories > 0) {
                   9782:                         if (grep(/^\Q$item\E$/,@currcategories)) {
1.772     bisitz   9783:                             $checked = ' checked="checked"';
1.663     raeburn  9784:                         }
                   9785:                     }
1.919     raeburn  9786:                     my $parent_title = $parent;
                   9787:                     if ($parent eq 'communities') {
                   9788:                         $parent_title = &mt('Communities');
                   9789:                     }
                   9790:                     $table .= '<tr '.$css_class.'><td><span class="LC_nobreak">'.
                   9791:                               '<input type="checkbox" name="usecategory" value="'.
                   9792:                               $item.'"'.$checked.' />'.$parent_title.'</span>'.
                   9793:                               '<input type="hidden" name="catname" value="'.$parent.'" /></td>';
1.663     raeburn  9794:                     my $depth = 1;
                   9795:                     push(@path,$parent);
1.919     raeburn  9796:                     $table .= &assign_category_rows($itemcount,\@cats,$depth,$parent,\@path,\@currcategories);
1.663     raeburn  9797:                     pop(@path);
1.919     raeburn  9798:                     $table .= '</tr><tr><td colspan="'.$maxdepth.'" class="LC_row_separator"></td></tr>';
1.663     raeburn  9799:                     $itemcount ++;
                   9800:                 }
1.919     raeburn  9801:                 if ($itemcount) {
                   9802:                     $output = &Apache::loncommon::start_data_table().
                   9803:                               $table.
                   9804:                               &Apache::loncommon::end_data_table();
                   9805:                 }
1.663     raeburn  9806:             }
                   9807:         }
                   9808:     }
                   9809:     return $output;
                   9810: }
                   9811: 
                   9812: =pod
                   9813: 
                   9814: =item *&assign_category_rows()
                   9815: 
                   9816: Create a datatable row for display of nested categories in a domain,
                   9817: with checkboxes to allow a course to be categorized,called recursively.
                   9818: 
                   9819: Inputs:
                   9820: 
                   9821: itemcount - track row number for alternating colors
                   9822: 
                   9823: cats - reference to array of arrays/hashes which encapsulates hierarchy of
                   9824:       categories and subcategories.
                   9825: 
                   9826: depth - current depth in hierarchy of categories and sub-categories - 0 indexed.
                   9827: 
                   9828: parent - parent of current category item
                   9829: 
                   9830: path - Array containing all categories back up through the hierarchy from the
                   9831:        current category to the top level.
                   9832: 
                   9833: currcategories - reference to array of current categories assigned to the course
                   9834: 
                   9835: Returns: $output (markup to be displayed).
                   9836: 
                   9837: =cut
                   9838: 
                   9839: sub assign_category_rows {
                   9840:     my ($itemcount,$cats,$depth,$parent,$path,$currcategories) = @_;
                   9841:     my ($text,$name,$item,$chgstr);
                   9842:     if (ref($cats) eq 'ARRAY') {
                   9843:         my $maxdepth = scalar(@{$cats});
                   9844:         if (ref($cats->[$depth]) eq 'HASH') {
                   9845:             if (ref($cats->[$depth]{$parent}) eq 'ARRAY') {
                   9846:                 my $numchildren = @{$cats->[$depth]{$parent}};
                   9847:                 my $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   9848:                 $text .= '<td><table class="LC_datatable">';
                   9849:                 for (my $j=0; $j<$numchildren; $j++) {
                   9850:                     $name = $cats->[$depth]{$parent}[$j];
                   9851:                     $item = &escape($name).':'.&escape($parent).':'.$depth;
                   9852:                     my $deeper = $depth+1;
                   9853:                     my $checked = '';
                   9854:                     if (ref($currcategories) eq 'ARRAY') {
                   9855:                         if (@{$currcategories} > 0) {
                   9856:                             if (grep(/^\Q$item\E$/,@{$currcategories})) {
1.772     bisitz   9857:                                 $checked = ' checked="checked"';
1.663     raeburn  9858:                             }
                   9859:                         }
                   9860:                     }
1.664     raeburn  9861:                     $text .= '<tr><td><span class="LC_nobreak"><label>'.
                   9862:                              '<input type="checkbox" name="usecategory" value="'.
1.675     raeburn  9863:                              $item.'"'.$checked.' />'.$name.'</label></span>'.
                   9864:                              '<input type="hidden" name="catname" value="'.$name.'" />'.
                   9865:                              '</td><td>';
1.663     raeburn  9866:                     if (ref($path) eq 'ARRAY') {
                   9867:                         push(@{$path},$name);
                   9868:                         $text .= &assign_category_rows($itemcount,$cats,$deeper,$name,$path,$currcategories);
                   9869:                         pop(@{$path});
                   9870:                     }
                   9871:                     $text .= '</td></tr>';
                   9872:                 }
                   9873:                 $text .= '</table></td>';
                   9874:             }
                   9875:         }
                   9876:     }
                   9877:     return $text;
                   9878: }
                   9879: 
1.655     raeburn  9880: ############################################################
                   9881: ############################################################
                   9882: 
                   9883: 
1.443     albertel 9884: sub commit_customrole {
1.664     raeburn  9885:     my ($udom,$uname,$url,$three,$four,$five,$start,$end,$context) = @_;
1.630     raeburn  9886:     my $output = &mt('Assigning custom role').' "'.$five.'" by '.$four.':'.$three.' in '.$url.
1.443     albertel 9887:                          ($start?', '.&mt('starting').' '.localtime($start):'').
                   9888:                          ($end?', ending '.localtime($end):'').': <b>'.
                   9889:               &Apache::lonnet::assigncustomrole(
1.664     raeburn  9890:                  $udom,$uname,$url,$three,$four,$five,$end,$start,undef,undef,$context).
1.443     albertel 9891:                  '</b><br />';
                   9892:     return $output;
                   9893: }
                   9894: 
                   9895: sub commit_standardrole {
1.541     raeburn  9896:     my ($udom,$uname,$url,$three,$start,$end,$one,$two,$sec,$context) = @_;
                   9897:     my ($output,$logmsg,$linefeed);
                   9898:     if ($context eq 'auto') {
                   9899:         $linefeed = "\n";
                   9900:     } else {
                   9901:         $linefeed = "<br />\n";
                   9902:     }  
1.443     albertel 9903:     if ($three eq 'st') {
1.541     raeburn  9904:         my $result = &commit_studentrole(\$logmsg,$udom,$uname,$url,$three,$start,$end,
                   9905:                                          $one,$two,$sec,$context);
                   9906:         if (($result =~ /^error/) || ($result eq 'not_in_class') || 
1.626     raeburn  9907:             ($result eq 'unknown_course') || ($result eq 'refused')) {
                   9908:             $output = $logmsg.' '.&mt('Error: ').$result."\n"; 
1.443     albertel 9909:         } else {
1.541     raeburn  9910:             $output = $logmsg.$linefeed.&mt('Assigning').' '.$three.' in '.$url.
1.443     albertel 9911:                ($start?', '.&mt('starting').' '.localtime($start):'').
1.541     raeburn  9912:                ($end?', '.&mt('ending').' '.localtime($end):'').': ';
                   9913:             if ($context eq 'auto') {
                   9914:                 $output .= $result.$linefeed.&mt('Add to classlist').': ok';
                   9915:             } else {
                   9916:                $output .= '<b>'.$result.'</b>'.$linefeed.
                   9917:                &mt('Add to classlist').': <b>ok</b>';
                   9918:             }
                   9919:             $output .= $linefeed;
1.443     albertel 9920:         }
                   9921:     } else {
                   9922:         $output = &mt('Assigning').' '.$three.' in '.$url.
                   9923:                ($start?', '.&mt('starting').' '.localtime($start):'').
1.541     raeburn  9924:                ($end?', '.&mt('ending').' '.localtime($end):'').': ';
1.652     raeburn  9925:         my $result = &Apache::lonnet::assignrole($udom,$uname,$url,$three,$end,$start,'','',$context);
1.541     raeburn  9926:         if ($context eq 'auto') {
                   9927:             $output .= $result.$linefeed;
                   9928:         } else {
                   9929:             $output .= '<b>'.$result.'</b>'.$linefeed;
                   9930:         }
1.443     albertel 9931:     }
                   9932:     return $output;
                   9933: }
                   9934: 
                   9935: sub commit_studentrole {
1.541     raeburn  9936:     my ($logmsg,$udom,$uname,$url,$three,$start,$end,$one,$two,$sec,$context) = @_;
1.626     raeburn  9937:     my ($result,$linefeed,$oldsecurl,$newsecurl);
1.541     raeburn  9938:     if ($context eq 'auto') {
                   9939:         $linefeed = "\n";
                   9940:     } else {
                   9941:         $linefeed = '<br />'."\n";
                   9942:     }
1.443     albertel 9943:     if (defined($one) && defined($two)) {
                   9944:         my $cid=$one.'_'.$two;
                   9945:         my $oldsec=&Apache::lonnet::getsection($udom,$uname,$cid);
                   9946:         my $secchange = 0;
                   9947:         my $expire_role_result;
                   9948:         my $modify_section_result;
1.628     raeburn  9949:         if ($oldsec ne '-1') { 
                   9950:             if ($oldsec ne $sec) {
1.443     albertel 9951:                 $secchange = 1;
1.628     raeburn  9952:                 my $now = time;
1.443     albertel 9953:                 my $uurl='/'.$cid;
                   9954:                 $uurl=~s/\_/\//g;
                   9955:                 if ($oldsec) {
                   9956:                     $uurl.='/'.$oldsec;
                   9957:                 }
1.626     raeburn  9958:                 $oldsecurl = $uurl;
1.628     raeburn  9959:                 $expire_role_result = 
1.652     raeburn  9960:                     &Apache::lonnet::assignrole($udom,$uname,$uurl,'st',$now,'','',$context);
1.628     raeburn  9961:                 if ($env{'request.course.sec'} ne '') { 
                   9962:                     if ($expire_role_result eq 'refused') {
                   9963:                         my @roles = ('st');
                   9964:                         my @statuses = ('previous');
                   9965:                         my @roledoms = ($one);
                   9966:                         my $withsec = 1;
                   9967:                         my %roleshash = 
                   9968:                             &Apache::lonnet::get_my_roles($uname,$udom,'userroles',
                   9969:                                               \@statuses,\@roles,\@roledoms,$withsec);
                   9970:                         if (defined ($roleshash{$two.':'.$one.':st:'.$oldsec})) {
                   9971:                             my ($oldstart,$oldend) = 
                   9972:                                 split(':',$roleshash{$two.':'.$one.':st:'.$oldsec});
                   9973:                             if ($oldend > 0 && $oldend <= $now) {
                   9974:                                 $expire_role_result = 'ok';
                   9975:                             }
                   9976:                         }
                   9977:                     }
                   9978:                 }
1.443     albertel 9979:                 $result = $expire_role_result;
                   9980:             }
                   9981:         }
                   9982:         if (($expire_role_result eq 'ok') || ($secchange == 0)) {
1.652     raeburn  9983:             $modify_section_result = &Apache::lonnet::modify_student_enrollment($udom,$uname,undef,undef,undef,undef,undef,$sec,$end,$start,'','',$cid,'',$context);
1.443     albertel 9984:             if ($modify_section_result =~ /^ok/) {
                   9985:                 if ($secchange == 1) {
1.628     raeburn  9986:                     if ($sec eq '') {
                   9987:                         $$logmsg .= &mt('Section for [_1] switched from (possibly expired) old section: [_2] to student role without a section.',$uname,$oldsec).$linefeed;
                   9988:                     } else {
                   9989:                         $$logmsg .= &mt('Section for [_1] switched from (possibly expired) old section: [_2] to new section: [_3].',$uname,$oldsec,$sec).$linefeed;
                   9990:                     }
1.443     albertel 9991:                 } elsif ($oldsec eq '-1') {
1.628     raeburn  9992:                     if ($sec eq '') {
                   9993:                         $$logmsg .= &mt('New student role without a section for [_1] in course [_2].',$uname,$cid).$linefeed;
                   9994:                     } else {
                   9995:                         $$logmsg .= &mt('New student role for [_1] in section [_2] in course [_3].',$uname,$sec,$cid).$linefeed;
                   9996:                     }
1.443     albertel 9997:                 } else {
1.628     raeburn  9998:                     if ($sec eq '') {
                   9999:                         $$logmsg .= &mt('Student [_1] assigned to course [_2] without a section.',$uname,$cid).$linefeed;
                   10000:                     } else {
                   10001:                         $$logmsg .= &mt('Student [_1] assigned to section [_2] in course [_3].',$uname,$sec,$cid).$linefeed;
                   10002:                     }
1.443     albertel 10003:                 }
                   10004:             } else {
1.628     raeburn  10005:                 if ($secchange) {       
                   10006:                     $$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;
                   10007:                 } else {
                   10008:                     $$logmsg .= &mt('Error when attempting to modify role for [_1] for section: "[_2]" in course [_3] -error:',$uname,$sec,$cid).' '.$modify_section_result.$linefeed;
                   10009:                 }
1.443     albertel 10010:             }
                   10011:             $result = $modify_section_result;
                   10012:         } elsif ($secchange == 1) {
1.628     raeburn  10013:             if ($oldsec eq '') {
                   10014:                 $$logmsg .= &mt('Error when attempting to expire existing role without a section for [_1] in course [_3] -error: ',$uname,$cid).' '.$expire_role_result.$linefeed;
                   10015:             } else {
                   10016:                 $$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;
                   10017:             }
1.626     raeburn  10018:             if ($expire_role_result eq 'refused') {
                   10019:                 my $newsecurl = '/'.$cid;
                   10020:                 $newsecurl =~ s/\_/\//g;
                   10021:                 if ($sec ne '') {
                   10022:                     $newsecurl.='/'.$sec;
                   10023:                 }
                   10024:                 if (&Apache::lonnet::allowed('cst',$newsecurl) && !(&Apache::lonnet::allowed('cst',$oldsecurl))) {
                   10025:                     if ($sec eq '') {
                   10026:                         $$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;
                   10027:                     } else {
                   10028:                         $$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;
                   10029:                     }
                   10030:                 }
                   10031:             }
1.443     albertel 10032:         }
                   10033:     } else {
1.626     raeburn  10034:         $$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 10035:         $result = "error: incomplete course id\n";
                   10036:     }
                   10037:     return $result;
                   10038: }
                   10039: 
                   10040: ############################################################
                   10041: ############################################################
                   10042: 
1.566     albertel 10043: sub check_clone {
1.578     raeburn  10044:     my ($args,$linefeed) = @_;
1.566     albertel 10045:     my $cloneid='/'.$args->{'clonedomain'}.'/'.$args->{'clonecourse'};
                   10046:     my ($clonecrsudom,$clonecrsunum)= &LONCAPA::split_courseid($cloneid);
                   10047:     my $clonehome=&Apache::lonnet::homeserver($clonecrsunum,$clonecrsudom);
                   10048:     my $clonemsg;
                   10049:     my $can_clone = 0;
1.944     raeburn  10050:     my $lctype = lc($args->{'crstype'});
1.908     raeburn  10051:     if ($lctype ne 'community') {
                   10052:         $lctype = 'course';
                   10053:     }
1.566     albertel 10054:     if ($clonehome eq 'no_host') {
1.944     raeburn  10055:         if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  10056:             $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'});
                   10057:         } else {
                   10058:             $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'});
                   10059:         }     
1.566     albertel 10060:     } else {
                   10061: 	my %clonedesc = &Apache::lonnet::coursedescription($cloneid,{'one_time' => 1});
1.944     raeburn  10062:         if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  10063:             if ($clonedesc{'type'} ne 'Community') {
                   10064:                  $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'});
                   10065:                 return ($can_clone, $clonemsg, $cloneid, $clonehome);
                   10066:             }
                   10067:         }
1.882     raeburn  10068: 	if (($env{'request.role.domain'} eq $args->{'clonedomain'}) && 
                   10069:             (&Apache::lonnet::allowed('ccc',$env{'request.role.domain'}))) {
1.566     albertel 10070: 	    $can_clone = 1;
                   10071: 	} else {
                   10072: 	    my %clonehash = &Apache::lonnet::get('environment',['cloners'],
                   10073: 						 $args->{'clonedomain'},$args->{'clonecourse'});
                   10074: 	    my @cloners = split(/,/,$clonehash{'cloners'});
1.578     raeburn  10075:             if (grep(/^\*$/,@cloners)) {
                   10076:                 $can_clone = 1;
                   10077:             } elsif (grep(/^\*\:\Q$args->{'ccdomain'}\E$/,@cloners)) {
                   10078:                 $can_clone = 1;
                   10079:             } else {
1.908     raeburn  10080:                 my $ccrole = 'cc';
1.944     raeburn  10081:                 if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  10082:                     $ccrole = 'co';
                   10083:                 }
1.578     raeburn  10084: 	        my %roleshash =
                   10085: 		    &Apache::lonnet::get_my_roles($args->{'ccuname'},
                   10086: 					 $args->{'ccdomain'},
1.908     raeburn  10087:                                          'userroles',['active'],[$ccrole],
1.578     raeburn  10088: 					 [$args->{'clonedomain'}]);
1.908     raeburn  10089: 	        if (($roleshash{$args->{'clonecourse'}.':'.$args->{'clonedomain'}.':'.$ccrole}) || (grep(/^\Q$args->{'ccuname'}\E:\Q$args->{'ccdomain'}\E$/,@cloners))) {
1.942     raeburn  10090:                     $can_clone = 1;
                   10091:                 } elsif (&Apache::lonnet::is_course_owner($args->{'clonedomain'},$args->{'clonecourse'},$args->{'ccuname'},$args->{'ccdomain'})) {
                   10092:                     $can_clone = 1;
                   10093:                 } else {
1.944     raeburn  10094:                     if ($args->{'crstype'} eq 'Community') {
1.908     raeburn  10095:                         $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'});
                   10096:                     } else {
                   10097:                         $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'});
                   10098:                     }
1.578     raeburn  10099: 	        }
1.566     albertel 10100: 	    }
1.578     raeburn  10101:         }
1.566     albertel 10102:     }
                   10103:     return ($can_clone, $clonemsg, $cloneid, $clonehome);
                   10104: }
                   10105: 
1.444     albertel 10106: sub construct_course {
1.885     raeburn  10107:     my ($args,$logmsg,$courseid,$crsudom,$crsunum,$udom,$uname,$context,$cnum,$category) = @_;
1.444     albertel 10108:     my $outcome;
1.541     raeburn  10109:     my $linefeed =  '<br />'."\n";
                   10110:     if ($context eq 'auto') {
                   10111:         $linefeed = "\n";
                   10112:     }
1.566     albertel 10113: 
                   10114: #
                   10115: # Are we cloning?
                   10116: #
                   10117:     my ($can_clone, $clonemsg, $cloneid, $clonehome);
                   10118:     if (($args->{'clonecourse'}) && ($args->{'clonedomain'})) {
1.578     raeburn  10119: 	($can_clone, $clonemsg, $cloneid, $clonehome) = &check_clone($args,$linefeed);
1.566     albertel 10120: 	if ($context ne 'auto') {
1.578     raeburn  10121:             if ($clonemsg ne '') {
                   10122: 	        $clonemsg = '<span class="LC_error">'.$clonemsg.'</span>';
                   10123:             }
1.566     albertel 10124: 	}
                   10125: 	$outcome .= $clonemsg.$linefeed;
                   10126: 
                   10127:         if (!$can_clone) {
                   10128: 	    return (0,$outcome);
                   10129: 	}
                   10130:     }
                   10131: 
1.444     albertel 10132: #
                   10133: # Open course
                   10134: #
                   10135:     my $crstype = lc($args->{'crstype'});
                   10136:     my %cenv=();
                   10137:     $$courseid=&Apache::lonnet::createcourse($args->{'course_domain'},
                   10138:                                              $args->{'cdescr'},
                   10139:                                              $args->{'curl'},
                   10140:                                              $args->{'course_home'},
                   10141:                                              $args->{'nonstandard'},
                   10142:                                              $args->{'crscode'},
                   10143:                                              $args->{'ccuname'}.':'.
                   10144:                                              $args->{'ccdomain'},
1.882     raeburn  10145:                                              $args->{'crstype'},
1.885     raeburn  10146:                                              $cnum,$context,$category);
1.444     albertel 10147: 
                   10148:     # Note: The testing routines depend on this being output; see 
                   10149:     # Utils::Course. This needs to at least be output as a comment
                   10150:     # if anyone ever decides to not show this, and Utils::Course::new
                   10151:     # will need to be suitably modified.
1.541     raeburn  10152:     $outcome .= &mt('New LON-CAPA [_1] ID: [_2]',$crstype,$$courseid).$linefeed;
1.943     raeburn  10153:     if ($$courseid =~ /^error:/) {
                   10154:         return (0,$outcome);
                   10155:     }
                   10156: 
1.444     albertel 10157: #
                   10158: # Check if created correctly
                   10159: #
1.479     albertel 10160:     ($$crsudom,$$crsunum)= &LONCAPA::split_courseid($$courseid);
1.444     albertel 10161:     my $crsuhome=&Apache::lonnet::homeserver($$crsunum,$$crsudom);
1.943     raeburn  10162:     if ($crsuhome eq 'no_host') {
                   10163:         $outcome .= &mt('Course creation failed, unrecognized course home server.').$linefeed;
                   10164:         return (0,$outcome);
                   10165:     }
1.541     raeburn  10166:     $outcome .= &mt('Created on').': '.$crsuhome.$linefeed;
1.566     albertel 10167: 
1.444     albertel 10168: #
1.566     albertel 10169: # Do the cloning
                   10170: #   
                   10171:     if ($can_clone && $cloneid) {
                   10172: 	$clonemsg = &mt('Cloning [_1] from [_2]',$crstype,$clonehome);
                   10173: 	if ($context ne 'auto') {
                   10174: 	    $clonemsg = '<span class="LC_success">'.$clonemsg.'</span>';
                   10175: 	}
                   10176: 	$outcome .= $clonemsg.$linefeed;
                   10177: 	my %oldcenv=&Apache::lonnet::dump('environment',$$crsudom,$$crsunum);
1.444     albertel 10178: # Copy all files
1.637     www      10179: 	&Apache::lonclonecourse::copycoursefiles($cloneid,$$courseid,$args->{'datemode'},$args->{'dateshift'});
1.444     albertel 10180: # Restore URL
1.566     albertel 10181: 	$cenv{'url'}=$oldcenv{'url'};
1.444     albertel 10182: # Restore title
1.566     albertel 10183: 	$cenv{'description'}=$oldcenv{'description'};
1.955     raeburn  10184: # Restore creation date, creator and creation context.
                   10185:         $cenv{'internal.created'}=$oldcenv{'internal.created'};
                   10186:         $cenv{'internal.creator'}=$oldcenv{'internal.creator'};
                   10187:         $cenv{'internal.creationcontext'}=$oldcenv{'internal.creationcontext'};
1.444     albertel 10188: # Mark as cloned
1.566     albertel 10189: 	$cenv{'clonedfrom'}=$cloneid;
1.638     www      10190: # Need to clone grading mode
                   10191:         my %newenv=&Apache::lonnet::get('environment',['grading'],$$crsudom,$$crsunum);
                   10192:         $cenv{'grading'}=$newenv{'grading'};
                   10193: # Do not clone these environment entries
                   10194:         &Apache::lonnet::del('environment',
                   10195:                   ['default_enrollment_start_date',
                   10196:                    'default_enrollment_end_date',
                   10197:                    'question.email',
                   10198:                    'policy.email',
                   10199:                    'comment.email',
                   10200:                    'pch.users.denied',
1.725     raeburn  10201:                    'plc.users.denied',
                   10202:                    'hidefromcat',
                   10203:                    'categories'],
1.638     www      10204:                    $$crsudom,$$crsunum);
1.444     albertel 10205:     }
1.566     albertel 10206: 
1.444     albertel 10207: #
                   10208: # Set environment (will override cloned, if existing)
                   10209: #
                   10210:     my @sections = ();
                   10211:     my @xlists = ();
                   10212:     if ($args->{'crstype'}) {
                   10213:         $cenv{'type'}=$args->{'crstype'};
                   10214:     }
                   10215:     if ($args->{'crsid'}) {
                   10216:         $cenv{'courseid'}=$args->{'crsid'};
                   10217:     }
                   10218:     if ($args->{'crscode'}) {
                   10219:         $cenv{'internal.coursecode'}=$args->{'crscode'};
                   10220:     }
                   10221:     if ($args->{'crsquota'} ne '') {
                   10222:         $cenv{'internal.coursequota'}=$args->{'crsquota'};
                   10223:     } else {
                   10224:         $cenv{'internal.coursequota'}=$args->{'crsquota'} = 20;
                   10225:     }
                   10226:     if ($args->{'ccuname'}) {
                   10227:         $cenv{'internal.courseowner'} = $args->{'ccuname'}.
                   10228:                                         ':'.$args->{'ccdomain'};
                   10229:     } else {
                   10230:         $cenv{'internal.courseowner'} = $args->{'curruser'};
                   10231:     }
                   10232:     my @badclasses = (); # Used to accumulate sections/crosslistings that did not pass classlist access check for course owner.
                   10233:     if ($args->{'crssections'}) {
                   10234:         $cenv{'internal.sectionnums'} = '';
                   10235:         if ($args->{'crssections'} =~ m/,/) {
                   10236:             @sections = split/,/,$args->{'crssections'};
                   10237:         } else {
                   10238:             $sections[0] = $args->{'crssections'};
                   10239:         }
                   10240:         if (@sections > 0) {
                   10241:             foreach my $item (@sections) {
                   10242:                 my ($sec,$gp) = split/:/,$item;
                   10243:                 my $class = $args->{'crscode'}.$sec;
                   10244:                 my $addcheck = &Apache::lonnet::auto_new_course($$crsunum,$$crsudom,$class,$cenv{'internal.courseowner'});
                   10245:                 $cenv{'internal.sectionnums'} .= $item.',';
                   10246:                 unless ($addcheck eq 'ok') {
                   10247:                     push @badclasses, $class;
                   10248:                 }
                   10249:             }
                   10250:             $cenv{'internal.sectionnums'} =~ s/,$//;
                   10251:         }
                   10252:     }
                   10253: # do not hide course coordinator from staff listing, 
                   10254: # even if privileged
                   10255:     $cenv{'nothideprivileged'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   10256: # add crosslistings
                   10257:     if ($args->{'crsxlist'}) {
                   10258:         $cenv{'internal.crosslistings'}='';
                   10259:         if ($args->{'crsxlist'} =~ m/,/) {
                   10260:             @xlists = split/,/,$args->{'crsxlist'};
                   10261:         } else {
                   10262:             $xlists[0] = $args->{'crsxlist'};
                   10263:         }
                   10264:         if (@xlists > 0) {
                   10265:             foreach my $item (@xlists) {
                   10266:                 my ($xl,$gp) = split/:/,$item;
                   10267:                 my $addcheck =  &Apache::lonnet::auto_new_course($$crsunum,$$crsudom,$xl,$cenv{'internal.courseowner'});
                   10268:                 $cenv{'internal.crosslistings'} .= $item.',';
                   10269:                 unless ($addcheck eq 'ok') {
                   10270:                     push @badclasses, $xl;
                   10271:                 }
                   10272:             }
                   10273:             $cenv{'internal.crosslistings'} =~ s/,$//;
                   10274:         }
                   10275:     }
                   10276:     if ($args->{'autoadds'}) {
                   10277:         $cenv{'internal.autoadds'}=$args->{'autoadds'};
                   10278:     }
                   10279:     if ($args->{'autodrops'}) {
                   10280:         $cenv{'internal.autodrops'}=$args->{'autodrops'};
                   10281:     }
                   10282: # check for notification of enrollment changes
                   10283:     my @notified = ();
                   10284:     if ($args->{'notify_owner'}) {
                   10285:         if ($args->{'ccuname'} ne '') {
                   10286:             push(@notified,$args->{'ccuname'}.':'.$args->{'ccdomain'});
                   10287:         }
                   10288:     }
                   10289:     if ($args->{'notify_dc'}) {
                   10290:         if ($uname ne '') { 
1.630     raeburn  10291:             push(@notified,$uname.':'.$udom);
1.444     albertel 10292:         }
                   10293:     }
                   10294:     if (@notified > 0) {
                   10295:         my $notifylist;
                   10296:         if (@notified > 1) {
                   10297:             $notifylist = join(',',@notified);
                   10298:         } else {
                   10299:             $notifylist = $notified[0];
                   10300:         }
                   10301:         $cenv{'internal.notifylist'} = $notifylist;
                   10302:     }
                   10303:     if (@badclasses > 0) {
                   10304:         my %lt=&Apache::lonlocal::texthash(
                   10305:                 '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',
                   10306:                 'dnhr' => 'does not have rights to access enrollment in these classes',
                   10307:                 'adby' => 'as determined by the policies of your institution on access to official classlists'
                   10308:         );
1.541     raeburn  10309:         my $badclass_msg = $cenv{'internal.courseowner'}.') - '.$lt{'dnhr'}.
                   10310:                            ' ('.$lt{'adby'}.')';
                   10311:         if ($context eq 'auto') {
                   10312:             $outcome .= $badclass_msg.$linefeed;
1.566     albertel 10313:             $outcome .= '<div class="LC_warning">'.$badclass_msg.$linefeed.'<ul>'."\n";
1.541     raeburn  10314:             foreach my $item (@badclasses) {
                   10315:                 if ($context eq 'auto') {
                   10316:                     $outcome .= " - $item\n";
                   10317:                 } else {
                   10318:                     $outcome .= "<li>$item</li>\n";
                   10319:                 }
                   10320:             }
                   10321:             if ($context eq 'auto') {
                   10322:                 $outcome .= $linefeed;
                   10323:             } else {
1.566     albertel 10324:                 $outcome .= "</ul><br /><br /></div>\n";
1.541     raeburn  10325:             }
                   10326:         } 
1.444     albertel 10327:     }
                   10328:     if ($args->{'no_end_date'}) {
                   10329:         $args->{'endaccess'} = 0;
                   10330:     }
                   10331:     $cenv{'internal.autostart'}=$args->{'enrollstart'};
                   10332:     $cenv{'internal.autoend'}=$args->{'enrollend'};
                   10333:     $cenv{'default_enrollment_start_date'}=$args->{'startaccess'};
                   10334:     $cenv{'default_enrollment_end_date'}=$args->{'endaccess'};
                   10335:     if ($args->{'showphotos'}) {
                   10336:       $cenv{'internal.showphotos'}=$args->{'showphotos'};
                   10337:     }
                   10338:     $cenv{'internal.authtype'} = $args->{'authtype'};
                   10339:     $cenv{'internal.autharg'} = $args->{'autharg'}; 
                   10340:     if ( ($cenv{'internal.authtype'} =~ /^krb/) && ($cenv{'internal.autoadds'} == 1)) {
                   10341:         if (! defined($cenv{'internal.autharg'}) || $cenv{'internal.autharg'}  eq '') {
1.541     raeburn  10342:             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'); 
                   10343:             if ($context eq 'auto') {
                   10344:                 $outcome .= $krb_msg;
                   10345:             } else {
1.566     albertel 10346:                 $outcome .= '<span class="LC_error">'.$krb_msg.'</span>';
1.541     raeburn  10347:             }
                   10348:             $outcome .= $linefeed;
1.444     albertel 10349:         }
                   10350:     }
                   10351:     if (($args->{'ccdomain'}) && ($args->{'ccuname'})) {
                   10352:        if ($args->{'setpolicy'}) {
                   10353:            $cenv{'policy.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   10354:        }
                   10355:        if ($args->{'setcontent'}) {
                   10356:            $cenv{'question.email'}=$args->{'ccuname'}.':'.$args->{'ccdomain'};
                   10357:        }
                   10358:     }
                   10359:     if ($args->{'reshome'}) {
                   10360: 	$cenv{'reshome'}=$args->{'reshome'}.'/';
                   10361: 	$cenv{'reshome'}=~s/\/+$/\//;
                   10362:     }
                   10363: #
                   10364: # course has keyed access
                   10365: #
                   10366:     if ($args->{'setkeys'}) {
                   10367:        $cenv{'keyaccess'}='yes';
                   10368:     }
                   10369: # if specified, key authority is not course, but user
                   10370: # only active if keyaccess is yes
                   10371:     if ($args->{'keyauth'}) {
1.487     albertel 10372: 	my ($user,$domain) = split(':',$args->{'keyauth'});
                   10373: 	$user = &LONCAPA::clean_username($user);
                   10374: 	$domain = &LONCAPA::clean_username($domain);
1.488     foxr     10375: 	if ($user ne '' && $domain ne '') {
1.487     albertel 10376: 	    $cenv{'keyauth'}=$user.':'.$domain;
1.444     albertel 10377: 	}
                   10378:     }
                   10379: 
                   10380:     if ($args->{'disresdis'}) {
                   10381:         $cenv{'pch.roles.denied'}='st';
                   10382:     }
                   10383:     if ($args->{'disablechat'}) {
                   10384:         $cenv{'plc.roles.denied'}='st';
                   10385:     }
                   10386: 
                   10387:     # Record we've not yet viewed the Course Initialization Helper for this 
                   10388:     # course
                   10389:     $cenv{'course.helper.not.run'} = 1;
                   10390:     #
                   10391:     # Use new Randomseed
                   10392:     #
                   10393:     $cenv{'rndseed'}=&Apache::lonnet::latest_rnd_algorithm_id();;
                   10394:     $cenv{'receiptalg'}=&Apache::lonnet::latest_receipt_algorithm_id();;
                   10395:     #
                   10396:     # The encryption code and receipt prefix for this course
                   10397:     #
                   10398:     $cenv{'internal.encseed'}=$Apache::lonnet::perlvar{'lonReceipt'}.$$.time.int(rand(9999));
                   10399:     $cenv{'internal.encpref'}=100+int(9*rand(99));
                   10400:     #
                   10401:     # By default, use standard grading
                   10402:     if (!defined($cenv{'grading'})) { $cenv{'grading'} = 'standard'; }
                   10403: 
1.541     raeburn  10404:     $outcome .= $linefeed.&mt('Setting environment').': '.                 
                   10405:           &Apache::lonnet::put('environment',\%cenv,$$crsudom,$$crsunum).$linefeed;
1.444     albertel 10406: #
                   10407: # Open all assignments
                   10408: #
                   10409:     if ($args->{'openall'}) {
                   10410:        my $storeunder=$$crsudom.'_'.$$crsunum.'.0.opendate';
                   10411:        my %storecontent = ($storeunder         => time,
                   10412:                            $storeunder.'.type' => 'date_start');
                   10413:        
                   10414:        $outcome .= &mt('Opening all assignments').': '.&Apache::lonnet::cput
1.541     raeburn  10415:                  ('resourcedata',\%storecontent,$$crsudom,$$crsunum).$linefeed;
1.444     albertel 10416:    }
                   10417: #
                   10418: # Set first page
                   10419: #
                   10420:     unless (($args->{'nonstandard'}) || ($args->{'firstres'} eq 'blank')
                   10421: 	    || ($cloneid)) {
1.445     albertel 10422: 	use LONCAPA::map;
1.444     albertel 10423: 	$outcome .= &mt('Setting first resource').': ';
1.445     albertel 10424: 
                   10425: 	my $map = '/uploaded/'.$$crsudom.'/'.$$crsunum.'/default.sequence';
                   10426:         my ($errtext,$fatal)=&LONCAPA::map::mapread($map);
                   10427: 
1.444     albertel 10428:         $outcome .= ($fatal?$errtext:'read ok').' - ';
                   10429:         my $title; my $url;
                   10430:         if ($args->{'firstres'} eq 'syl') {
1.690     bisitz   10431: 	    $title=&mt('Syllabus');
1.444     albertel 10432:             $url='/public/'.$$crsudom.'/'.$$crsunum.'/syllabus';
                   10433:         } else {
1.963     raeburn  10434:             $title=&mt('Table of Contents');
1.444     albertel 10435:             $url='/adm/navmaps';
                   10436:         }
1.445     albertel 10437: 
                   10438:         $LONCAPA::map::resources[1]=$title.':'.$url.':false:start:res';
                   10439: 	(my $outtext,$errtext) = &LONCAPA::map::storemap($map,1);
                   10440: 
                   10441: 	if ($errtext) { $fatal=2; }
1.541     raeburn  10442:         $outcome .= ($fatal?$errtext:'write ok').$linefeed;
1.444     albertel 10443:     }
1.566     albertel 10444: 
                   10445:     return (1,$outcome);
1.444     albertel 10446: }
                   10447: 
                   10448: ############################################################
                   10449: ############################################################
                   10450: 
1.953     droeschl 10451: #SD
                   10452: # only Community and Course, or anything else?
1.378     raeburn  10453: sub course_type {
                   10454:     my ($cid) = @_;
                   10455:     if (!defined($cid)) {
                   10456:         $cid = $env{'request.course.id'};
                   10457:     }
1.404     albertel 10458:     if (defined($env{'course.'.$cid.'.type'})) {
                   10459:         return $env{'course.'.$cid.'.type'};
1.378     raeburn  10460:     } else {
                   10461:         return 'Course';
1.377     raeburn  10462:     }
                   10463: }
1.156     albertel 10464: 
1.406     raeburn  10465: sub group_term {
                   10466:     my $crstype = &course_type();
                   10467:     my %names = (
                   10468:                   'Course' => 'group',
1.865     raeburn  10469:                   'Community' => 'group',
1.406     raeburn  10470:                 );
                   10471:     return $names{$crstype};
                   10472: }
                   10473: 
1.902     raeburn  10474: sub course_types {
                   10475:     my @types = ('official','unofficial','community');
                   10476:     my %typename = (
                   10477:                          official   => 'Official course',
                   10478:                          unofficial => 'Unofficial course',
                   10479:                          community  => 'Community',
                   10480:                    );
                   10481:     return (\@types,\%typename);
                   10482: }
                   10483: 
1.156     albertel 10484: sub icon {
                   10485:     my ($file)=@_;
1.505     albertel 10486:     my $curfext = lc((split(/\./,$file))[-1]);
1.168     albertel 10487:     my $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/unknown.gif';
1.156     albertel 10488:     my $embstyle = &Apache::loncommon::fileembstyle($curfext);
1.168     albertel 10489:     if (!(!defined($embstyle) || $embstyle eq 'unk' || $embstyle eq 'hdn')) {
                   10490: 	if (-e  $Apache::lonnet::perlvar{'lonDocRoot'}.'/'.
                   10491: 	          $Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
                   10492: 	            $curfext.".gif") {
                   10493: 	    $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
                   10494: 		$curfext.".gif";
                   10495: 	}
                   10496:     }
1.249     albertel 10497:     return &lonhttpdurl($iconname);
1.154     albertel 10498: } 
1.84      albertel 10499: 
1.575     albertel 10500: sub lonhttpdurl {
1.692     www      10501: #
                   10502: # Had been used for "small fry" static images on separate port 8080.
                   10503: # Modify here if lightweight http functionality desired again.
                   10504: # Currently eliminated due to increasing firewall issues.
                   10505: #
1.575     albertel 10506:     my ($url)=@_;
1.692     www      10507:     return $url;
1.215     albertel 10508: }
                   10509: 
1.213     albertel 10510: sub connection_aborted {
                   10511:     my ($r)=@_;
                   10512:     $r->print(" ");$r->rflush();
                   10513:     my $c = $r->connection;
                   10514:     return $c->aborted();
                   10515: }
                   10516: 
1.221     foxr     10517: #    Escapes strings that may have embedded 's that will be put into
1.222     foxr     10518: #    strings as 'strings'.
                   10519: sub escape_single {
1.221     foxr     10520:     my ($input) = @_;
1.223     albertel 10521:     $input =~ s/\\/\\\\/g;	# Escape the \'s..(must be first)>
1.221     foxr     10522:     $input =~ s/\'/\\\'/g;	# Esacpe the 's....
                   10523:     return $input;
                   10524: }
1.223     albertel 10525: 
1.222     foxr     10526: #  Same as escape_single, but escape's "'s  This 
                   10527: #  can be used for  "strings"
                   10528: sub escape_double {
                   10529:     my ($input) = @_;
                   10530:     $input =~ s/\\/\\\\/g;	# Escape the /'s..(must be first)>
                   10531:     $input =~ s/\"/\\\"/g;	# Esacpe the "s....
                   10532:     return $input;
                   10533: }
1.223     albertel 10534:  
1.222     foxr     10535: #   Escapes the last element of a full URL.
                   10536: sub escape_url {
                   10537:     my ($url)   = @_;
1.238     raeburn  10538:     my @urlslices = split(/\//, $url,-1);
1.369     www      10539:     my $lastitem = &escape(pop(@urlslices));
1.223     albertel 10540:     return join('/',@urlslices).'/'.$lastitem;
1.222     foxr     10541: }
1.462     albertel 10542: 
1.820     raeburn  10543: sub compare_arrays {
                   10544:     my ($arrayref1,$arrayref2) = @_;
                   10545:     my (@difference,%count);
                   10546:     @difference = ();
                   10547:     %count = ();
                   10548:     if ((ref($arrayref1) eq 'ARRAY') && (ref($arrayref2) eq 'ARRAY')) {
                   10549:         foreach my $element (@{$arrayref1}, @{$arrayref2}) { $count{$element}++; }
                   10550:         foreach my $element (keys(%count)) {
                   10551:             if ($count{$element} == 1) {
                   10552:                 push(@difference,$element);
                   10553:             }
                   10554:         }
                   10555:     }
                   10556:     return @difference;
                   10557: }
                   10558: 
1.817     bisitz   10559: # -------------------------------------------------------- Initialize user login
1.462     albertel 10560: sub init_user_environment {
1.463     albertel 10561:     my ($r, $username, $domain, $authhost, $form, $args) = @_;
1.462     albertel 10562:     my $lonids=$Apache::lonnet::perlvar{'lonIDsDir'};
                   10563: 
                   10564:     my $public=($username eq 'public' && $domain eq 'public');
                   10565: 
                   10566: # See if old ID present, if so, remove
                   10567: 
                   10568:     my ($filename,$cookie,$userroles);
                   10569:     my $now=time;
                   10570: 
                   10571:     if ($public) {
                   10572: 	my $max_public=100;
                   10573: 	my $oldest;
                   10574: 	my $oldest_time=0;
                   10575: 	for(my $next=1;$next<=$max_public;$next++) {
                   10576: 	    if (-e $lonids."/publicuser_$next.id") {
                   10577: 		my $mtime=(stat($lonids."/publicuser_$next.id"))[9];
                   10578: 		if ($mtime<$oldest_time || !$oldest_time) {
                   10579: 		    $oldest_time=$mtime;
                   10580: 		    $oldest=$next;
                   10581: 		}
                   10582: 	    } else {
                   10583: 		$cookie="publicuser_$next";
                   10584: 		last;
                   10585: 	    }
                   10586: 	}
                   10587: 	if (!$cookie) { $cookie="publicuser_$oldest"; }
                   10588:     } else {
1.463     albertel 10589: 	# if this isn't a robot, kill any existing non-robot sessions
                   10590: 	if (!$args->{'robot'}) {
                   10591: 	    opendir(DIR,$lonids);
                   10592: 	    while ($filename=readdir(DIR)) {
                   10593: 		if ($filename=~/^$username\_\d+\_$domain\_$authhost\.id$/) {
                   10594: 		    unlink($lonids.'/'.$filename);
                   10595: 		}
1.462     albertel 10596: 	    }
1.463     albertel 10597: 	    closedir(DIR);
1.462     albertel 10598: 	}
                   10599: # Give them a new cookie
1.463     albertel 10600: 	my $id = ($args->{'robot'} ? 'robot'.$args->{'robot'}
1.684     www      10601: 		                   : $now.$$.int(rand(10000)));
1.463     albertel 10602: 	$cookie="$username\_$id\_$domain\_$authhost";
1.462     albertel 10603:     
                   10604: # Initialize roles
                   10605: 
                   10606: 	$userroles=&Apache::lonnet::rolesinit($domain,$username,$authhost);
                   10607:     }
                   10608: # ------------------------------------ Check browser type and MathML capability
                   10609: 
                   10610:     my ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
                   10611:         $clientunicode,$clientos) = &decode_user_agent($r);
                   10612: 
                   10613: # ------------------------------------------------------------- Get environment
                   10614: 
                   10615:     my %userenv = &Apache::lonnet::dump('environment',$domain,$username);
                   10616:     my ($tmp) = keys(%userenv);
                   10617:     if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
                   10618:     } else {
                   10619: 	undef(%userenv);
                   10620:     }
                   10621:     if (($userenv{'interface'}) && (!$form->{'interface'})) {
                   10622: 	$form->{'interface'}=$userenv{'interface'};
                   10623:     }
                   10624:     if ($userenv{'texengine'} eq 'ttm') { $clientmathml=1; }
                   10625: 
                   10626: # --------------- Do not trust query string to be put directly into environment
1.817     bisitz   10627:     foreach my $option ('interface','localpath','localres') {
                   10628:         $form->{$option}=~s/[\n\r\=]//gs;
1.462     albertel 10629:     }
                   10630: # --------------------------------------------------------- Write first profile
                   10631: 
                   10632:     {
                   10633: 	my %initial_env = 
                   10634: 	    ("user.name"          => $username,
                   10635: 	     "user.domain"        => $domain,
                   10636: 	     "user.home"          => $authhost,
                   10637: 	     "browser.type"       => $clientbrowser,
                   10638: 	     "browser.version"    => $clientversion,
                   10639: 	     "browser.mathml"     => $clientmathml,
                   10640: 	     "browser.unicode"    => $clientunicode,
                   10641: 	     "browser.os"         => $clientos,
                   10642: 	     "server.domain"      => $Apache::lonnet::perlvar{'lonDefDomain'},
                   10643: 	     "request.course.fn"  => '',
                   10644: 	     "request.course.uri" => '',
                   10645: 	     "request.course.sec" => '',
                   10646: 	     "request.role"       => 'cm',
                   10647: 	     "request.role.adv"   => $env{'user.adv'},
                   10648: 	     "request.host"       => $ENV{'REMOTE_ADDR'},);
                   10649: 
                   10650:         if ($form->{'localpath'}) {
                   10651: 	    $initial_env{"browser.localpath"}  = $form->{'localpath'};
                   10652: 	    $initial_env{"browser.localres"}   = $form->{'localres'};
                   10653:         }
                   10654: 	
                   10655: 	if ($form->{'interface'}) {
                   10656: 	    $form->{'interface'}=~s/\W//gs;
                   10657: 	    $initial_env{"browser.interface"} = $form->{'interface'};
                   10658: 	    $env{'browser.interface'}=$form->{'interface'};
                   10659: 	}
                   10660: 
1.724     raeburn  10661:         foreach my $tool ('aboutme','blog','portfolio') {
                   10662:             $userenv{'availabletools.'.$tool} = 
                   10663:                 &Apache::lonnet::usertools_access($username,$domain,$tool,'reload');
                   10664:         }
                   10665: 
1.864     raeburn  10666:         foreach my $crstype ('official','unofficial','community') {
1.765     raeburn  10667:             $userenv{'canrequest.'.$crstype} =
                   10668:                 &Apache::lonnet::usertools_access($username,$domain,$crstype,
                   10669:                                                   'reload','requestcourses');
                   10670:         }
                   10671: 
1.462     albertel 10672: 	$env{'user.environment'} = "$lonids/$cookie.id";
                   10673: 	
                   10674: 	if (tie(my %disk_env,'GDBM_File',"$lonids/$cookie.id",
                   10675: 		 &GDBM_WRCREAT(),0640)) {
                   10676: 	    &_add_to_env(\%disk_env,\%initial_env);
                   10677: 	    &_add_to_env(\%disk_env,\%userenv,'environment.');
                   10678: 	    &_add_to_env(\%disk_env,$userroles);
1.463     albertel 10679: 	    if (ref($args->{'extra_env'})) {
                   10680: 		&_add_to_env(\%disk_env,$args->{'extra_env'});
                   10681: 	    }
1.462     albertel 10682: 	    untie(%disk_env);
                   10683: 	} else {
1.705     tempelho 10684: 	    &Apache::lonnet::logthis("<span style=\"color:blue;\">WARNING: ".
                   10685: 			   'Could not create environment storage in lonauth: '.$!.'</span>');
1.462     albertel 10686: 	    return 'error: '.$!;
                   10687: 	}
                   10688:     }
                   10689:     $env{'request.role'}='cm';
                   10690:     $env{'request.role.adv'}=$env{'user.adv'};
                   10691:     $env{'browser.type'}=$clientbrowser;
                   10692: 
                   10693:     return $cookie;
                   10694: 
                   10695: }
                   10696: 
                   10697: sub _add_to_env {
                   10698:     my ($idf,$env_data,$prefix) = @_;
1.676     raeburn  10699:     if (ref($env_data) eq 'HASH') {
                   10700:         while (my ($key,$value) = each(%$env_data)) {
                   10701: 	    $idf->{$prefix.$key} = $value;
                   10702: 	    $env{$prefix.$key}   = $value;
                   10703:         }
1.462     albertel 10704:     }
                   10705: }
                   10706: 
1.685     tempelho 10707: # --- Get the symbolic name of a problem and the url
                   10708: sub get_symb {
                   10709:     my ($request,$silent) = @_;
1.726     raeburn  10710:     (my $url=$env{'form.url'}) =~ s-^https?\://($ENV{'SERVER_NAME'}|$ENV{'HTTP_HOST'})--;
1.685     tempelho 10711:     my $symb=($env{'form.symb'} ne '' ? $env{'form.symb'} : (&Apache::lonnet::symbread($url)));
                   10712:     if ($symb eq '') {
                   10713:         if (!$silent) {
                   10714:             $request->print("Unable to handle ambiguous references:$url:.");
                   10715:             return ();
                   10716:         }
                   10717:     }
                   10718:     &Apache::lonenc::check_decrypt(\$symb);
                   10719:     return ($symb);
                   10720: }
                   10721: 
                   10722: # --------------------------------------------------------------Get annotation
                   10723: 
                   10724: sub get_annotation {
                   10725:     my ($symb,$enc) = @_;
                   10726: 
                   10727:     my $key = $symb;
                   10728:     if (!$enc) {
                   10729:         $key =
                   10730:             &Apache::lonnet::clutter((&Apache::lonnet::decode_symb($symb))[2]);
                   10731:     }
                   10732:     my %annotation=&Apache::lonnet::get('nohist_annotations',[$key]);
                   10733:     return $annotation{$key};
                   10734: }
                   10735: 
                   10736: sub clean_symb {
1.731     raeburn  10737:     my ($symb,$delete_enc) = @_;
1.685     tempelho 10738: 
                   10739:     &Apache::lonenc::check_decrypt(\$symb);
                   10740:     my $enc = $env{'request.enc'};
1.731     raeburn  10741:     if ($delete_enc) {
1.730     raeburn  10742:         delete($env{'request.enc'});
                   10743:     }
1.685     tempelho 10744: 
                   10745:     return ($symb,$enc);
                   10746: }
1.462     albertel 10747: 
1.41      ng       10748: =pod
                   10749: 
                   10750: =back
                   10751: 
1.112     bowersj2 10752: =cut
1.41      ng       10753: 
1.112     bowersj2 10754: 1;
                   10755: __END__;
1.41      ng       10756: 

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