--- trunk2/all2all.pl 2004/10/10 17:21:17 503 +++ trunk2/all2all.pl 2004/10/10 17:36:43 504 @@ -138,11 +138,18 @@ $words =~ s/\W*\s+\W*/ /g; $words =~ s/\W+$//; + # first try to generate headline for this entry from index + my $h = shift @{$ds->{'index'}}; + # then, from display + $h ||= shift @{$ds->{'display'}}; + # and as last resport, fallback to headline + $h ||= $headline; + $index->insert( index_name => $ds->{'tag'}, #path => $f, path => $webpac->mfn, - headline => $headline, + headline => $h, words => $words, ); }