Diff for /loncom/interface/lonhtmlcommon.pm between versions 1.33 and 1.34

version 1.33, 2003/10/17 19:56:13 version 1.34, 2003/12/22 19:30:25
Line 835  sub Close_PrgWin { Line 835  sub Close_PrgWin {
     $r->rflush();       $r->rflush(); 
 }  }
   
   
   # ------------------------------------------------------- Puts directory header
   
   sub crumbs {
       my ($uri,$target,$prefix)=@_;
       my $output='<br /><tt><b><font size="+2">'.$prefix.'/';
       my $path=$prefix.'/';
       foreach (split('/',$uri)) {
    unless ($_) { next; }
    $path.=$_.'/';
    $output.='<a href="'.$path.'"'.($target?' target="'.$target.'"':'').'>'.$_.'</a>/';
       }
       return $output.'</font></b></tt><br />';
   }
   
   
 1;  1;
   
 __END__  __END__

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


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