--- loncom/interface/lontest.pm 2006/03/15 19:41:26 1.18 +++ loncom/interface/lontest.pm 2008/11/14 21:26:54 1.20 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # A debugging harness. # -# $Id: lontest.pm,v 1.18 2006/03/15 19:41:26 albertel Exp $ +# $Id: lontest.pm,v 1.20 2008/11/14 21:26:54 jms Exp $ # # Copyright Michigan State University Board of Trustees # @@ -27,6 +27,49 @@ # # +=head1 NAME + +Apache::lontest; + +=head1 SYNOPSIS + +Used for debugging and testing the LONCAPA +system. + +This is part of the LearningOnline Network with CAPA project +described at http://www.lon-capa.org. + +=head1 HANDLER SUBROUTINE + +handler() + +=head1 OTHER SUBROUTINES + +=over + +=item * + +section() : + +section takes one env var name as input, and returns +what section the given env var is in, which is the part +of the env var before the first period. +Returns the section, or blank string for 'no section', +which is normal for the standard env vars like REQUEST_URI. + +=item * + +print_hash() + +=item * + + + + +=back + +=cut + package Apache::lontest; use strict; @@ -35,11 +78,6 @@ use GDBM_File; use Apache::loncommon; use Apache::lonnet; -# section takes one env var name as input, and returns -# what section the given env var is in, which is the part -# of the env var before the first period. -# Returns the section, or blank string for 'no section', -# which is normal for the standard env vars like REQUEST_URI. sub section { my ($name) = @_; @@ -84,9 +122,8 @@ sub handler { $r->send_http_header; return OK if $r->header_only; - my $html=&Apache::lonxml::xmlbegin(); - my $bodytag=&Apache::loncommon::bodytag("List Environment","admin"); - $r->print($html.&Apache::loncommon::head().$bodytag); + $r->print(&Apache::loncommon::start_page("List Environment",undef, + {'function' => 'admin'})); $r->print("

Debugging


\n"); $r->print("");