Annotation of loncom/interface/lonhtmlcommon.pm, revision 1.331
1.2 www 1: # The LearningOnline Network with CAPA
2: # a pile of common html routines
3: #
1.331 ! raeburn 4: # $Id: lonhtmlcommon.pm,v 1.330 2012/11/08 18:37:44 raeburn 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.286 www 63: use HTML::Entities();
1.330 raeburn 64: use LONCAPA qw(:DEFAULT :match);
1.1 stredwic 65:
1.284 www 66: sub java_not_enabled {
67: return "\n".'<span class="LC_error">'.
68: &mt('The required Java applet could not be started. Please make sure to have Java installed and active in your browser.').
69: "</span>\n";
70: }
1.247 www 71:
72: sub coursepreflink {
73: my ($text,$category)=@_;
74: if (&Apache::lonnet::allowed('opa',$env{'request.course.id'})) {
1.296 www 75: return '<a target="_top" href="'.&HTML::Entities::encode("/adm/courseprefs?phase=display&actions=$category",'<>&"').'"><span class="LC_setting">'.$text.'</span></a>';
1.247 www 76: } else {
77: return '';
78: }
79: }
80:
1.253 www 81: sub raw_href_to_link {
82: my ($message)=@_;
1.264 faziophi 83: $message=~s/(https?\:\/\/[^\s\'\"\<]+)([\s\<]|$)/<a href="$1"><tt>$1<\/tt><\/a>$2/gi;
1.253 www 84: return $message;
85: }
86:
1.286 www 87: sub entity_encode {
88: my ($text)=@_;
89: return &HTML::Entities::encode($text, '<>&"');
90: }
91:
92: sub direct_parm_link {
93: my ($linktext,$symb,$filter,$part,$target)=@_;
94: $symb=&entity_encode($symb);
95: $filter=&entity_encode($filter);
96: $part=&entity_encode($part);
97: if (($symb) && (&Apache::lonnet::allowed('opa')) && ($target ne 'tex')) {
1.315 raeburn 98: return "<a target='_top' href='/adm/parmset?symb=$symb&filter=$filter&part=$part'><span class='LC_setting'>$linktext</span></a>";
1.286 www 99: } else {
100: return $linktext;
101: }
102: }
1.208 www 103: ##############################################
104: ##############################################
105:
1.309 raeburn 106: =item &confirm_success()
1.208 www 107:
108: Successful completion of an operation message
109:
110: =cut
111:
112: sub confirm_success {
1.209 www 113: my ($message,$failure)=@_;
114: if ($failure) {
1.265 wenzelju 115: return '<span class="LC_error" style="font-size: inherit;">'."\n"
1.218 bisitz 116: .'<img src="/adm/lonIcons/navmap.wrong.gif" alt="'.&mt('Error').'" /> '."\n"
1.211 bisitz 117: .$message."\n"
118: .'</span>'."\n";
1.209 www 119: } else {
1.211 bisitz 120: return '<span class="LC_success">'."\n"
1.233 raeburn 121: .'<img src="/adm/lonIcons/navmap.correct.gif" alt="'.&mt('OK').'" /> '."\n"
1.211 bisitz 122: .$message."\n"
123: .'</span>'."\n";
1.209 www 124: }
1.208 www 125: }
1.176 foxr 126:
127: ##############################################
128: ##############################################
129:
130: =pod
131:
1.309 raeburn 132: =item &dragmath_button()
1.176 foxr 133:
1.177 raeburn 134: Creates a button that launches a dragmath popup-window, in which an
135: expression can be edited and pasted as LaTeX into a specified textarea.
136:
137: textarea - Name of the textarea to edit.
138: helpicon - If true, show a help icon to the right of the button.
1.176 foxr 139:
140: =cut
141:
1.177 raeburn 142: sub dragmath_button {
143: my ($textarea,$helpicon) = @_;
144: my $help_text;
145: if ($helpicon) {
1.282 raeburn 146: $help_text = &Apache::loncommon::help_open_topic('Authoring_Math_Editor',undef,undef,undef,undef,'mathhelpicon_'.$textarea);
1.177 raeburn 147: }
1.178 bisitz 148: my $buttontext=&mt('Edit Math');
1.177 raeburn 149: return <<ENDDRAGMATH;
1.246 bisitz 150: <input type="button" value="$buttontext" onclick="javascript:mathedit('$textarea',document)" />$help_text
1.177 raeburn 151: ENDDRAGMATH
152: }
153:
1.176 foxr 154: ##############################################
155:
1.177 raeburn 156: =pod
157:
1.309 raeburn 158: =item &dragmath_js()
1.177 raeburn 159:
160: Javascript used to open pop-up window containing dragmath applet which
161: can be used to paste LaTeX into a textarea.
1.309 raeburn 162:
1.177 raeburn 163: =cut
1.176 foxr 164:
1.177 raeburn 165: sub dragmath_js {
1.182 foxr 166: my ($popup) = @_;
1.177 raeburn 167: return <<ENDDRAGMATHJS;
168: <script type="text/javascript">
1.218 bisitz 169: // <![CDATA[
1.176 foxr 170: function mathedit(textarea, doc) {
171: targetEntry = textarea;
1.177 raeburn 172: targetDoc = doc;
1.182 foxr 173: newwin = window.open("/adm/dragmath/applet/$popup.html","","width=565,height=500,resizable");
1.176 foxr 174: }
1.218 bisitz 175: // ]]>
1.176 foxr 176: </script>
1.177 raeburn 177:
178: ENDDRAGMATHJS
1.176 foxr 179: }
180:
1.309 raeburn 181: ##############################################
182: ##############################################
183:
184: =pod
185:
186: =item &dependencies_button()
187:
188: Creates a button that launches a popup-window, in which dependencies
189: for the web page in the main window can be added to, replaced or deleted.
190:
191: =cut
192:
193: sub dependencies_button {
194: my $buttontext=&mt('Manage Dependencies');
195: return <<"END";
196: <input type="button" value="$buttontext" onclick="javascript:dependencycheck();" />
197: END
198: }
199:
200: ##############################################
201:
202: =pod
203:
204: =item &dependencycheck_js()
205:
206: Javascript used to open pop-up window containing interface to manage
207: dependencies for a web page uploaded diretcly to a course.
208:
209: =cut
210:
211: sub dependencycheck_js {
1.319 raeburn 212: my ($symb,$title,$url) = @_;
1.309 raeburn 213: my $link = '/adm/dependencies?symb='.&HTML::Entities::encode($symb,'<>&"').
1.319 raeburn 214: '&title='.&HTML::Entities::encode($title,'<>&"').
215: '&url='.&HTML::Entities::encode($url,'<>&"');
1.309 raeburn 216: return <<ENDJS;
217: <script type="text/javascript">
218: // <![CDATA[
219: function dependencycheck() {
220: depwin = window.open("$link","","width=750,height=500,resizable,scrollbars=yes");
221: }
222: // ]]>
223: </script>
224: ENDJS
225: }
1.182 foxr 226:
1.40 www 227: ##############################################
228: ##############################################
229:
230: =pod
231:
1.309 raeburn 232: =item &authorbombs()
1.40 www 233:
234: =cut
235:
236: ##############################################
237: ##############################################
238:
239: sub authorbombs {
240: my $url=shift;
241: $url=&Apache::lonnet::declutter($url);
1.155 albertel 242: my ($udom,$uname)=($url=~m{^($LONCAPA::domain_re)/($LONCAPA::username_re)/});
1.40 www 243: my %bombs=&Apache::lonmsg::all_url_author_res_msg($uname,$udom);
1.232 raeburn 244: foreach my $bomb (keys(%bombs)) {
245: if ($bomb =~ /^$udom\/$uname\//) {
1.40 www 246: return '<a href="/adm/bombs/'.$url.
1.218 bisitz 247: '"><img src="'.&Apache::loncommon::lonhttpdurl('/adm/lonMisc/bomb.gif').'" alt="'.&mt('Bomb').'" border="0" /></a>'.
1.40 www 248: &Apache::loncommon::help_open_topic('About_Bombs');
249: }
250: }
251: return '';
252: }
1.26 matthew 253:
254: ##############################################
255: ##############################################
256:
1.41 www 257: sub recent_filename {
258: my $area=shift;
1.130 www 259: return 'nohist_recent_'.&escape($area);
1.41 www 260: }
261:
262: sub store_recent {
1.136 albertel 263: my ($area,$name,$value,$freeze)=@_;
1.41 www 264: my $file=&recent_filename($area);
265: my %recent=&Apache::lonnet::dump($file);
1.111 www 266: if (scalar(keys(%recent))>20) {
1.41 www 267: # remove oldest value
1.136 albertel 268: my $oldest=time();
1.41 www 269: my $delkey='';
1.136 albertel 270: foreach my $item (keys(%recent)) {
271: my $thistime=(split(/\&/,$recent{$item}))[0];
272: if (($thistime ne "always_include") && ($thistime<$oldest)) {
1.41 www 273: $oldest=$thistime;
1.136 albertel 274: $delkey=$item;
1.41 www 275: }
276: }
277: &Apache::lonnet::del($file,[$delkey]);
278: }
279: # store new value
1.136 albertel 280: my $timestamp;
281: if ($freeze) {
282: $timestamp = "always_include";
283: } else {
284: $timestamp = time();
285: }
1.41 www 286: &Apache::lonnet::put($file,{ $name =>
1.136 albertel 287: $timestamp.'&'.&escape($value) });
1.41 www 288: }
289:
1.89 banghart 290: sub remove_recent {
291: my ($area,$names)=@_;
292: my $file=&recent_filename($area);
293: return &Apache::lonnet::del($file,$names);
294: }
295:
1.41 www 296: sub select_recent {
297: my ($area,$fieldname,$event)=@_;
298: my %recent=&Apache::lonnet::dump(&recent_filename($area));
299: my $return="\n<select name='$fieldname'".
1.96 albertel 300: ($event?" onchange='$event'":'').
1.41 www 301: ">\n<option value=''>--- ".&mt('Recent')." ---</option>";
1.136 albertel 302: foreach my $value (sort(keys(%recent))) {
303: unless ($value =~/^error\:/) {
304: my $escaped = &Apache::loncommon::escape_url($value);
1.160 albertel 305: &Apache::loncommon::inhibit_menu_check(\$escaped);
1.251 raeburn 306: if ($area eq 'residx') {
307: next if ((!&Apache::lonnet::allowed('bre',$value)) && (!&Apache::lonnet::allowed('bro',$value)));
308: }
1.94 foxr 309: $return.="\n<option value='$escaped'>".
1.136 albertel 310: &unescape((split(/\&/,$recent{$value}))[1]).
1.41 www 311: '</option>';
312: }
313: }
314: $return.="\n</select>\n";
315: return $return;
316: }
317:
1.97 albertel 318: sub get_recent {
319: my ($area, $n) = @_;
320: my %recent=&Apache::lonnet::dump(&recent_filename($area));
321:
322: # Create hash with key as time and recent as value
1.136 albertel 323: # Begin filling return_hash with any 'always_include' option
1.97 albertel 324: my %time_hash = ();
1.136 albertel 325: my %return_hash = ();
1.232 raeburn 326: foreach my $item (keys(%recent)) {
1.136 albertel 327: my ($thistime,$thisvalue)=(split(/\&/,$recent{$item}));
328: if ($thistime eq 'always_include') {
329: $return_hash{$item} = &unescape($thisvalue);
330: $n--;
331: } else {
332: $time_hash{$thistime} = $item;
1.133 albertel 333: }
1.97 albertel 334: }
335:
336: # Sort by decreasing time and return key value pairs
337: my $idx = 1;
1.136 albertel 338: foreach my $item (reverse(sort(keys(%time_hash)))) {
339: $return_hash{$time_hash{$item}} =
340: &unescape((split(/\&/,$recent{$time_hash{$item}}))[1]);
1.97 albertel 341: if ($n && ($idx++ >= $n)) {last;}
342: }
343:
344: return %return_hash;
345: }
346:
1.136 albertel 347: sub get_recent_frozen {
348: my ($area) = @_;
349: my %recent=&Apache::lonnet::dump(&recent_filename($area));
350:
351: # Create hash with all 'frozen' items
352: my %return_hash = ();
353: foreach my $item (keys(%recent)) {
354: my ($thistime,$thisvalue)=(split(/\&/,$recent{$item}));
355: if ($thistime eq 'always_include') {
356: $return_hash{$item} = &unescape($thisvalue);
357: }
358: }
359: return %return_hash;
360: }
361:
1.97 albertel 362:
1.41 www 363:
1.26 matthew 364: =pod
365:
1.309 raeburn 366: =item &textbox()
1.26 matthew 367:
368: =cut
369:
370: ##############################################
371: ##############################################
372: sub textbox {
373: my ($name,$value,$size,$special) = @_;
374: $size = 40 if (! defined($size));
1.128 albertel 375: $value = &HTML::Entities::encode($value,'<>&"');
1.26 matthew 376: my $Str = '<input type="text" name="'.$name.'" size="'.$size.'" '.
377: 'value="'.$value.'" '.$special.' />';
378: return $Str;
379: }
380:
381: ##############################################
382: ##############################################
383:
384: =pod
385:
1.309 raeburn 386: =item &checkbox()
1.26 matthew 387:
388: =cut
389:
390: ##############################################
391: ##############################################
392: sub checkbox {
1.68 matthew 393: my ($name,$checked,$value) = @_;
394: my $Str = '<input type="checkbox" name="'.$name.'" ';
395: if (defined($value)) {
396: $Str .= 'value="'.$value.'"';
397: }
398: if ($checked) {
1.206 bisitz 399: $Str .= ' checked="checked"';
1.68 matthew 400: }
401: $Str .= ' />';
1.26 matthew 402: return $Str;
403: }
404:
1.120 albertel 405:
406: =pod
407:
1.309 raeburn 408: =item &radiobutton()
1.120 albertel 409:
410: =cut
411:
412: ##############################################
413: ##############################################
414: sub radio {
415: my ($name,$checked,$value) = @_;
416: my $Str = '<input type="radio" name="'.$name.'" ';
417: if (defined($value)) {
418: $Str .= 'value="'.$value.'"';
419: }
420: if ($checked eq $value) {
1.206 bisitz 421: $Str .= ' checked="checked"';
1.120 albertel 422: }
423: $Str .= ' />';
424: return $Str;
425: }
426:
1.10 matthew 427: ##############################################
428: ##############################################
429:
430: =pod
431:
1.309 raeburn 432: =item &date_setter()
1.10 matthew 433:
1.22 matthew 434: &date_setter returns html and javascript for a compact date-setting form.
1.309 raeburn 435: To retrieve values from it, use &get_date_from_form.
1.22 matthew 436:
1.10 matthew 437: Inputs
438:
439: =over 4
440:
441: =item $dname
442:
443: The name to prepend to the form elements.
444: The form elements defined will be dname_year, dname_month, dname_day,
445: dname_hour, dname_min, and dname_sec.
446:
447: =item $currentvalue
448:
449: The current setting for this time parameter. A unix format time
450: (time in seconds since the beginning of Jan 1st, 1970, GMT.
1.257 faziophi 451: An undefined value is taken to indicate the value is the current time
452: unless it is requested to leave it empty. See $includeempty.
1.10 matthew 453: Also, to be explicit, a value of 'now' also indicates the current time.
454:
1.26 matthew 455: =item $special
456:
457: Additional html/javascript to be associated with each element in
458: the date_setter. See lonparmset for example usage.
459:
1.59 matthew 460: =item $includeempty
461:
1.257 faziophi 462: If it is set (true) and no date/time value is provided,
463: the date/time fields are left empty.
464:
1.59 matthew 465: =item $state
466:
467: Specifies the initial state of the form elements. Either 'disabled' or empty.
468: Defaults to empty, which indiciates the form elements are not disabled.
469:
1.22 matthew 470: =back
471:
472: Bugs
473:
474: The method used to restrict user input will fail in the year 2400.
475:
1.10 matthew 476: =cut
477:
478: ##############################################
479: ##############################################
480: sub date_setter {
1.67 matthew 481: my ($formname,$dname,$currentvalue,$special,$includeempty,$state,
1.134 raeburn 482: $no_hh_mm_ss,$defhour,$defmin,$defsec,$nolink) = @_;
1.175 raeburn 483: my $now = time;
1.257 faziophi 484:
485: my $tzname;
486: my ($sec,$min,$hour,$mday,$month,$year) = ('', '', undef,''.''.'');
487: #other potentially useful values: wkday,yrday,is_daylight_savings
488:
1.59 matthew 489: if (! defined($state) || $state ne 'disabled') {
490: $state = '';
491: }
1.67 matthew 492: if (! defined($no_hh_mm_ss)) {
493: $no_hh_mm_ss = 0;
494: }
1.110 www 495: if ($currentvalue eq 'now') {
1.257 faziophi 496: $currentvalue = $now;
1.110 www 497: }
1.257 faziophi 498:
499: # Default value: Set empty date field to current time
500: # unless empty inclusion is requested
501: if ((!$includeempty) && (!$currentvalue)) {
502: $currentvalue = $now;
1.10 matthew 503: }
1.257 faziophi 504: # Do we have a date? Split it!
1.39 www 505: if ($currentvalue) {
1.257 faziophi 506: ($tzname,$sec,$min,$hour,$mday,$month,$year) = &get_timedates($currentvalue);
507:
508: #No values provided for hour, min, sec? Use default 0
509: if (($defhour) || ($defmin) || ($defsec)) {
510: $sec = ($defsec ? $defsec : 0);
511: $min = ($defmin ? $defmin : 0);
512: $hour = ($defhour ? $defhour : 0);
513: }
1.107 www 514: }
1.10 matthew 515: my $result = "\n<!-- $dname date setting form -->\n";
516: $result .= <<ENDJS;
1.135 albertel 517: <script type="text/javascript">
1.218 bisitz 518: // <![CDATA[
1.10 matthew 519: function $dname\_checkday() {
520: var day = document.$formname.$dname\_day.value;
521: var month = document.$formname.$dname\_month.value;
522: var year = document.$formname.$dname\_year.value;
523: var valid = true;
524: if (day < 1) {
525: document.$formname.$dname\_day.value = 1;
526: }
527: if (day > 31) {
528: document.$formname.$dname\_day.value = 31;
529: }
530: if ((month == 1) || (month == 3) || (month == 5) ||
531: (month == 7) || (month == 8) || (month == 10) ||
532: (month == 12)) {
533: if (day > 31) {
534: document.$formname.$dname\_day.value = 31;
535: day = 31;
536: }
537: } else if (month == 2 ) {
538: if ((year % 4 == 0) && (year % 100 != 0)) {
539: if (day > 29) {
540: document.$formname.$dname\_day.value = 29;
541: }
542: } else if (day > 29) {
543: document.$formname.$dname\_day.value = 28;
544: }
545: } else if (day > 30) {
546: document.$formname.$dname\_day.value = 30;
547: }
548: }
1.95 matthew 549:
1.59 matthew 550: function $dname\_disable() {
551: document.$formname.$dname\_month.disabled=true;
552: document.$formname.$dname\_day.disabled=true;
553: document.$formname.$dname\_year.disabled=true;
554: document.$formname.$dname\_hour.disabled=true;
555: document.$formname.$dname\_minute.disabled=true;
556: document.$formname.$dname\_second.disabled=true;
557: }
558:
559: function $dname\_enable() {
560: document.$formname.$dname\_month.disabled=false;
561: document.$formname.$dname\_day.disabled=false;
562: document.$formname.$dname\_year.disabled=false;
563: document.$formname.$dname\_hour.disabled=false;
564: document.$formname.$dname\_minute.disabled=false;
565: document.$formname.$dname\_second.disabled=false;
566: }
567:
1.29 www 568: function $dname\_opencalendar() {
1.59 matthew 569: if (! document.$formname.$dname\_month.disabled) {
570: var calwin=window.open(
1.29 www 571: "/adm/announcements?pickdate=yes&formname=$formname&element=$dname&month="+
572: document.$formname.$dname\_month.value+"&year="+
573: document.$formname.$dname\_year.value,
574: "LONCAPAcal",
575: "height=350,width=350,scrollbars=yes,resizable=yes,menubar=no");
1.59 matthew 576: }
1.29 www 577:
578: }
1.218 bisitz 579: // ]]>
1.10 matthew 580: </script>
581: ENDJS
1.192 bisitz 582: $result .= ' <span class="LC_nobreak">';
1.96 albertel 583: my $monthselector = qq{<select name="$dname\_month" $special $state onchange="javascript:$dname\_checkday()" >};
1.67 matthew 584: # Month
1.10 matthew 585: my @Months = qw/January February March April May June
586: July August September October November December/;
587: # Pad @Months with a bogus value to make indexing easier
588: unshift(@Months,'If you can read this an error occurred');
1.95 matthew 589: if ($includeempty) { $monthselector.="<option value=''></option>"; }
1.10 matthew 590: for(my $m = 1;$m <=$#Months;$m++) {
1.228 bisitz 591: $monthselector .= qq{ <option value="$m"};
592: $monthselector .= ' selected="selected"' if ($m-1 eq $month);
593: $monthselector .= '> '.&mt($Months[$m]).' </option>'."\n";
1.10 matthew 594: }
1.95 matthew 595: $monthselector.= ' </select>';
1.67 matthew 596: # Day
1.96 albertel 597: my $dayselector = qq{<input type="text" name="$dname\_day" $state value="$mday" size="3" $special onchange="javascript:$dname\_checkday()" />};
1.67 matthew 598: # Year
1.226 bisitz 599: my $yearselector = qq{<input type="text" name="$dname\_year" $state value="$year" size="5" $special onchange="javascript:$dname\_checkday()" />};
1.95 matthew 600: #
601: my $hourselector = qq{<select name="$dname\_hour" $special $state >};
602: if ($includeempty) {
603: $hourselector.=qq{<option value=''></option>};
604: }
605: for (my $h = 0;$h<24;$h++) {
1.228 bisitz 606: $hourselector .= qq{<option value="$h"};
607: $hourselector .= ' selected="selected"' if (defined($hour) && $hour == $h);
1.95 matthew 608: $hourselector .= ">";
609: my $timest='';
610: if ($h == 0) {
611: $timest .= "12 am";
612: } elsif($h == 12) {
613: $timest .= "12 noon";
614: } elsif($h < 12) {
615: $timest .= "$h am";
616: } else {
617: $timest .= $h-12 ." pm";
618: }
619: $timest=&mt($timest);
620: $hourselector .= $timest." </option>\n";
621: }
622: $hourselector .= " </select>\n";
623: my $minuteselector = qq{<input type="text" name="$dname\_minute" $special $state value="$min" size="3" />};
624: my $secondselector= qq{<input type="text" name="$dname\_second" $special $state value="$sec" size="3" />};
1.134 raeburn 625: my $cal_link;
626: if (!$nolink) {
627: $cal_link = qq{<a href="javascript:$dname\_opencalendar()">};
628: }
1.95 matthew 629: #
1.175 raeburn 630: my $tzone = ' '.$tzname.' ';
1.95 matthew 631: if ($no_hh_mm_ss) {
1.134 raeburn 632: $result .= &mt('[_1] [_2] [_3] ',
1.174 raeburn 633: $monthselector,$dayselector,$yearselector).
634: $tzone;
1.134 raeburn 635: if (!$nolink) {
1.141 albertel 636: $result .= &mt('[_1]Select Date[_2]',$cal_link,'</a>');
1.134 raeburn 637: }
1.95 matthew 638: } else {
1.134 raeburn 639: $result .= &mt('[_1] [_2] [_3] [_4] [_5]m [_6]s ',
640: $monthselector,$dayselector,$yearselector,
1.174 raeburn 641: $hourselector,$minuteselector,$secondselector).
642: $tzone;
1.134 raeburn 643: if (!$nolink) {
1.141 albertel 644: $result .= &mt('[_1]Select Date[_2]',$cal_link,'</a>');
1.134 raeburn 645: }
1.67 matthew 646: }
1.135 albertel 647: $result .= "</span>\n<!-- end $dname date setting form -->\n";
1.10 matthew 648: return $result;
649: }
650:
1.175 raeburn 651: sub get_timedates {
652: my ($epoch) = @_;
653: my $dt = DateTime->from_epoch(epoch => $epoch)
654: ->set_time_zone(&Apache::lonlocal::gettimezone());
655: my $tzname = $dt->time_zone_short_name();
656: my $sec = $dt->second;
657: my $min = $dt->minute;
658: my $hour = $dt->hour;
659: my $mday = $dt->day;
660: my $month = $dt->month;
661: if ($month) {
662: $month --;
663: }
664: my $year = $dt->year;
665: return ($tzname,$sec,$min,$hour,$mday,$month,$year);
666: }
1.166 banghart 667:
668: sub build_url {
669: my ($base, $fields)=@_;
670: my $url;
671: $url = $base.'?';
1.168 albertel 672: foreach my $key (keys(%$fields)) {
673: $url.=&escape($key).'='.&escape($$fields{$key}).'&';
1.166 banghart 674: }
675: $url =~ s/&$//;
676: return $url;
677: }
678:
679:
1.10 matthew 680: ##############################################
681: ##############################################
682:
1.22 matthew 683: =pod
684:
1.309 raeburn 685: =item &get_date_from_form()
1.22 matthew 686:
687: get_date_from_form retrieves the date specified in an &date_setter form.
1.10 matthew 688:
689: Inputs:
690:
691: =over 4
692:
693: =item $dname
694:
1.226 bisitz 695: The name passed to &date_setter, which prefixes the form elements.
1.10 matthew 696:
697: =item $defaulttime
698:
699: The unix time to use as the default in case of poor inputs.
700:
701: =back
702:
703: Returns: Unix time represented in the form.
704:
705: =cut
706:
707: ##############################################
708: ##############################################
709: sub get_date_from_form {
710: my ($dname) = @_;
711: my ($sec,$min,$hour,$day,$month,$year);
712: #
1.104 albertel 713: if (defined($env{'form.'.$dname.'_second'})) {
714: my $tmpsec = $env{'form.'.$dname.'_second'};
1.10 matthew 715: if (($tmpsec =~ /^\d+$/) && ($tmpsec >= 0) && ($tmpsec < 60)) {
716: $sec = $tmpsec;
717: }
1.64 albertel 718: if (!defined($tmpsec) || $tmpsec eq '') { $sec = 0; }
1.67 matthew 719: } else {
720: $sec = 0;
1.10 matthew 721: }
1.104 albertel 722: if (defined($env{'form.'.$dname.'_minute'})) {
723: my $tmpmin = $env{'form.'.$dname.'_minute'};
1.10 matthew 724: if (($tmpmin =~ /^\d+$/) && ($tmpmin >= 0) && ($tmpmin < 60)) {
725: $min = $tmpmin;
726: }
1.64 albertel 727: if (!defined($tmpmin) || $tmpmin eq '') { $min = 0; }
1.67 matthew 728: } else {
729: $min = 0;
1.10 matthew 730: }
1.104 albertel 731: if (defined($env{'form.'.$dname.'_hour'})) {
732: my $tmphour = $env{'form.'.$dname.'_hour'};
1.33 matthew 733: if (($tmphour =~ /^\d+$/) && ($tmphour >= 0) && ($tmphour < 24)) {
1.10 matthew 734: $hour = $tmphour;
735: }
1.67 matthew 736: } else {
737: $hour = 0;
1.10 matthew 738: }
1.104 albertel 739: if (defined($env{'form.'.$dname.'_day'})) {
740: my $tmpday = $env{'form.'.$dname.'_day'};
1.10 matthew 741: if (($tmpday =~ /^\d+$/) && ($tmpday > 0) && ($tmpday < 32)) {
742: $day = $tmpday;
743: }
744: }
1.104 albertel 745: if (defined($env{'form.'.$dname.'_month'})) {
746: my $tmpmonth = $env{'form.'.$dname.'_month'};
1.10 matthew 747: if (($tmpmonth =~ /^\d+$/) && ($tmpmonth > 0) && ($tmpmonth < 13)) {
1.175 raeburn 748: $month = $tmpmonth;
1.10 matthew 749: }
750: }
1.104 albertel 751: if (defined($env{'form.'.$dname.'_year'})) {
752: my $tmpyear = $env{'form.'.$dname.'_year'};
1.175 raeburn 753: if (($tmpyear =~ /^\d+$/) && ($tmpyear >= 1970)) {
754: $year = $tmpyear;
1.10 matthew 755: }
756: }
1.175 raeburn 757: if (($year<1970) || ($year>2037)) { return undef; }
1.33 matthew 758: if (defined($sec) && defined($min) && defined($hour) &&
1.175 raeburn 759: defined($day) && defined($month) && defined($year)) {
760: my $timezone = &Apache::lonlocal::gettimezone();
761: my $dt = DateTime->new( year => $year,
762: month => $month,
763: day => $day,
764: hour => $hour,
765: minute => $min,
766: second => $sec,
767: time_zone => $timezone,
768: );
769: my $epoch_time = $dt->epoch;
770: if ($epoch_time ne '') {
771: return $epoch_time;
772: } else {
773: return undef;
774: }
1.10 matthew 775: } else {
776: return undef;
777: }
1.20 matthew 778: }
779:
780: ##############################################
781: ##############################################
782:
783: =pod
784:
785: =item &pjump_javascript_definition()
786:
787: Returns javascript defining the 'pjump' function, which opens up a
788: parameter setting wizard.
789:
790: =cut
791:
792: ##############################################
793: ##############################################
794: sub pjump_javascript_definition {
795: my $Str = <<END;
1.109 www 796: function pjump(type,dis,value,marker,ret,call,hour,min,sec) {
1.295 www 797: openMyModal("/adm/rat/parameter.html?type="+escape(type)
1.20 matthew 798: +"&value="+escape(value)+"&marker="+escape(marker)
799: +"&return="+escape(ret)
1.109 www 800: +"&call="+escape(call)+"&name="+escape(dis)
801: +"&defhour="+escape(hour)+"&defmin="+escape(min)
1.295 www 802: +"&defsec="+escape(sec)+"&modal=1",350,350,'no');
1.20 matthew 803: }
804: END
805: return $Str;
1.10 matthew 806: }
807:
808: ##############################################
809: ##############################################
1.17 matthew 810:
811: =pod
812:
813: =item &javascript_nothing()
814:
815: Return an appropriate null for the users browser. This is used
816: as the first arguement for window.open calls when you want a blank
817: window that you can then write to.
818:
819: =cut
820:
821: ##############################################
822: ##############################################
823: sub javascript_nothing {
824: # mozilla and other browsers work with "''", but IE on mac does not.
825: my $nothing = "''";
826: my $user_browser;
827: my $user_os;
1.104 albertel 828: $user_browser = $env{'browser.type'} if (exists($env{'browser.type'}));
829: $user_os = $env{'browser.os'} if (exists($env{'browser.os'}));
1.17 matthew 830: if (! defined($user_browser) || ! defined($user_os)) {
831: (undef,$user_browser,undef,undef,undef,$user_os) =
832: &Apache::loncommon::decode_user_agent();
833: }
834: if ($user_browser eq 'explorer' && $user_os =~ 'mac') {
835: $nothing = "'javascript:void(0);'";
836: }
837: return $nothing;
838: }
839:
1.90 www 840: ##############################################
841: ##############################################
842: sub javascript_docopen {
1.171 albertel 843: my ($mimetype) = @_;
844: $mimetype ||= 'text/html';
1.90 www 845: # safari does not understand document.open() and loads "text/html"
846: my $nothing = "''";
847: my $user_browser;
848: my $user_os;
1.104 albertel 849: $user_browser = $env{'browser.type'} if (exists($env{'browser.type'}));
850: $user_os = $env{'browser.os'} if (exists($env{'browser.os'}));
1.90 www 851: if (! defined($user_browser) || ! defined($user_os)) {
852: (undef,$user_browser,undef,undef,undef,$user_os) =
853: &Apache::loncommon::decode_user_agent();
854: }
855: if ($user_browser eq 'safari' && $user_os =~ 'mac') {
856: $nothing = "document.clear()";
857: } else {
1.171 albertel 858: $nothing = "document.open('$mimetype','replace')";
1.90 www 859: }
860: return $nothing;
861: }
862:
1.21 matthew 863:
1.17 matthew 864: ##############################################
865: ##############################################
866:
1.21 matthew 867: =pod
1.17 matthew 868:
1.21 matthew 869: =item &StatusOptions()
1.10 matthew 870:
1.21 matthew 871: Returns html for a selection box which allows the user to choose the
872: enrollment status of students. The selection box name is 'Status'.
1.6 stredwic 873:
1.21 matthew 874: Inputs:
1.6 stredwic 875:
1.21 matthew 876: $status: the currently selected status. If undefined the value of
1.104 albertel 877: $env{'form.Status'} is taken. If that is undefined, a value of 'Active'
1.21 matthew 878: is used.
1.6 stredwic 879:
1.21 matthew 880: $formname: The name of the form. If defined the onchange attribute of
881: the selection box is set to document.$formname.submit().
1.6 stredwic 882:
1.21 matthew 883: $size: the size (number of lines) of the selection box.
1.6 stredwic 884:
1.27 matthew 885: $onchange: javascript to use when the value is changed. Enclosed in
886: double quotes, ""s, not single quotes.
887:
1.21 matthew 888: Returns: a perl string as described.
1.1 stredwic 889:
1.21 matthew 890: =cut
1.9 stredwic 891:
1.21 matthew 892: ##############################################
893: ##############################################
894: sub StatusOptions {
1.165 banghart 895: my ($status, $formName,$size,$onchange,$mult)=@_;
1.21 matthew 896: $size = 1 if (!defined($size));
897: if (! defined($status)) {
898: $status = 'Active';
1.104 albertel 899: $status = $env{'form.Status'} if (exists($env{'form.Status'}));
1.9 stredwic 900: }
1.1 stredwic 901:
902: my $Str = '';
903: $Str .= '<select name="Status"';
1.165 banghart 904: if (defined($mult)){
905: $Str .= ' multiple="multiple" ';
906: }
1.27 matthew 907: if(defined($formName) && $formName ne '' && ! defined($onchange)) {
1.1 stredwic 908: $Str .= ' onchange="document.'.$formName.'.submit()"';
1.27 matthew 909: }
910: if (defined($onchange)) {
911: $Str .= ' onchange="'.$onchange.'"';
1.1 stredwic 912: }
1.21 matthew 913: $Str .= ' size="'.$size.'" ';
1.1 stredwic 914: $Str .= '>'."\n";
1.153 raeburn 915: foreach my $type (['Active', &mt('Currently Has Access')],
916: ['Future', &mt('Will Have Future Access')],
917: ['Expired', &mt('Previously Had Access')],
918: ['Any', &mt('Any Access Status')]) {
1.151 albertel 919: my ($name,$label) = @$type;
920: $Str .= '<option value="'.$name.'" ';
921: if ($status eq $name) {
922: $Str .= 'selected="selected" ';
923: }
924: $Str .= '>'.$label.'</option>'."\n";
925: }
926:
1.1 stredwic 927: $Str .= '</select>'."\n";
1.7 stredwic 928: }
1.12 matthew 929:
930: ########################################################
931: ########################################################
1.7 stredwic 932:
1.23 matthew 933: =pod
934:
935: =item Progess Window Handling Routines
936:
937: These routines handle the creation, update, increment, and closure of
938: progress windows. The progress window reports to the user the number
939: of items completed and an estimate of the time required to complete the rest.
940:
941: =over 4
942:
943:
1.309 raeburn 944: =item &Create_PrgWin()
1.23 matthew 945:
946: Writes javascript to the client to open a progress window and returns a
947: data structure used for bookkeeping.
948:
949: Inputs
950:
951: =over 4
952:
953: =item $r Apache request
954:
955: =item $number_to_do The total number of items being processed.
1.50 albertel 956:
1.23 matthew 957: =back
958:
959: Returns a hash containing the progress state data structure.
960:
961:
1.309 raeburn 962: =item &Update_PrgWin()
1.23 matthew 963:
964: Updates the text in the progress indicator. Does not increment the count.
965: See &Increment_PrgWin.
966:
967: Inputs:
968:
969: =over 4
970:
971: =item $r Apache request
972:
973: =item $prog_state Pointer to the data structure returned by &Create_PrgWin
974:
975: =item $displaystring The string to write to the status indicator
976:
977: =back
978:
979: Returns: none
980:
981:
1.309 raeburn 982: =item Increment_PrgWin()
1.23 matthew 983:
1.276 bisitz 984: Increment the count of items completed for the progress window by $step or 1 if no step is provided.
1.23 matthew 985:
986: Inputs:
987:
988: =over 4
989:
990: =item $r Apache request
991:
992: =item $prog_state Pointer to the data structure returned by Create_PrgWin
993:
994: =item $extraInfo A description of the items being iterated over. Typically
995: 'student'.
996:
1.279 bisitz 997: =item $step (optional) counter step. Will be set to default 1 if ommited. step must be greater than 0 or empty.
1.276 bisitz 998:
1.23 matthew 999: =back
1000:
1001: Returns: none
1002:
1003:
1.309 raeburn 1004: =item &Close_PrgWin()
1.23 matthew 1005:
1006: Closes the progress window.
1007:
1008: Inputs:
1009:
1010: =over 4
1011:
1012: =item $r Apache request
1013:
1014: =item $prog_state Pointer to the data structure returned by Create_PrgWin
1015:
1016: =back
1017:
1018: Returns: none
1019:
1020: =back
1021:
1022: =cut
1023:
1024: ########################################################
1025: ########################################################
1026:
1.51 albertel 1027:
1.7 stredwic 1028: # Create progress
1029: sub Create_PrgWin {
1.297 www 1030: my ($r,$number_to_do)=@_;
1.49 albertel 1031: my %prog_state;
1.16 albertel 1032: $prog_state{'done'}=0;
1.23 matthew 1033: $prog_state{'firststart'}=&Time::HiRes::time();
1034: $prog_state{'laststart'}=&Time::HiRes::time();
1.16 albertel 1035: $prog_state{'max'}=$number_to_do;
1.297 www 1036: &Apache::loncommon::LCprogressbar($r);
1.14 albertel 1037: return %prog_state;
1.7 stredwic 1038: }
1039:
1040: # update progress
1041: sub Update_PrgWin {
1.14 albertel 1042: my ($r,$prog_state,$displayString)=@_;
1.297 www 1043: &Apache::loncommon::LCprogressbarUpdate($r,undef,$displayString);
1.23 matthew 1044: $$prog_state{'laststart'}=&Time::HiRes::time();
1.14 albertel 1045: }
1046:
1047: # increment progress state
1048: sub Increment_PrgWin {
1.275 bisitz 1049: my ($r,$prog_state,$extraInfo,$step)=@_;
1.279 bisitz 1050: $step = $step > 0 ? $step : 1;
1.275 bisitz 1051: $$prog_state{'done'} += $step;
1052:
1053: # Catch (max modulo step) <> 0
1054: my $current = $$prog_state{'done'};
1055: my $last = ($$prog_state{'max'} - $current);
1056: if ($last <= 0) {
1057: $last = 1;
1058: $current = $$prog_state{'max'};
1059: }
1060:
1.23 matthew 1061: my $time_est= (&Time::HiRes::time() - $$prog_state{'firststart'})/
1.275 bisitz 1062: $current * $last;
1.16 albertel 1063: $time_est = int($time_est);
1.80 matthew 1064: #
1065: my $min = int($time_est/60);
1066: my $sec = $time_est % 60;
1.278 bisitz 1067:
1.23 matthew 1068: my $lasttime = &Time::HiRes::time()-$$prog_state{'laststart'};
1069: if ($lasttime > 9) {
1070: $lasttime = int($lasttime);
1071: } elsif ($lasttime < 0.01) {
1072: $lasttime = 0;
1073: } else {
1074: $lasttime = sprintf("%3.2f",$lasttime);
1075: }
1.278 bisitz 1076:
1077: $sec = 0 if ($min >= 10); # Don't show seconds if remaining time >= 10 min.
1078: $sec = 1 if ( ($min == 0) && ($sec == 0) ); # Little cheating: pretend to have 1 second remaining instead of 0 to have something to display
1079:
1080: my $timeinfo =
1081: &mt('[_1]/[_2]:'
1082: .' [quant,_3,minute,minutes,] [quant,_4,second ,seconds ,]remaining'
1083: .' ([quant,_5,second] for '.$extraInfo.')',
1084: $current,
1085: $$prog_state{'max'},
1086: $min,
1087: $sec,
1088: $lasttime);
1.297 www 1089: my $percent=0;
1090: if ($$prog_state{'max'}) {
1091: $percent=int(100.*$current/$$prog_state{'max'});
1092: }
1093: &Apache::loncommon::LCprogressbarUpdate($r,$percent,$timeinfo);
1.23 matthew 1094: $$prog_state{'laststart'}=&Time::HiRes::time();
1.7 stredwic 1095: }
1096:
1097: # close Progress Line
1098: sub Close_PrgWin {
1.14 albertel 1099: my ($r,$prog_state)=@_;
1.297 www 1100: &Apache::loncommon::LCprogressbarClose($r);
1.48 albertel 1101: undef(%$prog_state);
1102: }
1103:
1.326 foxr 1104:
1.34 www 1105: # ------------------------------------------------------- Puts directory header
1106:
1107: sub crumbs {
1.252 bisitz 1108: my ($uri,$target,$prefix,$form,$skiplast)=@_;
1.303 www 1109: # You cannot crumbnify uploaded or adm resources
1110: if ($uri=~/^\/*(uploaded|adm)\//) { return &mt('(Internal Course/Group Content)'); }
1.100 raeburn 1111: if ($target) {
1112: $target = ' target="'.
1113: &Apache::loncommon::escape_single($target).'"';
1114: }
1.252 bisitz 1115: my $output='<span class="LC_filename">';
1116: $output.=$prefix.'/';
1.249 raeburn 1117: if (($env{'user.adv'}) || ($env{'user.author'})) {
1.252 bisitz 1118: my $path=$prefix.'/';
1119: foreach my $dir (split('/',$uri)) {
1.99 matthew 1120: if (! $dir) { next; }
1121: $path .= $dir;
1.252 bisitz 1122: if ($path eq $uri) {
1123: if ($skiplast) {
1124: $output.=$dir;
1.132 www 1125: last;
1.252 bisitz 1126: }
1127: } else {
1128: $path.='/';
1129: }
1.157 albertel 1130: my $href_path = &HTML::Entities::encode($path,'<>&"');
1.252 bisitz 1131: &Apache::loncommon::inhibit_menu_check(\$href_path);
1132: if ($form) {
1133: my $href = 'javascript:'.$form.".action='".$href_path."';".$form.'.submit();';
1134: $output.=qq{<a href="$href"$target>$dir</a>/};
1135: } else {
1136: $output.=qq{<a href="$href_path"$target>$dir</a>/};
1137: }
1138: }
1.35 www 1139: } else {
1.252 bisitz 1140: foreach my $dir (split('/',$uri)) {
1.149 albertel 1141: if (! $dir) { next; }
1.252 bisitz 1142: $output.=$dir.'/';
1143: }
1.34 www 1144: }
1.149 albertel 1145: if ($uri !~ m|/$|) { $output=~s|/$||; }
1.252 bisitz 1146: $output.='</span>';
1147:
1.304 foxr 1148:
1.252 bisitz 1149: return $output;
1.34 www 1150: }
1151:
1.85 www 1152: # --------------------- A function that generates a window for the spellchecker
1153:
1154: sub spellheader {
1.123 albertel 1155: my $start_page=
1156: &Apache::loncommon::start_page('Speller Suggestions',undef,
1.140 albertel 1157: {'only_body' => 1,
1158: 'js_ready' => 1,
1159: 'bgcolor' => '#DDDDDD',
1160: 'add_entries' => {
1161: 'onload' =>
1162: 'document.forms.spellcheckform.submit()',
1163: }
1164: });
1.123 albertel 1165: my $end_page=
1166: &Apache::loncommon::end_page({'js_ready' => 1});
1167:
1.105 www 1168: my $nothing=&javascript_nothing();
1.85 www 1169: return (<<ENDCHECK);
1170: <script type="text/javascript">
1.218 bisitz 1171: // <![CDATA[
1.92 albertel 1172: //<!-- BEGIN LON-CAPA Internal
1.85 www 1173: var checkwin;
1174:
1.140 albertel 1175: function spellcheckerwindow(string) {
1176: var esc_string = string.replace(/\"/g,'"');
1.105 www 1177: checkwin=window.open($nothing,'spellcheckwin','height=320,width=280,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no');
1.154 albertel 1178: 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 1179: checkwin.document.close();
1180: }
1.92 albertel 1181: // END LON-CAPA Internal -->
1.218 bisitz 1182: // ]]>
1.85 www 1183: </script>
1184: ENDCHECK
1185: }
1186:
1187: # ---------------------------------- Generate link to spell checker for a field
1188:
1189: sub spelllink {
1190: my ($form,$field)=@_;
1191: my $linktext=&mt('Check Spelling');
1192: return (<<ENDLINK);
1.140 albertel 1193: <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 1194: ENDLINK
1195: }
1196:
1.281 raeburn 1197: # ------------------------------------------------- Output headers for CKEditor
1.124 albertel 1198:
1.52 www 1199: sub htmlareaheaders {
1.255 faziophi 1200: my $s="";
1.260 faziophi 1201: if (&htmlareabrowser()) {
1.255 faziophi 1202: $s.=(<<ENDEDITOR);
1203: <script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
1204: ENDEDITOR
1205: }
1206: $s.=(<<ENDJQUERY);
1.294 raeburn 1207: <script type="text/javascript" src="/adm/jQuery/js/jquery-1.6.2.min.js"></script>
1208: <script type="text/javascript" src="/adm/jQuery/js/jquery-ui-1.8.16.custom.min.js"></script>
1209: <link rel="stylesheet" type="text/css" href="/adm/jQuery/css/smoothness/jquery-ui-1.8.16.custom.css" />
1.301 foxr 1210: <script type="text/javascript" src="/adm/jpicker/js/jpicker-1.1.6.min.js" >
1211: </script>
1212: <link rel="stylesheet" type="text/css" href="/adm/jpicker/css/jPicker-1.1.6.min.css" />
1.310 raeburn 1213: <script type="text/javascript" src="/adm/countdown/js/jquery.countdown.js"></script>
1214: <link rel="stylesheet" type="text/css" href="/adm/countdown/css/jquery.countdown.css" />
1.320 foxr 1215:
1.323 foxr 1216: <script type="text/javascript" src="/adm/spellchecker/js/jquery.spellchecker.min.js"></script>
1.320 foxr 1217: <link rel="stylesheet" type="text/css" href="/adm/spellchecker/css/spellchecker.css" />
1218:
1.255 faziophi 1219: ENDJQUERY
1220: return $s;
1.52 www 1221: }
1222:
1.76 www 1223: # ----------------------------------------------------------------- Preferences
1224:
1.167 albertel 1225: # ------------------------------------------------- lang to use in html editor
1226: sub htmlarea_lang {
1227: my $lang='en';
1228: if (&mt('htmlarea_lang') ne 'htmlarea_lang') {
1229: $lang=&mt('htmlarea_lang');
1230: }
1231: return $lang;
1232: }
1233:
1.326 foxr 1234: # return javacsript to activate elements of .colorchooser with jpicker:
1235: # Caller is responsible for enclosing this in <script> tags:
1236: #
1237: sub color_picker {
1238: return '
1239: $(document).ready(function(){
1240: $.fn.jPicker.defaults.images.clientPath="/adm/jpicker/images/";
1241: $(".colorchooser").jPicker({window: { position: {x: "screenCenter", y: "bottom"}}});
1242: });';
1243: }
1244:
1.72 www 1245: # ----------------------------------------- Script to activate only some fields
1246:
1247: sub htmlareaselectactive {
1.281 raeburn 1248: my ($args) = @_;
1.76 www 1249: unless (&htmlareabrowser()) { return ''; }
1.262 raeburn 1250: my $output='<script type="text/javascript" defer="defer">'."\n"
1.230 bisitz 1251: .'// <![CDATA['."\n";
1.167 albertel 1252: my $lang = &htmlarea_lang();
1.281 raeburn 1253: my $fullpage = 'false';
1.282 raeburn 1254: my ($dragmath_prefix,$dragmath_helpicon,$dragmath_whitespace);
1.281 raeburn 1255: if (ref($args) eq 'HASH') {
1256: if (exists($args->{'lang'})) {
1257: if ($args->{'lang'} ne '') {
1258: $lang = $args->{'lang'};
1259: }
1260: }
1261: if (exists($args->{'fullpage'})) {
1262: if ($args->{'fullpage'} eq 'true') {
1263: $fullpage = $args->{'fullpage'};
1264: }
1265: }
1266: if (exists($args->{'dragmath'})) {
1267: if ($args->{'dragmath'} ne '') {
1268: $dragmath_prefix = $args->{'dragmath'};
1.282 raeburn 1269: $dragmath_helpicon=&Apache::loncommon::lonhttpdurl("/adm/help/help.png");
1270: $dragmath_whitespace=&Apache::loncommon::lonhttpdurl("/adm/lonIcons/transparent1x1.gif");
1.281 raeburn 1271: }
1272: }
1273: }
1.255 faziophi 1274: $output.='
1275:
1276: function containsBlockHtml(id) {
1.281 raeburn 1277: 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);
1.255 faziophi 1278: return (re >= 0);
1279: }
1280:
1281: function startRichEditor(id) {
1282: CKEDITOR.replace(id,
1283: {
1.281 raeburn 1284: customConfig: "/ckeditor/loncapaconfig.js",
1285: language : "'.$lang.'",
1286: fullPage : '.$fullpage.',
1.255 faziophi 1287: }
1288: );
1289: }
1290:
1291: function destroyRichEditor(id) {
1292: CKEDITOR.instances[id].destroy();
1.72 www 1293: }
1.255 faziophi 1294:
1295: function editorHandler(event) {
1296: var rawid = $(this).attr("id");
1.281 raeburn 1297: var id = new RegExp("LC_rt_(.*)").exec(rawid)[1];
1.255 faziophi 1298: event.preventDefault();
1.281 raeburn 1299: var rt_enabled = $(this).hasClass("LC_enable_rt");
1300: if (rt_enabled) {
1.255 faziophi 1301: startRichEditor(id);
1302: $("#LC_rt_"+id).html("<b>« Plain text</b>");
1303: $("#LC_rt_"+id).attr("title", "Disable rich text formatting and edit in plain text");
1304: $("#LC_rt_"+id).addClass("LC_disable_rt");
1305: $("#LC_rt_"+id).removeClass("LC_enable_rt");
1306: } else {
1307: destroyRichEditor(id);
1308: $("#LC_rt_"+id).html("<b>Rich formatting »</b>");
1309: $("#LC_rt_"+id).attr("title", "Enable rich text formatting (bold, italic, etc.)");
1310: $("#LC_rt_"+id).addClass("LC_enable_rt");
1311: $("#LC_rt_"+id).removeClass("LC_disable_rt");
1.281 raeburn 1312: }';
1313: if ($dragmath_prefix ne '') {
1314: $output .= "\n var visible = '';
1315: if (rt_enabled) {
1316: visible = 'none';
1317: }
1318: editmath_visibility(id,visible);\n";
1319: }
1320: $output .= '
1321: }
1.255 faziophi 1322: $(document).ready(function(){
1323: $(".LC_richAlwaysOn").each(function() {
1324: startRichEditor($(this).attr("id"));
1325: });
1326: $(".LC_richDetectHtml").each(function() {
1327: var id = $(this).attr("id");
1.281 raeburn 1328: var rt_enabled = containsBlockHtml(id);
1329: if(rt_enabled) {
1.255 faziophi 1330: $(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>");
1331: startRichEditor(id);
1.281 raeburn 1332: $("#LC_rt_"+id).click(editorHandler);
1.255 faziophi 1333: }
1334: else {
1335: $(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>");
1336: $("#LC_rt_"+id).click(editorHandler);
1.281 raeburn 1337: }';
1338: if ($dragmath_prefix ne '') {
1339: $output .= "\n var visible = '';
1340: if (rt_enabled) {
1341: visible = 'none';
1342: }
1343: editmath_visibility(id,visible);\n";
1344: }
1345: $output .= '
1.255 faziophi 1346: });
1347: $(".LC_richDefaultOn").each(function() {
1348: var id = $(this).attr("id");
1349: $(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>");
1350: startRichEditor(id);
1351: $("#LC_rt_"+id).click(editorHandler);
1352: });
1353: $(".LC_richDefaultOff").each(function() {
1354: var id = $(this).attr("id");
1355: $(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>");
1.281 raeburn 1356: $("#LC_rt_"+id).click(editorHandler);
1.255 faziophi 1357: });
1.301 foxr 1358:
1.304 foxr 1359:
1.302 foxr 1360: });
1.281 raeburn 1361: ';
1.326 foxr 1362: $output .= &color_picker;
1363:
1.306 foxr 1364: # Code to put a due date countdown in 'duedatecountdown' span.
1365: # This is currently located in the breadcrumb headers.
1366: # note that the dueDateLayout is internatinoalized below.
1367: # Here document is used to support the substitution into the javascript below.
1.307 foxr 1368: # ..which unforunately necessitates escaping the $'s in the javascript.
1369: # There are several times of importance
1370: #
1371: # serverDueDate - The absolute time at which the problem expires.
1372: # serverTime - The server's time when the problem finished computing.
1373: # clientTime - The client's time...as close to serverTime as possible.
1374: # The clientTime will be slightly later due to
1375: # 1. The latency between problem computation and
1376: # the first network action.
1377: # 2. The time required between the page load-start and the actual
1378: # initial javascript execution that got clientTime.
1379: # These are used as follows:
1380: # The difference between clientTime and serverTime are used to
1381: # correct for differences in clock settings between the browser's system and the
1382: # server's.
1383: #
1384: # The difference between clientTime and the time at which the ready() method
1385: # starts executing is used to estimate latencies for page load and submission.
1386: # Since this is an estimate, it is doubled. The latency estimate + one minute
1387: # is used to determine when the countdown timer turns red to warn the user
1388: # to think about submitting.
1.306 foxr 1389:
1.314 raeburn 1390: my $dueDateLayout = &mt('Due in: {dn} {dl} {hnn}{sep}{mnn}{sep}{snn} [_1]',"<span id='submitearly'></span>");
1391: my $early = '- <b>'.&mt('Submit Early').'</b>';
1392: my $pastdue = '- <b>'.&mt('Past Due').'</b>';
1.306 foxr 1393: $output .= <<JAVASCRIPT;
1.307 foxr 1394:
1395: var documentReadyTime;
1396:
1.306 foxr 1397: \$(document).ready(function() {
1398: if (typeof(dueDate) != "undefined") {
1.307 foxr 1399: documentReadyTime = (new Date()).getTime();
1.306 foxr 1400: \$("#duedatecountdown").countdown({until: dueDate, compact: true,
1401: layout: "$dueDateLayout",
1402: onTick: function (periods) {
1.307 foxr 1403: var latencyEstimate = (documentReadyTime - clientTime) * 2;
1.314 raeburn 1404: if(\$.countdown.periodsToSeconds(periods) < (300 + latencyEstimate)) {
1405: \$("#submitearly").html("$early");
1406: if (\$.countdown.periodsToSeconds(periods) < 1) {
1407: \$("#submitearly").html("$pastdue");
1408: }
1409: }
1.307 foxr 1410: if(\$.countdown.periodsToSeconds(periods) < (60 + latencyEstimate)) {
1.306 foxr 1411: \$(this).css("color", "red"); //Highlight last minute.
1412: }
1413: }
1414: });
1415: }
1416: });
1.322 foxr 1417:
1418: /* This code describes the spellcheck options that will be used for
1419: items with class 'spellchecked'. It is necessary for those objects'
1420: to explicitly request checking (e.g. onblur is a nice event for that).
1421: */
1422: \$(document).ready(function() {
1423: \$(".spellchecked").spellchecker({
1424: url: "/ajax/spellcheck",
1425: lang: "en",
1426: engine: "pspell",
1427: suggestionBoxPosition: "below",
1428: innerDocument: true
1429: });
1430: \$("textarea.spellchecked").spellchecker({
1431: url: "/ajax/spellcheck",
1432: lang: "en",
1433: engine: "pspell",
1434: suggestionBoxPosition: "below",
1435: innerDocument: true
1436: });
1437:
1438: });
1439:
1.325 foxr 1440: /* the muli colored editor can generate spellcheck with language 'none'
1441: to disable spellcheck as well
1442: */
1.324 foxr 1443: function doSpellcheck(element, lang) {
1.325 foxr 1444: if (lang != 'none') {
1445: \$(element).spellchecker('option', {lang: lang});
1446: \$(element).spellchecker('check');
1447: }
1.324 foxr 1448: }
1449:
1.322 foxr 1450:
1.306 foxr 1451: JAVASCRIPT
1.281 raeburn 1452: if ($dragmath_prefix ne '') {
1453: $output .= '
1454:
1455: function editmath_visibility(id,value) {
1456:
1457: if ((id == "") || (id == null)) {
1458: return;
1459: }
1460: var mathid = "'.$dragmath_prefix.'_"+id;
1461: mathele = document.getElementById(mathid);
1462: if (mathele == null) {
1463: return;
1464: }
1465: mathele.style.display = value;
1.282 raeburn 1466: var mathhelpicon = "'.$dragmath_prefix.'helpicon'.'_"+id;
1467: mathhelpiconele = document.getElementById(mathhelpicon);
1468: if (mathhelpiconele == null) {
1469: return;
1470: }
1471: if (value == "none") {
1472: mathhelpiconele.src = "'.$dragmath_whitespace.'";
1473: } else {
1474: mathhelpiconele.src = "'.$dragmath_helpicon.'";
1475: }
1.281 raeburn 1476: }
1477: ';
1478:
1479: }
1.218 bisitz 1480: $output.="\nwindow.status='Activated Editfields';\n"
1.230 bisitz 1481: .'// ]]>'."\n"
1.281 raeburn 1482: .'</script>';
1.72 www 1483: return $output;
1484: }
1485:
1.61 www 1486: # --------------------------------------------------------------------- Blocked
1487:
1488: sub htmlareablocked {
1.104 albertel 1489: unless ($env{'environment.wysiwygeditor'} eq 'on') { return 1; }
1.71 www 1490: return 0;
1.52 www 1491: }
1492:
1493: # ---------------------------------------- Browser capable of running HTMLArea?
1494:
1495: sub htmlareabrowser {
1496: return 1;
1497: }
1.53 matthew 1498:
1.287 www 1499: #
1500: # Should the "return to content" link be shown?
1501: #
1502:
1503: sub show_return_link {
1.289 www 1504:
1505: unless ($env{'request.course.id'}) { return 0; }
1506: if ($env{'request.noversionuri'}=~m{^/priv/} ||
1.318 raeburn 1507: $env{'request.uri'}=~m{^/priv/}) { return 1; }
1.289 www 1508:
1.287 www 1509: if (($env{'request.noversionuri'} =~ m{^/adm/(viewclasslist|navmaps)($|\?)})
1510: || ($env{'request.noversionuri'} =~ m{^/adm/.*/aboutme($|\?)})) {
1511:
1512: return if ($env{'form.register'});
1513: }
1514: return (($env{'request.noversionuri'}=~m{^/(res|public)/} &&
1515: $env{'request.symb'} eq '')
1516: ||
1517: ($env{'request.noversionuri'}=~ m{^/cgi-bin/printout.pl})
1518: ||
1519: (($env{'request.noversionuri'}=~/^\/adm\//) &&
1520: ($env{'request.noversionuri'}!~/^\/adm\/wrapper\//) &&
1521: ($env{'request.noversionuri'}!~
1522: m{^/adm/.*/(smppg|bulletinboard)($|\?)})
1523: ));
1524: }
1525:
1526:
1.304 foxr 1527: ##
1528: # Set the dueDate variable...note this is done in the timezone
1529: # of the browser.
1530: #
1531: # @param epoch relative time at which the problem is due.
1532: #
1533: # @return the javascript fragment to set the date:
1534: #
1535: sub set_due_date {
1536: my $dueStamp = shift;
1537: my $duems = $dueStamp * 1000; # Javascript Date object needs ms not seconds.
1538:
1539: my $now = time()*1000;
1540:
1541: # This slightly obscure bit of javascript sets the dueDate variable
1542: # to the time in the browser at which the problem was due.
1543: # The code should correct for gross differences between the server
1544: # and client's time setting
1545:
1.315 raeburn 1546: return <<"END";
1547:
1548: <script type="text/javascript">
1.304 foxr 1549: //<![CDATA[
1550: var serverDueDate = $duems;
1551: var serverTime = $now;
1552: var clientTime = (new Date()).getTime();
1553: var dueDate = new Date(serverDueDate + (clientTime - serverTime));
1554:
1555: //]]>
1556: </script>
1557:
1.315 raeburn 1558: END
1.307 foxr 1559: }
1560: ##
1561: # Sets the time at which the problem finished computing.
1562: # This just updates the serverTime and clientTime variables above.
1563: # Calling this in e.g. end_problem provides a better estimate of the
1564: # difference beetween the server and client time setting as
1565: # the difference contains less of the latency/problem compute time.
1566: #
1567: sub set_compute_end_time {
1568:
1569: my $now = time()*1000; # Javascript times are in ms.
1.316 raeburn 1570: return <<"END";
1571:
1572: <script type="text/javascript">
1.307 foxr 1573: //<![CDATA[
1574: serverTime = $now;
1575: clientTime = (new Date()).getTime();
1576: //]]>
1577: </script>
1578:
1.316 raeburn 1579: END
1.304 foxr 1580: }
1581:
1.53 matthew 1582: ############################################################
1583: ############################################################
1584:
1585: =pod
1586:
1.309 raeburn 1587: =item &breadcrumbs()
1.53 matthew 1588:
1589: Compiles the previously registered breadcrumbs into an series of links.
1590: Additionally supports a 'component', which will be displayed on the
1.223 droeschl 1591: right side of the breadcrumbs enclosing div (without a link).
1.53 matthew 1592: A link to help for the component will be included if one is specified.
1593:
1594: All inputs can be undef without problems.
1595:
1.223 droeschl 1596: Inputs: $component (the text on the right side of the breadcrumbs trail),
1.53 matthew 1597: $component_help
1.63 albertel 1598: $menulink (boolean, controls whether to include a link to /adm/menu)
1.138 albertel 1599: $helplink (if 'nohelp' don't include the orange help link)
1600: $css_class (optional name for the class to apply to the table for CSS)
1.197 raeburn 1601: $no_mt (optional flag, 1 if &mt() is _not_ to be applied to $component
1602: when including the text on the right.
1.53 matthew 1603: Returns a string containing breadcrumbs for the current page.
1604:
1.309 raeburn 1605: =item &clear_breadcrumbs()
1.53 matthew 1606:
1607: Clears the previously stored breadcrumbs.
1608:
1.309 raeburn 1609: =item &add_breadcrumb()
1.53 matthew 1610:
1611: Pushes a breadcrumb on the stack of crumbs.
1612:
1613: input: $breadcrumb, a hash reference. The keys 'href','title', and 'text'
1614: are required. If present the keys 'faq' and 'bug' will be used to provide
1.156 albertel 1615: links to the FAQ and bug sites. If the key 'no_mt' is present the 'title'
1616: and 'text' values won't be sent through &mt()
1.53 matthew 1617:
1618: returns: nothing
1619:
1620: =cut
1621:
1622: ############################################################
1623: ############################################################
1624: {
1625: my @Crumbs;
1.242 droeschl 1626: my %tools = ();
1.57 matthew 1627:
1.53 matthew 1628: sub breadcrumbs {
1.314 raeburn 1629: my ($component,$component_help,$menulink,$helplink,$css_class,$no_mt,
1630: $CourseBreadcrumbs) = @_;
1.53 matthew 1631: #
1.215 droeschl 1632: $css_class ||= 'LC_breadcrumbs';
1.205 amueller 1633:
1.57 matthew 1634: # Make the faq and bug data cascade
1.223 droeschl 1635: my $faq = '';
1636: my $bug = '';
1637: my $help = '';
1.215 droeschl 1638: # Crumb Symbol
1.223 droeschl 1639: my $crumbsymbol = '»';
1.60 www 1640: # The last breadcrumb does not have a link, so handle it separately.
1.53 matthew 1641: my $last = pop(@Crumbs);
1.57 matthew 1642: #
1.70 matthew 1643: # The first one should be the course or a menu link
1.215 droeschl 1644: if (!defined($menulink)) { $menulink=1; }
1.70 matthew 1645: if ($menulink) {
1646: my $description = 'Menu';
1.172 raeburn 1647: my $no_mt_descr = 0;
1.269 raeburn 1648: if ((exists($env{'request.course.id'})) &&
1649: ($env{'request.course.id'} ne '') &&
1650: ($env{'course.'.$env{'request.course.id'}.'.description'} ne '')) {
1.70 matthew 1651: $description =
1.104 albertel 1652: $env{'course.'.$env{'request.course.id'}.'.description'};
1.172 raeburn 1653: $no_mt_descr = 1;
1.330 raeburn 1654: if ($env{'request.noversionuri'} =~
1655: m{^/public/($match_domain)/($match_courseid)/syllabus$}) {
1656: unless (($env{'course.'.$env{'request.course.id'}.'.domain'} eq $1) &&
1657: ($env{'course.'.$env{'request.course.id'}.'.num'} eq $2)) {
1658: $description = 'Menu';
1659: $no_mt_descr = 0;
1660: }
1661: }
1.70 matthew 1662: }
1.215 droeschl 1663: $menulink = { href =>'/adm/menu',
1664: title =>'Go to main menu',
1665: target =>'_top',
1666: text =>$description,
1667: no_mt =>$no_mt_descr, };
1668: if($last) {
1669: #$last set, so we have some crumbs
1670: unshift(@Crumbs,$menulink);
1671: } else {
1672: #only menulink crumb present
1673: $last = $menulink;
1674: }
1.53 matthew 1675: }
1.287 www 1676: my $links;
1.330 raeburn 1677: if ((&show_return_link) && (!$CourseBreadcrumbs) && (ref($last) eq 'HASH')) {
1.299 raeburn 1678: my $alttext = &mt('Go Back');
1.317 raeburn 1679: $links=&htmltag( 'a','<img src="/res/adm/pages/tolastloc.png" alt="'.$alttext.'" class="LC_icon" />',
1.287 www 1680: { href => '/adm/flip?postdata=return:',
1.317 raeburn 1681: title => &mt('Back to most recent content resource'),
1682: class => 'LC_menubuttons_link',
1683: });
1.299 raeburn 1684: $links=&htmltag('li',$links);
1.287 www 1685: }
1686: $links.= join "",
1.261 droeschl 1687: map {
1688: $faq = $_->{'faq'} if (exists($_->{'faq'}));
1689: $bug = $_->{'bug'} if (exists($_->{'bug'}));
1690: $help = $_->{'help'} if (exists($_->{'help'}));
1691:
1.287 www 1692: my $result = $_->{no_mt} ? $_->{text} : &mt($_->{text});
1.261 droeschl 1693:
1694: if ($_->{href}){
1.287 www 1695: $result = &htmltag( 'a', $result,
1.261 droeschl 1696: { href => $_->{href},
1.287 www 1697: title => $_->{no_mt} ? $_->{title} : &mt($_->{title}),
1.261 droeschl 1698: target => $_->{target}, });
1699: }
1700:
1.287 www 1701: $result = &htmltag( 'li', "$result $crumbsymbol");
1.261 droeschl 1702: } @Crumbs;
1.223 droeschl 1703:
1704: #should the last Element be translated?
1.261 droeschl 1705:
1706: my $lasttext = $last->{'no_mt'} ? $last->{'text'}
1707: : mt( $last->{'text'} );
1708:
1.274 droeschl 1709: # last breadcrumb is the first order heading of a page
1710: # for course breadcrumbs it's just bold
1.304 foxr 1711:
1.330 raeburn 1712: if ($lasttext ne '') {
1713: $links .= &htmltag( 'li', htmltag($CourseBreadcrumbs ? 'b' : 'h1',
1714: $lasttext), {title => $lasttext});
1715: }
1.223 droeschl 1716:
1.54 matthew 1717: my $icons = '';
1.223 droeschl 1718: $faq = $last->{'faq'} if (exists($last->{'faq'}));
1719: $bug = $last->{'bug'} if (exists($last->{'bug'}));
1.106 www 1720: $help = $last->{'help'} if (exists($last->{'help'}));
1721: $component_help=($component_help?$component_help:$help);
1.145 albertel 1722: # if ($faq ne '') {
1723: # $icons .= &Apache::loncommon::help_open_faq($faq);
1724: # }
1.79 raeburn 1725: # if ($bug ne '') {
1726: # $icons .= &Apache::loncommon::help_open_bug($bug);
1727: # }
1.223 droeschl 1728: if ($faq ne '' || $component_help ne '' || $bug ne '') {
1729: $icons .= &Apache::loncommon::help_open_menu($component,
1730: $component_help,
1731: $faq,$bug);
1732: }
1.54 matthew 1733: #
1.304 foxr 1734:
1.205 amueller 1735:
1.330 raeburn 1736: if ($links ne '') {
1737: unless ($CourseBreadcrumbs) {
1738: $links = &htmltag('ol', $links, { id => "LC_MenuBreadcrumbs" });
1739: } else {
1740: $links = &htmltag('ul', $links, { class => "LC_CourseBreadcrumbs" });
1741: }
1.53 matthew 1742: }
1.223 droeschl 1743:
1.304 foxr 1744:
1.223 droeschl 1745: if ($component) {
1.287 www 1746: $links = &htmltag('span',
1.223 droeschl 1747: ( $no_mt ? $component : mt($component) ).
1748: ( $icons ? $icons : '' ),
1749: { class => 'LC_breadcrumbs_component' } )
1.304 foxr 1750: .$links
1751: ;
1.223 droeschl 1752: }
1753:
1.287 www 1754: &render_tools(\$links);
1755: $links = &htmltag('div', $links,
1.225 bisitz 1756: { id => "LC_breadcrumbs" }) unless ($CourseBreadcrumbs) ;
1.287 www 1757: &render_advtools(\$links);
1.223 droeschl 1758:
1.53 matthew 1759: # Return the @Crumbs stack to what we started with
1760: push(@Crumbs,$last);
1761: shift(@Crumbs);
1.304 foxr 1762:
1763:
1.223 droeschl 1764: # Return the breadcrumb's line
1.304 foxr 1765:
1766:
1767:
1.223 droeschl 1768: return "$links";
1.53 matthew 1769: }
1770:
1771: sub clear_breadcrumbs {
1772: undef(@Crumbs);
1.242 droeschl 1773: undef(%tools);
1.53 matthew 1774: }
1775:
1776: sub add_breadcrumb {
1.232 raeburn 1777: push(@Crumbs,@_);
1.53 matthew 1778: }
1.242 droeschl 1779:
1.309 raeburn 1780: =item &add_breadcrumb_tool($category, $html)
1.261 droeschl 1781:
1782: Adds $html to $category of the breadcrumb toolbar container.
1783:
1784: $html is usually a link to a page that invokes a function on the currently
1785: displayed data (e.g. print when viewing a problem)
1786:
1787: Currently there are 3 possible values for $category:
1788:
1789: =over
1790:
1791: =item navigation
1792: left of breadcrumbs line
1793:
1794: =item tools
1.314 raeburn 1795: remaining items in right of breadcrumbs line
1.261 droeschl 1796:
1797: =item advtools
1798: advanced tools shown in a separate box below breadcrumbs line
1799:
1800: =back
1801:
1802: returns: nothing
1803:
1804: =cut
1.242 droeschl 1805:
1806: sub add_breadcrumb_tool {
1.261 droeschl 1807: my ($category, @html) = @_;
1808: return unless @html;
1.285 raeburn 1809: if (!keys(%tools)) {
1.261 droeschl 1810: %tools = ( navigation => [], tools => [], advtools => []);
1.242 droeschl 1811: }
1.261 droeschl 1812:
1813: #this cleans data received from lonmenu::innerregister
1814: @html = grep {defined $_ && $_ ne ''} @html;
1815: for (@html) {
1816: s/align="(right|left)"//;
1.288 www 1817: # s/<span.*?\/span>// if $category ne 'advtools';
1.261 droeschl 1818: }
1819:
1820: push @{$tools{$category}}, @html;
1.242 droeschl 1821: }
1822:
1.309 raeburn 1823: =item &clear_breadcrumb_tools()
1.261 droeschl 1824:
1825: Clears the breadcrumb toolbar container.
1826:
1827: returns: nothing
1828:
1829: =cut
1830:
1.245 droeschl 1831: sub clear_breadcrumb_tools {
1832: undef(%tools);
1833: }
1834:
1.309 raeburn 1835: =item &render_tools(\$breadcrumbs)
1.261 droeschl 1836:
1837: Creates html for breadcrumb tools (categories navigation and tools) and inserts
1838: \$breadcrumbs at the correct position.
1839:
1840: input: \$breadcrumbs - a reference to the string containing prepared
1841: breadcrumbs.
1842:
1843: returns: nothing
1.309 raeburn 1844:
1.261 droeschl 1845: =cut
1846:
1847: #TODO might split this in separate functions for each category
1848: sub render_tools {
1849: my ($breadcrumbs) = @_;
1.285 raeburn 1850: return unless (keys(%tools));
1.261 droeschl 1851:
1852: my $navigation = list_from_array($tools{navigation},
1853: { listattr => { class=>"LC_breadcrumb_tools_navigation" } });
1854: my $tools = list_from_array($tools{tools},
1855: { listattr => { class=>"LC_breadcrumb_tools_tools" } });
1856: $$breadcrumbs = list_from_array([$navigation, $tools, $$breadcrumbs],
1857: { listattr => { class=>'LC_breadcrumb_tools_outerlist' } });
1858: }
1859:
1.309 raeburn 1860: =pod
1861:
1862: =item &render_advtools(\$breadcrumbs)
1.261 droeschl 1863:
1864: Creates html for advanced tools (category advtools) and inserts \$breadcrumbs
1865: at the correct position.
1866:
1867: input: \$breadcrumbs - a reference to the string containing prepared
1868: breadcrumbs (after render_tools call).
1869:
1870: returns: nothing
1.309 raeburn 1871:
1.261 droeschl 1872: =cut
1873:
1874: sub render_advtools {
1875: my ($breadcrumbs) = @_;
1876: return unless (defined $tools{'advtools'})
1877: and (scalar(@{$tools{'advtools'}}) > 0);
1878:
1879: $$breadcrumbs .= Apache::loncommon::head_subbox(
1880: funclist_from_array($tools{'advtools'}) );
1.242 droeschl 1881: }
1.53 matthew 1882:
1.57 matthew 1883: } # End of scope for @Crumbs
1.53 matthew 1884:
1.331 ! raeburn 1885: sub docs_breadcrumbs {
! 1886: my ($allowed,$crstype,$contenteditor)=@_;
! 1887: my ($folderpath,@folders);
! 1888: if ($env{'form.pagepath'}) {
! 1889: @folders = split('&',$env{'form.pagepath'});
! 1890: } else {
! 1891: @folders=split('&',$env{'form.folderpath'});
! 1892: }
! 1893: my $plain='';
! 1894: my ($randompick,$isencrypted,$ishidden,$is_random_order) = (-1,0,0,0);
! 1895: &clear_breadcrumbs();
! 1896: while (@folders) {
! 1897: my $folder=shift(@folders);
! 1898: my $foldername=shift(@folders);
! 1899: if ($folderpath) {$folderpath.='&';}
! 1900: $folderpath.=$folder.'&'.$foldername;
! 1901: my $url;
! 1902: if ($allowed) {
! 1903: $url = '/adm/coursedocs?folderpath=';
! 1904: } else {
! 1905: $url = '/adm/supplemental?folderpath=';
! 1906: }
! 1907: $url .= &escape($folderpath);
! 1908: my $name=&unescape($foldername);
! 1909: # each of randompick number, hidden, encrypted, random order are
! 1910: # appended with ":"s to the foldername
! 1911: $name=~s/\:(\d*)\:(\w*)\:(\w*):(\d*)$//;
! 1912: if ($contenteditor) {
! 1913: if ($1 ne '') {
! 1914: $randompick=$1;
! 1915: } else {
! 1916: $randompick=-1;
! 1917: }
! 1918: if ($2) { $ishidden=1; }
! 1919: if ($3) { $isencrypted=1; }
! 1920: if ($4 ne '') { $is_random_order = 1; }
! 1921: }
! 1922: if ($folder eq 'supplemental') {
! 1923: $name = &mt('Supplemental '.$crstype.' Content');
! 1924: }
! 1925: if ($contenteditor) {
! 1926: $plain.=$name.' > ';
! 1927: }
! 1928: &add_breadcrumb(
! 1929: {'href' => $url,
! 1930: 'title' => $name,
! 1931: 'text' => $name,
! 1932: 'no_mt' => 1,
! 1933: });
! 1934: }
! 1935: unless ($contenteditor) {
! 1936: if ($env{'httpref.'.$env{'request.noversionuri'}} ne '') {
! 1937: &add_breadcrumb({text => 'View Resource'});
! 1938: }
! 1939: } else {
! 1940: $plain=~s/\>\;\s*$//;
! 1941: }
! 1942: return (&breadcrumbs(undef,undef,0,'nohelp',undef,undef,$contenteditor),
! 1943: $randompick,$ishidden,$isencrypted,$plain,
! 1944: $is_random_order);
! 1945: }
! 1946:
1.53 matthew 1947: ############################################################
1948: ############################################################
1949:
1.112 raeburn 1950: # Nested table routines.
1951: #
1952: # Routines to display form items in a multi-row table with 2 columns.
1953: # Uses nested tables to divide form elements into segments.
1954: # For examples of use see loncom/interface/lonnotify.pm
1955: #
1956: # Can be used in following order: ...
1957: # &start_pick_box()
1958: # row1
1959: # row2
1960: # row3 ... etc.
1.173 raeburn 1961: # &submit_row()
1.161 raeburn 1962: # &end_pick_box()
1.112 raeburn 1963: #
1964: # where row1, row 2 etc. are chosen from &role_select_row,&course_select_row,
1965: # &status_select_row and &email_default_row
1966: #
1967: # Can also be used in following order:
1968: #
1969: # &start_pick_box()
1970: # &row_title()
1971: # &row_closure()
1972: # &row_title()
1973: # &row_closure() ... etc.
1974: # &submit_row()
1975: # &end_pick_box()
1976: #
1977: # In general a &submit_row() call should proceed the call to &end_pick_box(),
1978: # as this routine adds a button for form submission.
1.113 raeburn 1979: # &submit_row() does not require a &row_closure after it.
1.112 raeburn 1980: #
1981: # &start_pick_box() creates a bounding table with 1-pixel wide black border.
1982: # rows should be placed between calls to &start_pick_box() and &end_pick_box.
1983: #
1984: # &row_title() adds a title in the left column for each segment.
1985: # &row_closure() closes a row with a 1-pixel wide black line.
1986: #
1987: # &role_select_row() provides a select box from which to choose 1 or more roles
1988: # &course_select_row provides ways of picking groups of courses
1989: # radio buttons: all, by category or by picking from a course picker pop-up
1990: # note: by category option is only displayed if a domain has implemented
1991: # selection by year, semester, department, number etc.
1992: #
1993: # &status_select_row() provides a select box from which to choose 1 or more
1994: # access types (current access, prior access, and future access)
1995: #
1996: # &email_default_row() provides text boxes for default e-mail suffixes for
1997: # different authentication types in a domain.
1998: #
1999: # &row_title() and &row_closure() are called internally by the &*_select_row
2000: # routines, but can also be called directly to start and end rows which have
2001: # needs that are not accommodated by the *_select_row() routines.
2002:
1.193 bisitz 2003: { # Start: row_count block for pick_box
2004: my @row_count;
2005:
1.112 raeburn 2006: sub start_pick_box {
1.313 raeburn 2007: my ($css_class,$id) = @_;
1.142 albertel 2008: if (defined($css_class)) {
2009: $css_class = 'class="'.$css_class.'"';
2010: } else {
2011: $css_class= 'class="LC_pick_box"';
2012: }
1.313 raeburn 2013: my $table_id;
2014: if (defined($id)) {
2015: $table_id = ' id="'.$id.'"';
2016: }
1.193 bisitz 2017: unshift(@row_count,0);
1.112 raeburn 2018: my $output = <<"END";
1.313 raeburn 2019: <table $css_class $table_id>
1.112 raeburn 2020: END
2021: return $output;
2022: }
2023:
2024: sub end_pick_box {
1.193 bisitz 2025: shift(@row_count);
1.112 raeburn 2026: my $output = <<"END";
2027: </table>
2028: END
2029: return $output;
2030: }
2031:
1.181 bisitz 2032: sub row_headline {
2033: my $output = <<"END";
2034: <tr><td colspan="2">
2035: END
2036: return $output;
2037: }
2038:
1.112 raeburn 2039: sub row_title {
1.243 amueller 2040: my ($title,$css_title_class,$css_value_class, $css_value_furtherAttributes) = @_;
1.193 bisitz 2041: $row_count[0]++;
2042: my $css_class = ($row_count[0] % 2)?'LC_odd_row':'LC_even_row';
1.142 albertel 2043: $css_title_class ||= 'LC_pick_box_title';
2044: $css_title_class = 'class="'.$css_title_class.'"';
2045:
2046: $css_value_class ||= 'LC_pick_box_value';
2047:
1.173 raeburn 2048: if ($title ne '') {
2049: $title .= ':';
2050: }
1.112 raeburn 2051: my $output = <<"ENDONE";
1.243 amueller 2052: <tr class="LC_pick_box_row" $css_value_furtherAttributes>
1.142 albertel 2053: <td $css_title_class>
1.173 raeburn 2054: $title
1.112 raeburn 2055: </td>
1.193 bisitz 2056: <td class="$css_value_class $css_class">
1.112 raeburn 2057: ENDONE
2058: return $output;
2059: }
2060:
2061: sub row_closure {
1.143 albertel 2062: my ($no_separator) =@_;
1.113 raeburn 2063: my $output = <<"ENDTWO";
1.112 raeburn 2064: </td>
2065: </tr>
1.143 albertel 2066: ENDTWO
2067: if (!$no_separator) {
2068: $output .= <<"ENDTWO";
1.112 raeburn 2069: <tr>
1.143 albertel 2070: <td colspan="2" class="LC_pick_box_separator">
1.112 raeburn 2071: </td>
2072: </tr>
2073: ENDTWO
1.143 albertel 2074: }
1.112 raeburn 2075: return $output;
2076: }
2077:
1.193 bisitz 2078: } # End: row_count block for pick_box
2079:
1.112 raeburn 2080: sub role_select_row {
1.147 raeburn 2081: my ($roles,$title,$css_class,$show_separate_custom,$cdom,$cnum) = @_;
1.236 raeburn 2082: my $crstype = 'Course';
2083: if ($cdom ne '' && $cnum ne '') {
2084: $crstype = &Apache::loncommon::course_type($cdom.'_'.$cnum);
2085: }
1.116 raeburn 2086: my $output;
2087: if (defined($title)) {
1.142 albertel 2088: $output = &row_title($title,$css_class);
1.116 raeburn 2089: }
1.142 albertel 2090: $output .= qq|
1.198 bisitz 2091: <select name="roles" multiple="multiple">\n|;
1.113 raeburn 2092: foreach my $role (@$roles) {
1.114 raeburn 2093: my $plrole;
2094: if ($role eq 'ow') {
2095: $plrole = &mt('Course Owner');
1.147 raeburn 2096: } elsif ($role eq 'cr') {
2097: if ($show_separate_custom) {
2098: if ($cdom ne '' && $cnum ne '') {
2099: my %course_customroles = &course_custom_roles($cdom,$cnum);
2100: foreach my $crrole (sort(keys(%course_customroles))) {
2101: my ($plcrrole) = ($crrole =~ m|^cr/[^/]+/[^/]+/(.+)$|);
2102: $output .= ' <option value="'.$crrole.'">'.$plcrrole.
2103: '</option>';
2104: }
2105: }
2106: } else {
2107: $plrole = &mt('Custom Role');
2108: }
1.114 raeburn 2109: } else {
1.236 raeburn 2110: $plrole=&Apache::lonnet::plaintext($role,$crstype);
1.114 raeburn 2111: }
1.147 raeburn 2112: if (($role ne 'cr') || (!$show_separate_custom)) {
2113: $output .= ' <option value="'.$role.'">'.$plrole.'</option>';
2114: }
1.112 raeburn 2115: }
1.142 albertel 2116: $output .= qq| </select>\n|;
1.116 raeburn 2117: if (defined($title)) {
2118: $output .= &row_closure();
2119: }
1.112 raeburn 2120: return $output;
2121: }
2122:
2123: sub course_select_row {
1.142 albertel 2124: my ($title,$formname,$totcodes,$codetitles,$idlist,$idlist_titles,
1.280 raeburn 2125: $css_class,$crstype,$standardnames) = @_;
1.142 albertel 2126: my $output = &row_title($title,$css_class);
1.280 raeburn 2127: $output .= &course_selection($formname,$totcodes,$codetitles,$idlist,$idlist_titles,$crstype,$standardnames);
1.169 raeburn 2128: $output .= &row_closure();
2129: return $output;
2130: }
2131:
2132: sub course_selection {
1.280 raeburn 2133: my ($formname,$totcodes,$codetitles,$idlist,$idlist_titles,$crstype,$standardnames) = @_;
1.169 raeburn 2134: my $output = qq|
1.142 albertel 2135: <script type="text/javascript">
1.218 bisitz 2136: // <![CDATA[
1.112 raeburn 2137: function coursePick (formname) {
2138: for (var i=0; i<formname.coursepick.length; i++) {
1.114 raeburn 2139: if (formname.coursepick[i].value == 'category') {
2140: courseSet('');
2141: }
1.112 raeburn 2142: if (!formname.coursepick[i].checked) {
2143: if (formname.coursepick[i].value == 'specific') {
2144: formname.coursetotal.value = 0;
2145: formname.courselist = '';
2146: }
2147: }
2148: }
2149: }
1.114 raeburn 2150: function setPick (formname) {
2151: for (var i=0; i<formname.coursepick.length; i++) {
2152: if (formname.coursepick[i].value == 'category') {
2153: formname.coursepick[i].checked = true;
2154: }
2155: formname.coursetotal.value = 0;
2156: formname.courselist = '';
2157: }
2158: }
1.218 bisitz 2159: // ]]>
1.112 raeburn 2160: </script>
2161: |;
1.237 raeburn 2162:
2163: my ($allcrs,$pickspec);
2164: if ($crstype eq 'Community') {
2165: $allcrs = &mt('All communities');
2166: $pickspec = &mt('Pick specific communities:');
2167: } else {
2168: $allcrs = &mt('All courses');
2169: $pickspec = &mt('Pick specific course(s):');
2170: }
2171:
1.112 raeburn 2172: my $courseform='<b>'.&Apache::loncommon::selectcourse_link
1.237 raeburn 2173: ($formname,'pickcourse','pickdomain','coursedesc','',1,$crstype).'</b>';
2174: $output .= '<input type="radio" name="coursepick" value="all" onclick="coursePick(this.form)" />'.$allcrs.'<br />';
1.112 raeburn 2175: if ($totcodes > 0) {
2176: my $numtitles = @$codetitles;
2177: if ($numtitles > 0) {
1.129 raeburn 2178: $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 2179: $output .= '<table><tr><td>'.$$codetitles[0].'<br />'."\n".
1.280 raeburn 2180: '<select name="'.$standardnames->[0].
1.114 raeburn 2181: '" onChange="setPick(this.form);courseSet('."'$$codetitles[0]'".')">'."\n".
1.112 raeburn 2182: ' <option value="-1" />Select'."\n";
2183: my @items = ();
2184: my @longitems = ();
2185: if ($$idlist{$$codetitles[0]} =~ /","/) {
1.113 raeburn 2186: @items = split(/","/,$$idlist{$$codetitles[0]});
1.112 raeburn 2187: } else {
2188: $items[0] = $$idlist{$$codetitles[0]};
2189: }
2190: if (defined($$idlist_titles{$$codetitles[0]})) {
2191: if ($$idlist_titles{$$codetitles[0]} =~ /","/) {
1.113 raeburn 2192: @longitems = split(/","/,$$idlist_titles{$$codetitles[0]});
1.112 raeburn 2193: } else {
2194: $longitems[0] = $$idlist_titles{$$codetitles[0]};
2195: }
2196: for (my $i=0; $i<@longitems; $i++) {
2197: if ($longitems[$i] eq '') {
2198: $longitems[$i] = $items[$i];
2199: }
2200: }
2201: } else {
2202: @longitems = @items;
2203: }
2204: for (my $i=0; $i<@items; $i++) {
2205: $output .= ' <option value="'.$items[$i].'">'.$longitems[$i].'</option>';
2206: }
2207: $output .= '</select></td>';
2208: for (my $i=1; $i<$numtitles; $i++) {
2209: $output .= '<td>'.$$codetitles[$i].'<br />'."\n".
1.280 raeburn 2210: '<select name="'.$standardnames->[$i].
1.112 raeburn 2211: '" onChange="courseSet('."'$$codetitles[$i]'".')">'."\n".
2212: '<option value="-1"><-Pick '.$$codetitles[$i-1].'</option>'."\n".
2213: '</select>'."\n".
2214: '</td>';
2215: }
2216: $output .= '</tr></table><br />';
2217: }
2218: }
1.238 raeburn 2219: $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 2220: return $output;
2221: }
2222:
2223: sub status_select_row {
1.142 albertel 2224: my ($types,$title,$css_class) = @_;
1.117 raeburn 2225: my $output;
2226: if (defined($title)) {
1.142 albertel 2227: $output = &row_title($title,$css_class,'LC_pick_box_select');
1.117 raeburn 2228: }
1.142 albertel 2229: $output .= qq|
1.198 bisitz 2230: <select name="types" multiple="multiple">\n|;
1.113 raeburn 2231: foreach my $status_type (sort(keys(%{$types}))) {
1.112 raeburn 2232: $output .= ' <option value="'.$status_type.'">'.$$types{$status_type}.'</option>';
2233: }
1.142 albertel 2234: $output .= qq| </select>\n|;
1.117 raeburn 2235: if (defined($title)) {
2236: $output .= &row_closure();
2237: }
1.112 raeburn 2238: return $output;
2239: }
2240:
2241: sub email_default_row {
1.142 albertel 2242: my ($authtypes,$title,$descrip,$css_class) = @_;
2243: my $output = &row_title($title,$css_class);
2244: $output .= $descrip.
2245: &Apache::loncommon::start_data_table().
2246: &Apache::loncommon::start_data_table_header_row().
2247: '<th>'.&mt('Authentication Method').'</th>'.
2248: '<th align="right">'.&mt('Username -> e-mail conversion').'</th>'."\n".
2249: &Apache::loncommon::end_data_table_header_row();
1.112 raeburn 2250: my $rownum = 0;
1.113 raeburn 2251: foreach my $auth (sort(keys(%{$authtypes}))) {
1.112 raeburn 2252: my ($userentry,$size);
2253: if ($auth =~ /^krb/) {
2254: $userentry = '';
2255: $size = 25;
2256: } else {
2257: $userentry = 'username@';
2258: $size = 15;
2259: }
1.142 albertel 2260: $output .= &Apache::loncommon::start_data_table_row().
2261: '<td> '.$$authtypes{$auth}.'</td>'.
2262: '<td align="right">'.$userentry.
2263: '<input type="text" name="'.$auth.'" size="'.$size.'" /></td>'.
2264: &Apache::loncommon::end_data_table_row();
1.112 raeburn 2265: }
1.142 albertel 2266: $output .= &Apache::loncommon::end_data_table();
1.112 raeburn 2267: $output .= &row_closure();
2268: return $output;
2269: }
2270:
2271:
2272: sub submit_row {
1.142 albertel 2273: my ($title,$cmd,$submit_text,$css_class) = @_;
2274: my $output = &row_title($title,$css_class,'LC_pick_box_submit');
1.112 raeburn 2275: $output .= qq|
2276: <br />
2277: <input type="hidden" name="command" value="$cmd" />
2278: <input type="submit" value="$submit_text"/>
2279: <br /><br />
1.142 albertel 2280: \n|;
1.112 raeburn 2281: return $output;
2282: }
1.1 stredwic 2283:
1.147 raeburn 2284: sub course_custom_roles {
2285: my ($cdom,$cnum) = @_;
2286: my %returnhash=();
2287: my %coursepersonnel=&Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
2288: foreach my $person (sort(keys(%coursepersonnel))) {
2289: my ($role) = ($person =~ /^([^:]+):/);
2290: my ($end,$start) = split(/:/,$coursepersonnel{$person});
2291: if ($end == -1 && $start == -1) {
2292: next;
2293: }
2294: if ($role =~ m|^cr/[^/]+/[^/]+/[^/]|) {
2295: $returnhash{$role} ++;
2296: }
2297: }
2298: return %returnhash;
2299: }
2300:
2301:
1.270 www 2302: sub resource_info_box {
1.300 raeburn 2303: my ($symb,$onlyfolderflag,$stuvcurrent,$stuvdisp)=@_;
1.270 www 2304: my $return='';
1.300 raeburn 2305: if ($stuvcurrent ne '') {
2306: $return = '<div class="LC_left_float">';
2307: }
1.270 www 2308: if ($symb) {
1.300 raeburn 2309: $return.=&Apache::loncommon::start_data_table();
1.271 www 2310: my ($map,$id,$resource)=&Apache::lonnet::decode_symb($symb);
2311: my $folder=&Apache::lonnet::gettitle($map);
2312: $return.=&Apache::loncommon::start_data_table_row().
1.300 raeburn 2313: '<th align="left">'.&mt('Folder:').'</th><td>'.$folder.'</td>'.
1.271 www 2314: &Apache::loncommon::end_data_table_row();
1.270 www 2315: unless ($onlyfolderflag) {
2316: $return.=&Apache::loncommon::start_data_table_row().
1.300 raeburn 2317: '<th align="left">'.&mt('Resource:').'</th><td>'.&Apache::lonnet::gettitle($symb).'</td>'.
2318: &Apache::loncommon::end_data_table_row();
2319: }
2320: if ($stuvcurrent ne '') {
2321: $return .= &Apache::loncommon::start_data_table_row().
2322: '<th align="left">'.&mt("Student's current version:").'</th><td>'.$stuvcurrent.'</td>'.
2323: &Apache::loncommon::end_data_table_row();
2324: }
2325: if ($stuvdisp ne '') {
2326: $return .= &Apache::loncommon::start_data_table_row().
2327: '<th align="left">'.&mt("Student's version displayed:").'</th><td>'.$stuvdisp.'</td>'.
1.270 www 2328: &Apache::loncommon::end_data_table_row();
2329: }
1.271 www 2330: $return.=&Apache::loncommon::end_data_table();
1.270 www 2331: } else {
2332: $return='<p><span class="LC_error">'.&mt('No context provided.').'</span></p>';
2333: }
1.300 raeburn 2334: if ($stuvcurrent ne '') {
2335: $return .= '</div>';
2336: }
1.270 www 2337: return $return;
2338: }
2339:
1.119 raeburn 2340: ##############################################
2341: ##############################################
1.179 raeburn 2342:
2343: # topic_bar
2344: #
1.248 wenzelju 2345: # Generates a div containing an (optional) number with a white background followed by a
1.240 raeburn 2346: # title with a background color defined in the corresponding CSS: LC_topic_bar
2347: # Inputs:
1.248 wenzelju 2348: # 1. number to display.
2349: # If input for number is empty only the title will be displayed.
1.240 raeburn 2350: # 2. title text to display.
1.313 raeburn 2351: # 3. optional id for the <div>
1.240 raeburn 2352: # Outputs - a scalar containing html mark-up for the div.
2353:
1.179 raeburn 2354: sub topic_bar {
1.313 raeburn 2355: my ($num,$title,$id) = @_;
1.248 wenzelju 2356: my $number = '';
2357: if ($num ne '') {
2358: $number = '<span>'.$num.'</span>';
1.239 amueller 2359: }
1.313 raeburn 2360: if ($id ne '') {
2361: $id = 'id="'.$id.'"';
2362: }
2363: return '<div class="LC_topic_bar" '.$id.'>'.$number.$title.'</div>';
1.179 raeburn 2364: }
2365:
2366: ##############################################
2367: ##############################################
1.119 raeburn 2368: # echo_form_input
2369: #
2370: # Generates html markup to add form elements from the referrer page
2371: # as hidden form elements (values encoded) in the new page.
2372: #
2373: # Intended to support two types of use
2374: # (a) to allow backing up to earlier pages in a multi-page
2375: # form submission process using a breadcrumb trail.
2376: #
2377: # (b) to allow the current page to be reloaded with form elements
2378: # set on previous page to remain unchanged. An example would
2379: # be where the a page containing a dynamically-built table of data is
2380: # is to be redisplayed, with only the sort order of the data changed.
2381: #
2382: # Inputs:
2383: # 1. Reference to array of form elements in the submitted form on
2384: # the referrer page which are to be excluded from the echoed elements.
2385: #
2386: # 2. Reference to array of regular expressions, which if matched in the
2387: # name of the form element n the referrer page will be omitted from echo.
2388: #
2389: # Outputs: A scalar containing the html markup for the echoed form
2390: # elements (all as hidden elements, with values encoded).
2391:
2392:
2393: sub echo_form_input {
2394: my ($excluded,$regexps) = @_;
2395: my $output = '';
2396: foreach my $key (keys(%env)) {
2397: if ($key =~ /^form\.(.+)$/) {
2398: my $name = $1;
2399: my $match = 0;
1.285 raeburn 2400: if (ref($excluded) eq 'ARRAY') {
2401: next if (grep(/^\Q$name\E$/,@{$excluded}));
2402: }
2403: if (ref($regexps) eq 'ARRAY') {
2404: if (@{$regexps} > 0) {
2405: foreach my $regexp (@{$regexps}) {
2406: if ($name =~ /$regexp/) {
2407: $match = 1;
2408: last;
1.119 raeburn 2409: }
2410: }
2411: }
1.285 raeburn 2412: }
2413: next if ($match);
2414: if (ref($env{$key}) eq 'ARRAY') {
2415: foreach my $value (@{$env{$key}}) {
2416: $value = &HTML::Entities::encode($value,'<>&"');
2417: $output .= '<input type="hidden" name="'.$name.
2418: '" value="'.$value.'" />'."\n";
1.119 raeburn 2419: }
1.285 raeburn 2420: } else {
2421: my $value = &HTML::Entities::encode($env{$key},'<>&"');
2422: $output .= '<input type="hidden" name="'.$name.
2423: '" value="'.$value.'" />'."\n";
1.119 raeburn 2424: }
2425: }
2426: }
2427: return $output;
2428: }
2429:
2430: ##############################################
2431: ##############################################
2432: # set_form_elements
2433: #
2434: # Generates javascript to set form elements to values based on
2435: # corresponding values for the same form elements when the page was
2436: # previously submitted.
2437: #
2438: # Last submission values are read from hidden form elements in referring
2439: # page which have the same name, i.e., generated by &echo_form_input().
2440: #
2441: # Intended to be called by onload event.
2442: #
1.121 raeburn 2443: # Inputs:
2444: # (a) Reference to hash of echoed form elements to be set.
1.119 raeburn 2445: #
2446: # In the hash, keys are the form element names, and the values are the
2447: # element type (selectbox, radio, checkbox or text -for textbox, textarea or
2448: # hidden).
1.121 raeburn 2449: #
2450: # (b) Optional reference to hash of stored elements to be set.
2451: #
2452: # If the page being displayed is a page which permits modification of
2453: # previously stored data, e.g., the first page in a multi-page submission,
2454: # then if stored is supplied, form elements will be set to the last stored
2455: # values. If user supplied values are also available for the same elements
2456: # these will replace the stored values.
2457: #
1.119 raeburn 2458: # Output:
2459: #
2460: # javascript function - set_form_elements() which sets form elements,
2461: # expects an argument: formname - the name of the form according to
2462: # the DOM, e.g., document.compose
2463:
2464: sub set_form_elements {
1.121 raeburn 2465: my ($elements,$stored) = @_;
2466: my %values;
1.119 raeburn 2467: my $output .= 'function setFormElements(courseForm) {
1.121 raeburn 2468: ';
2469: if (defined($stored)) {
2470: foreach my $name (keys(%{$stored})) {
2471: if (exists($$elements{$name})) {
2472: if (ref($$stored{$name}) eq 'ARRAY') {
2473: $values{$name} = $$stored{$name};
2474: } else {
2475: @{$values{$name}} = ($$stored{$name});
2476: }
2477: }
2478: }
2479: }
2480:
1.119 raeburn 2481: foreach my $key (keys(%env)) {
2482: if ($key =~ /^form\.(.+)$/) {
2483: my $name = $1;
2484: if (exists($$elements{$name})) {
1.121 raeburn 2485: @{$values{$name}} = &Apache::loncommon::get_env_multiple($key);
2486: }
2487: }
2488: }
2489:
2490: foreach my $name (keys(%values)) {
2491: for (my $i=0; $i<@{$values{$name}}; $i++) {
2492: $values{$name}[$i] = &HTML::Entities::decode($values{$name}[$i],'<>&"');
2493: $values{$name}[$i] =~ s/([\r\n\f]+)/\\n/g;
2494: $values{$name}[$i] =~ s/"/\\"/g;
2495: }
1.234 raeburn 2496: if (($$elements{$name} eq 'text') || ($$elements{$name} eq 'hidden')) {
1.121 raeburn 2497: my $numvalues = @{$values{$name}};
2498: if ($numvalues > 1) {
2499: my $valuestring = join('","',@{$values{$name}});
2500: $output .= qq|
1.119 raeburn 2501: var textvalues = new Array ("$valuestring");
1.147 raeburn 2502: var total = courseForm.elements['$name'].length;
1.119 raeburn 2503: if (total > $numvalues) {
2504: total = $numvalues;
2505: }
2506: for (var i=0; i<total; i++) {
1.147 raeburn 2507: courseForm.elements['$name']\[i].value = textvalues[i];
1.119 raeburn 2508: }
2509: |;
1.121 raeburn 2510: } else {
2511: $output .= qq|
1.147 raeburn 2512: courseForm.elements['$name'].value = "$values{$name}[0]";
1.119 raeburn 2513: |;
1.121 raeburn 2514: }
2515: } else {
2516: $output .= qq|
1.147 raeburn 2517: var elementLength = courseForm.elements['$name'].length;
1.119 raeburn 2518: if (elementLength==undefined) {
2519: |;
1.121 raeburn 2520: foreach my $value (@{$values{$name}}) {
2521: if ($$elements{$name} eq 'selectbox') {
2522: $output .= qq|
1.147 raeburn 2523: if (courseForm.elements['$name'].options[0].value == "$value") {
2524: courseForm.elements['$name'].options[0].selected = true;
1.119 raeburn 2525: }|;
1.121 raeburn 2526: } elsif (($$elements{$name} eq 'radio') ||
2527: ($$elements{$name} eq 'checkbox')) {
2528: $output .= qq|
1.147 raeburn 2529: if (courseForm.elements['$name'].value == "$value") {
1.148 albertel 2530: courseForm.elements['$name'].checked = true;
1.234 raeburn 2531: } else {
2532: courseForm.elements['$name'].checked = false;
1.119 raeburn 2533: }|;
1.121 raeburn 2534: }
2535: }
2536: $output .= qq|
1.119 raeburn 2537: }
2538: else {
1.147 raeburn 2539: for (var i=0; i<courseForm.elements['$name'].length; i++) {
1.119 raeburn 2540: |;
1.121 raeburn 2541: if ($$elements{$name} eq 'selectbox') {
2542: $output .= qq|
1.147 raeburn 2543: courseForm.elements['$name'].options[i].selected = false;|;
1.121 raeburn 2544: } elsif (($$elements{$name} eq 'radio') ||
2545: ($$elements{$name} eq 'checkbox')) {
2546: $output .= qq|
1.147 raeburn 2547: courseForm.elements['$name']\[i].checked = false;|;
1.121 raeburn 2548: }
2549: $output .= qq|
1.119 raeburn 2550: }
1.147 raeburn 2551: for (var j=0; j<courseForm.elements['$name'].length; j++) {
1.119 raeburn 2552: |;
1.121 raeburn 2553: foreach my $value (@{$values{$name}}) {
2554: if ($$elements{$name} eq 'selectbox') {
2555: $output .= qq|
1.147 raeburn 2556: if (courseForm.elements['$name'].options[j].value == "$value") {
2557: courseForm.elements['$name'].options[j].selected = true;
1.119 raeburn 2558: }|;
1.121 raeburn 2559: } elsif (($$elements{$name} eq 'radio') ||
2560: ($$elements{$name} eq 'checkbox')) {
2561: $output .= qq|
1.147 raeburn 2562: if (courseForm.elements['$name']\[j].value == "$value") {
2563: courseForm.elements['$name']\[j].checked = true;
1.119 raeburn 2564: }|;
1.121 raeburn 2565: }
2566: }
2567: $output .= qq|
1.119 raeburn 2568: }
2569: }
2570: |;
2571: }
2572: }
2573: $output .= "
1.235 raeburn 2574: return;
1.119 raeburn 2575: }\n";
2576: return $output;
2577: }
2578:
1.158 raeburn 2579: ##############################################
2580: ##############################################
2581:
1.291 raeburn 2582: sub file_submissionchk_js {
2583: my ($turninpaths,$multiples) = @_;
2584: my $overwritewarn = &mt('File(s) you uploaded for your submission will overwrite existing file(s) submitted for this item').'\\n'.
2585: &mt('Continue submission and overwrite the file(s)?');
2586: my $delfilewarn = &mt('You have indicated you wish to remove some files previously included in your submission.').'\\n'.
2587: &mt('Continue submission with these files removed?');
1.292 raeburn 2588: my ($turninpathtext,$multtext,$arrayindexofjs);
1.291 raeburn 2589: if (ref($turninpaths) eq 'HASH') {
2590: foreach my $key (sort(keys(%{$turninpaths}))) {
2591: $turninpathtext .= " if (prefix == '$key') {\n".
2592: " return '$turninpaths->{$key}';\n".
2593: " }\n";
2594: }
2595: }
2596: $turninpathtext .= " return '';\n";
2597: if (ref($multiples) eq 'HASH') {
2598: foreach my $key (sort(keys(%{$multiples}))) {
2599: $multtext .= " if (prefix == '$key') {\n".
2600: " return '$multiples->{$key}';\n".
2601: " }\n";
2602: }
2603: }
2604: $multtext .= " return '';\n";
1.292 raeburn 2605:
1.293 raeburn 2606: $arrayindexofjs = &Apache::loncommon::javascript_array_indexof();
1.291 raeburn 2607: return <<"ENDSCRIPT";
2608: <script type="text/javascript">
2609: // <![CDATA[
2610:
2611: function file_submission_check(formname,path,multiresp) {
2612: var elemnum = formname.elements.length;
2613: if (elemnum == 0) {
2614: return true;
2615: }
2616: var alloverwrites = [];
2617: var alldelconfirm = [];
2618: var result = [];
2619: var submitter;
2620: var subprefix;
2621: var allsub = getIndexByName(formname,'all_submit');
2622: if (allsub == -1) {
2623: var idx = getIndexByName(formname,'submitted');
2624: if (idx != -1) {
2625: var subval = String(formname.elements[idx].value);
2626: submitter = subval.replace(/^part_/,'');
2627: result = overwritten_check(formname,path,multiresp,submitter);
2628: alloverwrites.push.apply(alloverwrites,result['overwrite']);
2629: alldelconfirm.push.apply(alldelconfirm,result['delete']);
2630: }
2631: } else {
2632: if (formname.elements[allsub].type == 'submit') {
2633: var partsub = /^\\d+\\.\\d+_submit_.+\$/;
2634: var allprefixes = [];
2635: var allparts = [];
2636: for (var i=0; i<formname.elements.length; i++) {
2637: if (formname.elements[i].type == 'submit') {
2638: var elemname = formname.elements[i].name;
2639: var subname = String(elemname);
2640: var savesub = String(elemname);
2641: if (partsub.test(subname)) {
2642: var prefix = subname.replace(/_submit_.+\$/,'');
2643: if (allprefixes.indexOf(prefix) == -1) {
2644: allprefixes.push(prefix);
2645: allparts[prefix] = [];
2646: }
2647: var part = savesub.replace(/^\\d+\\.\\d+_submit_/,'');
2648: allparts[prefix].push(part);
2649: }
2650: }
2651: }
2652: for (var k=0; k<allprefixes.length; k++) {
2653: var idx = getIndexByName(formname,allprefixes[k]+'_submitted');
2654: if (idx > -1) {
2655: if (formname.elements[idx].value != 'yes') {
2656: submitterval = formname.elements[idx].value;
2657: submitter = submitterval.replace(/^part_/,'');
2658: subprefix = allprefixes[k];
2659: result = overwritten_check(formname,path,multiresp,submitter,subprefix);
2660: alloverwrites.push.apply(alloverwrites,result['overwrite']);
2661: alldelconfirm.push.apply(alldelconfirm,result['delete']);
2662: break;
2663: }
2664: }
2665: }
2666: if (submitter == '' || submitter == undefined) {
2667: for (var m=0; m<allprefixes.length; m++) {
2668: for (var n=0; n<allparts[allprefixes[m]].length; n++) {
2669: var result = overwritten_check(formname,path,multiresp,allparts[allprefixes[m]][n],allprefixes[m]);
2670: alloverwrites.push.apply(alloverwrites,result['overwrite']);
2671: alldelconfirm.push.apply(alldelconfirm,result['delete']);
2672: }
2673: }
2674: }
2675: }
2676: }
2677: if (alloverwrites.length > 0) {
2678: if (!confirm("$overwritewarn")) {
2679: for (var n=0; n<alloverwrites.length; n++) {
2680: formname.elements[alloverwrites[n]].value = "";
2681: }
2682: return false;
2683: }
2684: }
2685: if (alldelconfirm.length > 0) {
2686: if (!confirm("$delfilewarn")) {
2687: for (var p=0; p<alldelconfirm.length; p++) {
2688: formname.elements[alldelconfirm[p]].checked = false;
2689: }
2690: return false;
2691: }
2692: }
2693: return true;
2694: }
2695:
2696: function getIndexByName(formname,item) {
2697: for (var i=0;i<formname.elements.length;i++) {
2698: if (formname.elements[i].name == item) {
2699: return i;
2700: }
2701: }
2702: return -1;
2703: }
2704:
2705: function overwritten_check(formname,path,multiresp,part,prefix) {
2706: var result = [];
2707: result['overwrite'] = [];
2708: result['delete'] = [];
2709: var elemnum = formname.elements.length;
2710: if (elemnum == 0) {
2711: return result;
2712: }
2713: var uploadstr;
2714: var deletestr;
2715: if ((prefix != undefined) && (prefix != '')) {
2716: var prepend = prefix+'_';
2717: uploadstr = new RegExp("^"+prepend+"HWFILE"+part+".+\$");
2718: deletestr = new RegExp("^"+prepend+"HWFILE"+part+".+_\\\\d+_delete\$");
2719: multiresp = check_for_multiples(prepend);
2720: path = check_for_turninpath(prepend);
2721: } else {
2722: uploadstr = new RegExp("^HWFILE"+part+".+\$");
2723: deletestr = new RegExp("^HWFILE"+part+".+_\\\\d+_delete\$");
2724: }
2725: var alluploads = [];
2726: var allchecked = [];
2727: var allskipdel = [];
2728: var fnametrim = /[^\\/\\\\]+\$/;
2729: for (var i=0; i<formname.elements.length; i++) {
2730: var id = formname.elements[i].id;
2731: if (id != '') {
2732: if (uploadstr.test(id)) {
2733: if (formname.elements[i].type == 'file') {
2734: alluploads.push(id);
2735: } else {
2736: if (deletestr.test(id)) {
2737: if (formname.elements[i].type == 'checkbox') {
2738: if (formname.elements[i].checked) {
2739: allchecked.push(id);
2740: }
2741: }
2742: }
2743: }
2744: }
2745: }
2746: }
2747: for (var j=0; j<alluploads.length; j++) {
2748: var delstr = new RegExp("^"+alluploads[j]+"_\\\\d+_delete\$");
2749: var delboxes = [];
2750: for (var k=0; k<formname.elements.length; k++) {
2751: var id = formname.elements[k].id;
2752: if ((id != '') && (id != undefined)) {
2753: if (delstr.test(id)) {
2754: if (formname.elements[k].type == 'checkbox') {
2755: delboxes.push(id);
2756: }
2757: }
2758: }
2759: }
2760: if (delboxes.length > 0) {
2761: if ((formname.elements[alluploads[j]].value != undefined) &&
2762: (formname.elements[alluploads[j]].value != '')) {
2763: var filepath = formname.elements[alluploads[j]].value;
2764: var newfilename = fnametrim.exec(filepath);
2765: if (newfilename != null) {
2766: var filename = String(newfilename);
2767: var nospaces = filename.replace(/\\s+/g,'_');
2768: var nospecials = nospaces.replace(/[^\\/\\w\\.\\-]/g,'');
2769: var cleanfilename = nospecials.replace(/\\.(\\d+\\.)/g,"_\$1");
2770: if (cleanfilename != '') {
2771: var fullpath = path+"/"+cleanfilename;
2772: if (multiresp == 1) {
2773: var partid = String(alluploads[i]);
2774: var subdir = partid.replace(/^\\d*.?\\d*_?HWFILE/,'');
2775: if (subdir != "" && subdir != undefined) {
2776: fullpath = path+"/"+subdir+"/"+cleanfilename;
2777: }
2778: }
2779: for (var m=0; m<delboxes.length; m++) {
2780: if (fullpath == formname.elements[delboxes[m]].value) {
2781: if (formname.elements[delboxes[m]].checked) {
2782: allskipdel.push(delboxes[m]);
2783: } else {
2784: result['overwrite'].push(alluploads[j]);
2785: }
2786: break;
2787: }
2788: }
2789: }
2790: }
2791: }
2792: }
2793: }
2794: if (allchecked.length > 0) {
2795: if (allskipdel.length > 0) {
2796: for (var n=0; n<allchecked.length; n++) {
2797: if (allskipdel.indexOf(allchecked[n]) == -1) {
2798: result['delete'].push(allchecked[n]);
2799: }
2800: }
2801: } else {
2802: result['delete'].push.apply(result['delete'],allchecked);
2803: }
2804: }
2805: return result;
2806: }
2807:
2808: function check_for_multiples(prefix) {
2809: $multtext
2810: }
2811:
2812: function check_for_turninpath(prefix) {
2813: $turninpathtext
2814: }
2815:
2816: // ]]>
2817: </script>
2818:
1.292 raeburn 2819: $arrayindexofjs
2820:
1.291 raeburn 2821: ENDSCRIPT
2822: }
2823:
2824: ##############################################
2825: ##############################################
2826:
1.313 raeburn 2827: sub resize_scrollbox_js {
2828: my ($context,$tabidstr) = @_;
2829: my (%names,$paddingwfrac,$offsetwfrac,$offsetv,$minw,$minv);
2830: if ($context eq 'docs') {
2831: %names = (
2832: boxw => 'contenteditor',
2833: item => 'contentlist',
2834: header => 'uploadfileresult',
2835: scroll => 'contentscroll',
2836: boxh => 'contenteditor',
2837: );
2838: $paddingwfrac = 0.09;
2839: $offsetwfrac = 0.015;
2840: $offsetv = 20;
2841: $minw = 250;
2842: $minv = 200;
2843: } elsif ($context eq 'params') {
2844: %names = (
2845: boxw => 'parameditor',
2846: item => 'mapmenuinner',
2847: header => 'parmstep1',
2848: scroll => 'mapmenuscroll',
2849: boxh => 'parmlevel',
2850: );
2851: $paddingwfrac = 0.2;
2852: $offsetwfrac = 0.015;
2853: $offsetv = 80;
2854: $minw = 100;
2855: $minv = 100;
2856: }
2857: my $viewport_js = &Apache::loncommon::viewport_geometry_js();
2858: my $output = '
2859:
2860: window.onresize=callResize;
2861:
2862: ';
2863: if ($context eq 'docs') {
2864: $output .= '
2865: var activeTab;
2866: ';
2867: }
2868: $output .= <<"FIRST";
2869:
2870: $viewport_js
2871:
2872: function resize_scrollbox(scrollboxname,chkw,chkh) {
2873: var scrollboxid = 'div_'+scrollboxname;
2874: var scrolltableid = 'table_'+scrollboxname;
2875: var scrollbox;
2876: var scrolltable;
2877:
2878: if (document.getElementById("$names{'boxw'}") == null) {
2879: return;
2880: }
2881:
2882: if (document.getElementById(scrollboxid) == null) {
2883: return;
2884: } else {
2885: scrollbox = document.getElementById(scrollboxid);
2886: }
2887:
2888:
2889: if (document.getElementById(scrolltableid) == null) {
2890: return;
2891: } else {
2892: scrolltable = document.getElementById(scrolltableid);
2893: }
2894:
2895: init_geometry();
2896: var vph = Geometry.getViewportHeight();
2897: var vpw = Geometry.getViewportWidth();
2898:
2899: FIRST
2900: if ($context eq 'docs') {
2901: $output .= "
2902: var alltabs = ['$tabidstr'];
2903: ";
2904: } elsif ($context eq 'params') {
2905: $output .= "
2906: if (document.getElementById('$names{'boxh'}') == null) {
2907: return;
2908: }
2909: ";
2910: }
2911: $output .= <<"SECOND";
2912: var listwchange;
2913: if (chkw == 1) {
2914: var boxw = document.getElementById("$names{'boxw'}").offsetWidth;
2915: var itemw;
2916: var itemid = document.getElementById("$names{'item'}");
2917: if (itemid != null) {
2918: itemw = itemid.offsetWidth;
2919: }
2920: var itemwstart = itemw;
2921:
2922: var scrollboxw = scrollbox.offsetWidth;
2923: var scrollboxscrollw = scrollbox.scrollWidth;
2924:
2925: var offsetw = parseInt(vpw * $offsetwfrac);
2926: var paddingw = parseInt(vpw * $paddingwfrac);
2927:
2928: var minscrollboxw = $minw;
2929: var maxcolw = 0;
2930: SECOND
2931: if ($context eq 'docs') {
2932: $output .= <<"DOCSONE";
2933: var actabw = 0;
2934: for (var i=0; i<alltabs.length; i++) {
2935: if (activeTab == alltabs[i]) {
2936: actabw = document.getElementById(alltabs[i]).offsetWidth;
2937: if (actabw > maxcolw) {
2938: maxcolw = actabw;
2939: }
2940: } else {
2941: if (document.getElementById(alltabs[i]) != null) {
2942: var thistab = document.getElementById(alltabs[i]);
2943: thistab.style.visibility = 'hidden';
2944: thistab.style.display = 'block';
2945: var tabw = document.getElementById(alltabs[i]).offsetWidth;
2946: thistab.style.display = 'none';
2947: thistab.style.visibility = '';
2948: if (tabw > maxcolw) {
2949: maxcolw = tabw;
2950: }
2951: }
2952: }
2953: }
2954: DOCSONE
2955: } elsif ($context eq 'params') {
2956: $output .= <<"PARAMSONE";
2957: var parmlevelrows = new Array();
2958: var mapmenucells = new Array();
2959: parmlevelrows = document.getElementById("$names{'boxh'}").rows;
2960: var numrows = parmlevelrows.length;
2961: if (numrows > 1) {
2962: mapmenucells = parmlevelrows[2].getElementsByTagName('td');
2963: }
2964: maxcolw = mapmenucells[0].offsetWidth;
2965: PARAMSONE
2966: }
2967: $output .= <<"THIRD";
2968: if (maxcolw > 0) {
2969: var newscrollboxw;
2970: if (maxcolw+paddingw+scrollboxscrollw<boxw) {
2971: newscrollboxw = boxw-paddingw-maxcolw;
2972: if (newscrollboxw < minscrollboxw) {
2973: newscrollboxw = minscrollboxw;
2974: }
2975: scrollbox.style.width = newscrollboxw+"px";
2976: if (newscrollboxw != scrollboxw) {
2977: var newitemw = newscrollboxw-offsetw;
2978: itemid.style.width = newitemw+"px";
2979: }
2980: } else {
2981: newscrollboxw = boxw-paddingw-maxcolw;
2982: if (newscrollboxw < minscrollboxw) {
2983: newscrollboxw = minscrollboxw;
2984: }
2985: scrollbox.style.width = newscrollboxw+"px";
2986: if (newscrollboxw != scrollboxw) {
2987: var newitemw = newscrollboxw-offsetw;
2988: itemid.style.width = newitemw+"px";
2989: }
2990: }
2991:
2992: if (newscrollboxw != scrollboxw) {
2993: var newscrolltablew = newscrollboxw+offsetw;
2994: scrolltable.style.width = newscrolltablew+"px";
2995: }
2996: }
2997:
2998: if (itemid.offsetWidth != itemwstart) {
2999: listwchange = 1;
3000: }
3001: }
3002: if ((chkh == 1) || (listwchange)) {
3003: var primaryheight = document.getElementById('LC_nav_bar').offsetHeight;
3004: var secondaryheight = document.getElementById('LC_secondary_menu').offsetHeight;
3005: var crumbsheight = document.getElementById('LC_breadcrumbs').offsetHeight;
3006: var dccidheight = 0;
3007: if (document.getElementById('dccid') != null) {
3008: dccidheight = document.getElementById('dccid').offsetHeight;
3009: }
3010: var headerheight = 0;
3011: if (document.getElementById("$names{'header'}") != null) {
3012: headerheight = document.getElementById("$names{'header'}").offsetHeight;
3013: }
3014: var tabbedheight = document.getElementById("tabbededitor").offsetHeight;
3015: var boxheight = document.getElementById("$names{'boxh'}").offsetHeight;
3016: var freevspace = vph-(primaryheight+secondaryheight+crumbsheight+dccidheight+headerheight+tabbedheight+boxheight);
3017:
3018: var scrollboxheight = scrollbox.offsetHeight;
3019: var scrollboxscrollheight = scrollbox.scrollHeight;
3020:
3021: var minvscrollbox = $minv;
3022: var offsetv = $offsetv;
3023: var newscrollboxheight;
3024: if (freevspace < 0) {
3025: newscrollboxheight = scrollboxheight+freevspace-offsetv;
3026: if (newscrollboxheight < minvscrollbox) {
3027: newscrollboxheight = minvscrollbox;
3028: }
3029: scrollbox.style.height = newscrollboxheight + "px";
3030: } else {
3031: if (scrollboxscrollheight > scrollboxheight) {
3032: if (freevspace > offsetv) {
3033: newscrollboxheight = scrollboxheight+freevspace-offsetv;
3034: if (newscrollboxheight < minvscrollbox) {
3035: newscrollboxheight = minvscrollbox;
3036: }
3037: scrollbox.style.height = newscrollboxheight+"px";
3038: }
3039: }
3040: }
3041: scrollboxheight = scrollbox.offsetHeight;
3042: var itemh = document.getElementById("$names{'item'}").offsetHeight;
3043:
3044: if (scrollboxscrollheight <= scrollboxheight) {
3045: if ((itemh+offsetv)<scrollboxheight) {
3046: newscrollheight = itemh+offsetv;
3047: scrollbox.style.height = newscrollheight+"px";
3048: }
3049: }
3050: }
3051: return;
3052: }
3053:
3054: function callResize() {
3055: var timer;
3056: clearTimeout(timer);
3057: timer=setTimeout('resize_scrollbox("$names{'scroll'}","1","1")',500);
3058: }
3059:
1.329 raeburn 3060: THIRD
1.313 raeburn 3061: return $output;
3062: }
3063:
1.328 raeburn 3064: ##############################################
3065: ##############################################
3066:
3067: sub javascript_jumpto_resource {
3068: my $confirm_switch = &mt("Editing requires switching to the resource's home server.").'\n'.
3069: &mt('Switch server?');
3070: return (<<ENDUTILITY)
3071:
3072: function go(url) {
3073: if (url!='' && url!= null) {
3074: currentURL = null;
3075: currentSymb= null;
3076: window.location.href=url;
3077: }
3078: }
3079:
3080: function need_switchserver(url) {
3081: if (url!='' && url!= null) {
3082: if (confirm("$confirm_switch")) {
3083: go(url);
3084: }
3085: }
3086: return;
3087: }
3088:
3089: ENDUTILITY
3090:
3091: }
3092:
3093: sub jump_to_editres {
1.330 raeburn 3094: my ($cfile,$home,$switchserver,$forceedit,$forcereg,$symb) = @_;
1.328 raeburn 3095: my $jscall;
3096: if ($switchserver) {
3097: if ($symb && $home) {
3098: $cfile = '/adm/switchserver?otherserver='.$home.'&role='.
1.330 raeburn 3099: &HTML::Entities::encode($env{'request.role'},'"<>&').
3100: '&symb='.&HTML::Entities::encode($symb,'"<>&');
3101: if ($forceedit) {
1.328 raeburn 3102: $cfile .= '&forceedit=1';
3103: }
1.330 raeburn 3104: if ($forcereg) {
3105: $cfile .= '&register=1';
3106: }
1.328 raeburn 3107: $jscall = "need_switchserver('$cfile');";
3108: }
3109: } else {
1.330 raeburn 3110: unless ($cfile =~ m{^/priv/}) {
3111: if ($symb) {
3112: $cfile .= (($cfile=~/\?/)?'&':'?')."symb=$symb";
3113: }
3114: if ($forceedit) {
3115: $cfile .= (($cfile=~/\?/)?'&':'?').'forceedit=1';
3116: }
3117: if ($forcereg) {
3118: $cfile .= (($cfile=~/\?/)?'&':'?').'register=1';
3119: }
1.328 raeburn 3120: }
3121: $jscall = "go('$cfile')";
3122: }
3123: return $jscall;
3124: }
1.313 raeburn 3125:
3126: ##############################################
3127: ##############################################
3128:
1.158 raeburn 3129: # javascript_valid_email
3130: #
3131: # Generates javascript to validate an e-mail address.
3132: # Returns a javascript function which accetps a form field as argumnent, and
3133: # returns false if field.value does not satisfy two regular expression matches
3134: # for a valid e-mail address. Backwards compatible with old browsers without
3135: # support for javascript RegExp (just checks for @ in field.value in this case).
3136:
3137: sub javascript_valid_email {
3138: my $scripttag .= <<'END';
3139: function validmail(field) {
3140: var str = field.value;
3141: if (window.RegExp) {
3142: var reg1str = "(@.*@)|(\\.\\.)|(@\\.)|(\\.@)|(^\\.)";
3143: var reg2str = "^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$"; //"
3144: var reg1 = new RegExp(reg1str);
3145: var reg2 = new RegExp(reg2str);
3146: if (!reg1.test(str) && reg2.test(str)) {
3147: return true;
3148: }
3149: return false;
3150: }
3151: else
3152: {
3153: if(str.indexOf("@") >= 0) {
3154: return true;
3155: }
3156: return false;
3157: }
3158: }
3159: END
3160: return $scripttag;
3161: }
3162:
1.219 droeschl 3163:
3164: # USAGE: htmltag(element, content, {attribute => value,...});
3165: #
3166: # EXAMPLES:
3167: # - htmltag('a', 'this is an anchor', {href => 'www.example.com',
3168: # title => 'this is a title'})
3169: #
3170: # - You might want to set up needed tags like:
3171: #
3172: # my $h3 = sub { return htmltag( "h3", @_ ) };
3173: #
3174: # ... and use them: $h3->("This is a headline")
3175: #
3176: # - To set up a couple of tags, see sub inittags
3177: #
3178: # NOTES:
3179: # - Empty elements, such as <br/> are correctly terminated,
3180: # i.e. htmltag('br') returns <br/>
3181: # - Empty attributes (title="") are filtered out.
3182: # - The function will not check for deprecated attributes.
3183: #
3184: # OUTPUT: content enclosed in xhtml conform tags
3185: sub htmltag{
3186: return
3187: qq|<$_[0]|
3188: . join( '', map { qq| $_="${$_[2]}{$_}"| if ${$_[2]}{$_} } keys %{ $_[2] } )
3189: . ($_[1] ? qq|>$_[1]</$_[0]>| : qq|/>|). "\n";
3190: };
3191:
3192:
3193: # USAGE: inittags(@tags);
3194: #
3195: # EXAMPLES:
1.261 droeschl 3196: # - my ($h1, $h2, $h3) = inittags( qw( h1 h2 h3 ) )
1.219 droeschl 3197: # $h1->("This is a headline") #Returns: <h1>This is a headline</h1>
3198: #
3199: # NOTES: See sub htmltag for further information.
3200: #
3201: # OUTPUT: List of subroutines.
3202: sub inittags {
3203: my @tags = @_;
3204: return map { my $tag = $_;
3205: sub { return htmltag( $tag, @_ ) }
3206: } @tags;
3207: }
3208:
3209:
1.231 droeschl 3210: # USAGE: scripttag(scriptcode, [start|end|both]);
1.229 droeschl 3211: #
3212: # EXAMPLES:
1.231 droeschl 3213: # - scripttag("alert('Hello World!')", 'both')
3214: # returns:
3215: # <script type="text/javascript">
3216: # // BEGIN LON-CAPA Internal
3217: # alert(Hello World!')
3218: # // END LON-CAPA Internal
3219: # </script>
1.229 droeschl 3220: #
3221: # NOTES:
3222: # - works currently only for javascripts
3223: #
1.231 droeschl 3224: # OUTPUT:
3225: # Scriptcode properly enclosed in <script> and CDATA tags (and LC
3226: # Internal markers if 2nd argument is given)
1.229 droeschl 3227: sub scripttag {
1.231 droeschl 3228: my ( $content, $marker ) = @_;
3229: return unless defined $content;
3230:
3231: my $begin = "\n// BEGIN LON-CAPA Internal\n";
3232: my $end = "\n// END LON-CAPA Internal\n";
3233:
3234: if ($marker) {
3235: $content = $begin . $content if $marker eq 'start' or $marker eq 'both';
3236: $content .= $end if $marker eq 'end' or $marker eq 'both';
3237: }
3238:
1.229 droeschl 3239: $content = "\n// <![CDATA[\n$content\n// ]]>\n";
1.231 droeschl 3240:
3241: return htmltag('script', $content, {type => 'text/javascript'});
1.229 droeschl 3242: };
3243:
1.309 raeburn 3244: =pod
1.229 droeschl 3245:
1.309 raeburn 3246: =item &list_from_array( \@array, { listattr =>{}, itemattr =>{} } )
1.261 droeschl 3247:
3248: Constructs a XHTML list from \@array.
3249:
3250: input:
3251:
3252: =over
3253:
3254: =item \@array
3255:
3256: A reference to the array containing text that will be wrapped in <li></li> tags.
3257:
3258: =item { listattr => {}, itemattr =>{} }
3259:
3260: Attributes for <ul> and <li> passed in as hash references.
3261: See htmltag() for more details.
3262:
3263: =back
3264:
3265: returns: XHTML list as String.
3266:
3267: =cut
3268:
3269: # \@items, {listattr => { class => 'abc', id => 'xyx' }, itemattr => {class => 'abc', id => 'xyx'}}
3270: sub list_from_array {
3271: my ($items, $args) = @_;
1.285 raeburn 3272: return unless (ref($items) eq 'ARRAY');
1.273 droeschl 3273: return unless scalar @$items;
1.261 droeschl 3274: my ($ul, $li) = inittags( qw(ul li) );
3275: my $listitems = join '', map { $li->($_, $args->{itemattr}) } @$items;
3276: return $ul->( $listitems, $args->{listattr} );
3277: }
3278:
3279:
1.183 droeschl 3280: ##############################################
3281: ##############################################
3282:
3283: # generate_menu
3284: #
3285: # Generates html markup for a menu.
3286: #
3287: # Inputs:
3288: # An array of following structure:
3289: # ({ categorytitle => 'Categorytitle',
3290: # items => [
1.201 droeschl 3291: # {
3292: # linktext => 'Text to be displayed',
3293: # url => 'URL the link is pointing to, i.e. /adm/site?action=dosomething',
1.183 droeschl 3294: # permission => 'Contains permissions as returned from lonnet::allowed(),
1.201 droeschl 3295: # must evaluate to true in order to activate the link',
1.184 droeschl 3296: # icon => 'icon filename',
1.186 droeschl 3297: # alttext => 'alt text for the icon',
1.183 droeschl 3298: # help => 'Name of the corresponding helpfile',
3299: # linktitle => 'Description of the link (used for title tag)'
3300: # },
3301: # ...
3302: # ]
3303: # },
3304: # ...
3305: # )
3306: #
3307: # Outputs: A scalar containing the html markup for the menu.
3308:
3309: sub generate_menu {
3310: my @menu = @_;
1.201 droeschl 3311: # subs for specific html elements
1.219 droeschl 3312: my ($h3, $div, $ul, $li, $a, $img) = inittags( qw(h3 div ul li a img) );
1.201 droeschl 3313:
3314: my @categories; # each element represents the entire markup for a category
3315:
3316: foreach my $category (@menu) {
3317: my @links; # contains the links for the current $category
3318: foreach my $link (@{$$category{items}}) {
3319: next unless $$link{permission};
3320:
3321: # create the markup for the current $link and push it into @links.
3322: # each entry consists of an image and a text optionally followed
3323: # by a help link.
1.283 raeburn 3324: my $src;
3325: if ($$link{icon} ne '') {
3326: $src = '/res/adm/pages/'.$$link{icon};
3327: }
1.232 raeburn 3328: push(@links,$li->(
1.201 droeschl 3329: $a->(
3330: $img->("", {
3331: class => "LC_noBorder LC_middle",
1.283 raeburn 3332: src => $src,
1.202 droeschl 3333: alt => mt(defined($$link{alttext}) ?
3334: $$link{alttext} : $$link{linktext})
1.201 droeschl 3335: }), {
3336: href => $$link{url},
1.308 raeburn 3337: title => mt($$link{linktitle}),
3338: class => 'LC_menubuttons_link'
1.201 droeschl 3339: }).
1.202 droeschl 3340: $a->(mt($$link{linktext}), {
1.201 droeschl 3341: href => $$link{url},
1.202 droeschl 3342: title => mt($$link{linktitle}),
1.201 droeschl 3343: class => "LC_menubuttons_link"
3344: }).
3345: (defined($$link{help}) ?
3346: Apache::loncommon::help_open_topic($$link{help}) : ''),
1.232 raeburn 3347: {class => "LC_menubuttons_inline_text"}));
1.201 droeschl 3348: }
3349:
3350: # wrap categorytitle in <h3>, concatenate with
3351: # joined and in <ul> tags wrapped @links
3352: # and wrap everything in an enclosing <div> and push it into
3353: # @categories
3354: # such that each element looks like:
3355: # <div><h3>title</h3><ul><li>...</li>...</ul></div>
3356: # the category won't be added if there aren't any links
1.232 raeburn 3357: push(@categories,
1.202 droeschl 3358: $div->($h3->(mt($$category{categorytitle}), {class=>"LC_hcell"}).
1.201 droeschl 3359: $ul->(join('' ,@links), {class =>"LC_ListStyleNormal" }),
1.232 raeburn 3360: {class=>"LC_Box LC_400Box"})) if scalar(@links);
1.183 droeschl 3361: }
1.201 droeschl 3362:
3363: # wrap the joined @categories in another <div> (column layout)
3364: return $div->(join('', @categories), {class => "LC_columnSection"});
1.183 droeschl 3365: }
1.176 foxr 3366:
1.224 bisitz 3367: ##############################################
3368: ##############################################
3369:
3370: =pod
3371:
1.309 raeburn 3372: =item &start_funclist()
1.224 bisitz 3373:
3374: Start list of available functions
3375:
3376: Typically used to offer a simple list of available functions
3377: at top or bottom of page.
3378: All available functions/actions for the current page
3379: should be included in this list.
3380:
3381: If the optional headline text is not provided, a default text will be used.
3382:
3383:
3384: Related routines:
3385: =over 4
3386: add_item_funclist
3387: end_funclist
3388: =back
3389:
3390:
3391: Inputs: (optional) headline text
3392:
3393: Returns: HTML code with function list start
3394:
3395: =cut
3396:
3397: ##############################################
3398: ##############################################
3399:
3400: sub start_funclist {
3401: my($legendtext)=@_;
3402: $legendtext=&mt('Functions') if !$legendtext;
1.244 droeschl 3403: return '<ul class="LC_funclist"><li style="font-weight:bold; margin-left:0.8em;">'.$legendtext.'</li>'."\n";
1.224 bisitz 3404: }
3405:
3406:
3407: ##############################################
3408: ##############################################
3409:
3410: =pod
3411:
1.309 raeburn 3412: =item &add_item_funclist()
1.224 bisitz 3413:
3414: Adds an item to the list of available functions
3415:
3416: Related routines:
3417: =over 4
3418: start_funclist
3419: end_funclist
3420: =back
3421:
3422: Inputs: content item with text and link to function
3423:
3424: Returns: HTML code with list item for funclist
3425:
3426: =cut
3427:
3428: ##############################################
3429: ##############################################
3430:
3431: sub add_item_funclist {
3432: my($content) = @_;
3433: return '<li>'.$content.'</li>'."\n";
3434: }
3435:
3436: =pod
3437:
1.309 raeburn 3438: =item &end_funclist()
1.224 bisitz 3439:
3440: End list of available functions
3441:
3442: Related routines:
3443: =over 4
3444: start_funclist
3445: add_item_funclist
3446: =back
3447:
3448: Inputs: ./.
3449:
3450: Returns: HTML code with function list end
3451: =cut
3452:
3453: sub end_funclist {
1.246 bisitz 3454: return "</ul>\n";
1.224 bisitz 3455: }
3456:
1.261 droeschl 3457: =pod
3458:
1.309 raeburn 3459: =item &funclist_from_array( \@array, {legend => 'text for legend'} )
1.261 droeschl 3460:
3461: Constructs a XHTML list from \@array with the first item being visually
3462: highlighted and set to the value of legend or 'Functions' if legend is
3463: empty.
3464:
3465: =over
3466:
3467: =item \@array
3468:
3469: A reference to the array containing text that will be wrapped in <li></li> tags.
3470:
3471: =item { legend => 'text' }
3472:
3473: A string that's used as visually highlighted first item. 'Functions' is used if
3474: it's value evaluates to false.
3475:
3476: =back
3477:
3478: returns: XHTML list as string.
3479:
3480: =back
3481:
3482: =cut
3483:
3484: sub funclist_from_array {
3485: my ($items, $args) = @_;
1.285 raeburn 3486: return unless(ref($items) eq 'ARRAY');
1.261 droeschl 3487: $args->{legend} ||= mt('Functions');
3488: return list_from_array( [$args->{legend}, @$items],
3489: { listattr => {class => 'LC_funclist'} });
3490: }
3491:
1.1 stredwic 3492: 1;
1.23 matthew 3493:
1.1 stredwic 3494: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>