Jump to content

Extension:TitleKey/pl

From mediawiki.org
This page is a translated version of the page Extension:TitleKey and the translation is 11% complete.
Podręcznik rozszerzeń MediaWiki
TitleKey
Status wydania: stabilne
Realizacja Wyszukiwanie
Opis Provides a case-insensitive page title prefix search
Autor(zy) Brooke Vibberdyskusja
Ostatnia wersja continuous updates
MediaWiki 1.25+
Zmiany w bazie danych Tak
Tabele titlekey
Licencja Licencja GNU General Public License 2.0 lub nowsza
Pobieranie
README
Quarterly downloads 62 (Ranked 74th)
Przetłumacz rozszerzenie TitleKey jeżeli jest dostępne na translatewiki.net
Problemy Otwarte zadania · Zgłoś błąd

The TitleKey extension provides a case-insensitive page title prefix search. It uses a separate table for the keys so that it can be deployed without an expensive rebuild of core tables and uninstalled later in preference for a different search extension such as CirrusSearch .

For the average site administrator, the benefit of this extension is that it allows search suggestions (e.g., from Opensearch API) to be case-insensitive.

This extension provides no benefit if you are using CirrusSearch .

Instalacja

  • Pobierz i umieść plik(i) w katalogu o nazwie TitleKey w folderze extensions/.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/TitleKey
  • Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
    wfLoadExtension( 'TitleKey' );
    // For MW 1.42.0 and later (use SearchEngineMySQL, SearchEnginePostgres, or SearchEngineSqlite depending on your $wgDBtype)
    $wgSearchType = MediaWiki\Extension\TitleKey\SearchEngineMySQL::class;
    // For MW 1.39.x to 1.41.x
    $wgSearchType = MediaWiki\Extension\TitleKey\SearchEngine::class;
    
  • Uruchom skrypt aktualizujący, który automatycznie stworzy potrzebne tabele dla tego rozszerzenia.
  • Yes Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.

Maintenance

The RebuildTitleKeys maintenance script can be used at any time to rebuild the title index (this requires command-line access):

$ path/to/mediawiki/maintenance/run RebuildTitleKeys
Or, for MediaWiki before 1.40:
$ php path/to/mediawiki/extensions/TitleKey/maintenance/rebuildTitleKeys.php