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