Annotation of rat/lonpage.pm, revision 1.120.2.3
1.1 www 1: # The LearningOnline Network with CAPA
2: # Page Handler
3: #
1.120.2.3! raeburn 4: # $Id: lonpage.pm,v 1.120.2.2 2020/06/03 03:48:37 raeburn Exp $
1.29 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.30 harris41 28: ###
1.1 www 29:
1.88 jms 30:
31:
32:
1.1 www 33: package Apache::lonpage;
34:
35: use strict;
36: use Apache::Constants qw(:common :http);
1.70 albertel 37: use Apache::lonnet;
1.30 harris41 38: use Apache::loncommon();
1.102 raeburn 39: use Apache::lonhtmlcommon;
1.21 www 40: use Apache::lonxml();
1.57 raeburn 41: use Apache::lonlocal;
1.49 www 42: use Apache::lonmenu;
1.111 raeburn 43: use Apache::lonhomework;
1.112 raeburn 44: use Apache::lonparmset;
1.6 www 45: use HTML::TokeParser;
1.1 www 46: use GDBM_File;
1.39 www 47: use Apache::lonsequence;
1.75 www 48: use lib '/home/httpd/lib/perl/';
49: use LONCAPA;
50:
1.1 www 51:
1.2 www 52: # -------------------------------------------------------------- Module Globals
53: my %hash;
54: my @rows;
1.6 www 55:
56: # ------------------------------------------------------------------ Euclid gcd
57:
58: sub euclid {
59: my ($e,$f)=@_;
60: my $a; my $b; my $r;
61: if ($e>$f) { $b=$e; $r=$f; } else { $r=$e; $b=$f; }
62: while ($r!=0) {
63: $a=$b; $b=$r;
64: $r=$a%$b;
65: }
66: return $b;
67: }
1.2 www 68:
69: # ------------------------------------------------------------ Build page table
70:
71: sub tracetable {
72: my ($sofar,$rid,$beenhere)=@_;
73: my $further=$sofar;
1.57 raeburn 74: my $randomout=0;
1.70 albertel 75: unless ($env{'request.role.adv'}) {
1.57 raeburn 76: $randomout = $hash{'randomout_'.$rid};
77: }
1.2 www 78: unless ($beenhere=~/\&$rid\&/) {
1.57 raeburn 79: $beenhere.=$rid.'&';
80: unless ($randomout) {
81: if (defined($hash{'is_map_'.$rid})) {
82: if ((defined($hash{'map_start_'.$hash{'src_'.$rid}})) &&
83: (defined($hash{'map_finish_'.$hash{'src_'.$rid}}))) {
84: my $frid=$hash{'map_finish_'.$hash{'src_'.$rid}};
85: $sofar=
86: &tracetable($sofar,$hash{'map_start_'.$hash{'src_'.$rid}},
1.87 albertel 87: '&'.$frid.$beenhere);
1.57 raeburn 88: $sofar++;
89: if ($hash{'src_'.$frid}) {
90: my $brepriv=&Apache::lonnet::allowed('bre',$hash{'src_'.$frid});
91: if (($brepriv eq '2') || ($brepriv eq 'F')) {
92: if (defined($rows[$sofar])) {
93: $rows[$sofar].='&'.$frid;
94: } else {
95: $rows[$sofar]=$frid;
96: }
97: }
98: }
99: }
100: } else {
101: $sofar++;
102: if ($hash{'src_'.$rid}) {
103: my $brepriv=&Apache::lonnet::allowed('bre',$hash{'src_'.$rid});
104: if (($brepriv eq '2') || ($brepriv eq 'F')) {
105: if (defined($rows[$sofar])) {
106: $rows[$sofar].='&'.$rid;
107: } else {
108: $rows[$sofar]=$rid;
109: }
110: }
111: }
112: }
113: }
114:
115: if (defined($hash{'to_'.$rid})) {
116: my $mincond=1;
117: my $next='';
118: foreach (split(/\,/,$hash{'to_'.$rid})) {
119: my $thiscond=
1.11 www 120: &Apache::lonnet::directcondval($hash{'condid_'.$hash{'undercond_'.$_}});
1.57 raeburn 121: if ($thiscond>=$mincond) {
122: if ($next) {
123: $next.=','.$_.':'.$thiscond;
124: } else {
125: $next=$_.':'.$thiscond;
126: }
127: if ($thiscond>$mincond) { $mincond=$thiscond; }
128: }
129: }
130: foreach (split(/\,/,$next)) {
131: my ($linkid,$condval)=split(/\:/,$_);
132: if ($condval>=$mincond) {
133: my $now=&tracetable($sofar,$hash{'goesto_'.$linkid},$beenhere);
134: if ($now>$further) { $further=$now; }
135: }
136: }
137: }
1.2 www 138: }
139: return $further;
140: }
141:
1.1 www 142: # ================================================================ Main Handler
143:
144: sub handler {
145: my $r=shift;
146:
1.3 www 147: # ------------------------------------------- Set document type for header only
1.1 www 148:
1.3 www 149: if ($r->header_only) {
1.70 albertel 150: if ($env{'browser.mathml'}) {
1.53 www 151: &Apache::loncommon::content_type($r,'text/xml');
1.3 www 152: } else {
1.53 www 153: &Apache::loncommon::content_type($r,'text/html');
1.3 www 154: }
155: $r->send_http_header;
156: return OK;
157: }
1.43 sakharuk 158:
1.39 www 159: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
160: ['forceselect','launch']);
1.43 sakharuk 161: my $number_of_columns = 1;
1.37 sakharuk 162: my $requrl=$r->uri;
1.70 albertel 163: my $target = $env{'form.grade_target'};
1.94 raeburn 164:
165: # Short term solution: define target as 'tex_answer' when retrieving answers
166: # for resources in a .page when generating printouts.
167: # A better long-term fix would be to modify the way problem rendering, and
168: # answer rendering are retrieved for individual resources when printing a .page,
169: # so rendered problem and answer are sequential for individual resources in
170: # the .page
171: #
172: if ($target eq 'answer') {
173: if ($env{'form.answer_output_mode'} eq 'tex') {
174: $target = 'tex_answer';
175: }
176: }
1.55 www 177: # &Apache::lonnet::logthis("Got a target of $target");
1.54 albertel 178: if ($target eq 'meta') {
179: &Apache::loncommon::content_type($r,'text/html');
180: $r->send_http_header;
181: return OK;
182: }
1.1 www 183: # ----------------------------------------------------------------- Tie db file
1.70 albertel 184: if (($env{'request.course.fn'}) && (!$env{'form.forceselect'})) {
185: my $fn=$env{'request.course.fn'};
1.1 www 186: if (-e "$fn.db") {
1.119 raeburn 187: my %buttonshide;
1.44 albertel 188: if (tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER(),0640)) {
1.1 www 189: # ------------------------------------------------------------------- Hash tied
190: my $firstres=$hash{'map_start_'.$requrl};
191: my $lastres=$hash{'map_finish_'.$requrl};
192: if (($firstres) && ($lastres)) {
1.111 raeburn 193: # ------------------------------------------------------------- Countdown Timer
194: my $now = time;
1.112 raeburn 195: my ($pagefirstaccess,%hastimeleft,%countdowndisp,%donebutton,
1.114 raeburn 196: %donebtnextra,%buttonbytime,$donetime,$symbtosetdone);
1.111 raeburn 197: my ($pagesymb,$courseid,$domain,$name)=&Apache::lonnet::whichuser();
1.114 raeburn 198: unless ($pagesymb) {
199: $pagesymb=&Apache::lonnet::symbread($requrl);
200: }
1.113 musolffc 201: if ($pagesymb && ($courseid ne '') && ($domain ne '') && ($name ne '')) {
1.111 raeburn 202: my %times=&Apache::lonnet::get('firstaccesstimes',
203: [$courseid."\0".$pagesymb],
204: $domain,$name);
205: if ($times{$courseid."\0".$pagesymb} =~ /^\d+$/) {
206: $pagefirstaccess = $times{$courseid."\0".$pagesymb};
1.112 raeburn 207: if ($pagefirstaccess && $env{'form.LC_interval_done'} eq 'true') {
208: $donetime = $now - $pagefirstaccess;
209: }
1.111 raeburn 210: }
211: }
1.112 raeburn 212:
1.1 www 213: # ----------------------------------------------------------------- Render page
214:
1.3 www 215: @rows=();
1.2 www 216:
1.45 www 217: &tracetable(0,$firstres,'&');
1.2 www 218:
1.9 www 219: # ------------------------------------------------------------ Add to symb list
220:
1.2 www 221: my $i;
1.9 www 222: my %symbhash=();
223: for ($i=0;$i<=$#rows;$i++) {
224: if ($rows[$i]) {
225: my @colcont=split(/\&/,$rows[$i]);
1.73 albertel 226: foreach my $rid (@colcont) {
227: my ($mapid,$resid)=split(/\./,$rid);
228: $symbhash{$hash{'src_'.$rid}}=
229: [$hash{'src_'.$rid},$resid];
1.112 raeburn 230: if (($donetime) && ($symbtosetdone eq '')) {
231: my $src = $hash{'src_'.$rid};
232: if ($hash{'encrypted_'.$rid}) {
233: $src=&Apache::lonenc::encrypted($src);
234: }
235: my ($mapid,$resid)=split(/\./,$rid);
236: my $symb=&Apache::lonnet::encode_symb($hash{'map_id_'.$mapid},$resid,$src);
237: if ($src =~ /$LONCAPA::assess_re/) {
238: my @interval=&Apache::lonnet::EXT("resource.0.interval",$symb);
239: if (@interval > 1) {
1.114 raeburn 240: if (($interval[1] eq 'map') && ($pagefirstaccess)) {
241: my ($timelimit) = ($interval[0] =~ /^(\d+)/);
242: if ($timelimit) {
243: if ($pagefirstaccess + $timelimit > $now) {
244: $symbtosetdone = $symb;
245: }
1.112 raeburn 246: }
247: }
248: }
249: }
250: }
1.30 harris41 251: }
1.9 www 252: }
253: }
254: &Apache::lonnet::symblist($requrl,%symbhash);
255:
256: # ------------------------------------------------------------------ Page parms
257:
1.4 www 258: my $j;
1.6 www 259: my $lcm=1;
260: my $contents=0;
1.7 www 261: my $nforms=0;
1.96 raeburn 262: my $nuploads=0;
1.110 raeburn 263: my $ntimers=0;
1.96 raeburn 264: my %turninpaths;
265: my %multiresps;
266: my $turninparent;
1.6 www 267:
268: my %ssibody=();
269: my %ssibgcolor=();
270: my %ssitext=();
271: my %ssilink=();
272: my %ssivlink=();
273: my %ssialink=();
1.14 www 274:
1.6 www 275: my %cellemb=();
1.99 raeburn 276: my %cellexternal=();
1.3 www 277:
1.7 www 278: my $allscript='';
279: my $allmeta='';
280:
281: my $isxml=0;
282: my $xmlheader='';
283: my $xmlbody='';
284:
1.112 raeburn 285: # ---------------------------------------------------------- Handle Done button
286:
287: # Set the event timer to zero if the "done button" was clicked.
288: if ($donetime && $symbtosetdone) {
289: &Apache::lonparmset::storeparm_by_symb_inner($symbtosetdone,'0_interval',
290: 2,$donetime,'date_interval',
291: $name,$domain);
292: undef($env{'form.LC_interval_done'});
293: }
294:
1.3 www 295: # --------------------------------------------- Get SSI output, post parameters
296:
1.2 www 297: for ($i=0;$i<=$#rows;$i++) {
1.4 www 298: if ($rows[$i]) {
1.6 www 299: $contents++;
1.3 www 300: my @colcont=split(/\&/,$rows[$i]);
1.6 www 301: $lcm*=($#colcont+1)/euclid($lcm,($#colcont+1));
1.30 harris41 302: foreach (@colcont) {
1.3 www 303: my $src=$hash{'src_'.$_};
1.120 raeburn 304: my $plainsrc = $src;
1.99 raeburn 305: my ($extension)=($src=~/\.(\w+)$/);
306: $cellexternal{$_}=($hash{'ext_'.$_} eq 'true:');
1.61 albertel 307: if ($hash{'encrypted_'.$_}) {
308: $src=&Apache::lonenc::encrypted($src);
309: }
1.119 raeburn 310: my ($mapid,$resid)=split(/\./,$_);
311: my $symb=&Apache::lonnet::encode_symb($hash{'map_id_'.$mapid},$resid,$src);
312: unless ($env{'request.role.adv'}) {
313: $buttonshide{$symb} = &Apache::lonnet::EXT("resource.0.buttonshide",$symb);
314: }
1.61 albertel 315: $cellemb{$_}=
316: &Apache::loncommon::fileembstyle($extension);
1.99 raeburn 317: if ($cellexternal{$_}) {
318: unless (($target eq 'tex') || ($target eq 'tex_answer')) {
319: $ssibody{$_} = <<ENDEXT;
320: <iframe src="$src" width="100%">No iframe support!</iframe>
321: ENDEXT
322: }
323: } elsif ($cellemb{$_} eq 'ssi') {
1.3 www 324: # --------------------------------------------------------- This is an SSI cell
1.120.2.2 raeburn 325: my $prefix='p_'.$_.'_';
326: my $idprefix='p_'.join('_',($mapid,$resid,''));
1.64 albertel 327: my %posthash=('request.prefix' => $prefix,
1.71 albertel 328: 'LONCAPA_INTERNAL_no_discussion' => 'true',
1.64 albertel 329: 'symb' => $symb);
1.94 raeburn 330: if (($env{'form.grade_target'} eq 'tex') ||
331: ($env{'form.answer_output_mode'} eq 'tex')) {
1.70 albertel 332: $posthash{'grade_target'}=$env{'form.grade_target'};
333: $posthash{'textwidth'}=$env{'form.textwidth'};
334: $posthash{'problem_split'}=$env{'form.problem_split'};
335: $posthash{'latex_type'}=$env{'form.latex_type'};
336: $posthash{'rndseed'}=$env{'form.rndseed'};
1.94 raeburn 337: $posthash{'answer_output_mode'} = $env{'form.answer_output_mode'};
1.56 sakharuk 338: }
1.120.2.3! raeburn 339: my $submitted=$env{'form.all_submit_pressed'};
1.72 albertel 340: if (!$submitted) {
341: foreach my $key (keys(%env)) {
1.120.2.3! raeburn 342: if ($key=~/^\Qform.$prefix\Esubmit_(.+)_pressed$/) {
! 343: if ($env{$key}) {
! 344: $submitted=1;
! 345: last;
! 346: }
1.72 albertel 347: }
1.120.2.3! raeburn 348: }
1.72 albertel 349: }
350: if ($submitted) {
351: foreach my $key (keys(%env)) {
1.120.2.3! raeburn 352: if ($key=~/^\Qform.$prefix\E/) {
1.72 albertel 353: my $name=$key;
1.120.2.3! raeburn 354: $name=~s/^\Qform.$prefix\E//;
1.72 albertel 355: $posthash{$name}=$env{$key};
1.120.2.3! raeburn 356: }
1.72 albertel 357: }
1.120.2.3! raeburn 358: if ($env{'form.all_submit_pressed'}) {
1.72 albertel 359: $posthash{'all_submit'}='yes';
360: }
1.120.2.3! raeburn 361: } elsif ($env{'form.'.$prefix.'markaccess'} eq 'yes') {
! 362: $posthash{'markaccess'} = $env{'form.'.$prefix.'markaccess'};
! 363: }
1.120.2.1 raeburn 364: if ($env{'environment.remote'} eq 'on') {
365: $posthash{'inhibitmenu'} = 'yes';
366: }
1.5 www 367: my $output=Apache::lonnet::ssi($src,%posthash);
1.77 albertel 368: $output=~s|//(\s*<!--)? BEGIN LON-CAPA Internal.+?// END LON-CAPA Internal\s*(-->)?\s||gs;
1.94 raeburn 369: if (($target eq 'tex') || ($target eq 'tex_answer')) {
1.118 raeburn 370: $output =~ s/^([^&]+)\\begin\{document}//;
371: $output =~ s/\\end\{document}//;
1.92 foxr 372: # $output = '\parbox{\minipagewidth}{ '.$output.' }';
1.46 sakharuk 373: #some additional cleanup necessary for LateX (due to limitations of table environment
374: $output =~ s/(\\vskip\s*\d+mm)\s*(\\\\)+/$1/g;
375: }
1.107 raeburn 376: my $matheditor;
377: if ($output =~ /\Qjavascript:LC_mathedit_HWVAL_\E/) {
378: $matheditor = 'dragmath';
379: } elsif ($output =~ /LCmathField/) {
380: $matheditor = 'lcmath';
381: }
1.6 www 382: my $parser=HTML::TokeParser->new(\$output);
383: my $token;
1.12 www 384: my $thisdir=$src;
1.6 www 385: my $bodydef=0;
1.7 www 386: my $thisxml=0;
1.12 www 387: my @rlinks=();
1.7 www 388: if ($output=~/\?xml/) {
389: $isxml=1;
390: $thisxml=1;
391: $output=~
392: /((?:\<(?:\?xml|\!DOC|html)[^\>]*(?:\>|\>\]\>)\s*)+)\<body[^\>]*\>/si;
393: $xmlheader=$1;
394: }
1.12 www 395: while ($token=$parser->get_token) {
396: if ($token->[0] eq 'S') {
397: if ($token->[1] eq 'a') {
398: if ($token->[2]->{'href'}) {
399: $rlinks[$#rlinks+1]=
400: $token->[2]->{'href'};
401: }
402: } elsif ($token->[1] eq 'img') {
403: $rlinks[$#rlinks+1]=
404: $token->[2]->{'src'};
405: } elsif ($token->[1] eq 'embed') {
406: $rlinks[$#rlinks+1]=
407: $token->[2]->{'src'};
408: } elsif ($token->[1] eq 'base') {
409: $thisdir=$token->[2]->{'href'};
410: } elsif ($token->[1] eq 'body') {
1.7 www 411: $bodydef=1;
412: $ssibgcolor{$_}=$token->[2]->{'bgcolor'};
413: $ssitext{$_}=$token->[2]->{'text'};
414: $ssilink{$_}=$token->[2]->{'link'};
415: $ssivlink{$_}=$token->[2]->{'vlink'};
416: $ssialink{$_}=$token->[2]->{'alink'};
417: if ($thisxml) {
418: $xmlbody=$token->[4];
419: }
1.12 www 420: } elsif ($token->[1] eq 'meta') {
1.28 albertel 421: if ($token->[4] !~ m:/>$:) {
1.7 www 422: $allmeta.="\n".$token->[4].'</meta>';
1.28 albertel 423: } else {
424: $allmeta.="\n".$token->[4];
425: }
1.12 www 426: } elsif (($token->[1] eq 'script') &&
427: ($bodydef==0)) {
1.7 www 428: $allscript.="\n\n"
429: .$parser->get_text('/script');
1.6 www 430: }
1.12 www 431: }
432: }
1.6 www 433: if ($output=~/\<body[^\>]*\>(.*)/si) {
434: $output=$1;
435: }
436: $output=~s/\<\/body\>.*//si;
1.7 www 437: if ($output=~/\<form/si) {
1.110 raeburn 438: my $hastimer;
1.7 www 439: $nforms++;
440: $output=~s/\<form[^\>]*\>//gsi;
441: $output=~s/\<\/form[^\>]*\>//gsi;
1.96 raeburn 442: if ($output=~/\<input[^\>]+name\s*=\s*[\'\"]*HWFILE/) {
443: $nuploads++;
444: }
1.110 raeburn 445: if ($output=~/\<input[^\>]+name\s*=\s*[\'\"]*accessbutton/) {
446: $ntimers++;
447: $hastimer = 1;
448: }
1.17 www 449: $output=~
1.80 albertel 450: s/\<((?:input|select|button|textarea)[^\>]+)name\s*\=\s*[\'\"]*([^\'\"]+)[\'\"]*([^\>]*)\>/\<$1 name="$prefix$2" $3\>/gsi;
1.101 raeburn 451: $output=~
452: s/\<((?:input|select|button|textarea)[^\>]+)id\s*\=\s*[\'\"]*([^\'\"]+)[\'\"]*([^\>]*)\>/\<$1 id="$idprefix$2" $3\>/gsi;
1.120.2.2 raeburn 453: $output=~
454: s/(\Qthis.form.elements['\E)(HW(?:VAL|CHK)_[^']+\'\]\.(?:value=\'|checked))/$1$prefix$2/gsi;
1.110 raeburn 455: if ($hastimer) {
456: $output=~
457: s/\<(input[^\>]+name=\Q"$prefix\Eaccessbutton"[^\>]+)(?:\Qdocument.markaccess.submit();\E)([^\>]*)\>/\<$1pageTimer(this.form,'$prefix')$2\>/gsi;
458: $output=~ s/\<(input[^\>]+name=\Q"$prefix\Emarkaccess"[^\>]+value=["'])(?:yes)(['"][^\>]*)\>/\<$1$2\>/gsi;
459: }
1.107 raeburn 460: if ($matheditor eq 'dragmath') {
461: $output=~
462: s/(\Qjavascript:LC_mathedit_\E)(HWVAL_)([^'"]+?)(\(['"]*)(\QHWVAL_\E\3['"]\)\;void\(0\)\;)/$1$idprefix$2$3$4$idprefix$5/g;
463: $output=~
464: s/(function\s+LC_mathedit_)(HWVAL_)([^'"]+?)(\s+\(LCtextline\))/$1$idprefix$2$3$4/g;
465: } elsif ($matheditor eq 'lcmath') {
466: $output=~
467: s/(var\s+LCmathField\s+=\s+document\.getElementById\(['"])([^'"]+?)(['"]\)\;)/$1$idprefix$2$3/g;
468: }
1.105 raeburn 469: $output=~
470: s/(\Q<div id="msg_\E)(\Qsubmit_\E)([^"]*)(\Q" style="display:none">\E)/<input type="hidden" name="$prefix$2$3_pressed" id="$idprefix$2$3_pressed" value="" \/>$1$idprefix$2$3$4/g;
471: $output=~
472: s/(\Q<td class="LC_status_\E)(\Qsubmit_\E)([^\"]*)(\s*[^\"]*"\>)/$1$idprefix$2$3$4/g;
1.96 raeburn 473: if ($nuploads) {
474: ($turninpaths{$prefix},$multiresps{$prefix}) =
475: &Apache::loncommon::get_turnedin_filepath($symb,$env{'user.name'},$env{'user.domain'});
476: if ($turninparent eq '') {
477: $turninparent = $turninpaths{$prefix};
478: $turninparent =~ s{(/[^/]+)$}{};
479: }
480: }
1.95 raeburn 481: $output=~
482: s/\<((?:input|select)[^\>]+\Qjavascript:setSubmittedPart\E)\(\s*[\'\"]([^\'\"]+)[\'\"]*\s*\)/\<$1('$2','$prefix')/gsi;
1.108 raeburn 483: $output=~
484: s/\<(input[^\>]+\Qonfocus=\"javascript:disableAutoComplete\E)\(\'([^\']+)\'\)(;\")/\<$1('$idprefix$2')$3/gsi;
1.111 raeburn 485: unless ($hastimer) {
1.120 raeburn 486: if ($plainsrc =~ /$LONCAPA::assess_re/) {
1.111 raeburn 487: %Apache::lonhomework::history =
488: &Apache::lonnet::restore($symb,$courseid,$domain,$name);
489: my $type = 'problem';
1.120 raeburn 490: if ($extension eq 'task') {
1.111 raeburn 491: $type = 'Task';
492: }
493: my ($status,$accessmsg,$slot_name,$slot) =
1.117 raeburn 494: &Apache::lonhomework::check_slot_access('0',$type,$symb);
1.111 raeburn 495: undef(%Apache::lonhomework::history);
496: my $probstatus = &Apache::lonnet::EXT("resource.0.problemstatus",$symb);
497: if (($status eq 'CAN_ANSWER') || (($status eq 'CANNOT_ANSWER') &&
1.114 raeburn 498: (($probstatus eq 'no') || ($probstatus eq 'no_feedback_ever'))) ||
499: (($status eq 'NOT_YET_VIEWED') && ($posthash{'markaccess'} eq 'yes'))) {
1.111 raeburn 500: my ($slothastime,$timerhastime);
501: if ($slot_name ne '') {
502: if (ref($slot) eq 'HASH') {
503: if (($slot->{'starttime'} < $now) &&
504: ($slot->{'endtime'} > $now)) {
505: $slothastime = $now - $slot->{'endtime'};
506: }
507: }
508: }
509: my $duedate = &Apache::lonnet::EXT("resource.0.duedate",$symb);
510: my @interval=&Apache::lonnet::EXT("resource.0.interval",$symb);
511: if (@interval > 1) {
1.114 raeburn 512: my $first_access;
1.115 raeburn 513: if ($interval[1] eq 'map') {
514: my $ignorecache;
515: if ($env{'form.'.$prefix.'markaccess'} eq 'yes') {
516: $ignorecache = 1;
1.114 raeburn 517: }
1.115 raeburn 518: $first_access=&Apache::lonnet::get_first_access($interval[1],undef,$pagesymb,$ignorecache);
519: if (($first_access) && (!$pagefirstaccess)) {
520: $pagefirstaccess = $first_access;
1.114 raeburn 521: }
1.115 raeburn 522: } else {
523: $first_access=&Apache::lonnet::get_first_access($interval[1],$symb);
524: }
525: if ($first_access > 0) {
1.114 raeburn 526: my ($timelimit) = ($interval[0] =~ /^(\d+)/);
1.115 raeburn 527: if ($timelimit) {
528: my $timeremains = $timelimit + $first_access - $now;
529: if ($timeremains > 0) {
530: $timerhastime = $timeremains;
531: }
1.111 raeburn 532: }
533: }
534: }
535: if (($duedate && $duedate > $now) ||
536: (!$duedate && $timerhastime > 0) ||
537: ($slot_name ne '' && $slothastime)) {
538: if ((@interval > 1 && $timerhastime) ||
539: ($type eq 'Task' && $slothastime)) {
540: $countdowndisp{$symb} = 'inline';
541: if ((@interval > 1) && ($timerhastime)) {
542: $hastimeleft{$symb} = $timerhastime;
1.112 raeburn 543: if ($pagefirstaccess) {
1.114 raeburn 544: my ($timelimit,$usesdone,$donebuttontext,$proctor,$secret);
545: ($timelimit,my $donesuffix) = split(/_/,$interval[0],2);
546: if ($donesuffix =~ /^done\:([^\:]+)\:(.*)$/) {
547: $usesdone = 'done';
548: $donebuttontext = $1;
549: (undef,$proctor,$secret) = split(/_/,$2);
550: } elsif ($donesuffix =~ /^done(|_.+)$/) {
551: $donebuttontext = &mt('Done');
552: ($usesdone,$proctor,$secret) = split(/_/,$donesuffix);
553: }
554: if ($usesdone eq 'done') {
555: $donebutton{$symb} = $timelimit;
556: push(@{$buttonbytime{$timelimit}},$symb);
557: $donebtnextra{$symb} = {
558: text => $donebuttontext,
559: proctor => $proctor,
560: secret => $secret,
561: type => $interval[1],
562: };
563: }
1.112 raeburn 564: }
1.111 raeburn 565: } else {
566: $hastimeleft{$symb} = $slothastime;
567: }
568: } else {
569: $hastimeleft{$symb} = $duedate - $now;
570: $countdowndisp{$symb} = 'none';
571: }
1.112 raeburn 572: unless ($donebutton{$symb}) {
1.114 raeburn 573: $donebutton{$symb} = 0;
1.112 raeburn 574: }
1.111 raeburn 575: }
576: }
577: }
578: }
1.7 www 579: }
1.12 www 580: $thisdir=~s/\/[^\/]*$//;
1.30 harris41 581: foreach (@rlinks) {
1.91 raeburn 582: unless (($_=~/^https?\:\/\//i) ||
1.31 albertel 583: ($_=~/^\//) ||
584: ($_=~/^javascript:/i) ||
585: ($_=~/^mailto:/i) ||
586: ($_=~/^\#/)) {
1.12 www 587: my $newlocation=
588: &Apache::lonnet::hreflocation($thisdir,$_);
589: $output=~s/(\"|\'|\=\s*)$_(\"|\'|\s|\>)/$1$newlocation$2/;
590: }
1.30 harris41 591: }
1.24 www 592: # -------------------------------------------------- Deal with Applet codebases
593: $output=~s/(\<applet[^\>]+)(codebase\=[^\S\>]+)*([^\>]*)\>/$1.($2?$2:' codebase="'.$thisdir.'"').$3.'>'/gei;
1.5 www 594: $ssibody{$_}=$output;
1.3 www 595: # ---------------------------------------------------------------- End SSI cell
596: }
1.30 harris41 597: }
1.4 www 598: }
1.2 www 599: }
1.6 www 600: unless ($contents) {
1.53 www 601: &Apache::loncommon::content_type($r,'text/html');
1.3 www 602: $r->send_http_header;
1.74 albertel 603: $r->print(&Apache::loncommon::start_page(undef,undef,
604: {'force_register' => 1,}));
1.59 raeburn 605: $r->print(&mt('This page is either empty or it only contains resources that are currently hidden').'. ');
1.74 albertel 606: $r->print('<br /><br />'.&mt('Please use the LON-CAPA navigation arrows to move to another item in the course').
607: &Apache::loncommon::end_page());
1.3 www 608: } else {
609: # ------------------------------------------------------------------ Build page
1.7 www 610:
611: # ---------------------------------------------------------------- Send headers
1.94 raeburn 612: unless (($target eq 'tex') || ($target eq 'tex_answer')) {
1.37 sakharuk 613: if ($isxml) {
1.53 www 614: &Apache::loncommon::content_type($r,'text/xml');
1.37 sakharuk 615: } else {
1.53 www 616: &Apache::loncommon::content_type($r,'text/html');
1.37 sakharuk 617: }
1.74 albertel 618: $r->send_http_header;
1.7 www 619: # ------------------------------------------------------------------------ Head
1.37 sakharuk 620: if ($allscript) {
1.85 albertel 621: $allscript =
622: "\n".'<script type="text/javascript">'."\n".
623: $allscript.
624: "\n</script>\n";
1.37 sakharuk 625: }
1.96 raeburn 626: if (($nforms) && ($nuploads)) {
627: $allscript .= &Apache::lonhtmlcommon::file_submissionchk_js(\%turninpaths,\%multiresps);
628: }
1.101 raeburn 629: if (($nforms) && (&Apache::lonhtmlcommon::htmlareabrowser())) {
630: my %textarea_args = (
631: dragmath => 'math',
632: );
633: $allscript .= &Apache::lonhtmlcommon::htmlareaselectactive(\%textarea_args);
634: }
1.110 raeburn 635: if ($ntimers) {
636: $allscript .= '<script type="text/javascript">'."\n".
637: '// <![CDATA['."\n".
638: 'function pageTimer(form,prefix) {'."\n".
639: " form.elements[prefix+'markaccess'].value = 'yes';\n".
640: " form.submit();\n".
641: '}'."\n".
642: '// ]]>'.
643: "\n</script>\n";
644: }
1.111 raeburn 645: if (keys(%hastimeleft)) {
646: my (%uniquetimes,%uniquedisplays);
647: foreach my $item (values(%hastimeleft)) {
648: if (exists($uniquetimes{$item})) {
649: $uniquetimes{$item} ++;
650: } else {
651: $uniquetimes{$item} = 1;
652: }
653: }
1.114 raeburn 654: if (scalar(keys(%uniquetimes)) == 1) {
655: my (%uniquedisplays,%uniquedones,$currdisp,$donebuttontime,
656: $donebuttonextras);
1.111 raeburn 657: if (keys(%countdowndisp)) {
658: foreach my $item (values(%countdowndisp)) {
659: if (exists($uniquedisplays{$item})) {
660: $uniquedisplays{$item} ++;
661: } else {
662: $uniquedisplays{$item} = 1;
663: }
664: }
665: my @countdowndisplay = keys(%uniquedisplays);
666: if (scalar(@countdowndisplay) == 1) {
667: $currdisp = $countdowndisplay[0];
668: }
669: }
1.112 raeburn 670: if (keys(%donebutton)) {
671: foreach my $item (values(%donebutton)) {
672: if (exists($uniquedones{$item})) {
673: $uniquedones{$item} ++;
674: } else {
675: $uniquedones{$item} = 1;
676: }
677: }
678: my @donebuttons = sort { $ <=> $b } (keys(%uniquedones));
679: if (scalar(@donebuttons) == 1) {
680: if ($donebuttons[0]) {
681: $donebuttontime = $donebuttons[0];
1.114 raeburn 682: if (ref($buttonbytime{$donebuttontime}) eq 'ARRAY') {
683: $donebuttonextras = $donebtnextra{$buttonbytime{$donebuttontime}->[0]};
684: }
1.112 raeburn 685: }
686: }
687: }
1.114 raeburn 688: &add_countdown_timer($currdisp,$donebuttontime,$donebuttonextras);
1.111 raeburn 689: }
690: }
1.119 raeburn 691: my $pagebuttonshide;
692: if (keys(%buttonshide)) {
693: my %uniquebuttonhide;
694: foreach my $item (values(%buttonshide)) {
695: if (exists($uniquebuttonhide{$item})) {
696: $uniquebuttonhide{$item} ++;
697: } else {
698: $uniquebuttonhide{$item} = 1;
699: }
700: }
701: if (keys(%uniquebuttonhide) == 1) {
702: if (lc((keys(%uniquebuttonhide))[0]) eq 'yes') {
703: $pagebuttonshide = 'yes';
704: }
705: }
706: }
1.7 www 707: # ------------------------------------------------------------------ Start body
1.85 albertel 708: $r->print(&Apache::loncommon::start_page(undef,$allscript,
1.74 albertel 709: {'force_register' => 1,
1.119 raeburn 710: 'bgcolor' => '#ffffff',
711: 'hide_buttons' => $pagebuttonshide}));
1.7 www 712: # ------------------------------------------------------------------ Start form
1.37 sakharuk 713: if ($nforms) {
1.96 raeburn 714: my $fmtag = '<form name="lonhomework" method="post" enctype="multipart/form-data"';
715: if ($nuploads) {
716: my $multi;
717: if ($nuploads > 1) {
718: $multi = 1;
719: }
720: $fmtag .= 'onsubmit="return file_submission_check(this,'."'$turninparent','$multi'".');"';
721: }
722: $fmtag .= ' action="'.
1.61 albertel 723: &Apache::lonenc::check_encrypt($requrl)
1.105 raeburn 724: .'" id="LC_page">';
1.96 raeburn 725: $r->print($fmtag);
1.40 sakharuk 726: }
1.94 raeburn 727: } elsif (($target eq 'tex') || ($target eq 'tex_answer')) {
1.92 foxr 728: # I think this is not needed as the header
729: # will be put in for each of the page parts
730: # by the londefdef.pm now that we are opening up
731: # the parts of a page.
732: #$r->print('\documentclass{article}
733: # \newcommand{\keephidden}[1]{}
734: # \usepackage[dvips]{graphicx}
735: # \usepackage{epsfig}
736: # \usepackage{calc}
737: # \usepackage{longtable}
738: # \begin{document}');
1.40 sakharuk 739: }
1.7 www 740: # ----------------------------------------------------------------- Start table
1.94 raeburn 741: if (($target eq 'tex') || ($target eq 'tex_answer')) {
1.92 foxr 742: # # $r->print('\begin{longtable}INSERTTHEHEADOFLONGTABLE\endfirsthead\endhead ');
1.43 sakharuk 743: if ($number_of_columns le $lcm) {$number_of_columns=$lcm;};
1.40 sakharuk 744: } else {
1.63 albertel 745: $r->print('<table width="100%" cols="'.$lcm.'" border="0">');
1.37 sakharuk 746: }
1.78 www 747: # generate rows
1.5 www 748: for ($i=0;$i<=$#rows;$i++) {
749: if ($rows[$i]) {
1.94 raeburn 750: unless (($target eq 'tex') || ($target eq 'tex_answer')) {
1.37 sakharuk 751: $r->print("\n<tr>");
752: }
1.4 www 753: my @colcont=split(/\&/,$rows[$i]);
1.6 www 754: my $avespan=$lcm/($#colcont+1);
755: for ($j=0;$j<=$#colcont;$j++) {
756: my $rid=$colcont[$j];
1.119 raeburn 757: my $metainfo =&get_buttons(\%hash,$rid,\%buttonshide).'<br />';
1.94 raeburn 758: unless (($target eq 'tex') || ($target eq 'tex_answer')) {
1.37 sakharuk 759: $r->print('<td colspan="'.$avespan.'"');
760: }
1.99 raeburn 761: if (($cellemb{$rid} eq 'ssi') || ($cellexternal{$rid})) {
1.94 raeburn 762: unless (($target eq 'tex') || ($target eq 'tex_answer')) {
1.37 sakharuk 763: if ($ssibgcolor{$rid}) {
764: $r->print(' bgcolor="'.
765: $ssibgcolor{$rid}.'"');
766: }
767: $r->print('>'.$metainfo.'<font');
768:
769: if ($ssitext{$rid}) {
770: $r->print(' text="'.$ssitext{$rid}.'"');
771: }
772: if ($ssilink{$rid}) {
773: $r->print(' link="'.$ssilink{$rid}.'"');
774: }
775: if ($ssitext{$rid}) {
776: $r->print(' vlink="'.$ssivlink{$rid}.'"');
777: }
778: if ($ssialink{$rid}) {
779: $r->print(' alink="'.$ssialink{$rid}.'"');
780: }
781: $r->print('>');
782: }
1.99 raeburn 783: unless (($cellexternal{$rid}) &&
784: ($target eq 'tex') && ($target eq 'tex_answer')) {
785: $r->print($ssibody{$rid});
786: }
1.94 raeburn 787: unless (($target eq 'tex') || ($target eq 'tex_answer')) {
1.37 sakharuk 788: $r->print('</font>');
1.41 www 789: }
1.70 albertel 790: if ($env{'course.'.
791: $env{'request.course.id'}.
1.41 www 792: '.pageseparators'} eq 'yes') {
1.94 raeburn 793: unless (($target eq 'tex') || ($target eq 'tex_answer')) {
1.41 www 794: $r->print('<hr />');
1.77 albertel 795: }
1.37 sakharuk 796: }
797: } elsif ($cellemb{$rid} eq 'img') {
1.14 www 798: $r->print('>'.$metainfo.'<img src="'.
1.77 albertel 799: $hash{'src_'.$rid}.'" />');
1.13 www 800: } elsif ($cellemb{$rid} eq 'emb') {
1.14 www 801: $r->print('>'.$metainfo.'<embed src="'.
1.13 www 802: $hash{'src_'.$rid}.'"></embed>');
1.60 raeburn 803: } elsif (&Apache::lonnet::declutter($hash{'src_'.$rid}) !~/\.(sequence|page)$/) {
1.104 raeburn 804: $r->print($metainfo.'<b>'.$hash{'title_'.$rid}.'</b><br />');
805: unless ($cellemb{$rid} eq 'wrp') {
806: $r->print(&mt('It is recommended that you use an up-to-date virus scanner before handling this file.'));
807: }
808: $r->print('</p><p><table>'.
809: &Apache::londocs::entryline(0,
810: &mt("Click to download or use your browser's Save Link function"),
811: '/'.&Apache::lonnet::declutter($hash{'src_'.$rid})).
812: '</table></p><br />');
1.13 www 813: }
1.94 raeburn 814: unless (($target eq 'tex') || ($target eq 'tex_answer')) {
1.37 sakharuk 815: $r->print('</td>');
1.40 sakharuk 816: } else {
1.92 foxr 817: # for (my $incol=1;$incol<=$avespan;$incol++) {
818: # $r->print(' & ');
819: # }
1.37 sakharuk 820: }
1.4 www 821: }
1.94 raeburn 822: unless (($target eq 'tex') || ($target eq 'tex_answer')) {
1.37 sakharuk 823: $r->print('</tr>');
1.40 sakharuk 824: } else {
1.92 foxr 825: # $r->print('REMOVETHEHEADOFLONGTABLE\\\\');
1.37 sakharuk 826: }
1.5 www 827: }
1.4 www 828: }
1.94 raeburn 829: unless (($target eq 'tex') || ($target eq 'tex_answer')) {
1.37 sakharuk 830: $r->print("\n</table>");
1.40 sakharuk 831: } else {
1.92 foxr 832: # $r->print('\end{longtable}\strut');
1.37 sakharuk 833: }
1.7 www 834: # ---------------------------------------------------------------- Submit, etc.
835: if ($nforms) {
1.106 raeburn 836: my $class;
837: if ($nforms > 1) {
838: $class = ' class="LC_hwk_submit"';
1.110 raeburn 839: if ($ntimers) {
840: $nforms = 1;
841: $class = '';
842: }
1.106 raeburn 843: }
1.7 www 844: $r->print(
1.103 bisitz 845: '<input name="all_submit" value="'.&mt('Submit All').'" type="'.
1.106 raeburn 846: (($nforms>1)?'submit':'hidden').'"'.$class.' id="all_submit" />'.
1.120.2.3! raeburn 847: '<input type="hidden" name="all_submit_pressed" '.
! 848: 'id="all_submit_pressed" value="" />'.
1.106 raeburn 849: '<div id="msg_all_submit" style="display:none">'.
850: &mt('Processing your submission ...').'</div></form>');
1.7 www 851: }
1.94 raeburn 852: unless (($target eq 'tex') || ($target eq 'tex_answer')) {
1.76 albertel 853: $r->print(&Apache::loncommon::end_page({'discussion'
854: => 1,}));
1.40 sakharuk 855: } else {
856: $r->print('\end{document}'.$number_of_columns);
857: }
1.66 albertel 858: &Apache::lonnet::symblist($requrl,%symbhash);
1.69 albertel 859: my ($map,$id,$url)=&Apache::lonnet::decode_symb(&Apache::lonnet::symbread());
860: &Apache::lonnet::symblist($map,'last_known'=>[$url,$id]);
1.3 www 861: # -------------------------------------------------------------------- End page
862: }
1.1 www 863: # ------------------------------------------------------------- End render page
864: } else {
1.67 albertel 865: &Apache::loncommon::content_type($r,'text/html');
1.3 www 866: $r->send_http_header;
1.39 www 867: &Apache::lonsequence::viewmap($r,$requrl);
1.1 www 868: }
869: # ------------------------------------------------------------------ Untie hash
870: unless (untie(%hash)) {
871: &Apache::lonnet::logthis("<font color=blue>WARNING: ".
872: "Could not untie coursemap $fn (browse).</font>");
873: }
874: # -------------------------------------------------------------------- All done
875: return OK;
876: # ----------------------------------------------- Errors, hash could no be tied
877: }
878: }
879: }
1.67 albertel 880: &Apache::loncommon::content_type($r,'text/html');
1.39 www 881: $r->send_http_header;
882: &Apache::lonsequence::viewmap($r,$requrl);
883: return OK;
1.1 www 884: }
885:
1.83 albertel 886: sub get_buttons {
1.119 raeburn 887: my ($hash,$rid,$buttonshide) = @_;
1.83 albertel 888:
889: my $metainfo = '';
890: my $esrc=&Apache::lonnet::declutter($hash->{'src_'.$rid});
891: my ($mapid,$resid)=split(/\./,$rid);
892: my $symb=&Apache::lonnet::encode_symb($hash->{'map_id_'.$mapid},
893: $resid,
894: $hash->{'src_'.$rid});
1.109 raeburn 895: unless ($env{'request.role.adv'}) {
1.119 raeburn 896: if ($buttonshide->{$symb} eq 'yes') {
1.109 raeburn 897: return;
898: }
899: }
1.83 albertel 900: if ($hash->{'encrypted_'.$rid}) {
901: $symb=&Apache::lonenc::encrypted($symb);
902: $esrc=&Apache::lonenc::encrypted($esrc);
903: }
904: if ($hash->{'src_'.$rid} !~ m-^/uploaded/-
1.99 raeburn 905: && $hash->{'src_'.$rid} !~ m{^https?://}
1.83 albertel 906: && !$env{'request.enc'}
907: && ($env{'request.role.adv'}
908: || !$hash->{'encrypted_'.$rid})) {
909: $metainfo .='<a name="'.&escape($symb).'" />'.
910: '<a href="'.$hash->{'src_'.$rid}.'.meta'.'" target="LONcatInfo">'.
1.100 bisitz 911: '<img src="/res/adm/pages/catalog.png" class="LC_icon"'.
912: ' alt="'.&mt('Show Metadata').'"'.
913: ' title="'.&mt('Show Metadata').'" />'.
1.83 albertel 914: '</a>';
915: }
1.99 raeburn 916: if (($hash->{'src_'.$rid} !~ m{^/uploaded/}) &&
917: ($hash->{'src_'.$rid} !~ m{^https?://})) {
1.98 raeburn 918: $metainfo .= '<a href="/adm/evaluate?postdata='.
919: &escape($esrc).
920: '" target="LONcatInfo">'.
1.100 bisitz 921: '<img src="/res/adm/pages/eval.png" class="LC_icon"'.
922: ' alt="'.&mt('Provide my evaluation of this resource').'"'.
923: ' title="'.&mt('Provide my evaluation of this resource').'" />'.
1.98 raeburn 924: '</a>';
925: }
1.97 www 926: if (($hash->{'src_'.$rid}=~/$LONCAPA::assess_re/) &&
1.83 albertel 927: ($hash->{'src_'.$rid} !~ m-^/uploaded/-)) {
928:
929: if (&Apache::lonnet::allowed('mgr',$env{'request.course.id'})) {
930: $metainfo.=
931: '<a href="/adm/grades?symb='.&escape($symb).
932: # '&command=submission" target="LONcatInfo">'.
933: '&command=submission">'.
1.100 bisitz 934: '<img src="/adm/lonMisc/subm_button.png" class="LC_icon"'.
935: ' alt="'.&mt('View Submissions for a Student or a Group of Students').'"'.
936: ' title="'.&mt('View Submissions for a Student or a Group of Students').'" />'.
1.83 albertel 937: '</a>'.
938: '<a href="/adm/grades?symb='.&escape($symb).
939: # '&command=gradingmenu" target="LONcatInfo">'.
940: '&command=gradingmenu">'.
1.100 bisitz 941: '<img src="/res/adm/pages/pgrd.png" class="LC_icon"'.
942: ' alt="'.&mt('Content Grades').'"'.
943: ' title="'.&mt('Content Grades').'" />'.
1.83 albertel 944: '</a>';
945: }
946: if (&Apache::lonnet::allowed('opa',$env{'request.course.id'})) {
947: $metainfo.=
948: '<a href="/adm/parmset?symb='.&escape($symb).
949: # '" target="LONcatInfo">'.
950: '" >'.
1.100 bisitz 951: '<img src="/adm/lonMisc/pprm_button.png" class="LC_icon"'.
952: ' alt="'.&mt('Content Settings').'"'.
953: ' title="'.&mt('Content Settings').'" />'.
1.83 albertel 954: '</a>';
955: }
956: }
1.102 raeburn 957: if (($env{'request.course.id'}) && (&Apache::lonnet::allowed('mdc',$env{'request.course.id'}))) {
958: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
959: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
960: my $file=&Apache::lonnet::declutter($hash->{'src_'.$rid});
961: my ($cfile,$home,$switchserver,$forceedit,$forceview) =
962: &Apache::lonnet::can_edit_resource($file,$cnum,$cdom,$hash->{'src_'.$rid},$symb);
963: if ($cfile ne '') {
964: my $jscall = &Apache::lonhtmlcommon::jump_to_editres($cfile,$home,$switchserver,
965: $forceedit,1,$symb,undef,
966: &escape($env{'form.title'}));
967: if ($jscall) {
968: my $icon = 'pcstr.png';
969: my $label = &mt('Edit');
970: my $title = &mt('Edit this resource');
971: my $pic = '<img src="'.&Apache::loncommon::lonhttpdurl('/res/adm/pages/'.$icon).'"'.
972: ' class="LC_icon" alt="'.$label.'" title="'.$title.'" />';
973: $metainfo .= ' <a href="javascript:'.$jscall.';">'.$pic.'</a>';
974: }
975: }
976: }
1.83 albertel 977: return $metainfo;
978: }
979:
1.111 raeburn 980: sub add_countdown_timer {
1.114 raeburn 981: my ($currdisp,$donebuttontime,$donebuttonextras) = @_;
1.112 raeburn 982: my ($collapse,$expand,$alttxt,$title,$donebutton);
1.111 raeburn 983: if ($currdisp eq 'inline') {
984: $collapse = '► ';
985: } else {
986: $expand = '◄ ';
987: }
1.112 raeburn 988: if ($donebuttontime) {
1.114 raeburn 989: my ($type,$proctor,$donebuttontext);
990: if (ref($donebuttonextras) eq 'HASH') {
991: $proctor = $donebuttonextras->{'proctor'};
992: $donebuttontext = $donebuttonextras->{'text'};
993: $type = $donebuttonextras->{'type'};
994: } else {
995: $donebuttontext = &mt('Done');
1.116 raeburn 996: $type = 'map';
1.114 raeburn 997: }
998: $donebutton =
999: &Apache::lonmenu::done_button_js($type,'','',$proctor,$donebuttontext);
1.112 raeburn 1000: }
1.111 raeburn 1001: unless ($env{'environment.icons'} eq 'iconsonly') {
1002: $alttxt = &mt('Timer');
1003: $title = $alttxt.' ';
1004: }
1005: my $desc = &mt('Countdown to due date/time');
1006: my $output = <<END;
1.112 raeburn 1007: $donebutton
1.111 raeburn 1008: <a href="javascript:toggleCountdown();" class="LC_menubuttons_link">
1009: <span id="ddcountcollapse" class="LC_menubuttons_inline_text">
1010: $collapse
1011: </span></a>
1012: <span id="duedatecountdown" class="LC_menubuttons_inline_text" style="display: $currdisp;"></span>
1013: <a href="javascript:toggleCountdown();" class="LC_menubuttons_link">
1014: <span id="ddcountexpand" class="LC_menubuttons_inline_text" >$expand</span>
1015: <img src="/res/adm/pages/timer.png" title="$desc" class="LC_icon" alt="$alttxt" /><span class="LC_menubuttons_inline_text">$title</span></a>
1016: END
1017: &Apache::lonhtmlcommon::clear_breadcrumb_tools();
1018: &Apache::lonhtmlcommon::add_breadcrumb_tool('tools',$output);
1019: return;
1020: }
1021:
1022:
1.1 www 1023: 1;
1024: __END__
1025:
1026:
1.89 jms 1027: =head1 NAME
1028:
1029: Apache::lonpage - Page Handler
1030:
1031: =head1 SYNOPSIS
1032:
1033: Invoked by /etc/httpd/conf/srm.conf:
1034:
1035: <LocationMatch "^/res/.*\.page$>
1036: SetHandler perl-script
1037: PerlHandler Apache::lonpage
1038: </LocationMatch>
1039:
1040: =head1 INTRODUCTION
1041:
1042: This module renders a .page resource.
1043:
1044: This is part of the LearningOnline Network with CAPA project
1045: described at http://www.lon-capa.org.
1046:
1047: =head1 HANDLER SUBROUTINE
1048:
1049: This routine is called by Apache and mod_perl.
1050:
1051: =over 4
1052:
1053: =item *
1054:
1055: set document type for header only
1056:
1057: =item *
1058:
1059: tie db file
1060:
1061: =item *
1062:
1063: render page
1064:
1065: =item *
1066:
1067: add to symb list
1068:
1069: =item *
1070:
1071: page parms
1072:
1073: =item *
1074:
1075: Get SSI output, post parameters
1.1 www 1076:
1.89 jms 1077: =item *
1078:
1079: SSI cell rendering
1080:
1081: =item *
1082:
1083: Deal with Applet codebases
1084:
1085: =item *
1086:
1087: Build page
1088:
1089: =item *
1090:
1091: send headers
1092:
1093: =item *
1094:
1095: start body
1096:
1097: =item *
1098:
1099: start form
1100:
1101: =item *
1102:
1103: start table
1104:
1105: =item *
1106:
1107: submit element, etc, render page, untie hash
1108:
1109: =back
1110:
1111: =head1 OTHER SUBROUTINES
1112:
1113: =over 4
1114:
1115: =item *
1116:
1117: euclid() : Euclid's method for determining the greatest common denominator.
1118:
1119: =item *
1120:
1121: tracetable() : Build page table.
1122:
1123: =back
1124:
1125: =cut
1.1 www 1126:
1127:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>