Changeset 12833


Ignore:
Timestamp:
2006-09-22T16:01:31+12:00 (18 years ago)
Author:
kjdon
Message:

we don't want textcat to be run for isis files. we assume ascii encoding unless the user has specified an encoding

File:
1 edited

Legend:

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

    r12715 r12833  
    109109    my $self = new SplitPlug($pluginlist, $inputargs, $hashArgOptLists);
    110110
     111    # isis plug doesn't care about encoding - it assumes ascii unless the user
     112    # has specified an encoding
     113    if ($self->{'input_encoding'} eq "auto") {
     114    $self->{'input_encoding'} = "ascii";
     115    }
    111116    return bless $self, $class;
    112117}
Note: See TracChangeset for help on using the changeset viewer.