Annotation of loncom/interface/printout.pl, revision 1.142.6.3
1.1 sakharuk 1: #!/usr/bin/perl
1.37 albertel 2: # CGI-script to run LaTeX, dvips, ps2ps, ps2pdf etc.
3: #
1.142.6.3! raeburn 4: # $Id: printout.pl,v 1.142.6.2 2009/11/17 01:13:51 raeburn Exp $
1.37 albertel 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
28:
1.39 sakharuk 29: use lib '/home/httpd/lib/perl';
1.76 albertel 30: use LONCAPA::loncgi;
1.38 sakharuk 31: use File::Path;
1.88 foxr 32: use File::Basename;
1.111 foxr 33: use File::Copy;
1.6 sakharuk 34: use IO::File;
1.7 sakharuk 35: use Image::Magick;
1.97 albertel 36: use Apache::lonhtmlcommon();
1.80 albertel 37: use Apache::lonnet;
1.97 albertel 38: use Apache::loncommon();
1.51 albertel 39: use Apache::lonlocal;
1.97 albertel 40: use Apache::lonmsg();
1.77 foxr 41: use LONCAPA::Enrollment;
1.123 albertel 42: use LONCAPA::Configuration;
1.47 sakharuk 43:
1.59 albertel 44: use strict;
1.77 foxr 45:
1.132 www 46: my $busy_wait_timeout = 30;
1.81 foxr 47:
1.141 foxr 48:
49: my $debugging = 0;
50:
1.135 foxr 51: sub debug {
1.141 foxr 52: if ($debugging) {
53: my ($text) = @_;
54: print "$text <br />\n";
55: }
1.135 foxr 56: }
57:
1.77 foxr 58: # Determine if a user is operating as a student for this course/domain.
59: #Parameters:
1.92 albertel 60: # none
1.77 foxr 61: #Implicit:
62: # $env{request.role} contains the role under which this user operated this
63: # this request.
64: sub is_student {
1.92 albertel 65: return ($env{'request.role'}=~/^st\./);
1.77 foxr 66: }
67:
68: #
69: # Debugging: Dump the environment for debugging.
70: #
71: sub dumpenv {
1.84 albertel 72: print "<br />-------------------<br />";
1.77 foxr 73: foreach my $key (sort (keys %env)) {
1.84 albertel 74: print "<br />$key -> $env{$key}";
1.77 foxr 75: }
1.84 albertel 76: print "<br />-------------------<br />";
1.77 foxr 77: }
78:
79: #
80: # This sub sends a message to the appropriate person if there was an error
81: # rendering the latex At present, there's only one case to consider:
82: # a student printing inside a course results in messages to the course coordinator.
83: #Parmaeters:
84: # identifier - The unique identifier of this cgi request.
1.81 foxr 85: # badresource- Filepath to most likely failing
1.77 foxr 86: # logfile - The contents of the log file (included in the message).
87: # texfile - reference to an array containing the LaTeX input file
88: # (included in the message).
89: #Implicit inputs:
90: # From the environment:
91: # cgi.$identifier.user - User doing the printing.
92: # cgi.$identifier.domain - Domain the user is logged in on with printing.
93: # cgi.$identifier.courseid - Id of the course (if this is a course).
94: # cgi.$identifier.coursedom- Domain in which course was constituted.
95: # cgi.$identifier.resources - List of resource URL's for which the print
96: # was attempted.
97: #
98: sub send_error_mail {
1.81 foxr 99: my ($identifier, $badresource, $logfile, $texfile) = @_;
1.77 foxr 100: my $user = $env{"cgi.$identifier.user"};
101: my $domain = $env{"cgi.$identifier.domain"};
102: my $courseid = $env{"cgi.$identifier.courseid"};
103: my $coursedom= $env{"cgi.$identifier.coursedom"};
104: my $resources= $env{"cgi.$identifier.resources"};
105:
1.81 foxr 106: # resource file->URL
107: #
108: my $badurl = &Apache::lonnet::declutter($badresource);
109:
110: # &dumpenv();
1.77 foxr 111:
112:
113:
114: # Only continue if there is a user, domain, courseid, course domain
115: # and resources:
116:
117: if(defined($user) && defined($domain) && defined($courseid) &&
118: defined($coursedom) && defined($resources) ){
119:
120: # Only mail if the conditions are ripe for it:
121: # The user is a student in the course:
122: #
123:
1.92 albertel 124: if (&is_student()) {
1.77 foxr 125: # build the subject and message body:
1.141 foxr 126: &debug("sending message to course coordinators.");
1.81 foxr 127:
128: # Todo: Convert badurl into a url from file path:
129:
130: my $subject = "Error [$badurl] Print failed for $user".'@'.$domain;
1.77 foxr 131: my $message .= "Print failed to render LaTeX for $user".'@'."$domain\n";
132: $message .= " User was attempting to print: \n";
1.91 albertel 133: foreach my $resource (split(/:/,$resources)) {
134: $message .= " $resource\n";
135: }
1.77 foxr 136: $message .= "--------------------LaTeX logfile:------------ \n";
137: $message .= $logfile;
138: $message .= "-----------------LaTeX source file: ------------\n";
139:
140: foreach my $line (@$texfile) {
141: $message .= "$line\n";
142: }
1.122 albertel 143: my (undef, %receivers) = &Apache::lonmsg::decide_receiver(undef, 0,
144: 1,1,1);
1.141 foxr 145: &debug("sending...section: $env{'request.course.sec'}");
1.81 foxr 146: foreach my $dest (keys %receivers) {
1.141 foxr 147: &debug("dest is $dest");
1.77 foxr 148: my @destinfo = split(/:/,$dest);
149: my $user = $destinfo[0];
150: my $dom = $destinfo[1];
151:
152: &Apache::lonmsg::user_normal_msg($user, $dom,
153: $subject, $message);
154:
155: # No point in looking at the return status as there's no good
156: # error action I can think of right now (log maybe?).
157: }
158: }
159: }
160: }
161:
1.49 albertel 162: $|=1;
1.39 sakharuk 163: if (! &LONCAPA::loncgi::check_cookie_and_load_env()) {
164: print <<END;
165: Content-type: text/html
166:
167: <html>
168: <head><title>Bad Cookie</title></head>
169: <body>
1.40 sakharuk 170: Your cookie information is incorrect.
1.39 sakharuk 171: </body>
172: </html>
173: END
1.142.6.2 raeburn 174: exit;
1.39 sakharuk 175: }
1.123 albertel 176:
177: my %perlvar=%{&LONCAPA::Configuration::read_conf('loncapa.conf')};
1.133 foxr 178: &Apache::lonlocal::get_language_handle();
179: &Apache::loncommon::content_type(undef,'text/html');
1.128 albertel 180: $env{'request.noversionuri'} = '/cgi-bin/printout.pl';
1.133 foxr 181: print(&Apache::loncommon::start_page('Creating PDF'));
182:
183: my $identifier = $ENV{'QUERY_STRING'};
184: my $texfile = $env{'cgi.'.$identifier.'.file'};
185: my $laystyle = $env{'cgi.'.$identifier.'.layout'};
186: my $numberofcolumns = $env{'cgi.'.$identifier.'.numcol'};
187: my $paper = $env{'cgi.'.$identifier.'.paper'};
188: my $selectionmade = $env{'cgi.'.$identifier.'.selection'};
189: my $tableofcontents = $env{'cgi.'.$identifier.'.tableofcontents'};
190: my $tableofindex = $env{'cgi.'.$identifier.'.tableofindex'};
191: my $advanced_role = $env{'cgi.'.$identifier.'.role'};
192: my $number_of_files = $env{'cgi.'.$identifier.'.numberoffiles'}+1;
193: my $student_names = $env{'cgi.'.$identifier.'.studentnames'};
194: my $backref = &Apache::lonnet::unescape($env{'cgi.'.$identifier.'.backref'});
195:
196:
197: my @names_pack=();
198: if ($student_names=~/_END_/) {
199: @names_pack=split(/_ENDPERSON_/,$student_names);
200: }
201: if ($backref) {
202: print('<p>'.&mt("[_1]Return[_2] to editing resource.",
203: "<a href=\"$backref\"><b>","</b></a>").'</p>');
204: }
205: my $figfile = $texfile;
206: $figfile =~ s/^(.*_printout)_\d+_\d+_\d+\.tex/$1\.dat/;
207: my $duefile = $texfile;
208: $duefile =~ s/^(.*_printout)_\d+_\d+_\d+\.tex/$1\.due/;
209:
210:
211: #-------------------------------------------------------------------------------------
212: #
213: # Each print may have associated with it a file that contains a set of figures
214: # that need to be converted to .eps from whatever form they were in when included
215: # in the resource. The name of the figure file is in $figfile. If it exists,
216: # it contains the names of the files that need to be converted, one per line.
217: #
218:
1.141 foxr 219: &debug("Figure file is $figfile");
220:
1.133 foxr 221: if (-e $figfile) {
1.141 foxr 222: &debug( "Figure file exists");
223: &debug("$figfile exists");
1.133 foxr 224: my %done_conversion;
225: my $temporary_file=IO::File->new($figfile) || die "Couldn't open fig file $figfile for reading: $!\n";
226: my @content_of_file = <$temporary_file>;
227: close $temporary_file;
228: my $noteps;
229: my %prog_state;
230: if ($advanced_role) { %prog_state=&Apache::lonhtmlcommon::Create_PrgWin('','Converting Images to EPS','Picture Conversion Status',$#content_of_file,'inline','80'); }
231: print('<br />');
232: foreach my $not_eps (@content_of_file) {
233: chomp($not_eps);
1.141 foxr 234: &debug( "Being asked to convert $not_eps");
1.133 foxr 235: if ($not_eps ne '') {
236: $not_eps=~s|\/\.\/|\/|g;
237: if (!$done_conversion{$not_eps}) { # Only convert multiple includes once.
238: &convert_figure($not_eps);
239: $done_conversion{$not_eps} = 1;
240: }
241: }
242: }
243: if ($advanced_role) {
244: &Apache::lonhtmlcommon::Close_PrgWin('',\%prog_state);
245: }
246: unlink($figfile);
247: }
248: # End of figure conversion section:
249: #
250: #--------------------------------------------------------------------------------------------
1.135 foxr 251: #
252: # Figure out which Tex files we need to process. If this is a large class e.g.
253: # the instructor may have asked that the printout be by section, one section per file
254: # in that case, the output tex fiels will be the base filename with 3 digit serial numbers
255: # just prior to the .tex file type.
256: # By the time this loop exits, @texfile is an array of the files to process.
257: #
1.133 foxr 258:
1.135 foxr 259: my @texfile=($texfile);
260: if ($number_of_files>1) {
261: @texfile=();
262: for (my $i=1;$i<=$number_of_files;$i++) {
263: my $new_texfile=$texfile;
264: $new_texfile=~s/\.tex//;
265: $new_texfile = sprintf("%s_%03d.tex", $new_texfile,$i);
266: push @texfile,$new_texfile;
267: }
268: }
1.39 sakharuk 269:
1.135 foxr 270: #--------------------------------------------------------------------------------------------
1.43 sakharuk 271:
1.135 foxr 272: my $ind=-1;
1.98 albertel 273:
1.49 albertel 274: my %prog_state;
1.135 foxr 275: if ($advanced_role) {
1.136 bisitz 276: %prog_state=&Apache::lonhtmlcommon::Create_PrgWin('','Print Status',&mt('Class Print Status'),$number_of_files,'inline','80');
1.135 foxr 277: }
1.61 albertel 278: print "<br />";
1.135 foxr 279: my $num_files = @texfile; # How does this differ from $number_of_files , can that be 0?
280:
281:
282:
283:
1.43 sakharuk 284: foreach $texfile (@texfile) {
1.49 albertel 285: my $status_statement='';
286: my $link_text='download PDF';
287: $ind++;
1.135 foxr 288:
289: #---------------------------------------------------------------------------------------
290: # This chunk of code
291: # determines the status message for the printout, and the download link text.
292: # If the print is for one or more students, both will contain the range of students
293: # covered by this file.
294: #
295:
1.49 albertel 296: my @stud_info=split(/_END_/,$names_pack[$ind]);
1.135 foxr 297: my @tempo_array=split(/:/,$stud_info[0]); # username:domain:section:full name:...
1.49 albertel 298: my $name;
1.88 foxr 299: my $name_range='';
1.135 foxr 300:
301: # $name -> Either user's full name or username@domain
302: # $name_range -> Either user's last name or usrname.
303:
1.49 albertel 304: if ($tempo_array[3]) {
305: $name=$tempo_array[3];
1.89 foxr 306: ($name_range) = split(/,/,$name, 2);
1.49 albertel 307: } else {
308: $name=$tempo_array[0].'@'.$tempo_array[1];
1.88 foxr 309: $name_range = $tempo_array[0];
310: }
1.135 foxr 311:
312: # If there truly is a name add it to the status text so we know which
313: # user is getting printed.
314: #
315:
1.88 foxr 316: if (($name ne "") && ($name ne '@') ) { # Could be printing codes...
317: $link_text='<b>'.$name.'</b>';
318: $status_statement.=$name;
1.49 albertel 319: }
1.135 foxr 320:
321: # Group of students being printed...
322: # $name_range -> first student's name - last student's name
323: #
324:
1.49 albertel 325: if ($#stud_info>0) {
326: @tempo_array=split(/:/,$stud_info[-1]);
1.48 albertel 327: if ($tempo_array[3]) {
328: $name=$tempo_array[3];
1.89 foxr 329: my ($lastname) = split(/,/, $name,2);
330: $name_range .= "-".$lastname;
1.48 albertel 331: } else {
332: $name=$tempo_array[0].'@'.$tempo_array[1];
1.88 foxr 333: $name_range .= '-'.$tempo_array[0];
334: }
335: if (($name ne "") && ($name ne '@')) {
336: $link_text.=' - <b>'.$name.'</b>';
337: $status_statement.=' - '.$name;
338:
1.48 albertel 339: }
1.88 foxr 340: }
1.135 foxr 341:
342: # $name_range is the range of names in this file.
343: # $name is the first of the names in this file.
344: #
345: #-----------------------------------------------------------------------
346:
347: # If the number of files is > 1, but we don't have multiple
348: # student names, we must be printing an exam from codes.
349: # The download link becomes the filename (basename.tex
350: # The status info has the basename appended to it.
351: #
352: if(($num_files > 1) && ($link_text eq 'download PDF')) {
1.88 foxr 353: $link_text = '<b>'.basename($texfile,'.tex').'.pdf</b>';
354: $status_statement .= basename($texfile);
355: }
1.135 foxr 356:
357:
358: #------------------------------------------------------------------------
359:
1.88 foxr 360: $name_range =~ s/'//g; # O'Neil -> ONeil e.g.
1.135 foxr 361:
362:
1.88 foxr 363: print "<br/>";
1.135 foxr 364: if ($advanced_role) {
365: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,'Creating PDF for '.$status_statement);
366: }
367:
368: if (-e $texfile) { # Ensure the tex file exists:
369:
370: #---------------------------------------------------------------------
371: #
372: # Put username ranges into the original tex
373: # Tex filename from which they'll propagate into the other filenames as well.
374: #
375:
1.88 foxr 376: if (($name_range ne '') && ($num_files > 1)) {
377: my $newtexfile = $texfile;
378: $newtexfile =~ s/\.tex/$name_range\.tex/;
379: rename($texfile, $newtexfile);
380: $texfile = $newtexfile;
381: }
1.135 foxr 382:
383: #---------------------------------------------------------------------
384:
1.29 sakharuk 385: $texfile =~ m/^(.*)\/([^\/]+)$/;
386: my $name_file = $2;
387: my $path_file = $1.'/';
388: chdir $path_file;
1.132 www 389: my $dvi_file= $name_file; $dvi_file =~ s/\.tex$/\.dvi/;
1.135 foxr 390: &make_dvi_file($name_file,
391: $dvi_file,
392: $tableofcontents,
393: $tableofindex,
394: $status_statement,
395: \%prog_state,
396: $busy_wait_timeout);
1.90 foxr 397:
398:
1.135 foxr 399: #Do we have a latex error in the log file?
1.35 sakharuk 400:
1.105 foxr 401:
1.135 foxr 402: my $logfilename = $texfile; $logfilename =~ s/\.tex$/\.log/;
1.115 foxr 403:
1.63 sakharuk 404:
1.135 foxr 405: if (&analyze_logfile($logfilename, $texfile, $advanced_role)) {
406:
1.119 foxr 407:
1.29 sakharuk 408: #LaTeX successfully parsed tex file
409: $name_file =~ s/\.tex/\.dvi/;
410: my $new_name_file = $name_file;
411: $new_name_file =~ s/\.dvi/\.ps/;
1.67 sakharuk 412: my $papera=$paper;
1.62 sakharuk 413: if ($papera eq 'letter') {$papera='';}
414: if ($papera ne '') {$papera='-t'.$papera;}
1.139 foxr 415: my $extra_ps_header = $perlvar{'lonLib'} .'/includepsheader.ps';
416: my $comma = "dvips $papera -h $extra_ps_header -Ppdf -G0 -o $new_name_file";
1.59 albertel 417: &busy_wait_command("$comma $name_file 1>/dev/null 2>/dev/null",
418: "for $status_statement now Converting to PS",
419: \%prog_state,$new_name_file);
1.115 foxr 420: #
421: # One last little hinky kinky thing.
422: # It's just possible that some fonts could not be maded
423: # at the resolution of the pdf print driver.
424: # In that case a file called missfont.log will have been
425: # created that will contain the commands that were attempted
426: # to create the missing fonts. If we basically
427: # take all the 8000 strings in that file, and
428: # replace them with 600 (the ljfour resolution)
429: # run the commands in that file and redvips,
430: # we'll be able to print the missing glyphs at 600dpi.
431: #
432: # Supposedly it is possible to tune TeX/Metafont to do this
433: # right but I failed to get that to work when following the
434: # docs at the tug site, hence this rather kludgey fix.
435: #
1.135 foxr 436:
1.115 foxr 437: my $print_directory = dirname($name_file);
438: my $missfonts_file = $print_directory."/missfont.log";
1.116 albertel 439: #print("<br /> Missing fonts file is: $missfonts_file");
1.115 foxr 440: if (-e $missfonts_file) {
1.116 albertel 441: #print("<br />Missing fonts file exists\n");
1.124 albertel 442: &create_missing_fonts($missfonts_file,\%prog_state);
1.118 albertel 443: &busy_wait_command("$comma $name_file 1>/dev/null 2>/dev/null",
1.115 foxr 444: "for $status_statement dvips generated missing fonts",
445: \%prog_state, $new_name_file);
446: }
1.29 sakharuk 447: if (-e $new_name_file) {
1.102 foxr 448: my $latex_file = $name_file;
449: $latex_file =~ s/\.dvi/\.tex/;
450: &repaginate($new_name_file, $latex_file, $numberofcolumns);
1.135 foxr 451:
452: &make_dvi_file($latex_file,
453: $name_file,
454: $tableofcontents,
455: $tableofindex,
456: $status_statement,
457: \%prog_state,
458: $busy_wait_timeout);
459:
460:
1.102 foxr 461: &busy_wait_command("$comma $name_file 1>/dev/null 2>/dev/null",
462: "for $status_statement dvips to repaginate",
463: \%prog_state, $new_name_file);
1.115 foxr 464:
1.61 albertel 465: print "<br />";
1.29 sakharuk 466: $new_name_file =~ m/^(.*)\./;
1.59 albertel 467: my $ps_file = my $tempo_file = $1.'temporar.ps';
468: my $pdf_file = $1.'.pdf';
1.82 albertel 469: $papera=~s/t/p/;
1.142.6.1 raeburn 470: $comma = "fixps --force $new_name_file";
471: &debug("FIXPS command: $comma");
472: &busy_wait_command("$comma 1>/dev/null 2>/dev/null",
473: "for $status_statement now validating PS",
474: \%prog_state,$tempo_file);
1.29 sakharuk 475: if ($laystyle eq 'album' and $numberofcolumns eq '2') {
1.142.6.1 raeburn 476: $comma = "psnup $papera -2 -s1.0 $new_name_file";
1.141 foxr 477: &debug("PSNUP command: $comma");
1.142.6.3! raeburn 478: &busy_wait_command("$comma 1>$tempo_file 2>/dev/null",
1.59 albertel 479: "for $status_statement now Modifying PS layout",
480: \%prog_state,$tempo_file);
1.142.6.3! raeburn 481: &busy_wait_command("mv $tempo_file $new_name_file",
! 482: 'File move', \%prog_state, $new_name_file);
1.29 sakharuk 483: } elsif ($laystyle eq 'book' and $numberofcolumns eq '2') {
1.142.6.1 raeburn 484: $comma = 'pstops '.$papera.' "2:0+1(0.48w,0)" '.$new_name_file;
1.141 foxr 485: &debug("PSTOPS command: $comma ");
1.142.6.1 raeburn 486: &busy_wait_command("$comma $tempo_file 1>/dev/null 2>/dev/null",
1.59 albertel 487: "for $status_statement now Modifying PS layout",
488: \%prog_state,$tempo_file);
1.29 sakharuk 489: } else {
1.59 albertel 490: $ps_file=$new_name_file;
491: }
1.67 sakharuk 492: my $addtoPSfile={'legal'=>'<< /PageSize [612 1008] >> setpagedevice',
493: 'tabloid'=>'<< /PageSize [792 1224] >> setpagedevice',
494: 'executive'=>,'<< /PageSize [540 720] >> setpagedevice',
495: 'a2'=>'<< /PageSize [1195.02 1690.09] >> setpagedevice',
496: 'a3'=>'<< /PageSize [842 1195.02] >> setpagedevice',
497: 'a4'=>'<< /PageSize [595.2 842] >> setpagedevice',
498: 'a5'=>'<< /PageSize [421.1 595.2] >> setpagedevice',
499: 'a6'=>'<< /PageSize [298.75 421.1] >> setpagedevice',
500: };
501: if ($paper ne 'letter') {
1.69 matthew 502: open(FFH,'<',$ps_file) || die "Couldn't open ps file $ps_file for reading: $!\n";
1.63 sakharuk 503: my $new_ps_file='new'.$ps_file;
1.69 matthew 504: open(FFHS,'>',$new_ps_file) || die "Couldn't open new ps file $new_ps_file for reading: $!\n";
1.67 sakharuk 505: print FFHS $addtoPSfile->{$paper}."\n";
1.63 sakharuk 506: while (<FFH>) {
507: print FFHS $_;
508: }
1.62 sakharuk 509: close(FFH);
1.63 sakharuk 510: close(FFHS);
511: $ps_file=$new_ps_file;
1.62 sakharuk 512: }
1.141 foxr 513: &busy_wait_command("ps2pdf13 $ps_file $pdf_file 1>/dev/null 2>/dev/null",
1.59 albertel 514: "for $status_statement now Converting PS to PDF",
515: \%prog_state,$pdf_file);
516:
1.29 sakharuk 517: my $texlog = $texfile;
518: my $texaux = $texfile;
519: my $texdvi = $texfile;
520: my $texps = $texfile;
521: $texlog =~ s/\.tex/\.log/;
522: $texaux =~ s/\.tex/\.aux/;
523: $texdvi =~ s/\.tex/\.dvi/;
524: $texps =~ s/\.tex/\.ps/;
525: my @garb = ($texlog,$texaux,$texdvi,$texps);
1.22 sakharuk 526: # unlink @garb;
1.120 albertel 527: unlink($duefile);
1.68 sakharuk 528: print "<a href=\"/prtspool/$pdf_file\">$link_text - click here to download pdf</a>";
1.29 sakharuk 529: print "\n";
530: }
1.120 albertel 531: unlink($missfonts_file);
1.119 foxr 532:
1.63 sakharuk 533: }
1.29 sakharuk 534: } else {
535: print "LaTeX file $texfile was not created successfully";
1.14 sakharuk 536: }
1.43 sakharuk 537: }
1.45 sakharuk 538: print "<br />";
1.44 sakharuk 539: if ($number_of_files>1) {
1.45 sakharuk 540: my $zipfile=$texfile[0];
541: $zipfile=~s/\.tex/\.zip/;
542: my $statement="zip $zipfile";
1.44 sakharuk 543: foreach my $file (@texfile) {
1.45 sakharuk 544: $file=~s/\.tex/.\pdf/;
545: $statement.=' '.$file;
1.44 sakharuk 546: }
1.49 albertel 547: print("<pre>Zip Output:\n");
548: system($statement);
549: print("</pre>");
1.123 albertel 550: $zipfile=~s{^\Q$perlvar{'lonPrtDir'}\E}{/prtspool};
1.49 albertel 551: print "<br /> A <a href=\"$zipfile\">ZIP file</a> of all the PDFs.";
1.44 sakharuk 552: }
1.92 albertel 553: if ($advanced_role) { &Apache::lonhtmlcommon::Close_PrgWin('',\%prog_state); }
1.97 albertel 554: print(&Apache::loncommon::end_page());
1.59 albertel 555: my $done;
1.102 foxr 556:
1.59 albertel 557: sub REAPER {
558: $done=1;
559: }
1.129 foxr 560: #
561: # Execute a command updating the status window as the command's
562: # output file builds up (at intervals of a second).
563: #
564: # If the timeout argument defined, then if that many seconds
565: # elapses without an increase in the size of the output file,
566: # the command will be killed (this deals with the case when
567: # latex crawls into an infinite loop).
568: #
1.59 albertel 569: sub busy_wait_command {
1.129 foxr 570: my ($command,$message,$progress_win,$output_file, $timeout)=@_;
1.59 albertel 571:
572: $SIG{CHLD} = \&REAPER;
573: $done=0;
574: my $pid=open(CMD,"$command |");
1.92 albertel 575: if ($advanced_role) {
1.60 albertel 576: &Apache::lonhtmlcommon::Update_PrgWin('',$progress_win,$message);
577: }
1.129 foxr 578: my $last_size = 0;
579: my $unchanged_time = 0;
1.59 albertel 580: while(!$done) {
581: sleep 1;
582: my $extra_msg;
583: if ($output_file) {
584: my $size=(stat($output_file))[7];
585: $extra_msg=", $size bytes generated";
1.129 foxr 586: if ($size == $last_size) {
587: $unchanged_time++;
588: if ($timeout && ($unchanged_time > $timeout)) {
1.132 www 589: print "<h1>Operation timed out!</h1>\n";
1.131 www 590: print "<p>Executing $command, the output file $output_file did not grow\n";
1.130 foxr 591: print "after $timeout seconds. This <em>may</em> indicate $command\n";
1.131 www 592: print "is in an infinite loop.\n";
593: print "See if printing fewer copies helps. Please contact LON-CAPA\n";
594: print "support about this in any event.";
1.130 foxr 595: print "</p>";
1.129 foxr 596: kill(9, $pid); # Reaper will do the rest...I hope there's errors in the log.
597: }
598: } else {
599: $last_size = $size;
600: $unchanged_time = 0;
601: }
1.59 albertel 602: }
1.92 albertel 603: if ($advanced_role) {
1.60 albertel 604: &Apache::lonhtmlcommon::Update_PrgWin('',$progress_win,
605: $message.$extra_msg);
606: }
1.59 albertel 607: }
608: $SIG{CHLD}='IGNORE';
609: close(CMD);
610: }
1.1 sakharuk 611:
1.135 foxr 612: # Make the dvi file (or rather try to), from the latex file and the
613: # various bits and pieces that control how the latex file is processed:
614: # LaTeX is run as many times a needed to make this all happen... this may
615: # result in several runs of LaTeX that just are errors if the LaTeX is
1.136 bisitz 616: # bad, but the printing subsystem is _supposed_ to not do that.
1.135 foxr 617: #
618: # Parameters:
619: # name_file - Name of the LaTeX file to process.
620: # dvi_file - Name of resulting dvi file.
621: # tableofcontents - "yes" if we are supposed to make a table of contents.
622: # tableofindex - "yes" if we are suposed to make an index.
623: # status_statement - Part of the status statement for ths status window.
624: # prog_state - Reference to the program state hash.
625: # busy_wait_timeout- Seconds without any progress that imply a problem.
626: #
627: #
628: sub make_dvi_file {
629: my ($name_file,
630: $dvi_file,
631: $tableofcontents,
632: $tableofindex,
633: $status_statement,
634: $prog_state,
635: $busy_wait_timeout) = @_;
636:
637:
638: &busy_wait_command("latex $name_file 1>/dev/null 2>/dev/null",
639: "for $status_statement now LaTeXing file",
640: $prog_state,$dvi_file, $busy_wait_timeout);
641:
642: # If the tableof contents was requested, we need to run
643: # LaTex a couple more times to get all the references sorted out.
644:
645: if ($tableofcontents eq 'yes') {
646: &busy_wait_command("latex $name_file 1>/dev/null 2>/dev/null",
647: "for $status_statement First LaTeX of file for table of contents",
648: $prog_state,$dvi_file, $busy_wait_timeout);
649: &busy_wait_command("latex $name_file 1>/dev/null 2>/dev/null",
650: "for $status_statement Second LaTeX of file for table of contents",
651: $prog_state,$dvi_file,$busy_wait_timeout);
652: }
653:
654: # And makeindex and another run of LaTeX to incorporate it if the index
655: # is enabled.
656:
657:
658: if ($tableofindex eq 'yes') {
659: my $idxname=$name_file;
660: $idxname=~s/\.tex$/\.idx/;
661: &busy_wait_command("makeindex $idxname",
662: "making index file",
663: $prog_state,$idxname);
664: &busy_wait_command("latex $name_file 1>/dev/null 2>/dev/null",
665: "for $status_statement now LaTeXing file for index section",
666: $prog_state,$dvi_file, $busy_wait_timeout);
667: }
668:
669: }
670:
671:
1.102 foxr 672: # Repagninate
1.99 foxr 673: # What we need to do:
674: # - Count the number of pages in each student.
1.102 foxr 675: # - Rewrite the latex file replacing the \specials that
676: # mark the end of student with an appropriate number of newlines.
677: # parameters:
678: # psfile - Postscript filename
679: # latexfile - LaTeX filename
680: # columns - number of columns.
681: sub repaginate {
1.100 foxr 682:
683: # We will try to do this in 2 passes through the postscript since
684: # the postscript is potentially large, to do 2 passes, the first pass
685: # must be able to calculate the total number of document pages so that
686: # at the beginning of the second pass we already know how to replace
687: # %%Pages:
688:
689: # Figure out
690: # 1. Number of pages in the document
691: # 2. Maximum number of pages in a student
692: # 3. Number of pages in each student.
1.99 foxr 693:
1.102 foxr 694: my ($postscript_filename, $latex_filename, $num_columns) = @_;
1.99 foxr 695: open(PSFILE, "<$postscript_filename");
1.100 foxr 696: my $line;
697: my $total_pages; # Total pages in document.
698: my $seen_pages = 0; # There are several %%Pages only the first is useful
699: my @pages_in_student; # For each student his/her initial page count.
700: my $max_pages = 0; # Pages in 'longest' student.
1.102 foxr 701: my $page_number = 0;
1.104 foxr 702: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
1.110 albertel 703: &mt("Counting pages for student: [_1]",1));
1.104 foxr 704:
1.100 foxr 705: while ($line = <PSFILE>) {
706:
707: # Check for total pages (%%Pages:)
708:
1.101 albertel 709: if (($line =~ /^%%Pages:/) && (!$seen_pages)) {
1.100 foxr 710: my @pageinfo = split(/ /,$line);
711: $total_pages = $pageinfo[1];
712: $seen_pages = 1;
713: }
714: # Check for %%Page: n m $page_number will be the
715: # biggest of these until we see an endofstudent.
716: # Note that minipages generate spurious %Page: 1 1's so
717: # we only are looking for the largest n (n is page number at the
718: # bottom of the page, m the page number within the document.
719: #
1.102 foxr 720:
1.127 albertel 721: if ($line =~ /^%%Page:\s+\d+\s+\d+/) {
1.120 albertel 722: my @pageinfo = split(/\s+/, $line);
1.100 foxr 723: if ($page_number < $pageinfo[1]) {
724: $page_number = $pageinfo[1];
1.110 albertel 725: } elsif ($pageinfo[2] ne 1) {
726: # current page count reset, and it's not because of a
727: # minipage
728: # - save the page_number, reset and, if necessary
729: # update max_pages.
730: push(@pages_in_student, $page_number);
731: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
732: &mt("Counting pages for student: [_1]", scalar(@pages_in_student)));
733: if ($page_number > $max_pages) {
734: $max_pages = $page_number;
735: }
736: $page_number = $pageinfo[1];
1.100 foxr 737: }
738: }
739:
740:
741: }
1.110 albertel 742: # file ended so one more student
743: push(@pages_in_student, $page_number);
744: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
745: &mt("Counting pages for student: [_1]",scalar(@pages_in_student)));
746: if ($page_number > $max_pages) {
747: $max_pages = $page_number;
748: }
749: $page_number = 0;
750:
1.99 foxr 751: close(PSFILE);
1.102 foxr 752:
753: # If 2 columns, max_pages must go to an even number of columns:
1.103 foxr 754:
1.102 foxr 755:
756: if ($num_columns == 2) {
757: if ($max_pages % 2) {
758: $max_pages++;
759: }
760: }
1.100 foxr 761:
1.102 foxr 762: # Now rewrite the LaTex file, substituting our \special
763: # with an appropriate number of \newpage directives.
764:
765: my $outfilename = $latex_filename."temp";
766:
767: open(LATEXIN, "<$latex_filename");
768: open(LATEXOUT, ">$outfilename");
769:
770:
1.110 albertel 771: my $student_number = 0; # Index of student we're working on.
1.104 foxr 772: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
773: "Repaginating student ".$student_number+1);
1.102 foxr 774:
775: while (my $line = <LATEXIN>) {
776: if ($line eq "\\special{ps:ENDOFSTUDENTSTAMP}\n") {
777: # only end of student stamp if next line is ENDOFSTUDENTSTAMP:
778:
779:
780: # End of student replace with 0 or more newpages.
781:
782: my $addlines = $max_pages - $pages_in_student[$student_number];
783: while($addlines) {
1.108 albertel 784: print LATEXOUT '\clearpage \strut \clearpage';
1.105 foxr 785:
1.102 foxr 786: $addlines--;
1.100 foxr 787: }
1.102 foxr 788:
1.100 foxr 789: $student_number++;
1.104 foxr 790: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
791: "Repaginating student ".$student_number+1);
1.102 foxr 792:
793: } else {
794: print LATEXOUT $line;
1.100 foxr 795: }
796: }
797:
1.102 foxr 798: close(LATEXIN);
799: close(LATEXOUT);
1.108 albertel 800: rename($outfilename, $latex_filename);
1.100 foxr 801:
1.99 foxr 802: }
1.4 sakharuk 803:
1.115 foxr 804: #
805: # Create missing fonts given a latex missfonts.log file.
806: # This file will have lines like:
807: #
808: # mktexpk --mfmode ljfour --bdpi 8000 --mag 1+0/8000 --dpi 8000 tcrm0500
809: #
810: # We want to execute those lines with the 8000's changed to 600's
811: # in order to match the resolution of the ljfour printer.
812: # Of course if some wiseguy has changed the default printer from ljfour
813: # in the dvips's config.ps file that will break so we'll also
814: # ensure that --mfmode is ljfour.
815: #
816: sub create_missing_fonts {
817: my ($fontfile, $state) = @_;
818:
819: # Open and read in the font file..we'll read it into the array
820: # font_commands.
821: #
1.118 albertel 822: open(my $font_handle, $fontfile);
1.115 foxr 823: my @font_commands = <$font_handle>;
1.118 albertel 824:
825: # make the list contain each command only once
826: my %uniq;
827: @font_commands = map { $uniq{$_}++ == 0 ? $_ : () } @font_commands;
1.115 foxr 828:
829: # Now process each command replacing the appropriate 8000's with
830: # 600's ensuring that font names with 8000's in them are not corrupted.
831: # and if the --mfmode is not ljfour we turn it into ljfour.
832: # Then we execute the command.
833: #
1.118 albertel 834:
1.115 foxr 835: foreach my $command (@font_commands) {
1.116 albertel 836: #print("<br />Raw command: $command");
1.115 foxr 837: $command =~ s/ 8000/ 600/g; # dpi directives.
838: $command =~ s/\/8000/\/600/g; # mag directives.
1.116 albertel 839: #print("<br />After dpi replacements: $command");
1.115 foxr 840:
841: my @cmdarray = split(/ /,$command);
842: for (my $i =0; $i < scalar(@cmdarray); $i++) {
843: if ($cmdarray[$i] eq '--mfmode') {
844: $cmdarray[$i+1] = "ljfour";
845: }
846: }
1.116 albertel 847: #print("<br /> before reassembly : (@cmdarray)");
1.115 foxr 848: $command = join(" ", (@cmdarray));
849:
1.116 albertel 850: #print("<br />Creating fonts via command: $command");
1.118 albertel 851: &busy_wait_command("$command 1>/dev/null 2>/dev/null",
1.115 foxr 852: "Creating missing font",
1.124 albertel 853: $state);
1.115 foxr 854:
855: }
856:
857: }
1.133 foxr 858: #
859: # Convert a figure file to encapsulated postscript:
860: # At present, this is using a lot of file scoped globals to pass data around.
861: # Parameters:
862: # not_eps - The name of the file to convert which, presumably, is not
863: # already an eps file.
864: #
865: sub convert_figure {
866: my ($not_eps) = @_;
1.141 foxr 867: &debug("in convert_figure");
1.133 foxr 868:
869: my $status_statement='EPS picture for '.$not_eps;
870: my $eps_f = $not_eps;
1.134 foxr 871:
1.133 foxr 872: if ($eps_f=~/\/home\/([^\/]+)\/public_html\//) {
873: $eps_f=~s/\/home\/([^\/]+)\/public_html/$1/;
874: } elsif ($eps_f=~/$perlvar{'lonDocRoot'}\/res\//) {
1.134 foxr 875: $eps_f=~ s/$perlvar{'lonDocRoot'}\/res\/(.+)/$1/;
1.133 foxr 876: } elsif ($eps_f=~/$perlvar{'lonUsersDir'}\//) {
1.134 foxr 877: $eps_f=~ s/$perlvar{'lonUsersDir'}\/([^\/]+)\/\w\/\w\/\w\/(.+)/$1\/$2/;
1.133 foxr 878: }
1.134 foxr 879:
880: $eps_f = $perlvar{'lonPrtDir'}.'/'.$eps_f;
881:
882: # Spaces are problematic for system commands and LaTeX, replace with _
883:
884: $eps_f =~ s/ /\_/g;
885:
1.133 foxr 886: #
1.134 foxr 887: # If the file is already an .eps or .ps file (eps_f still has the original
888: # file type),
1.133 foxr 889: # We really just need to copy it from where it was to prtspool
890: # but with the spaces substituted to _'s.
891: #
1.134 foxr 892: my ($nsname,$path, $sext) = &fileparse($eps_f, qr/\.(ps|eps)/i);
1.133 foxr 893: if ($sext =~/ps$/i) {
894: &File::Path::mkpath($path,0,0777);
895: copy("$not_eps", "$eps_f");
896: } else {
897:
898: $eps_f .= '.eps'; # Just append the eps ext.
1.134 foxr 899: my $path= &dirname($eps_f);
1.133 foxr 900: &File::Path::mkpath($path,0,0777);
901: $not_eps =~ s/^\s+//;
902: $not_eps =~ s/\s+$//;
903: $not_eps =~ s/ /\\ /g;
904: if ($advanced_role) {
905: my $prettyname=$not_eps;
906: $prettyname=~s|/home/([^/]+)/public_html|/priv/$1|;
907: $prettyname=~s|$perlvar{'lonDocRoot'}/|/|;
908: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
909: 'Converting to EPS '.$prettyname);
910: }
1.141 foxr 911: #
912: # If the file is a PDF, need to use pdftops to convert it to a ps file.
913: # otherwise use imagemagik:
914: #
915: if($not_eps =~/\.(pdf|PDF)$/) {
916:
917: #
918: # For whatever reason, pure postscript conversions have to be
919: # in the same dir as the base file:
920: #
921: $eps_f = &basename($eps_f);
922: $eps_f = $perlvar{'lonPrtDir'}.'/'.$eps_f;
923:
924: &debug("Converting pdf $not_eps to postscript: $eps_f");
925: system("pdftops $not_eps $eps_f");
926: } else {
927: system("convert $not_eps $eps_f");
928: }
1.134 foxr 929:
1.133 foxr 930: if (not -e $eps_f) {
931: # converting an animated gif creates either:
932: # anim.gif.eps.0
933: # or
934: # anim.gif-0.eps
935: for (my $i=0;$i<10000;$i++) {
936: if (-e $eps_f.'.'.$i) {
937: rename($eps_f.'.'.$i, $eps_f);
938: last;
939: }
940: my $anim_eps = $eps_f;
941: $anim_eps =~ s/(\.[^.]*)\.eps$/$1-$i\.eps/i;
942: if (-e $anim_eps) {
943: rename($anim_eps, $eps_f);
944: last;
945: }
946: }
947: }
948:
949: # imagemagick 6.2.0-6.2.7 fails to properly handle
950: # convert anim.gif anim.gif.eps
951: # it creates anim.eps instead.
952: if (not -e $eps_f) {
953: my $eps_f2 = $eps_f;
954: $eps_f2 =~ s/\.[^.]*\.eps$/\.eps/i;
955: if(-e $eps_f2) {
956: rename($eps_f2,$eps_f);
957: }
958: }
959: }
960:
961: }
1.135 foxr 962: #
963: # Analyze a LaTeX logfile producing appropriate output on error and
964: # returning a boolean to let the caller know if, in our opinion, it's
965: # worth continuing on to produce the PDF file.
966: #
967: # Parameters:
968: # logfilename - Name of the logfile.
969: # texfile - Name of the LaTeX file that was being processed.
970: # advanced_role - True if the user is privileged with respect to the printout
971: # (e.g. is the course coordinator or some such thing).
972: # Returns:
973: # 1 - Caller is advised to continue to create the PDF.
974: # 0 - Caller need not bother creating the PDF.
975: # Side Effects:
976: # Messages are printed to describe any errors that have been encountered.
977: # NOTE:
978: # The current policy is to assume that if LaTeX decided to insert some text
979: # it has salvaged the resource and the resource can be printed.. in that case
980: # a message is emitted from this sub.
981: #
982: sub analyze_logfile {
983: my ($logfilename, $texfile, $advanced_role) = @_;
984:
985: my $temporary_file=IO::File->new($logfilename) || die "Couldn't open log file $logfilename for reading: $!\n";
986: my @content_of_file = <$temporary_file>;
987: close $temporary_file;
988: my $body_log_file = join(' ',@content_of_file);
989: $logfilename =~ s/\.log$/\.html/;
990: $temporary_file = IO::File->new('>'.$logfilename);
991: print $temporary_file '<html><head><title>LOGFILE</title></head><body><pre>'.$body_log_file.'</pre></body></html>'."\n";
992: if ($body_log_file=~m/!\s+Emergency stop/) {
993: my $whereitbegins = rindex $body_log_file,'STAMPOFPASSEDRESOURCESTART';
994: my $whereitends = rindex $body_log_file,'STAMPOFPASSEDRESOURCEEND';
995: my $badresource;
996: my $badtext;
997: if ($whereitbegins!=-1 and $whereitends!=-1) {
998: $badtext = substr($body_log_file,$whereitbegins+26, $whereitends-$whereitbegins-26);
999: $whereitbegins = rindex $badtext,'located in';
1000: if ($whereitbegins != -1) {
1001:
1002: $badresource = substr($badtext, $whereitbegins+27,
1003: length($badtext) - $whereitbegins - 48);
1004: # print "<br />failing resourcename: $badresource<br />";
1005: }
1.136 bisitz 1006: }
1.135 foxr 1007:
1008: # Guys with privileged roles get a more detailed error output:
1009:
1010: if ($advanced_role) {
1011: #LaTeX failed to parse tex file
1.138 biermanm 1012: print "<h2>".&mt('LaTeX could not successfully parse your TeX file.')."</h2>";
1.136 bisitz 1013: print &mt('It probably has errors in it.')."<br />";
1014: if ($badtext) {
1015: print &mt('With very high probability this error occured in [_1].',$badtext)
1016: ."<br /><br />";
1017: }
1018: print &mt('Here are the error messages in the LaTeX log file:')
1019: ."<br /><pre>";
1.135 foxr 1020:
1021: my $sygnal = 0;
1022: for (my $i=0;$i<=$#content_of_file;$i++) {
1023: if ($content_of_file[$i]=~m/^Runaway argument?/ or $content_of_file[$i]=~m/^!/) {
1024: $sygnal = 1;
1025: }
1026: if ($content_of_file[$i]=~m/Here is how much of/) {
1027: $sygnal = 0;
1028: }
1029: if ($sygnal) {
1030: print "$content_of_file[$i]";
1031: }
1032: }
1033: print "</pre>\n";
1034: # print "<br /> Advanced role <br />";
1035: $logfilename=~s{^\Q$perlvar{'lonPrtDir'}\E}{/prtspool};
1.136 bisitz 1036: print "<b><big>"
1037: .&mt('The link to [_1]Your log file[_2]','<a href="'.$logfilename.'">','</a>')
1038: ."</big></b>\n";
1.135 foxr 1039: #link to original LaTeX file
1040: my $tex_temporary_file=IO::File->new($texfile) || die "Couldn't open tex file $texfile for reading: $!\n";
1041: my @tex_content_of_file = <$tex_temporary_file>;
1042: close $tex_temporary_file;
1043: my $body_tex_file = join(' ',@tex_content_of_file);
1044: $texfile =~ s/\.tex$/aaaaa\.html/;
1045: $tex_temporary_file = IO::File->new('>'.$texfile);
1046: print $tex_temporary_file '<html><head><title>LOGFILE</title></head><body><pre>'.$body_tex_file.'</pre></body></html>'."\n";
1047: print "<br /><br />";
1048: $texfile=~s{^\Q$perlvar{'lonPrtDir'}\E}{/prtspool};
1.136 bisitz 1049: print "<b><big>"
1050: .&mt('The link to [_1]Your original LaTeX file[_2]','<a href="'.$texfile.'">','</a>')
1051: ."</big></b><br /><br />\n";
1052: my $help_text = &Apache::loncommon::help_open_topic("Print_Resource", &mt('Help on printing'));
1.135 foxr 1053: print ("$help_text");
1054:
1055: # Students on the other hand get a minimal error message, since they won't
1056: # be able to correct the error message. A message is sent to the
1057: # instructor:
1058:
1059: } else { # Student role...
1060: # at this point:
1061: # $body_log_file - contains the log file.
1062: # $name_file - is the name of the LaTeX file.
1063: # $identifier - is the unique LaTeX identifier.l
1064:
1.142 bisitz 1065: print '<p class="LC_error">';
1.136 bisitz 1066: if ($badtext) {
1067: print &mt('There are errors in [_1].',$badtext);
1068: } else {
1069: print &mt('There are errors.');
1070: }
1.142 bisitz 1071: print '</p>'
1072: .&mt('These errors prevent this resource from printing correctly.');
1073:
1.135 foxr 1074: my $tex_handle = IO::File->new($texfile);
1075: my @tex_contents = <$tex_handle>;
1076: &send_error_mail($identifier, $badresource, $body_log_file, \@tex_contents);
1.136 bisitz 1077: print "<p>"
1078: .&mt('A message has been sent to the instructor describing this failure.')
1079: ."</p>";
1080: my $help_text = &Apache::loncommon::help_open_topic("Print_Resource", &mt('Help on printing'));
1.135 foxr 1081: print ("$help_text");
1082:
1083: }
1084:
1085: # Either way, an emergency stop does not allow us to continue so:
1086:
1087: return 0;
1088:
1089: # The branch of code below is taken if it appears that
1090: # there was no emergency stop but LaTeX had to correct the
1091: # input file to run.
1092: # In that case we need to provide error feedback, as the correction >may< not be
1093: # sufficient, we can let the game continue as there's a dvi file to process.
1094:
1095: } elsif ($body_log_file=~m/<inserted text>/) {
1096: my $whereitbegins = index $body_log_file,'<inserted text>';
1.136 bisitz 1097: print &mt('You are running LaTeX in [_1]batch mode[_2].','<b>','</b>');
1.135 foxr 1098: while ($whereitbegins != -1) {
1099: my $tempobegin=$whereitbegins;
1100: $whereitbegins = rindex $body_log_file,'STAMPOFPASSEDRESOURCESTART',$whereitbegins;
1101: my $whereitends = index $body_log_file,'STAMPOFPASSEDRESOURCEEND',$whereitbegins;
1.136 bisitz 1102: print "<br />"
1103: .&mt('It has found an error in [_1][_2]and corrected it.',substr($body_log_file,$whereitbegins+26,$whereitends-$whereitbegins-26),"<br />")."\n";
1104: print &mt('Usually this correction is valid but you probably need to check the indicated resource one more time and implement neccessary corrections by yourself.')."\n";
1.135 foxr 1105: $whereitbegins = index $body_log_file,'<inserted text>',$tempobegin+10;
1106: }
1107:
1108: if ($advanced_role) {
1109: print "<br /><br />";
1110: $logfilename=~s{^\Q$perlvar{'lonPrtDir'}\E}{/prtspool};
1.136 bisitz 1111: print "<b><big>"
1112: .&mt('The link to [_1]Your log file[_2]'
1.137 raeburn 1113: ,'<a href="'.$logfilename.'">','</a>')
1.136 bisitz 1114: ."</big></b>\n";
1.135 foxr 1115: #link to original LaTeX file
1116: my $tex_temporary_file=IO::File->new($texfile) || die "Couldn't open tex file $texfile for reading: $!\n";
1117: my @tex_content_of_file = <$tex_temporary_file>;
1118: close $tex_temporary_file;
1119: my $body_tex_file = join(' ',@tex_content_of_file);
1120: $texfile =~ s/\.tex$/aaaaa\.html/;
1121: $tex_temporary_file = IO::File->new('>'.$texfile);
1122: print $tex_temporary_file '<html><head><title>LOGFILE</title></head><body><pre>'.$body_tex_file.'</pre></body></html>'."\n";
1123: print "<br /><br />";
1124: $texfile=~s{^\Q$perlvar{'lonPrtDir'}\E}{/prtspool};
1.136 bisitz 1125: print "<b><big>"
1126: .&mt('The link to [_1]Your original LaTeX file[_2]','<a href="'.$texfile.'">','</a>');
1127: print "</big></b>\n";
1.135 foxr 1128: }
1129: return 1;
1130: }
1131: return 1; # NO log file issues at all.
1132: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>