Diff for /loncom/homework/outputtags.pm between versions 1.25 and 1.27

version 1.25, 2003/01/13 21:23:06 version 1.27, 2003/05/02 19:10:43
Line 113  sub start_displayweight { Line 113  sub start_displayweight {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
     my $result;      my $result;
     if (exists($Apache::outputtags::showonce{'displayweight'})) {      if (exists($Apache::outputtags::showonce{'displayweight'})) {
  return '';   if(grep(/^\Q$Apache::inputtags::part\E$/,
     } else {   @{$Apache::outputtags::showonce{'displayweight'}})) {
  $Apache::outputtags::showonce{'displayweight'}=1;      return '';
    }
     }      }
       push(@{$Apache::outputtags::showonce{'displayweight'}},
    $Apache::inputtags::part);
     my $status=$Apache::inputtags::status['-1'];      my $status=$Apache::inputtags::status['-1'];
     if ($target eq 'web' || $target eq 'tex') {      if ($target eq 'web' || $target eq 'tex') {
  my $id = $Apache::inputtags::part;   my $id = $Apache::inputtags::part;
  my $weight = &Apache::lonnet::EXT("resource.$id.weight");   if ($id ne '0') {
  &Apache::lonxml::debug("duedatebox found $weight for $id");      my $weight = &Apache::lonnet::EXT("resource.$id.weight");
  if (!defined($weight) || ($weight eq '')) { $weight=1; }      if (!defined($weight) || ($weight eq '')) { $weight=1; }
  $result.=$weight;      $result.=$weight;
    } else {
       my $metadata = &Apache::lonnet::metadata($ENV{'request.uri'},
        'packages');
       &Apache::lonxml::debug("metadata for $ENV{'request.uri'} is $metadata");
       my $weight;
       foreach (split(/\,/,$metadata)) {
    if ($_ =~ /^part_(.*)$/) {
       my $part = $1;
       my $pweight=&Apache::lonnet::EXT("resource.$part.weight");
       if (!defined($pweight) || ($pweight eq '')) { $pweight=1; }
       $weight+=$pweight;
    }
       }
       $result=$weight;
    }
     } 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>';

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


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