Diff for /rat/lonpage.pm between versions 1.88 and 1.89

version 1.88, 2008/11/20 13:11:43 version 1.89, 2008/11/20 15:19:05
Line 27 Line 27
 #  #
 ###  ###
   
 =head1 NAME  
   
 Apache::lonpage - Page Handler  
   
 =head1 SYNOPSIS  
   
 Invoked by /etc/httpd/conf/srm.conf:  
   
  <LocationMatch "^/res/.*\.page$>  
  SetHandler perl-script  
  PerlHandler Apache::lonpage  
  </LocationMatch>  
   
 =head1 INTRODUCTION  
   
 This module renders a .page resource.  
   
 This is part of the LearningOnline Network with CAPA project  
 described at http://www.lon-capa.org.  
   
 =head1 HANDLER SUBROUTINE  
   
 This routine is called by Apache and mod_perl.  
   
 =over 4  
   
 =item *  
   
 set document type for header only  
   
 =item *  
   
 tie db file  
   
 =item *  
   
 render page  
   
 =item *  
   
 add to symb list  
   
 =item *  
   
 page parms  
   
 =item *  
   
 Get SSI output, post parameters  
   
 =item *  
   
 SSI cell rendering  
   
 =item *  
   
 Deal with Applet codebases  
   
 =item *  
   
 Build page  
   
 =item *  
   
 send headers  
   
 =item *  
   
 start body  
   
 =item *  
   
 start form  
   
 =item *  
   
 start table  
   
 =item *  
   
 submit element, etc, render page, untie hash  
   
 =back  
   
 =head1 OTHER SUBROUTINES  
   
 =over 4  
   
 =item *  
   
 euclid() : Euclid's method for determining the greatest common denominator.  
   
 =item *  
   
 tracetable() : Build page table.  
   
 =back  
   
 =cut  
   
   
 package Apache::lonpage;  package Apache::lonpage;
Line 692  sub get_buttons { Line 594  sub get_buttons {
 __END__  __END__
   
   
   =head1 NAME
   
   Apache::lonpage - Page Handler
   
   =head1 SYNOPSIS
   
   Invoked by /etc/httpd/conf/srm.conf:
   
    <LocationMatch "^/res/.*\.page$>
    SetHandler perl-script
    PerlHandler Apache::lonpage
    </LocationMatch>
   
   =head1 INTRODUCTION
   
   This module renders a .page resource.
   
   This is part of the LearningOnline Network with CAPA project
   described at http://www.lon-capa.org.
   
   =head1 HANDLER SUBROUTINE
   
   This routine is called by Apache and mod_perl.
   
   =over 4
   
   =item *
   
   set document type for header only
   
   =item *
   
   tie db file
   
   =item *
   
   render page
   
   =item *
   
   add to symb list
   
   =item *
   
   page parms
   
   =item *
   
   Get SSI output, post parameters
   
   =item *
   
   SSI cell rendering
   
   =item *
   
   Deal with Applet codebases
   
   =item *
   
   Build page
   
   =item *
   
   send headers
   
   =item *
   
   start body
   
   =item *
   
   start form
   
   =item *
   
   start table
   
   =item *
   
   submit element, etc, render page, untie hash
   
   =back
   
   =head1 OTHER SUBROUTINES
   
   =over 4
   
   =item *
   
   euclid() : Euclid's method for determining the greatest common denominator.
   
   =item *
   
   tracetable() : Build page table.
   
   =back
   
   =cut
   
   

Removed from v.1.88  
changed lines
  Added in v.1.89


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