├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── changelog.txt ├── composer.json ├── delete.png ├── languages ├── relevanssi-fr_CA.mo └── relevanssi-fr_CA.po ├── lib ├── admin-ajax.php ├── admin_scripts.js ├── admin_scripts_free.js ├── admin_styles.css ├── class-relevanssi-taxonomy-walker.php ├── common.php ├── compatibility │ ├── acf.php │ ├── aioseo.php │ ├── avada.php │ ├── bricks.php │ ├── elementor.php │ ├── fibosearch.php │ ├── groups.php │ ├── gutenberg.php │ ├── jetsmartfilters.php │ ├── memberpress.php │ ├── members.php │ ├── ninjatables.php │ ├── oxygen.php │ ├── paidmembershippro.php │ ├── polylang.php │ ├── pretty-links.php │ ├── product-gtin-ean-upc-isbn-for-woocommerce.php │ ├── rankmath.php │ ├── restrictcontentpro.php │ ├── seoframework.php │ ├── seopress.php │ ├── simplemembership.php │ ├── tablepress.php │ ├── useraccessmanager.php │ ├── woocommerce.php │ ├── wp-file-download.php │ ├── wp-members.php │ ├── wp-search-suggest.php │ ├── wpjvpostreadinggroups.php │ ├── wpml.php │ └── yoast-seo.php ├── contextual-help.php ├── debug.php ├── didyoumean.php ├── excerpts-highlights.php ├── indexing.php ├── init.php ├── install.php ├── interface.php ├── log.php ├── options.php ├── phrases.php ├── privacy.php ├── search-query-restrictions.php ├── search-tax-query.php ├── search.php ├── shortcodes.php ├── sorting.php ├── stopwords.php ├── tabs │ ├── attachments-tab.php │ ├── debugging-tab.php │ ├── excerpts-tab.php │ ├── indexing-tab.php │ ├── logging-tab.php │ ├── overview-tab.php │ ├── redirects-tab.php │ ├── search-page.php │ ├── searching-tab.php │ ├── stopwords-tab.php │ └── synonyms-tab.php ├── uninstall.php ├── user-searches.php └── utils.php ├── multi-version-test.sh ├── phpcs.xml.dist ├── phpunit.xml ├── readme.txt ├── relevanssi.php ├── relevanssi.po ├── stopwords ├── stopword.zh_CN ├── stopword.zh_TW ├── stopwords.cs_CZ ├── stopwords.de_DE ├── stopwords.en_GB ├── stopwords.en_US ├── stopwords.es_ES ├── stopwords.fi ├── stopwords.fr_FR ├── stopwords.it_IT ├── stopwords.pl_PL ├── stopwords.pt_BR ├── stopwords.pt_PT └── stopwords.ru_RU ├── tests ├── bootstrap-rask.php ├── bootstrap-wporg.php ├── bootstrap.php ├── test-didyoumean.php ├── test-excerpts.php ├── test-functions.php ├── test-indexing.php ├── test-init.php ├── test-interface.php ├── test-logging.php ├── test-options.php ├── test-searching.php ├── test-shortcodes.php ├── test-sorting.php ├── test-stopwords.php └── test-taxquery.php ├── uninstall.php └── wpversion.php /.gitignore: -------------------------------------------------------------------------------- 1 | sync_svn.sh -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/SECURITY.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/changelog.txt -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/composer.json -------------------------------------------------------------------------------- /delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/delete.png -------------------------------------------------------------------------------- /languages/relevanssi-fr_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/languages/relevanssi-fr_CA.mo -------------------------------------------------------------------------------- /languages/relevanssi-fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/languages/relevanssi-fr_CA.po -------------------------------------------------------------------------------- /lib/admin-ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/admin-ajax.php -------------------------------------------------------------------------------- /lib/admin_scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/admin_scripts.js -------------------------------------------------------------------------------- /lib/admin_scripts_free.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/admin_scripts_free.js -------------------------------------------------------------------------------- /lib/admin_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/admin_styles.css -------------------------------------------------------------------------------- /lib/class-relevanssi-taxonomy-walker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/class-relevanssi-taxonomy-walker.php -------------------------------------------------------------------------------- /lib/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/common.php -------------------------------------------------------------------------------- /lib/compatibility/acf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/acf.php -------------------------------------------------------------------------------- /lib/compatibility/aioseo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/aioseo.php -------------------------------------------------------------------------------- /lib/compatibility/avada.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/avada.php -------------------------------------------------------------------------------- /lib/compatibility/bricks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/bricks.php -------------------------------------------------------------------------------- /lib/compatibility/elementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/elementor.php -------------------------------------------------------------------------------- /lib/compatibility/fibosearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/fibosearch.php -------------------------------------------------------------------------------- /lib/compatibility/groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/groups.php -------------------------------------------------------------------------------- /lib/compatibility/gutenberg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/gutenberg.php -------------------------------------------------------------------------------- /lib/compatibility/jetsmartfilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/jetsmartfilters.php -------------------------------------------------------------------------------- /lib/compatibility/memberpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/memberpress.php -------------------------------------------------------------------------------- /lib/compatibility/members.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/members.php -------------------------------------------------------------------------------- /lib/compatibility/ninjatables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/ninjatables.php -------------------------------------------------------------------------------- /lib/compatibility/oxygen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/oxygen.php -------------------------------------------------------------------------------- /lib/compatibility/paidmembershippro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/paidmembershippro.php -------------------------------------------------------------------------------- /lib/compatibility/polylang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/polylang.php -------------------------------------------------------------------------------- /lib/compatibility/pretty-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/pretty-links.php -------------------------------------------------------------------------------- /lib/compatibility/product-gtin-ean-upc-isbn-for-woocommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/product-gtin-ean-upc-isbn-for-woocommerce.php -------------------------------------------------------------------------------- /lib/compatibility/rankmath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/rankmath.php -------------------------------------------------------------------------------- /lib/compatibility/restrictcontentpro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/restrictcontentpro.php -------------------------------------------------------------------------------- /lib/compatibility/seoframework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/seoframework.php -------------------------------------------------------------------------------- /lib/compatibility/seopress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/seopress.php -------------------------------------------------------------------------------- /lib/compatibility/simplemembership.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/simplemembership.php -------------------------------------------------------------------------------- /lib/compatibility/tablepress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/tablepress.php -------------------------------------------------------------------------------- /lib/compatibility/useraccessmanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/useraccessmanager.php -------------------------------------------------------------------------------- /lib/compatibility/woocommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/woocommerce.php -------------------------------------------------------------------------------- /lib/compatibility/wp-file-download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/wp-file-download.php -------------------------------------------------------------------------------- /lib/compatibility/wp-members.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/wp-members.php -------------------------------------------------------------------------------- /lib/compatibility/wp-search-suggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/wp-search-suggest.php -------------------------------------------------------------------------------- /lib/compatibility/wpjvpostreadinggroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/wpjvpostreadinggroups.php -------------------------------------------------------------------------------- /lib/compatibility/wpml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/wpml.php -------------------------------------------------------------------------------- /lib/compatibility/yoast-seo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/compatibility/yoast-seo.php -------------------------------------------------------------------------------- /lib/contextual-help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/contextual-help.php -------------------------------------------------------------------------------- /lib/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/debug.php -------------------------------------------------------------------------------- /lib/didyoumean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/didyoumean.php -------------------------------------------------------------------------------- /lib/excerpts-highlights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/excerpts-highlights.php -------------------------------------------------------------------------------- /lib/indexing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/indexing.php -------------------------------------------------------------------------------- /lib/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/init.php -------------------------------------------------------------------------------- /lib/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/install.php -------------------------------------------------------------------------------- /lib/interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/interface.php -------------------------------------------------------------------------------- /lib/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/log.php -------------------------------------------------------------------------------- /lib/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/options.php -------------------------------------------------------------------------------- /lib/phrases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/phrases.php -------------------------------------------------------------------------------- /lib/privacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/privacy.php -------------------------------------------------------------------------------- /lib/search-query-restrictions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/search-query-restrictions.php -------------------------------------------------------------------------------- /lib/search-tax-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/search-tax-query.php -------------------------------------------------------------------------------- /lib/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/search.php -------------------------------------------------------------------------------- /lib/shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/shortcodes.php -------------------------------------------------------------------------------- /lib/sorting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/sorting.php -------------------------------------------------------------------------------- /lib/stopwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/stopwords.php -------------------------------------------------------------------------------- /lib/tabs/attachments-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/tabs/attachments-tab.php -------------------------------------------------------------------------------- /lib/tabs/debugging-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/tabs/debugging-tab.php -------------------------------------------------------------------------------- /lib/tabs/excerpts-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/tabs/excerpts-tab.php -------------------------------------------------------------------------------- /lib/tabs/indexing-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/tabs/indexing-tab.php -------------------------------------------------------------------------------- /lib/tabs/logging-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/tabs/logging-tab.php -------------------------------------------------------------------------------- /lib/tabs/overview-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/tabs/overview-tab.php -------------------------------------------------------------------------------- /lib/tabs/redirects-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/tabs/redirects-tab.php -------------------------------------------------------------------------------- /lib/tabs/search-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/tabs/search-page.php -------------------------------------------------------------------------------- /lib/tabs/searching-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/tabs/searching-tab.php -------------------------------------------------------------------------------- /lib/tabs/stopwords-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/tabs/stopwords-tab.php -------------------------------------------------------------------------------- /lib/tabs/synonyms-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/tabs/synonyms-tab.php -------------------------------------------------------------------------------- /lib/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/uninstall.php -------------------------------------------------------------------------------- /lib/user-searches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/user-searches.php -------------------------------------------------------------------------------- /lib/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/lib/utils.php -------------------------------------------------------------------------------- /multi-version-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/multi-version-test.sh -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/readme.txt -------------------------------------------------------------------------------- /relevanssi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/relevanssi.php -------------------------------------------------------------------------------- /relevanssi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/relevanssi.po -------------------------------------------------------------------------------- /stopwords/stopword.zh_CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopword.zh_CN -------------------------------------------------------------------------------- /stopwords/stopword.zh_TW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopword.zh_TW -------------------------------------------------------------------------------- /stopwords/stopwords.cs_CZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.cs_CZ -------------------------------------------------------------------------------- /stopwords/stopwords.de_DE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.de_DE -------------------------------------------------------------------------------- /stopwords/stopwords.en_GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.en_GB -------------------------------------------------------------------------------- /stopwords/stopwords.en_US: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.en_US -------------------------------------------------------------------------------- /stopwords/stopwords.es_ES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.es_ES -------------------------------------------------------------------------------- /stopwords/stopwords.fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.fi -------------------------------------------------------------------------------- /stopwords/stopwords.fr_FR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.fr_FR -------------------------------------------------------------------------------- /stopwords/stopwords.it_IT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.it_IT -------------------------------------------------------------------------------- /stopwords/stopwords.pl_PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.pl_PL -------------------------------------------------------------------------------- /stopwords/stopwords.pt_BR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.pt_BR -------------------------------------------------------------------------------- /stopwords/stopwords.pt_PT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.pt_PT -------------------------------------------------------------------------------- /stopwords/stopwords.ru_RU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/stopwords/stopwords.ru_RU -------------------------------------------------------------------------------- /tests/bootstrap-rask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/bootstrap-rask.php -------------------------------------------------------------------------------- /tests/bootstrap-wporg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/bootstrap-wporg.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/test-didyoumean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-didyoumean.php -------------------------------------------------------------------------------- /tests/test-excerpts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-excerpts.php -------------------------------------------------------------------------------- /tests/test-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-functions.php -------------------------------------------------------------------------------- /tests/test-indexing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-indexing.php -------------------------------------------------------------------------------- /tests/test-init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-init.php -------------------------------------------------------------------------------- /tests/test-interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-interface.php -------------------------------------------------------------------------------- /tests/test-logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-logging.php -------------------------------------------------------------------------------- /tests/test-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-options.php -------------------------------------------------------------------------------- /tests/test-searching.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-searching.php -------------------------------------------------------------------------------- /tests/test-shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-shortcodes.php -------------------------------------------------------------------------------- /tests/test-sorting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-sorting.php -------------------------------------------------------------------------------- /tests/test-stopwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-stopwords.php -------------------------------------------------------------------------------- /tests/test-taxquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/tests/test-taxquery.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/uninstall.php -------------------------------------------------------------------------------- /wpversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msaari/relevanssi/HEAD/wpversion.php --------------------------------------------------------------------------------