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