Modul:Unsubst: Unterschied zwischen den Versionen
Deprecate the $N parameter; the template name is now detected automatically. The $N check is still present until all transclusions have been updated. Code courtesy of User:Anomie, User:Jackmcbarn and myself.
(Yay, no more hack!) |
(Deprecate the $N parameter; the template name is now detected automatically. The $N check is still present until all transclusions have been updated. Code courtesy of User:Anomie, User:Jackmcbarn and myself.) |
||
| Zeile 2: | Zeile 2: | ||
local specialParams = { | local specialParams = { | ||
['$N'] = 'template name', | ['$N'] = 'template name', -- Deprecated, but keeping until it is removed from transcluding templates | ||
['$B'] = 'template content', | ['$B'] = 'template content', | ||
} | } | ||
| Zeile 8: | Zeile 8: | ||
p[''] = function ( frame ) | p[''] = function ( frame ) | ||
if not frame:getParent() then | if not frame:getParent() then | ||
error( '{{#invoke:Unsubst| | error( '{{#invoke:Unsubst|}} makes no sense without a parent frame' ) | ||
end | end | ||
if not frame.args['$B'] then | |||
error( '{{#invoke:Unsubst|}} requires parameter $B (template content)' ) | |||
end | end | ||
| Zeile 32: | Zeile 30: | ||
end | end | ||
-- | -- Build an equivalent template invocation | ||
-- First numbered args, then named | -- First, find the title to use | ||
local ret = '{{' .. | local titleobj = mw.title.new(frame:getParent():getTitle()) | ||
local title | |||
if titleobj.namespace == 10 then -- NS_TEMPLATE | |||
title = titleobj.text | |||
elseif titleobj.namespace == 0 then -- NS_MAIN | |||
title = ':' .. titleobj.text | |||
else | |||
title = titleobj.prefixedText | |||
end | |||
-- Build the invocation body with numbered args first, then named | |||
local ret = '{{' .. title | |||
for k, v in ipairs( args ) do | for k, v in ipairs( args ) do | ||
if string.find( v, '=', 1, true ) then | if string.find( v, '=', 1, true ) then | ||