--- EPrints/index.pl 2007/06/29 14:53:14 8 +++ EPrints/index.pl 2007/06/29 18:46:45 13 @@ -3,7 +3,9 @@ use strict; use Semantic::API; use Data::Dump qw/dump/; + use EPrints qw/_x/; + use lib '/home/dpavlin/stem-hr/'; use StemHR; @@ -51,7 +53,9 @@ warn "body: $body\n" if $debug; - $indexer->index( $row->{id}, join(" ", @body, $body ) ); + $body .= EPrints->fulltext_content; + + $indexer->index( $row->{id}, join(" ", @body, $body ) ); $total++; print STDERR _x( $row->{id}, " ", $row->{title} ), "\n"; }