Changeset 2346


Ignore:
Timestamp:
2001-05-01T17:29:48+12:00 (23 years ago)
Author:
jrm21
Message:

newer version of pdftohtml from upstream uses image.log instead of images.log,
so we check for both (for now...) as I am using some features from v0.31 in
our current pdftohtml (based on v0.22).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/bin/script/pdftohtml.pl

    r2289 r2346  
    210210
    211211
    212     open (IMAGES, "images.log");
     212    open (IMAGES, "images.log") ||
     213    open (IMAGES, "image.log") ||
     214          print STDERR "Error opening image log:$!\n";
    213215    while (<IMAGES>) {
    214216    push (@images, $_);
    215217    }
    216218    close IMAGES;
    217    
     219
    218220    for $image (@images) {
    219221    chomp($image);
Note: See TracChangeset for help on using the changeset viewer.