--- loncom/homework/lonhomework.pm 2002/05/23 21:12:44 1.78 +++ loncom/homework/lonhomework.pm 2002/07/18 20:52:36 1.82 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # The LON-CAPA Homework handler # -# $Id: lonhomework.pm,v 1.78 2002/05/23 21:12:44 albertel Exp $ +# $Id: lonhomework.pm,v 1.82 2002/07/18 20:52:36 bowersj2 Exp $ # # Copyright Michigan State University Board of Trustees # @@ -28,6 +28,7 @@ # Guy Albertelli # 11/30 Gerd Kortemeyer # 6/1,8/17,8/18 Gerd Kortemeyer +# 7/18 Jeremy Bowers package Apache::lonhomework; use strict; @@ -43,6 +44,7 @@ use Apache::hint(); use Apache::outputtags(); use Apache::Constants qw(:common); use HTML::Entities(); +use Apache::loncommon; #use Time::HiRes qw( gettimeofday tv_interval ); BEGIN { @@ -80,7 +82,11 @@ sub get_target { } } elsif ( $ENV{'form.problemmode'} eq 'Edit' ) { if ( $ENV{'form.submitted'} eq 'edit' ) { - return ('modified','edit'); + if ( $ENV{'form.submit'} eq 'Submit Changes and View' ) { + return ('modified','web','answer'); + } else { + return ('modified','edit'); + } } else { return ('edit'); } @@ -192,21 +198,29 @@ sub check_access { sub showhash { my (%hash) = @_; + &showhashsubset(\%hash,''); + return ''; +} + +sub showhashsubset { + my ($hash,$keyre) = @_; my $resultkey; - foreach $resultkey (sort keys %hash) { - if (ref($hash{$resultkey})) { - if ($hash{$resultkey} =~ /ARRAY/ ) { - my $string="$resultkey ---- ("; - foreach my $elm (@{ $hash{$resultkey} }) { - $string.="$elm,"; + foreach $resultkey (sort keys %$hash) { + if ($resultkey =~ /$keyre/) { + if (ref($$hash{$resultkey})) { + if ($$hash{$resultkey} =~ /ARRAY/ ) { + my $string="$resultkey ---- ("; + foreach my $elm (@{ $$hash{$resultkey} }) { + $string.="$elm,"; + } + chop($string); + &Apache::lonxml::debug("$string)"); + } else { + &Apache::lonxml::debug("$resultkey ---- $$hash{$resultkey}"); } - chop($string); - &Apache::lonxml::debug("$string)"); } else { - &Apache::lonxml::debug("$resultkey ---- $hash{$resultkey}"); + &Apache::lonxml::debug("$resultkey ---- $$hash{$resultkey}"); } - } else { - &Apache::lonxml::debug("$resultkey ---- $hash{$resultkey}"); } } &Apache::lonxml::debug("\n
restored values^
\n"); @@ -296,22 +310,32 @@ sub editxmlmode { \$ENV{'form.editxmltext'}); if (!$error) { $problem=&Apache::lonnet::getfile($file); } } - my ($rows,$cols) = &Apache::edit::textarea_sizes(\$problem); - if ($cols > 80) { $cols = 80; } - $result.=' + &Apache::lonhomework::showhashsubset(\%ENV,'^form'); + if ( $ENV{'form.submit'} eq 'Submit Changes and View' ) { + &Apache::lonhomework::showhashsubset(\%ENV,'^form'); + $ENV{'form.problemmode'}='View'; + &renderpage($request,$file); + } else { + my ($rows,$cols) = &Apache::edit::textarea_sizes(\$problem); + my $xml_help = Apache::loncommon::help_open_topic("Problem_Editor_XML_Index"); + if ($cols > 80) { $cols = 80; } + $result.='
- +
+
+ ' . $xml_help . ' Problem Help
'; - $request->print($result); + $request->print($result); + } return ''; } @@ -344,6 +368,7 @@ sub renderpage { #if ($Apache::lonhomework::viewgrades eq 'F') {&createmenu('grade',$request); } } #if ($target eq 'grade') { &showhash(%Apache::lonhomework::history); } + #if ($target eq 'web') { &showhash(%ENV); } my $default=&Apache::lonnet::getfile('/home/httpd/html/res/adm/includes/default_homework.lcpm'); if ($default == -1) { @@ -471,8 +496,10 @@ sub handler { &Apache::lonxml::debug("Permissions:$Apache::lonhomework::browse:$Apache::lonhomework::viewgrades:"); # some times multiple problemmodes are submitted, need to select # the last one + &Apache::lonxml::debug("Problem Mode ".$ENV{'form.problemmode'}); if ( defined($ENV{'form.problemmode'}) && ref($ENV{'form.problemmode'}) ) { + &Apache::lonxml::debug("Problem Mode ".join(",",@$ENV{'form.problemmode'})); my $mode=$ENV{'form.problemmode'}->[-1]; undef $ENV{'form.problemmode'}; $ENV{'form.problemmode'}=$mode;