Модул:Lua банер
Облик
Употреба
Настоящия модул не може да бъде ползван директно от Уикитекст и единствено през базирани на {{lua}} шаблони.
За да ползвате модула в друг Lua модул, е необходимо първо да го заредите.
local mLuaBanner = require('Модул:Lua банер')
След което използвайте main
функцията, за да създадете съобщително каре.
mLuaBanner._main(args)
Заместете args с таблица съдържащаа аргументите, които ще бъдат подадени на модула. За пълен списък с възможните аргументи посетете шаблона {{lua}}.
-- Този модул се използва от шаблона {{lua}}.
local yesno = require('Модул:Yesno')
local mList = require('Модул:List')
local mTableTools = require('Модул:TableTools')
local mMessageBox = require('Модул:Message box')
local p = {}
function p.main(frame)
local origArgs = frame:getParent().args
local args = {}
for k, v in pairs(origArgs) do
v = v:match('^%s*(.-)%s*$')
if v ~= '' then
args[k] = v
end
end
return p._main(args)
end
function p._main(args)
local modules = mTableTools.compressSparseArray(args)
local box = p.renderBox(modules)
local trackingCategories = p.renderTrackingCategories(args, modules)
return box .. trackingCategories
end
function p.renderBox(modules)
local boxArgs = {}
if #modules < 1 then
boxArgs.text = '<strong class="error">Грешка: не са указани модули</strong>'
else
local moduleLinks = {}
for i, module in ipairs(modules) do
moduleLinks[i] = string.format('[[:%s]]', module)
local maybeSandbox = mw.title.new(module .. '/sandbox')
if maybeSandbox.exists then
moduleLinks[i] = moduleLinks[i] .. string.format(' ([[:%s|sandbox]])', maybeSandbox.fullText)
end
end
local moduleList = mList.makeList('bulleted', moduleLinks)
local title = mw.title.getCurrentTitle()
if title.subpageText == "doc" then
title = title.basePageTitle
end
if title.contentModel == "Scribunto" then
boxArgs.text = 'This module depends on the following other modules:' .. moduleList
else
boxArgs.text = 'Този шаблон използва [[Уикипедия:Модули|Lua]]:\n' .. moduleList
end
end
boxArgs.type = 'notice'
boxArgs.small = true
boxArgs.image = '[[File:Lua-logo-nolabel.svg|30px|alt=Lua лого|link=Уикипедия:Модули]]'
return mMessageBox.main('mbox', boxArgs)
end
function p.renderTrackingCategories(args, modules, titleObj)
if yesno(args.nocat) then
return ''
end
local cats = {}
-- Категория грешки
if #modules < 1 then
cats[#cats + 1] = 'Lua шаблони с грешки'
end
-- Категория Lua шаблони
titleObj = titleObj or mw.title.getCurrentTitle()
local subpageBlacklist = {
doc = true,
sandbox = true,
sandbox2 = true,
testcases = true
}
if not subpageBlacklist[titleObj.subpageText] then
local protCatName
if titleObj.namespace == 10 then
local category = args.category
if not category then
local categories = {
['Модул:String'] = 'Шаблони, базирани на Lua модул String',
['Модул:Math'] = 'Шаблони, базирани на Lua модул Math',
['Модул:BaseConvert'] = 'Шаблони, базирани на Lua модул BaseConvert',
['Модул:Citation'] = 'Шаблони, базирани на Lua модул Citation/CS1'
}
categories['Модул:Citation/CS1'] = categories['Модул:Citation']
category = modules[1] and categories[modules[1]]
category = category or 'Шаблони, ползващи Lua'
end
cats[#cats + 1] = category
protCatName = "Templates using under-protected Lua modules"
elseif titleObj.namespace == 828 then
protCatName = "Modules depending on under-protected modules"
end
if not args.noprotcat and protCatName then
local protLevels = {
autoconfirmed = 1,
extendedconfirmed = 2,
templateeditor = 3,
sysop = 4
}
local currentProt
if titleObj.id ~= 0 then
-- id is 0 (page does not exist) if am previewing before creating a template.
currentProt = titleObj.protectionLevels["edit"][1]
end
if currentProt == nil then currentProt = 0 else currentProt = protLevels[currentProt] end
for i, module in ipairs(modules) do
if module ~= "WP:libraryUtil" then
local moduleProt = mw.title.new(module).protectionLevels["edit"][1]
if moduleProt == nil then moduleProt = 0 else moduleProt = protLevels[moduleProt] end
if moduleProt < currentProt then
cats[#cats + 1] = protCatName
break
end
end
end
end
end
for i, cat in ipairs(cats) do
cats[i] = string.format('[[Категория:%s]]', cat)
end
return table.concat(cats)
end
return p