Jump to content

Extension:GlobalUserPage/pl

From mediawiki.org
This page is a translated version of the page Extension:GlobalUserPage and the translation is 15% complete.
Podręcznik rozszerzeń MediaWiki
GlobalUserPage
Status wydania: stabilne
Realizacja Interfejs użytkownika
Opis Enables global (shared between wikis) user pages on a wiki farm.
Autor(zy) Jack Phoenix, Kunal Mehta
Ostatnia wersja 0.11.1 (2017-09-18)
Polityka zgodności Snapshots releases along with MediaWiki. Master nie jest kompatybilny wstecznie.
MediaWiki 1.42+
PHP 5.5.9+
Licencja Licencja GNU General Public License 3.0 lub nowsza
Pobieranie
Pomoc Help:Extension:GlobalUserPage/pl
Przykład ShoutWiki
  • $wgGlobalUserPageAPIUrl
  • $wgGlobalUserPageTimeout
  • $wgGlobalUserPageDBname
  • $wgGlobalUserPageFooterKey
  • $wgGlobalUserPageCacheExpiry
Quarterly downloads 25 (Ranked 106th)
Public wikis using 2,011 (Ranked 198th)
Przetłumacz rozszerzenie GlobalUserPage jeżeli jest dostępne na translatewiki.net
Problemy Otwarte zadania · Zgłoś błąd

GlobalUserPage

2020 Coolest Tool
Award Winner

in the category
Reusable


The GlobalUserPage extension enables global (shared between wikis) user pages on a wiki farm.

This extension was developed by Jack Phoenix for ShoutWiki , originally based on the Extension:HelpPages by Kunal Mehta (the extensions no longer share any code).

User documentation

Zobacz Help:Extension:GlobalUserPage .

Caveats

Using this extension comes with a few security risks. You must absolutely trust the central wiki and its admins, as they can easily insert raw HTML into your wiki, opening up XSS holes and other bad things.

Instalacja

  • Pobierz i umieść plik(i) w katalogu o nazwie GlobalUserPage 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/GlobalUserPage
  • Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
    wfLoadExtension( 'GlobalUserPage' );
    
  • Yes Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.

Konfiguracja

  • $wgGlobalUserPageAPIUrl - the URL to the central wiki's api.php . This URL is internally used to fetch the global user page's text.
  • $wgGlobalUserPageCacheExpiry - controls how long to cache the rendered HTML for. The default is 60 * 60 * 24 * 7 (one week). The HTML is usually invalidated upon editing, but this is a worst case fallback.
  • $wgGlobalUserPageDBname - the name of the database where global user page data is stored, i.e. usually this should be set to the same value as $wgSharedDB .
  • $wgGlobalUserPageFooterKey - message key to add as a footer to the bottom of global user pages, or false if no footer should be added.
  • $wgGlobalUserPageTimeout - Timeout for internal API requests, to use $wgHTTPTimeout set this to the string "default".