Use correct term prefixes when searching.
The Z term prefix is for stemming and shouldn't be used here. X is for custom fields.master
parent
c7b400af42
commit
e3b0584a49
|
@ -123,9 +123,9 @@ sub index (@) { #{{{
|
|||
$tg->index_text($caption, 2);
|
||||
$tg->index_text($title, 2) if $title ne $caption;
|
||||
$tg->index_text($toindex);
|
||||
$tg->index_text(lc($title), 1, "ZS"); # for title:foo
|
||||
$tg->index_text(lc($title), 1, "S"); # for title:foo
|
||||
foreach my $link (@{$links{$params{page}}}) {
|
||||
$tg->index_text(lc($link), 1, "ZLINK"); # for link:bar
|
||||
$tg->index_text(lc($link), 1, "XLINK"); # for link:bar
|
||||
}
|
||||
|
||||
$doc->add_term($pageterm);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$setmap{prefix,title,S}
|
||||
$setmap{prefix,link,LINK}
|
||||
$setmap{prefix,link,XLINK}
|
||||
$set{thousand,$.}$set{decimal,.}$setmap{BN,,Any Country,uk,England,fr,France}
|
||||
${
|
||||
$def{PREV,
|
||||
|
|
Loading…
Reference in New Issue