Help:テンプレートデータ
![]() | Please do not mark this page for translation yet. このページをまだ翻訳対象には指定しないでください。 このページはまだ草稿です。 |
現在、このページは草稿です。
|
![]() |
注意: このページを編集すると、編集内容が CC0 のもとで公開されることに同意したと見なされます。詳細はパブリック・ドメインのヘルプ ページを参照してください。
|
![]() |
拡張機能 TemplateData でウィキテキスト テンプレートとそのパラメーターの情報を保存すると編集インターフェイスがそれを取得してテンプレート エディターに表示するため、そのテンプレートを使用したページの編集がしやすくなります。
2019年4月より TemplateData はウィキメディアのすべてのウィキに既定の UX (利用者体験) として組み込まれました。アカウントを登録していてもいなくても、参加するユーザーがテンプレートを追加すると適用されます。 既定のソース編集でもビジュアル編集でも、同じ適用法です。 スクリプトやツール、ガジェットなどあらゆるところで活用されます。 自身のウィキで使用したい場合は、Extension:TemplateData をインストールする必要があります。
特定のテンプレートに TemplateData を組み込む手順は、本質的にテンプレートの説明文書のページに JSON の小さなコードブロックを追加します (詳細は下記の説明をご参照ください)。 Whilst this may sound complicated, it's rather simple. 実行する方法は主に2つあり、手動か TemplateData 編集機能を使うかです。後者は 画像的な UI で、TemplateData 拡張機能を組み込んだウィキにある"Edit"/"Edit source" ページに配置してあります。 JSON にはパラメーターの一覧が含まれ、テンプレートの個々のパラメーターの情報と、テンプレート本体の説明を添えてあります。 These are outlined below.
Once a template has TemplateData, this information will show in the user interface when a user adds the template, sometimes in place of original info or sometimes as additional info. In some cases, it may change how the editor behaves when editing or inserting the template. This can make it much easier for users to identify what they need to do with a template when adding it.
歴史
TemplateData was originally developed in early 2013 with VisualEditor in mind, which was in MediaWiki testing stages at the time. VisualEditor is the main visual editing interface for Wikimedia wikis, and TemplateData allowed it to have a more useful interface when adding templates. It was officially supported by VisualEditor immediately. As VisualEditor was rolled out to the various major Wikimedia wikis as a default feature from 2013 through 2016, TemplateData became a part of them as well.
In December 2016, the VisualEditor interface was made available for editing source code as a beta feature. This was termed the 2017 wikitext editor. This brought the features of TemplateData to source editing for the first time.
In March 2018, Sam Wilson developed TemplateWizard , a GUI template editor extension for the default Wikimedia source editor, WikiEditor (otherwise known as the 2010 wikitext editor), designed to make the process of adding templates easier by using information from TemplateData. In April 2019, TemplateWizard was made a default part of the 2010 wikitext editor on all Wikimedia wikis. This meant that TemplateData was now a default part of both the visual editor and the source editor on Wikimedia wikis.
Adding or editing TemplateData
To add or edit TemplateData, first navigate to a template's page, located at "/Template:Templatename".
Prior checks
There are two things you should check before adding or editing TemplateData, in the following order:
- whether the template has a documentation subpage
- whether the template already has TemplateData and whether this is located on the template page or the documentation subpage.
Checking for the documentation subpage
The first thing to do is identify whether the template has a subpage for its documentation or not.
There are two main ways templates on most Wikimedia wikis store their usage notes and other data that shouldn't be included in the actual template itself, like categories the template should be contained in:
- The vast majority use a documentation subpage.
This is a page located at the template's name followed by "/doc". In this case, on the main template page after the template source code, there is only the text "{{Documentation}}
" between <noinclude>
tags. Here, the {{Documentation}} template transcludes all the /doc page's content onto the template page. This makes the template's source code look much cleaner.
- A small minority keep the information on the template's main page, after its source code.
In this case, it is contained after "{{Documentation|content=
", which is between <noinclude>
tags.
You can quickly identify whether a template has a /doc page by checking if the " Template documentation" (or similar) heading has links like "[view] [edit] [history] [purge]" after it.
This may look slightly different on different wikis.
Rarely, the main template page may still have documentation content even if you see these buttons and there is a /doc page.
This will happen if a user has added a custom /doc page title between "
{{Documentation|
" and "|content=
" then added content after "|content=
".
A slightly more reliable way to check is by looking for the notice, "The above documentation is transcluded from Template:Templatename/doc" (or similar), in the box at the bottom of the page.
If a template doesn't have a documentation subpage
If a template doesn't have a documentation subpage, you have two options:
- You can either create it and move its documentation (if it has any) there.
After this, you can then add TemplateData to the documentation subpage. This is the preferred option.
- Or, you can add or edit TemplateData on the main template page.
Creating the doc subpage and moving the documentation contents
On most Wikimedia wikis, you can only create a page if you are a registered user (and, at least on the English Wikipedia, have been for more than four days and have made at least ten edits).
To do this, click "Edit"/"Edit source" on the main template page, and look for the <noinclude>
tags and their contents, usually at the bottom.
It should look something like this:
<noinclude>
{{Documentation|content=
== Usage ==
Information about usage.
== More example headings ==
More example contents
[[Category:Example category]]
[[Category:Example category 2]]
}}
</noinclude>
It might also have TemplateData already. This will look something like:
<noinclude>
{{Documentation|content=
...
<templatedata>
{
"description": "",
"params": {
"1": {
"label": "Example parameter",
"description": "Example parameter description",
"type": "string"
}
}
}
</templatedata>
</noinclude>
Select everything after "|content=
" and before "</noinclude>
", cut it, then delete "|content=
", so you are just left with:
<noinclude>
{{Documentation}}
</noinclude>
Now, save the page.
Next, add "/doc" to the URL in the address bar after the template name, and press Enter. Then, click "Create source".
If your wiki has a {{Documentation subpage}} notice template, add it at the top. You may also want to add some other templates, like a {{Purge button}} or {{Purge}} link, if your wiki has it. See meta:Help:Template documentation for more info.
Beneath this, paste the contents of the clipboard.
Next, enclose the categories within <includeonly>
tags.
This is so that they don't have an effect on the doc subpage, only on the template's main page.
This will look like this:
<includeonly>
[[Category:Example category]]
[[Category:Example category 2]]
</includeonly>
Some wikis (including the English Wikipedia) have a {{Sandbox other}} template. Use this if the template can be expected to have a sandbox version, located at "Template:Templatename/sandbox". It will stop the categories from having an effect on the sandbox page.
This will look like this:
<includeonly>{{sandbox other||
[[Category:Example category]]
[[Category:Example category 2]]
}}</includeonly>
After this, click "Publish page".
You can now add or edit the TemplateData on the documentation subpage based on the guidance at #Methods.
Adding or editing TemplateData on the main template page
If you do not wish to or are unable to create the /doc page, you can add or edit TemplateData on the main template page. Follow the guidance at #Methods to do this.
If a template has a documentation subpage
If a template has a documentation subpage, you should now check whether it already has TemplateData and whether this is located on the template page or the documentation subpage.
Check both the template page and the /doc subpage for the presence of TemplateData documentation; this looks something like this:
Parameter | Description | Type | Status | |
---|---|---|---|---|
Example parameter | 1 | Example parameter description | String | optional |
Alternatively, the TemplateData extension can perform this check for you. Simply click "Edit" or "Edit source" on either page.
If the template already has TemplateData on either page, you will see a yellow notice at the top of the page saying either:
- "Please note: there is already a TemplateData block on the related page "Template:Templatename/doc"", or
- "Please note: there is already a TemplateData block on the related page "Template:Templatename""
If the template has TemplateData on its documentation subpage
If the template has TemplateData on its documentation subpage, this is the page you should edit.
You can do this by clicking the "[edit]" located after the heading " Template documentation" (or similar), or, if you are already on the /doc page, simply clicking "Edit" or "Edit source" at the top.
Follow the guidance at #Methods to add or edit the TemplateData.
If the template has TemplateData on its main page
If the template has TemplateData on its main page, you once again have two options:
- You can either move to its documentation subpage. This is the preferred option.
- Or, you can edit it on the main template page.
Moving TemplateData to the documentation subpage
To do this, simply click "Edit"/"Edit source" on the main template page, and look for the <templatedata>
tags, enclosed within <noinclude>
tags.
It should look something like this:
<noinclude>
{{Documentation}}
<templatedata>
{
"description": "",
"params": {
"1": {
"label": "Example parameter",
"description": "Example parameter description",
"type": "string"
}
}
}
</templatedata>
</noinclude>
Cut only the <templatedata>
tags and their contents out of the code, then save the page.
Next, edit the documentation subpage by clicking the "[edit]" located after the heading " Template documentation" (or similar).
Type a heading, like "TemplateData", then beneath it paste the TemplateData.
You can now edit the TemplateData based on the guidance at #Methods.
Editing TemplateData on the main template page
If you do not wish to move the TemplateData to the /doc page, you can edit it on the main template page. See #Methods for how to edit TemplateData.
If the template does not yet have TemplateData but has a doc subpage
If the template does not yet have TemplateData, you should add it to the documentation subpage.
Do this by clicking the "[edit]" located after the heading " Template documentation" (or similar), or, if you are already on the /doc page, simply clicking "Edit" or "Edit source" at the top.
Type a heading, like "TemplateData", then add it beneath this heading.
The section #Methods explains how to add TemplateData.
Methods
TemplateData editor method
This is the simpler way to add or edit TemplateData, possible for inexperienced users.
TemplateData 拡張機能には TemplateData の追加と編集を行うため同名の組み込みツールがあり、画像で手順を示す UI を採用しています。 It is part of the TemplateData extension. テンプレートデータ編集ツールを使用するには、テンプレートのページ (またはその解説下位ページ) を開き「編集」ボタンまたは「ソースを編集」ボタンを押します。
After clicking "Edit" or "Edit source", you will see a button above the editing area and page title that says "テンプレートデータを管理".
このボタンをクリックするとTemplateData 編集機能が開きます。
ページに既存のテンプレートデータがある場合、自動的に表示されます。
Features in the above window:
- The top item is "Language". This item allows you to enter text content in multiple different languages, which will show depending on the language setting of the user in Preferences. It will not show depending on the language wiki, as different wikis have entirely different databases of templates. If no language TemplateData exists yet, only the language of the wiki the user is on will be available, but the user can click "Add language" to add more inputs. The language code will show in brackets next to the parameters for which it can be applied to. These include descriptions and labels.
- The next item is the template description. This is the description of the template as a whole and is shown in various places to the user in the template editors while adding a template. This parameter and its effects are outlined here.
- The third item is the wikitext formatting of the template. This parameter determines how the wikitext should be laid out when the user clicks "Insert", the two main types being "inline" (on one line) and "block" (on new lines). This parameter and its effects are outlined here.
- If the user chooses "Custom", they will be able to enter a set of wikitext under "Custom format string", according to rules outlined here, to create a custom layout for the template when the user clicks "Insert".
- The fourth item is "Template parameters". This contains a list of parameters already defined in the TemplateData, if they exist. If there are parameters stated in the template's source code for which no TemplateData exists yet, you may see a button called "Add suggested parameters". These are extracted from the template's source code by looking for
{{{parametername}}}
or{{{parametername|}}}
. Clicking "Add suggested parameters" will add these parameters under their names as defined in the source code. This will also show a green notice at the top: "2 new parameters were imported: names of parameters".
- At the bottom is "Add parameter". This allows you to add a parameter manually with a custom name.
The next stage is clicking any one of the parameters in the list. This will allow you to edit that parameter's info.
All of these features and their effects are outlined at #Within a parameter's name.
- The TemplateData editor will not allow you to change a parameter to a blank "Name". If you were to write a parameter in TemplateData with a blank string as a name, this would not cause issues in the 2010 wikitext editor with TemplateWizard, but it would not show up at all in VisualEditor or the 2017 wikitext editor. This is the only mandatory field in the TemplateData editor.
- Clicking "Remove parameter information" will delete the parameter and all its information from the TemplateData. You will not be able to retrieve or undo this in the TemplateData unless you click "X" afterwards. You can undo any changes made after clicking "Apply" by simply hitting Ctrl+Z.
- Exiting the TemplateData editor after making changes shows a prompt asking if you're sure you want to discard your changes.
When you are finished, click "Apply".
This will automatically insert the TemplateData at the bottom of the page before the </noinclude>
tag; or, if it already exists, it will update it with the new information without changing its position at all.
The TemplateData text will also be selected when you click "Apply".
The TemplateData editor creates a "paramOrder"
parameter at the bottom of the TemplateData or updates it if it already exists.
This contains the current TemplateData parameters in the order they were displayed in the TemplateData editor.
You can change the paramOrder by dragging the parameters in different orders in the TemplateData editor using the three horizontal bars on the left.
"paramOrder"
and its effects are outlined here.
After this, click "Save" to save the revision of the page.
Manual method
The alternative is to add or edit TemplateData manually. You may need or wish to do this in some cases.
テンプレートデータの構造は JSON 標準に基づいています。テンプレートデータ内のすべての記述は、平文つまりプレーンテキストでなければならない (ウィキテキストやリンクその他を使えない) ことに気をつけてください。
It follows a few very simple rules and takes only a few dozen possible predefined parameters and values, almost always in a "parameter": "value"
format.
Adding TemplateData manually
Preconsiderations:
- If you're adding TemplateData on a template's documentation subpage, you may add it anywhere on the page; check to see if your language's Wikipedia has a preferred location for it. For example, on the English Wikipedia, TemplateData is typically near the bottom of the documentation page; on the German Wikipedia, it is typically at the top.
- If you're adding TemplateData on a template's main page (which is not preferred; see #Prior checks), you must make sure that it is within the
<noinclude></noinclude>
tags.
First, click "Edit" or "Edit source" on the respective page, then go to the position you are adding the TemplateData and write a heading like "TemplateData".
Many wikis (but not all) have a {{TemplateData header}} template, which adds a short notice about the TemplateData. If yours does, add this after the heading.
To start adding the TemplateData, type an opening and closing <templatedata>
tag and a pair of curly brackets on new lines, with an empty line between them:
<templatedata>
{
}
</templatedata>
Next, add an indent on the empty line between the two curly brackets, and start adding parameters. Details for the parameters can be found at #TemplateData parameters. Most are optional, but some are highly recommended.
Parameters can be in any order, but the order that will best correlate with what shows in the TemplateData documentation and contribute to ease of use for editors is the following:
<templatedata>
{
"description": "",
"format": "",
"params": {
"parameter1": {
"aliases": ["",""]
"label": "",
"description": "",
"type": ""
}
},
"paramOrder": [
""
]
}
</templatedata>
パラメータの順序は、たとえば#Unexpected propertyオブジェクトがオブジェクト内に置かれるように、内部にある限り機能性に影響しません。
例
Here is some example TemplateData for a hypothetical cleanup template. The template would display a notice, and its source code would be programmed to place the page into a dated category based on the month and year entered. The notice could also contain a link to a talk page section, if specified. The TemplateData would look something like this:
<templatedata>
{
"description": "Use this template to indicate that an article is in need of cleanup.",
"format": "inline",
"params": {
"date": {
"label": "Month and year",
"description": "The month and year that the template was added",
"type": "string",
"autovalue": "{{SUBST:CURRENTMONTHNAME}} {{SUBST:CURRENTYEAR}}",
"example": "January 2013",
"suggested": true
},
"reason": {
"aliases": ["1"],
"label": "Reason",
"description": "The reason the article is in need of cleanup",
"type": "string"
},
"talk": {
"aliases": ["talksection"],
"label": "Talk page section",
"description": "The section of the talk page containing relevant discussion",
"type": "string"
}
},
"paramOrder": [
"date",
"reason",
"talk"
]
}
</templatedata>
The corresponding TemplateData documentation would display as the following:
Use this template to indicate that an article is in need of cleanup.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Month and year | date | The month and year that the template was added
| String | suggested |
Reason | reason 1 | The reason the article is in need of cleanup | String | optional |
Talk page section | talk talksection | The section of the talk page containing relevant discussion | String | optional |
TemplateDataのパラメーター
Each parameter for TemplateData is listed below with a description and example. They are also listed at Extension:TemplateData#Format.
- この情報は2020年2月時点で現状に即しており、パラメータの新規追加あるいはテンプレート編集インターフェイスの更新により特定のパラメータの扱い方が変わったり特定の挙動を修正する場合には、状況が変わる可能性があります。
- Wiki markup will not work in descriptions or labels. They are strictly plain text strings.
- New lines ("\n") in descriptions, labels, examples or defaults will not show in any of the main editors (TemplateWizard, VisualEditor or the 2017 wikitext editor), even though they show in the auto-generated TemplateData documentation. They are replaced by a null string in input forms and by a space elsewhere.
パラメーター | 説明 | 例 |
---|---|---|
description |
Effects On the template documentation page, the description will show in plain text below the "Template data for [template name]" subheading. In all main editors (VisualEditor , the 2017年版ウィキテキストエディター and the 2010 wikitext editor with TemplateWizard), the description shows in two main instances:
In the VisualEditor and 2017 wikitext editor, the description gets truncated to about 50 characters under each search suggestion, followed by a "...", but the whole description shows in the main template editor window. Both are shown in grey text. In the 2010 wikitext editor with TemplateWizard, the whole description shows under each search suggestion, in grey text. In the main template editor window, descriptions longer than four lines (about 540 characters) are provided a separate scrollbar, and they are shown in black text. If not specified If the description parameter does not exist or is not specified, the text "No description." will be displayed in the TemplateData documentation below the "Template data for [template name]" subheading. Additionally:
|
"description": "これはテンプレートについてコモンズカテゴリにリンクするためのテンプレートです。",
|
format |
その次にあるのが This parameter is not required, but it is recommended. The default behaviour when this parameter does not exist is inline formatting, and no corresponding notice is displayed in the TemplateData documentation below the table heading. Effects Inline: パラメータを
When inserted, the template will lay its wikitext out on a single line with no white space between elements, like so:
Block: パラメータを
When inserted, the template will distribute its parameters each on a new line, with single spaces between each element, like so: {{Foo | bar = baz | qux = quux }} Custom formatting: Alternatively, if the parameter is set to a custom string of wikitext, as per the rules listed at #Custom formats, the template will display the following preference notice in its TemplateData documentation:
When inserted, the template will lay its wikitext out as per the given wikitext. |
"format": "inline"
|
params |
The It should contain the name of each parameter followed by a set of TemplateData sub-parameters listed in #Within a parameter's name. 複数のパラメータがある場合は、1点ごとの波カッコに続けて半角カンマ「,」で区切って 並べます (最後の1点の後だけでは正しく動作しません。) |
"params": {
"parameter1": {
... // パラメーター情報
}, // このカンマを見落とさないこと
"parameter2": {
... // parameter info
}, // こちらにもあります:
"parameter3": {
... // パラメーター情報
} // but not here
}
|
paramOrder |
The How to use It is used by adding the parameter The parameters do not have to be on new lines (they can be It is recommended that you place Every parameter mentioned in the TemplateData must be included, otherwise a "Required property" error will show. If not specified If With other parameters In the 2010 wikitext editor with TemplateWizard, In VisualEditor and the 2017 wikitext editor, |
"paramOrder": [
"date",
"reason",
"talk"
]
|
Within params
パラメーター | 説明 | 例 |
---|---|---|
parameter name |
For example, in a template's source code, if you see You may also see parameters named
How to use Each of these "parameter name" objects should contain all of the information about the parameter, in the form of more TemplateData parameters. These are listed in the following section, Within a parameter's name. |
"1": { // パラメータの名前
... // パラメータに関する情報はここに。
}
|
Within a parameter's name
Parameter | 説明 | 例 |
---|---|---|
aliases |
The
This means that if the user inserts either of these parameters with a value, they will perform the same function. Literally, it translates to, "Value of parameter1. If parameter1 doesn't exist or have a value, value of parameter2." In the second case, it also means, "If parameter2 doesn't exist or have a value, no value." To insert the |
"aliases": ["1", "talk", "talksection"],
|
inherits |
To use this parameter, type |
"params": {
"トピック1": {
"label": "トピック",
"description": "曖昧さ回避ページにあげたトピック",
"type": "string"
},
"トピック2": {
"inherits": "トピック1"
},
"トピック3": {
"inherits": "トピック1",
"label" : "A different label"
}
}
|
label |
次の |
"label": "Month and year",
|
description |
パラメータ名によって命名されたそれぞれの項目のうち、 |
"description": "The month and year that the template was inserted",
|
type |
See the #Type parameter section. |
|
default |
Occasionally, a template parameter is programmed to have a default value that is used unless you change it.
The Effects In all main editors (VisualEditor, 2017 wikitext editor and the 2010 wikitext editor with TemplateWizard), the "default" text will show as grey text in the input box of any open parameter when it is empty, in the format With other parameters In all main editors (VisualEditor, 2017 wikitext editor and the 2010 wikitext editor with TemplateWizard), if "default" is specified, the "example" value will not show in the input box. |
"default": "Category:CommonsRoot",
|
autovalue |
パラメータには "autovalue" つまり自動値を設定できます。利用者がそのようなテンプレートをページに用いる場合、自動値が自動的にインプット欄に表示されます。例えばクリーンアップ用テンプレートの多くには日付の記入が必須で、日付パラメータの自動値をあらかじめ This parameter does not force the value to always be this value. The user can freely change the value that is automatically inputted into the parameter in the template editor. With other parameters In all main editors (VisualEditor, 2017 wikitext editor and the 2010 wikitext editor with TemplateWizard), |
"autovalue": "{{subst:CURRENTMONTHNAME}} {{subst:CURRENTYEAR}}"
|
example |
The Effects In all main editors (VisualEditor, 2017 wikitext editor and the 2010 wikitext editor with TemplateWizard), it shows a grey text in the input box of any open parameter when it is empty, in the format With other parameters In all main editors (VisualEditor, 2017 wikitext editor and the 2010 wikitext editor with TemplateWizard), "example" will not show in the input box if "default" is specified. |
"example": "January 2013",
|
required |
続いて これは、単にこのパラメータの記入が必須かどうかを指定します。 Effects This status has several effects in VisualEditor and the 2017年版ウィキテキストエディター :
In the 2010 wikitext editor with TemplateWizard, like in the other editors, it causes the parameter to automatically show up when a user inserts a template, but in this editor the parameter cannot be removed. It also does not display "Field is required" in the parameter description; rather, it lists the parameter on the side under "Required parameters". Other than this, it generally behaves the same as in the other editors, except that the prompt says that the input doesn't "match the expected format". With other parameters In VisualEditor and the 2017 wikitext editor, the "deprecated" status does not override the functionality of this parameter, but in the 2010 wikitext editor with TemplateWizard it does. See the description of "deprecated" for more info. |
"required": true
|
suggested |
続いて これはテンプレートの利用に際して当該パラメータが「必須」ではないものの強く推奨される(が強制ではない)状態です。 Effects In VisualEditor and the 2017年版ウィキテキストエディター , it causes the parameter to automatically show up when a user inserts a template. If the parameter has an autovalue set, this will also automatically be in the parameter's input box. It has no other effect and doesn't show any additional text or warnings. In the 2010 wikitext editor with TemplateWizard, it does not place the parameter in the template automatically but instead causes it to be listed on the side under "Suggested parameters". The user can then click a "+" next to the parameter to add it to the template. With other parameters The "required" status overrides the functionality of this status in all main editors (VisualEditor, the 2017 wikitext editor and the 2010 wikitext editor).
It also overrides the displayed "suggested" status in TemplateData documentation (it will display "required" if both "required" and "suggested" are set to |
"suggested": true
|
deprecated |
最後の、 これはパラメータの使用が既に推奨されないものの、いまだに存在していることを示すものです。 この現象は、テンプレートを使用は するパラメータの組み合わせが変更された場合に起こりえます。 Effects The effect of this parameter in VisualEditor and the 2017 wikitext editor is that a grey exclamation mark shows next to the parameter's label when it is inserted, and in the parameter's information tooltip, the grey, italic text "Field is deprecated" is shown below the parameter description. It does not affect the functionality or usability of the parameter or show any additional warnings. Despite the fact that it can take a string, as of January 2020 none of the main editors (VisualEditor, the 2017 wikitext editor or the 2010 wikitext editor) display the contents of the string anywhere to users.
Inputting a string has the same effect as In the 2010 wikitext editor with TemplateWizard, setting this value as With other parameters If you set both this and "suggested" as If you set both this and "required" as In the 2010 wikitext editor with TemplateWizard, "deprecated" overrides the parameters "required" and "suggested". |
"deprecated": "代わりに'publicationDate'を使用してください。"
|
Note: if neither "required", "suggested" nor "deprecated" are set as true for a parameter, its status will show as "optional" in the TemplateData documentation.
処理が終わったら、「保存」を押します。エラーがある場合には保存できません (一瞬、戸惑うかもしれませんが、破壊の予防になります) 。自力でエラーを解決できないときは喜んでお手伝いしますので、フィードバック用のページに投稿して何をどうしたかったか説明をお願いします。
注記:ダイナミックなTemplateDataを作成するためにハックテンプレートの不正使用を試みようとする場合、保存前にエラーの検証はできない点にご注意ください。
注記:どの情報も半角の二重引用符で挟んであり (例外は true
と false
) 、かたまりごとに半角カンマで区切る点に注意します (ならびの末尾を除く) 。
Type parameter
そのあとは"type"
パラメータの役割は、テンプレートエディタに、そのパラメータ値の解釈を伝えることです。
In some cases, template editors have been programmed to modify the user interface for a certain parameter according to this TemplateData value, such as to only allow the user to enter valid values that match the specified type.
This parameter does not have any functional effect on the template parameter or its value; it merely controls how template editors see and treat the parameter in editing mode.
How to use
It is used by adding the "type"
parameter, followed by a colon and a space, then adding any of the values listed in the table below in speech marks.
Example:
"type": "string",
Effects
As of February 2020, only 5 of the 13 type values have visible effects in VisualEditor and the 2017 wikitext editor, while 8 have visible effects in TemplateWizard.
The effects of certain values are likely to change as the template editors get updates to support them. One such effort for VisualEditor and the 2017 wikitext editor is tracked in the Phabricator task T55613. A similar effort to get TemplateWizard to support the boolean value is tracked in T200664.
The currently known effects are listed as follows.
Value | Description |
---|---|
unknown | The Effects In all main editors (VisualEditor, 2017 wikitext editor and the 2010 wikitext editor with TemplateWizard), |
number |
The Effects
With other parameters
|
string |
The Effects In all main editors (VisualEditor, 2017 wikitext editor and the 2010 wikitext editor with TemplateWizard), |
line |
The Effects
|
boolean | The Effects As of February 2020, none of the main Wikimedia editors (VisualEditor, 2017 wikitext editor or the 2010 wikitext editor with TemplateWizard) make use of this value. It has no visible effects. |
date | The Effects
With other parameters
|
url |
The Effects
required " setting, but it does not warn the user if they attempt to insert the template without a valid URL. It also occurs with any status setting (such as "suggested" " or "deprecated ").
With other parameters
|
wiki-page-name |
The Effects In all main editors (VisualEditor, 2017 wikitext editor and the 2010 wikitext editor with TemplateWizard), |
wiki-file-name |
The Effects
|
wiki-template-name |
The Effects In all main editors (VisualEditor, 2017 wikitext editor and the 2010 wikitext editor with TemplateWizard), |
wiki-user-name |
The Effects In all main editors (VisualEditor, 2017 wikitext editor and the 2010 wikitext editor with TemplateWizard), |
content |
The Effects
|
unbalanced-wikitext |
The Effects
|
特別な書式
When editing the "format"
value, you create custom formats by inputting a set of wikitext symbols using some predefined rules.
{{
- start of the template_
- content (e.g., string, integer or parameter). This underscore serves to indicate the minimum length of a value in characters and can be repeated, like_______
. If this length is not reached, it fills the remaining characters with spaces. This can be used to align all equals signs to a specific position after a parameter (if used with\n
for new lines).|
- pipe (separates parameters)=
- equals sign (precedes the value of a parameter)\n
or pressing the enter key - new line (this will display as↵
in the entry field)\n
to indent new lines)}}
- end of the template
The wikitext should at least meet the minimum of {{_|_=_}}
, otherwise there will be an invalid format string error.
目的 | 書式文字列 | 出力 |
---|---|---|
インラインの書式設定 | {{_|_=_}} inline
|
{{Foo|bar=baz|qux=quux}}{{Bar}} |
ブロックの書式 | {{_\n| _ = _\n}} block
|
{{Foo | bar = baz | qux = quux }}{{Bar }} |
パラメータ名の前に空白(スペース)を入れない。テンプレートごとに改行 | \n{{_\n|_ = _\n}}\n
|
{{Foo |bar = baz |qux = quux }} {{Bar }} |
パラメータの位置をインデントで揃える | {{_\n |_ = _\n}}
|
{{Foo |bar = baz |qux = quux }}{{Bar }} |
パラメータ名をすべて一定の文字数に調整 | {{_\n|_______________ = _\n}}\n |
{{Foo |bar = baz |qux = quux |veryverylongparameter = bat }} {{Bar }} |
前の行の終わりにパイプ記号を置く | {{_|\n _______________ = _}}
|
{{Foo| bar = baz| qux = quux}}{{Bar}} |
インラインの書式。半角スペースを多用、行頭の典型 | \n{{_ | _ = _}}
|
{{Foo | bar = baz | qux = quux}} {{Bar }} |
行頭に置くテンプレート。パイプ記号に続けてパラメータを置き、インデントで位置を揃える | \n{{_ |\n _______________ = _}}
|
{{Foo | bar = baz | qux = quux}} {{Bar}} |
ブランク定型
以下に示す値が空の定型を複写して使用すると、特定のテンプレートに新規にテンプレートデータを記入できます。タグは最も一般的なタグのみ提供してあります。
<templatedata>
{
"description": "",
"params": {
"1": {
"label": "",
"description": "",
"type": ""
},
"2": {
"label": "",
"description": "",
"type": ""
}
}
}
</templatedata>
エラー
Syntax error in JSON / Bad JSON format
This error occurs if you attempt to save TemplateData that has certain types of invalid JSON code, such as duplicate keys (parameters) or trailing/missing commas, in VisualEditor or the 2017 wikitext editor (JavaScript-based editors).
"Syntax error in JSON" shows if you attempt to save such code in VisualEditor or the 2017 wikitext editor, while "Bad JSON format" shows if you attempt to open up such code in the TemplateData GUI editor, on template pages.
This error can come up quite frequently while editing a template's TemplateData. The most common mistakes that cause this error include excess commas (such as trailing commas), missing commas and missing quotation marks.
- Examples of trailing commas:
<templatedata>
{
"description": "",
"format": "inline",
"params": {
"1": {
"label": "",
"description": "",
"type": "", // <-- This comma shouldn't be here.
}, // <-- This comma shouldn't be here.
}, // <-- This comma shouldn't be here.
}
</templatedata>
- Examples of missing commas:
<templatedata>
{
"description": "",
"format": "inline" // <-- A comma should be here.
"params": {
"1": {
"label": "",
"description": "" // <-- A comma should be here.
"type": ""
}
}
}
</templatedata>
- Example of missing quotation marks:
"description": An example description // <-- This text should have quotation marks.
To fix these errors, you can either look for the errors in the code yourself, or you can enter the JSON block into an external JSON validator, such as JSONLint, and it will highlight the problematic commas and keys that should be removed.
Due to a longstanding bug, users using the 2010 wikitext editor are able to save pages that have such invalid JSON (details: タスク T128029), as the JavaScript parser is less strict and allows invalid JSON.
Required property "paramOrder(number)" not found.
This error occurs if you state a parameter in "params"
that is not stated in "paramOrder"
.
The number in the square brackets refers to the parameter in "paramOrder"
that is missing. It refers to its order in the sequence, but it is one less than its actual position, since "paramOrder"
is an array; 0 is the first one, 1 is the second, etc.
"params": {
"date": { ...
},
"reason": { ...
},
"talk": { ... // <-- This parameter is not stated in "paramOrder", but it should be.
}
},
"paramOrder": [
"date",
"reason"
]
// Error: Required property "paramOrder[2]" not found.
To fix this, make sure all parameters stated in "params"
are listed in "paramOrder"
.
Alternatively, you can remove the "paramOrder"
object to remove this error.
Invalid value for property "paramOrder(number)".
This error occurs if you state a parameter in "paramOrder"
that is not stated in "params"
.
The number in the square brackets refers to the parameter in "paramOrder"
that shouldn't be there. It refers to its order in the sequence, but it is one less than its actual position, since "paramOrder"
is an array; 0 is the first one, 1 is the second, etc.
"params": {
"date": { ...
},
"talk": { ...
}
},
"paramOrder": [
"date",
"reason", // <-- This parameter is not stated in "params", but it should be.
"talk"
]
// Error: Invalid value for property "paramOrder[1]".
To fix this, make sure all parameters stated in "paramOrder"
are listed in "params"
.
Alternatively, you can remove the "paramOrder"
object to remove this error.
Property "params.parametername.required" is expected to be of type "boolean".
"suggested": "true" // <-- These quotation marks shouldn't be here.
These are boolean values, not strings, therefore they require no quotation marks.
To fix this, remove any quotation marks around the values true
or false
for these parameters.
Property "format" is expected to be ...
If the "format"
parameter exists but its value is not "inline"
, "block"
or a valid format string, you will see the error message "Property "format" is expected to be "inline", "block", or a valid format string."
"format": "notinline"
// Error : Property "format" is expected to be "inline", "block", or a valid format string.
To fix this, make sure the value after "format":
equals "inline"
or "block"
and that there no spelling mistakes. Alternatively, if it's wikitext, make sure it contains a minimum of {{_|_=_}}
and that there are no mistakes in the syntax that would normally cause a template to fail, such as duplicate equals signs or missing/duplicate curly brackets; see the section #Custom formats for the syntax for custom formats.
Alternatively, you can remove the "format"
parameter to remove this error.
Unexpected property "parametername".
This error occurs if you state a parameter that does not exist in TemplateData. This is probably due to spelling mistakes.
<templatedata>
{
"description": "",
"format": "inline",
"params": {
"1": {
"label": "",
"descriptino": "", // <-- spelling mistake
"type": ""
}
}
}
</templatedata>
It also occurs if you state a parameter in any TemplateData object that is not a parameter of that object. This may be due to spelling mistakes, or you may have written the parameter of one TemplateData object under another object that it doesn't belong to.
For example, you might have written the parameter "label"
under the root TemplateData object instead of inside "params"
:
<templatedata>
{
"description": "",
"format": "inline",
"label": "", // <-- incorrectly placed parameter
"params": {
"1": { // ↓ it should be in here
"description": "",
"type": ""
}
}
}
</templatedata>
Alternatively, if the unexpected parameter is under a template parameter inside "params"
, you'll see its name after "params.parametername." in the error.
To fix this, make sure there aren't any spelling mistakes in the parameter names, and make sure your parameters are in their correct location. Additionally, make sure you don't state any parameters that don't exist for a TemplateData object. You can check which parameters exist for an object in the section #TemplateData parameters.
Required property "params" not found.
This error occurs if there is no "params"
object in the TemplateData.
This is a necessary object, as it contains all the details of each parameter, so to fix this error, make sure it's added and that there are no spelling mistakes.
See the section above on how to add the "params"
parameter.
制限とフィードバック
- 不足している機能 – テンプレートデータをあえて機能を制限したツールのサンプルとして提供したのは、どんな機能を求めているか利用者に教えてもらうことで開発の支援をお願いできないかという考えがあるからです。テンプレートデータの新機能の提案がありましたら、ぜひお知らせください。
- テンプレート表示が遅れる – テンプレートページへ TemplateData を追加後、ビジュアルエディターでテンプレートを開くと、メタデータがすぐに表示されるはずです。しかしながらメタデータの表示には数時間を要する可能性があります。強制的に更新するには (説明文書の下位ページではなく) テンプレートページ自体に空編集をします。空編集を行うテンプレートページを開き、「任意の変更を加えず編集要約欄は空欄のまま」ページを保存します。
- 現在の問題 – 現在のバグや機能要求のリストはWikimedia バグトラッカーで利用可能です。
その他のツール
- Help:Extension:TemplateWizard
- ツールバーのダイアログウィンドウ。テンプレートデータから生成したフォームを使い、テンプレートにウィキテキストを記入するために使用。
- TemplateData Wizard
- テンプレートデータを生成するツール。インタラクティブなインターフェースを使用。
- Skeleton TemplateData generator
- テンプレートのソースウィキコードを解読するツール。使用するすべてのパラメータ(引数)を検出し、値が空のドキュメントとパラメータの一覧を出力。
- JSONLint
- 手入力したJSONが正しいかどうか確認するツール。構文エラーの発見に役立つ。
- このウィキにあるテンプレートデータを備えたテンプレートの一覧
- ドイツ語版ウィキペディアのテンプレートに備わったテンプレートデータでは、ボックス内にテンプレートのデータを表示。テンプレートはそのデータとともにドイツ語版ウィキペディアの特定のカテゴリに分類される