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.
Enwikipedia>Cenarium
No edit summary
m (1 revision imported from wikipedia:Module:Effective_protection_expiry: All aboard the import train again. Originally imported from English Wikipedia.)
 
(25 intermediate revisions by 14 users not shown)
Line 14:
pagename = title.prefixedText
if action == 'autoreview' then
local stabilitySettings = mw.ext.FlaggedRevs.getStabilitySettings(title)
return 'unknown'
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 expiryrawExpiry = mw.getCurrentFrame():callParserFunction('PROTECTIONEXPIRY', action, pagename)
if expiryrawExpiry ~== 'infinity' then
return expiry'infinity'
elseif rawExpiry == '' then
return 'unknown'
else
local year, month, day, hour, minute, second = rawExpiry:match(
return 'unknown'
'^(%d%d%d%d)(%d%d)(%d%d)(%d%d)(%d%d)(%d%d)$'
)
if year then
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