Diff for /loncom/homework/outputtags.pm between versions 1.29 and 1.33

version 1.29, 2003/05/03 21:09:03 version 1.33, 2003/10/07 17:52:29
Line 50  sub start_displayduedate { Line 50  sub start_displayduedate {
     }      }
     my $status=$Apache::inputtags::status['-1'];      my $status=$Apache::inputtags::status['-1'];
     &Apache::lonxml::debug("got a $status in duedatebox");      &Apache::lonxml::debug("got a $status in duedatebox");
       my $style = &Apache::lonxml::get_param('style',$parstack,$safeeval);
     if (($status =~ /CAN.*_ANSWER/) && ($target eq 'web')) {      if (($status =~ /CAN.*_ANSWER/) && ($target eq 'web')) {
 # my $format = &Apache::lonxml::get_param('format',$parstack,$safeeval);  # my $format = &Apache::lonxml::get_param('format',$parstack,$safeeval);
 # if ($format eq '') {  # if ($format eq '') {
Line 59  sub start_displayduedate { Line 60  sub start_displayduedate {
  my $id = $Apache::inputtags::part;   my $id = $Apache::inputtags::part;
  my $date = &Apache::lonnet::EXT("resource.$id.duedate");   my $date = &Apache::lonnet::EXT("resource.$id.duedate");
  &Apache::lonxml::debug("duedatebox found $date for $id");   &Apache::lonxml::debug("duedatebox found $date for $id");
  $result ='<table border="on"><tr><td>Due '.   if (lc($style) !~ 'plain') { 
     &Apache::lonnavmaps::timeToHumanString($date).      $result ='<table border="on"><tr><td>Due '.
    &Apache::lonnavmaps::timeToHumanString($date).
  '</td></tr></table>';   '</td></tr></table>';
    } else {
       $result=&mt('Due').' '.&Apache::lonnavmaps::timeToHumanString($date);
    }
 #        } else {  #        } else {
 #    $result ='<table border="on"><tr><td>No due date set.</td></tr></table>';  #    $result ='<table border="on"><tr><td>No due date set.</td></tr></table>';
 # }  # }
Line 88  sub start_displaytitle { Line 93  sub start_displaytitle {
     } else {      } else {
  $Apache::outputtags::showonce{'displayduetitle'}=1;   $Apache::outputtags::showonce{'displayduetitle'}=1;
     }      }
       my $name=&Apache::structuretags::get_resource_name();
       my $style = &Apache::lonxml::get_param('style',$parstack,$safeeval);
     if ($target eq 'web') {      if ($target eq 'web') {
  $result="<h1>$Apache::lonhomework::name</h1>";   $result=$name;
    if (lc($style) !~ 'plain') { $result="<h1>$name</h1>"; }
     } elsif ($target eq 'edit') {      } elsif ($target eq 'edit') {
  $result=&Apache::edit::tag_start($target,$token);   $result=&Apache::edit::tag_start($target,$token);
  $result.='</td></tr>';   $result.='</td></tr>';
  $result.=&Apache::edit::end_table();   $result.=&Apache::edit::end_table();
     } elsif ($target eq 'tex' and $Apache::lonhomework::type ne 'exam') {      } elsif ($target eq 'tex' and $Apache::lonhomework::type ne 'exam') {
  $Apache::lonhomework::name=~s/%/\%/g;   $name=&Apache::lonxml::latex_special_symbols($name);
  $Apache::lonhomework::name=~s/&/\&/g;   if (lc($style) !~ 'plain') { 
  $result='\vskip 0 mm\noindent\textbf{'.$Apache::lonhomework::name.'}\vskip 0 mm';      $result='\vskip 0 mm\noindent\textbf{'.$name.'}\vskip 0 mm';
    } else {
       $result=$name;
    }
     }      }
     return $result;      return $result;
 }  }
Line 144  sub start_displayweight { Line 155  sub start_displayweight {
  } else {   } else {
     my @parts=&multipart($ENV{'request.uri'});      my @parts=&multipart($ENV{'request.uri'});
     my $weight;      my $weight;
     foreach my $part (@parts) {      if (@parts) {
  my $pweight=&Apache::lonnet::EXT("resource.$part.weight");          foreach my $part (@parts) {
  if (!defined($pweight) || ($pweight eq '')) { $pweight=1; }      my $pweight=&Apache::lonnet::EXT("resource.$part.weight");
  $weight+=$pweight;      if (!defined($pweight) || ($pweight eq '')) { $pweight=1; }
       $weight+=$pweight;
           }
       } else {
    $weight = &Apache::lonnet::EXT("resource.$id.weight");
                   if (!defined($weight) || ($weight eq '')) { $weight=1; }
     }      }
     $result=$weight;      $result=$weight;
  }   }

Removed from v.1.29  
changed lines
  Added in v.1.33


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>
500 Internal Server Error

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.