Module:NAMESPACEID
Revision as of 09:12, 10 December 2014 by Mr. Stradivarius (talk) (Protected Module:NAMESPACEID: High-risk Lua module: used in Template:Editnotice load/core to display edit notices ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)))
Documentation for this module may be created at Module:NAMESPACEID/doc
-- This module implements {{NAMESPACEID}}.
local p = {}
function p.main(frame)
local ns = frame:getParent().args[1] or mw.title.getCurrentTitle().namespace
local nsTable = mw.site.namespaces[ns]
if nsTable then
return nsTable.id
else
return '<strong class="error">Invalid namespace in ' ..
'{{[[Template:NAMESPACEID|NAMESPACEID]]}}</strong>'
end
end
return p