Jump to content

Wikidata/Notes/Inclusion syntax v0.4: Difference between revisions

From Meta, a Wikimedia project coordination wiki
Content deleted Content added
No edit summary
Line 33: Line 33:


''(Note: this is not implemented yet)''
''(Note: this is not implemented yet)''

== Work in progress ==
* [[bugzilla:48937]] - Time and date properties do not work yet



[[Category:Wikidata]]
[[Category:Wikidata]]

Revision as of 10:56, 6 June 2013

New Version (May 2013) This is a subset of the previous draft!

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 Wikipedia 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).

(Note: currently, only IDs work, the property labels should be switched on in May 20 (en)/22 (others))

Properties of different items

To access properties of a different item, it has to be specified explicitly, either by ID or by their Wikipedia title.

 {{#property:capital|of=Q183}}
 {{#property:capital|of=Germany}}

(Note: this is not implemented yet)

Work in progress