「モジュール:If empty」の版間の差分
en>Dinoguy1000 (update from sandbox, per Template talk:If empty#Backcompat) |
細 (1版 をインポートしました) |
||
| 2行目: | 2行目: | ||
function p.main(frame) | function p.main(frame) | ||
local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template: | local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:Ifempty', removeBlanks = false}) | ||
-- For backwards compatibility reasons, the first 8 parameters can be unset instead of being blank, | |||
-- even though there's really no legitimate use case for this. At some point, this will be removed. | |||
local lowestNil = math.huge | |||
for i = 8,1,-1 do | |||
if args[i] == nil then | |||
args[i] = '' | |||
lowestNil = i | |||
end | |||
end | |||
for k,v in ipairs(args) do | for k,v in ipairs(args) do | ||
if v ~= '' then | if v ~= '' then | ||
if lowestNil < k then | |||
-- If any uses of this template depend on the behavior above, add them to a tracking category. | |||
-- This is a rather fragile, convoluted, hacky way to do it, but it ensures that this module's output won't be modified | |||
-- by it. | |||
frame:extensionTag('ref', '[[Category:テンプレート呼び出しエラーのあるページ/Template:Ifempty]]', {group = 'TrackingCategory'}) | |||
frame:extensionTag('references', '', {group = 'TrackingCategory'}) | |||
end | |||
return v | return v | ||
end | end | ||
end | end | ||
end | end | ||
return p | return p | ||
2022年8月28日 (日) 00:34時点における版
| このLuaモジュールは600,000以上のページで使われています。 余計な混乱やサーバーへの負荷を避けるために、どんな変更でも最初はモジュールのサンドボックス・サブページ、テストケース・サブページで試すべきです。そうすれば、試した変更を1度の編集でこのモジュールに加えることができます。しかし、最初にあなたの提案した変更を、この項目のノートで議論するようにお願いします。 |
| Luaモジュールを使用しています: |
このモジュールはTemplate:Ifemptyを実装しています。詳しくはテンプレートの説明文をご参照ください。
local p = {}
function p.main(frame)
local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:Ifempty', removeBlanks = false})
-- For backwards compatibility reasons, the first 8 parameters can be unset instead of being blank,
-- even though there's really no legitimate use case for this. At some point, this will be removed.
local lowestNil = math.huge
for i = 8,1,-1 do
if args[i] == nil then
args[i] = ''
lowestNil = i
end
end
for k,v in ipairs(args) do
if v ~= '' then
if lowestNil < k then
-- If any uses of this template depend on the behavior above, add them to a tracking category.
-- This is a rather fragile, convoluted, hacky way to do it, but it ensures that this module's output won't be modified
-- by it.
frame:extensionTag('ref', '[[Category:テンプレート呼び出しエラーのあるページ/Template:Ifempty]]', {group = 'TrackingCategory'})
frame:extensionTag('references', '', {group = 'TrackingCategory'})
end
return v
end
end
end
return p