Ignore:
Timestamp:
2010-12-09T00:10:10+13:00 (13 years ago)
Author:
max
Message:

Setting the values to store as block files is now done through an API call to BasePlugin. This way, anything uniform requirement (such as putting in both C:\... and c:\... entries for Windows) can be done in one place.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/plugins/ISISPlugin.pm

    r20778 r23419  
    136136    print STDERR "$self->{'fdt_file_path'}\n";
    137137    my $fdt_file = $self->{'fdt_file_path'};
    138     $block_hash->{'file_blocks'}->{$fdt_file} = 1;
     138    $self->block_filename($block_hash,$fdt_file);
    139139    }
    140140    if (-e $self->{'xrf_file_path'}) {
    141141    print STDERR "$self->{'xrf_file_path'}\n";
    142142    my $xrf_file = $self->{'xrf_file_path'};
    143     $block_hash->{'file_blocks'}->{$xrf_file} = 1;
     143    $self->block_filename($block_hash,$xrf_file);
    144144    }
    145145   
Note: See TracChangeset for help on using the changeset viewer.