Diff for /loncom/homework/hint.pm between versions 1.52 and 1.53

version 1.52, 2004/03/16 22:00:51 version 1.53, 2004/03/16 22:24:31
Line 29 Line 29
 package Apache::hinttags;   package Apache::hinttags; 
   
 use strict;  use strict;
 use Apache::lonnet;  use Apache::lonnet();
 use capa;  use capa;
   use Apache::lonlocal;
   
 BEGIN {  BEGIN {
     &Apache::lonxml::register('Apache::hinttags',('hintgroup','hintpart','numericalhint','stringhint','formulahint','optionhint','radiobuttonhint'));      &Apache::lonxml::register('Apache::hinttags',('hintgroup','hintpart','numericalhint','stringhint','formulahint','optionhint','radiobuttonhint'));
Line 49  sub start_hintgroup { Line 50  sub start_hintgroup {
  if ( $numtries eq '') { $numtries = 0; }   if ( $numtries eq '') { $numtries = 0; }
  my $hinttries=&Apache::response::get_response_param($id,"hinttries",1);   my $hinttries=&Apache::response::get_response_param($id,"hinttries",1);
  &Apache::lonxml::debug("found :$id:$numtries:$hinttries:");   &Apache::lonxml::debug("found :$id:$numtries:$hinttries:");
  my $gradestatus=$Apache::lonhomework::history{"resource.$id.solved"};   my $gradestatus=
  if ( $numtries < $hinttries || $gradestatus =~ /^correct/) {      $Apache::lonhomework::history{"resource.$id.solved"};
    my $showoncorrect=lc(&Apache::lonxml::get_param('showoncorrect',$parstack,$safeeval));
    &Apache::lonxml::debug("onc orrect $showoncorrect, $gradestatus");
    if ( ($showoncorrect ne 'yes' && $gradestatus =~ /^correct/) ||
        ( $numtries < $hinttries) ) {
       &Apache::lonxml::debug("Grabbin all");
     &Apache::lonxml::get_all_text("/hintgroup",$parser);      &Apache::lonxml::get_all_text("/hintgroup",$parser);
  }   }
  &Apache::lonxml::startredirection;   &Apache::lonxml::startredirection;
     } elsif ($target eq 'tex') {      } elsif ($target eq 'tex') {
  $result .= '\keephidden{';   $result .= '\keephidden{';
       } elsif ($target eq 'edit') {
    $result.=&Apache::edit::tag_start($target,$token);
    $result.=&Apache::edit::select_arg('Show hint when problem Correct:','showoncorrect',[['no',&mt('No')],['yes',&mt('Yes')]]);
    $result.=&Apache::edit::end_row().&Apache::edit::start_spanning_row();
       } elsif ($target eq 'modified') {
    my $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,'showoncorrect');
          if ($constructtag) {
              $result =&Apache::edit::rebuild_tag($token);
              $result.=&Apache::edit::handle_insert();
          }
     }      }
     @Apache::hint::which=();      @Apache::hint::which=();
     return $result;      return $result;

Removed from v.1.52  
changed lines
  Added in v.1.53


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