--- loncom/homework/lonsimpleproblemedit.pm 2010/06/06 02:40:35 1.32 +++ loncom/homework/lonsimpleproblemedit.pm 2014/12/15 00:50:20 1.37 @@ -1,7 +1,7 @@ # The LearningOnline Network # Simple Problem Parameter Setting "Editor" # -# $Id: lonsimpleproblemedit.pm,v 1.32 2010/06/06 02:40:35 raeburn Exp $ +# $Id: lonsimpleproblemedit.pm,v 1.37 2014/12/15 00:50:20 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -205,7 +205,7 @@ sub handler { my $weightprefix=$env{'request.course.id'}.'.'.$symb.'.'; # ---------------------------------------------------------- Anything to store? - + my $storeresult; if (($symb) && (defined($env{'form.questiontype'}))) { my %storecontent=(); undef %storecontent; @@ -218,11 +218,11 @@ sub handler { $env{'form.newopt'}=~s/\'/\\\'/g; $curoptions{$env{'form.newopt'}}=$env{'form.newopt'}; } - $env{'form.options'}="('".join("','",keys %curoptions)."')"; + $env{'form.options'}="('".join("','",keys(%curoptions))."')"; } $env{'form.hiddenparts'}='!'.$env{'form.questiontype'}; - foreach (keys %env) { - if ($_=~/^form\.(\w+)$/) { + foreach my $envkey (keys(%env)) { + if ($envkey=~/^form\.(\w+)$/) { my $parm=$1; $storecontent{$prefix.$parm}=$env{'form.'.$parm}; $storecontent{$prefix.$parm}=~s/^\s+//s; @@ -247,7 +247,17 @@ sub handler { &Apache::lonnet::devalidatecourseresdata( $env{'course.'.$env{'request.course.id'}.'.num'}, $env{'course.'.$env{'request.course.id'}.'.domain'}); - + if ($reply eq 'ok') { + if ($env{'form.forceview'}) { + my $dest = &get_parent_uri($symb); + if ($dest) { + $r->internal_redirect($dest); + return OK; + } + } + } else { + $storeresult = $reply; + } } # ------------------------------------------------------------------- Read Data @@ -256,21 +266,34 @@ sub handler { $env{'course.'.$env{'request.course.id'}.'.num'}, $env{'request.course.id'}.'.'.$symb); + my $js = <<"ENDJS"; + + + +ENDJS + # ------------------------------------------------------------ Print the screen my $spell_header=&Apache::lonhtmlcommon::spellheader(); $r->print(&Apache::loncommon::start_page('Simple Problem Editor', - $spell_header)); + $spell_header.$js)); if ($symb) { my $title='

'.&Apache::lonnet::gettitle($symb).'

'; - my $displaylink = &get_parent_uri($symb); - if ($displaylink ne '') { - my $functions=&Apache::lonhtmlcommon::start_funclist() - .&Apache::lonhtmlcommon::add_item_funclist( - '' - .&mt('Student View').'') - .&Apache::lonhtmlcommon::end_funclist(); - $r->print(&Apache::loncommon::head_subbox($functions) - .$title); + if (&get_parent_uri($symb)) { + $r->print($title); + if ($storeresult) { + $r->print('

'.&mt('An error: [_1] occurred saving your changes',$storeresult).'

'); + } } else { $r->print($title .'

' @@ -292,7 +315,7 @@ sub handler { .&rawrendering($symb) .'' ); - $r->print('

'); + $r->print(''); # Question Type my %questiontypes=( 'radio' => '1 out of N multiple choice (radio button)', @@ -314,7 +337,10 @@ sub handler { ); $r->print( '

' + .'' .'' + .(' ' x3) + .'' .'

' ); # Script @@ -414,13 +440,16 @@ sub handler { } # Store Button $r->print( - '
'); + ''. + (' ' x3). + ''. + ''); } else { $r->print(&mt('Could not identify problem.')); } $r->print(&Apache::loncommon::end_page()); return OK; -} +} 1; __END__