×
新規記事を作成
ここにページのタイトルを記入:
We currently have 2 articles on 政治ボールwiki 日本語版. Type your article name above or click on one of the titles below and start writing!



    政治ボールwiki 日本語版

    LiberalPolandballの投稿記録

    利用者の編集は168回。 2026年6月28日 (日)にアカウント作成。
    投稿の検索開く折り畳む
    ⧼contribs-top⧽
    ⧼contribs-date⧽
    (最新 | 最古) ( | ) (20 | 50 | 100 | 250 | 500 件) を表示

    2026年7月20日 (月)

    2026年7月16日 (木)

    • 21:532026年7月16日 (木) 21:53 差分 履歴 +1,171 モジュール:See/core ページの作成:「local p = {} function p.GetLink(frame) local link = frame.args[1] local display = frame.args[2] -- 第一引数の値が技術的に利用可能な記事名でない場合、 -- 第一引数の値をそのまま返す local IsValidPageName = require('モジュール:IsValidPageName') if IsValidPageName.isValidPageName(frame) == "" then return link end if display == "" then display = nil end return p._format…」 最新
    • 21:482026年7月16日 (木) 21:48 差分 履歴 +1,996 モジュール:Sakujo ページの作成:「local p = {} function p.Main( frame ) if mw.isSubsting() then -- subst展開されている時 m_subpagename = '' if frame.args[1] ~= '' then -- {{{1}}}に何か指定されている場合 m_subpagename = frame.args[1] elseif mw.title.new('Wikipedia:削除依頼/' .. mw.allToString(mw.title.getCurrentTitle())).exists and string.find( mw.title.new('Wikipedia:削除依頼/' .. mw.allToString(mw.title.getCurrentTitle())):getContent(), 'このページは以…」 最新
    • 21:462026年7月16日 (木) 21:46 差分 履歴 +2,007 テンプレート:Lua/doc ページの作成:「{{Documentation subpage|種類=テンプレート}} {{lua|Module:Lua banner}} このテンプレートはLuaモジュールを呼び出しているテンプレートであることを示します。テンプレートのドキュメントページの最上部に設置します。このテンプレートが設置されたテンプレートは原則自動的にCategory:Luaを利用するテンプレートにカテゴライズされ…」 最新
    • 21:452026年7月16日 (木) 21:45 差分 履歴 +96 テンプレート:Lua ページの作成:「<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{Documentation}} </noinclude>」 最新
    • 21:452026年7月16日 (木) 21:45 差分 履歴 +10,022 テンプレート:Infobox/doc ページの作成:「<noinclude>{{Documentation subpage}}</noinclude> {{Lua|モジュール:Infobox/former}} == 使い方 == このテンプレートはメタテンプレート(他のテンプレートを作成するときに使われるテンプレート)として使われることを想定しています。記事に直接使われることを想定していません。<!--ページが無いのでコメントアウト→一般的なInfoboxの作り方については[[Help:Infobox]…」 最新
    • 21:442026年7月16日 (木) 21:44 差分 履歴 +101 テンプレート:Infobox ページの作成:「{{#invoke:Infobox|infobox}} <noinclude> {{Documentation}} Category:システムテンプレート 最新

    2026年7月13日 (月)

    • 20:172026年7月13日 (月) 20:17 差分 履歴 −11 メインページ 編集の要約なし 最新
    • 20:132026年7月13日 (月) 20:13 差分 履歴 +550 メインページ 編集の要約なし
    • 19:192026年7月13日 (月) 19:19 差分 履歴 +2,092 モジュール:Protect/doc ページの作成:「このモジュールは他のモジュールでエラー処理を簡略化するために使用されます。エラーを投げる可能性のある関数を変換して、エラーを投げる代わりにエラーメッセージを返すようにします。 __TOC__ == 使い方 == local protect = require('モジュール:Protect') local protectedFunc = '''protect(''func'', ''errFormat'', ''options'')''' === 引数 === * ''{{code|func}}'' *: 変換される…」 最新
    • 19:182026年7月13日 (月) 19:18 差分 履歴 +928 モジュール:Protect ページの作成:「local function processResult(options, success, ...) if not success then local message = tostring(... or '(メッセージなし)') if options.removeLocation then message = string.gsub(message, '^Module:[^:]+:%d+: ', '', 1) message = string.gsub(message, '^モジュール:[^:]+:%d+: ', '', 1) end return string.format(options.errFormat, message) end return ... end local function protect(func, errFormat, options) if type(errFormat) == 'table' the…」 最新
    • 17:592026年7月13日 (月) 17:59 差分 履歴 +1,172 モジュール:Pie chart ページの作成:「local p = {} function p.render(frame) local args = frame.args local caption = args["caption"] or "" local values = {} local labels = {} for i = 1, 10 do if args["label" .. i] and args["value" .. i] then table.insert(labels, args["label" .. i]) table.insert(values, tonumber(args["value" .. i]) or 0) end end local total = 0 for _, v in ipairs(values) do total = total + v end…」 最新
    • 17:572026年7月13日 (月) 17:57 差分 履歴 +1,678 モジュール:Ns has subpages ページの作成:「-- This module implements Template:Ns has subpages. -- While the template is fairly simple, this information is made available to -- Lua directly, so using a module means that we don't have to update the -- template as new namespaces are added. local p = {} function p._main(ns, frame) -- Get the current namespace if we were not passed one. if not ns then ns = mw.title.getCurrentTitle().namespace end -- Look up the namespace table from mw.site.namespaces…」 最新
    • 17:052026年7月13日 (月) 17:05 差分 履歴 +1,553 モジュール:Noredirect ページの作成:「local p = {} -- Return a blue noredirect wikilink for an existing page, a red wikilink for a non-existing page function p.noredirect(pagetitle, label) -- Evaluate pagetitle if pagetitle == nil or pagetitle == '' then return error('ページ名が指定されていません') end pagetitle = pagetitle:gsub('^%[*', ''):gsub('%]*$', '') -- Remove leading/trailing brackets to prevent errors pagetitle = pagetitle:gsub('_', ' ') -- Replace un…」 最新

    2026年7月12日 (日)

    • 21:552026年7月12日 (日) 21:55 差分 履歴 +13,819 モジュール:Math ページの作成:「--This module provides a number of basic mathematical operations. local yesno, getArgs -- lazily initialized local p = {} -- Holds functions to be returned from #invoke, and functions to make available to other Lua modules. local wrap = {} -- Holds wrapper functions that process arguments from #invoke. These act as intemediary between functions meant for #invoke and functions meant for Lua. --Helper functions used to avoid redundant code. local fun…」 最新
    • 21:512026年7月12日 (日) 21:51 差分 履歴 +23,019 モジュール:Location map ページの作成:「require('Module:No globals') local p = {} local getArgs = require('Module:Arguments').getArgs local function round(n, decimals) local pow = 10^(decimals or 0) return math.floor(n * pow + 0.5) / pow end function p.getMapParams(map, frame) if not map then error('Location mapの名前は必ず指定しなければなりません。', 2) end local moduletitle = mw.title.new('Module:Location map/data/' .. map) if not moduletitle then error(string.format('%q…」 最新
    • 21:482026年7月12日 (日) 21:48 差分 履歴 +3,083 モジュール:Labelled list hatnote ページの作成:「-------------------------------------------------------------------------------- -- Labelled list -- -- -- -- This module does the core work of creating a hatnote composed of a list -- -- prefixed by a colon-terminated label, i.e. "LABEL: [andList of pages]", -- -- for {{see also}} and similar templates.…」 最新
    • 21:472026年7月12日 (日) 21:47 差分 履歴 +275 モジュール:IsValidPageName ページの作成:「-- このモジュールは Template:IsValidPageName の実体です。 local export = {} function export.isValidPageName(frame) local success, res = pcall(mw.title.new, frame.args[1]) if success and res then return "valid" else return "" end end return export」 最新
    • 21:402026年7月12日 (日) 21:40 差分 履歴 +84 モジュール:InfoboxImage/doc ページの作成:「<includeonly>{{使用箇所の多いテンプレート|300,000以上}}</includeonly>」 最新
    • 21:392026年7月12日 (日) 21:39 差分 履歴 +9,630 モジュール:InfoboxImage ページの作成:「-- Inputs: -- image - Can either be a bare filename (with or without the File:/Image: prefix) or a fully formatted image link -- page - page to display for multipage images (DjVu) -- size - size to display the image -- maxsize - maximum size for image -- sizedefault - default size to display the image if size param is blank -- alt - alt text for image -- title - title text for image -- border - set to yes if border -- center - set to yes,…」 最新

    2026年7月11日 (土)

    • 17:232026年7月11日 (土) 17:23 差分 履歴 +562 モジュール:Infobox3cols/doc ページの作成:「{{Main|Template:Infobox3cols}} <!-- カテゴリはページの最下部に、言語間リンクはウィキデータに追加してください。(Wikipedia:ウィキデータ参照) --> == 使用法 == <nowiki>{{</nowiki>#invoke:{{BASEPAGENAME}}|''関数名''}} <!------------------------- カテゴリの設定 ---------------------------> <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | | <!-- カテゴリは ここより下の<includeonly>の中に…」 最新
    • 17:212026年7月11日 (土) 17:21 差分 履歴 +16,902 モジュール:Infobox3cols ページの作成:「-- -- This module implements {{Infobox3cols}} -- -- The initial version was created by modifying Module:Infobox -- local p = {} local navbar = require('Module:Navbar')._navbar local args = {} local origArgs local root local function union(t1, t2) -- Returns the union of the values of two tables, as a sequence. local vals = {} for k, v in pairs(t1) do vals[v] = true end for k, v in pairs(t2) do vals[v] = true end l…」 最新
    (最新 | 最古) ( | ) (20 | 50 | 100 | 250 | 500 件) を表示