File:  [LON-CAPA] / loncom / interface / lonhtmlcommon.pm
Revision 1.192: download - view: text, annotated - select for diffs
Fri Dec 5 10:23:56 2008 UTC (15 years, 5 months ago) by bisitz
Branches: MAIN
CVS tags: HEAD
Replaced all hardcoded nowrap styles with LC_nobreak classes

    1: # The LearningOnline Network with CAPA
    2: # a pile of common html routines
    3: #
    4: # $Id: lonhtmlcommon.pm,v 1.192 2008/12/05 10:23:56 bisitz Exp $
    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: #
   28: ######################################################################
   29: ######################################################################
   30: 
   31: =pod
   32: 
   33: =head1 NAME
   34: 
   35: Apache::lonhtmlcommon - routines to do common html things
   36: 
   37: =head1 SYNOPSIS
   38: 
   39: Referenced by other mod_perl Apache modules.
   40: 
   41: =head1 INTRODUCTION
   42: 
   43: lonhtmlcommon is a collection of subroutines used to present information
   44: in a consistent html format, or provide other functionality related to
   45: html.
   46: 
   47: =head2 General Subroutines
   48: 
   49: =over 4
   50: 
   51: =cut 
   52: 
   53: ######################################################################
   54: ######################################################################
   55: 
   56: package Apache::lonhtmlcommon;
   57: 
   58: use strict;
   59: use Time::Local;
   60: use Time::HiRes;
   61: use Apache::lonlocal;
   62: use Apache::lonnet;
   63: use LONCAPA;
   64: 
   65: 
   66: ##############################################
   67: ##############################################
   68: 
   69: =pod
   70: 
   71: =item dragmath_button
   72: 
   73: Creates a button that launches a dragmath popup-window, in which an 
   74: expression can be edited and pasted as LaTeX into a specified textarea. 
   75: 
   76:   textarea - Name of the textarea to edit.
   77:   helpicon - If true, show a help icon to the right of the button.
   78: 
   79: =cut
   80: 
   81: sub dragmath_button {
   82:     my ($textarea,$helpicon) = @_;
   83:     my $help_text; 
   84:     if ($helpicon) {
   85:         $help_text = &Apache::loncommon::help_open_topic('Authoring_Math_Editor');
   86:     }
   87:     my $buttontext=&mt('Edit Math');
   88:     return <<ENDDRAGMATH;
   89:                 <input type="button" value="$buttontext", onclick="javascript:mathedit('$textarea',document)" />$help_text
   90: ENDDRAGMATH
   91: }
   92: 
   93: ##############################################
   94: 
   95: =pod
   96: 
   97: =item dragmath_js
   98: 
   99: Javascript used to open pop-up window containing dragmath applet which 
  100: can be used to paste LaTeX into a textarea.
  101:  
  102: =cut
  103: 
  104: sub dragmath_js {
  105:     my ($popup) = @_;
  106:     return <<ENDDRAGMATHJS;
  107:                 <script type="text/javascript">
  108:                   function mathedit(textarea, doc) {
  109:                      targetEntry = textarea;
  110:                      targetDoc   = doc;
  111:                      newwin  = window.open("/adm/dragmath/applet/$popup.html","","width=565,height=500,resizable");
  112:                   }
  113:                 </script>
  114: 
  115: ENDDRAGMATHJS
  116: }
  117: 
  118: 
  119: ##############################################
  120: ##############################################
  121: 
  122: =pod
  123: 
  124: =item authorbombs
  125: 
  126: =cut
  127: 
  128: ##############################################
  129: ##############################################
  130: 
  131: sub authorbombs {
  132:     my $url=shift;
  133:     $url=&Apache::lonnet::declutter($url);
  134:     my ($udom,$uname)=($url=~m{^($LONCAPA::domain_re)/($LONCAPA::username_re)/});
  135:     my %bombs=&Apache::lonmsg::all_url_author_res_msg($uname,$udom);
  136:     foreach (keys %bombs) {
  137: 	if ($_=~/^$udom\/$uname\//) {
  138: 	    return '<a href="/adm/bombs/'.$url.
  139: 		'"><img src="'.&Apache::loncommon::lonhttpdurl('/adm/lonMisc/bomb.gif').'" border="0" /></a>'.
  140: 		&Apache::loncommon::help_open_topic('About_Bombs');
  141: 	}
  142:     }
  143:     return '';
  144: }
  145: 
  146: ##############################################
  147: ##############################################
  148: 
  149: sub recent_filename {
  150:     my $area=shift;
  151:     return 'nohist_recent_'.&escape($area);
  152: }
  153: 
  154: sub store_recent {
  155:     my ($area,$name,$value,$freeze)=@_;
  156:     my $file=&recent_filename($area);
  157:     my %recent=&Apache::lonnet::dump($file);
  158:     if (scalar(keys(%recent))>20) {
  159: # remove oldest value
  160: 	my $oldest=time();
  161: 	my $delkey='';
  162: 	foreach my $item (keys(%recent)) {
  163: 	    my $thistime=(split(/\&/,$recent{$item}))[0];
  164: 	    if (($thistime ne "always_include") && ($thistime<$oldest)) {
  165: 		$oldest=$thistime;
  166: 		$delkey=$item;
  167: 	    }
  168: 	}
  169: 	&Apache::lonnet::del($file,[$delkey]);
  170:     }
  171: # store new value
  172:     my $timestamp;
  173:     if ($freeze) {
  174:         $timestamp = "always_include";
  175:     } else {
  176:         $timestamp = time();
  177:     }   
  178:     &Apache::lonnet::put($file,{ $name => 
  179: 				 $timestamp.'&'.&escape($value) });
  180: }
  181: 
  182: sub remove_recent {
  183:     my ($area,$names)=@_;
  184:     my $file=&recent_filename($area);
  185:     return &Apache::lonnet::del($file,$names);
  186: }
  187: 
  188: sub select_recent {
  189:     my ($area,$fieldname,$event)=@_;
  190:     my %recent=&Apache::lonnet::dump(&recent_filename($area));
  191:     my $return="\n<select name='$fieldname'".
  192: 	($event?" onchange='$event'":'').
  193: 	">\n<option value=''>--- ".&mt('Recent')." ---</option>";
  194:     foreach my $value (sort(keys(%recent))) {
  195: 	unless ($value =~/^error\:/) {
  196: 	    my $escaped = &Apache::loncommon::escape_url($value);
  197: 	    &Apache::loncommon::inhibit_menu_check(\$escaped);
  198: 	    $return.="\n<option value='$escaped'>".
  199: 		&unescape((split(/\&/,$recent{$value}))[1]).
  200: 		'</option>';
  201: 	}
  202:     }
  203:     $return.="\n</select>\n";
  204:     return $return;
  205: }
  206: 
  207: sub get_recent {
  208:     my ($area, $n) = @_;
  209:     my %recent=&Apache::lonnet::dump(&recent_filename($area));
  210: 
  211: # Create hash with key as time and recent as value
  212: # Begin filling return_hash with any 'always_include' option
  213:     my %time_hash = ();
  214:     my %return_hash = ();
  215:     foreach my $item (keys %recent) {
  216:         my ($thistime,$thisvalue)=(split(/\&/,$recent{$item}));
  217:         if ($thistime eq 'always_include') {
  218:             $return_hash{$item} = &unescape($thisvalue);
  219:             $n--;
  220:         } else {
  221:             $time_hash{$thistime} = $item;
  222:         }
  223:     }
  224: 
  225: # Sort by decreasing time and return key value pairs
  226:     my $idx = 1;
  227:     foreach my $item (reverse(sort(keys(%time_hash)))) {
  228:        $return_hash{$time_hash{$item}} =
  229:                   &unescape((split(/\&/,$recent{$time_hash{$item}}))[1]);
  230:        if ($n && ($idx++ >= $n)) {last;}
  231:     }
  232: 
  233:     return %return_hash;
  234: }
  235: 
  236: sub get_recent_frozen {
  237:     my ($area) = @_;
  238:     my %recent=&Apache::lonnet::dump(&recent_filename($area));
  239: 
  240: # Create hash with all 'frozen' items
  241:     my %return_hash = ();
  242:     foreach my $item (keys(%recent)) {
  243:         my ($thistime,$thisvalue)=(split(/\&/,$recent{$item}));
  244:         if ($thistime eq 'always_include') {
  245:             $return_hash{$item} = &unescape($thisvalue);
  246:         }
  247:     }
  248:     return %return_hash;
  249: }
  250: 
  251: 
  252: 
  253: =pod
  254: 
  255: =item textbox
  256: 
  257: =cut
  258: 
  259: ##############################################
  260: ##############################################
  261: sub textbox {
  262:     my ($name,$value,$size,$special) = @_;
  263:     $size = 40 if (! defined($size));
  264:     $value = &HTML::Entities::encode($value,'<>&"');
  265:     my $Str = '<input type="text" name="'.$name.'" size="'.$size.'" '.
  266:         'value="'.$value.'" '.$special.' />';
  267:     return $Str;
  268: }
  269: 
  270: ##############################################
  271: ##############################################
  272: 
  273: =pod
  274: 
  275: =item checkbox
  276: 
  277: =cut
  278: 
  279: ##############################################
  280: ##############################################
  281: sub checkbox {
  282:     my ($name,$checked,$value) = @_;
  283:     my $Str = '<input type="checkbox" name="'.$name.'" ';
  284:     if (defined($value)) {
  285:         $Str .= 'value="'.$value.'"';
  286:     } 
  287:     if ($checked) {
  288:         $Str .= ' checked="1"';
  289:     }
  290:     $Str .= ' />';
  291:     return $Str;
  292: }
  293: 
  294: 
  295: =pod
  296: 
  297: =item radiobutton
  298: 
  299: =cut
  300: 
  301: ##############################################
  302: ##############################################
  303: sub radio {
  304:     my ($name,$checked,$value) = @_;
  305:     my $Str = '<input type="radio" name="'.$name.'" ';
  306:     if (defined($value)) {
  307:         $Str .= 'value="'.$value.'"';
  308:     } 
  309:     if ($checked eq $value) {
  310:         $Str .= ' checked="1"';
  311:     }
  312:     $Str .= ' />';
  313:     return $Str;
  314: }
  315: 
  316: ##############################################
  317: ##############################################
  318: 
  319: =pod
  320: 
  321: =item &date_setter
  322: 
  323: &date_setter returns html and javascript for a compact date-setting form.
  324: To retrieve values from it, use &get_date_from_form().
  325: 
  326: Inputs
  327: 
  328: =over 4
  329: 
  330: =item $dname 
  331: 
  332: The name to prepend to the form elements.  
  333: The form elements defined will be dname_year, dname_month, dname_day,
  334: dname_hour, dname_min, and dname_sec.
  335: 
  336: =item $currentvalue
  337: 
  338: The current setting for this time parameter.  A unix format time
  339: (time in seconds since the beginning of Jan 1st, 1970, GMT.  
  340: An undefined value is taken to indicate the value is the current time.
  341: Also, to be explicit, a value of 'now' also indicates the current time.
  342: 
  343: =item $special
  344: 
  345: Additional html/javascript to be associated with each element in
  346: the date_setter.  See lonparmset for example usage.
  347: 
  348: =item $includeempty 
  349: 
  350: =item $state
  351: 
  352: Specifies the initial state of the form elements.  Either 'disabled' or empty.
  353: Defaults to empty, which indiciates the form elements are not disabled. 
  354: 
  355: =back
  356: 
  357: Bugs
  358: 
  359: The method used to restrict user input will fail in the year 2400.
  360: 
  361: =cut
  362: 
  363: ##############################################
  364: ##############################################
  365: sub date_setter {
  366:     my ($formname,$dname,$currentvalue,$special,$includeempty,$state,
  367:         $no_hh_mm_ss,$defhour,$defmin,$defsec,$nolink) = @_;
  368:     my $now = time;
  369:     my $wasdefined=1;
  370:     if (! defined($state) || $state ne 'disabled') {
  371:         $state = '';
  372:     }
  373:     if (! defined($no_hh_mm_ss)) {
  374:         $no_hh_mm_ss = 0;
  375:     }
  376:     if ($currentvalue eq 'now') {
  377: 	$currentvalue = $now;
  378:     }
  379:     if ((!defined($currentvalue)) || ($currentvalue eq '')) {
  380: 	$wasdefined=0;
  381: 	if ($includeempty) {
  382: 	    $currentvalue = 0;
  383: 	} else {
  384: 	    $currentvalue = $now;
  385: 	}
  386:     }
  387:     # other potentially useful values:     wkday,yrday,is_daylight_savings
  388:     my $tzname;
  389:     my ($sec,$min,$hour,$mday,$month,$year)=('','',undef,'','','');
  390:     if ($currentvalue) {
  391:         ($tzname,$sec,$min,$hour,$mday,$month,$year) = &get_timedates($currentvalue); 
  392:     }
  393:     unless ($wasdefined) {
  394:         ($tzname,$sec,$min,$hour,$mday,$month,$year) = &get_timedates($now);
  395: 	if (($defhour) || ($defmin) || ($defsec)) {
  396: 	    $sec=($defsec?$defsec:0);
  397: 	    $min=($defmin?$defmin:0);
  398: 	    $hour=($defhour?$defhour:0);
  399: 	} elsif (!$includeempty) {
  400: 	    $sec=0;
  401: 	    $min=0;
  402: 	    $hour=0;
  403: 	}
  404:     }
  405:     my $result = "\n<!-- $dname date setting form -->\n";
  406:     $result .= <<ENDJS;
  407: <script type="text/javascript">
  408:     function $dname\_checkday() {
  409:         var day   = document.$formname.$dname\_day.value;
  410:         var month = document.$formname.$dname\_month.value;
  411:         var year  = document.$formname.$dname\_year.value;
  412:         var valid = true;
  413:         if (day < 1) {
  414:             document.$formname.$dname\_day.value = 1;
  415:         } 
  416:         if (day > 31) {
  417:             document.$formname.$dname\_day.value = 31;
  418:         }
  419:         if ((month == 1)  || (month == 3)  || (month == 5)  ||
  420:             (month == 7)  || (month == 8)  || (month == 10) ||
  421:             (month == 12)) {
  422:             if (day > 31) {
  423:                 document.$formname.$dname\_day.value = 31;
  424:                 day = 31;
  425:             }
  426:         } else if (month == 2 ) {
  427:             if ((year % 4 == 0) && (year % 100 != 0)) {
  428:                 if (day > 29) {
  429:                     document.$formname.$dname\_day.value = 29;
  430:                 }
  431:             } else if (day > 29) {
  432:                 document.$formname.$dname\_day.value = 28;
  433:             }
  434:         } else if (day > 30) {
  435:             document.$formname.$dname\_day.value = 30;
  436:         }
  437:     }
  438:     
  439:     function $dname\_disable() {
  440:         document.$formname.$dname\_month.disabled=true;
  441:         document.$formname.$dname\_day.disabled=true;
  442:         document.$formname.$dname\_year.disabled=true;
  443:         document.$formname.$dname\_hour.disabled=true;
  444:         document.$formname.$dname\_minute.disabled=true;
  445:         document.$formname.$dname\_second.disabled=true;
  446:     }
  447: 
  448:     function $dname\_enable() {
  449:         document.$formname.$dname\_month.disabled=false;
  450:         document.$formname.$dname\_day.disabled=false;
  451:         document.$formname.$dname\_year.disabled=false;
  452:         document.$formname.$dname\_hour.disabled=false;
  453:         document.$formname.$dname\_minute.disabled=false;
  454:         document.$formname.$dname\_second.disabled=false;        
  455:     }
  456: 
  457:     function $dname\_opencalendar() {
  458:         if (! document.$formname.$dname\_month.disabled) {
  459:             var calwin=window.open(
  460: "/adm/announcements?pickdate=yes&formname=$formname&element=$dname&month="+
  461: document.$formname.$dname\_month.value+"&year="+
  462: document.$formname.$dname\_year.value,
  463:              "LONCAPAcal",
  464:               "height=350,width=350,scrollbars=yes,resizable=yes,menubar=no");
  465:         }
  466: 
  467:     }
  468: </script>
  469: ENDJS
  470:     $result .= '  <span class="LC_nobreak">';
  471:     my $monthselector = qq{<select name="$dname\_month" $special $state onchange="javascript:$dname\_checkday()" >};
  472:     # Month
  473:     my @Months = qw/January February  March     April   May      June 
  474:                     July    August    September October November December/;
  475:     # Pad @Months with a bogus value to make indexing easier
  476:     unshift(@Months,'If you can read this an error occurred');
  477:     if ($includeempty) { $monthselector.="<option value=''></option>"; }
  478:     for(my $m = 1;$m <=$#Months;$m++) {
  479:         $monthselector .= qq{      <option value="$m" };
  480:         $monthselector .= "selected " if ($m-1 eq $month);
  481:         $monthselector .= '> '.&mt($Months[$m]).' </option>';
  482:     }
  483:     $monthselector.= '  </select>';
  484:     # Day
  485:     my $dayselector = qq{<input type="text" name="$dname\_day" $state value="$mday" size="3" $special onchange="javascript:$dname\_checkday()" />};
  486:     # Year
  487:     my $yearselector = qq{<input type="year" name="$dname\_year" $state value="$year" size="5" $special onchange="javascript:$dname\_checkday()" />};
  488:     #
  489:     my $hourselector = qq{<select name="$dname\_hour" $special $state >};
  490:     if ($includeempty) { 
  491:         $hourselector.=qq{<option value=''></option>};
  492:     }
  493:     for (my $h = 0;$h<24;$h++) {
  494:         $hourselector .= qq{<option value="$h" };
  495:         $hourselector .= "selected " if (defined($hour) && $hour == $h);
  496:         $hourselector .= ">";
  497:         my $timest='';
  498:         if ($h == 0) {
  499:             $timest .= "12 am";
  500:         } elsif($h == 12) {
  501:             $timest .= "12 noon";
  502:         } elsif($h < 12) {
  503:             $timest .= "$h am";
  504:         } else {
  505:             $timest .= $h-12 ." pm";
  506:         }
  507:         $timest=&mt($timest);
  508:         $hourselector .= $timest." </option>\n";
  509:     }
  510:     $hourselector .= "  </select>\n";
  511:     my $minuteselector = qq{<input type="text" name="$dname\_minute" $special $state value="$min" size="3" />};
  512:     my $secondselector= qq{<input type="text" name="$dname\_second" $special $state value="$sec" size="3" />};
  513:     my $cal_link;
  514:     if (!$nolink) {
  515:         $cal_link = qq{<a href="javascript:$dname\_opencalendar()">};
  516:     }
  517:     #
  518:     my $tzone = ' '.$tzname.' ';
  519:     if ($no_hh_mm_ss) {
  520:         $result .= &mt('[_1] [_2] [_3] ',
  521:                        $monthselector,$dayselector,$yearselector).
  522:                    $tzone;
  523:         if (!$nolink) {
  524:             $result .= &mt('[_1]Select Date[_2]',$cal_link,'</a>');
  525:         }
  526:     } else {
  527:         $result .= &mt('[_1] [_2] [_3] [_4] [_5]m [_6]s ',
  528:                       $monthselector,$dayselector,$yearselector,
  529:                       $hourselector,$minuteselector,$secondselector).
  530:                    $tzone;
  531:         if (!$nolink) {
  532:             $result .= &mt('[_1]Select Date[_2]',$cal_link,'</a>');
  533:         }
  534:     }
  535:     $result .= "</span>\n<!-- end $dname date setting form -->\n";
  536:     return $result;
  537: }
  538: 
  539: sub get_timedates {
  540:     my ($epoch) = @_;
  541:     my $dt = DateTime->from_epoch(epoch => $epoch)
  542:                      ->set_time_zone(&Apache::lonlocal::gettimezone());
  543:     my $tzname = $dt->time_zone_short_name();
  544:     my $sec = $dt->second;
  545:     my $min = $dt->minute;
  546:     my $hour = $dt->hour;
  547:     my $mday = $dt->day;
  548:     my $month = $dt->month;
  549:     if ($month) {
  550:         $month --;
  551:     }
  552:     my $year = $dt->year;
  553:     return ($tzname,$sec,$min,$hour,$mday,$month,$year);
  554: }
  555: 
  556: sub build_url {
  557:     my ($base, $fields)=@_;
  558:     my $url;
  559:     $url = $base.'?';
  560:     foreach my $key (keys(%$fields)) {
  561:         $url.=&escape($key).'='.&escape($$fields{$key}).'&amp;';
  562:     }
  563:     $url =~ s/&amp;$//;
  564:     return $url;
  565: }
  566: 
  567: 
  568: ##############################################
  569: ##############################################
  570: 
  571: =pod
  572: 
  573: =item &get_date_from_form
  574: 
  575: get_date_from_form retrieves the date specified in an &date_setter form.
  576: 
  577: Inputs:
  578: 
  579: =over 4
  580: 
  581: =item $dname
  582: 
  583: The name passed to &datesetter, which prefixes the form elements.
  584: 
  585: =item $defaulttime
  586: 
  587: The unix time to use as the default in case of poor inputs.
  588: 
  589: =back
  590: 
  591: Returns: Unix time represented in the form.
  592: 
  593: =cut
  594: 
  595: ##############################################
  596: ##############################################
  597: sub get_date_from_form {
  598:     my ($dname) = @_;
  599:     my ($sec,$min,$hour,$day,$month,$year);
  600:     #
  601:     if (defined($env{'form.'.$dname.'_second'})) {
  602:         my $tmpsec = $env{'form.'.$dname.'_second'};
  603:         if (($tmpsec =~ /^\d+$/) && ($tmpsec >= 0) && ($tmpsec < 60)) {
  604:             $sec = $tmpsec;
  605:         }
  606: 	if (!defined($tmpsec) || $tmpsec eq '') { $sec = 0; }
  607:     } else {
  608:         $sec = 0;
  609:     }
  610:     if (defined($env{'form.'.$dname.'_minute'})) {
  611:         my $tmpmin = $env{'form.'.$dname.'_minute'};
  612:         if (($tmpmin =~ /^\d+$/) && ($tmpmin >= 0) && ($tmpmin < 60)) {
  613:             $min = $tmpmin;
  614:         }
  615: 	if (!defined($tmpmin) || $tmpmin eq '') { $min = 0; }
  616:     } else {
  617:         $min = 0;
  618:     }
  619:     if (defined($env{'form.'.$dname.'_hour'})) {
  620:         my $tmphour = $env{'form.'.$dname.'_hour'};
  621:         if (($tmphour =~ /^\d+$/) && ($tmphour >= 0) && ($tmphour < 24)) {
  622:             $hour = $tmphour;
  623:         }
  624:     } else {
  625:         $hour = 0;
  626:     }
  627:     if (defined($env{'form.'.$dname.'_day'})) {
  628:         my $tmpday = $env{'form.'.$dname.'_day'};
  629:         if (($tmpday =~ /^\d+$/) && ($tmpday > 0) && ($tmpday < 32)) {
  630:             $day = $tmpday;
  631:         }
  632:     }
  633:     if (defined($env{'form.'.$dname.'_month'})) {
  634:         my $tmpmonth = $env{'form.'.$dname.'_month'};
  635:         if (($tmpmonth =~ /^\d+$/) && ($tmpmonth > 0) && ($tmpmonth < 13)) {
  636:             $month = $tmpmonth;
  637:         }
  638:     }
  639:     if (defined($env{'form.'.$dname.'_year'})) {
  640:         my $tmpyear = $env{'form.'.$dname.'_year'};
  641:         if (($tmpyear =~ /^\d+$/) && ($tmpyear >= 1970)) {
  642:             $year = $tmpyear;
  643:         }
  644:     }
  645:     if (($year<1970) || ($year>2037)) { return undef; }
  646:     if (defined($sec) && defined($min)   && defined($hour) &&
  647:         defined($day) && defined($month) && defined($year)) {
  648:         my $timezone = &Apache::lonlocal::gettimezone();
  649:         my $dt = DateTime->new( year   => $year,
  650:                                 month  => $month,
  651:                                 day    => $day,
  652:                                 hour   => $hour,
  653:                                 minute => $min,
  654:                                 second => $sec,
  655:                                 time_zone => $timezone,
  656:                               );
  657:         my $epoch_time  = $dt->epoch;
  658:         if ($epoch_time ne '') {
  659:             return $epoch_time;
  660:         } else {
  661:             return undef;
  662:         }
  663:     } else {
  664:         return undef;
  665:     }
  666: }
  667: 
  668: ##############################################
  669: ##############################################
  670: 
  671: =pod
  672: 
  673: =item &pjump_javascript_definition()
  674: 
  675: Returns javascript defining the 'pjump' function, which opens up a
  676: parameter setting wizard.
  677: 
  678: =cut
  679: 
  680: ##############################################
  681: ##############################################
  682: sub pjump_javascript_definition {
  683:     my $Str = <<END;
  684:     function pjump(type,dis,value,marker,ret,call,hour,min,sec) {
  685:         parmwin=window.open("/adm/rat/parameter.html?type="+escape(type)
  686:                  +"&value="+escape(value)+"&marker="+escape(marker)
  687:                  +"&return="+escape(ret)
  688:                  +"&call="+escape(call)+"&name="+escape(dis)
  689:                  +"&defhour="+escape(hour)+"&defmin="+escape(min)
  690:                  +"&defsec="+escape(sec),"LONCAPAparms",
  691:                  "height=350,width=350,scrollbars=no,menubar=no");
  692:     }
  693: END
  694:     return $Str;
  695: }
  696: 
  697: ##############################################
  698: ##############################################
  699: 
  700: =pod
  701: 
  702: =item &javascript_nothing()
  703: 
  704: Return an appropriate null for the users browser.  This is used
  705: as the first arguement for window.open calls when you want a blank
  706: window that you can then write to.
  707: 
  708: =cut
  709: 
  710: ##############################################
  711: ##############################################
  712: sub javascript_nothing {
  713:     # mozilla and other browsers work with "''", but IE on mac does not.
  714:     my $nothing = "''";
  715:     my $user_browser;
  716:     my $user_os;
  717:     $user_browser = $env{'browser.type'} if (exists($env{'browser.type'}));
  718:     $user_os      = $env{'browser.os'}   if (exists($env{'browser.os'}));
  719:     if (! defined($user_browser) || ! defined($user_os)) {
  720:         (undef,$user_browser,undef,undef,undef,$user_os) = 
  721:                            &Apache::loncommon::decode_user_agent();
  722:     }
  723:     if ($user_browser eq 'explorer' && $user_os =~ 'mac') {
  724:         $nothing = "'javascript:void(0);'";
  725:     }
  726:     return $nothing;
  727: }
  728: 
  729: ##############################################
  730: ##############################################
  731: sub javascript_docopen {
  732:     my ($mimetype) = @_;
  733:     $mimetype ||= 'text/html';
  734:     # safari does not understand document.open() and loads "text/html"
  735:     my $nothing = "''";
  736:     my $user_browser;
  737:     my $user_os;
  738:     $user_browser = $env{'browser.type'} if (exists($env{'browser.type'}));
  739:     $user_os      = $env{'browser.os'}   if (exists($env{'browser.os'}));
  740:     if (! defined($user_browser) || ! defined($user_os)) {
  741:         (undef,$user_browser,undef,undef,undef,$user_os) = 
  742:                            &Apache::loncommon::decode_user_agent();
  743:     }
  744:     if ($user_browser eq 'safari' && $user_os =~ 'mac') {
  745:         $nothing = "document.clear()";
  746:     } else {
  747: 	$nothing = "document.open('$mimetype','replace')";
  748:     }
  749:     return $nothing;
  750: }
  751: 
  752: 
  753: ##############################################
  754: ##############################################
  755: 
  756: =pod
  757: 
  758: =item &StatusOptions()
  759: 
  760: Returns html for a selection box which allows the user to choose the
  761: enrollment status of students.  The selection box name is 'Status'.
  762: 
  763: Inputs:
  764: 
  765: $status: the currently selected status.  If undefined the value of
  766: $env{'form.Status'} is taken.  If that is undefined, a value of 'Active'
  767: is used.
  768: 
  769: $formname: The name of the form.  If defined the onchange attribute of
  770: the selection box is set to document.$formname.submit().
  771: 
  772: $size: the size (number of lines) of the selection box.
  773: 
  774: $onchange: javascript to use when the value is changed.  Enclosed in 
  775: double quotes, ""s, not single quotes.
  776: 
  777: Returns: a perl string as described.
  778: 
  779: =cut
  780: 
  781: ##############################################
  782: ##############################################
  783: sub StatusOptions {
  784:     my ($status, $formName,$size,$onchange,$mult)=@_;
  785:     $size = 1 if (!defined($size));
  786:     if (! defined($status)) {
  787:         $status = 'Active';
  788:         $status = $env{'form.Status'} if (exists($env{'form.Status'}));
  789:     }
  790: 
  791:     my $Str = '';
  792:     $Str .= '<select name="Status"';
  793:     if (defined($mult)){
  794:         $Str .= ' multiple="multiple" ';
  795:     }
  796:     if(defined($formName) && $formName ne '' && ! defined($onchange)) {
  797:         $Str .= ' onchange="document.'.$formName.'.submit()"';
  798:     }
  799:     if (defined($onchange)) {
  800:         $Str .= ' onchange="'.$onchange.'"';
  801:     }
  802:     $Str .= ' size="'.$size.'" ';
  803:     $Str .= '>'."\n";
  804:     foreach my $type (['Active',  &mt('Currently Has Access')],
  805: 		      ['Future',  &mt('Will Have Future Access')],
  806: 		      ['Expired', &mt('Previously Had Access')],
  807: 		      ['Any',     &mt('Any Access Status')]) {
  808: 	my ($name,$label) = @$type;
  809: 	$Str .= '<option value="'.$name.'" ';
  810: 	if ($status eq $name) {
  811: 	    $Str .= 'selected="selected" ';
  812: 	}
  813: 	$Str .= '>'.$label.'</option>'."\n";
  814:     }
  815: 
  816:     $Str .= '</select>'."\n";
  817: }
  818: 
  819: ########################################################
  820: ########################################################
  821: 
  822: =pod
  823: 
  824: =item Progess Window Handling Routines
  825: 
  826: These routines handle the creation, update, increment, and closure of 
  827: progress windows.  The progress window reports to the user the number
  828: of items completed and an estimate of the time required to complete the rest.
  829: 
  830: =over 4
  831: 
  832: 
  833: =item &Create_PrgWin
  834: 
  835: Writes javascript to the client to open a progress window and returns a
  836: data structure used for bookkeeping.
  837: 
  838: Inputs
  839: 
  840: =over 4
  841: 
  842: =item $r Apache request
  843: 
  844: =item $title The title of the progress window
  845: 
  846: =item $heading A description (usually 1 line) of the process being initiated.
  847: 
  848: =item $number_to_do The total number of items being processed.
  849: 
  850: =item $type Either 'popup' or 'inline' (popup is assumed if nothing is
  851:        specified)
  852: 
  853: =item $width Specify the width in charaters of the input field.
  854: 
  855: =item $formname Only useful in the inline case, if a form already exists, this needs to be used and specfiy the name of the form, otherwise the Progress line will be created in a new form of it's own
  856: 
  857: =item $inputname Only useful in the inline case, if a form and an input of type text exists, use this to specify the name of the input field 
  858: 
  859: =back
  860: 
  861: Returns a hash containing the progress state data structure.
  862: 
  863: 
  864: =item &Update_PrgWin
  865: 
  866: Updates the text in the progress indicator.  Does not increment the count.
  867: See &Increment_PrgWin.
  868: 
  869: Inputs:
  870: 
  871: =over 4
  872: 
  873: =item $r Apache request
  874: 
  875: =item $prog_state Pointer to the data structure returned by &Create_PrgWin
  876: 
  877: =item $displaystring The string to write to the status indicator
  878: 
  879: =back
  880: 
  881: Returns: none
  882: 
  883: 
  884: =item Increment_PrgWin
  885: 
  886: Increment the count of items completed for the progress window by 1.  
  887: 
  888: Inputs:
  889: 
  890: =over 4
  891: 
  892: =item $r Apache request
  893: 
  894: =item $prog_state Pointer to the data structure returned by Create_PrgWin
  895: 
  896: =item $extraInfo A description of the items being iterated over.  Typically
  897: 'student'.
  898: 
  899: =back
  900: 
  901: Returns: none
  902: 
  903: 
  904: =item Close_PrgWin
  905: 
  906: Closes the progress window.
  907: 
  908: Inputs:
  909: 
  910: =over 4 
  911: 
  912: =item $r Apache request
  913: 
  914: =item $prog_state Pointer to the data structure returned by Create_PrgWin
  915: 
  916: =back
  917: 
  918: Returns: none
  919: 
  920: =back
  921: 
  922: =cut
  923: 
  924: ########################################################
  925: ########################################################
  926: 
  927: my $uniq=0;
  928: sub get_uniq_name {
  929:     $uniq++;
  930:     return 'uniquename'.$uniq;
  931: }
  932: 
  933: # Create progress
  934: sub Create_PrgWin {
  935:     my ($r, $title, $heading, $number_to_do,$type,$width,$formname,
  936: 	$inputname)=@_;
  937:     if (!defined($type)) { $type='popup'; }
  938:     if (!defined($width)) { $width=55; }
  939:     my %prog_state;
  940:     $prog_state{'type'}=$type;
  941:     if ($type eq 'popup') {
  942: 	$prog_state{'window'}='popwin';
  943: 	my $start_page =
  944: 	    &Apache::loncommon::start_page($title,undef,
  945: 					   {'only_body' => 1,
  946: 					    'bgcolor'   => '#88DDFF',
  947: 					    'js_ready'  => 1});
  948: 	my $end_page = &Apache::loncommon::end_page({'js_ready'  => 1});
  949: 
  950: 	#the whole function called through timeout is due to issues
  951: 	#in mozilla Read BUG #2665 if you want to know the whole story
  952: 	&r_print($r,'<script type="text/javascript">'.
  953:         "var popwin;
  954:          function openpopwin () {
  955:          popwin=open(\'\',\'popwin\',\'width=400,height=100\');".
  956:         "popwin.document.writeln(\'".$start_page.
  957:               "<h4>".&mt("$heading")."<\/h4>".
  958:               "<form action= \"\" name=\"popremain\" method=\"post\">".
  959:               '<input type="text" size="'.$width.'" name="remaining" value="'.
  960: 	      &mt('Starting').'" /><\\/form>'.$end_page.
  961:               "\');".
  962:         "popwin.document.close();}".
  963:         "\nwindow.setTimeout(openpopwin,0)</script>");
  964: 	$prog_state{'formname'}='popremain';
  965: 	$prog_state{'inputname'}="remaining";
  966:     } elsif ($type eq 'inline') {
  967: 	$prog_state{'window'}='window';
  968: 	if (!$formname) {
  969: 	    $prog_state{'formname'}=&get_uniq_name();
  970: 	    &r_print($r,'<form action="" name="'.$prog_state{'formname'}.'">');
  971: 	} else {
  972: 	    $prog_state{'formname'}=$formname;
  973: 	}
  974: 	if (!$inputname) {
  975: 	    $prog_state{'inputname'}=&get_uniq_name();
  976: 	    &r_print($r,&mt("$heading [_1]",' <input type="text" name="'.$prog_state{'inputname'}.'" size="'.$width.'" />'));
  977: 	} else {
  978: 	    $prog_state{'inputname'}=$inputname;
  979: 	    
  980: 	}
  981: 	if (!$formname) { &r_print($r,'</form>'); }
  982: 	&Update_PrgWin($r,\%prog_state,&mt('Starting'));
  983:     }
  984: 
  985:     $prog_state{'done'}=0;
  986:     $prog_state{'firststart'}=&Time::HiRes::time();
  987:     $prog_state{'laststart'}=&Time::HiRes::time();
  988:     $prog_state{'max'}=$number_to_do;
  989:     
  990:     return %prog_state;
  991: }
  992: 
  993: # update progress
  994: sub Update_PrgWin {
  995:     my ($r,$prog_state,$displayString)=@_;
  996:     &r_print($r,'<script type="text/javascript">'.$$prog_state{'window'}.'.document.'.
  997: 	     $$prog_state{'formname'}.'.'.
  998: 	     $$prog_state{'inputname'}.'.value="'.
  999: 	     $displayString.'";</script>');
 1000:     $$prog_state{'laststart'}=&Time::HiRes::time();
 1001: }
 1002: 
 1003: # increment progress state
 1004: sub Increment_PrgWin {
 1005:     my ($r,$prog_state,$extraInfo)=@_;
 1006:     $$prog_state{'done'}++;
 1007:     my $time_est= (&Time::HiRes::time() - $$prog_state{'firststart'})/
 1008:         $$prog_state{'done'} *
 1009: 	($$prog_state{'max'}-$$prog_state{'done'});
 1010:     $time_est = int($time_est);
 1011:     #
 1012:     my $min = int($time_est/60);
 1013:     my $sec = $time_est % 60;
 1014:     # 
 1015:     my $str;
 1016:     if ($min == 0 && $sec > 1) {
 1017:         $str = '[_2] seconds';
 1018:     } elsif ($min == 1 && $sec > 1) {
 1019:         $str = '1 minute [_2] seconds';
 1020:     } elsif ($min == 1 && $sec < 2) {
 1021:         $str = '1 minute';
 1022:     } elsif ($min < 10 && $sec > 1) {
 1023:         $str = '[_1] minutes, [_2] seconds';
 1024:     } elsif ($min >= 10 || $sec < 2) {
 1025:         $str = '[_1] minutes';
 1026:     }
 1027:     $time_est = &mt($str,$min,$sec);
 1028:     #
 1029:     my $lasttime = &Time::HiRes::time()-$$prog_state{'laststart'};
 1030:     if ($lasttime > 9) {
 1031:         $lasttime = int($lasttime);
 1032:     } elsif ($lasttime < 0.01) {
 1033:         $lasttime = 0;
 1034:     } else {
 1035:         $lasttime = sprintf("%3.2f",$lasttime);
 1036:     }
 1037:     if ($lasttime == 1) {
 1038:         $lasttime = '('.$lasttime.' '.&mt('second for').' '.$extraInfo.')';
 1039:     } else {
 1040:         $lasttime = '('.$lasttime.' '.&mt('seconds for').' '.$extraInfo.')';
 1041:     }
 1042:     #
 1043:     my $user_browser = $env{'browser.type'} if (exists($env{'browser.type'}));
 1044:     my $user_os      = $env{'browser.os'}   if (exists($env{'browser.os'}));
 1045:     if (! defined($user_browser) || ! defined($user_os)) {
 1046:         (undef,$user_browser,undef,undef,undef,$user_os) = 
 1047:                            &Apache::loncommon::decode_user_agent();
 1048:     }
 1049:     if ($user_browser eq 'explorer' && $user_os =~ 'mac') {
 1050:         $lasttime = '';
 1051:     }
 1052:     &r_print($r,'<script>'.$$prog_state{'window'}.'.document.'.
 1053: 	     $$prog_state{'formname'}.'.'.
 1054: 	     $$prog_state{'inputname'}.'.value="'.
 1055: 	     $$prog_state{'done'}.'/'.$$prog_state{'max'}.
 1056: 	     ': '.$time_est.' '.&mt('remaining').' '.$lasttime.'";'.'</script>');
 1057:     $$prog_state{'laststart'}=&Time::HiRes::time();
 1058: }
 1059: 
 1060: # close Progress Line
 1061: sub Close_PrgWin {
 1062:     my ($r,$prog_state)=@_;
 1063:     if ($$prog_state{'type'} eq 'popup') {
 1064: 	&r_print($r,'<script>popwin.close()</script>'."\n");
 1065:     } elsif ($$prog_state{'type'} eq 'inline') {
 1066: 	&Update_PrgWin($r,$prog_state,&mt('Done'));
 1067:     }
 1068:     undef(%$prog_state);
 1069: }
 1070: 
 1071: sub r_print {
 1072:     my ($r,$to_print)=@_;
 1073:     if ($r) {
 1074: 	$r->print($to_print);
 1075: 	$r->rflush();
 1076:     } else {
 1077: 	print($to_print);
 1078:     }
 1079: }
 1080: 
 1081: # ------------------------------------------------------- Puts directory header
 1082: 
 1083: sub crumbs {
 1084:     my ($uri,$target,$prefix,$form,$size,$noformat,$skiplast)=@_;
 1085:     if (! defined($size)) {
 1086:         $size = '+2';
 1087:     }
 1088:     if ($target) {
 1089:         $target = ' target="'.
 1090:                   &Apache::loncommon::escape_single($target).'"';
 1091:     }
 1092:     my $output='';
 1093:     unless ($noformat) { $output.='<br /><tt><b>'; }
 1094:     $output.='<font size="'.$size.'">'.$prefix.'/';
 1095:     if ($env{'user.adv'}) {
 1096: 	my $path=$prefix.'/';
 1097: 	foreach my $dir (split('/',$uri)) {
 1098:             if (! $dir) { next; }
 1099:             $path .= $dir;
 1100: 	    if ($path eq $uri) {
 1101: 		if ($skiplast) {
 1102: 		    $output.=$dir;
 1103:                     last;
 1104: 		} 
 1105: 	    } else {
 1106: 		$path.='/'; 
 1107: 	    }	    
 1108:             my $href_path = &HTML::Entities::encode($path,'<>&"');
 1109: 	    &Apache::loncommon::inhibit_menu_check(\$href_path);
 1110: 	    if ($form) {
 1111: 	        my $href = 'javascript:'.$form.".action='".$href_path."';".$form.'.submit();';
 1112: 	        $output.=qq{<a href="$href" $target>$dir</a>/};
 1113: 	    } else {
 1114: 	        $output.=qq{<a href="$href_path" $target>$dir</a>/};
 1115: 	    }
 1116: 	}
 1117:     } else {
 1118: 	foreach my $dir (split('/',$uri)) {
 1119:             if (! $dir) { next; }
 1120: 	    $output.=$dir.'/';
 1121: 	}
 1122:     }
 1123:     if ($uri !~ m|/$|) { $output=~s|/$||; }
 1124:     return $output.'</font>'.($noformat?'':'</b></tt><br />');
 1125: }
 1126: 
 1127: # --------------------- A function that generates a window for the spellchecker
 1128: 
 1129: sub spellheader {
 1130:     my $start_page=
 1131: 	&Apache::loncommon::start_page('Speller Suggestions',undef,
 1132: 				       {'only_body'   => 1,
 1133: 					'js_ready'    => 1,
 1134: 					'bgcolor'     => '#DDDDDD',
 1135: 				        'add_entries' => {
 1136: 					    'onload' => 
 1137:                                                'document.forms.spellcheckform.submit()',
 1138:                                              }
 1139: 				        });
 1140:     my $end_page=
 1141: 	&Apache::loncommon::end_page({'js_ready'  => 1}); 
 1142: 
 1143:     my $nothing=&javascript_nothing();
 1144:     return (<<ENDCHECK);
 1145: <script type="text/javascript"> 
 1146: //<!-- BEGIN LON-CAPA Internal
 1147: var checkwin;
 1148: 
 1149: function spellcheckerwindow(string) {
 1150:     var esc_string = string.replace(/\"/g,'&quot;');
 1151:     checkwin=window.open($nothing,'spellcheckwin','height=320,width=280,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
 1152:     checkwin.document.writeln('$start_page<form name="spellcheckform" action="/adm/spellcheck" method="post"><input type="hidden" name="text" value="'+esc_string+'" /><\\/form>$end_page');
 1153:     checkwin.document.close();
 1154: }
 1155: // END LON-CAPA Internal -->
 1156: </script>
 1157: ENDCHECK
 1158: }
 1159: 
 1160: # ---------------------------------- Generate link to spell checker for a field
 1161: 
 1162: sub spelllink {
 1163:     my ($form,$field)=@_;
 1164:     my $linktext=&mt('Check Spelling');
 1165:     return (<<ENDLINK);
 1166: <a href="javascript:if (typeof(document.$form.onsubmit)!='undefined') { if (document.$form.onsubmit!=null) { document.$form.onsubmit();}};spellcheckerwindow(this.document.forms.$form.$field.value);">$linktext</a>
 1167: ENDLINK
 1168: }
 1169: 
 1170: # ------------------------------------------------- Output headers for HTMLArea
 1171: 
 1172: {
 1173:     my @htmlareafields;
 1174:     sub init_htmlareafields {
 1175: 	undef(@htmlareafields);
 1176:     }
 1177:     
 1178:     sub add_htmlareafields {
 1179: 	my (@newfields) = @_;
 1180: 	push(@htmlareafields,@newfields);
 1181:     }
 1182: 
 1183:     sub get_htmlareafields {
 1184: 	return @htmlareafields;
 1185:     }
 1186: }
 1187: 
 1188: sub htmlareaheaders {
 1189:     return if (&htmlareablocked());
 1190:     return if (!&htmlareabrowser());
 1191:     return (<<ENDHEADERS);
 1192: <script type="text/javascript" src="/fckeditor/fckeditor.js"></script>
 1193: ENDHEADERS
 1194: }
 1195: 
 1196: # ----------------------------------------------------------------- Preferences
 1197: 
 1198: sub disablelink {
 1199:     my @fields=@_;
 1200:     if (defined($#fields)) {
 1201: 	unless ($#fields>=0) { return ''; }
 1202:     }
 1203:     return '<a href="'.&HTML::Entities::encode('/adm/preferences?action=set_wysiwyg&wysiwyg=off&returnurl=','<>&"').&escape($ENV{'REQUEST_URI'}).'">'.&mt('Disable WYSIWYG Editor').'</a>';
 1204: }
 1205: 
 1206: sub enablelink {
 1207:     my @fields=@_;
 1208:     if (defined($#fields)) {
 1209: 	unless ($#fields>=0) { return ''; }
 1210:     }
 1211:     return '<a href="'.&HTML::Entities::encode('/adm/preferences?action=set_wysiwyg&wysiwyg=on&returnurl=','<>&"').&escape($ENV{'REQUEST_URI'}).'">'.&mt('Enable WYSIWYG Editor').'</a>';
 1212: }
 1213: 
 1214: # ------------------------------------------------- lang to use in html editor
 1215: sub htmlarea_lang {
 1216:     my $lang='en';
 1217:     if (&mt('htmlarea_lang') ne 'htmlarea_lang') {
 1218: 	$lang=&mt('htmlarea_lang');
 1219:     }
 1220:     return $lang;
 1221: }
 1222: 
 1223: # ----------------------------------------- Script to activate only some fields
 1224: 
 1225: sub htmlareaselectactive {
 1226:     my @fields=@_;
 1227:     unless (&htmlareabrowser()) { return ''; }
 1228:     if (&htmlareablocked()) { return '<br />'.&enablelink(@fields); }
 1229:     my $output='<script type="text/javascript" defer="1">';
 1230:     my $lang = &htmlarea_lang();
 1231:     foreach my $field (@fields) {
 1232: 	$output.="
 1233: {
 1234:     var oFCKeditor = new FCKeditor('$field');
 1235:     oFCKeditor.Config['CustomConfigurationsPath'] = 
 1236: 	'/fckeditor/loncapaconfig.js';    
 1237:     oFCKeditor.ReplaceTextarea();
 1238:     oFCKeditor.Config['AutoDetectLanguage'] = false;
 1239:     oFCKeditor.Config['DefaultLanguage'] = '$lang';
 1240: }";
 1241:     }
 1242:     $output.="\nwindow.status='Activated Editfields';\n</script><br />".
 1243: 	&disablelink(@fields);
 1244:     return $output;
 1245: }
 1246: 
 1247: # --------------------------------------------------------------------- Blocked
 1248: 
 1249: sub htmlareablocked {
 1250:     unless ($env{'environment.wysiwygeditor'} eq 'on') { return 1; }
 1251:     return 0;
 1252: }
 1253: 
 1254: # ---------------------------------------- Browser capable of running HTMLArea?
 1255: 
 1256: sub htmlareabrowser {
 1257:     return 1;
 1258: }
 1259: 
 1260: ############################################################
 1261: ############################################################
 1262: 
 1263: =pod
 1264: 
 1265: =item breadcrumbs
 1266: 
 1267: Compiles the previously registered breadcrumbs into an series of links.
 1268: FAQ and BUG links will be placed on the left side of the table if they
 1269: are defined for the last registered breadcrumb.  
 1270: Additionally supports a 'component', which will be displayed on the
 1271: right side of the table (without a link).
 1272: A link to help for the component will be included if one is specified.
 1273: 
 1274: All inputs can be undef without problems.
 1275: 
 1276: Inputs: $component (the large text on the right side of the table),
 1277:         $component_help
 1278:         $menulink (boolean, controls whether to include a link to /adm/menu)
 1279:         $helplink (if 'nohelp' don't include the orange help link)
 1280:         $css_class (optional name for the class to apply to the table for CSS)
 1281: Returns a string containing breadcrumbs for the current page.
 1282: 
 1283: =item clear_breadcrumbs
 1284: 
 1285: Clears the previously stored breadcrumbs.
 1286: 
 1287: =item add_breadcrumb
 1288: 
 1289: Pushes a breadcrumb on the stack of crumbs.
 1290: 
 1291: input: $breadcrumb, a hash reference.  The keys 'href','title', and 'text'
 1292: are required.  If present the keys 'faq' and 'bug' will be used to provide
 1293: links to the FAQ and bug sites. If the key 'no_mt' is present the 'title' 
 1294: and 'text' values won't be sent through &mt()
 1295: 
 1296: returns: nothing    
 1297: 
 1298: =cut
 1299: 
 1300: ############################################################
 1301: ############################################################
 1302: {
 1303:     my @Crumbs;
 1304:     
 1305:     sub breadcrumbs {
 1306:         my ($component,$component_help,$menulink,$helplink,$css_class) = @_;
 1307:         #
 1308: 	$css_class ||= 'LC_breadcrumbs';
 1309:         my $Str = "\n".'<table class="'.$css_class.'"><tr><td>';
 1310:         #
 1311:         # Make the faq and bug data cascade
 1312:         my $faq = '';
 1313:         my $bug = '';
 1314: 	my $help='';
 1315: 	# Crumb Symbol
 1316: 	my $crumbsymbol = ' &#x25b6; ';
 1317:         # The last breadcrumb does not have a link, so handle it separately.
 1318:         my $last = pop(@Crumbs);
 1319:         #
 1320:         # The first one should be the course or a menu link
 1321: 	if (!defined($menulink)) { $menulink=1; }
 1322:         if ($menulink) {
 1323:             my $description = 'Menu';
 1324:             my $no_mt_descr = 0;
 1325:             if (exists($env{'request.course.id'}) && 
 1326:                 $env{'request.course.id'} ne '') {
 1327:                 $description = 
 1328:                     $env{'course.'.$env{'request.course.id'}.'.description'};
 1329:                 $no_mt_descr = 1;
 1330:             }
 1331:             unshift(@Crumbs,{
 1332:                     href   =>'/adm/menu',
 1333:                     title  =>'Go to main menu',
 1334:                     target =>'_top',
 1335:                     text   =>$description,
 1336:                     no_mt  =>$no_mt_descr,
 1337:                 });
 1338:         }
 1339:         my $links .= 
 1340:             join($crumbsymbol,
 1341:                  map {
 1342:                      $faq = $_->{'faq'} if (exists($_->{'faq'}));
 1343:                      $bug = $_->{'bug'} if (exists($_->{'bug'}));
 1344:                      $help = $_->{'help'} if (exists($_->{'help'}));
 1345:                      my $result = '<a href="'.$_->{'href'}.'" ';
 1346:                      if (defined($_->{'target'}) && $_->{'target'} ne '') {
 1347:                          $result .= 'target="'.$_->{'target'}.'" ';
 1348:                      }
 1349: 		     if ($_->{'no_mt'}) {
 1350: 			 $result .='title="'.$_->{'title'}.'">'.
 1351: 			     $_->{'text'}.'</a>';
 1352: 		     } else {
 1353: 			 $result .='title="'.&mt($_->{'title'}).'">'.
 1354: 			     &mt($_->{'text'}).'</a>';
 1355: 		     }
 1356:                      $result;
 1357:                      } @Crumbs
 1358:                  );
 1359:         $links .= $crumbsymbol if ($links ne '');
 1360: 	if ($last->{'no_mt'}) {
 1361: 	    $links .= '<b>'.$last->{'text'}.'</b>';
 1362: 	} else {
 1363: 	    $links .= '<b>'.&mt($last->{'text'}).'</b>';
 1364: 	}
 1365:         #
 1366:         my $icons = '';
 1367:         $faq = $last->{'faq'} if (exists($last->{'faq'}));
 1368:         $bug = $last->{'bug'} if (exists($last->{'bug'}));
 1369:         $help = $last->{'help'} if (exists($last->{'help'}));
 1370:         $component_help=($component_help?$component_help:$help);
 1371: #        if ($faq ne '') {
 1372: #            $icons .= &Apache::loncommon::help_open_faq($faq);
 1373: #        }
 1374: #        if ($bug ne '') {
 1375: #            $icons .= &Apache::loncommon::help_open_bug($bug);
 1376: #        }
 1377: 	if ($faq ne '' || $component_help ne '' || $bug ne '') {
 1378: 	    $icons .= &Apache::loncommon::help_open_menu($component,
 1379: 							 $component_help,
 1380: 							 $faq,$bug);
 1381: 	}
 1382:         #
 1383:         $Str .= $links.'</td>';
 1384:         #
 1385:         if (defined($component)) {
 1386:             $Str .= '<td class="'.$css_class.'_component">'.
 1387:                 &mt($component);
 1388: 	    if ($icons ne '') {
 1389: 		$Str .= '&nbsp;'.$icons;
 1390: 	    }
 1391: 	    $Str .= '</td>';
 1392:         }
 1393:         $Str .= '</tr></table>'."\n";
 1394:         #
 1395:         # Return the @Crumbs stack to what we started with
 1396:         push(@Crumbs,$last);
 1397:         shift(@Crumbs);
 1398:         #
 1399:         return $Str;
 1400:     }
 1401: 
 1402:     sub clear_breadcrumbs {
 1403:         undef(@Crumbs);
 1404:     }
 1405: 
 1406:     sub add_breadcrumb {
 1407:         push (@Crumbs,@_);
 1408:     }
 1409: 
 1410: } # End of scope for @Crumbs
 1411: 
 1412: ############################################################
 1413: ############################################################
 1414: 
 1415: # Nested table routines.
 1416: #
 1417: # Routines to display form items in a multi-row table with 2 columns.
 1418: # Uses nested tables to divide form elements into segments.
 1419: # For examples of use see loncom/interface/lonnotify.pm 
 1420: #
 1421: # Can be used in following order: ...
 1422: # &start_pick_box()
 1423: # row1
 1424: # row2
 1425: # row3   ... etc.
 1426: # &submit_row()
 1427: # &end_pick_box()
 1428: #
 1429: # where row1, row 2 etc. are chosen from &role_select_row,&course_select_row,
 1430: # &status_select_row and &email_default_row
 1431: #
 1432: # Can also be used in following order:
 1433: #
 1434: # &start_pick_box()
 1435: # &row_title()
 1436: # &row_closure()
 1437: # &row_title()
 1438: # &row_closure()  ... etc.
 1439: # &submit_row()
 1440: # &end_pick_box()
 1441: #
 1442: # In general a &submit_row() call should proceed the call to &end_pick_box(),
 1443: # as this routine adds a button for form submission.
 1444: # &submit_row() does not require a &row_closure after it.
 1445: #  
 1446: # &start_pick_box() creates a bounding table with 1-pixel wide black border.
 1447: # rows should be placed between calls to &start_pick_box() and &end_pick_box.
 1448: #
 1449: # &row_title() adds a title in the left column for each segment.
 1450: # &row_closure() closes a row with a 1-pixel wide black line.
 1451: #
 1452: # &role_select_row() provides a select box from which to choose 1 or more roles 
 1453: # &course_select_row provides ways of picking groups of courses
 1454: #    radio buttons: all, by category or by picking from a course picker pop-up
 1455: #      note: by category option is only displayed if a domain has implemented 
 1456: #                selection by year, semester, department, number etc.
 1457: #
 1458: # &status_select_row() provides a select box from which to choose 1 or more
 1459: #  access types (current access, prior access, and future access)  
 1460: #
 1461: # &email_default_row() provides text boxes for default e-mail suffixes for
 1462: #  different authentication types in a domain.
 1463: #
 1464: # &row_title() and &row_closure() are called internally by the &*_select_row
 1465: # routines, but can also be called directly to start and end rows which have 
 1466: # needs that are not accommodated by the *_select_row() routines.    
 1467: 
 1468: sub start_pick_box {
 1469:     my ($css_class) = @_;
 1470:     if (defined($css_class)) {
 1471: 	$css_class = 'class="'.$css_class.'"';
 1472:     } else {
 1473: 	$css_class= 'class="LC_pick_box"';
 1474:     }
 1475:     my $output = <<"END";
 1476:  <table $css_class>
 1477: END
 1478:     return $output;
 1479: }
 1480: 
 1481: sub end_pick_box {
 1482:     my $output = <<"END";
 1483:        </table>
 1484: END
 1485:     return $output;
 1486: }
 1487: 
 1488: sub row_headline {
 1489:     my $output = <<"END";
 1490:            <tr><td colspan="2">
 1491: END
 1492:     return $output;
 1493: }
 1494: 
 1495: sub row_title {
 1496:     my ($title,$css_title_class,$css_value_class) = @_;
 1497:     $css_title_class ||= 'LC_pick_box_title';
 1498:     $css_title_class = 'class="'.$css_title_class.'"';
 1499: 
 1500:     $css_value_class ||= 'LC_pick_box_value';
 1501:     $css_value_class = 'class="'.$css_value_class.'"';
 1502: 
 1503:     if ($title ne '') {
 1504:         $title .= ':';
 1505:     }
 1506:     my $output = <<"ENDONE";
 1507:            <tr class="LC_pick_box_row">
 1508:             <td $css_title_class>
 1509: 	       $title
 1510:             </td>
 1511:             <td $css_value_class>
 1512: ENDONE
 1513:     return $output;
 1514: }
 1515: 
 1516: sub row_closure {
 1517:     my ($no_separator) =@_;
 1518:     my $output = <<"ENDTWO";
 1519:             </td>
 1520:            </tr>
 1521: ENDTWO
 1522:     if (!$no_separator) {
 1523:         $output .= <<"ENDTWO";
 1524:            <tr>
 1525:             <td colspan="2" class="LC_pick_box_separator">
 1526:             </td>
 1527:            </tr>
 1528: ENDTWO
 1529:     }
 1530:     return $output;
 1531: }
 1532: 
 1533: sub role_select_row {
 1534:     my ($roles,$title,$css_class,$show_separate_custom,$cdom,$cnum) = @_;
 1535:     my $output;
 1536:     if (defined($title)) {
 1537:         $output = &row_title($title,$css_class);
 1538:     }
 1539:     $output .= qq|
 1540:                                   <select name="roles" multiple >\n|;
 1541:     foreach my $role (@$roles) {
 1542:         my $plrole;
 1543:         if ($role eq 'ow') {
 1544:             $plrole = &mt('Course Owner');
 1545:         } elsif ($role eq 'cr') {
 1546:             if ($show_separate_custom) {
 1547:                 if ($cdom ne '' && $cnum ne '') {
 1548:                     my %course_customroles = &course_custom_roles($cdom,$cnum);
 1549:                     foreach my $crrole (sort(keys(%course_customroles))) {
 1550:                         my ($plcrrole) = ($crrole =~ m|^cr/[^/]+/[^/]+/(.+)$|);
 1551:                         $output .= '  <option value="'.$crrole.'">'.$plcrrole.
 1552:                                    '</option>';
 1553:                     }
 1554:                 }
 1555:             } else {
 1556:                 $plrole = &mt('Custom Role');
 1557:             }
 1558:         } else {
 1559:             $plrole=&Apache::lonnet::plaintext($role);
 1560:         }
 1561:         if (($role ne 'cr') || (!$show_separate_custom)) {
 1562:             $output .= '  <option value="'.$role.'">'.$plrole.'</option>';
 1563:         }
 1564:     }
 1565:     $output .= qq|                </select>\n|;
 1566:     if (defined($title)) {
 1567:         $output .= &row_closure();
 1568:     }
 1569:     return $output;
 1570: }
 1571: 
 1572: sub course_select_row {
 1573:     my ($title,$formname,$totcodes,$codetitles,$idlist,$idlist_titles,
 1574: 	$css_class) = @_;
 1575:     my $output = &row_title($title,$css_class);
 1576:     $output .= &course_selection($formname,$totcodes,$codetitles,$idlist,$idlist_titles);
 1577:     $output .= &row_closure();
 1578:     return $output;
 1579: }
 1580: 
 1581: sub course_selection {
 1582:     my ($formname,$totcodes,$codetitles,$idlist,$idlist_titles) = @_;
 1583:     my $output = qq|
 1584: <script type="text/javascript">
 1585:     function coursePick (formname) {
 1586:         for  (var i=0; i<formname.coursepick.length; i++) {
 1587:             if (formname.coursepick[i].value == 'category') {
 1588:                 courseSet('');
 1589:             }
 1590:             if (!formname.coursepick[i].checked) {
 1591:                 if (formname.coursepick[i].value == 'specific') {
 1592:                     formname.coursetotal.value = 0;
 1593:                     formname.courselist = '';
 1594:                 }
 1595:             }
 1596:         }
 1597:     }
 1598:     function setPick (formname) {
 1599:         for  (var i=0; i<formname.coursepick.length; i++) {
 1600:             if (formname.coursepick[i].value == 'category') {
 1601:                 formname.coursepick[i].checked = true;
 1602:             }
 1603:             formname.coursetotal.value = 0;
 1604:             formname.courselist = '';
 1605:         }
 1606:     }
 1607: </script>
 1608:     |;
 1609:     my $courseform='<b>'.&Apache::loncommon::selectcourse_link
 1610:                      ($formname,'pickcourse','pickdomain','coursedesc','',1).'</b>';
 1611:         $output .= '<input type="radio" name="coursepick" value="all" onclick="coursePick(this.form)" />'.&mt('All courses').'<br />';
 1612:     if ($totcodes > 0) {
 1613:         my $numtitles = @$codetitles;
 1614:         if ($numtitles > 0) {
 1615:             $output .= '<input type="radio" name="coursepick" value="category" onclick="coursePick(this.form);alert('."'".&mt('Choose categories, from left to right')."'".')" />'.&mt('Pick courses by category:').' <br />';
 1616:             $output .= '<table><tr><td>'.$$codetitles[0].'<br />'."\n".
 1617:                '<select name="'.$$codetitles[0].
 1618:                '" onChange="setPick(this.form);courseSet('."'$$codetitles[0]'".')">'."\n".
 1619:                ' <option value="-1" />Select'."\n";
 1620:             my @items = ();
 1621:             my @longitems = ();
 1622:             if ($$idlist{$$codetitles[0]} =~ /","/) {
 1623:                 @items = split(/","/,$$idlist{$$codetitles[0]});
 1624:             } else {
 1625:                 $items[0] = $$idlist{$$codetitles[0]};
 1626:             }
 1627:             if (defined($$idlist_titles{$$codetitles[0]})) {
 1628:                 if ($$idlist_titles{$$codetitles[0]} =~ /","/) {
 1629:                     @longitems = split(/","/,$$idlist_titles{$$codetitles[0]});
 1630:                 } else {
 1631:                     $longitems[0] = $$idlist_titles{$$codetitles[0]};
 1632:                 }
 1633:                 for (my $i=0; $i<@longitems; $i++) {
 1634:                     if ($longitems[$i] eq '') {
 1635:                         $longitems[$i] = $items[$i];
 1636:                     }
 1637:                 }
 1638:             } else {
 1639:                 @longitems = @items;
 1640:             }
 1641:             for (my $i=0; $i<@items; $i++) {
 1642:                 $output .= ' <option value="'.$items[$i].'">'.$longitems[$i].'</option>';
 1643:             }
 1644:             $output .= '</select></td>';
 1645:             for (my $i=1; $i<$numtitles; $i++) {
 1646:                 $output .= '<td>'.$$codetitles[$i].'<br />'."\n".
 1647:                           '<select name="'.$$codetitles[$i].
 1648:                           '" onChange="courseSet('."'$$codetitles[$i]'".')">'."\n".
 1649:                           '<option value="-1">&lt;-Pick '.$$codetitles[$i-1].'</option>'."\n".
 1650:                           '</select>'."\n".
 1651:                           '</td>';
 1652:             }
 1653:             $output .= '</tr></table><br />';
 1654:         }
 1655:     }
 1656:     $output .= '<input type="radio" name="coursepick" value="specific" onclick="coursePick(this.form);opencrsbrowser('."'".$formname."','dccourse','dcdomain','coursedesc','','1'".')" />'.&mt('Pick specific course(s):').' '.$courseform.'&nbsp;&nbsp;<input type="text" value="0" size="4" name="coursetotal" /><input type="hidden" name="courselist" value="" />selected.<br />'."\n";
 1657:     return $output;
 1658: }
 1659: 
 1660: sub status_select_row {
 1661:     my ($types,$title,$css_class) = @_;
 1662:     my $output; 
 1663:     if (defined($title)) {
 1664:         $output = &row_title($title,$css_class,'LC_pick_box_select');
 1665:     }
 1666:     $output .= qq|
 1667:                                     <select name="types" multiple>\n|;
 1668:     foreach my $status_type (sort(keys(%{$types}))) {
 1669:         $output .= '  <option value="'.$status_type.'">'.$$types{$status_type}.'</option>';
 1670:     }
 1671:     $output .= qq|                   </select>\n|; 
 1672:     if (defined($title)) {
 1673:         $output .= &row_closure();
 1674:     }
 1675:     return $output;
 1676: }
 1677: 
 1678: sub email_default_row {
 1679:     my ($authtypes,$title,$descrip,$css_class) = @_;
 1680:     my $output = &row_title($title,$css_class);
 1681:     $output .= $descrip.
 1682: 	&Apache::loncommon::start_data_table().
 1683: 	&Apache::loncommon::start_data_table_header_row().
 1684: 	'<th>'.&mt('Authentication Method').'</th>'.
 1685: 	'<th align="right">'.&mt('Username -> e-mail conversion').'</th>'."\n".
 1686: 	&Apache::loncommon::end_data_table_header_row();
 1687:     my $rownum = 0;
 1688:     foreach my $auth (sort(keys(%{$authtypes}))) {
 1689:         my ($userentry,$size);
 1690:         if ($auth =~ /^krb/) {
 1691:             $userentry = '';
 1692:             $size = 25;
 1693:         } else {
 1694:             $userentry = 'username@';
 1695:             $size = 15;
 1696:         }
 1697:         $output .= &Apache::loncommon::start_data_table_row().
 1698: 	    '<td>  '.$$authtypes{$auth}.'</td>'.
 1699: 	    '<td align="right">'.$userentry.
 1700: 	    '<input type="text" name="'.$auth.'" size="'.$size.'" /></td>'.
 1701: 	    &Apache::loncommon::end_data_table_row();
 1702:     }
 1703:     $output .= &Apache::loncommon::end_data_table();
 1704:     $output .= &row_closure();
 1705:     return $output;
 1706: }
 1707: 
 1708: 
 1709: sub submit_row {
 1710:     my ($title,$cmd,$submit_text,$css_class) = @_;
 1711:     $submit_text = &mt($submit_text);
 1712:     my $output = &row_title($title,$css_class,'LC_pick_box_submit');
 1713:     $output .= qq|
 1714:              <br />
 1715:              <input type="hidden" name="command" value="$cmd" />
 1716:              <input type="submit" value="$submit_text"/> &nbsp;
 1717:              <br /><br />
 1718:             \n|;
 1719:     return $output;
 1720: }
 1721: 
 1722: sub course_custom_roles {
 1723:     my ($cdom,$cnum) = @_;
 1724:     my %returnhash=();
 1725:     my %coursepersonnel=&Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
 1726:     foreach my $person (sort(keys(%coursepersonnel))) {
 1727:         my ($role) = ($person =~ /^([^:]+):/);
 1728:         my ($end,$start) = split(/:/,$coursepersonnel{$person});
 1729:         if ($end == -1 && $start == -1) {
 1730:             next;
 1731:         }
 1732:         if ($role =~ m|^cr/[^/]+/[^/]+/[^/]|) {
 1733:             $returnhash{$role} ++;
 1734:         }
 1735:     }
 1736:     return %returnhash;
 1737: }
 1738: 
 1739: 
 1740: ##############################################
 1741: ##############################################
 1742: 
 1743: # topic_bar
 1744: #
 1745: # Generates a div containing a numbered (static image) followed by a title
 1746: # with a background color defined in the corresponding CSS: LC_topic_bar
 1747: #
 1748: sub topic_bar {
 1749:     my ($imgnum,$title) = @_;
 1750:     return '
 1751: <div class="LC_topic_bar">
 1752:     <img alt="'.&mt('Step [_1]',$imgnum).
 1753:               '"src="/res/adm/pages/bl_step'.$imgnum.'.gif" />&nbsp;
 1754:     <span>'.$title.'</span>
 1755: </div>
 1756: ';
 1757: }
 1758: 
 1759: ##############################################
 1760: ##############################################
 1761:                                                                              
 1762: # echo_form_input
 1763: #
 1764: # Generates html markup to add form elements from the referrer page
 1765: # as hidden form elements (values encoded) in the new page.
 1766: #
 1767: # Intended to support two types of use 
 1768: # (a) to allow backing up to earlier pages in a multi-page 
 1769: # form submission process using a breadcrumb trail.
 1770: #
 1771: # (b) to allow the current page to be reloaded with form elements
 1772: # set on previous page to remain unchanged.  An example would
 1773: # be where the a page containing a dynamically-built table of data is 
 1774: # is to be redisplayed, with only the sort order of the data changed. 
 1775: #  
 1776: # Inputs:
 1777: # 1. Reference to array of form elements in the submitted form on 
 1778: # the referrer page which are to be excluded from the echoed elements.
 1779: #
 1780: # 2. Reference to array of regular expressions, which if matched in the  
 1781: # name of the form element n the referrer page will be omitted from echo. 
 1782: #
 1783: # Outputs: A scalar containing the html markup for the echoed form
 1784: # elements (all as hidden elements, with values encoded). 
 1785: 
 1786: 
 1787: sub echo_form_input {
 1788:     my ($excluded,$regexps) = @_;
 1789:     my $output = '';
 1790:     foreach my $key (keys(%env)) {
 1791:         if ($key =~ /^form\.(.+)$/) {
 1792:             my $name = $1;
 1793:             my $match = 0;
 1794:             if ((!@{$excluded}) || (!grep/^$name$/,@{$excluded})) {
 1795:                 if (defined($regexps)) {
 1796:                     if (@{$regexps} > 0) {
 1797:                         foreach my $regexp (@{$regexps}) {
 1798:                             if ($name =~ /\Q$regexp\E/) {
 1799:                                 $match = 1;
 1800:                                 last;
 1801:                             }
 1802:                         }
 1803:                     }
 1804:                 }
 1805:                 if (!$match) {
 1806:                     if (ref($env{$key})) {
 1807:                         foreach my $value (@{$env{$key}}) {
 1808:                             $value = &HTML::Entities::encode($value,'<>&"');
 1809:                             $output .= '<input type="hidden" name="'.$name.
 1810:                                              '" value="'.$value.'" />'."\n";
 1811:                         }
 1812:                     } else {
 1813:                         my $value = &HTML::Entities::encode($env{$key},'<>&"');
 1814:                         $output .= '<input type="hidden" name="'.$name.
 1815:                                              '" value="'.$value.'" />'."\n";
 1816:                     }
 1817:                 }
 1818:             }
 1819:         }
 1820:     }
 1821:     return $output;
 1822: }
 1823: 
 1824: ##############################################
 1825: ##############################################
 1826:                                                                              
 1827: # set_form_elements
 1828: #
 1829: # Generates javascript to set form elements to values based on
 1830: # corresponding values for the same form elements when the page was
 1831: # previously submitted.
 1832: #     
 1833: # Last submission values are read from hidden form elements in referring 
 1834: # page which have the same name, i.e., generated by &echo_form_input(). 
 1835: #
 1836: # Intended to be called by onload event.
 1837: #
 1838: # Inputs:
 1839: # (a) Reference to hash of echoed form elements to be set.
 1840: #
 1841: # In the hash, keys are the form element names, and the values are the
 1842: # element type (selectbox, radio, checkbox or text -for textbox, textarea or
 1843: # hidden).
 1844: #
 1845: # (b) Optional reference to hash of stored elements to be set.
 1846: #
 1847: # If the page being displayed is a page which permits modification of
 1848: # previously stored data, e.g., the first page in a multi-page submission,
 1849: # then if stored is supplied, form elements will be set to the last stored
 1850: # values.  If user supplied values are also available for the same elements
 1851: # these will replace the stored values. 
 1852: #        
 1853: # Output:
 1854: #  
 1855: # javascript function - set_form_elements() which sets form elements,
 1856: # expects an argument: formname - the name of the form according to 
 1857: # the DOM, e.g., document.compose
 1858: 
 1859: sub set_form_elements {
 1860:     my ($elements,$stored) = @_;
 1861:     my %values;
 1862:     my $output .= 'function setFormElements(courseForm) {
 1863: ';
 1864:     if (defined($stored)) {
 1865:         foreach my $name (keys(%{$stored})) {
 1866:             if (exists($$elements{$name})) {
 1867:                 if (ref($$stored{$name}) eq 'ARRAY') {
 1868:                     $values{$name} = $$stored{$name};
 1869:                 } else {
 1870:                     @{$values{$name}} = ($$stored{$name});
 1871:                 }
 1872:             }
 1873:         }
 1874:     }
 1875: 
 1876:     foreach my $key (keys(%env)) {
 1877:         if ($key =~ /^form\.(.+)$/) {
 1878:             my $name = $1;
 1879:             if (exists($$elements{$name})) {
 1880:                 @{$values{$name}} = &Apache::loncommon::get_env_multiple($key);
 1881:             }
 1882:         }
 1883:     }
 1884: 
 1885:     foreach my $name (keys(%values)) {
 1886:         for (my $i=0; $i<@{$values{$name}}; $i++) {
 1887:             $values{$name}[$i] = &HTML::Entities::decode($values{$name}[$i],'<>&"');
 1888:             $values{$name}[$i] =~ s/([\r\n\f]+)/\\n/g;
 1889:             $values{$name}[$i] =~ s/"/\\"/g;
 1890:         }
 1891:         if ($$elements{$name} eq 'text') {
 1892:             my $numvalues = @{$values{$name}};
 1893:             if ($numvalues > 1) {
 1894:                 my $valuestring = join('","',@{$values{$name}});
 1895:                 $output .= qq|
 1896:   var textvalues = new Array ("$valuestring");
 1897:   var total = courseForm.elements['$name'].length;
 1898:   if (total > $numvalues) {
 1899:       total = $numvalues;
 1900:   }    
 1901:   for (var i=0; i<total; i++) {
 1902:       courseForm.elements['$name']\[i].value = textvalues[i];
 1903:   }
 1904: |;
 1905:             } else {
 1906:                 $output .= qq|
 1907:   courseForm.elements['$name'].value = "$values{$name}[0]";
 1908: |;
 1909:             }
 1910:         } else {
 1911:             $output .=  qq|
 1912:   var elementLength = courseForm.elements['$name'].length;
 1913:   if (elementLength==undefined) {
 1914: |;
 1915:             foreach my $value (@{$values{$name}}) {
 1916:                 if ($$elements{$name} eq 'selectbox') {
 1917:                     $output .=  qq|
 1918:       if (courseForm.elements['$name'].options[0].value == "$value") {
 1919:           courseForm.elements['$name'].options[0].selected = true;
 1920:       }|;
 1921:                 } elsif (($$elements{$name} eq 'radio') ||
 1922:                          ($$elements{$name} eq 'checkbox')) {
 1923:                     $output .= qq|
 1924:       if (courseForm.elements['$name'].value == "$value") {
 1925:           courseForm.elements['$name'].checked = true;
 1926:       }|;
 1927:                 }
 1928:             }
 1929:             $output .= qq|
 1930:   }
 1931:   else {
 1932:       for (var i=0; i<courseForm.elements['$name'].length; i++) {
 1933: |;
 1934:             if ($$elements{$name} eq 'selectbox') {
 1935:                 $output .=  qq|
 1936:           courseForm.elements['$name'].options[i].selected = false;|;
 1937:             } elsif (($$elements{$name} eq 'radio') || 
 1938:                      ($$elements{$name} eq 'checkbox')) {
 1939:                 $output .= qq|
 1940:           courseForm.elements['$name']\[i].checked = false;|; 
 1941:             }
 1942:             $output .= qq|
 1943:       }
 1944:       for (var j=0; j<courseForm.elements['$name'].length; j++) {
 1945: |;
 1946:             foreach my $value (@{$values{$name}}) {
 1947:                 if ($$elements{$name} eq 'selectbox') {
 1948:                     $output .=  qq|
 1949:           if (courseForm.elements['$name'].options[j].value == "$value") {
 1950:               courseForm.elements['$name'].options[j].selected = true;
 1951:           }|;
 1952:                 } elsif (($$elements{$name} eq 'radio') ||
 1953:                          ($$elements{$name} eq 'checkbox')) { 
 1954:                       $output .= qq|
 1955:           if (courseForm.elements['$name']\[j].value == "$value") {
 1956:               courseForm.elements['$name']\[j].checked = true;
 1957:           }|;
 1958:                 }
 1959:             }
 1960:             $output .= qq|
 1961:       }
 1962:   }
 1963: |;
 1964:         }
 1965:     }
 1966:     $output .= "
 1967: }\n";
 1968:     return $output;
 1969: }
 1970: 
 1971: ##############################################
 1972: ##############################################
 1973: 
 1974: # javascript_valid_email
 1975: #
 1976: # Generates javascript to validate an e-mail address.
 1977: # Returns a javascript function which accetps a form field as argumnent, and
 1978: # returns false if field.value does not satisfy two regular expression matches
 1979: # for a valid e-mail address.  Backwards compatible with old browsers without
 1980: # support for javascript RegExp (just checks for @ in field.value in this case). 
 1981: 
 1982: sub javascript_valid_email {
 1983:     my $scripttag .= <<'END';
 1984: function validmail(field) {
 1985:     var str = field.value;
 1986:     if (window.RegExp) {
 1987:         var reg1str = "(@.*@)|(\\.\\.)|(@\\.)|(\\.@)|(^\\.)";
 1988:         var reg2str = "^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$"; //"
 1989:         var reg1 = new RegExp(reg1str);
 1990:         var reg2 = new RegExp(reg2str);
 1991:         if (!reg1.test(str) && reg2.test(str)) {
 1992:             return true;
 1993:         }
 1994:         return false;
 1995:     }
 1996:     else
 1997:     {
 1998:         if(str.indexOf("@") >= 0) {
 1999:             return true;
 2000:         }
 2001:         return false;
 2002:     }
 2003: }
 2004: END
 2005:     return $scripttag;
 2006: }
 2007: 
 2008: ##############################################
 2009: ##############################################
 2010: 
 2011: # generate_menu
 2012: #
 2013: # Generates html markup for a menu. 
 2014: #
 2015: # Inputs:
 2016: # An array of following structure:
 2017: #   ({	categorytitle => 'Categorytitle',
 2018: #	items => [
 2019: #		    {	linktext    =>	'Text to be displayed',
 2020: #			url	    =>	'URL the link is pointing to, i.e. /adm/site?action=dosomething',
 2021: #			permission  =>	'Contains permissions as returned from lonnet::allowed(),
 2022: #					 must evaluate to true in order to activate the link',
 2023: #			icon        =>  'icon filename',
 2024: #			alttext	    =>	'alt text for the icon',
 2025: #			help	    =>	'Name of the corresponding helpfile',
 2026: #			linktitle   =>	'Description of the link (used for title tag)'
 2027: #		    },
 2028: #		    ...
 2029: #		]
 2030: #   }, 
 2031: #   ...
 2032: #   )
 2033: #
 2034: # Outputs: A scalar containing the html markup for the menu.
 2035: 
 2036: # ---- Remove when done ----
 2037: # This routine is part of the redesign of LON-CAPA and it's 
 2038: # subject to change during this project.
 2039: # Don't rely on its current functionality as it might be 
 2040: # changed or removed.
 2041: # TODO:
 2042: # check for empty values
 2043: # --------------------------
 2044: 
 2045: sub generate_menu {
 2046:     my @menu = @_;
 2047:     my $menu_html = qq|<div class="columnSection">|;
 2048: 
 2049:     foreach my $category (@menu) { #FIXME: insert appropriate classnames for styles when they're finished.
 2050: 	$menu_html .='<div class="ContentBoxSpecial">
 2051: 			<h3 class="hcell">'.mt($category->{'categorytitle'}).'</h3>
 2052: 			<ul class="ListStyleNormal">';
 2053: 	foreach my $item ( @{ $category->{items} } ) {
 2054: 	    next unless $item->{'permission'};
 2055: 	    $menu_html .= qq|<li class="LC_menubuttons_inline_text"><a href="$item->{'url'}" title="|.mt($item->{'linktitle'}).'">';
 2056:             if($item->{'icon'}){
 2057:                 $menu_html .= qq|<img class ="noBorder middle" src="/res/adm/pages/$item->{'icon'}" alt="|;
 2058: 		if($item->{'alttext'}){
 2059: 		    $menu_html .= $item->{'alttext'}.'"/></a>';
 2060: 		} else { #use linktext as alt text for the icon
 2061: 		    $menu_html .= qq|$item->{'linktext'}"/></a>|;
 2062:                 } 
 2063:             }
 2064: 	    $menu_html .= qq|<a href="$item->{'url'}" title="|.mt($item->{'linktitle'}).'">';
 2065:             $menu_html .= mt($item->{'linktext'}).'</a>';
 2066: 	    if (exists($item->{'help'})) {
 2067: 		$menu_html .= Apache::loncommon::help_open_topic($item->{'help'});
 2068: 	    }
 2069: 	    $menu_html .= '</li>';
 2070: 	}
 2071: 	$menu_html .= '</div>';
 2072:     }
 2073:     $menu_html .= qq|</div>|;
 2074:     return $menu_html;
 2075: }
 2076: 
 2077: 
 2078: 1;
 2079: 
 2080: __END__

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