Extension:Metadata/pl

From mediawiki.org
This page is a translated version of the page Extension:Metadata and the translation is 20% complete.
Podręcznik rozszerzeń MediaWiki
Metadata
Status wydania: eksperymentalne
Opis Adds #metadata parser function to set page properties, and expose them via ‎<meta> tags and a REST API endpoint
Autor(zy) Sophivorusdyskusja
Ostatnia wersja 4.0
MediaWiki >= 1.35.0
Licencja GNU General Public License 3.0 or later
Pobieranie
Quarterly downloads 4 (Ranked 143rd)
Przetłumacz rozszerzenie Metadata jeżeli jest dostępne na translatewiki.net

The Metadata extension adds the #metadata parser function to set page properties, and exposes them via ‎<meta> tags and a REST API endpoint.

Installation

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

Usage

To set a simple key-value pair for the current page:

{{#metadata:key=value}}

And to set multiple key-value pairs in a single call:

{{#metadata:
| key = value
| foo = bar
| baz
}}

Keys with no value will be assigned a "1" value.

Once set, the properties will be accessible via the HTML <meta> tags, like so:

<meta name="key" content="value" />
<meta name="foo" content="bar" />
<meta name="baz" content="1" />

And also, via the "props" endpoint introduced by this extension to the MediaWiki REST API, with the following URL pattern:

/w/rest.php/v1/page/{title}/props

Finally, the properties can also be accessed via the Properties module of the MediaWiki Action API, with the following URL pattern:

/w/api.php?action=query&prop=pageprops&titles={title}

Zobacz też