1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-11-22 16:33:00 +00:00

Format the index action nicely

This commit is contained in:
Starbeamrainbowlabs 2018-06-29 12:08:38 +01:00
parent 80f2cc77a8
commit 9d7a21e993
Signed by: sbrl
GPG key ID: 1BE5172E637709C2
3 changed files with 23 additions and 12 deletions

View file

@ -397,7 +397,7 @@ if($settings->sessionprefix == "auto")
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
/** The version of Pepperminty Wiki currently running. */ /** The version of Pepperminty Wiki currently running. */
$version = "v0.17-dev"; $version = "v0.17-dev";
$commit = "3d3b6c491a0848922e0dc3d8c1c89a5f87673c0e"; $commit = "80f2cc77a8fa474394492f08ea7f4c998d076acc";
/// Environment /// /// Environment ///
/** Holds information about the current request environment. */ /** Holds information about the current request environment. */
$env = new stdClass(); $env = new stdClass();
@ -3682,10 +3682,15 @@ register_module([
$index = search::index($source); $index = search::index($source);
var_dump($env->page); echo("Page name: $env->page\n");
var_dump($source); echo("--------------- Source ---------------\n");
echo($source); echo("\n");
var_dump($index); echo("--------------------------------------\n\n");
echo("---------------- Index ---------------\n");
foreach($index as $term => $entry) {
echo("$term: {$entry["freq"]} matches | " . implode(", ", $entry["offsets"]) . "\n");
}
echo("--------------------------------------\n");
}); });
/** /**
@ -4454,9 +4459,10 @@ class search
reset($pageindex); // Reset array/object pointer reset($pageindex); // Reset array/object pointer
foreach ($pageindex as $pagename => $pagedata) foreach ($pageindex as $pagename => $pagedata)
{ {
// Seteup a variable to hold the current page's id // Setup a variable to hold the current page's id
$pageid = false; // Only fill this out if we find a match $pageid = false; // Only fill this out if we find a match
// Consider matches in the page title // Consider matches in the page title
// FUTURE: We may be able to optimise this further by using preg_match_all + preg_quote instead of mb_stripos_all. Experimentation / benchmarking is required to figure out which one is faster
$title_matches = mb_stripos_all($literator->transliterate($pagename), $qterm); $title_matches = mb_stripos_all($literator->transliterate($pagename), $qterm);
$title_matches_count = $title_matches !== false ? count($title_matches) : 0; $title_matches_count = $title_matches !== false ? count($title_matches) : 0;
if($title_matches_count > 0) if($title_matches_count > 0)

View file

@ -104,7 +104,7 @@
"author": "Starbeamrainbowlabs", "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.", "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.",
"id": "feature-search", "id": "feature-search",
"lastupdate": 1530019335, "lastupdate": 1530270319,
"optional": false "optional": false
}, },
{ {

View file

@ -36,10 +36,15 @@ register_module([
$index = search::index($source); $index = search::index($source);
var_dump($env->page); echo("Page name: $env->page\n");
var_dump($source); echo("--------------- Source ---------------\n");
echo($source); echo("\n");
var_dump($index); echo("--------------------------------------\n\n");
echo("---------------- Index ---------------\n");
foreach($index as $term => $entry) {
echo("$term: {$entry["freq"]} matches | " . implode(", ", $entry["offsets"]) . "\n");
}
echo("--------------------------------------\n");
}); });
/** /**
@ -808,7 +813,7 @@ class search
reset($pageindex); // Reset array/object pointer reset($pageindex); // Reset array/object pointer
foreach ($pageindex as $pagename => $pagedata) foreach ($pageindex as $pagename => $pagedata)
{ {
// Seteup a variable to hold the current page's id // Setup a variable to hold the current page's id
$pageid = false; // Only fill this out if we find a match $pageid = false; // Only fill this out if we find a match
// Consider matches in the page title // Consider matches in the page title
// FUTURE: We may be able to optimise this further by using preg_match_all + preg_quote instead of mb_stripos_all. Experimentation / benchmarking is required to figure out which one is faster // FUTURE: We may be able to optimise this further by using preg_match_all + preg_quote instead of mb_stripos_all. Experimentation / benchmarking is required to figure out which one is faster