Extension:TemplateData/pl
TemplateData Status wydania: stabilne |
|
---|---|
Realizacja | Znaczniki , API |
Opis | Allows to store, retrieve and visualise information about templates |
Autor(zy) | Timo Tijhof, Moriel Schottlender, James Forrester, Trevor Parscal, Bartosz Dziewoński, Marielle Volz, ... |
Ostatnia wersja | 0.1.2 (Ciągłe aktualizacje) |
Polityka zgodności | Snapshots releases along with MediaWiki. Master nie jest kompatybilny wstecznie. |
MediaWiki | >= 1.43 |
PHP | 5.4+ |
Zmiany w bazie danych | Nie |
Licencja | Licencja GNU General Public License 2.0 lub nowsza |
Pobieranie | |
|
|
<templatedata> |
|
Quarterly downloads | 282 (Ranked 15th) |
Public wikis using | 6,971 (Ranked 24th) |
Przetłumacz rozszerzenie TemplateData jeżeli jest dostępne na translatewiki.net | |
Problemy | Otwarte zadania · Zgłoś błąd |
The TemplateData extension introduces a <templatedata>
tag and an API which together allow editors to specify how templates and their parameters should be used.
This information is available as a nicely-formatted table for end-users, and as a JSON API, which enables other systems (e.g. VisualEditor ) to build interfaces for working with templates.
See Help:TemplateData for in-depth help.
Instalacja
- Pobierz i umieść plik(i) w katalogu o nazwie
TemplateData
w folderzeextensions/
.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/TemplateData - Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
wfLoadExtension( 'TemplateData' );
- Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.
Editing data
The TemplateData extension works through having a <templatedata>
tag defined in the wikitext of a template page (optionally it can be transcluded from a different page as well).
This is designed to be compatible with the common layout many wikis have of transcluding template documentation from a separate page (but is not required).
This content of the <templatedata>
tag must be valid JSON using the format described below; note that all descriptions must be in plain text (no wikitext is accepted inside the template data).
When a <templatedata>
block is included on a page, the TemplateData extension performs the following checks when the page is being saved:
- The contents must be valid JSON;
- Each item within the JSON structure must be of the expected type as specified below (e.g. object, array, or a primitive); and
- For those items which have a specified list of possible values (e.g. the
type
of a parameter), the value in the JSON object must match one of those values.
If any of these checks fails, the server will not be permitted saving and an error message will be displayed above the edit page.
For autovalue
items, T4700 prevents subst:
from working in any template that is added inside a tag, including <ref>
and <gallery>
tags.
The TemplateData block will save correctly, but the resulting wikitext will not be parsed correctly when the template is used.
Please avoid using {{#tag:templatedata}}
as it makes it impossible to use the template data editor.
Format
The below is a visualised version of the JSON data as defined on the template page enclosed by <templatedata></templatedata>
tags.
The formal specification is available in the TemplateData repository.
Refer to Specification.md for the latest version.
TemplateData object
The TemplateData object is a JSON root element enclosed in a <templatedata>
element on the template page.
Klucz | Typ | Opis |
---|---|---|
description
|
InterfaceText lub null
|
A brief description of the template. It must be in plain text. Once filled, it can be displayed as caption when editing a single template and perhaps in search results when users pick one of many. The default is null .
→ For more details see: description |
params
|
Object containing Param objects | An object that maps each parameter name of the template to a corresponding Param object describing the properties of that parameter.
→ For more details see: params |
paramOrder
|
Array containing parameter name strings | The logical order in which parameters should be displayed. The array contains each parameter key exactly once. Each string must be a valid key in the params object.
→ For more details see: paramOrder |
sets
|
Array containing Set objects |
An array containing set specifications. A set is a group of parameters that should be used together. The default is []. Note that the sets functionality is still in development.
|
format
|
string, either inline or block
|
How the template's wikitext representation SHOULD be laid out. The default is inline . See #Custom_formats for other custom formats.
|
maps
|
Object containing Map objects | An object that links a simplified name of a third party consumer of the template data (i.e. Citoid, Special:MyLanguage/Wikidata, etc.) to a map object that in turn links a name of a consumer parameter to one or more corresponding names of template parameters. |
Param object
Klucz | Typ | Domyślnie | Opis | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
label |
InterfaceText | null
|
A (very) brief name for the parameter. Try to keep under 20-ish characters.
→ For more details see: label | ||||||||||||||||||||||||||||
description
|
InterfaceText | null
|
A brief description of the parameter, for users to know which to pick from an option list.
→ For more details see: description | ||||||||||||||||||||||||||||
required
|
wartość logiczna | false
|
Whether the parameter is required for the template to work (true if this parameter must be specified).
→ For more details see: required | ||||||||||||||||||||||||||||
suggested
|
wartość logiczna | false
|
Whether the parameter is suggested for the template to be useful (true if this parameter should be specified).
→ For more details see: suggested | ||||||||||||||||||||||||||||
deprecated
|
boolean or string | false
|
Whether the parameter is deprecated. The value can be a string of instructions giving the user guidance what instead can be done, or be simply true .
→ For more details see: deprecated | ||||||||||||||||||||||||||||
aliases |
Array containing strings | [] |
List of aliases. An alias is an alternative name for the parameter that may be used instead of (not in addition to) the primary name. Aliases are not documented in a separate Parameter object. If they need more information, they should be in their own property marked "deprecated".
→ For more details see: aliases | ||||||||||||||||||||||||||||
default |
InterfaceText | null |
A fixed default value used by the template if no value is assigned to the parameter, or a description thereof.
→ For more details see: default | ||||||||||||||||||||||||||||
autovalue |
łańcuch | null |
A dynamically-generated default value in wikitext, such as today's date or the editing user's name; this will often involve wikitext substitution, such as {{subst:CURRENTYEAR}} .
→ For more details see: autovalue | ||||||||||||||||||||||||||||
example
|
InterfaceText | null
|
An example text for the parameter, to help users fill in the proper value.
→ For more details see: example | ||||||||||||||||||||||||||||
type |
łańcuch | "unknown" |
The type of the parameter, for (soft) type hinting. One of:
→ For more details see: type | ||||||||||||||||||||||||||||
inherits |
łańcuch | none substituted |
The name key of another parameter (must be a valid key in the params object). The current Parameter Object will inherit properties from the specified Parameter Object, with local properties overriding the inherited ones.
→ For more details see: inherits | ||||||||||||||||||||||||||||
suggestedvalues |
Array containing strings | []
|
An optional parameter property. Creates a list of parameter values to help users select the desired value. For the suggested values to be displayed as a combo box in VisualEditor, the parameter’s type must be set to one of the following: content, line, string, number, unknown or unbalanced wikitext.
→ For more details see: suggestedvalues |
Set object
Klucz |
Object or primitive type |
Opis |
---|---|---|
label
|
InterfaceText | A (very) brief name for the parameter set. Try to keep under 20-ish characters. |
params
|
Array of strings | One or more names of parameters to include in the set (each must be a valid key in the params object). A parameter may be in multiple sets. Not every parameter must be in a set.
|
Maps structure
Maps is a single data structure that goes multiple levels deep. It became common to call the second level a “map object”.
Klucz | Typ | Domyślnie | Opis |
---|---|---|---|
name of consumer | object | {} | An object that links a name of a consumer to a map object that in turn links a name of a consumer parameter to one or more corresponding names of template parameters.
The names of the template parameters can be specified either as a string (one name), an array of strings (several names), or an array of arrays of strings (several sets of names); each of these strings must be a valid key in the A specific template parameter may be in multiple maps, and it may be used in the values of multiple keys in a given map, but not every template parameter must be in a map. A shortened example from English Wikipedia's Template:Cite_news#TemplateData illustrates the structure of map objects. { "proveit": { "main": "title", "textarea": [ "quote" ] }, "citoid": { "title": "title", "url": "url", "publisher": "publisher", "publicationTitle": "work", "date": "date", "ISSN": [ "issn" ], "ISBN": [ "isbn" ], "contributor": "others", "author": [ [ "first", "last" ], [ "first2", "last2" ], [ "first9", "last9" ] ], "editor": [ [ "editor-first", "editor-last" ] ] } } |
InterfaceText (string or object)
A free-form plain-text string (i.e. no wikitext or HTML) in the content-language of the wiki, or an object containing those strings keyed by language code.
The default value for all InterfaceText fields is null
.
String type
If it is a string, it must contain a non-localized string in the content language of the local wiki.
Object type
If it is an object, the object must have this mapping:
Klucz | Typ | Opis |
---|---|---|
Wikipedia language code | łańcuch | Localized string for users of that interface language. |
Example of object mapping:
Klucz | Wartość |
---|---|
"en" | "Welcome to Wikipedia" |
"de" | "Willkommen bei Wikipedia" |
"fr" | "Bienvenue sur Wikipédia" |
"nl" | "Welkom op Wikipedia" |
"it" | "Benvenuti su Wikipedia" |
"es" | "Bienvenidos a Wikipedia" |
"ru" | "Добро пожаловать в Википедию" |
Example
An example TemplateData structure as specified within wikitext on a template page.
<templatedata>
{
"description": "Label unsigned comments in a conversation.",
"params": {
"user": {
"label": "User's name",
"type": "wiki-user-name",
"required": true,
"description": "User name of person who forgot to sign their comment.",
"aliases": ["1"]
},
"date": {
"label": "Date",
"suggested": true,
"description": {
"en": "Timestamp of when the comment was posted, in YYYY-MM-DD format."
},
"aliases": ["2"],
"autovalue": "{{subst:#time:Y-m-d}}"
},
"year": {
"label": "Year",
"type": "number"
},
"month": {
"label": "Month",
"inherits": "year"
},
"day": {
"label": "Day",
"inherits": "year"
},
"comment": {
"required": false
}
},
"sets": [
{
"label": "Date",
"params": ["year", "month", "day"]
}
],
"maps": {
"ExampleConsumer": {
"foo": "user",
"bar": ["year", "month", "day"],
"quux": [
"date",
["day", "month"],
["month", "year"],
"year"
]
}
}
}
</templatedata>
Below is how the above example would be displayed on the template page:
Label unsigned comments in a conversation.
Parameter | Description | Type | Status | |
---|---|---|---|---|
User's name | user 1 | User name of person who forgot to sign their comment. | User | required |
Date | date 2 | Timestamp of when the comment was posted, in YYYY-MM-DD format.
| Unknown | suggested |
Year | year | no description | Number | optional |
Month | month | no description | Number | optional |
Day | day | no description | Number | optional |
comment | comment | no description | Unknown | optional |
API
See the generated help at Special:ApiHelp/templatedata. A sample invocation (formatted for human readability) is:
This returns the template data for Template:Cite web.
The <templatedata>...</templatedata>
block for this template is on its transcluded template documentation page, en:Template:Cite web/doc.
Additions and changes to JSON as received from the API
The JSON structure provided in response to an API HTTP get request is significantly different than that which is defined in the <templatedata>...</templatedata>
block.
In response to the API request, extension TemplateData makes the following changes to the JSON object:
- Adds two wrapping objects:
- An overall Pages Object containing one or more Page Objects
- An object with a numeric key: a Page Object
- Additions/changes to the actual TemplateData Object
- Add the
title
key with the name of the page from which the data was requested (e.g. "Template:Cite web"). - Add the
sets
key - Change all TemplateText occurrences that are just strings to objects with a single key for the current wiki's Wikipedia language code
- Remove all
inherits
keys.- Add all properties from parameter from which an inheritance is defined which are not superseded by explicitly defined keys in the inheritor's Parameter Object.
- Add default values for all keys in each Parameter Object which have not been explicitly defined or inherited.
- Add the
Visualised differences in a TemplateData JSON object delivered by the API
| ||||||
|
Klucz | Typ | Opis |
---|---|---|
title
|
łańcuch | The page name of the template (e.g. "Template:Cite web"). This key is not contained in the JSON structure on the template page. It is added to the structure by the MediaWiki software in route to delivery via the API. |
sets
|
Array containing Set Objects | An array containing set specifications. A set is a group of parameters that should be used together. If this does not exist on the template page it is added as an empty array to the structure provided by the API. |
Klucz | Typ | Opis |
---|---|---|
label |
InterfaceText | translated to InterfaceText object, if not already in that format. |
required |
wartość logiczna | If not defined, default value of false added. |
description |
InterfaceText lub null |
If defined as a string, converted to a InterfaceText object. If not defined, key is added with a null value.
|
deprecated |
boolean or string | If not defined, default value of false added. |
aliases |
Array of strings | If not defined, a default empty array is assigned (i.e. [] ). |
default |
łańcuch | If not defined, default of "" is assigned. |
type |
łańcuch | If not defined, default of "unknown" is assigned. |
inherits |
(usunięto) | This key is removed and all inherited keys are added. Keys defined for the current parameter take precedence and any keys not defined on either the current param, or the one from which it inherits are given the default value. |
Klucz | Object or primitive type |
Opis |
---|---|---|
Object (containing localized strings by Wikipedia language code) If a TemplateData field on the template page contains a string, not an object with localized strings, MediaWiki translates it into an InterfaceText Object with a string assigned to the key name of the source Wikipedia Wikipedia language code. The default for all InterfaceText fields is null .
| ||
(Wiki language code) | łańcuch | Localized string for users of that interface language. |
Example of JSON object provided by API
The response to an API request for the TemplateData structure in the Example section (above) can be seen:
- As delivered by the API: https://www.mediawiki.org/w/api.php?action=templatedata&titles=Extension:TemplateData
Konfiguracja
Zmienna | Domyślnie | Opis |
---|---|---|
$wgTemplateDataUseGUI
|
true
|
Experimental dialog interface to edit templatedata JSON |
Zobacz też
- Extension:TemplateWizard – user interface for selecting and inserting templates' wikitext, based on their TemplateData.
- GitHub: jeblad/TemplateData – alternate version with some Lua functionality.
- Translatable template
- Wikibase/Maps TemplateData
To rozszerzenie jest wykorzystywane przez jeden lub więcej projektów Wikimedia. Oznacza to prawdopodobnie, że to rozszerzenie jest stabilne i działa wystarczająco dobrze, aby wykorzystywać je na stronach o dużym natężeniu ruchu. Odnajdź nazwę tego rozszerzenia w plikach konfiguracyjnych Wikimedia CommonSettings.php oraz InitialiseSettings.php, aby zobaczyć gdzie są zainstalowane. Pełną listę rozszerzeń zainstalowanych na określonej wiki można znaleźć na stronie Special:Version na danej wiki. |
To rozszerzenie jest dołączone do następujących farm/hostów wiki lub pakietów: To nie jest pełna lista. Niektóre farmy/hosty wiki lub pakiety mogą zawierać to rozszerzenie nawet jeśli nie są one tutaj wymienione. Zawsze sprawdzaj swoje farmy/hosty wiki, aby to potwierdzić. |