「モジュール:Effective protection expiry」の版間の差分

en:Module:Effective protection expiry 2016年7月16日 (土) 02:37‎(UTC)より
template>Rxy
(en:Module:Effective protection expiry 2015年12月13日 (日) 20:15‎ UTC の版より全文転記)
 
template>K-iczn
(en:Module:Effective protection expiry 2016年7月16日 (土) 02:37‎(UTC)より)
24行目: 24行目:
return 'unknown'
return 'unknown'
else
else
local year = mw.ustring.sub( rawExpiry, 1, 4 )
local year, month, day, hour, minute, second = rawExpiry:match(
local month = mw.ustring.sub( rawExpiry, 5, 6 )
'^(%d%d%d%d)(%d%d)(%d%d)(%d%d)(%d%d)(%d%d)$'
local day = mw.ustring.sub( rawExpiry, 7, 8 )
)
return year .. '-' .. month .. '-' .. day
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
end
end
匿名利用者