--- trunk/run.pl 2006/09/25 13:08:17 702 +++ trunk/run.pl 2006/09/25 14:06:49 706 @@ -8,7 +8,6 @@ use WebPAC::Common 0.02; use WebPAC::Parser 0.04; -use WebPAC::Lookup 0.03; use WebPAC::Input 0.11; use WebPAC::Store 0.03; use WebPAC::Normalize 0.11; @@ -316,10 +315,14 @@ my $input_module = $config->webpac('inputs')->{$type}; + my @lookups = $parser->have_lookup_create($database, $input); + $log->info("working on input '$input->{name}' in $input->{path} [type: $input->{type}] using $input_module", - $input->{lookup} ? "lookup '$input->{lookup}'" : "" + @lookups ? "lookup ".join(", ", @lookups) : "" ); +warn "lookups = ", dump( @lookups ); + if ($stats) { # disable modification of records if --stats is in use delete($input->{modify_records});