Annotation of loncom/interface/lonhtmlcommon.pm, revision 1.251

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

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