Diff for /loncom/interface/printout.pl between versions 1.110 and 1.111

version 1.110, 2006/09/14 17:04:42 version 1.111, 2006/10/30 11:40:49
Line 29  use lib '/home/httpd/lib/perl'; Line 29  use lib '/home/httpd/lib/perl';
 use LONCAPA::loncgi;  use LONCAPA::loncgi;
 use File::Path;  use File::Path;
 use File::Basename;  use File::Basename;
   use File::Copy;
 use IO::File;  use IO::File;
 use Image::Magick;  use Image::Magick;
 use Apache::lonhtmlcommon();  use Apache::lonhtmlcommon();
Line 210  print "<a href=\"$backref\"><b>Return</b Line 211  print "<a href=\"$backref\"><b>Return</b
       $not_eps=~s|\/\.\/|\/|g;        $not_eps=~s|\/\.\/|\/|g;
       my $eps_f = $not_eps;        my $eps_f = $not_eps;
       # $eps_f =~ s/\.[^.]*$/\.eps/i;        # $eps_f =~ s/\.[^.]*$/\.eps/i;
       $eps_f .= '.eps'; # Just append the eps ext.  
       if ($eps_f=~/\/home\/([^\/]+)\/public_html\//) {        if ($eps_f=~/\/home\/([^\/]+)\/public_html\//) {
                   $eps_f=~s/\/home\/([^\/]+)\/public_html/$1/;                    $eps_f=~s/\/home\/([^\/]+)\/public_html/$1/;
   $eps_f = '/home/httpd/prtspool/'.$eps_f;    $eps_f = '/home/httpd/prtspool/'.$eps_f;
Line 222  print "<a href=\"$backref\"><b>Return</b Line 222  print "<a href=\"$backref\"><b>Return</b
   $eps_f = '/home/httpd/prtspool/'.$1.'/'.$2;    $eps_f = '/home/httpd/prtspool/'.$1.'/'.$2;
       }        }
       $eps_f  =~ s/ /\_/g; # Spaces are problematic for system commands and LaTeX.        $eps_f  =~ s/ /\_/g; # Spaces are problematic for system commands and LaTeX.
       my $path=$eps_f;        # 
       $path =~ s/\/([^\/]+)\.eps$//;        # If the file is already an .eps or .ps file,
       # print "Final file path: $path "; # Debugging        # We really just need to copy it from where it was to prtspool
       File::Path::mkpath($path,0,0777);        # but with the spaces substituted to _'s.
       $not_eps =~ s/^\s+//;        #
       $not_eps =~ s/\s+$//;        my ($path, $nsname, $sext) = fileparse($eps_f, qr/\.(ps|eps)/i);
       $not_eps =~ s/ /\\ /g;        if ($sext =~/ps$/i) {
       if ( exists($done_conversion{$not_eps})) { next; }    File::Path::mkpath($path,0,0777);
       if ($advanced_role) {    $not_eps =~ s/^\s+//;
   my $prettyname=$not_eps;    $not_eps =~ s/\s+$//;
   $prettyname=~s|/home/([^/]+)/public_html|/priv/$1|;    $not_eps =~ s/ /\__/g;
   $prettyname=~s|$Apache::lonnet::perlvar{'lonDocRoot'}/|/|;    File::Copy("$not_eps", "$eps_f"); 
   &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,        } else {
  'Converting to EPS '.$prettyname);        
       }    $eps_f .= '.eps'; # Just append the eps ext.
       $done_conversion{$not_eps}=1;    my $path=$eps_f;
       # print "Converting $not_eps -> $eps_f"; # Debugging    $path =~ s/\/([^\/]+)\.eps$//;
       system("convert $not_eps $eps_f");    # print "Final file path: $path "; # Debugging
               # check is eps exist in prtspool    File::Path::mkpath($path,0,0777);
               if (not -e $eps_f) {    $not_eps =~ s/^\s+//;
   # converting an animated gif creates either:    $not_eps =~ s/\s+$//;
                   # anim.gif.eps.0    $not_eps =~ s/ /\\ /g;
                   # or    if ( exists($done_conversion{$not_eps})) { next; }
                   # anim.gif-0.eps    if ($advanced_role) {
   for (my $i=0;$i<10000;$i++) {        my $prettyname=$not_eps;
       if (-e $eps_f.'.'.$i) {        $prettyname=~s|/home/([^/]+)/public_html|/priv/$1|;
   rename($eps_f.'.'.$i, $eps_f);        $prettyname=~s|$Apache::lonnet::perlvar{'lonDocRoot'}/|/|;
   last;        &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
       }      'Converting to EPS '.$prettyname);
       my $anim_eps = $eps_f;    }
       $anim_eps =~ s/(\.[^.]*)\.eps$/$1-$i\.eps/i;    $done_conversion{$not_eps}=1;
       if (-e $anim_eps) {    # print "Converting $not_eps -> $eps_f"; # Debugging
   rename($anim_eps, $eps_f);    system("convert $not_eps $eps_f");
   last;    # check is eps exist in prtspool
     if (not -e $eps_f) {
         # converting an animated gif creates either:
         # anim.gif.eps.0
         # or
         # anim.gif-0.eps
         for (my $i=0;$i<10000;$i++) {
     if (-e $eps_f.'.'.$i) {
         rename($eps_f.'.'.$i, $eps_f);
         last;
     }
     my $anim_eps = $eps_f;
     $anim_eps =~ s/(\.[^.]*)\.eps$/$1-$i\.eps/i;
     if (-e $anim_eps) {
         rename($anim_eps, $eps_f);
         last;
     }
       }        }
   }    }
       }    
       # imagemagick 6.2.0-6.2.7 fails to properly handle    # imagemagick 6.2.0-6.2.7 fails to properly handle
               # convert anim.gif anim.gif.eps    # convert anim.gif anim.gif.eps
               # it creates anim.eps instead.     # it creates anim.eps instead. 
               if (not -e $eps_f) {    if (not -e $eps_f) {
   my $eps_f2 = $eps_f;        my $eps_f2 = $eps_f;
   $eps_f2 =~ s/\.[^.]*\.eps$/\.eps/i;        $eps_f2 =~ s/\.[^.]*\.eps$/\.eps/i;
   if(-e $eps_f2) {        if(-e $eps_f2) {
       rename($eps_f2,$eps_f);    rename($eps_f2,$eps_f);
         }
   }    }
       }        }
   

Removed from v.1.110  
changed lines
  Added in v.1.111


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