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

version 1.27, 2003/05/02 19:10:43 version 1.32, 2003/09/08 18:36:39
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='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 109  sub end_displaytitle { Line 120  sub end_displaytitle {
     return @result;      return @result;
 }  }
   
   sub multipart {
       my ($uri)=@_;
       if (!defined($uri)) { $uri=$ENV{'request.uri'}; }
       my @parts;
       my $metadata = &Apache::lonnet::metadata($uri,'packages');
       foreach (split(/\,/,$metadata)) {
    if ($_ =~ /^part_(.*)$/) {
       my $part = $1;
       if ($part ne '0') { push(@parts,$part); }
    }
       }
       return @parts;
   }
   
 sub start_displayweight {  sub start_displayweight {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
     my $result;      my $result;
Line 128  sub start_displayweight { Line 153  sub start_displayweight {
     if (!defined($weight) || ($weight eq '')) { $weight=1; }      if (!defined($weight) || ($weight eq '')) { $weight=1; }
     $result.=$weight;      $result.=$weight;
  } else {   } else {
     my $metadata = &Apache::lonnet::metadata($ENV{'request.uri'},      my @parts=&multipart($ENV{'request.uri'});
      'packages');  
     &Apache::lonxml::debug("metadata for $ENV{'request.uri'} is $metadata");  
     my $weight;      my $weight;
     foreach (split(/\,/,$metadata)) {      if (@parts) {
  if ($_ =~ /^part_(.*)$/) {          foreach my $part (@parts) {
     my $part = $1;  
     my $pweight=&Apache::lonnet::EXT("resource.$part.weight");      my $pweight=&Apache::lonnet::EXT("resource.$part.weight");
     if (!defined($pweight) || ($pweight eq '')) { $pweight=1; }      if (!defined($pweight) || ($pweight eq '')) { $pweight=1; }
     $weight+=$pweight;      $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.27  
changed lines
  Added in v.1.32


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