Fix + weighted word support on stas-parse action

This commit is contained in:
Starbeamrainbowlabs 2019-12-15 20:03:04 +00:00
parent c80f26962e
commit 6f4b1a62e9
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
3 changed files with 12 additions and 1 deletions

View File

@ -3,6 +3,9 @@ This file holds the changelog for Pepperminty Wiki. This is the master list of t
## v0.21-dev
## Fixed
- Fixed weighted word support on search query analysis debug page
## Changed
- Improved the search indexing system performance - again
- Another search index rebuild is required

View File

@ -135,7 +135,7 @@
"version": "0.11",
"author": "Starbeamrainbowlabs",
"description": "Adds proper search functionality to Pepperminty Wiki using an inverted index to provide a full text search engine. If pages don't show up, then you might have hit a stop word. If not, try requesting the `invindex-rebuild` action to rebuild the inverted index from scratch.",
"lastupdate": 1576432241,
"lastupdate": 1576440066,
"optional": false,
"extra_data": []
},

View File

@ -340,10 +340,13 @@ register_module([
continue;
}
$term = null;
$token_part = $token;
if($token_part[0] == "+") $token_part = substr($token_part, 1);
if(strpos($token_part, ":") !== false) $token_part = explode(":", $token_part, 2)[1];
foreach($stas_query["terms"] as $c_term) {
// echo(var_export($token_part, true) . " / {$c_term["term"]}\n");
if($c_term["term"] == $token_part) {
$term = $c_term;
break;
@ -360,6 +363,10 @@ register_module([
case -1: $style .= "color: grey; text-decoration: wavy line-through;"; $title = "stop word"; break;
case 1: $style .= "color: blue;"; $title = "normal word"; break;
}
if($term["weight"] > 1) {
$style .= "color: darkblue; font-weight: bold;";
$title = "weighted word";
}
if($term["weight"] !== -1) {
switch($term["location"]) {
case "body": $style = "color: cyan"; $title = "body only"; break;
@ -368,6 +375,7 @@ register_module([
case "all": $title .= ", searching everywhere";
}
}
$title .= ", weight: {$term["weight"]}";
$result .= "<span title='$title' style='$style'>$token</span> ";
}