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/WordPlug.pm

    r6408 r9465  
    7474sub process {
    7575    my $self = shift (@_);
     76    #my ($textref, $pluginfo, $base_dir, $file, $metadata, $doc_obj, $gli) = @_;
    7677
    77     my $outhandle = $self->{'outhandle'};    
     78    my $outhandle = $self->{'outhandle'};
    7879    print $outhandle "WordPlug: passing $_[3] on to $self->{'converted_to'}Plug\n"
    7980    if $self->{'verbosity'} > 1;
    80    
     81    print STDERR "<Processing n='$_[3]' p='WordPlug'>\n" if ($_[6]);
     82
    8183    return ConvertToPlug::process_type($self,"doc",@_);
    8284}
Note: See TracChangeset for help on using the changeset viewer.