Annotation of loncom/interface/printout.pl, revision 1.94.2.1

1.1       sakharuk    1: #!/usr/bin/perl
1.37      albertel    2: # CGI-script to run LaTeX, dvips, ps2ps, ps2pdf etc.
                      3: #
                      4: #
                      5: # Copyright Michigan State University Board of Trustees
                      6: #
                      7: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      8: #
                      9: # LON-CAPA is free software; you can redistribute it and/or modify
                     10: # it under the terms of the GNU General Public License as published by
                     11: # the Free Software Foundation; either version 2 of the License, or
                     12: # (at your option) any later version.
                     13: #
                     14: # LON-CAPA is distributed in the hope that it will be useful,
                     15: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     16: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     17: # GNU General Public License for more details.
                     18: #
                     19: # You should have received a copy of the GNU General Public License
                     20: # along with LON-CAPA; if not, write to the Free Software
                     21: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     22: #
                     23: # /home/httpd/html/adm/gpl.txt
                     24: #
                     25: # http://www.lon-capa.org/
                     26: #
                     27: 
1.93      albertel   28: BEGIN {
                     29:     eval "use Apache2::compat();";
                     30: };
1.39      sakharuk   31: use lib '/home/httpd/lib/perl';
1.76      albertel   32: use LONCAPA::loncgi;
1.38      sakharuk   33: use File::Path;
1.88      foxr       34: use File::Basename;
1.6       sakharuk   35: use IO::File;
1.7       sakharuk   36: use Image::Magick;
1.47      sakharuk   37: use Apache::lonhtmlcommon;
1.80      albertel   38: use Apache::lonnet;
1.51      albertel   39: use Apache::loncommon;
                     40: use Apache::lonlocal;
1.77      foxr       41: use Apache::lonmsg;
                     42: use LONCAPA::Enrollment;
1.47      sakharuk   43: 
1.59      albertel   44: use strict;
1.77      foxr       45: 
1.81      foxr       46: 
1.77      foxr       47: #   Determine if a user is operating as a student for this course/domain.
                     48: #Parameters:
1.92      albertel   49: #    none
1.77      foxr       50: #Implicit:
                     51: #    $env{request.role} contains the role under which this user operated this
                     52: #                       this request.
                     53: sub is_student {
1.92      albertel   54:     return ($env{'request.role'}=~/^st\./);
1.77      foxr       55: }
                     56: 
                     57: #
                     58: #   Debugging:  Dump the environment for debugging.
                     59: #
                     60: sub dumpenv  {
1.84      albertel   61:     print "<br />-------------------<br />";
1.77      foxr       62:     foreach my $key (sort (keys %env)) {
1.84      albertel   63: 	print "<br />$key -> $env{$key}";
1.77      foxr       64:     }
1.84      albertel   65:     print "<br />-------------------<br />";
1.77      foxr       66: }
                     67: 
                     68: #
                     69: #   This sub sends a message to the appropriate person if there was an error
                     70: #   rendering the latex  At present, there's only one case to consider:
                     71: #   a student printing inside a course results in messages to the course coordinator.
                     72: #Parmaeters:
                     73: #    identifier -  The unique identifier of this cgi request.
1.81      foxr       74: #    badresource-  Filepath to most likely failing 
1.77      foxr       75: #    logfile    -  The contents of the log file (included in the message).
                     76: #    texfile    -  reference to an array containing the LaTeX input file
                     77: #                  (included in the message).
                     78: #Implicit inputs:
                     79: #   From the environment:
                     80: #       cgi.$identifier.user     - User doing the printing.
                     81: #       cgi.$identifier.domain   - Domain the user is logged in on with printing.
                     82: #       cgi.$identifier.courseid - Id of the course (if this is a course).
                     83: #       cgi.$identifier.coursedom- Domain in which course was constituted.
                     84: #       cgi.$identifier.resources - List of resource URL's for which the print
                     85: #                                  was attempted.
                     86: # 
                     87: sub send_error_mail {
1.81      foxr       88:     my ($identifier, $badresource, $logfile, $texfile) = @_;
1.77      foxr       89:     my $user     = $env{"cgi.$identifier.user"};
                     90:     my $domain   = $env{"cgi.$identifier.domain"};
                     91:     my $courseid = $env{"cgi.$identifier.courseid"};
                     92:     my $coursedom= $env{"cgi.$identifier.coursedom"};
                     93:     my $resources= $env{"cgi.$identifier.resources"};
                     94: 
1.81      foxr       95:     #  resource file->URL
                     96:     #
                     97:     my $badurl = &Apache::lonnet::declutter($badresource);
                     98: 
                     99:     # &dumpenv();
1.77      foxr      100: 
                    101: 
                    102: 
                    103:     #  Only continue if there is a user, domain, courseid, course domain
                    104:     #  and resources:
                    105: 
                    106:     if(defined($user)       && defined($domain) && defined($courseid) &&
                    107:        defined($coursedom)  && defined($resources) ){
                    108: 	   
                    109: 	#  Only mail if the conditions are ripe for it:
                    110: 	#  The user is a student in the course:
                    111: 	#
                    112: 	
1.92      albertel  113: 	if (&is_student()) {
1.77      foxr      114: 	    # build the subject and message body:
1.84      albertel  115: 	    # print "sending message to course coordinators.<br />";
1.81      foxr      116: 
                    117: 	    # Todo: Convert badurl into a url from file path:
                    118: 
                    119: 	    my $subject  = "Error [$badurl] Print failed for $user".'@'.$domain;
1.77      foxr      120: 	    my $message .= "Print failed to render LaTeX for $user".'@'."$domain\n";
                    121: 	    $message    .= "  User was attempting to print: \n";
1.91      albertel  122: 	    foreach my $resource (split(/:/,$resources)) {
                    123: 		$message    .= "       $resource\n";
                    124: 	    }
1.77      foxr      125: 	    $message    .= "--------------------LaTeX logfile:------------ \n";
                    126: 	    $message    .= $logfile;
                    127: 	    $message    .= "-----------------LaTeX source file: ------------\n";
                    128: 	    
                    129: 	    foreach my $line (@$texfile) {
                    130: 		$message .= "$line\n";
                    131: 	    }
1.81      foxr      132: 	    my (undef, %receivers) = &Apache::lonfeedback::decide_receiver(undef, 0,
                    133: 									  1,1,1);
1.84      albertel  134: 	    # print "<br /> sending...section:  $env{'request.course.sec'}";
1.81      foxr      135: 	    foreach my $dest (keys %receivers) {
1.84      albertel  136: 		# print "<br /> dest is $dest";
1.77      foxr      137: 		my @destinfo = split(/:/,$dest);
                    138: 		my $user = $destinfo[0];
                    139: 		my $dom  = $destinfo[1];
                    140: 
                    141: 		&Apache::lonmsg::user_normal_msg($user, $dom,
                    142: 						 $subject, $message);
                    143: 		
                    144: 		# No point in looking at the return status as there's no good
                    145: 		# error action I can think of right now (log maybe?).
                    146: 	    }
                    147: 	}
                    148:     }
                    149: }
                    150: 
1.49      albertel  151: $|=1;
1.39      sakharuk  152: if (! &LONCAPA::loncgi::check_cookie_and_load_env()) {
                    153:     print <<END;
                    154: Content-type: text/html
                    155: 
                    156: <html>
                    157: <head><title>Bad Cookie</title></head>
                    158: <body>
1.40      sakharuk  159: Your cookie information is incorrect.
1.39      sakharuk  160: </body>
                    161: </html>
                    162: END
                    163:     return;
                    164: }
1.51      albertel  165:  &Apache::lonlocal::get_language_handle();
                    166:  &Apache::loncommon::content_type(undef,'text/html');
                    167:  my $bodytag=&Apache::loncommon::bodytag('Creating PDF','','');
                    168:  print $bodytag;
1.39      sakharuk  169: 
1.40      sakharuk  170:   my $identifier = $ENV{'QUERY_STRING'};
1.76      albertel  171:   my $texfile = $env{'cgi.'.$identifier.'.file'};
                    172:   my $laystyle = $env{'cgi.'.$identifier.'.layout'};
                    173:   my $numberofcolumns = $env{'cgi.'.$identifier.'.numcol'};
                    174:   my $paper = $env{'cgi.'.$identifier.'.paper'};
                    175:   my $selectionmade = $env{'cgi.'.$identifier.'.selection'};
1.79      albertel  176:   my $tableofcontents = $env{'cgi.'.$identifier.'.tableofcontents'};
                    177:   my $tableofindex = $env{'cgi.'.$identifier.'.tableofindex'};
                    178:   my $advanced_role = $env{'cgi.'.$identifier.'.role'};
                    179:   my $number_of_files = $env{'cgi.'.$identifier.'.numberoffiles'}+1;
                    180:   my $student_names = $env{'cgi.'.$identifier.'.studentnames'};
                    181:   my $backref = &Apache::lonnet::unescape($env{'cgi.'.$identifier.'.backref'});
1.43      sakharuk  182: 
1.49      albertel  183:   
1.44      sakharuk  184:   my @names_pack=();
                    185:   if ($student_names=~/_END_/) {  
                    186:       @names_pack=split(/_ENDPERSON_/,$student_names);
                    187:   }
1.39      sakharuk  188: 
1.94      albertel  189: print "<a href=\"$backref\"><b>Return</b></a> to last resource.<br /><br />";
                    190: 
1.14      sakharuk  191:   my $figfile = $texfile;
                    192:   $figfile =~ s/^([^\.]+printout)[^t]+\.tex/$1\.dat/;
                    193:   my $duefile = $texfile;
                    194:   $duefile =~ s/^([^\.]+printout)[^t]+\.tex/$1\.due/;
                    195:   #do we have figures?
1.73      foxr      196:   # print "Figure file: $figfile\n";
1.14      sakharuk  197:   if (-e $figfile) {
1.73      foxr      198:       # print "$figfile exists\n";
1.42      albertel  199:       my %done_conversion;
1.69      matthew   200:       my $temporary_file=IO::File->new($figfile) || die "Couldn't open fig file $figfile for reading: $!\n";
1.14      sakharuk  201:       my @content_of_file = <$temporary_file>;
                    202:       close $temporary_file;  
                    203:       my $noteps;
1.49      albertel  204:       my %prog_state;
1.92      albertel  205:       if ($advanced_role) { %prog_state=&Apache::lonhtmlcommon::Create_PrgWin('','Coverting Images to EPS','Picture Conversion Status',$#content_of_file,'inline','80');  }
1.94      albertel  206:       print('<br />');
1.59      albertel  207:       foreach my $not_eps (@content_of_file) {
1.49      albertel  208: 	  chomp($not_eps);
1.14      sakharuk  209: 	  if ($not_eps ne '') {
1.73      foxr      210: 	      # print "Converting $not_eps"; # Debugging.
1.44      sakharuk  211:               my $status_statement='EPS picture for '.$not_eps;
1.73      foxr      212: 	      # print "$status_statement\n";
1.41      sakharuk  213: 	      $not_eps=~s|\/\.\/|\/|g;
1.14      sakharuk  214: 	      my $eps_f = $not_eps;
1.85      foxr      215: 	      # $eps_f =~ s/\.[^.]*$/\.eps/i;
                    216: 	      $eps_f .= '.eps';	# Just append the eps ext.
1.41      sakharuk  217: 	      if ($eps_f=~/\/home\/([^\/]+)\/public_html\//) {
                    218:                   $eps_f=~s/\/home\/([^\/]+)\/public_html/$1/;
                    219: 		  $eps_f = '/home/httpd/prtspool/'.$eps_f;
1.58      sakharuk  220: 	      } elsif ($eps_f=~/$Apache::lonnet::perlvar{'lonDocRoot'}\/res\//) {
                    221: 		  $eps_f=~m/$Apache::lonnet::perlvar{'lonDocRoot'}\/res\/(.+)/;
1.41      sakharuk  222: 		  $eps_f = '/home/httpd/prtspool/'.$1;
1.58      sakharuk  223: 	      } elsif ($eps_f=~/$Apache::lonnet::perlvar{'lonUsersDir'}\//) {
1.57      sakharuk  224: 		  $eps_f=~/$Apache::lonnet::perlvar{'lonUsersDir'}\/([^\/]+)\/\w\/\w\/\w\/(.+)/;
1.56      sakharuk  225: 		  $eps_f = '/home/httpd/prtspool/'.$1.'/'.$2;
1.41      sakharuk  226: 	      }
1.74      foxr      227: 	      $eps_f  =~ s/ /\_/g; # Spaces are problematic for system commands and LaTeX.
1.38      sakharuk  228: 	      my $path=$eps_f;
1.74      foxr      229: 	      $path =~ s/\/([^\/]+)\.eps$//;
1.73      foxr      230: 	      # print "Final file path: $path "; # Debugging
1.38      sakharuk  231: 	      File::Path::mkpath($path,0,0777);
1.14      sakharuk  232: 	      $not_eps =~ s/^\s+//;
                    233: 	      $not_eps =~ s/\s+$//;
1.74      foxr      234: 	      $not_eps =~ s/ /\\ /g;
1.72      albertel  235: 	      if ( exists($done_conversion{$not_eps})) { next; }
1.92      albertel  236: 	      if ($advanced_role) {
1.49      albertel  237: 		  my $prettyname=$not_eps;
                    238: 		  $prettyname=~s|/home/([^/]+)/public_html|/priv/$1|;
1.58      sakharuk  239: 		  $prettyname=~s|$Apache::lonnet::perlvar{'lonDocRoot'}/|/|;
1.72      albertel  240: 		  &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,'Converting to EPS '.$prettyname);
                    241: 	      }
1.42      albertel  242: 	      $done_conversion{$not_eps}=1;
1.73      foxr      243: 	      # print "Converting $not_eps -> $eps_f"; # Debugging
1.72      albertel  244: 	      system("convert $not_eps $eps_f");
1.94.2.1! albertel  245:               # check is eps exist in prtspool
        !           246:               if (not -e $eps_f) {
        !           247: 		  # converting an animated gif creates either:
        !           248:                   # anim.gif.eps.0
        !           249:                   # or
        !           250:                   # anim.gif-0.eps
1.20      sakharuk  251: 		  for (my $i=0;$i<10000;$i++) {
                    252: 		      if (-e $eps_f.'.'.$i) {
1.94.2.1! albertel  253: 			  rename($eps_f.'.'.$i, $eps_f);
1.20      sakharuk  254: 			  last;
                    255: 		      }
1.94.2.1! albertel  256: 		      my $anim_eps = $eps_f;
        !           257: 		      $anim_eps =~ s/(\.[^.]*)\.eps$/$1-$i\.eps/i;
        !           258: 		      if (-e $anim_eps) {
        !           259: 			  rename($anim_eps, $eps_f);
        !           260: 			  last;
        !           261: 		      }
        !           262: 		  }
        !           263: 	      }
        !           264: 	      # imagemagick 6.2.0-6.2.7 fails to properly handle
        !           265:               # convert anim.gif anim.gif.eps
        !           266:               # it creates anim.eps instead. 
        !           267:               if (not -e $eps_f) {
        !           268: 		  my $eps_f2 = $eps_f;
        !           269: 		  $eps_f2 =~ s/\.[^.]*\.eps$/\.eps/i;
        !           270: 		  if(-e $eps_f2) {
        !           271: 		      rename($eps_f2,$eps_f);
1.20      sakharuk  272: 		  }
1.94.2.1! albertel  273: 	      }
        !           274: 
1.14      sakharuk  275: 	  }
                    276:       }
1.92      albertel  277:       if ($advanced_role) { 
1.74      foxr      278: 	  &Apache::lonhtmlcommon::Close_PrgWin('',\%prog_state); 
                    279:       }
1.52      albertel  280:       unlink($figfile);
1.14      sakharuk  281:   }
1.43      sakharuk  282:   #print "$texfile\n"; #name of the tex file for debugging only   
                    283:   my @texfile=($texfile);
                    284:   if ($number_of_files>1) {
1.49      albertel  285:       @texfile=();
                    286:       for (my $i=1;$i<=$number_of_files;$i++) {
1.43      sakharuk  287: 	  my $new_texfile=$texfile;
1.86      foxr      288: 	  $new_texfile=~s/\.tex//;
                    289: 	  $new_texfile = sprintf("%s_%03d.tex", $new_texfile,$i);
1.43      sakharuk  290: 	  push @texfile,$new_texfile;
                    291:       } 
                    292:   }
1.49      albertel  293: 
1.44      sakharuk  294: my $ind=-1;
1.49      albertel  295: my %prog_state;
1.92      albertel  296: if ($advanced_role) { %prog_state=&Apache::lonhtmlcommon::Create_PrgWin('','Print Status','Class Print Status',$number_of_files,'inline','80'); }
1.61      albertel  297: print "<br />";
1.88      foxr      298: my $num_files = @texfile;
1.43      sakharuk  299: foreach $texfile (@texfile) {
1.49      albertel  300:   my $status_statement='';
                    301:   my $link_text='download PDF';
                    302:   $ind++;
                    303:   my @stud_info=split(/_END_/,$names_pack[$ind]);
                    304:   my @tempo_array=split(/:/,$stud_info[0]);
                    305:   my $name;
1.88      foxr      306:   my $name_range='';
1.49      albertel  307:   if ($tempo_array[3]) {
                    308:       $name=$tempo_array[3];
1.89      foxr      309:       ($name_range) = split(/,/,$name, 2);
1.49      albertel  310:   } else {
                    311:       $name=$tempo_array[0].'@'.$tempo_array[1];
1.88      foxr      312:       $name_range = $tempo_array[0];
                    313:   }
                    314:   if (($name ne "") && ($name ne '@') ) { # Could be printing codes...
                    315:       $link_text='<b>'.$name.'</b>';
                    316:       $status_statement.=$name;
1.49      albertel  317:   }
                    318:   if ($#stud_info>0) {
                    319:       @tempo_array=split(/:/,$stud_info[-1]);
1.48      albertel  320:       if ($tempo_array[3]) {
                    321: 	  $name=$tempo_array[3];
1.89      foxr      322: 	  my ($lastname) = split(/,/, $name,2);
                    323: 	  $name_range .= "-".$lastname;
1.48      albertel  324:       } else {
                    325: 	  $name=$tempo_array[0].'@'.$tempo_array[1];
1.88      foxr      326: 	  $name_range .= '-'.$tempo_array[0];
                    327:       }
                    328:       if (($name ne "") && ($name ne '@')) {
                    329: 	  $link_text.=' - <b>'.$name.'</b>';
                    330: 	  $status_statement.=' -  '.$name;
                    331:   
1.48      albertel  332:       }
1.88      foxr      333:   }
                    334:   if(($num_files > 1) && ($link_text eq 'download PDF')) { # Printing codes
                    335:       $link_text = '<b>'.basename($texfile,'.tex').'.pdf</b>';
                    336:       $status_statement .= basename($texfile);
                    337:   }
                    338:   $name_range =~ s/'//g;	# O'Neil -> ONeil e.g.
                    339:   print "<br/>";
1.92      albertel  340:   if ($advanced_role) { &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,'Creating PDF for '.$status_statement); }
1.88      foxr      341:   #  This little piece of dirt puts username ranges into the original tex
                    342:   #  Tex filename from which they'll propagate into the other filenames as well.
                    343:   #
1.29      sakharuk  344:   if (-e $texfile) {
1.88      foxr      345:       if (($name_range ne '') && ($num_files > 1)) {
                    346: 	  my $newtexfile = $texfile;
                    347: 	  $newtexfile    =~ s/\.tex/$name_range\.tex/;
                    348: 	  rename($texfile, $newtexfile);
                    349: 	  $texfile       = $newtexfile;
                    350:       }
1.29      sakharuk  351:       $texfile =~ m/^(.*)\/([^\/]+)$/; 
                    352:       my $name_file = $2;
                    353:       my $path_file = $1.'/';
                    354:       chdir $path_file;
1.88      foxr      355:       my $dvi_file= $name_file; $dvi_file =~ s/\.tex/$name_range\.dvi/;
1.59      albertel  356:       &busy_wait_command("latex $name_file 1>/dev/null 2>/dev/null",
                    357: 			 "for $status_statement now LaTeXing file",
                    358: 			 \%prog_state,$dvi_file);
1.40      sakharuk  359:       if ($tableofcontents eq 'yes') {
1.63      sakharuk  360:       &busy_wait_command("latex $name_file 1>/dev/null 2>/dev/null",
                    361: 			 "for $status_statement now LaTeXing file for table of contents",
                    362: 			 \%prog_state,$dvi_file);
1.40      sakharuk  363:       } #to create table of contents
1.33      sakharuk  364:       my $idxname=$name_file;
                    365:       $idxname=~s/\.tex$/\.idx/;
1.40      sakharuk  366:       if ($tableofindex eq 'yes') {
1.63      sakharuk  367: 	  &busy_wait_command("makeindex $idxname",
                    368: 			     "making index file",
                    369: 			     \%prog_state,$idxname);
                    370: 	  &busy_wait_command("latex $name_file 1>/dev/null 2>/dev/null",
                    371: 			     "for $status_statement now LaTeXing file for index section",
                    372: 			     \%prog_state,$dvi_file);
1.33      sakharuk  373:       } #to create index
1.29      sakharuk  374:       #Do we have a latex error in the log file?
1.67      sakharuk  375:       my $logfilename = $texfile; $logfilename =~ s/\.tex$/\.log/;
1.69      matthew   376:       my $temporary_file=IO::File->new($logfilename) || die "Couldn't open log file $logfilename for reading: $!\n";
1.29      sakharuk  377:       my @content_of_file = <$temporary_file>;
                    378:       close $temporary_file; 
1.30      sakharuk  379:       my $body_log_file = join(' ',@content_of_file);
                    380:       $logfilename =~ s/\.log$/\.html/;
                    381:       $temporary_file = IO::File->new('>'.$logfilename); 
                    382:       print $temporary_file '<html><head><title>LOGFILE</title></head><body><pre>'.$body_log_file.'</pre></body></html>'."\n";
1.29      sakharuk  383:       if ($body_log_file=~m/!\s+Emergency stop/) {
                    384: 	  my $whereitbegins = rindex $body_log_file,'STAMPOFPASSEDRESOURCESTART';
                    385: 	  my $whereitends = rindex $body_log_file,'STAMPOFPASSEDRESOURCEEND';
1.81      foxr      386: 	  my $badresource;
1.83      foxr      387: 	  my $badtext;
1.29      sakharuk  388: 	  if ($whereitbegins!=-1 and $whereitends!=-1) {
1.83      foxr      389: 	      $badtext = substr($body_log_file,$whereitbegins+26, $whereitends-$whereitbegins-26);
1.81      foxr      390: 	      $whereitbegins  = rindex $badtext,'located in';
                    391: 	      if ($whereitbegins != -1) {
                    392: 		  
                    393: 		  $badresource = substr($badtext, $whereitbegins+27, 
                    394: 					length($badtext) - $whereitbegins - 48);
1.84      albertel  395: 		  # print "<br />failing resourcename: $badresource<br />";
1.81      foxr      396: 	      }
1.29      sakharuk  397: 	  }
1.83      foxr      398: 	  
1.75      albertel  399:           if ($advanced_role) {  
1.83      foxr      400: 	      #LaTeX failed to parse tex file 
                    401: 	      print "<h2>LaTeX could not successfully parse your tex file.</h2>";
                    402: 	      print "It probably has errors in it.<br />";
                    403: 	      print "With very high probability this error occured in ".$badtext."<br /><br />";
1.84      albertel  404: 	      print "Here are the error messages in the LaTeX log file<br /><pre>";
1.90      foxr      405: 
1.83      foxr      406: 	      my $sygnal = 0;
                    407: 	      for (my $i=0;$i<=$#content_of_file;$i++) {
                    408: 		  if ($content_of_file[$i]=~m/^Runaway argument?/ or $content_of_file[$i]=~m/^!/) {
                    409: 		      $sygnal = 1;
                    410: 		  } 
                    411: 		  if ($content_of_file[$i]=~m/Here is how much of/) {
                    412: 		      $sygnal = 0;
                    413: 		  } 
                    414: 		  if ($sygnal) {
                    415: 		      print "$content_of_file[$i]";
                    416: 		  }  
                    417: 	      }
                    418: 	      print "</pre>\n";
1.84      albertel  419: 	      # print "<br /> Advanced role <br />";
1.35      sakharuk  420:               print "<b><big>The link to ";
                    421:               $logfilename=~s/\/home\/httpd//;
                    422: 	      print "<a href=\"$logfilename\">Your log file </a></big></b>";
                    423: 	      print "\n";
                    424:               #link tooriginal LaTeX file (included according Michael Hamlin desire)
1.69      matthew   425: 	      my $tex_temporary_file=IO::File->new($texfile) || die "Couldn't open tex file $texfile for reading: $!\n";
1.35      sakharuk  426: 	      my @tex_content_of_file = <$tex_temporary_file>;
                    427: 	      close $tex_temporary_file; 
                    428: 	      my $body_tex_file = join(' ',@tex_content_of_file);
                    429: 	      $texfile =~ s/\.tex$/aaaaa\.html/;
                    430: 	      $tex_temporary_file = IO::File->new('>'.$texfile); 
                    431: 	      print $tex_temporary_file '<html><head><title>LOGFILE</title></head><body><pre>'.$body_tex_file.'</pre></body></html>'."\n";
                    432: 	      print "<br /><br />";
                    433: 	      print "<b><big>The link to ";
                    434: 	      $texfile=~s/\/home\/httpd//;
                    435: 	      print "<a href=\"$texfile\">Your original LaTeX file </a></big></b>";
                    436: 	      print "\n";
1.90      foxr      437: 	      my $help_text = &Apache::loncommon::help_open_topic("Print_Resource", "Help on printing");
                    438: 	      print ("$help_text");
                    439: 
1.77      foxr      440: 	  } else {		# Student role...
                    441: 	      #  at this point:
                    442: 	      #    $body_log_file - contains the log file.
                    443:               #    $name_file     - is the name of the LaTeX file.
                    444:               #    $identifier    - is the unique LaTeX identifier.l
                    445: 
1.84      albertel  446: 	      print "<br />There are errors in $badtext";
                    447: 	      print "<br />These errors prevent this resource from printing correctly";
1.77      foxr      448: 	      my $tex_handle = IO::File->new($name_file);
                    449: 	      my @tex_contents = <$tex_handle>;
1.81      foxr      450: 	      &send_error_mail($identifier, $badresource, $body_log_file, \@tex_contents);
1.90      foxr      451: 	      print "<br />A message has been sent to the instructor describing this failure<br />";
                    452: 	      my $help_text = &Apache::loncommon::help_open_topic("Print_Resource", "Help on printing");
                    453: 	      print  ("$help_text");
                    454: 
1.36      sakharuk  455: 	  }
1.35      sakharuk  456: 
1.29      sakharuk  457:       } elsif ($body_log_file=~m/<inserted text>/) {
                    458: 	  my $whereitbegins = index $body_log_file,'<inserted text>';
1.59      albertel  459: 	  print "You are running LaTeX in <b>batch mode</b>.";
1.30      sakharuk  460: 	  while ($whereitbegins != -1) {
                    461: 	      my $tempobegin=$whereitbegins;
                    462: 	      $whereitbegins = rindex $body_log_file,'STAMPOFPASSEDRESOURCESTART',$whereitbegins;
                    463: 	      my $whereitends = index $body_log_file,'STAMPOFPASSEDRESOURCEEND',$whereitbegins;
1.34      sakharuk  464: 	      print "<br />It has found an error in".substr($body_log_file,$whereitbegins+26,$whereitends-$whereitbegins-26)." <br /> and corrected it.\n";
1.30      sakharuk  465: 	      print "Usually this correction is valid but you probably need to check the indicated resource one more time and implement neccessary corrections by yourself.\n";
                    466: 	      $whereitbegins = index $body_log_file,'<inserted text>',$tempobegin+10;
                    467: 	  }
1.29      sakharuk  468: 	  $name_file =~ s/\.tex/\.dvi/;
                    469: 	  my $new_name_file = $name_file;
                    470: 	  $new_name_file =~ s/\.dvi/\.ps/;
1.67      sakharuk  471: 	  my $papera=$paper;
1.62      sakharuk  472: 	  if ($papera eq 'letter') {$papera='';}
                    473: 	  if ($papera ne '') {$papera='-t'.$papera;}
                    474: 	  my $comma = "dvips $papera -Ppdf -G0 -o $new_name_file";
1.59      albertel  475: 	  &busy_wait_command("$comma $name_file 1>/dev/null 2>/dev/null",
                    476: 			     "for $status_statement now Converting to PS",
                    477: 			     \%prog_state,$new_name_file);
1.29      sakharuk  478: 	  if (-e $new_name_file) {
                    479: 	      print "<h1>PDF output file (see link below)</h1>\n";
                    480: 	      $new_name_file =~ m/^(.*)\./;
1.59      albertel  481: 	      my $ps_file = my $tempo_file = $1.'temporar.ps';
                    482: 	      my $pdf_file = $1.'.pdf';
1.29      sakharuk  483: 	      if ($laystyle eq 'album' and $numberofcolumns eq '2') {
1.82      albertel  484: 		  my $papera=$paper;
                    485:                   if ($papera eq 'letter') {$papera='';}
                    486: 		  if ($papera ne '') {$papera='-p'.$papera;}
                    487: 		  $comma = "psnup $papera -2 -s1.0 $new_name_file";
1.59      albertel  488: 		  &busy_wait_command("$comma $tempo_file 1>/dev/null 2>/dev/null",
                    489: 				     "for $status_statement now Modifying PS layout",
                    490: 				     \%prog_state,$tempo_file); 
1.29      sakharuk  491: 	      } elsif ($laystyle eq 'book' and $numberofcolumns eq '2') {
1.67      sakharuk  492: 		  my $papera=$paper;
                    493:                   if ($papera eq 'letter') {$papera='';}
1.62      sakharuk  494: 		  if ($papera ne '') {$papera='-p'.$papera;}
                    495: 		  $comma = 'pstops '.$papera.' "2:0+1(0.48w,0)"';
1.63      sakharuk  496: 		  &busy_wait_command("$comma $new_name_file $tempo_file 1>/dev/null 2>/dev/null",
                    497: 				     "for $status_statement now Modifying PS layout",
                    498: 				     \%prog_state,$tempo_file); 
                    499: 
1.29      sakharuk  500: 	      } else {
1.59      albertel  501: 		  $ps_file=$new_name_file;
1.29      sakharuk  502: 	      }	    
1.59      albertel  503: 	      &busy_wait_command("ps2pdf $ps_file $pdf_file 1>/dev/null 2>/dev/null",
                    504: 				 "for $status_statement now Converting PS to PDF",
                    505: 				 \%prog_state, $pdf_file);
                    506: 
1.29      sakharuk  507: 	      my $texlog = $texfile;
                    508: 	      my $texaux = $texfile;
                    509: 	      my $texdvi = $texfile;
                    510: 	      my $texps = $texfile;
                    511: 	      $texlog =~ s/\.tex/\.log/;
                    512: 	      $texaux =~ s/\.tex/\.aux/;
                    513: 	      $texdvi =~ s/\.tex/\.dvi/;
                    514: 	      $texps =~ s/\.tex/\.ps/;
1.30      sakharuk  515: 	      my @garb = ($texaux,$texdvi,$texps);
1.29      sakharuk  516: #	  unlink @garb;
                    517: 	      unlink $duefile;
1.59      albertel  518: 	      print "<a href=\"/prtspool/$pdf_file\">Your PDF document</a>";
1.75      albertel  519: 	  }
                    520: 	  if ($advanced_role) {  
                    521: 	      print "<br /><br />";
                    522: 	      print "<b><big>The link to ";
                    523: 	      $logfilename=~s/\/home\/httpd//;
                    524: 	      print "<a href=\"$logfilename\">Your log file </a></big></b>";
                    525: 	      print "\n";
                    526: 	      #link tooriginal LaTeX file (included according Michael Hamlin desire)
                    527: 	      my $tex_temporary_file=IO::File->new($texfile) || die "Couldn't open tex file $texfile for reading: $!\n";
                    528: 	      my @tex_content_of_file = <$tex_temporary_file>;
                    529: 	      close $tex_temporary_file; 
                    530: 	      my $body_tex_file = join(' ',@tex_content_of_file);
                    531: 	      $texfile =~ s/\.tex$/aaaaa\.html/;
                    532: 	      $tex_temporary_file = IO::File->new('>'.$texfile); 
                    533: 	      print $tex_temporary_file '<html><head><title>LOGFILE</title></head><body><pre>'.$body_tex_file.'</pre></body></html>'."\n";
                    534: 	      print "<br /><br />";
                    535: 	      print "<b><big>The link to ";
                    536: 	      $texfile=~s/\/home\/httpd//;
                    537: 	      print "<a href=\"$texfile\">Your original LaTeX file </a></big></b>";
                    538: 	      print "\n";
1.29      sakharuk  539: 	  }
                    540:       } else {
                    541: 	  #LaTeX successfully parsed tex file 
                    542: 	  $name_file =~ s/\.tex/\.dvi/;
                    543: 	  my $new_name_file = $name_file;
                    544: 	  $new_name_file =~ s/\.dvi/\.ps/;
1.67      sakharuk  545: 	  my $papera=$paper;
1.62      sakharuk  546: 	  if ($papera eq 'letter') {$papera='';}
                    547: 	  if ($papera ne '') {$papera='-t'.$papera;}
                    548: 	  my $comma = "dvips $papera -Ppdf -G0 -o $new_name_file";
1.59      albertel  549: 	  &busy_wait_command("$comma $name_file 1>/dev/null 2>/dev/null",
                    550: 			     "for $status_statement now Converting to PS",
                    551: 			     \%prog_state,$new_name_file);
1.29      sakharuk  552: 	  if (-e $new_name_file) {
1.61      albertel  553: 	      print "<br />";
1.29      sakharuk  554: 	      $new_name_file =~ m/^(.*)\./;
1.59      albertel  555: 	      my $ps_file = my $tempo_file = $1.'temporar.ps';
                    556: 	      my $pdf_file = $1.'.pdf';
1.82      albertel  557: 	      $papera=~s/t/p/;
1.29      sakharuk  558: 	      if ($laystyle eq 'album' and $numberofcolumns eq '2') {
1.82      albertel  559: 		  $comma = "psnup $papera -2 -s1.0 $new_name_file";
1.59      albertel  560: 		  &busy_wait_command("$comma $tempo_file 1>/dev/null 2>/dev/null",
                    561: 				     "for $status_statement now Modifying PS layout",
                    562: 				     \%prog_state,$tempo_file);
1.29      sakharuk  563: 	      } elsif ($laystyle eq 'book' and $numberofcolumns eq '2') {
1.65      sakharuk  564: 		  $comma = 'pstops '.$papera.' "2:0+1(0.48w,0)"';
1.59      albertel  565: 		  &busy_wait_command("$comma $new_name_file $tempo_file 1>/dev/null 2>/dev/null",
                    566: 				     "for $status_statement now Modifying PS layout",
                    567: 				     \%prog_state,$tempo_file); 
1.29      sakharuk  568: 	      } else {
1.59      albertel  569: 		  $ps_file=$new_name_file;
                    570: 	      }
1.67      sakharuk  571: 	      my $addtoPSfile={'legal'=>'<< /PageSize [612 1008] >> setpagedevice',
                    572:                                'tabloid'=>'<< /PageSize [792 1224] >> setpagedevice',
                    573:                                'executive'=>,'<< /PageSize [540 720] >> setpagedevice',
                    574:                                'a2'=>'<< /PageSize [1195.02 1690.09] >> setpagedevice',
                    575:                                'a3'=>'<< /PageSize [842 1195.02] >> setpagedevice',
                    576:                                'a4'=>'<< /PageSize [595.2 842] >> setpagedevice',
                    577:                                'a5'=>'<< /PageSize [421.1 595.2] >> setpagedevice',
                    578:                                'a6'=>'<< /PageSize [298.75 421.1] >> setpagedevice',
                    579: 			   };
                    580: 	      if ($paper ne 'letter') {
1.69      matthew   581: 		  open(FFH,'<',$ps_file) || die "Couldn't open ps file $ps_file for reading: $!\n";
1.63      sakharuk  582: 		  my $new_ps_file='new'.$ps_file;
1.69      matthew   583: 		  open(FFHS,'>',$new_ps_file) || die "Couldn't open new ps file $new_ps_file for reading: $!\n";
1.67      sakharuk  584: 		  print FFHS $addtoPSfile->{$paper}."\n";
1.63      sakharuk  585: 		  while (<FFH>) {
                    586: 		      print FFHS $_;
                    587: 		  }
1.62      sakharuk  588: 		  close(FFH);
1.63      sakharuk  589: 		  close(FFHS);
                    590: 		  $ps_file=$new_ps_file;	  
1.62      sakharuk  591: 	      }
1.59      albertel  592: 	      &busy_wait_command("ps2pdf $ps_file $pdf_file 1>/dev/null 2>/dev/null",
                    593: 				 "for $status_statement now Converting PS to PDF",
                    594: 				 \%prog_state,$pdf_file);
                    595: 	    
1.29      sakharuk  596: 	      my $texlog = $texfile;
                    597: 	      my $texaux = $texfile;
                    598: 	      my $texdvi = $texfile;
                    599: 	      my $texps = $texfile;
                    600: 	      $texlog =~ s/\.tex/\.log/;
                    601: 	      $texaux =~ s/\.tex/\.aux/;
                    602: 	      $texdvi =~ s/\.tex/\.dvi/;
                    603: 	      $texps =~ s/\.tex/\.ps/;
                    604: 	      my @garb = ($texlog,$texaux,$texdvi,$texps);
1.22      sakharuk  605: #	  unlink @garb;
1.29      sakharuk  606: 	      unlink $duefile;
1.68      sakharuk  607: 	      print "<a href=\"/prtspool/$pdf_file\">$link_text - click here to download pdf</a>";
1.29      sakharuk  608: 	      print "\n";
                    609: 	  }
1.63      sakharuk  610:       }  
1.29      sakharuk  611:   } else {
                    612:       print "LaTeX file $texfile was not created successfully";
1.14      sakharuk  613:   }
1.43      sakharuk  614: }
1.45      sakharuk  615: print "<br />";
1.44      sakharuk  616: if ($number_of_files>1) {
1.45      sakharuk  617:     my $zipfile=$texfile[0];
                    618:     $zipfile=~s/\.tex/\.zip/;
                    619:     my $statement="zip $zipfile";
1.44      sakharuk  620:     foreach my $file (@texfile) {
1.45      sakharuk  621: 	$file=~s/\.tex/.\pdf/;
                    622: 	$statement.=' '.$file; 
1.44      sakharuk  623:     }
1.49      albertel  624:     print("<pre>Zip Output:\n");
                    625:     system($statement);
                    626:     print("</pre>");
1.45      sakharuk  627:     $zipfile=~s/\/home\/httpd//;
1.49      albertel  628:     print "<br /> A <a href=\"$zipfile\">ZIP file</a> of all the PDFs.";
1.44      sakharuk  629: }
1.92      albertel  630: if ($advanced_role) { &Apache::lonhtmlcommon::Close_PrgWin('',\%prog_state); }
1.1       sakharuk  631: 
1.59      albertel  632: my $done;
                    633: sub REAPER {
                    634:     $done=1;
                    635: }
                    636: 
                    637: sub busy_wait_command {
                    638:     my ($command,$message,$progress_win,$output_file)=@_;
                    639:     
                    640:     $SIG{CHLD} = \&REAPER;
                    641:     $done=0;
                    642:     my $pid=open(CMD,"$command |");
1.92      albertel  643:     if ($advanced_role) {
1.60      albertel  644: 	&Apache::lonhtmlcommon::Update_PrgWin('',$progress_win,$message);
                    645:     }
1.59      albertel  646:     while(!$done) {
                    647: 	sleep 1;
                    648: 	my $extra_msg;
                    649: 	if ($output_file) {
                    650: 	    my $size=(stat($output_file))[7];
                    651: 	    $extra_msg=", $size bytes generated";
                    652: 	}
1.92      albertel  653: 	if ($advanced_role) {
1.60      albertel  654: 	    &Apache::lonhtmlcommon::Update_PrgWin('',$progress_win,
                    655: 						  $message.$extra_msg);
                    656: 	}
1.59      albertel  657:     }
                    658:     $SIG{CHLD}='IGNORE';
                    659:     close(CMD);
                    660: }
1.1       sakharuk  661: 
                    662: 
                    663: 
1.4       sakharuk  664: 

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