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