Ignore:
Timestamp:
2000-07-13T10:21:53+12:00 (24 years ago)
Author:
sjboddie
Message:

merged changes to trunk into New_Config_Format branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/New_Config_Format-branch/gsdl/perllib/plugins/RecPlug.pm

    r809 r1279  
    3838}
    3939
     40use strict;
     41
    4042sub new {
    4143    my ($class) = @_;
    42     my $self = new BasPlug ();
     44    my $self = new BasPlug ("RecPlug", @_);
    4345
    4446    $self->{'exclude_tail_dirs'} = []; # empty by default
     
    6264    my ($pluginfo, $base_dir, $file, $metadata, $processor, $maxdocs) = @_;
    6365
    64     foreach $etd ( @{$self->{'exclude_tail_dirs'}} )
     66    foreach my $etd ( @{$self->{'exclude_tail_dirs'}} )
    6567    {
    6668    return 0 if ($file =~ m/$etd/);
     
    7274
    7375    # see if this is a directory
    74     $dirname = &util::filename_cat ($base_dir, $file);
     76    my $dirname = &util::filename_cat ($base_dir, $file);
    7577    if (-d $dirname) {
    7678
Note: See TracChangeset for help on using the changeset viewer.