Diff for /loncom/cgi/plot.gif between versions 1.15 and 1.16

version 1.15, 2016/08/19 05:15:21 version 1.16, 2016/10/12 18:50:02
Line 25 Line 25
 # http://www.lon-capa.org/  # http://www.lon-capa.org/
 #  #
 use strict;  use strict;
 use bytes;  
   
 $|=1;  $|=1;
   
Line 49  if ($output eq '') { Line 48  if ($output eq '') {
   
 if ($output eq 'gif' || $output eq 'png') {  if ($output eq 'gif' || $output eq 'png') {
     open(my $plot, "gnuplot $filename |");      open(my $plot, "gnuplot $filename |");
     my $image_content= '';  
     while (my $line = <$plot>) {  
         $image_content .= $line;  
     }  
     my $length = bytes::length($image_content);  
     print <<"END";      print <<"END";
 Content-type: image/$output  Content-type: image/$output
 Content-length: $length  
   
 $image_content  
 END  END
       while (my $line = <$plot>) {
    print($line);
       }
   
 } elsif ($output eq 'eps') {  } elsif ($output eq 'eps') {
     print <<"END";      print <<"END";

Removed from v.1.15  
changed lines
  Added in v.1.16


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