コンテンツにスキップ
メインメニュー
メインメニュー
サイドバーに移動
非表示
案内
メインページ
最近の更新
カテゴリ一覧
信号灯器
レンズ
アーム
フード(庇)
金具
信号柱
信号機メーカー
警交仕規
制御機
信号制御
設置方法
音響装置
管理番号
周辺物
交差点
その他
俗語集
俗語
編集方針等
信号機Wikiの編集方針
信号機Wikiを二次利用する
ヘルプ
著作権について
お問い合わせ
信号機Wiki
検索
検索
表示
アカウント作成
ログイン
個人用ツール
アカウント作成
ログイン
ログアウトした編集者のページ
もっと詳しく
投稿記録
トーク
「
モジュール:Message box/doc
」を編集中
モジュール
議論
日本語
閲覧
ソースを編集
履歴表示
ツール
ツール
サイドバーに移動
非表示
操作
閲覧
ソースを編集
履歴表示
全般
リンク元
関連ページの更新状況
特別ページ
ページ情報
表示
サイドバーに移動
非表示
警告:
ログインしていません。編集を行うと、あなたの IP アドレスが公開されます。
ログイン
または
アカウントを作成
すれば、あなたの編集はその利用者名とともに表示されるほか、その他の利点もあります。
スパム攻撃防止用のチェックです。 けっして、ここには、値の入力は
しない
でください!
{{Lua|モジュール:Message box/configuration|モジュール:Arguments|モジュール:Category handler|モジュール:Yesno}} 英語版の Revision as of 09:03, 2 October 2017 まで取り込んだ時点で用意されていた、2019年初頭の文書の翻訳です。 このメタモジュールには、メッセージボックス・テンプレート({{tl|mbox}}, {{tl|ambox}}, {{tl|cmbox}}, {{tl|fmbox}}, {{tl|imbox}}, {{tl|ombox}}, and {{tl|tmbox}})が実装されています。Luaモジュールから呼び出されることが想定され、ウィキのページから直接使用すべきではありません。もしこのモジュールの機能をウィキページで使いたいのであれば、代わりにそれぞれのメッセージボックス・テンプレートを使用してください。 == 使用法 == このモジュールを他のLuaモジュールにて使うには、最初に読み込みが必要です。 <syntaxhighlight lang="lua"> local messageBox = require('Module:Message box') </syntaxhighlight> メッセージボックスを作るには、<code>main</code>関数を使います。2つの引数があります: 1つ目はメッセージボックスの type (文字列) 2つ目はメッセージボックスの引数を含んだ連想配列です。 <syntaxhighlight lang="lua"> local box = messageBox.main( boxType, { param1 = param1, param2 = param2, -- More parameters... }) </syntaxhighlight> 7種類のメッセージボックスがあります: {| class="wikitable" ! Box type !! Template !! Purpose |- | <code>mbox</code> || {{tl|mbox}} || 複数の名前空間 multiple |- | <code>ambox</code> || {{tl|ambox}} || 記事 Article 名前空間 |- | <code>cmbox</code> || {{tl|cmbox}} || カテゴリ 名前空間 |- | <code>fmbox</code> || {{tl|fmbox}} || interface message boxes |- | <code>imbox</code> || {{tl|imbox}} || 画像 image ファイル 名前空間 |- | <code>tmbox</code> || {{tl|tmbox}} || ノート talk page 名前空間 |- | <code>ombox</code> || {{tl|ombox}} ||他の other 名前空間 |} 使用できる引数については、それぞれのテンプレートのページをご覧ください。 == #invokeからの使用 == このモジュールを #invoke で利用する場合は、ボックスの種類に応じて<code><nowiki>{{#invoke:Message box|mbox|...}}</nowiki></code>, <code><nowiki>{{#invoke:Message box|ambox|...}}</nowiki></code>などとしてください。 他のモジュールから当モジュールを使用する際も<code>mbox</code>や<code>ambox</code>のような関数名は使用可能ですが、その場合は #invoke に渡された引数を処理するためのコードを利用するので、直接<code>main</code>関数を呼び出す場合と比べて効率が悪くなるでしょう。 == 専門的な詳細 == このモジュールは、それぞれのテンプレートのために、以下のような同じ基礎となるコードを使っています。違いは[[Module:Message box/configuration]]のデータを使って設定されます。設定可能なオプションは以下です。 * <code>types</code> - a table containing data used by the type parameter of the message box. The table keys are the values that can be passed to the type parameter, and the table values are tables containing the class and the image used by that type. * <code>default</code> - the type to use if no value was passed to the type parameter, or if an invalid value was specified. * <code>showInvalidTypeError</code> - whether to show an error if the value passed to the type parameter was invalid. * <code>allowBlankParams</code> - usually blank values are stripped from parameters passed to the module. However, whitespace is preserved for the parameters included in the allowBlankParams table. * <code>allowSmall</code> - whether a small version of the message box can be produced with "small=yes". * <code>smallParam</code> - a custom name for the small parameter. For example, if set to "left" you can produce a small message box using "small=left". * <code>smallClass</code> - the class to use for small message boxes. * <code>substCheck</code> - whether to perform a subst check or not. * <code>classes</code> - an array of classes to use with the message box. * <code>imageEmptyCell</code> - whether to use an empty {{tag|td}} cell if there is no image set. This is used to preserve spacing for message boxes with a width of less than 100% of the screen. * <code>imageEmptyCellStyle</code> - whether empty image cells should be styled. * <code>imageCheckBlank</code> - whether "image=blank" results in no image being displayed. * <code>imageSmallSize</code> - usually, images used in small message boxes are set to 30x30px. This sets a custom size. * <code>imageCellDiv</code> - whether to enclose the image in a div enforcing a maximum image size. * <code>useCollapsibleTextFields</code> - whether to use text fields that can be collapsed, i.e. "issue", "fix", "talk", etc. Currently only used in ambox. * <code>imageRightNone</code> - whether imageright=none results in no image being displayed on the right-hand side of the message box. * <code>sectionDefault</code> - the default name for the "section" parameter. Depends on <code>useCollapsibleTextFields</code>. * <code>allowMainspaceCategories</code> - allow categorisation in the main namespace. * <code>templateCategory</code> - the name of a category to be placed on the template page. * <code>templateCategoryRequireName</code> - whether the <code>name</code> parameter is required to display the template category. * <code>templateErrorCategory</code> - the name of the error category to be used on the template page. * <code>templateErrorParamsToCheck</code> - an array of parameter names to check. If any are absent, the <code>templateErrorCategory</code> is applied to the template page.
編集内容の要約:
信号機Wikiへの投稿はすべて、クリエイティブ・コモンズ 表示-継承 (詳細は
信号機Wiki:著作権
を参照)のもとで公開したと見なされることにご注意ください。
自分が書いたものが他の人に容赦なく編集され、自由に配布されるのを望まない場合は、ここに投稿しないでください。
また、投稿するのは、自分で書いたものか、パブリック ドメインまたはそれに類するフリーな資料からの複製であることを約束してください。
著作権保護されている作品は、許諾なしに投稿しないでください!
ウィキを自動編集スパムから保護するために、下のCAPTCHAを解決してください。
キャンセル
編集の仕方
(新しいウィンドウで開きます)
このページで使用されているテンプレート:
テンプレート:Lua
(
編集
)
テンプレート:Tag
(
編集
)
テンプレート:Tl
(
編集
)
モジュール:List
(
編集
)
モジュール:Lua banner
(
編集
)
モジュール:Message box
(
ソースを閲覧
) (半保護)
モジュール:Message box/configuration
(
ソースを閲覧
) (半保護)
モジュール:Message box/ombox.css
(
ソースを閲覧
) (半保護)
モジュール:TableTools
(
編集
)
モジュール:Yesno
(
編集
)