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 = | local year, month, day, hour, minute, second = rawExpiry:match( | ||
'^(%d%d%d%d)(%d%d)(%d%d)(%d%d)(%d%d)(%d%d)$' | |||
) | |||
return | 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 |