Annotation of rat/lonpage.pm, revision 1.30

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

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