Added the Porter Stemmer module to improve searches. This doesn't deal with some... master
authorJeff Veit <jeff.veit@gmail.com>
Tue, 20 Nov 2018 00:41:47 +0000 (00:41 +0000)
committerJeff Veit <jeff.veit@gmail.com>
Tue, 20 Nov 2018 00:41:47 +0000 (00:41 +0000)
commit5ca1b61ad2659177690cbde2cf7675f9c0d50491
treeda01aa2edb150b7dc2bcdec9ae4461e5330a7fe2
parent4e1bfbf98b844da83b18aca92ef00f11a4735806
Added the Porter Stemmer module to improve searches. This doesn't deal with some Englishisms, for instance -ise, because the algorithm works best on American English, but it's still better than without it, and the Search API Synonym module helps with this.
22 files changed:
web/modules/contrib/porterstemmer/INSTALL.txt [new file with mode: 0644]
web/modules/contrib/porterstemmer/LICENSE.txt [new file with mode: 0644]
web/modules/contrib/porterstemmer/README.txt [new file with mode: 0644]
web/modules/contrib/porterstemmer/porterstemmer.info.yml [new file with mode: 0644]
web/modules/contrib/porterstemmer/porterstemmer.module [new file with mode: 0644]
web/modules/contrib/porterstemmer/src/Porter2.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/src/Tests/LangCodeTest.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Pecl1.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Pecl2.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Pecl3.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Pecl4.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Pecl5.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Pecl6.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Test1.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Test2.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Test3.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Test4.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Test5.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/Porter2Test6.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/PorterPeclBase.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/TestItemsTrait.php [new file with mode: 0644]
web/modules/contrib/porterstemmer/tests/src/Unit/testwords.txt [new file with mode: 0644]