メニューを切り替える
個人設定メニューを切り替える
個人メニューを切り替える
ログインしていません
編集を行うと、IPアドレスが公開されます。
利用者の編集は38,640回。 2021年8月2日 (月)にアカウント作成。
投稿の検索開く折り畳む
⧼contribs-top⧽
⧼contribs-date⧽
(最新 | 最古) ( | ) (20 | 50 | 100 | 250 | 500 件) を表示

2025年3月12日 (水)

  • 14:372025年3月12日 (水) 14:37 差分 履歴 0 テンプレート:Navbox 編集の要約なし
  • 14:342025年3月12日 (水) 14:34 差分 履歴 +788 テンプレート:Navboxes ページの作成:「<table class="navbox nowraplinks mw-collapsible {{{state|mw-collapsed}}}" style="min-width:100%;border-spacing:2px;border-collapse:separate;"><!-- --><tr><th class="navbox-title" style="{{{titlestyle|}}}">{{#if:{{{name|}}}|<div style="float:left;width:6em;text-align:left;">{{tnavbar|{{{name}}}|mini=1|style=font-size:60%;}}</div>|<div style="float:left;width:3.5em;text-align:left;"> </div>}}<span style="font-size:110%;">{{{title|関連項目}}}</span></th></tr><…」
  • 14:332025年3月12日 (水) 14:33 差分 履歴 +32 テンプレート:NavboxYears2 ページの作成:「{{#invoke:Navbox/former|years2}}」 最新
  • 14:322025年3月12日 (水) 14:32 差分 履歴 +31 テンプレート:NavboxYears ページの作成:「{{#invoke:Navbox/former|years}}」 最新
  • 14:312025年3月12日 (水) 14:31 差分 履歴 +76 テンプレート:Navbox with collapsible groups ページの作成:「<includeonly>{{#invoke:Navbox/former|with_collapsible_groups}}</includeonly>」 最新
  • 14:312025年3月12日 (水) 14:31 差分 履歴 +65 テンプレート:Navbox with columns ページの作成:「<includeonly>{{#invoke:Navbox/former|with_columns}}</includeonly>」 最新
  • 14:302025年3月12日 (水) 14:30 差分 履歴 0 テンプレート:Navbox subgroup 編集の要約なし 最新
  • 14:292025年3月12日 (水) 14:29 差分 履歴 +34 テンプレート:Navbox subgroup ページの作成:「{{#invoke:navbox/former|subgroup}}」
  • 14:282025年3月12日 (水) 14:28 差分 履歴 −40 テンプレート:Navbox 編集の要約なし
  • 14:282025年3月12日 (水) 14:28 差分 履歴 +99 テンプレート:Navbox ページの作成:「<includeonly>{{#invoke:navbox/former|navbox}}</includeonly><noinclude>{{documentation}}</noinclude>」
  • 14:262025年3月12日 (水) 14:26 差分 履歴 +745 モジュール:Yesno ページの作成:「-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or…」 最新
  • 14:252025年3月12日 (水) 14:25 差分 履歴 +18,049 モジュール:String ページの作成:「--[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. Global options ignore_errors: If set to 'true' or 1, any er…」 最新
  • 14:242025年3月12日 (水) 14:24 差分 履歴 +53,821 モジュール:Protection banner/config ページの作成:「-- This module provides configuration data for Module:Protection banner. return { -------------------------------------------------------------------------------- -- -- BANNER DATA -- -------------------------------------------------------------------------------- --[[ -- Banner data consists of six fields: -- * text - the main protection text that appears at the top of protection -- banners. -- * explanation - the text that a…」 最新
  • 14:232025年3月12日 (水) 14:23 差分 履歴 +26,084 モジュール:Protection banner ページの作成:「-- This module implements {{pp-meta}} and its daughter templates such as -- {{pp-dispute}}, {{pp-vandalism}} and {{pp-sock}}. -- Initialise necessary modules. require('strict') local makeFileLink = require('Module:File link')._main local effectiveProtectionLevel = require('Module:Effective protection level')._main local effectiveProtectionExpiry = require('Module:Effective protection expiry')._main local yesno = require('Module:Yesno') -- Lazily initialise modules…」 最新
  • 14:232025年3月12日 (水) 14:23 差分 履歴 +18,894 モジュール:Message box ページの作成:「require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions ----------------------------------------------------------------------…」 最新
  • 14:222025年3月12日 (水) 14:22 差分 履歴 +2,587 モジュール:File link ページの作成:「-- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "'_main'…」 最新
  • 14:222025年3月12日 (水) 14:22 差分 履歴 +3,714 モジュール:Effective protection level ページの作成:「local p = {} -- Returns the permission required to perform a given action on a given title. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview' then local…」 最新
  • 14:202025年3月12日 (水) 14:20 差分 履歴 +1,563 モジュール:Effective protection expiry ページの作成:「local p = {} -- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action ==…」 最新
  • 14:192025年3月12日 (水) 14:19 差分 履歴 +1,141 モジュール:Documentation/styles.css ページの作成:「{{pp-template}}: .documentation, .documentation-metadata { border: 1px solid #a2a9b1; background-color: #ecfcf4; clear: both; } .documentation { margin: 1em 0 0 0; padding: 1em; } .documentation-metadata { margin: 0.2em 0; same margin left-right as .documentation: font-style: italic; padding: 0.4em 1em; same padding left-right as .documentation: } .documentation-startbox { padding-bottom: 3px; border-bottom: 1px solid #aaa; margin-…」 最新
  • 14:182025年3月12日 (水) 14:18 差分 履歴 +19,554 モジュール:Documentation/config ページの作成:「---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. ----------------------------------------------------------------------------…」
  • 14:182025年3月12日 (水) 14:18 差分 履歴 +36,678 モジュール:Documentation ページの作成:「-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs local messageBox = require('Module:Message box') -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but a…」
  • 14:162025年3月12日 (水) 14:16 差分 履歴 +20,167 モジュール:Navbox/former ページの作成:「local p = {} --Template:Tnavbar function p.tnavbar(frame) local r = mw.html.create() --出力用 local args = frame.args if not args[1] then return ' ' end local function tf(x) return x == '1' and true or false end args.plain = tf(args.plain) args.div = tf(args.div) args.nodiv = tf(args.nodiv) args.mini = tf(args.mini) args.viewplain = tf(args.viewplain) args.fontstyle = args.fontcolor ~= '' and ((args.fontstyle or '') .. ';col…」 最新
  • 14:072025年3月12日 (水) 14:07 差分 履歴 +3,375 TVアニメ/データカードダス『アイカツ!』COMPLETE SONGS4 編集の要約なし

2025年3月11日 (火)

(最新 | 最古) ( | ) (20 | 50 | 100 | 250 | 500 件) を表示