[LON-CAPA-cvs] cvs: loncom /interface printout.pl
albertel
lon-capa-cvs@mail.lon-capa.org
Mon, 12 Aug 2002 18:07:20 -0000
albertel Mon Aug 12 14:07:20 2002 EDT
Modified files:
/loncom/interface printout.pl
Log:
- better english
Index: loncom/interface/printout.pl
diff -u loncom/interface/printout.pl:1.14 loncom/interface/printout.pl:1.15
--- loncom/interface/printout.pl:1.14 Tue Aug 6 12:11:05 2002
+++ loncom/interface/printout.pl Mon Aug 12 14:07:20 2002
@@ -73,12 +73,12 @@
print "\n";
} else {
print "<h1>LaTeX could not successfully parse your tex file.</h1>";
- print "<h2>Probably, you have errors in it.</h2>";
+ print "<h2>It probably has errors in it.</h2>";
my $logfilename = $texfile;
$logfilename =~ s/\.tex$/\.log/;
if (-e $logfilename) {
#if dvi file does not exist = LaTeX failed to parse tex file
- print "To give you a clue we show you a few lines from the LaTeX log file</br>";
+ print "Her are the error messages in the LaTeX log file</br>";
my $temporary_file=IO::File->new($logfilename) || die "Couldn't open file for reading: $!\n";
my @content_of_file = <$temporary_file>;
close $temporary_file;