「モジュール:Effective protection level」の版間の差分
ナビゲーションに移動
検索に移動
細
Changed protection level for "Module:Effective protection level": Used in interface MediaWiki:Cascadeprotected ([Edit=Require administrator access] (indefinite) [Move=Require administrator access] (indefinite))
細 (1版) |
細 (Changed protection level for "Module:Effective protection level": Used in interface MediaWiki:Cascadeprotected ([Edit=Require administrator access] (indefinite) [Move=Require administrator access] (indefinite))) |
||
27行目: | 27行目: | ||
end | end | ||
if title.namespace == 8 then -- MediaWiki namespace | if title.namespace == 8 then -- MediaWiki namespace | ||
return 'sysop' | if title.contentModel == 'javascript' or title.contentModel == 'css' then -- site JS or CSS page | ||
elseif title.namespace == 2 and title.isSubpage | return 'interfaceadmin' | ||
else -- any non-JS/CSS MediaWiki page | |||
return 'sysop' | |||
end | |||
elseif title.namespace == 2 and title.isSubpage then | |||
if title.contentModel == 'javascript' or title.contentModel == 'css' then -- user JS or CSS page | |||
return 'interfaceadmin' | |||
elseif title.contentModel == 'json' then -- user JSON page | |||
return 'sysop' | |||
end | |||
end | end | ||
local level = title.protectionLevels[action] and title.protectionLevels[action][1] | local level = title.protectionLevels[action] and title.protectionLevels[action][1] |