Module:Protection banner: Difference between revisions

m
Protected "Module:Protection banner": important module ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Delete=Allow only administrators] (indefinite) [Protect=Allow only administrators] (indefinite))
(don't add protection categories or show padlock icons for user js/css pages; based on code contributed by User:ProcrastinatingReader)
m (Protected "Module:Protection banner": important module ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Delete=Allow only administrators] (indefinite) [Protect=Allow only administrators] (indefinite)))
Line 169:
end
return setmetatable(obj, Protection)
end
 
function Protection:isUserScript()
-- Whether the page is a user JavaScript or CSS page.
local title = self.title
return title.namespace == 2 and (
title.contentModel == 'javascript' or title.contentModel == 'css'
)
end
 
Line 182 ⟶ 174:
return self.level ~= '*'
end
 
function Protection:shouldShowLock()
-- Whether we should output a banner/padlock
return self:isProtected() and not self:isUserScript()
end
 
-- Whether this page needs a protection category.
Protection.shouldHaveProtectionCategory = Protection.shouldShowLock
 
function Protection:isTemporary()
Line 196 ⟶ 180:
 
function Protection:makeProtectionCategory()
if not self:shouldHaveProtectionCategory() then
return ''
end
 
local cfg = self._cfg
local title = self.title
)
-- Exit if the page is not protected.
if not self:shouldHaveProtectionCategoryisProtected() then
return ''
end
-- Get the expiry key fragment.
Line 216 ⟶ 201:
namespaceFragment = 'talk'
end
 
-- Define the order that key fragments are tested in. This is done with an
-- array of tables containing the value to be tested, along with its
Line 324 ⟶ 309:
function Protection:isIncorrect()
local expiry = self.expiry
return not self:shouldHaveProtectionCategoryisProtected()
or type(expiry) == 'number' and expiry < os.time()
end
Line 339 ⟶ 324:
function Protection:makeCategoryLinks()
local msg = self._cfg.msg
local ret = { self:makeProtectionCategory() }
if self:isIncorrect() then
ret[#ret + 1] = makeCategoryLink(
Line 853 ⟶ 838:
-- Render the banner
if protectionObj:shouldShowLockisProtected() then
ret[#ret + 1] = tostring(
(yesno(args.small) and Padlock or Banner)
371

edits