From 111d95081fe21032c9bbe930390f27b8442e1ff0 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sat, 12 Mar 2016 18:52:26 +0000 Subject: [PATCH] Update feature-search's description. --- build/index.php | 2 +- module_index.json | 4 ++-- modules/feature-search.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/index.php b/build/index.php index 4d4c23c..edef5e4 100644 --- a/build/index.php +++ b/build/index.php @@ -1673,7 +1673,7 @@ register_module([ "name" => "Search", "version" => "0.2", "author" => "Starbeamrainbowlabs", - "description" => "Adds proper search functionality to Pepperminty Wiki. Note that this module, at the moment, just contains test code while I figure out how best to write a search engine.", + "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", "code" => function() { diff --git a/module_index.json b/module_index.json index b9d6efb..0688b3c 100644 --- a/module_index.json +++ b/module_index.json @@ -57,9 +57,9 @@ "name": "Search", "version": "0.2", "author": "Starbeamrainbowlabs", - "description": "Adds proper search functionality to Pepperminty Wiki. Note that this module, at the moment, just contains test code while I figure out how best to write a search engine.", + "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", - "lastupdate": 1451135184, + "lastupdate": 1457808707, "optional": false }, { diff --git a/modules/feature-search.php b/modules/feature-search.php index aaa8c4f..42ac94b 100644 --- a/modules/feature-search.php +++ b/modules/feature-search.php @@ -3,7 +3,7 @@ register_module([ "name" => "Search", "version" => "0.2", "author" => "Starbeamrainbowlabs", - "description" => "Adds proper search functionality to Pepperminty Wiki. Note that this module, at the moment, just contains test code while I figure out how best to write a search engine.", + "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", "code" => function() {