File:  [LON-CAPA] / rat / lonpage.pm
Revision 1.48: download - view: text, annotated - select for diffs
Mon Feb 3 18:03:53 2003 UTC (21 years, 2 months ago) by harris41
Branches: MAIN
CVS tags: HEAD
best wishes to all.

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>