Ignore:
Timestamp:
2005-03-18T14:10:58+13:00 (19 years ago)
Author:
kjdon
Message:

ConvertToPlug now accepts the gli arg in read() and passes it in process(), and all the convert plugins now print a processing message for gli in their process() method.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/plugins/PSPlug.pm

    r8171 r9465  
    169169sub process {
    170170    my $self = shift (@_);
    171     my ($trash, $trash2, $path, $file, $trash3, $doc) = @_;
     171    my ($trash, $trash2, $path, $file, $trash3, $doc, $gli) = @_;
    172172
    173173    my $outhandle = $self->{'outhandle'};
    174174    print $outhandle "PSPlug: passing $_[3] on to $self->{'converted_to'}Plug\n"
    175175    if $self->{'verbosity'} > 1;
    176    
     176    print STDERR "<Processing n='$_[3]' p='PDFPlug'>\n" if ($gli);
     177
    177178    &extract_metadata_from_postscript($self,"$path/$file", $doc);
    178179
Note: See TracChangeset for help on using the changeset viewer.