--- loncom/interface/lontest.pm 2005/04/05 20:43:27 1.15
+++ loncom/interface/lontest.pm 2005/04/07 08:15:41 1.17
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# A debugging harness.
#
-# $Id: lontest.pm,v 1.15 2005/04/05 20:43:27 albertel Exp $
+# $Id: lontest.pm,v 1.17 2005/04/07 08:15:41 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -39,7 +39,7 @@ use Apache::lonnet;
# 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.
+# which is normal for the standard env vars like REQUEST_URI.
sub section
{
my ($name) = @_;
@@ -87,27 +87,21 @@ sub handler {
my $html=&Apache::lonxml::xmlbegin();
my $bodytag=&Apache::loncommon::bodytag("List Environment","admin");
$r->print($html.'
'.$bodytag);
-
+
$r->print("
Debugging
\n");
$r->print("");
-
- my %differences=%ENV;
- foreach my $key (sort(keys(%env))) {
- if ($env{$key} eq $differences{$key}) {
- delete($differences{$key});
- }
- }
- &print_hash($r,\%differences);
- &print_hash($r,\%env);
+ $r->print("
ENV
\n");
&print_hash($r,\%ENV);
+ $r->print("
env
\n");
+ &print_hash($r,\%env);
# ------------------------------------------------ If in a course, print hashes
- if ($ENV{'request.course.id'}) {
+ if ($env{'request.course.id'}) {
my %parmhash;
my %symbhash;
my %hash;
- my $fn=$ENV{'request.course.fn'};
+ my $fn=$env{'request.course.fn'};
if (tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER(),0640)) {
$r->print('Big Hash
');
@@ -119,7 +113,7 @@ sub handler {
$r->print('Count not tie big hash
');
}
if (tie(%parmhash,'GDBM_File',
- $ENV{'request.course.fn'}.'_parms.db',
+ $env{'request.course.fn'}.'_parms.db',
&GDBM_READER(),0640)) {
$r->print('Parm Hash
');
foreach (sort keys %parmhash) {