File:  [LON-CAPA] / loncom / interface / lonhtmlcommon.pm
Revision 1.261: download - view: text, annotated - select for diffs
Tue Jan 19 19:00:02 2010 UTC (14 years, 4 months ago) by droeschl
Branches: MAIN
CVS tags: HEAD
- Bug #6064 Breadcrumbs will be visually cut off if text is too long to fit into one line.
- Bug #6081 Breadcrumbs that don't have an href attribute are no longer wrapped with <a> tag.
- Added some POD in lonhtmlcommon and repaired errors and warnings reported by podchecker.
- new functions in lonhtmlcommon:
  o list_from_array: constructs a XHTML list from arraydata
  o funclist_from_array: constructs a XHTML list from arraydata with first item highlighted (see other funclist functions)

    1: # The LearningOnline Network with CAPA
    2: # a pile of common html routines
    3: #
    4: # $Id: lonhtmlcommon.pm,v 1.261 2010/01/19 19:00:02 droeschl 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: sub coursepreflink {
   67:    my ($text,$category)=@_;
   68:    if (&Apache::lonnet::allowed('opa',$env{'request.course.id'})) {
   69:       return '<a href="/adm/courseprefs?phase=display&actions='.$category.'">'.$text.'</a>';
   70:    } else {
   71:       return '';
   72:    }
   73: }
   74: 
   75: sub raw_href_to_link {
   76:    my ($message)=@_;
   77:    $message=~s/(https?\:\/\/[^\s\'\"]+)(\s|$)/<a href="$1"><tt>$1<\/tt><\/a>$2/gi;
   78:    return $message;
   79: }
   80: 
   81: ##############################################
   82: ##############################################
   83: 
   84: =item confirm_success
   85: 
   86: Successful completion of an operation message
   87: 
   88: =cut
   89: 
   90: sub confirm_success {
   91:    my ($message,$failure)=@_;
   92:    if ($failure) {
   93:       return '<span class="LC_error">'."\n"
   94:             .'<img src="/adm/lonIcons/navmap.wrong.gif" alt="'.&mt('Error').'" /> '."\n"
   95:             .$message."\n"
   96:             .'</span>'."\n";
   97:    } else {
   98:       return '<span class="LC_success">'."\n"
   99:             .'<img src="/adm/lonIcons/navmap.correct.gif" alt="'.&mt('OK').'" /> '."\n"
  100:             .$message."\n"
  101:             .'</span>'."\n";
  102:    }
  103: }
  104: 
  105: ##############################################
  106: ##############################################
  107: 
  108: =pod
  109: 
  110: =item dragmath_button
  111: 
  112: Creates a button that launches a dragmath popup-window, in which an 
  113: expression can be edited and pasted as LaTeX into a specified textarea. 
  114: 
  115:   textarea - Name of the textarea to edit.
  116:   helpicon - If true, show a help icon to the right of the button.
  117: 
  118: =cut
  119: 
  120: sub dragmath_button {
  121:     my ($textarea,$helpicon) = @_;
  122:     my $help_text; 
  123:     if ($helpicon) {
  124:         $help_text = &Apache::loncommon::help_open_topic('Authoring_Math_Editor');
  125:     }
  126:     my $buttontext=&mt('Edit Math');
  127:     return <<ENDDRAGMATH;
  128:                 <input type="button" value="$buttontext" onclick="javascript:mathedit('$textarea',document)" />$help_text
  129: ENDDRAGMATH
  130: }
  131: 
  132: ##############################################
  133: 
  134: =pod
  135: 
  136: =item dragmath_js
  137: 
  138: Javascript used to open pop-up window containing dragmath applet which 
  139: can be used to paste LaTeX into a textarea.
  140: =cut
  141: 
  142: sub dragmath_js {
  143:     my ($popup) = @_;
  144:     return <<ENDDRAGMATHJS;
  145:                 <script type="text/javascript">
  146:                 // <![CDATA[
  147:                   function mathedit(textarea, doc) {
  148:                      targetEntry = textarea;
  149:                      targetDoc   = doc;
  150:                      newwin  = window.open("/adm/dragmath/applet/$popup.html","","width=565,height=500,resizable");
  151:                   }
  152:                 // ]]>
  153:                 </script>
  154: 
  155: ENDDRAGMATHJS
  156: }
  157: 
  158: 
  159: ##############################################
  160: ##############################################
  161: 
  162: =pod
  163: 
  164: =item authorbombs
  165: 
  166: =cut
  167: 
  168: ##############################################
  169: ##############################################
  170: 
  171: sub authorbombs {
  172:     my $url=shift;
  173:     $url=&Apache::lonnet::declutter($url);
  174:     my ($udom,$uname)=($url=~m{^($LONCAPA::domain_re)/($LONCAPA::username_re)/});
  175:     my %bombs=&Apache::lonmsg::all_url_author_res_msg($uname,$udom);
  176:     foreach my $bomb (keys(%bombs)) {
  177: 	if ($bomb =~ /^$udom\/$uname\//) {
  178: 	    return '<a href="/adm/bombs/'.$url.
  179: 		'"><img src="'.&Apache::loncommon::lonhttpdurl('/adm/lonMisc/bomb.gif').'" alt="'.&mt('Bomb').'" border="0" /></a>'.
  180: 		&Apache::loncommon::help_open_topic('About_Bombs');
  181: 	}
  182:     }
  183:     return '';
  184: }
  185: 
  186: ##############################################
  187: ##############################################
  188: 
  189: sub recent_filename {
  190:     my $area=shift;
  191:     return 'nohist_recent_'.&escape($area);
  192: }
  193: 
  194: sub store_recent {
  195:     my ($area,$name,$value,$freeze)=@_;
  196:     my $file=&recent_filename($area);
  197:     my %recent=&Apache::lonnet::dump($file);
  198:     if (scalar(keys(%recent))>20) {
  199: # remove oldest value
  200: 	my $oldest=time();
  201: 	my $delkey='';
  202: 	foreach my $item (keys(%recent)) {
  203: 	    my $thistime=(split(/\&/,$recent{$item}))[0];
  204: 	    if (($thistime ne "always_include") && ($thistime<$oldest)) {
  205: 		$oldest=$thistime;
  206: 		$delkey=$item;
  207: 	    }
  208: 	}
  209: 	&Apache::lonnet::del($file,[$delkey]);
  210:     }
  211: # store new value
  212:     my $timestamp;
  213:     if ($freeze) {
  214:         $timestamp = "always_include";
  215:     } else {
  216:         $timestamp = time();
  217:     }   
  218:     &Apache::lonnet::put($file,{ $name => 
  219: 				 $timestamp.'&'.&escape($value) });
  220: }
  221: 
  222: sub remove_recent {
  223:     my ($area,$names)=@_;
  224:     my $file=&recent_filename($area);
  225:     return &Apache::lonnet::del($file,$names);
  226: }
  227: 
  228: sub select_recent {
  229:     my ($area,$fieldname,$event)=@_;
  230:     my %recent=&Apache::lonnet::dump(&recent_filename($area));
  231:     my $return="\n<select name='$fieldname'".
  232: 	($event?" onchange='$event'":'').
  233: 	">\n<option value=''>--- ".&mt('Recent')." ---</option>";
  234:     foreach my $value (sort(keys(%recent))) {
  235: 	unless ($value =~/^error\:/) {
  236: 	    my $escaped = &Apache::loncommon::escape_url($value);
  237: 	    &Apache::loncommon::inhibit_menu_check(\$escaped);
  238:             if ($area eq 'residx') {
  239:                 next if ((!&Apache::lonnet::allowed('bre',$value)) && (!&Apache::lonnet::allowed('bro',$value)));
  240:             }
  241: 	    $return.="\n<option value='$escaped'>".
  242: 		&unescape((split(/\&/,$recent{$value}))[1]).
  243: 		'</option>';
  244: 	}
  245:     }
  246:     $return.="\n</select>\n";
  247:     return $return;
  248: }
  249: 
  250: sub get_recent {
  251:     my ($area, $n) = @_;
  252:     my %recent=&Apache::lonnet::dump(&recent_filename($area));
  253: 
  254: # Create hash with key as time and recent as value
  255: # Begin filling return_hash with any 'always_include' option
  256:     my %time_hash = ();
  257:     my %return_hash = ();
  258:     foreach my $item (keys(%recent)) {
  259:         my ($thistime,$thisvalue)=(split(/\&/,$recent{$item}));
  260:         if ($thistime eq 'always_include') {
  261:             $return_hash{$item} = &unescape($thisvalue);
  262:             $n--;
  263:         } else {
  264:             $time_hash{$thistime} = $item;
  265:         }
  266:     }
  267: 
  268: # Sort by decreasing time and return key value pairs
  269:     my $idx = 1;
  270:     foreach my $item (reverse(sort(keys(%time_hash)))) {
  271:        $return_hash{$time_hash{$item}} =
  272:                   &unescape((split(/\&/,$recent{$time_hash{$item}}))[1]);
  273:        if ($n && ($idx++ >= $n)) {last;}
  274:     }
  275: 
  276:     return %return_hash;
  277: }
  278: 
  279: sub get_recent_frozen {
  280:     my ($area) = @_;
  281:     my %recent=&Apache::lonnet::dump(&recent_filename($area));
  282: 
  283: # Create hash with all 'frozen' items
  284:     my %return_hash = ();
  285:     foreach my $item (keys(%recent)) {
  286:         my ($thistime,$thisvalue)=(split(/\&/,$recent{$item}));
  287:         if ($thistime eq 'always_include') {
  288:             $return_hash{$item} = &unescape($thisvalue);
  289:         }
  290:     }
  291:     return %return_hash;
  292: }
  293: 
  294: 
  295: 
  296: =pod
  297: 
  298: =item textbox
  299: 
  300: =cut
  301: 
  302: ##############################################
  303: ##############################################
  304: sub textbox {
  305:     my ($name,$value,$size,$special) = @_;
  306:     $size = 40 if (! defined($size));
  307:     $value = &HTML::Entities::encode($value,'<>&"');
  308:     my $Str = '<input type="text" name="'.$name.'" size="'.$size.'" '.
  309:         'value="'.$value.'" '.$special.' />';
  310:     return $Str;
  311: }
  312: 
  313: ##############################################
  314: ##############################################
  315: 
  316: =pod
  317: 
  318: =item checkbox
  319: 
  320: =cut
  321: 
  322: ##############################################
  323: ##############################################
  324: sub checkbox {
  325:     my ($name,$checked,$value) = @_;
  326:     my $Str = '<input type="checkbox" name="'.$name.'" ';
  327:     if (defined($value)) {
  328:         $Str .= 'value="'.$value.'"';
  329:     } 
  330:     if ($checked) {
  331:         $Str .= ' checked="checked"';
  332:     }
  333:     $Str .= ' />';
  334:     return $Str;
  335: }
  336: 
  337: 
  338: =pod
  339: 
  340: =item radiobutton
  341: 
  342: =cut
  343: 
  344: ##############################################
  345: ##############################################
  346: sub radio {
  347:     my ($name,$checked,$value) = @_;
  348:     my $Str = '<input type="radio" name="'.$name.'" ';
  349:     if (defined($value)) {
  350:         $Str .= 'value="'.$value.'"';
  351:     } 
  352:     if ($checked eq $value) {
  353:         $Str .= ' checked="checked"';
  354:     }
  355:     $Str .= ' />';
  356:     return $Str;
  357: }
  358: 
  359: ##############################################
  360: ##############################################
  361: 
  362: =pod
  363: 
  364: =item &date_setter
  365: 
  366: &date_setter returns html and javascript for a compact date-setting form.
  367: To retrieve values from it, use &get_date_from_form().
  368: 
  369: Inputs
  370: 
  371: =over 4
  372: 
  373: =item $dname 
  374: 
  375: The name to prepend to the form elements.  
  376: The form elements defined will be dname_year, dname_month, dname_day,
  377: dname_hour, dname_min, and dname_sec.
  378: 
  379: =item $currentvalue
  380: 
  381: The current setting for this time parameter.  A unix format time
  382: (time in seconds since the beginning of Jan 1st, 1970, GMT.  
  383: An undefined value is taken to indicate the value is the current time
  384: unless it is requested to leave it empty. See $includeempty.
  385: Also, to be explicit, a value of 'now' also indicates the current time.
  386: 
  387: =item $special
  388: 
  389: Additional html/javascript to be associated with each element in
  390: the date_setter.  See lonparmset for example usage.
  391: 
  392: =item $includeempty 
  393: 
  394: If it is set (true) and no date/time value is provided,
  395: the date/time fields are left empty.
  396: 
  397: =item $state
  398: 
  399: Specifies the initial state of the form elements.  Either 'disabled' or empty.
  400: Defaults to empty, which indiciates the form elements are not disabled. 
  401: 
  402: =back
  403: 
  404: Bugs
  405: 
  406: The method used to restrict user input will fail in the year 2400.
  407: 
  408: =cut
  409: 
  410: ##############################################
  411: ##############################################
  412: sub date_setter {
  413:     my ($formname,$dname,$currentvalue,$special,$includeempty,$state,
  414:         $no_hh_mm_ss,$defhour,$defmin,$defsec,$nolink) = @_;
  415:     my $now = time;
  416: 
  417:     my $tzname;
  418:     my ($sec,$min,$hour,$mday,$month,$year) = ('', '', undef,''.''.'');
  419:     #other potentially useful values:    wkday,yrday,is_daylight_savings
  420: 
  421:     if (! defined($state) || $state ne 'disabled') {
  422:         $state = '';
  423:     }
  424:     if (! defined($no_hh_mm_ss)) {
  425:         $no_hh_mm_ss = 0;
  426:     }
  427:     if ($currentvalue eq 'now') {
  428:         $currentvalue = $now;
  429:     }
  430:     
  431:     # Default value: Set empty date field to current time
  432:     # unless empty inclusion is requested
  433:     if ((!$includeempty) && (!$currentvalue)) {
  434:         $currentvalue = $now;
  435:     }
  436:     # Do we have a date? Split it!
  437:     if ($currentvalue) {
  438: 	($tzname,$sec,$min,$hour,$mday,$month,$year) = &get_timedates($currentvalue);
  439: 
  440:         #No values provided for hour, min, sec? Use default 0
  441:         if (($defhour) || ($defmin) || ($defsec)) {
  442:             $sec  = ($defsec  ? $defsec  : 0);
  443:             $min  = ($defmin  ? $defmin  : 0);
  444:             $hour = ($defhour ? $defhour : 0);
  445:         }
  446:     }
  447:     my $result = "\n<!-- $dname date setting form -->\n";
  448:     $result .= <<ENDJS;
  449: <script type="text/javascript">
  450: // <![CDATA[
  451:     function $dname\_checkday() {
  452:         var day   = document.$formname.$dname\_day.value;
  453:         var month = document.$formname.$dname\_month.value;
  454:         var year  = document.$formname.$dname\_year.value;
  455:         var valid = true;
  456:         if (day < 1) {
  457:             document.$formname.$dname\_day.value = 1;
  458:         } 
  459:         if (day > 31) {
  460:             document.$formname.$dname\_day.value = 31;
  461:         }
  462:         if ((month == 1)  || (month == 3)  || (month == 5)  ||
  463:             (month == 7)  || (month == 8)  || (month == 10) ||
  464:             (month == 12)) {
  465:             if (day > 31) {
  466:                 document.$formname.$dname\_day.value = 31;
  467:                 day = 31;
  468:             }
  469:         } else if (month == 2 ) {
  470:             if ((year % 4 == 0) && (year % 100 != 0)) {
  471:                 if (day > 29) {
  472:                     document.$formname.$dname\_day.value = 29;
  473:                 }
  474:             } else if (day > 29) {
  475:                 document.$formname.$dname\_day.value = 28;
  476:             }
  477:         } else if (day > 30) {
  478:             document.$formname.$dname\_day.value = 30;
  479:         }
  480:     }
  481:     
  482:     function $dname\_disable() {
  483:         document.$formname.$dname\_month.disabled=true;
  484:         document.$formname.$dname\_day.disabled=true;
  485:         document.$formname.$dname\_year.disabled=true;
  486:         document.$formname.$dname\_hour.disabled=true;
  487:         document.$formname.$dname\_minute.disabled=true;
  488:         document.$formname.$dname\_second.disabled=true;
  489:     }
  490: 
  491:     function $dname\_enable() {
  492:         document.$formname.$dname\_month.disabled=false;
  493:         document.$formname.$dname\_day.disabled=false;
  494:         document.$formname.$dname\_year.disabled=false;
  495:         document.$formname.$dname\_hour.disabled=false;
  496:         document.$formname.$dname\_minute.disabled=false;
  497:         document.$formname.$dname\_second.disabled=false;        
  498:     }
  499: 
  500:     function $dname\_opencalendar() {
  501:         if (! document.$formname.$dname\_month.disabled) {
  502:             var calwin=window.open(
  503: "/adm/announcements?pickdate=yes&formname=$formname&element=$dname&month="+
  504: document.$formname.$dname\_month.value+"&year="+
  505: document.$formname.$dname\_year.value,
  506:              "LONCAPAcal",
  507:               "height=350,width=350,scrollbars=yes,resizable=yes,menubar=no");
  508:         }
  509: 
  510:     }
  511: // ]]>
  512: </script>
  513: ENDJS
  514:     $result .= '  <span class="LC_nobreak">';
  515:     my $monthselector = qq{<select name="$dname\_month" $special $state onchange="javascript:$dname\_checkday()" >};
  516:     # Month
  517:     my @Months = qw/January February  March     April   May      June 
  518:                     July    August    September October November December/;
  519:     # Pad @Months with a bogus value to make indexing easier
  520:     unshift(@Months,'If you can read this an error occurred');
  521:     if ($includeempty) { $monthselector.="<option value=''></option>"; }
  522:     for(my $m = 1;$m <=$#Months;$m++) {
  523:         $monthselector .= qq{      <option value="$m"};
  524:         $monthselector .= ' selected="selected"' if ($m-1 eq $month);
  525:         $monthselector .= '> '.&mt($Months[$m]).' </option>'."\n";
  526:     }
  527:     $monthselector.= '  </select>';
  528:     # Day
  529:     my $dayselector = qq{<input type="text" name="$dname\_day" $state value="$mday" size="3" $special onchange="javascript:$dname\_checkday()" />};
  530:     # Year
  531:     my $yearselector = qq{<input type="text" name="$dname\_year" $state value="$year" size="5" $special onchange="javascript:$dname\_checkday()" />};
  532:     #
  533:     my $hourselector = qq{<select name="$dname\_hour" $special $state >};
  534:     if ($includeempty) { 
  535:         $hourselector.=qq{<option value=''></option>};
  536:     }
  537:     for (my $h = 0;$h<24;$h++) {
  538:         $hourselector .= qq{<option value="$h"};
  539:         $hourselector .= ' selected="selected"' if (defined($hour) && $hour == $h);
  540:         $hourselector .= ">";
  541:         my $timest='';
  542:         if ($h == 0) {
  543:             $timest .= "12 am";
  544:         } elsif($h == 12) {
  545:             $timest .= "12 noon";
  546:         } elsif($h < 12) {
  547:             $timest .= "$h am";
  548:         } else {
  549:             $timest .= $h-12 ." pm";
  550:         }
  551:         $timest=&mt($timest);
  552:         $hourselector .= $timest." </option>\n";
  553:     }
  554:     $hourselector .= "  </select>\n";
  555:     my $minuteselector = qq{<input type="text" name="$dname\_minute" $special $state value="$min" size="3" />};
  556:     my $secondselector= qq{<input type="text" name="$dname\_second" $special $state value="$sec" size="3" />};
  557:     my $cal_link;
  558:     if (!$nolink) {
  559:         $cal_link = qq{<a href="javascript:$dname\_opencalendar()">};
  560:     }
  561:     #
  562:     my $tzone = ' '.$tzname.' ';
  563:     if ($no_hh_mm_ss) {
  564:         $result .= &mt('[_1] [_2] [_3] ',
  565:                        $monthselector,$dayselector,$yearselector).
  566:                    $tzone;
  567:         if (!$nolink) {
  568:             $result .= &mt('[_1]Select Date[_2]',$cal_link,'</a>');
  569:         }
  570:     } else {
  571:         $result .= &mt('[_1] [_2] [_3] [_4] [_5]m [_6]s ',
  572:                       $monthselector,$dayselector,$yearselector,
  573:                       $hourselector,$minuteselector,$secondselector).
  574:                    $tzone;
  575:         if (!$nolink) {
  576:             $result .= &mt('[_1]Select Date[_2]',$cal_link,'</a>');
  577:         }
  578:     }
  579:     $result .= "</span>\n<!-- end $dname date setting form -->\n";
  580:     return $result;
  581: }
  582: 
  583: sub get_timedates {
  584:     my ($epoch) = @_;
  585:     my $dt = DateTime->from_epoch(epoch => $epoch)
  586:                      ->set_time_zone(&Apache::lonlocal::gettimezone());
  587:     my $tzname = $dt->time_zone_short_name();
  588:     my $sec = $dt->second;
  589:     my $min = $dt->minute;
  590:     my $hour = $dt->hour;
  591:     my $mday = $dt->day;
  592:     my $month = $dt->month;
  593:     if ($month) {
  594:         $month --;
  595:     }
  596:     my $year = $dt->year;
  597:     return ($tzname,$sec,$min,$hour,$mday,$month,$year);
  598: }
  599: 
  600: sub build_url {
  601:     my ($base, $fields)=@_;
  602:     my $url;
  603:     $url = $base.'?';
  604:     foreach my $key (keys(%$fields)) {
  605:         $url.=&escape($key).'='.&escape($$fields{$key}).'&amp;';
  606:     }
  607:     $url =~ s/&amp;$//;
  608:     return $url;
  609: }
  610: 
  611: 
  612: ##############################################
  613: ##############################################
  614: 
  615: =pod
  616: 
  617: =item &get_date_from_form
  618: 
  619: get_date_from_form retrieves the date specified in an &date_setter form.
  620: 
  621: Inputs:
  622: 
  623: =over 4
  624: 
  625: =item $dname
  626: 
  627: The name passed to &date_setter, which prefixes the form elements.
  628: 
  629: =item $defaulttime
  630: 
  631: The unix time to use as the default in case of poor inputs.
  632: 
  633: =back
  634: 
  635: Returns: Unix time represented in the form.
  636: 
  637: =cut
  638: 
  639: ##############################################
  640: ##############################################
  641: sub get_date_from_form {
  642:     my ($dname) = @_;
  643:     my ($sec,$min,$hour,$day,$month,$year);
  644:     #
  645:     if (defined($env{'form.'.$dname.'_second'})) {
  646:         my $tmpsec = $env{'form.'.$dname.'_second'};
  647:         if (($tmpsec =~ /^\d+$/) && ($tmpsec >= 0) && ($tmpsec < 60)) {
  648:             $sec = $tmpsec;
  649:         }
  650: 	if (!defined($tmpsec) || $tmpsec eq '') { $sec = 0; }
  651:     } else {
  652:         $sec = 0;
  653:     }
  654:     if (defined($env{'form.'.$dname.'_minute'})) {
  655:         my $tmpmin = $env{'form.'.$dname.'_minute'};
  656:         if (($tmpmin =~ /^\d+$/) && ($tmpmin >= 0) && ($tmpmin < 60)) {
  657:             $min = $tmpmin;
  658:         }
  659: 	if (!defined($tmpmin) || $tmpmin eq '') { $min = 0; }
  660:     } else {
  661:         $min = 0;
  662:     }
  663:     if (defined($env{'form.'.$dname.'_hour'})) {
  664:         my $tmphour = $env{'form.'.$dname.'_hour'};
  665:         if (($tmphour =~ /^\d+$/) && ($tmphour >= 0) && ($tmphour < 24)) {
  666:             $hour = $tmphour;
  667:         }
  668:     } else {
  669:         $hour = 0;
  670:     }
  671:     if (defined($env{'form.'.$dname.'_day'})) {
  672:         my $tmpday = $env{'form.'.$dname.'_day'};
  673:         if (($tmpday =~ /^\d+$/) && ($tmpday > 0) && ($tmpday < 32)) {
  674:             $day = $tmpday;
  675:         }
  676:     }
  677:     if (defined($env{'form.'.$dname.'_month'})) {
  678:         my $tmpmonth = $env{'form.'.$dname.'_month'};
  679:         if (($tmpmonth =~ /^\d+$/) && ($tmpmonth > 0) && ($tmpmonth < 13)) {
  680:             $month = $tmpmonth;
  681:         }
  682:     }
  683:     if (defined($env{'form.'.$dname.'_year'})) {
  684:         my $tmpyear = $env{'form.'.$dname.'_year'};
  685:         if (($tmpyear =~ /^\d+$/) && ($tmpyear >= 1970)) {
  686:             $year = $tmpyear;
  687:         }
  688:     }
  689:     if (($year<1970) || ($year>2037)) { return undef; }
  690:     if (defined($sec) && defined($min)   && defined($hour) &&
  691:         defined($day) && defined($month) && defined($year)) {
  692:         my $timezone = &Apache::lonlocal::gettimezone();
  693:         my $dt = DateTime->new( year   => $year,
  694:                                 month  => $month,
  695:                                 day    => $day,
  696:                                 hour   => $hour,
  697:                                 minute => $min,
  698:                                 second => $sec,
  699:                                 time_zone => $timezone,
  700:                               );
  701:         my $epoch_time  = $dt->epoch;
  702:         if ($epoch_time ne '') {
  703:             return $epoch_time;
  704:         } else {
  705:             return undef;
  706:         }
  707:     } else {
  708:         return undef;
  709:     }
  710: }
  711: 
  712: ##############################################
  713: ##############################################
  714: 
  715: =pod
  716: 
  717: =item &pjump_javascript_definition()
  718: 
  719: Returns javascript defining the 'pjump' function, which opens up a
  720: parameter setting wizard.
  721: 
  722: =cut
  723: 
  724: ##############################################
  725: ##############################################
  726: sub pjump_javascript_definition {
  727:     my $Str = <<END;
  728:     function pjump(type,dis,value,marker,ret,call,hour,min,sec) {
  729:         parmwin=window.open("/adm/rat/parameter.html?type="+escape(type)
  730:                  +"&value="+escape(value)+"&marker="+escape(marker)
  731:                  +"&return="+escape(ret)
  732:                  +"&call="+escape(call)+"&name="+escape(dis)
  733:                  +"&defhour="+escape(hour)+"&defmin="+escape(min)
  734:                  +"&defsec="+escape(sec),"LONCAPAparms",
  735:                  "height=350,width=350,scrollbars=no,menubar=no");
  736:     }
  737: END
  738:     return $Str;
  739: }
  740: 
  741: ##############################################
  742: ##############################################
  743: 
  744: =pod
  745: 
  746: =item &javascript_nothing()
  747: 
  748: Return an appropriate null for the users browser.  This is used
  749: as the first arguement for window.open calls when you want a blank
  750: window that you can then write to.
  751: 
  752: =cut
  753: 
  754: ##############################################
  755: ##############################################
  756: sub javascript_nothing {
  757:     # mozilla and other browsers work with "''", but IE on mac does not.
  758:     my $nothing = "''";
  759:     my $user_browser;
  760:     my $user_os;
  761:     $user_browser = $env{'browser.type'} if (exists($env{'browser.type'}));
  762:     $user_os      = $env{'browser.os'}   if (exists($env{'browser.os'}));
  763:     if (! defined($user_browser) || ! defined($user_os)) {
  764:         (undef,$user_browser,undef,undef,undef,$user_os) = 
  765:                            &Apache::loncommon::decode_user_agent();
  766:     }
  767:     if ($user_browser eq 'explorer' && $user_os =~ 'mac') {
  768:         $nothing = "'javascript:void(0);'";
  769:     }
  770:     return $nothing;
  771: }
  772: 
  773: ##############################################
  774: ##############################################
  775: sub javascript_docopen {
  776:     my ($mimetype) = @_;
  777:     $mimetype ||= 'text/html';
  778:     # safari does not understand document.open() and loads "text/html"
  779:     my $nothing = "''";
  780:     my $user_browser;
  781:     my $user_os;
  782:     $user_browser = $env{'browser.type'} if (exists($env{'browser.type'}));
  783:     $user_os      = $env{'browser.os'}   if (exists($env{'browser.os'}));
  784:     if (! defined($user_browser) || ! defined($user_os)) {
  785:         (undef,$user_browser,undef,undef,undef,$user_os) = 
  786:                            &Apache::loncommon::decode_user_agent();
  787:     }
  788:     if ($user_browser eq 'safari' && $user_os =~ 'mac') {
  789:         $nothing = "document.clear()";
  790:     } else {
  791: 	$nothing = "document.open('$mimetype','replace')";
  792:     }
  793:     return $nothing;
  794: }
  795: 
  796: 
  797: ##############################################
  798: ##############################################
  799: 
  800: =pod
  801: 
  802: =item &StatusOptions()
  803: 
  804: Returns html for a selection box which allows the user to choose the
  805: enrollment status of students.  The selection box name is 'Status'.
  806: 
  807: Inputs:
  808: 
  809: $status: the currently selected status.  If undefined the value of
  810: $env{'form.Status'} is taken.  If that is undefined, a value of 'Active'
  811: is used.
  812: 
  813: $formname: The name of the form.  If defined the onchange attribute of
  814: the selection box is set to document.$formname.submit().
  815: 
  816: $size: the size (number of lines) of the selection box.
  817: 
  818: $onchange: javascript to use when the value is changed.  Enclosed in 
  819: double quotes, ""s, not single quotes.
  820: 
  821: Returns: a perl string as described.
  822: 
  823: =cut
  824: 
  825: ##############################################
  826: ##############################################
  827: sub StatusOptions {
  828:     my ($status, $formName,$size,$onchange,$mult)=@_;
  829:     $size = 1 if (!defined($size));
  830:     if (! defined($status)) {
  831:         $status = 'Active';
  832:         $status = $env{'form.Status'} if (exists($env{'form.Status'}));
  833:     }
  834: 
  835:     my $Str = '';
  836:     $Str .= '<select name="Status"';
  837:     if (defined($mult)){
  838:         $Str .= ' multiple="multiple" ';
  839:     }
  840:     if(defined($formName) && $formName ne '' && ! defined($onchange)) {
  841:         $Str .= ' onchange="document.'.$formName.'.submit()"';
  842:     }
  843:     if (defined($onchange)) {
  844:         $Str .= ' onchange="'.$onchange.'"';
  845:     }
  846:     $Str .= ' size="'.$size.'" ';
  847:     $Str .= '>'."\n";
  848:     foreach my $type (['Active',  &mt('Currently Has Access')],
  849: 		      ['Future',  &mt('Will Have Future Access')],
  850: 		      ['Expired', &mt('Previously Had Access')],
  851: 		      ['Any',     &mt('Any Access Status')]) {
  852: 	my ($name,$label) = @$type;
  853: 	$Str .= '<option value="'.$name.'" ';
  854: 	if ($status eq $name) {
  855: 	    $Str .= 'selected="selected" ';
  856: 	}
  857: 	$Str .= '>'.$label.'</option>'."\n";
  858:     }
  859: 
  860:     $Str .= '</select>'."\n";
  861: }
  862: 
  863: ########################################################
  864: ########################################################
  865: 
  866: =pod
  867: 
  868: =item Progess Window Handling Routines
  869: 
  870: These routines handle the creation, update, increment, and closure of 
  871: progress windows.  The progress window reports to the user the number
  872: of items completed and an estimate of the time required to complete the rest.
  873: 
  874: =over 4
  875: 
  876: 
  877: =item &Create_PrgWin
  878: 
  879: Writes javascript to the client to open a progress window and returns a
  880: data structure used for bookkeeping.
  881: 
  882: Inputs
  883: 
  884: =over 4
  885: 
  886: =item $r Apache request
  887: 
  888: =item $title The title of the progress window
  889: 
  890: =item $heading A description (usually 1 line) of the process being initiated.
  891: 
  892: =item $number_to_do The total number of items being processed.
  893: 
  894: =item $type Either 'popup' or 'inline' (popup is assumed if nothing is
  895:        specified)
  896: 
  897: =item $width Specify the width in charaters of the input field.
  898: 
  899: =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
  900: 
  901: =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 
  902: 
  903: =back
  904: 
  905: Returns a hash containing the progress state data structure.
  906: 
  907: 
  908: =item &Update_PrgWin
  909: 
  910: Updates the text in the progress indicator.  Does not increment the count.
  911: See &Increment_PrgWin.
  912: 
  913: Inputs:
  914: 
  915: =over 4
  916: 
  917: =item $r Apache request
  918: 
  919: =item $prog_state Pointer to the data structure returned by &Create_PrgWin
  920: 
  921: =item $displaystring The string to write to the status indicator
  922: 
  923: =back
  924: 
  925: Returns: none
  926: 
  927: 
  928: =item Increment_PrgWin
  929: 
  930: Increment the count of items completed for the progress window by 1.  
  931: 
  932: Inputs:
  933: 
  934: =over 4
  935: 
  936: =item $r Apache request
  937: 
  938: =item $prog_state Pointer to the data structure returned by Create_PrgWin
  939: 
  940: =item $extraInfo A description of the items being iterated over.  Typically
  941: 'student'.
  942: 
  943: =back
  944: 
  945: Returns: none
  946: 
  947: 
  948: =item Close_PrgWin
  949: 
  950: Closes the progress window.
  951: 
  952: Inputs:
  953: 
  954: =over 4 
  955: 
  956: =item $r Apache request
  957: 
  958: =item $prog_state Pointer to the data structure returned by Create_PrgWin
  959: 
  960: =back
  961: 
  962: Returns: none
  963: 
  964: =back
  965: 
  966: =cut
  967: 
  968: ########################################################
  969: ########################################################
  970: 
  971: my $uniq=0;
  972: sub get_uniq_name {
  973:     $uniq++;
  974:     return 'uniquename'.$uniq;
  975: }
  976: 
  977: # Create progress
  978: sub Create_PrgWin {
  979:     my ($r, $title, $heading, $number_to_do,$type,$width,$formname,
  980: 	$inputname)=@_;
  981:     if (!defined($type)) { $type='popup'; }
  982:     if (!defined($width)) { $width=55; }
  983:     my %prog_state;
  984:     $prog_state{'type'}=$type;
  985:     if ($type eq 'popup') {
  986: 	$prog_state{'window'}='popwin';
  987: 	my $start_page =
  988: 	    &Apache::loncommon::start_page($title,undef,
  989: 					   {'only_body' => 1,
  990: 					    'bgcolor'   => '#88DDFF',
  991: 					    'js_ready'  => 1});
  992: 	my $end_page = &Apache::loncommon::end_page({'js_ready'  => 1});
  993: 
  994: 	#the whole function called through timeout is due to issues
  995: 	#in mozilla Read BUG #2665 if you want to know the whole story
  996: 	&r_print($r,&Apache::lonhtmlcommon::scripttag(
  997:         "var popwin;
  998:          function openpopwin () {
  999:          popwin=open(\'\',\'popwin\',\'width=400,height=100\');".
 1000:         "popwin.document.writeln(\'".$start_page.
 1001:               "<h4>".&mt("$heading")."<\/h4>".
 1002:               "<form action=\"\" name=\"popremain\" method=\"post\">".
 1003:               '<input type="text" size="'.$width.'" name="remaining" value="'.
 1004: 	      &mt('Starting').'" /><\\/form>'.$end_page.
 1005:               "\');".
 1006:         "popwin.document.close();}".
 1007:         "\nwindow.setTimeout(openpopwin,0)"
 1008:     ));
 1009: 	$prog_state{'formname'}='popremain';
 1010: 	$prog_state{'inputname'}="remaining";
 1011:     } elsif ($type eq 'inline') {
 1012: 	$prog_state{'window'}='window';
 1013: 	if (!$formname) {
 1014: 	    $prog_state{'formname'}=&get_uniq_name();
 1015: 	    &r_print($r,'<form action="" name="'.$prog_state{'formname'}.'">');
 1016: 	} else {
 1017: 	    $prog_state{'formname'}=$formname;
 1018: 	}
 1019: 	if (!$inputname) {
 1020: 	    $prog_state{'inputname'}=&get_uniq_name();
 1021: 	    &r_print($r,&mt("$heading [_1]",' <input type="text" name="'.$prog_state{'inputname'}.'" size="'.$width.'" />'));
 1022: 	} else {
 1023: 	    $prog_state{'inputname'}=$inputname;
 1024: 	    
 1025: 	}
 1026: 	if (!$formname) { &r_print($r,'</form>'); }
 1027: 	&Update_PrgWin($r,\%prog_state,&mt('Starting'));
 1028:     }
 1029: 
 1030:     $prog_state{'done'}=0;
 1031:     $prog_state{'firststart'}=&Time::HiRes::time();
 1032:     $prog_state{'laststart'}=&Time::HiRes::time();
 1033:     $prog_state{'max'}=$number_to_do;
 1034:     
 1035:     return %prog_state;
 1036: }
 1037: 
 1038: # update progress
 1039: sub Update_PrgWin {
 1040:     my ($r,$prog_state,$displayString)=@_;
 1041:     &r_print($r,&Apache::lonhtmlcommon::scripttag(
 1042:         $$prog_state{'window'}.'.document.'.
 1043:         $$prog_state{'formname'}.'.'.
 1044:         $$prog_state{'inputname'}.'.value="'.
 1045:         $displayString.'";'
 1046:     ));
 1047:     $$prog_state{'laststart'}=&Time::HiRes::time();
 1048: }
 1049: 
 1050: # increment progress state
 1051: sub Increment_PrgWin {
 1052:     my ($r,$prog_state,$extraInfo)=@_;
 1053:     $$prog_state{'done'}++;
 1054:     my $time_est= (&Time::HiRes::time() - $$prog_state{'firststart'})/
 1055:         $$prog_state{'done'} *
 1056: 	($$prog_state{'max'}-$$prog_state{'done'});
 1057:     $time_est = int($time_est);
 1058:     #
 1059:     my $min = int($time_est/60);
 1060:     my $sec = $time_est % 60;
 1061:     # 
 1062:     my $str;
 1063:     if ($min == 0 && $sec > 1) {
 1064:         $str = '[_2] seconds';
 1065:     } elsif ($min == 1 && $sec > 1) {
 1066:         $str = '1 minute [_2] seconds';
 1067:     } elsif ($min == 1 && $sec < 2) {
 1068:         $str = '1 minute';
 1069:     } elsif ($min < 10 && $sec > 1) {
 1070:         $str = '[_1] minutes, [_2] seconds';
 1071:     } elsif ($min >= 10 || $sec < 2) {
 1072:         $str = '[_1] minutes';
 1073:     }
 1074:     $time_est = &mt($str,$min,$sec);
 1075:     #
 1076:     my $lasttime = &Time::HiRes::time()-$$prog_state{'laststart'};
 1077:     if ($lasttime > 9) {
 1078:         $lasttime = int($lasttime);
 1079:     } elsif ($lasttime < 0.01) {
 1080:         $lasttime = 0;
 1081:     } else {
 1082:         $lasttime = sprintf("%3.2f",$lasttime);
 1083:     }
 1084:     if ($lasttime == 1) {
 1085:         $lasttime = '('.$lasttime.' '.&mt('second for').' '.$extraInfo.')';
 1086:     } else {
 1087:         $lasttime = '('.$lasttime.' '.&mt('seconds for').' '.$extraInfo.')';
 1088:     }
 1089:     #
 1090:     my $user_browser = $env{'browser.type'} if (exists($env{'browser.type'}));
 1091:     my $user_os      = $env{'browser.os'}   if (exists($env{'browser.os'}));
 1092:     if (! defined($user_browser) || ! defined($user_os)) {
 1093:         (undef,$user_browser,undef,undef,undef,$user_os) = 
 1094:                            &Apache::loncommon::decode_user_agent();
 1095:     }
 1096:     if ($user_browser eq 'explorer' && $user_os =~ 'mac') {
 1097:         $lasttime = '';
 1098:     }
 1099:     &r_print($r,&Apache::lonhtmlcommon::scripttag(
 1100:         $$prog_state{'window'}.'.document.'.
 1101:         $$prog_state{'formname'}.'.'.
 1102:         $$prog_state{'inputname'}.'.value="'.
 1103:         $$prog_state{'done'}.'/'.$$prog_state{'max'}.
 1104:         ': '.$time_est.' '.&mt('remaining').' '.$lasttime.'";'
 1105:     ));
 1106:     $$prog_state{'laststart'}=&Time::HiRes::time();
 1107: }
 1108: 
 1109: # close Progress Line
 1110: sub Close_PrgWin {
 1111:     my ($r,$prog_state)=@_;
 1112:     if ($$prog_state{'type'} eq 'popup') {
 1113:         &r_print($r,&Apache::lonhtmlcommon::scripttag(
 1114:             'popwin.close()'
 1115:         ));
 1116:     } elsif ($$prog_state{'type'} eq 'inline') {
 1117: 	&Update_PrgWin($r,$prog_state,&mt('Done'));
 1118:     }
 1119:     undef(%$prog_state);
 1120: }
 1121: 
 1122: sub r_print {
 1123:     my ($r,$to_print)=@_;
 1124:     if ($r) {
 1125: 	$r->print($to_print);
 1126: 	$r->rflush();
 1127:     } else {
 1128: 	print($to_print);
 1129:     }
 1130: }
 1131: 
 1132: # ------------------------------------------------------- Puts directory header
 1133: 
 1134: sub crumbs {
 1135:     my ($uri,$target,$prefix,$form,$skiplast)=@_;
 1136:     if ($target) {
 1137:         $target = ' target="'.
 1138:                   &Apache::loncommon::escape_single($target).'"';
 1139:     }
 1140:     my $output='<span class="LC_filename">';
 1141:     $output.=$prefix.'/';
 1142:     if (($env{'user.adv'}) || ($env{'user.author'})) {
 1143:         my $path=$prefix.'/';
 1144:         foreach my $dir (split('/',$uri)) {
 1145:             if (! $dir) { next; }
 1146:             $path .= $dir;
 1147:             if ($path eq $uri) {
 1148:                 if ($skiplast) {
 1149:                     $output.=$dir;
 1150:                     last;
 1151:                 } 
 1152:             } else {
 1153:                 $path.='/'; 
 1154:             }
 1155:             my $href_path = &HTML::Entities::encode($path,'<>&"');
 1156:             &Apache::loncommon::inhibit_menu_check(\$href_path);
 1157:             if ($form) {
 1158:                 my $href = 'javascript:'.$form.".action='".$href_path."';".$form.'.submit();';
 1159:                 $output.=qq{<a href="$href"$target>$dir</a>/};
 1160:             } else {
 1161:                 $output.=qq{<a href="$href_path"$target>$dir</a>/};
 1162:             }
 1163:         }
 1164:     } else {
 1165:         foreach my $dir (split('/',$uri)) {
 1166:             if (! $dir) { next; }
 1167:             $output.=$dir.'/';
 1168:         }
 1169:     }
 1170:     if ($uri !~ m|/$|) { $output=~s|/$||; }
 1171:     $output.='</span>';
 1172: 
 1173:     return $output;
 1174: }
 1175: 
 1176: # --------------------- A function that generates a window for the spellchecker
 1177: 
 1178: sub spellheader {
 1179:     my $start_page=
 1180: 	&Apache::loncommon::start_page('Speller Suggestions',undef,
 1181: 				       {'only_body'   => 1,
 1182: 					'js_ready'    => 1,
 1183: 					'bgcolor'     => '#DDDDDD',
 1184: 				        'add_entries' => {
 1185: 					    'onload' => 
 1186:                                                'document.forms.spellcheckform.submit()',
 1187:                                              }
 1188: 				        });
 1189:     my $end_page=
 1190: 	&Apache::loncommon::end_page({'js_ready'  => 1}); 
 1191: 
 1192:     my $nothing=&javascript_nothing();
 1193:     return (<<ENDCHECK);
 1194: <script type="text/javascript"> 
 1195: // <![CDATA[
 1196: //<!-- BEGIN LON-CAPA Internal
 1197: var checkwin;
 1198: 
 1199: function spellcheckerwindow(string) {
 1200:     var esc_string = string.replace(/\"/g,'&quot;');
 1201:     checkwin=window.open($nothing,'spellcheckwin','height=320,width=280,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
 1202:     checkwin.document.writeln('$start_page<form name="spellcheckform" action="/adm/spellcheck" method="post"><input type="hidden" name="text" value="'+esc_string+'" /><\\/form>$end_page');
 1203:     checkwin.document.close();
 1204: }
 1205: // END LON-CAPA Internal -->
 1206: // ]]>
 1207: </script>
 1208: ENDCHECK
 1209: }
 1210: 
 1211: # ---------------------------------- Generate link to spell checker for a field
 1212: 
 1213: sub spelllink {
 1214:     my ($form,$field)=@_;
 1215:     my $linktext=&mt('Check Spelling');
 1216:     return (<<ENDLINK);
 1217: <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>
 1218: ENDLINK
 1219: }
 1220: 
 1221: # ------------------------------------------------- Output headers for HTMLArea
 1222: 
 1223: {
 1224:     my @htmlareafields;
 1225:     sub init_htmlareafields {
 1226: 	undef(@htmlareafields);
 1227:     }
 1228:     
 1229:     sub add_htmlareafields {
 1230: 	my (@newfields) = @_;
 1231: 	push(@htmlareafields,@newfields);
 1232:     }
 1233: 
 1234:     sub get_htmlareafields {
 1235: 	return @htmlareafields;
 1236:     }
 1237: }
 1238: 
 1239: sub htmlareaheaders {
 1240: 	my $s="";
 1241: 	if (&htmlareabrowser()) {
 1242: 		$s.=(<<ENDEDITOR);
 1243: <script type="text/javascript" src="/fckeditor/fckeditor.js"></script>
 1244: <script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
 1245: ENDEDITOR
 1246: 	}
 1247:     $s.=(<<ENDJQUERY);
 1248: <script type="text/javascript" src="/adm/jQuery/js/jquery-1.3.2.min.js"></script>
 1249: <script type="text/javascript" src="/adm/jQuery/js/jquery-ui-1.7.2.custom.min.js"></script>
 1250: <link rel="stylesheet" type="text/css" href="/adm/jQuery/css/smoothness/jquery-ui-1.7.2.custom.css" />
 1251: ENDJQUERY
 1252: 	return $s;
 1253: }
 1254: 
 1255: # ----------------------------------------------------------------- Preferences
 1256: 
 1257: sub disablelink {
 1258:     my @fields=@_;
 1259:     if (defined($#fields)) {
 1260: 	unless ($#fields>=0) { return ''; }
 1261:     }
 1262:     return '<a href="'.&HTML::Entities::encode('/adm/preferences?action=set_wysiwyg&wysiwyg=off&returnurl=','<>&"').&escape($ENV{'REQUEST_URI'}).'">'.&mt('Disable WYSIWYG Editor').'</a>';
 1263: }
 1264: 
 1265: sub enablelink {
 1266:     my @fields=@_;
 1267:     if (defined($#fields)) {
 1268: 	unless ($#fields>=0) { return ''; }
 1269:     }
 1270:     return '<a href="'.&HTML::Entities::encode('/adm/preferences?action=set_wysiwyg&wysiwyg=on&returnurl=','<>&"').&escape($ENV{'REQUEST_URI'}).'">'.&mt('Enable WYSIWYG Editor').'</a>';
 1271: }
 1272: 
 1273: # ------------------------------------------------- lang to use in html editor
 1274: sub htmlarea_lang {
 1275:     my $lang='en';
 1276:     if (&mt('htmlarea_lang') ne 'htmlarea_lang') {
 1277: 	$lang=&mt('htmlarea_lang');
 1278:     }
 1279:     return $lang;
 1280: }
 1281: 
 1282: # ----------------------------------------- Script to activate only some fields
 1283: 
 1284: sub htmlareaselectactive {
 1285:     my @fields=@_;
 1286:     unless (&htmlareabrowser()) { return ''; }
 1287:     #if (&htmlareablocked()) { return '<br />'.&enablelink(@fields); }
 1288:     my $output='<script type="text/javascript" defer="1">'."\n"
 1289:               .'// <![CDATA['."\n";
 1290:     my $lang = &htmlarea_lang();
 1291:     $output.='
 1292:     
 1293:     function containsBlockHtml(id) {
 1294: 		var re = $("#"+id).html().search(/(?:\&lt\;|\<)(br|h1|h2|h3|h4|h5|h6|p|ol|ul|table|pre|address|blockquote|center|div)[\s]*((?:\/[\s]*(?:\&gt\;|\>)|(?:\&gt\;|\>)[\s\S]*(?:\&lt\;|\<)\/[\s]*\1[\s]*\(?:\&gt\;|\>))/im);
 1295:     	return (re >= 0);
 1296:     }
 1297:     
 1298:     function startRichEditor(id) {
 1299:     	CKEDITOR.replace(id, 
 1300:     		{
 1301:     			customConfig: "/ckeditor/loncapaconfig.js"
 1302:     		}
 1303:     	);
 1304:     }
 1305:     
 1306:     function destroyRichEditor(id) {
 1307:     	CKEDITOR.instances[id].destroy();
 1308:     }
 1309:     
 1310:     function editorHandler(event) {
 1311:     	var rawid = $(this).attr("id");
 1312:     	var id = new RegExp("LC_rt_(.*)").exec(rawid)[1]
 1313:     	event.preventDefault();
 1314:     	if ($(this).hasClass("LC_enable_rt")) {
 1315:     		startRichEditor(id);
 1316: 			$("#LC_rt_"+id).html("<b>&laquo; Plain text</b>");
 1317: 			$("#LC_rt_"+id).attr("title", "Disable rich text formatting and edit in plain text");
 1318: 			$("#LC_rt_"+id).addClass("LC_disable_rt");
 1319: 			$("#LC_rt_"+id).removeClass("LC_enable_rt");
 1320:     	} else {
 1321: 			destroyRichEditor(id);
 1322: 			$("#LC_rt_"+id).html("<b>Rich formatting &raquo;</b>");
 1323: 			$("#LC_rt_"+id).attr("title", "Enable rich text formatting (bold, italic, etc.)");
 1324: 			$("#LC_rt_"+id).addClass("LC_enable_rt");
 1325: 			$("#LC_rt_"+id).removeClass("LC_disable_rt");
 1326: 		}
 1327: 	}
 1328:     
 1329:     $(document).ready(function(){
 1330: 		$(".LC_richAlwaysOn").each(function() {
 1331: 			startRichEditor($(this).attr("id"));
 1332: 		});
 1333: 		$(".LC_richDetectHtml").each(function() {
 1334: 			var id = $(this).attr("id");
 1335: 			if(containsBlockHtml(id)) {
 1336: 				$(this).before("<div><a href=\"#\" id=\"LC_rt_"+id+"\" title=\"Disable rich text formatting and edit in plain text\" class=\"LC_disable_rt\"><b>&laquo; Plain text</b></a></div>");				
 1337: 				startRichEditor(id);
 1338: 				$("#LC_rt_"+id).click(editorHandler);				
 1339: 			}
 1340: 			else {
 1341: 				$(this).before("<div><a href=\"#\" id=\"LC_rt_"+id+"\" title=\"Enable rich text formatting (bold, italic, etc.)\" class=\"LC_enable_rt\"><b>Rich formatting &raquo;</b></a></div>");
 1342: 				$("#LC_rt_"+id).click(editorHandler);
 1343: 			}
 1344: 		});
 1345: 		$(".LC_richDefaultOn").each(function() {
 1346: 			var id = $(this).attr("id");
 1347: 			$(this).before("<div><a href=\"#\" id=\"LC_rt_"+id+"\" title=\"Disable rich text formatting and edit in plain text\" class=\"LC_disable_rt\"><b>&laquo; Plain text</b></a></div>");				
 1348: 			startRichEditor(id);
 1349: 			$("#LC_rt_"+id).click(editorHandler);
 1350: 		});
 1351: 		$(".LC_richDefaultOff").each(function() {
 1352: 			var id = $(this).attr("id");
 1353: 			$(this).before("<div><a href=\"#\" id=\"LC_rt_"+id+"\" title=\"Enable rich text formatting (bold, italic, etc.)\" class=\"LC_enable_rt\"><b>Rich formatting &raquo;</b></a></div>");
 1354: 			$("#LC_rt_"+id).click(editorHandler);			
 1355: 		});
 1356: 		
 1357: 	});
 1358: ';
 1359:     
 1360:     foreach my $field (@fields) {
 1361: 	$output.='
 1362: 	
 1363: {
 1364: 	$(document).ready(function() {
 1365: 		if (!($("#'.$field.'").hasClass("LC_richAlwaysOn"))) {
 1366: 			if (!($("#'.$field.'").hasClass("LC_richAlwaysOff"))) {
 1367: 				if (!($("#'.$field.'").hasClass("LC_richDetectHtml"))) {
 1368: 					if (!($("#'.$field.'").hasClass("LC_richDefaultOn"))) {
 1369: 						if (!($("#'.$field.'").hasClass("LC_richDefaultOff"))) {
 1370: 							var oFCKeditor = new FCKeditor("'.$field.'");
 1371: 							oFCKeditor.Config["CustomConfigurationsPath"] = 
 1372: 							"/fckeditor/loncapaconfig.js";    
 1373: 							oFCKeditor.ReplaceTextarea();
 1374: 							oFCKeditor.Config["AutoDetectLanguage"] = false;
 1375: 							oFCKeditor.Config["DefaultLanguage"] = "'.$lang.'";
 1376: 						}
 1377: 					}
 1378: 				}		
 1379: 			}
 1380: 		}
 1381:     });
 1382: }';
 1383:     }
 1384:     $output.="\nwindow.status='Activated Editfields';\n"
 1385:             .'// ]]>'."\n"
 1386:             .'</script><br />'.
 1387: 	&disablelink(@fields);
 1388:     return $output;
 1389: }
 1390: 
 1391: # --------------------------------------------------------------------- Blocked
 1392: 
 1393: sub htmlareablocked {
 1394:     unless ($env{'environment.wysiwygeditor'} eq 'on') { return 1; }
 1395:     return 0;
 1396: }
 1397: 
 1398: # ---------------------------------------- Browser capable of running HTMLArea?
 1399: 
 1400: sub htmlareabrowser {
 1401:     return 1;
 1402: }
 1403: 
 1404: ############################################################
 1405: ############################################################
 1406: 
 1407: =pod
 1408: 
 1409: =item breadcrumbs
 1410: 
 1411: Compiles the previously registered breadcrumbs into an series of links.
 1412: Additionally supports a 'component', which will be displayed on the
 1413: right side of the breadcrumbs enclosing div (without a link).
 1414: A link to help for the component will be included if one is specified.
 1415: 
 1416: All inputs can be undef without problems.
 1417: 
 1418: Inputs: $component (the text on the right side of the breadcrumbs trail),
 1419:         $component_help
 1420:         $menulink (boolean, controls whether to include a link to /adm/menu)
 1421:         $helplink (if 'nohelp' don't include the orange help link)
 1422:         $css_class (optional name for the class to apply to the table for CSS)
 1423:         $no_mt (optional flag, 1 if &mt() is _not_ to be applied to $component
 1424:            when including the text on the right.
 1425: Returns a string containing breadcrumbs for the current page.
 1426: 
 1427: =item clear_breadcrumbs
 1428: 
 1429: Clears the previously stored breadcrumbs.
 1430: 
 1431: =item add_breadcrumb
 1432: 
 1433: Pushes a breadcrumb on the stack of crumbs.
 1434: 
 1435: input: $breadcrumb, a hash reference.  The keys 'href','title', and 'text'
 1436: are required.  If present the keys 'faq' and 'bug' will be used to provide
 1437: links to the FAQ and bug sites. If the key 'no_mt' is present the 'title' 
 1438: and 'text' values won't be sent through &mt()
 1439: 
 1440: returns: nothing    
 1441: 
 1442: =cut
 1443: 
 1444: ############################################################
 1445: ############################################################
 1446: {
 1447:     my @Crumbs;
 1448:     my %tools = ();
 1449:     
 1450:     sub breadcrumbs {
 1451:         my ($component,$component_help,$menulink,$helplink,$css_class,$no_mt, $CourseBreadcrumbs) = @_;
 1452:         #
 1453:         $css_class ||= 'LC_breadcrumbs';
 1454: 
 1455:         # Make the faq and bug data cascade
 1456:         my $faq  = '';
 1457:         my $bug  = '';
 1458:         my $help = '';
 1459:         # Crumb Symbol
 1460:         my $crumbsymbol = '&raquo;';
 1461:         # The last breadcrumb does not have a link, so handle it separately.
 1462:         my $last = pop(@Crumbs);
 1463:         #
 1464:         # The first one should be the course or a menu link
 1465:         if (!defined($menulink)) { $menulink=1; }
 1466:         if ($menulink) {
 1467:             my $description = 'Menu';
 1468:             my $no_mt_descr = 0;
 1469:             if (exists($env{'request.course.id'}) && 
 1470:                 $env{'request.course.id'} ne '') {
 1471:                 $description = 
 1472:                     $env{'course.'.$env{'request.course.id'}.'.description'};
 1473:                 $no_mt_descr = 1;
 1474:             }
 1475:             $menulink =  {  href   =>'/adm/menu',
 1476:                             title  =>'Go to main menu',
 1477:                             target =>'_top',
 1478:                             text   =>$description,
 1479:                             no_mt  =>$no_mt_descr, };
 1480:             if($last) {
 1481:                 #$last set, so we have some crumbs
 1482:                 unshift(@Crumbs,$menulink);
 1483:             } else {
 1484:                 #only menulink crumb present
 1485:                 $last = $menulink;
 1486:             }
 1487:         }
 1488:         my $links = join "", 
 1489:              map {
 1490:                  $faq  = $_->{'faq'}  if (exists($_->{'faq'}));
 1491:                  $bug  = $_->{'bug'}  if (exists($_->{'bug'}));
 1492:                  $help = $_->{'help'} if (exists($_->{'help'}));
 1493: 
 1494:                  my $result = $_->{no_mt} ? $_->{text} : mt($_->{text});
 1495: 
 1496:                  if ($_->{href}){
 1497:                      $result = htmltag( 'a', $result, 
 1498:                        { href   => $_->{href},
 1499:                          title  => $_->{no_mt} ? $_->{title} : mt($_->{title}),
 1500:                          target => $_->{target}, });
 1501:                  }
 1502: 
 1503:                  $result = htmltag( 'li', "$result $crumbsymbol");
 1504:              } @Crumbs;
 1505: 
 1506:         #should the last Element be translated?
 1507: 
 1508:         my $lasttext = $last->{'no_mt'} ? $last->{'text'} 
 1509:                      : mt( $last->{'text'} );
 1510: 
 1511:         $links .= htmltag( 'li', htmltag('b', $lasttext), {title => $lasttext});
 1512: 
 1513:         my $icons = '';
 1514:         $faq  = $last->{'faq'}  if (exists($last->{'faq'}));
 1515:         $bug  = $last->{'bug'}  if (exists($last->{'bug'}));
 1516:         $help = $last->{'help'} if (exists($last->{'help'}));
 1517:         $component_help=($component_help?$component_help:$help);
 1518: #        if ($faq ne '') {
 1519: #            $icons .= &Apache::loncommon::help_open_faq($faq);
 1520: #        }
 1521: #        if ($bug ne '') {
 1522: #            $icons .= &Apache::loncommon::help_open_bug($bug);
 1523: #        }
 1524:         if ($faq ne '' || $component_help ne '' || $bug ne '') {
 1525:             $icons .= &Apache::loncommon::help_open_menu($component,
 1526:                                                          $component_help,
 1527:                                                          $faq,$bug);
 1528:         }
 1529:         #
 1530: 		
 1531: 
 1532:         unless ($CourseBreadcrumbs) {
 1533:             $links = htmltag('ol',  $links, { id => "LC_MenuBreadcrumbs"   });
 1534:         } else {
 1535:             $links = htmltag('ul',  $links, { class => "LC_CourseBreadcrumbs" });
 1536:         }
 1537: 
 1538:         if ($component) {
 1539:             $links = htmltag('span', 
 1540:                              ( $no_mt ? $component : mt($component) ).
 1541:                              ( $icons ? $icons : '' ),
 1542:                              { class => 'LC_breadcrumbs_component' } )
 1543:                              .$links;
 1544:         }
 1545:         
 1546:         render_tools(\$links);
 1547:         $links = htmltag('div', $links, 
 1548:                         { id => "LC_breadcrumbs" }) unless ($CourseBreadcrumbs) ;
 1549:         render_advtools(\$links);
 1550: 
 1551:         # Return the @Crumbs stack to what we started with
 1552:         push(@Crumbs,$last);
 1553:         shift(@Crumbs);
 1554:         # Return the breadcrumb's line
 1555:         return "$links";
 1556:     }
 1557: 
 1558:     sub clear_breadcrumbs {
 1559:         undef(@Crumbs);
 1560:         undef(%tools);
 1561:     }
 1562: 
 1563:     sub add_breadcrumb {
 1564:         push(@Crumbs,@_);
 1565:     }
 1566:     
 1567: =item add_breadcrumb_tool($category, $html)
 1568: 
 1569: Adds $html to $category of the breadcrumb toolbar container.
 1570: 
 1571: $html is usually a link to a page that invokes a function on the currently 
 1572: displayed data (e.g. print when viewing a problem)
 1573: 
 1574: Currently there are 3 possible values for $category: 
 1575: 
 1576: =over 
 1577: 
 1578: =item navigation 
 1579: left of breadcrumbs line
 1580: 
 1581: =item tools 
 1582: right of breadcrumbs line
 1583: 
 1584: =item advtools 
 1585: advanced tools shown in a separate box below breadcrumbs line 
 1586: 
 1587: =back
 1588:  
 1589: returns: nothing
 1590: 
 1591: =cut
 1592: 
 1593:     sub add_breadcrumb_tool {
 1594:         my ($category, @html) = @_;
 1595:         return unless @html;
 1596:         if (!defined(%tools)) { 
 1597:             %tools = ( navigation => [], tools => [], advtools => []);
 1598:         }
 1599: 
 1600:         #this cleans data received from lonmenu::innerregister
 1601:         @html = grep {defined $_ && $_ ne ''} @html;
 1602:         for (@html) { 
 1603:             s/align="(right|left)"//; 
 1604:             s/<span.*?\/span>// if $category ne 'advtools'; 
 1605:         } 
 1606: 
 1607:         push @{$tools{$category}}, @html;
 1608:     }
 1609: 
 1610: =item clear_breadcrumb_tools()
 1611: 
 1612: Clears the breadcrumb toolbar container.
 1613: 
 1614: returns: nothing
 1615: 
 1616: =cut
 1617: 
 1618:     sub clear_breadcrumb_tools {
 1619:         undef(%tools);
 1620:     }
 1621: 
 1622: =item render_tools(\$breadcrumbs)
 1623: 
 1624: Creates html for breadcrumb tools (categories navigation and tools) and inserts 
 1625: \$breadcrumbs at the correct position.
 1626: 
 1627: input: \$breadcrumbs - a reference to the string containing prepared 
 1628: breadcrumbs.
 1629: 
 1630: returns: nothing
 1631: =cut
 1632: 
 1633: #TODO might split this in separate functions for each category
 1634:     sub render_tools {
 1635:         my ($breadcrumbs) = @_;
 1636:         return unless defined %tools;
 1637: 
 1638:         my $navigation = list_from_array($tools{navigation}, 
 1639:                    { listattr => { class=>"LC_breadcrumb_tools_navigation" } });
 1640:         my $tools = list_from_array($tools{tools}, 
 1641:                    { listattr => { class=>"LC_breadcrumb_tools_tools" } });
 1642:         $$breadcrumbs = list_from_array([$navigation, $tools, $$breadcrumbs], 
 1643:                    { listattr => { class=>'LC_breadcrumb_tools_outerlist' } });
 1644:     }
 1645: 
 1646: =item render_advtools(\$breadcrumbs)
 1647: 
 1648: Creates html for advanced tools (category advtools) and inserts \$breadcrumbs 
 1649: at the correct position.
 1650: 
 1651: input: \$breadcrumbs - a reference to the string containing prepared 
 1652: breadcrumbs (after render_tools call).
 1653: 
 1654: returns: nothing
 1655: =cut
 1656: 
 1657:     sub render_advtools {
 1658:         my ($breadcrumbs) = @_;
 1659:         return unless     (defined $tools{'advtools'}) 
 1660:                       and (scalar(@{$tools{'advtools'}}) > 0);
 1661: 
 1662:         $$breadcrumbs .= Apache::loncommon::head_subbox(
 1663:                             funclist_from_array($tools{'advtools'}) );
 1664:     }
 1665: 
 1666: } # End of scope for @Crumbs
 1667: 
 1668: ############################################################
 1669: ############################################################
 1670: 
 1671: # Nested table routines.
 1672: #
 1673: # Routines to display form items in a multi-row table with 2 columns.
 1674: # Uses nested tables to divide form elements into segments.
 1675: # For examples of use see loncom/interface/lonnotify.pm 
 1676: #
 1677: # Can be used in following order: ...
 1678: # &start_pick_box()
 1679: # row1
 1680: # row2
 1681: # row3   ... etc.
 1682: # &submit_row()
 1683: # &end_pick_box()
 1684: #
 1685: # where row1, row 2 etc. are chosen from &role_select_row,&course_select_row,
 1686: # &status_select_row and &email_default_row
 1687: #
 1688: # Can also be used in following order:
 1689: #
 1690: # &start_pick_box()
 1691: # &row_title()
 1692: # &row_closure()
 1693: # &row_title()
 1694: # &row_closure()  ... etc.
 1695: # &submit_row()
 1696: # &end_pick_box()
 1697: #
 1698: # In general a &submit_row() call should proceed the call to &end_pick_box(),
 1699: # as this routine adds a button for form submission.
 1700: # &submit_row() does not require a &row_closure after it.
 1701: #  
 1702: # &start_pick_box() creates a bounding table with 1-pixel wide black border.
 1703: # rows should be placed between calls to &start_pick_box() and &end_pick_box.
 1704: #
 1705: # &row_title() adds a title in the left column for each segment.
 1706: # &row_closure() closes a row with a 1-pixel wide black line.
 1707: #
 1708: # &role_select_row() provides a select box from which to choose 1 or more roles 
 1709: # &course_select_row provides ways of picking groups of courses
 1710: #    radio buttons: all, by category or by picking from a course picker pop-up
 1711: #      note: by category option is only displayed if a domain has implemented 
 1712: #                selection by year, semester, department, number etc.
 1713: #
 1714: # &status_select_row() provides a select box from which to choose 1 or more
 1715: #  access types (current access, prior access, and future access)  
 1716: #
 1717: # &email_default_row() provides text boxes for default e-mail suffixes for
 1718: #  different authentication types in a domain.
 1719: #
 1720: # &row_title() and &row_closure() are called internally by the &*_select_row
 1721: # routines, but can also be called directly to start and end rows which have 
 1722: # needs that are not accommodated by the *_select_row() routines.    
 1723: 
 1724: { # Start: row_count block for pick_box
 1725: my @row_count;
 1726: 
 1727: sub start_pick_box {
 1728:     my ($css_class) = @_;
 1729:     if (defined($css_class)) {
 1730: 	$css_class = 'class="'.$css_class.'"';
 1731:     } else {
 1732: 	$css_class= 'class="LC_pick_box"';
 1733:     }
 1734:     unshift(@row_count,0);
 1735:     my $output = <<"END";
 1736:  <table $css_class>
 1737: END
 1738:     return $output;
 1739: }
 1740: 
 1741: sub end_pick_box {
 1742:     shift(@row_count);
 1743:     my $output = <<"END";
 1744:        </table>
 1745: END
 1746:     return $output;
 1747: }
 1748: 
 1749: sub row_headline {
 1750:     my $output = <<"END";
 1751:            <tr><td colspan="2">
 1752: END
 1753:     return $output;
 1754: }
 1755: 
 1756: sub row_title {
 1757:     my ($title,$css_title_class,$css_value_class, $css_value_furtherAttributes) = @_;
 1758:     $row_count[0]++;
 1759:     my $css_class = ($row_count[0] % 2)?'LC_odd_row':'LC_even_row';
 1760:     $css_title_class ||= 'LC_pick_box_title';
 1761:     $css_title_class = 'class="'.$css_title_class.'"';
 1762: 
 1763:     $css_value_class ||= 'LC_pick_box_value';
 1764: 
 1765:     if ($title ne '') {
 1766:         $title .= ':';
 1767:     }
 1768:     my $output = <<"ENDONE";
 1769:            <tr class="LC_pick_box_row" $css_value_furtherAttributes> 
 1770:             <td $css_title_class>
 1771: 	       $title
 1772:             </td>
 1773:             <td class="$css_value_class $css_class">
 1774: ENDONE
 1775:     return $output;
 1776: }
 1777: 
 1778: sub row_closure {
 1779:     my ($no_separator) =@_;
 1780:     my $output = <<"ENDTWO";
 1781:             </td>
 1782:            </tr>
 1783: ENDTWO
 1784:     if (!$no_separator) {
 1785:         $output .= <<"ENDTWO";
 1786:            <tr>
 1787:             <td colspan="2" class="LC_pick_box_separator">
 1788:             </td>
 1789:            </tr>
 1790: ENDTWO
 1791:     }
 1792:     return $output;
 1793: }
 1794: 
 1795: } # End: row_count block for pick_box
 1796: 
 1797: 
 1798: sub role_select_row {
 1799:     my ($roles,$title,$css_class,$show_separate_custom,$cdom,$cnum) = @_;
 1800:     my $crstype = 'Course';
 1801:     if ($cdom ne '' && $cnum ne '') {
 1802:         $crstype = &Apache::loncommon::course_type($cdom.'_'.$cnum);
 1803:     }
 1804:     my $output;
 1805:     if (defined($title)) {
 1806:         $output = &row_title($title,$css_class);
 1807:     }
 1808:     $output .= qq|
 1809:                                   <select name="roles" multiple="multiple">\n|;
 1810:     foreach my $role (@$roles) {
 1811:         my $plrole;
 1812:         if ($role eq 'ow') {
 1813:             $plrole = &mt('Course Owner');
 1814:         } elsif ($role eq 'cr') {
 1815:             if ($show_separate_custom) {
 1816:                 if ($cdom ne '' && $cnum ne '') {
 1817:                     my %course_customroles = &course_custom_roles($cdom,$cnum);
 1818:                     foreach my $crrole (sort(keys(%course_customroles))) {
 1819:                         my ($plcrrole) = ($crrole =~ m|^cr/[^/]+/[^/]+/(.+)$|);
 1820:                         $output .= '  <option value="'.$crrole.'">'.$plcrrole.
 1821:                                    '</option>';
 1822:                     }
 1823:                 }
 1824:             } else {
 1825:                 $plrole = &mt('Custom Role');
 1826:             }
 1827:         } else {
 1828:             $plrole=&Apache::lonnet::plaintext($role,$crstype);
 1829:         }
 1830:         if (($role ne 'cr') || (!$show_separate_custom)) {
 1831:             $output .= '  <option value="'.$role.'">'.$plrole.'</option>';
 1832:         }
 1833:     }
 1834:     $output .= qq|                </select>\n|;
 1835:     if (defined($title)) {
 1836:         $output .= &row_closure();
 1837:     }
 1838:     return $output;
 1839: }
 1840: 
 1841: sub course_select_row {
 1842:     my ($title,$formname,$totcodes,$codetitles,$idlist,$idlist_titles,
 1843: 	$css_class,$crstype) = @_;
 1844:     my $output = &row_title($title,$css_class);
 1845:     $output .= &course_selection($formname,$totcodes,$codetitles,$idlist,$idlist_titles,$crstype);
 1846:     $output .= &row_closure();
 1847:     return $output;
 1848: }
 1849: 
 1850: sub course_selection {
 1851:     my ($formname,$totcodes,$codetitles,$idlist,$idlist_titles,$crstype) = @_;
 1852:     my $output = qq|
 1853: <script type="text/javascript">
 1854: // <![CDATA[
 1855:     function coursePick (formname) {
 1856:         for  (var i=0; i<formname.coursepick.length; i++) {
 1857:             if (formname.coursepick[i].value == 'category') {
 1858:                 courseSet('');
 1859:             }
 1860:             if (!formname.coursepick[i].checked) {
 1861:                 if (formname.coursepick[i].value == 'specific') {
 1862:                     formname.coursetotal.value = 0;
 1863:                     formname.courselist = '';
 1864:                 }
 1865:             }
 1866:         }
 1867:     }
 1868:     function setPick (formname) {
 1869:         for  (var i=0; i<formname.coursepick.length; i++) {
 1870:             if (formname.coursepick[i].value == 'category') {
 1871:                 formname.coursepick[i].checked = true;
 1872:             }
 1873:             formname.coursetotal.value = 0;
 1874:             formname.courselist = '';
 1875:         }
 1876:     }
 1877: // ]]>
 1878: </script>
 1879:     |;
 1880: 
 1881:     my ($allcrs,$pickspec);
 1882:     if ($crstype eq 'Community') {
 1883:         $allcrs = &mt('All communities');
 1884:         $pickspec = &mt('Pick specific communities:');
 1885:     } else {
 1886:         $allcrs = &mt('All courses');
 1887:         $pickspec = &mt('Pick specific course(s):');
 1888:     }
 1889: 
 1890:     my $courseform='<b>'.&Apache::loncommon::selectcourse_link
 1891:                      ($formname,'pickcourse','pickdomain','coursedesc','',1,$crstype).'</b>';
 1892:         $output .= '<input type="radio" name="coursepick" value="all" onclick="coursePick(this.form)" />'.$allcrs.'<br />';
 1893:     if ($totcodes > 0) {
 1894:         my $numtitles = @$codetitles;
 1895:         if ($numtitles > 0) {
 1896:             $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 />';
 1897:             $output .= '<table><tr><td>'.$$codetitles[0].'<br />'."\n".
 1898:                '<select name="'.$$codetitles[0].
 1899:                '" onChange="setPick(this.form);courseSet('."'$$codetitles[0]'".')">'."\n".
 1900:                ' <option value="-1" />Select'."\n";
 1901:             my @items = ();
 1902:             my @longitems = ();
 1903:             if ($$idlist{$$codetitles[0]} =~ /","/) {
 1904:                 @items = split(/","/,$$idlist{$$codetitles[0]});
 1905:             } else {
 1906:                 $items[0] = $$idlist{$$codetitles[0]};
 1907:             }
 1908:             if (defined($$idlist_titles{$$codetitles[0]})) {
 1909:                 if ($$idlist_titles{$$codetitles[0]} =~ /","/) {
 1910:                     @longitems = split(/","/,$$idlist_titles{$$codetitles[0]});
 1911:                 } else {
 1912:                     $longitems[0] = $$idlist_titles{$$codetitles[0]};
 1913:                 }
 1914:                 for (my $i=0; $i<@longitems; $i++) {
 1915:                     if ($longitems[$i] eq '') {
 1916:                         $longitems[$i] = $items[$i];
 1917:                     }
 1918:                 }
 1919:             } else {
 1920:                 @longitems = @items;
 1921:             }
 1922:             for (my $i=0; $i<@items; $i++) {
 1923:                 $output .= ' <option value="'.$items[$i].'">'.$longitems[$i].'</option>';
 1924:             }
 1925:             $output .= '</select></td>';
 1926:             for (my $i=1; $i<$numtitles; $i++) {
 1927:                 $output .= '<td>'.$$codetitles[$i].'<br />'."\n".
 1928:                           '<select name="'.$$codetitles[$i].
 1929:                           '" onChange="courseSet('."'$$codetitles[$i]'".')">'."\n".
 1930:                           '<option value="-1">&lt;-Pick '.$$codetitles[$i-1].'</option>'."\n".
 1931:                           '</select>'."\n".
 1932:                           '</td>';
 1933:             }
 1934:             $output .= '</tr></table><br />';
 1935:         }
 1936:     }
 1937:     $output .= '<input type="radio" name="coursepick" value="specific" onclick="coursePick(this.form);opencrsbrowser('."'".$formname."','dccourse','dcdomain','coursedesc','','1','$crstype'".')" />'.$pickspec.' '.$courseform.'&nbsp;&nbsp;<input type="text" value="0" size="4" name="coursetotal" /><input type="hidden" name="courselist" value="" />selected.<br />'."\n";
 1938:     return $output;
 1939: }
 1940: 
 1941: sub status_select_row {
 1942:     my ($types,$title,$css_class) = @_;
 1943:     my $output; 
 1944:     if (defined($title)) {
 1945:         $output = &row_title($title,$css_class,'LC_pick_box_select');
 1946:     }
 1947:     $output .= qq|
 1948:                                     <select name="types" multiple="multiple">\n|;
 1949:     foreach my $status_type (sort(keys(%{$types}))) {
 1950:         $output .= '  <option value="'.$status_type.'">'.$$types{$status_type}.'</option>';
 1951:     }
 1952:     $output .= qq|                   </select>\n|; 
 1953:     if (defined($title)) {
 1954:         $output .= &row_closure();
 1955:     }
 1956:     return $output;
 1957: }
 1958: 
 1959: sub email_default_row {
 1960:     my ($authtypes,$title,$descrip,$css_class) = @_;
 1961:     my $output = &row_title($title,$css_class);
 1962:     $output .= $descrip.
 1963: 	&Apache::loncommon::start_data_table().
 1964: 	&Apache::loncommon::start_data_table_header_row().
 1965: 	'<th>'.&mt('Authentication Method').'</th>'.
 1966: 	'<th align="right">'.&mt('Username -> e-mail conversion').'</th>'."\n".
 1967: 	&Apache::loncommon::end_data_table_header_row();
 1968:     my $rownum = 0;
 1969:     foreach my $auth (sort(keys(%{$authtypes}))) {
 1970:         my ($userentry,$size);
 1971:         if ($auth =~ /^krb/) {
 1972:             $userentry = '';
 1973:             $size = 25;
 1974:         } else {
 1975:             $userentry = 'username@';
 1976:             $size = 15;
 1977:         }
 1978:         $output .= &Apache::loncommon::start_data_table_row().
 1979: 	    '<td>  '.$$authtypes{$auth}.'</td>'.
 1980: 	    '<td align="right">'.$userentry.
 1981: 	    '<input type="text" name="'.$auth.'" size="'.$size.'" /></td>'.
 1982: 	    &Apache::loncommon::end_data_table_row();
 1983:     }
 1984:     $output .= &Apache::loncommon::end_data_table();
 1985:     $output .= &row_closure();
 1986:     return $output;
 1987: }
 1988: 
 1989: 
 1990: sub submit_row {
 1991:     my ($title,$cmd,$submit_text,$css_class) = @_;
 1992:     my $output = &row_title($title,$css_class,'LC_pick_box_submit');
 1993:     $output .= qq|
 1994:              <br />
 1995:              <input type="hidden" name="command" value="$cmd" />
 1996:              <input type="submit" value="$submit_text"/> &nbsp;
 1997:              <br /><br />
 1998:             \n|;
 1999:     return $output;
 2000: }
 2001: 
 2002: sub course_custom_roles {
 2003:     my ($cdom,$cnum) = @_;
 2004:     my %returnhash=();
 2005:     my %coursepersonnel=&Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
 2006:     foreach my $person (sort(keys(%coursepersonnel))) {
 2007:         my ($role) = ($person =~ /^([^:]+):/);
 2008:         my ($end,$start) = split(/:/,$coursepersonnel{$person});
 2009:         if ($end == -1 && $start == -1) {
 2010:             next;
 2011:         }
 2012:         if ($role =~ m|^cr/[^/]+/[^/]+/[^/]|) {
 2013:             $returnhash{$role} ++;
 2014:         }
 2015:     }
 2016:     return %returnhash;
 2017: }
 2018: 
 2019: 
 2020: ##############################################
 2021: ##############################################
 2022: 
 2023: # topic_bar
 2024: #
 2025: # Generates a div containing an (optional) number with a white background followed by a 
 2026: # title with a background color defined in the corresponding CSS: LC_topic_bar
 2027: # Inputs:
 2028: # 1. number to display.
 2029: #    If input for number is empty only the title will be displayed. 
 2030: # 2. title text to display.
 2031: # Outputs - a scalar containing html mark-up for the div.
 2032: 
 2033: sub topic_bar {
 2034:     my ($num,$title) = @_;
 2035:     my $number = '';
 2036:     if ($num ne '') {
 2037:         $number = '<span>'.$num.'</span>';
 2038:     }
 2039:     return '<div class="LC_topic_bar">'.$number.$title.'</div>';
 2040: }
 2041: 
 2042: ##############################################
 2043: ##############################################
 2044: # echo_form_input
 2045: #
 2046: # Generates html markup to add form elements from the referrer page
 2047: # as hidden form elements (values encoded) in the new page.
 2048: #
 2049: # Intended to support two types of use 
 2050: # (a) to allow backing up to earlier pages in a multi-page 
 2051: # form submission process using a breadcrumb trail.
 2052: #
 2053: # (b) to allow the current page to be reloaded with form elements
 2054: # set on previous page to remain unchanged.  An example would
 2055: # be where the a page containing a dynamically-built table of data is 
 2056: # is to be redisplayed, with only the sort order of the data changed. 
 2057: #  
 2058: # Inputs:
 2059: # 1. Reference to array of form elements in the submitted form on 
 2060: # the referrer page which are to be excluded from the echoed elements.
 2061: #
 2062: # 2. Reference to array of regular expressions, which if matched in the  
 2063: # name of the form element n the referrer page will be omitted from echo. 
 2064: #
 2065: # Outputs: A scalar containing the html markup for the echoed form
 2066: # elements (all as hidden elements, with values encoded). 
 2067: 
 2068: 
 2069: sub echo_form_input {
 2070:     my ($excluded,$regexps) = @_;
 2071:     my $output = '';
 2072:     foreach my $key (keys(%env)) {
 2073:         if ($key =~ /^form\.(.+)$/) {
 2074:             my $name = $1;
 2075:             my $match = 0;
 2076:             if ((!@{$excluded}) || (!grep/^$name$/,@{$excluded})) {
 2077:                 if (defined($regexps)) {
 2078:                     if (@{$regexps} > 0) {
 2079:                         foreach my $regexp (@{$regexps}) {
 2080:                             if ($name =~ /\Q$regexp\E/) {
 2081:                                 $match = 1;
 2082:                                 last;
 2083:                             }
 2084:                         }
 2085:                     }
 2086:                 }
 2087:                 if (!$match) {
 2088:                     if (ref($env{$key})) {
 2089:                         foreach my $value (@{$env{$key}}) {
 2090:                             $value = &HTML::Entities::encode($value,'<>&"');
 2091:                             $output .= '<input type="hidden" name="'.$name.
 2092:                                              '" value="'.$value.'" />'."\n";
 2093:                         }
 2094:                     } else {
 2095:                         my $value = &HTML::Entities::encode($env{$key},'<>&"');
 2096:                         $output .= '<input type="hidden" name="'.$name.
 2097:                                              '" value="'.$value.'" />'."\n";
 2098:                     }
 2099:                 }
 2100:             }
 2101:         }
 2102:     }
 2103:     return $output;
 2104: }
 2105: 
 2106: ##############################################
 2107: ##############################################
 2108: # set_form_elements
 2109: #
 2110: # Generates javascript to set form elements to values based on
 2111: # corresponding values for the same form elements when the page was
 2112: # previously submitted.
 2113: #     
 2114: # Last submission values are read from hidden form elements in referring 
 2115: # page which have the same name, i.e., generated by &echo_form_input(). 
 2116: #
 2117: # Intended to be called by onload event.
 2118: #
 2119: # Inputs:
 2120: # (a) Reference to hash of echoed form elements to be set.
 2121: #
 2122: # In the hash, keys are the form element names, and the values are the
 2123: # element type (selectbox, radio, checkbox or text -for textbox, textarea or
 2124: # hidden).
 2125: #
 2126: # (b) Optional reference to hash of stored elements to be set.
 2127: #
 2128: # If the page being displayed is a page which permits modification of
 2129: # previously stored data, e.g., the first page in a multi-page submission,
 2130: # then if stored is supplied, form elements will be set to the last stored
 2131: # values.  If user supplied values are also available for the same elements
 2132: # these will replace the stored values. 
 2133: #        
 2134: # Output:
 2135: #  
 2136: # javascript function - set_form_elements() which sets form elements,
 2137: # expects an argument: formname - the name of the form according to 
 2138: # the DOM, e.g., document.compose
 2139: 
 2140: sub set_form_elements {
 2141:     my ($elements,$stored) = @_;
 2142:     my %values;
 2143:     my $output .= 'function setFormElements(courseForm) {
 2144: ';
 2145:     if (defined($stored)) {
 2146:         foreach my $name (keys(%{$stored})) {
 2147:             if (exists($$elements{$name})) {
 2148:                 if (ref($$stored{$name}) eq 'ARRAY') {
 2149:                     $values{$name} = $$stored{$name};
 2150:                 } else {
 2151:                     @{$values{$name}} = ($$stored{$name});
 2152:                 }
 2153:             }
 2154:         }
 2155:     }
 2156: 
 2157:     foreach my $key (keys(%env)) {
 2158:         if ($key =~ /^form\.(.+)$/) {
 2159:             my $name = $1;
 2160:             if (exists($$elements{$name})) {
 2161:                 @{$values{$name}} = &Apache::loncommon::get_env_multiple($key);
 2162:             }
 2163:         }
 2164:     }
 2165: 
 2166:     foreach my $name (keys(%values)) {
 2167:         for (my $i=0; $i<@{$values{$name}}; $i++) {
 2168:             $values{$name}[$i] = &HTML::Entities::decode($values{$name}[$i],'<>&"');
 2169:             $values{$name}[$i] =~ s/([\r\n\f]+)/\\n/g;
 2170:             $values{$name}[$i] =~ s/"/\\"/g;
 2171:         }
 2172:         if (($$elements{$name} eq 'text') || ($$elements{$name} eq 'hidden')) {
 2173:             my $numvalues = @{$values{$name}};
 2174:             if ($numvalues > 1) {
 2175:                 my $valuestring = join('","',@{$values{$name}});
 2176:                 $output .= qq|
 2177:   var textvalues = new Array ("$valuestring");
 2178:   var total = courseForm.elements['$name'].length;
 2179:   if (total > $numvalues) {
 2180:       total = $numvalues;
 2181:   }    
 2182:   for (var i=0; i<total; i++) {
 2183:       courseForm.elements['$name']\[i].value = textvalues[i];
 2184:   }
 2185: |;
 2186:             } else {
 2187:                 $output .= qq|
 2188:   courseForm.elements['$name'].value = "$values{$name}[0]";
 2189: |;
 2190:             }
 2191:         } else {
 2192:             $output .=  qq|
 2193:   var elementLength = courseForm.elements['$name'].length;
 2194:   if (elementLength==undefined) {
 2195: |;
 2196:             foreach my $value (@{$values{$name}}) {
 2197:                 if ($$elements{$name} eq 'selectbox') {
 2198:                     $output .=  qq|
 2199:       if (courseForm.elements['$name'].options[0].value == "$value") {
 2200:           courseForm.elements['$name'].options[0].selected = true;
 2201:       }|;
 2202:                 } elsif (($$elements{$name} eq 'radio') ||
 2203:                          ($$elements{$name} eq 'checkbox')) {
 2204:                     $output .= qq|
 2205:       if (courseForm.elements['$name'].value == "$value") {
 2206:           courseForm.elements['$name'].checked = true;
 2207:       } else {
 2208:           courseForm.elements['$name'].checked = false;
 2209:       }|;
 2210:                 }
 2211:             }
 2212:             $output .= qq|
 2213:   }
 2214:   else {
 2215:       for (var i=0; i<courseForm.elements['$name'].length; i++) {
 2216: |;
 2217:             if ($$elements{$name} eq 'selectbox') {
 2218:                 $output .=  qq|
 2219:           courseForm.elements['$name'].options[i].selected = false;|;
 2220:             } elsif (($$elements{$name} eq 'radio') || 
 2221:                      ($$elements{$name} eq 'checkbox')) {
 2222:                 $output .= qq|
 2223:           courseForm.elements['$name']\[i].checked = false;|; 
 2224:             }
 2225:             $output .= qq|
 2226:       }
 2227:       for (var j=0; j<courseForm.elements['$name'].length; j++) {
 2228: |;
 2229:             foreach my $value (@{$values{$name}}) {
 2230:                 if ($$elements{$name} eq 'selectbox') {
 2231:                     $output .=  qq|
 2232:           if (courseForm.elements['$name'].options[j].value == "$value") {
 2233:               courseForm.elements['$name'].options[j].selected = true;
 2234:           }|;
 2235:                 } elsif (($$elements{$name} eq 'radio') ||
 2236:                          ($$elements{$name} eq 'checkbox')) { 
 2237:                       $output .= qq|
 2238:           if (courseForm.elements['$name']\[j].value == "$value") {
 2239:               courseForm.elements['$name']\[j].checked = true;
 2240:           }|;
 2241:                 }
 2242:             }
 2243:             $output .= qq|
 2244:       }
 2245:   }
 2246: |;
 2247:         }
 2248:     }
 2249:     $output .= "
 2250:     return;
 2251: }\n";
 2252:     return $output;
 2253: }
 2254: 
 2255: ##############################################
 2256: ##############################################
 2257: 
 2258: # javascript_valid_email
 2259: #
 2260: # Generates javascript to validate an e-mail address.
 2261: # Returns a javascript function which accetps a form field as argumnent, and
 2262: # returns false if field.value does not satisfy two regular expression matches
 2263: # for a valid e-mail address.  Backwards compatible with old browsers without
 2264: # support for javascript RegExp (just checks for @ in field.value in this case). 
 2265: 
 2266: sub javascript_valid_email {
 2267:     my $scripttag .= <<'END';
 2268: function validmail(field) {
 2269:     var str = field.value;
 2270:     if (window.RegExp) {
 2271:         var reg1str = "(@.*@)|(\\.\\.)|(@\\.)|(\\.@)|(^\\.)";
 2272:         var reg2str = "^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$"; //"
 2273:         var reg1 = new RegExp(reg1str);
 2274:         var reg2 = new RegExp(reg2str);
 2275:         if (!reg1.test(str) && reg2.test(str)) {
 2276:             return true;
 2277:         }
 2278:         return false;
 2279:     }
 2280:     else
 2281:     {
 2282:         if(str.indexOf("@") >= 0) {
 2283:             return true;
 2284:         }
 2285:         return false;
 2286:     }
 2287: }
 2288: END
 2289:     return $scripttag;
 2290: }
 2291: 
 2292: 
 2293: # USAGE: htmltag(element, content, {attribute => value,...});
 2294: #
 2295: # EXAMPLES: 
 2296: #  - htmltag('a', 'this is an anchor', {href  => 'www.example.com', 
 2297: #                                       title => 'this is a title'})
 2298: #
 2299: #  - You might want to set up needed tags like: 
 2300: #
 2301: #     my $h3  = sub { return htmltag( "h3",  @_ ) };
 2302: #
 2303: #    ... and use them: $h3->("This is a headline")
 2304: #
 2305: #  - To set up a couple of tags, see sub inittags
 2306: #
 2307: # NOTES:
 2308: # - Empty elements, such as <br/> are correctly terminated, 
 2309: #   i.e. htmltag('br') returns <br/> 
 2310: # - Empty attributes (title="") are filtered out.
 2311: # - The function will not check for deprecated attributes.
 2312: #
 2313: # OUTPUT: content enclosed in xhtml conform tags
 2314: sub htmltag{
 2315:     return
 2316:         qq|<$_[0]|
 2317:         . join( '', map { qq| $_="${$_[2]}{$_}"| if ${$_[2]}{$_} } keys %{ $_[2] } )
 2318:         . ($_[1] ? qq|>$_[1]</$_[0]>| : qq|/>|). "\n";
 2319: };
 2320: 
 2321: 
 2322: # USAGE: inittags(@tags);
 2323: #
 2324: # EXAMPLES:
 2325: #  - my ($h1, $h2, $h3) = inittags( qw( h1 h2 h3 ) )
 2326: #    $h1->("This is a headline") #Returns: <h1>This is a headline</h1>
 2327: #
 2328: # NOTES: See sub htmltag for further information.
 2329: #
 2330: # OUTPUT: List of subroutines. 
 2331: sub inittags {
 2332:     my @tags = @_;
 2333:     return map { my $tag = $_;
 2334:                  sub { return htmltag( $tag, @_ ) }
 2335:                } @tags;
 2336: }
 2337: 
 2338: 
 2339: # USAGE: scripttag(scriptcode, [start|end|both]);
 2340: #
 2341: # EXAMPLES: 
 2342: #  - scripttag("alert('Hello World!')", 'both') 
 2343: #    returns:
 2344: #    <script type="text/javascript">
 2345: #    // BEGIN LON-CAPA Internal
 2346: #    alert(Hello World!')
 2347: #    // END LON-CAPA Internal
 2348: #    </script>
 2349: #
 2350: # NOTES:
 2351: # - works currently only for javascripts
 2352: #
 2353: # OUTPUT: 
 2354: # Scriptcode properly enclosed in <script> and CDATA tags (and LC
 2355: # Internal markers if 2nd argument is given)
 2356: sub scripttag {
 2357:     my ( $content, $marker ) = @_;
 2358:     return unless defined $content;
 2359: 
 2360:     my $begin = "\n// BEGIN LON-CAPA Internal\n";
 2361:     my $end   = "\n// END LON-CAPA Internal\n";
 2362: 
 2363:     if ($marker) {
 2364:         $content  = $begin . $content if $marker eq 'start' or $marker eq 'both';
 2365:         $content .= $end              if $marker eq 'end'   or $marker eq 'both';
 2366:     }
 2367: 
 2368:     $content = "\n// <![CDATA[\n$content\n// ]]>\n";
 2369: 
 2370:     return htmltag('script', $content, {type => 'text/javascript'});
 2371: };
 2372: 
 2373: 
 2374: =item list_from_array( \@array, { listattr =>{}, itemattr =>{} } )
 2375: 
 2376: Constructs a XHTML list from \@array.
 2377: 
 2378: input: 
 2379: 
 2380: =over
 2381: 
 2382: =item \@array 
 2383: 
 2384: A reference to the array containing text that will be wrapped in <li></li> tags.
 2385: 
 2386: =item { listattr => {}, itemattr =>{} } 
 2387: 
 2388: Attributes for <ul> and <li> passed in as hash references. 
 2389: See htmltag() for more details.
 2390: 
 2391: =back
 2392:  
 2393: returns: XHTML list as String. 
 2394: 
 2395: =cut   
 2396: 
 2397: # \@items, {listattr => { class => 'abc', id => 'xyx' }, itemattr => {class => 'abc', id => 'xyx'}}
 2398: sub list_from_array {
 2399:     my ($items, $args) = @_;
 2400:     my ($ul, $li) = inittags( qw(ul li) );
 2401:     my $listitems = join '', map { $li->($_, $args->{itemattr}) } @$items;
 2402:     return $ul->( $listitems, $args->{listattr} );
 2403: }
 2404: 
 2405: 
 2406: ##############################################
 2407: ##############################################
 2408: 
 2409: # generate_menu
 2410: #
 2411: # Generates html markup for a menu. 
 2412: #
 2413: # Inputs:
 2414: # An array of following structure:
 2415: #   ({	categorytitle => 'Categorytitle',
 2416: #	items => [
 2417: #		    {	
 2418: #           linktext    =>	'Text to be displayed',
 2419: #			url	        =>	'URL the link is pointing to, i.e. /adm/site?action=dosomething',
 2420: #			permission  =>	'Contains permissions as returned from lonnet::allowed(),
 2421: #					         must evaluate to true in order to activate the link',
 2422: #			icon        =>  'icon filename',
 2423: #			alttext	    =>	'alt text for the icon',
 2424: #			help	    =>	'Name of the corresponding helpfile',
 2425: #			linktitle   =>	'Description of the link (used for title tag)'
 2426: #		    },
 2427: #		    ...
 2428: #		]
 2429: #   }, 
 2430: #   ...
 2431: #   )
 2432: #
 2433: # Outputs: A scalar containing the html markup for the menu.
 2434: 
 2435: sub generate_menu {
 2436:     my @menu = @_;
 2437:     # subs for specific html elements
 2438:     my ($h3, $div, $ul, $li, $a, $img) = inittags( qw(h3 div ul li a img) ); 
 2439:     
 2440:     my @categories; # each element represents the entire markup for a category
 2441:    
 2442:     foreach my $category (@menu) {
 2443:         my @links;  # contains the links for the current $category
 2444:         foreach my $link (@{$$category{items}}) {
 2445:             next unless $$link{permission};
 2446:             
 2447:             # create the markup for the current $link and push it into @links.
 2448:             # each entry consists of an image and a text optionally followed 
 2449:             # by a help link.
 2450:             push(@links,$li->(
 2451:                         $a->(
 2452:                             $img->("", {
 2453:                                 class => "LC_noBorder LC_middle",
 2454:                                 src   => "/res/adm/pages/$$link{icon}",
 2455:                                 alt   => mt(defined($$link{alttext}) ?
 2456:                                 $$link{alttext} : $$link{linktext})
 2457:                             }), {
 2458:                             href  => $$link{url},
 2459:                             title => mt($$link{linktitle})
 2460:                             }).
 2461:                         $a->(mt($$link{linktext}), {
 2462:                             href  => $$link{url},
 2463:                             title => mt($$link{linktitle}),
 2464:                             class => "LC_menubuttons_link"
 2465:                             }).
 2466:                          (defined($$link{help}) ? 
 2467:                          Apache::loncommon::help_open_topic($$link{help}) : ''),
 2468:                          {class => "LC_menubuttons_inline_text"}));
 2469:         }
 2470: 
 2471:         # wrap categorytitle in <h3>, concatenate with 
 2472:         # joined and in <ul> tags wrapped @links
 2473:         # and wrap everything in an enclosing <div> and push it into
 2474:         # @categories
 2475:         # such that each element looks like:
 2476:         # <div><h3>title</h3><ul><li>...</li>...</ul></div>
 2477:         # the category won't be added if there aren't any links
 2478:         push(@categories, 
 2479:             $div->($h3->(mt($$category{categorytitle}), {class=>"LC_hcell"}).
 2480:             $ul->(join('' ,@links),  {class =>"LC_ListStyleNormal" }),
 2481:             {class=>"LC_Box LC_400Box"})) if scalar(@links);
 2482:     }
 2483: 
 2484:     # wrap the joined @categories in another <div> (column layout)
 2485:     return $div->(join('', @categories), {class => "LC_columnSection"});
 2486: }
 2487: 
 2488: ##############################################
 2489: ##############################################
 2490: 
 2491: =pod
 2492: 
 2493: =item &start_funclist
 2494: 
 2495: Start list of available functions
 2496: 
 2497: Typically used to offer a simple list of available functions
 2498: at top or bottom of page.
 2499: All available functions/actions for the current page
 2500: should be included in this list.
 2501: 
 2502: If the optional headline text is not provided, a default text will be used.
 2503: 
 2504: 
 2505: Related routines:
 2506: =over 4
 2507: add_item_funclist
 2508: end_funclist
 2509: =back
 2510: 
 2511: 
 2512: Inputs: (optional) headline text
 2513: 
 2514: Returns: HTML code with function list start
 2515: 
 2516: =cut
 2517: 
 2518: ##############################################
 2519: ##############################################
 2520: 
 2521: sub start_funclist {
 2522:     my($legendtext)=@_;
 2523:     $legendtext=&mt('Functions') if !$legendtext;
 2524:     return '<ul class="LC_funclist"><li style="font-weight:bold; margin-left:0.8em;">'.$legendtext.'</li>'."\n";
 2525: }
 2526: 
 2527: 
 2528: ##############################################
 2529: ##############################################
 2530: 
 2531: =pod
 2532: 
 2533: =item &add_item_funclist
 2534: 
 2535: Adds an item to the list of available functions
 2536: 
 2537: Related routines:
 2538: =over 4
 2539: start_funclist
 2540: end_funclist
 2541: =back
 2542: 
 2543: Inputs: content item with text and link to function
 2544: 
 2545: Returns: HTML code with list item for funclist
 2546: 
 2547: =cut
 2548: 
 2549: ##############################################
 2550: ##############################################
 2551: 
 2552: sub add_item_funclist {
 2553:     my($content) = @_;
 2554:     return '<li>'.$content.'</li>'."\n";
 2555: }
 2556: 
 2557: =pod
 2558: 
 2559: =item &end_funclist
 2560: 
 2561: End list of available functions
 2562: 
 2563: Related routines:
 2564: =over 4
 2565: start_funclist
 2566: add_item_funclist
 2567: =back
 2568: 
 2569: Inputs: ./.
 2570: 
 2571: Returns: HTML code with function list end
 2572: =cut
 2573: 
 2574: sub end_funclist {
 2575:     return "</ul>\n";
 2576: }
 2577: 
 2578: =pod
 2579: 
 2580: =item funclist_from_array( \@array, {legend => 'text for legend'} )
 2581: 
 2582: Constructs a XHTML list from \@array with the first item being visually
 2583: highlighted and set to the value of legend or 'Functions' if legend is
 2584: empty. 
 2585: 
 2586: =over
 2587: 
 2588: =item \@array
 2589: 
 2590: A reference to the array containing text that will be wrapped in <li></li> tags.
 2591: 
 2592: =item { legend => 'text' }
 2593: 
 2594: A string that's used as visually highlighted first item. 'Functions' is used if
 2595: it's value evaluates to false.
 2596: 
 2597: =back
 2598:  
 2599: returns: XHTML list as string. 
 2600: 
 2601: =back
 2602: 
 2603: =cut  
 2604: 
 2605: sub funclist_from_array {
 2606:     my ($items, $args) = @_;
 2607:     $args->{legend} ||= mt('Functions');
 2608:     return list_from_array( [$args->{legend}, @$items], 
 2609:                { listattr => {class => 'LC_funclist'} });
 2610: }   
 2611: 
 2612: 1;
 2613: 
 2614: __END__

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