Diff for /loncom/homework/lonhomework.pm between versions 1.27 and 1.31

version 1.27, 2001/01/06 16:35:36 version 1.31, 2001/01/11 15:20:58
Line 12  use Apache::inputtags; Line 12  use Apache::inputtags;
 use Apache::structuretags;  use Apache::structuretags;
 use Apache::response;  use Apache::response;
 use Apache::hint;  use Apache::hint;
   use Apache::outputtags;
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
   
 sub get_target {  sub get_target {
Line 29  sub get_target { Line 30  sub get_target {
  return ('web');   return ('web');
       }        }
     } else {      } else {
       return ('edit');        #return ('edit');
         #edit is currently broken
         return ('web');
     }      }
   }    }
   return ();    return ();
Line 72  sub check_date { Line 75  sub check_date {
     &Apache::lonxml::debug("found :$date: for :$temp:");      &Apache::lonxml::debug("found :$date: for :$temp:");
     if ($date eq '') {      if ($date eq '') {
       $date = "an unknown date"; $passed = 0;        $date = "an unknown date"; $passed = 0;
       } elsif ($date eq 'con_lost') {
         $date = "an indeterminate date"; $passed = 0;
     } else {      } else {
       if (time < $date) { $passed = 0; } else { $passed = 1; }        if (time < $date) { $passed = 0; } else { $passed = 1; }
       $date = localtime $date;        $date = localtime $date;
Line 159  sub handler { Line 164  sub handler {
       &Apache::lonxml::error("<b>Unable to find <i>default_homework.lcpm</i></b>");        &Apache::lonxml::error("<b>Unable to find <i>default_homework.lcpm</i></b>");
       $default='';        $default='';
     }      }
     if ( $target eq 'grade') {   
       $Apache::lonxml::textredirection = 0;   
     } else {  
       $Apache::lonxml::textredirection = 1;   
     }  
     $result = &Apache::lonxml::xmlparse($target, $problem,      $result = &Apache::lonxml::xmlparse($target, $problem,
  $default.&setup_vars($target),%mystyle);   $default.&setup_vars($target),%mystyle);
   

Removed from v.1.27  
changed lines
  Added in v.1.31


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