Please leave a . |
This page describes the data inclusion syntax for the Wikibase client, by which the properties of data items can be included and rendered on a wiki page using templates. In short: This is how we want OODA WIKI articles to include data from Wikidata.
The inclusion syntax presented here is meant to work for very simple cases, and only for them.
Complicated cases are to be realized using Lua.
Accessing Item Data
Properties
Properties of a Wikidata Item can be used via the #property parser function:
{{#property:P36}} {{#property:capital}}
This will provide a representation of the value of the capital
property of the page's default item. The default item is the Wikidata item that is associated with this page via language links.
The property label is case sensitive. It is also possible to use the identifier of the property (this is more stable against changes of the label of a property).
Properties of different items
To access properties of a different item, it has to be specified explicitly by its ID. (This was implemented in phab:T49930.)
{{#property:P36|from=Q183}}
→ {{#property:P36|from=Q183}}{{#property:capital|from=Q183}}
→ {{#property:capital|from=Q183}}
Specification of the item by its OODA WIKI title is not implemented yet:
{{#property:P36|from=Germany}}
→ {{#property:P36|from=Germany}}{{#property:capital|from=Germany}}
→ {{#property:capital|from=Germany}}However, using Scribunto, msg = mw.message.newRawMessage("{{#property:capital}}"):title("Germany"):text() will return "Bonn, Berlin" from any page. (Presently this result will not be updated when the Wikidata entry is updated)This workaround has been intentionally rendered inoperative.[1] You can use Wikidata if you run an external site that is free to make use of its API.- Another workaround: Scribunto function mw.wikibase.getEntityIdForTitle (not implemented yet - phab:T74815)
Property rank and multiple values
If a Wikidata property value has a "deprecated rank", {{#property:}} will not display it:
- Lua error in Module:Wd at line 621: attempt to index field 'wikibase' (a nil value). (Q25899) has Lua error in Module:Wd at line 621: attempt to index field 'wikibase' (a nil value). (P3520) value LEROUROB01 (deprecated rank)
{{#property:P3520|from=Q25899}}
→ {{#property:P3520|from=Q25899}}
- Lua error in Module:Wd at line 621: attempt to index field 'wikibase' (a nil value). (Q25899) has Lua error in Module:Wd at line 621: attempt to index field 'wikibase' (a nil value). (P213) value 0000 0004 3980 4014 (normal rank)
{{#property:P213|from=Q25899}}
→ {{#property:P213|from=Q25899}}
If a Wikidata property has multiple values, {{#property:}} will only display the highest ranked values:
- Lua error in Module:Wd at line 621: attempt to index field 'wikibase' (a nil value). (Q182462) has Lua error in Module:Wd at line 621: attempt to index field 'wikibase' (a nil value). (P1220) values 41898 (preferred rank) and 80344 (normal rank)
{{#property:P1220|from=Q182462}}
→ {{#property:P1220|from=Q182462}}
- Lua error in Module:Wd at line 621: attempt to index field 'wikibase' (a nil value). (Q2894503) has Lua error in Module:Wd at line 621: attempt to index field 'wikibase' (a nil value). (P1220) values 57807 and 69418 (both normal rank)
{{#property:P1220|from=Q2894503}}
→ {{#property:P1220|from=Q2894503}}
Check the existence of the property
Checks whether the property exists on wikidata to display an infobox using #if:
- Commons category of Lua error in Module:Wd at line 621: attempt to index field 'wikibase' (a nil value). (Q654117)
{{#property:P373|from=Q654117}}
→ {{#property:P373|from=Q654117}}
- Display main category with link from an infobox in OODA WIKI if that property exists
{{#if:{{#property:P373|from=Q654117}}|[[:commons:Category:{{#property:P373|from=Q654117}}]]}}
→ [[:commons:Category:{{#property:P373|from=Q654117}}]]
Work in progress
This article needs to be updated. |