Extension:WSSemanticParsedText/my
This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. |
Release status: unmaintained |
|
|---|---|
| Implementation | ချိတ် |
| Description | This extension extends Semantic MediaWiki to provide full-text search with parsed wikitext. |
| Author(s) | Wikibase Solutions |
| Latest version | 2.1.1 (2023-05-11) |
| MediaWiki | >= 1.31.0 |
| Database changes | Yes |
| Licence | GNU General Public License 2.0 or later |
| Download | GitLab: Note: |
This extension is abandoned; You should install WikiSearch, which includes the functionality provided by this extension.
The WSSemanticParsedText extension က parsed wikitext နဲ့ full-text search ကို ပေးဖို့ Semantic MediaWiki ကို တိုးချဲ့ပေးတယ်။ This extension replaces the raw wikitext search with stripped parsed wikitext search.
The extension works by overriding the ElasticFactory used while indexing with an ElasticFactory that provides a new Indexer object that overrides the fetchNativeData function to return (stripped) parsed wikitext instead of raw wikitext.
Installation
- Download လုပ်၊ ထုတ်ယူ and place the file(s) in a directory called
WSSemanticParsedTextin yourextensions/folder. - Only when installing from Git, run Composer to install PHP dependencies, by issuing
composer install --no-devin the extension directory. (See T173141 for potential complications.) - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'WSSemanticParsedText' ); $smwgElasticsearchConfig["indexer"]["raw.text"] = true;
- Run the update script which will automatically create the necessary database tables that this extension needs.
- Run the following script from the root of your installation directory:
php extensions/SemanticMediaWiki/maintenance/rebuildElasticIndex.php
Done – Navigate to Special:Versionon your wiki to verify that the extension is successfully installed.
