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