Module:Effective protection expiry: Difference between revisions

m
1 revision imported from wikipedia:Module:Effective_protection_expiry: All aboard the import train again. Originally imported from English Wikipedia.
(No flaggedrevs on this wiki)
m (1 revision imported from wikipedia:Module:Effective_protection_expiry: All aboard the import train again. Originally imported from English Wikipedia.)
 
(6 intermediate revisions by 4 users not shown)
Line 13:
end
pagename = title.prefixedText
if action ~= 'edit' and action ~= 'move' and action ~= 'create' and action ~= 'uploadautoreview' then
local stabilitySettings = mw.ext.FlaggedRevs.getStabilitySettings(title)
error( 'First parameter must be one of edit, move, create, upload', 2 )
return stabilitySettings and stabilitySettings.expiry or 'unknown'
elseif action ~= 'edit' and action ~= 'move' and action ~= 'create' and action ~= 'upload' then
error( 'First parameter must be one of edit, move, create, upload, autoreview', 2 )
end
local rawExpiry = mw.getCurrentFrame():callParserFunction('PROTECTIONEXPIRY', action, pagename)
Line 22 ⟶ 25:
return 'unknown'
else
local year, =month, mw.ustring.sub(day, rawExpiryhour, 1minute, 4second )= rawExpiry:match(
'^(%d%d%d%d)(%d%d)(%d%d)(%d%d)(%d%d)(%d%d)$'
local month = mw.ustring.sub( rawExpiry, 5, 6 )
)
local day = mw.ustring.sub( rawExpiry, 7, 8 )
if year then
return year .. '-' .. month .. '-' .. day
return string.format(
'%s-%s-%sT%s:%s:%s',
year, month, day, hour, minute, second
)
else
error('internal error in Module:Effective protection expiry; malformed expiry timestamp')
end
end
end