کاربر ناشناس
پودمان:Effective protection level: تفاوت میان نسخهها
Handle interfaceadmin
جز (Yamaha5 صفحهٔ پودمان:Effective protection level/تمرین را بدون برجایگذاشتن تغییرمسیر به پودمان:Effective protection level منتقل کرد) |
(Handle interfaceadmin) |
||
خط ۲۴: | خط ۲۴: | ||
end | end | ||
elseif action ~= 'edit' and action ~= 'move' and action ~= 'create' and action ~= 'upload' then | elseif action ~= 'edit' and action ~= 'move' and action ~= 'create' and action ~= 'upload' then | ||
error( ' | error( 'First parameter must be one of edit, move, create, upload, autoreview', 2 ) | ||
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' | ||
return 'sysop' | 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] |