Annotation of rat/lonpage.pm, revision 1.56
1.1 www 1: # The LearningOnline Network with CAPA
2: # Page Handler
3: #
1.56 ! sakharuk 4: # $Id: lonpage.pm,v 1.55 2004/02/24 19:14:42 www 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.1 www 28: # (TeX Content Handler
29: #
1.30 harris41 30: # YEAR=2000
1.1 www 31: # 05/29/00,05/30 Gerd Kortemeyer)
1.10 www 32: # 08/30,08/31,09/06,09/14,09/15,09/16,09/19,09/20,09/21,09/23,
1.24 www 33: # 10/02,10/10,10/14,10/16,10/18,10/19,10/31,11/6,11/14,11/16,
1.30 harris41 34: # YEAR=2001
1.27 www 35: # 08/13/01,08/30,10/1 Gerd Kortemeyer
1.33 www 36: # YEAR=2002
37: # 03/19 Gerd Kortemeyer
1.30 harris41 38: #
39: ###
1.1 www 40:
41: package Apache::lonpage;
42:
43: use strict;
44: use Apache::Constants qw(:common :http);
45: use Apache::lonnet();
1.30 harris41 46: use Apache::loncommon();
1.21 www 47: use Apache::lonxml();
1.49 www 48: use Apache::lonmenu;
1.6 www 49: use HTML::TokeParser;
1.1 www 50: use GDBM_File;
1.39 www 51: use Apache::lonsequence;
1.1 www 52:
1.2 www 53: # -------------------------------------------------------------- Module Globals
54: my %hash;
55: my @rows;
1.6 www 56:
57: # ------------------------------------------------------------------ Euclid gcd
58:
59: sub euclid {
60: my ($e,$f)=@_;
61: my $a; my $b; my $r;
62: if ($e>$f) { $b=$e; $r=$f; } else { $r=$e; $b=$f; }
63: while ($r!=0) {
64: $a=$b; $b=$r;
65: $r=$a%$b;
66: }
67: return $b;
68: }
1.2 www 69:
70: # ------------------------------------------------------------ Build page table
71:
72: sub tracetable {
73: my ($sofar,$rid,$beenhere)=@_;
74: my $further=$sofar;
75: unless ($beenhere=~/\&$rid\&/) {
76: $beenhere.=$rid.'&';
77:
78: if (defined($hash{'is_map_'.$rid})) {
79: if ((defined($hash{'map_start_'.$hash{'src_'.$rid}})) &&
80: (defined($hash{'map_finish_'.$hash{'src_'.$rid}}))) {
1.4 www 81: my $frid=$hash{'map_finish_'.$hash{'src_'.$rid}};
82: $sofar=
1.2 www 83: &tracetable($sofar,$hash{'map_start_'.$hash{'src_'.$rid}},
1.3 www 84: '&'.$frid.'&');
1.4 www 85: $sofar++;
86: if ($hash{'src_'.$frid}) {
1.3 www 87: my $brepriv=&Apache::lonnet::allowed('bre',$hash{'src_'.$frid});
88: if (($brepriv eq '2') || ($brepriv eq 'F')) {
89: if (defined($rows[$sofar])) {
90: $rows[$sofar].='&'.$frid;
91: } else {
92: $rows[$sofar]=$frid;
93: }
94: }
1.4 www 95: }
1.2 www 96: }
97: } else {
1.4 www 98: $sofar++;
99: if ($hash{'src_'.$rid}) {
1.3 www 100: my $brepriv=&Apache::lonnet::allowed('bre',$hash{'src_'.$rid});
101: if (($brepriv eq '2') || ($brepriv eq 'F')) {
102: if (defined($rows[$sofar])) {
1.2 www 103: $rows[$sofar].='&'.$rid;
1.3 www 104: } else {
1.2 www 105: $rows[$sofar]=$rid;
1.3 www 106: }
107: }
1.4 www 108: }
1.2 www 109: }
110:
111: if (defined($hash{'to_'.$rid})) {
1.11 www 112: my $mincond=1;
113: my $next='';
1.30 harris41 114: foreach (split(/\,/,$hash{'to_'.$rid})) {
1.11 www 115: my $thiscond=
116: &Apache::lonnet::directcondval($hash{'condid_'.$hash{'undercond_'.$_}});
117: if ($thiscond>=$mincond) {
118: if ($next) {
119: $next.=','.$_.':'.$thiscond;
120: } else {
121: $next=$_.':'.$thiscond;
122: }
123: if ($thiscond>$mincond) { $mincond=$thiscond; }
124: }
1.30 harris41 125: }
126: foreach (split(/\,/,$next)) {
1.11 www 127: my ($linkid,$condval)=split(/\:/,$_);
128: if ($condval>=$mincond) {
129: my $now=&tracetable($sofar,$hash{'goesto_'.$linkid},$beenhere);
130: if ($now>$further) { $further=$now; }
131: }
1.30 harris41 132: }
1.11 www 133:
1.2 www 134: }
135: }
136: return $further;
137: }
138:
1.1 www 139: # ================================================================ Main Handler
140:
141: sub handler {
142: my $r=shift;
143:
1.3 www 144: # ------------------------------------------- Set document type for header only
1.1 www 145:
1.3 www 146: if ($r->header_only) {
147: if ($ENV{'browser.mathml'}) {
1.53 www 148: &Apache::loncommon::content_type($r,'text/xml');
1.3 www 149: } else {
1.53 www 150: &Apache::loncommon::content_type($r,'text/html');
1.3 www 151: }
152: $r->send_http_header;
153: return OK;
154: }
1.43 sakharuk 155:
1.39 www 156: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
157: ['forceselect','launch']);
1.43 sakharuk 158: my $number_of_columns = 1;
1.37 sakharuk 159: my $requrl=$r->uri;
160: my $target = $ENV{'form.grade_target'};
1.55 www 161: # &Apache::lonnet::logthis("Got a target of $target");
1.54 albertel 162: if ($target eq 'meta') {
163: &Apache::loncommon::content_type($r,'text/html');
164: $r->send_http_header;
165: return OK;
166: }
1.1 www 167: # ----------------------------------------------------------------- Tie db file
1.39 www 168: if (($ENV{'request.course.fn'}) && (!$ENV{'form.forceselect'})) {
1.1 www 169: my $fn=$ENV{'request.course.fn'};
170: if (-e "$fn.db") {
1.44 albertel 171: if (tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER(),0640)) {
1.1 www 172: # ------------------------------------------------------------------- Hash tied
173: my $firstres=$hash{'map_start_'.$requrl};
174: my $lastres=$hash{'map_finish_'.$requrl};
175: if (($firstres) && ($lastres)) {
176: # ----------------------------------------------------------------- Render page
177:
1.3 www 178: @rows=();
1.2 www 179:
1.45 www 180: &tracetable(0,$firstres,'&');
1.2 www 181:
1.9 www 182: # ------------------------------------------------------------ Add to symb list
183:
1.2 www 184: my $i;
1.9 www 185: my %symbhash=();
186: for ($i=0;$i<=$#rows;$i++) {
187: if ($rows[$i]) {
188: my @colcont=split(/\&/,$rows[$i]);
1.30 harris41 189: foreach (@colcont) {
1.9 www 190: $symbhash{$hash{'src_'.$_}}='';
1.30 harris41 191: }
1.9 www 192: }
193: }
194: &Apache::lonnet::symblist($requrl,%symbhash);
195:
196: # ------------------------------------------------------------------ Page parms
197:
1.4 www 198: my $j;
1.6 www 199: my $lcm=1;
200: my $contents=0;
1.7 www 201: my $nforms=0;
1.6 www 202:
203: my %ssibody=();
204: my %ssibgcolor=();
205: my %ssitext=();
206: my %ssilink=();
207: my %ssivlink=();
208: my %ssialink=();
1.14 www 209:
210: my %metalink=();
211:
1.6 www 212: my %cellemb=();
1.3 www 213:
1.7 www 214: my $allscript='';
215: my $allmeta='';
216:
217: my $isxml=0;
218: my $xmlheader='';
219: my $xmlbody='';
220:
1.3 www 221: # --------------------------------------------- Get SSI output, post parameters
222:
1.2 www 223: for ($i=0;$i<=$#rows;$i++) {
1.4 www 224: if ($rows[$i]) {
1.6 www 225: $contents++;
1.3 www 226: my @colcont=split(/\&/,$rows[$i]);
1.6 www 227: $lcm*=($#colcont+1)/euclid($lcm,($#colcont+1));
1.30 harris41 228: foreach (@colcont) {
1.3 www 229: my $src=$hash{'src_'.$_};
1.5 www 230: $src=~/\.(\w+)$/;
1.14 www 231: $metalink{$_}=$src.'.meta';
1.30 harris41 232: $cellemb{$_}=Apache::loncommon::fileembstyle($1);
1.3 www 233: if ($cellemb{$_} eq 'ssi') {
234: # --------------------------------------------------------- This is an SSI cell
1.5 www 235: my $prefix=$_.'_';
236: my %posthash=('request.prefix' => $prefix);
1.56 ! sakharuk 237: if ($ENV{'form.grade_target'} eq 'tex') {
! 238: $posthash{'grade_target'}=$ENV{'form.grade_target'};
! 239: $posthash{'textwidth'}=$ENV{'form.textwidth'};
! 240: $posthash{'problem_split'}=$ENV{'form.problem_split'};
! 241: $posthash{'latex_type'}=$ENV{'form.latex_type'};
! 242: $posthash{'rndseed'}=$ENV{'form.rndseed'};
! 243: }
1.8 www 244: if (($ENV{'form.'.$prefix.'submit'})
1.7 www 245: || ($ENV{'form.all_submit'})) {
1.30 harris41 246: foreach (keys %ENV) {
1.5 www 247: if ($_=~/^form.$prefix/) {
248: my $name=$_;
249: $name=~s/^form.$prefix//;
250: $posthash{$name}=$ENV{$_};
251: }
1.30 harris41 252: }
1.7 www 253: }
1.5 www 254: my $output=Apache::lonnet::ssi($src,%posthash);
1.50 www 255: $output=~
256: s/\/\/ BEGIN LON\-CAPA Internal.+\/\/ END LON\-CAPA Internal\s//gs;
1.46 sakharuk 257: if ($target eq 'tex') {
258: $output =~ s/^([^&]+)\\begin{document}//;
259: $output =~ s/\\end{document}//;
260: $output = '\parbox{\minipagewidth}{ '.$output.' }';
261: #some additional cleanup necessary for LateX (due to limitations of table environment
262: $output =~ s/(\\vskip\s*\d+mm)\s*(\\\\)+/$1/g;
263: }
1.6 www 264: my $parser=HTML::TokeParser->new(\$output);
265: my $token;
1.12 www 266: my $thisdir=$src;
1.6 www 267: my $bodydef=0;
1.7 www 268: my $thisxml=0;
1.12 www 269: my @rlinks=();
1.7 www 270: if ($output=~/\?xml/) {
271: $isxml=1;
272: $thisxml=1;
273: $output=~
274: /((?:\<(?:\?xml|\!DOC|html)[^\>]*(?:\>|\>\]\>)\s*)+)\<body[^\>]*\>/si;
275: $xmlheader=$1;
276: }
1.12 www 277: while ($token=$parser->get_token) {
278: if ($token->[0] eq 'S') {
279: if ($token->[1] eq 'a') {
280: if ($token->[2]->{'href'}) {
281: $rlinks[$#rlinks+1]=
282: $token->[2]->{'href'};
283: }
284: } elsif ($token->[1] eq 'img') {
285: $rlinks[$#rlinks+1]=
286: $token->[2]->{'src'};
287: } elsif ($token->[1] eq 'embed') {
288: $rlinks[$#rlinks+1]=
289: $token->[2]->{'src'};
290: } elsif ($token->[1] eq 'base') {
291: $thisdir=$token->[2]->{'href'};
292: } elsif ($token->[1] eq 'body') {
1.7 www 293: $bodydef=1;
294: $ssibgcolor{$_}=$token->[2]->{'bgcolor'};
295: $ssitext{$_}=$token->[2]->{'text'};
296: $ssilink{$_}=$token->[2]->{'link'};
297: $ssivlink{$_}=$token->[2]->{'vlink'};
298: $ssialink{$_}=$token->[2]->{'alink'};
299: if ($thisxml) {
300: $xmlbody=$token->[4];
301: }
1.12 www 302: } elsif ($token->[1] eq 'meta') {
1.28 albertel 303: if ($token->[4] !~ m:/>$:) {
1.7 www 304: $allmeta.="\n".$token->[4].'</meta>';
1.28 albertel 305: } else {
306: $allmeta.="\n".$token->[4];
307: }
1.12 www 308: } elsif (($token->[1] eq 'script') &&
309: ($bodydef==0)) {
1.7 www 310: $allscript.="\n\n"
311: .$parser->get_text('/script');
1.6 www 312: }
1.12 www 313: }
314: }
1.6 www 315: if ($output=~/\<body[^\>]*\>(.*)/si) {
316: $output=$1;
317: }
318: $output=~s/\<\/body\>.*//si;
1.7 www 319: if ($output=~/\<form/si) {
320: $nforms++;
321: $output=~s/\<form[^\>]*\>//gsi;
322: $output=~s/\<\/form[^\>]*\>//gsi;
1.17 www 323: $output=~
1.18 www 324: s/\<((?:input|select|button|textarea)[^\>]+)name\s*\=\s*[\'\"]*([\w\.\:]+)[\'\"]*([^\>]*)\>/\<$1 name="$prefix$2" $3\>/gsi;
1.7 www 325: }
1.12 www 326: $thisdir=~s/\/[^\/]*$//;
1.30 harris41 327: foreach (@rlinks) {
1.12 www 328: unless (($_=~/^http:\/\//i) ||
1.31 albertel 329: ($_=~/^\//) ||
330: ($_=~/^javascript:/i) ||
331: ($_=~/^mailto:/i) ||
332: ($_=~/^\#/)) {
1.12 www 333: my $newlocation=
334: &Apache::lonnet::hreflocation($thisdir,$_);
335: $output=~s/(\"|\'|\=\s*)$_(\"|\'|\s|\>)/$1$newlocation$2/;
336: }
1.30 harris41 337: }
1.24 www 338: # -------------------------------------------------- Deal with Applet codebases
339: $output=~s/(\<applet[^\>]+)(codebase\=[^\S\>]+)*([^\>]*)\>/$1.($2?$2:' codebase="'.$thisdir.'"').$3.'>'/gei;
1.5 www 340: $ssibody{$_}=$output;
1.3 www 341: # ---------------------------------------------------------------- End SSI cell
342: }
1.30 harris41 343: }
1.4 www 344: }
1.2 www 345: }
1.6 www 346: unless ($contents) {
1.53 www 347: &Apache::loncommon::content_type($r,'text/html');
1.3 www 348: $r->send_http_header;
1.53 www 349: $r->print('<html><body>'.&mt('Empty page').'.</body></html>');
1.3 www 350: } else {
351: # ------------------------------------------------------------------ Build page
1.7 www 352:
353: # ---------------------------------------------------------------- Send headers
1.37 sakharuk 354: unless ($target eq 'tex') {
355: if ($isxml) {
1.53 www 356: &Apache::loncommon::content_type($r,'text/xml');
1.37 sakharuk 357: $r->send_http_header;
358: $r->print($xmlheader);
359: } else {
1.53 www 360: &Apache::loncommon::content_type($r,'text/html');
1.37 sakharuk 361: $r->send_http_header;
362: $r->print('<html>');
363: }
1.7 www 364: # ------------------------------------------------------------------------ Head
1.37 sakharuk 365: $r->print("\n<head>\n".$allmeta);
366: if ($allscript) {
367: $r->print("\n<script language='JavaScript'>\n".
368: $allscript."\n</script>\n");
369: }
1.49 www 370: $r->print(&Apache::lonmenu::registerurl(1,undef));
1.37 sakharuk 371: $r->print("\n</head>\n");
1.7 www 372: # ------------------------------------------------------------------ Start body
1.37 sakharuk 373: if ($isxml) {
374: $r->print($xmlbody);
375: } else {
1.51 www 376: $r->print(
377: '<body bgcolor="#FFFFFF" onLoad="'.&Apache::lonmenu::loadevents.
378: '" onUnload="'.&Apache::lonmenu::unloadevents.'">'.
379: &Apache::lonmenu::menubuttons(undef,$target,1)
380: );
1.37 sakharuk 381: }
1.7 www 382: # ------------------------------------------------------------------ Start form
1.37 sakharuk 383: if ($nforms) {
384: $r->print('<form method="post" action="'.
385: $requrl.'">');
1.40 sakharuk 386: }
1.56 ! sakharuk 387: } elsif ($target eq 'tex') {
1.47 sakharuk 388: $r->print('\documentclass{article}
1.40 sakharuk 389: \newcommand{\keephidden}[1]{}
390: \usepackage[dvips]{graphicx}
391: \usepackage{epsfig}
392: \usepackage{calc}
1.42 sakharuk 393: \usepackage{longtable}
1.40 sakharuk 394: \begin{document}');
395: }
1.7 www 396: # ----------------------------------------------------------------- Start table
1.40 sakharuk 397: if ($target eq 'tex') {
1.42 sakharuk 398: $r->print('\begin{longtable}INSERTTHEHEADOFLONGTABLE\endfirsthead\endhead ');
1.43 sakharuk 399: if ($number_of_columns le $lcm) {$number_of_columns=$lcm;};
1.40 sakharuk 400: } else {
1.37 sakharuk 401: $r->print('<table cols="'.$lcm.'" border="0">');
402: }
1.5 www 403: for ($i=0;$i<=$#rows;$i++) {
404: if ($rows[$i]) {
1.37 sakharuk 405: unless ($target eq 'tex') {
406: $r->print("\n<tr>");
407: }
1.4 www 408: my @colcont=split(/\&/,$rows[$i]);
1.6 www 409: my $avespan=$lcm/($#colcont+1);
410: for ($j=0;$j<=$#colcont;$j++) {
411: my $rid=$colcont[$j];
1.55 www 412: my $metainfo='<a name="'.
413: &Apache::lonnet::escape(&Apache::lonnet::declutter($hash{'src_'.$rid})).'" />'.
414: '<a href="'.
1.23 www 415: $metalink{$rid}.'" target="LONcatInfo">'.
416: '<img src="/adm/lonMisc/cat_button.gif" border=0>'.
1.34 www 417: '</img></a><a href="/adm/evaluate?postdata='.
1.35 www 418: &Apache::lonnet::escape(&Apache::lonnet::declutter($hash{'src_'.$rid}))
419: .'" target="LONcatInfo">'.
1.33 www 420: '<img src="/adm/lonMisc/eval_button.gif" border=0>'.
421: '</img></a>';
1.27 www 422: if (
423: ($hash{'src_'.$rid}=~/\.(problem|exam|quiz|assess|survey|form)$/) &&
424: (&Apache::lonnet::allowed('mgr',$ENV{'request.course.id'}))) {
425: my ($mapid,$resid)=split(/\./,$rid);
426: my $symb=
427: &Apache::lonnet::declutter($hash{'map_id_'.$mapid}).
428: '___'.$resid.'___'.
429: &Apache::lonnet::declutter($hash{'src_'.$rid});
430: $metainfo.=
1.36 www 431: '<a href="/adm/grades?symb='.&Apache::lonnet::escape($symb).
1.52 ng 432: # '&command=submission" target="LONcatInfo">'.
433: '&command=submission">'.
1.27 www 434: '<img src="/adm/lonMisc/subm_button.gif" border=0>'.
435: '</img></a>'.
1.36 www 436: '<a href="/adm/grades?symb='.&Apache::lonnet::escape($symb).
1.52 ng 437: # '&command=gradingmenu" target="LONcatInfo">'.
438: '&command=gradingmenu">'.
1.27 www 439: '<img src="/adm/lonMisc/pgrd_button.gif" border=0>'.
440: '</img></a>'.
1.36 www 441: '<a href="/adm/parmset?symb='.&Apache::lonnet::escape($symb).
1.52 ng 442: # '" target="LONcatInfo">'.
443: '" >'.
1.27 www 444: '<img src="/adm/lonMisc/pprm_button.gif" border=0>'.
445: '</img></a>';
446: }
447: $metainfo.='<br></br>';
1.37 sakharuk 448: unless ($target eq 'tex') {
449: $r->print('<td colspan="'.$avespan.'"');
450: }
1.6 www 451: if ($cellemb{$rid} eq 'ssi') {
1.37 sakharuk 452: unless ($target eq 'tex') {
453: if ($ssibgcolor{$rid}) {
454: $r->print(' bgcolor="'.
455: $ssibgcolor{$rid}.'"');
456: }
457: $r->print('>'.$metainfo.'<font');
458:
459: if ($ssitext{$rid}) {
460: $r->print(' text="'.$ssitext{$rid}.'"');
461: }
462: if ($ssilink{$rid}) {
463: $r->print(' link="'.$ssilink{$rid}.'"');
464: }
465: if ($ssitext{$rid}) {
466: $r->print(' vlink="'.$ssivlink{$rid}.'"');
467: }
468: if ($ssialink{$rid}) {
469: $r->print(' alink="'.$ssialink{$rid}.'"');
470: }
471: $r->print('>');
472: }
473: $r->print($ssibody{$rid});
474: unless ($target eq 'tex') {
475: $r->print('</font>');
1.41 www 476: }
477: if ($ENV{'course.'.
478: $ENV{'request.course.id'}.
479: '.pageseparators'} eq 'yes') {
480: unless($target eq 'tex') {
481: $r->print('<hr />');
482: } else {
483: $r->print('\hline');
484: }
1.37 sakharuk 485: }
486: } elsif ($cellemb{$rid} eq 'img') {
1.14 www 487: $r->print('>'.$metainfo.'<img src="'.
1.7 www 488: $hash{'src_'.$rid}.'"></img>');
1.13 www 489: } elsif ($cellemb{$rid} eq 'emb') {
1.14 www 490: $r->print('>'.$metainfo.'<embed src="'.
1.13 www 491: $hash{'src_'.$rid}.'"></embed>');
492: }
1.37 sakharuk 493: unless ($target eq 'tex') {
494: $r->print('</td>');
1.40 sakharuk 495: } else {
1.43 sakharuk 496: for (my $incol=1;$incol<=$avespan;$incol++) {
497: $r->print(' & ');
498: }
1.37 sakharuk 499: }
1.4 www 500: }
1.37 sakharuk 501: unless ($target eq 'tex') {
502: $r->print('</tr>');
1.40 sakharuk 503: } else {
1.42 sakharuk 504: $r->print('REMOVETHEHEADOFLONGTABLE\\\\');
1.37 sakharuk 505: }
1.5 www 506: }
1.4 www 507: }
1.37 sakharuk 508: unless ($target eq 'tex') {
509: $r->print("\n</table>");
1.40 sakharuk 510: } else {
1.47 sakharuk 511: $r->print('\end{longtable}\strut');
1.37 sakharuk 512: }
1.7 www 513: # ---------------------------------------------------------------- Submit, etc.
514: if ($nforms) {
515: $r->print(
516: '<input name="all_submit" value="Submit All" type="'.
517: (($nforms>1)?'submit':'hidden').'"></input></form>');
518: }
1.40 sakharuk 519: unless ($target eq 'tex') {
520: $r->print('</body>'.&Apache::lonxml::xmlend());
521: } else {
522: $r->print('\end{document}'.$number_of_columns);
523: }
1.3 www 524: # -------------------------------------------------------------------- End page
525: }
1.1 www 526: # ------------------------------------------------------------- End render page
527: } else {
1.3 www 528: $r->content_type('text/html');
529: $r->send_http_header;
1.39 www 530: &Apache::lonsequence::viewmap($r,$requrl);
1.1 www 531: }
532: # ------------------------------------------------------------------ Untie hash
533: unless (untie(%hash)) {
534: &Apache::lonnet::logthis("<font color=blue>WARNING: ".
535: "Could not untie coursemap $fn (browse).</font>");
536: }
537: # -------------------------------------------------------------------- All done
538: return OK;
539: # ----------------------------------------------- Errors, hash could no be tied
540: }
541: }
542: }
1.39 www 543: $r->content_type('text/html');
544: $r->send_http_header;
545: &Apache::lonsequence::viewmap($r,$requrl);
546: return OK;
1.1 www 547: }
548:
549: 1;
550: __END__
551:
1.30 harris41 552: =head1 NAME
553:
554: Apache::lonpage - Page Handler
555:
556: =head1 SYNOPSIS
557:
558: Invoked by /etc/httpd/conf/srm.conf:
559:
560: <LocationMatch "^/res/.*\.page$>
561: SetHandler perl-script
562: PerlHandler Apache::lonpage
563: </LocationMatch>
564:
565: =head1 INTRODUCTION
566:
567: This module renders a .page resource.
568:
569: This is part of the LearningOnline Network with CAPA project
570: described at http://www.lon-capa.org.
571:
572: =head1 HANDLER SUBROUTINE
573:
574: This routine is called by Apache and mod_perl.
575:
576: =over 4
577:
578: =item *
579:
580: set document type for header only
581:
582: =item *
583:
584: tie db file
585:
586: =item *
587:
588: render page
589:
590: =item *
591:
592: add to symb list
593:
594: =item *
595:
596: page parms
597:
598: =item *
599:
600: Get SSI output, post parameters
601:
602: =item *
603:
604: SSI cell rendering
605:
606: =item *
607:
608: Deal with Applet codebases
609:
610: =item *
611:
612: Build page
613:
614: =item *
615:
616: send headers
617:
618: =item *
619:
620: start body
621:
622: =item *
623:
624: start form
625:
626: =item *
627:
628: start table
629:
630: =item *
631:
632: submit element, etc, render page, untie hash
633:
634: =back
635:
636: =head1 OTHER SUBROUTINES
637:
638: =over 4
639:
640: =item *
641:
642: euclid() : Euclid's method for determining the greatest common denominator.
643:
644: =item *
645:
646: tracetable() : Build page table.
1.1 www 647:
1.30 harris41 648: =back
1.1 www 649:
1.30 harris41 650: =cut
1.1 www 651:
652:
653:
654:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>