Added the Search API Synonym module to deal specifically with licence and license...
authorJeff Veit <jeff.veit@gmail.com>
Mon, 19 Nov 2018 22:05:11 +0000 (22:05 +0000)
committerJeff Veit <jeff.veit@gmail.com>
Mon, 19 Nov 2018 22:05:11 +0000 (22:05 +0000)
commit4e1bfbf98b844da83b18aca92ef00f11a4735806
tree4eee6ef97bb8e5534a524fc0ad87ea3c9fdaf052
parentf3baf763d342a5f82576890e2a8111a5aaf139dc
Added the Search API Synonym module to deal specifically with licence and license, which stemming doesn't deal with.
43 files changed:
web/modules/contrib/search_api_synonym/LICENSE.txt [new file with mode: 0644]
web/modules/contrib/search_api_synonym/README.txt [new file with mode: 0644]
web/modules/contrib/search_api_synonym/composer.json [new file with mode: 0644]
web/modules/contrib/search_api_synonym/config/install/search_api_synonym.settings.yml [new file with mode: 0644]
web/modules/contrib/search_api_synonym/config/install/views.view.search_api_synonym.yml [new file with mode: 0644]
web/modules/contrib/search_api_synonym/config/schema/search_api_synonym.schema.yml [new file with mode: 0644]
web/modules/contrib/search_api_synonym/console/translations/en/searchapi.synonym.export.yml [new file with mode: 0644]
web/modules/contrib/search_api_synonym/examples/example.csv [new file with mode: 0644]
web/modules/contrib/search_api_synonym/examples/example.json [new file with mode: 0644]
web/modules/contrib/search_api_synonym/examples/solr_synonyms.txt [new file with mode: 0644]
web/modules/contrib/search_api_synonym/search_api_synonym.drush.inc [new file with mode: 0644]
web/modules/contrib/search_api_synonym/search_api_synonym.info.yml [new file with mode: 0644]
web/modules/contrib/search_api_synonym/search_api_synonym.install [new file with mode: 0644]
web/modules/contrib/search_api_synonym/search_api_synonym.links.action.yml [new file with mode: 0644]
web/modules/contrib/search_api_synonym/search_api_synonym.links.menu.yml [new file with mode: 0644]
web/modules/contrib/search_api_synonym/search_api_synonym.links.task.yml [new file with mode: 0644]
web/modules/contrib/search_api_synonym/search_api_synonym.module [new file with mode: 0644]
web/modules/contrib/search_api_synonym/search_api_synonym.permissions.yml [new file with mode: 0644]
web/modules/contrib/search_api_synonym/search_api_synonym.routing.yml [new file with mode: 0644]
web/modules/contrib/search_api_synonym/search_api_synonym.services.yml [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Annotation/SearchApiSynonymExport.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Annotation/SearchApiSynonymImport.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Command/ExportCommand.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Entity/Synonym.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Export/ExportPluginBase.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Export/ExportPluginInterface.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Export/ExportPluginManager.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Form/SynonymDeleteForm.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Form/SynonymForm.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Form/SynonymImportForm.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Form/SynonymSettingsForm.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Import/ImportException.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Import/ImportPluginBase.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Import/ImportPluginInterface.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Import/ImportPluginManager.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Import/Importer.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Plugin/search_api_synonym/export/Solr.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Plugin/search_api_synonym/import/CSV.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Plugin/search_api_synonym/import/JSON.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/Plugin/search_api_synonym/import/Solr.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/SynonymInterface.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/SynonymListBuilder.php [new file with mode: 0644]
web/modules/contrib/search_api_synonym/src/SynonymViewsData.php [new file with mode: 0644]