Модул:Lua banner
Документацијата за овој модул можете да ја создадете на Модул:Lua banner/док
-- Модул:Lua banner
-- Imported from mk.wikipedia
-- 2016-06-22 -- V2 -- last modified by DenisWasRight
-- Extended version for mk.wiktionary
-- This module implements the {{lua}} template.
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)
end
local moduleList = mList.makeList('bulleted', moduleLinks)
boxArgs.text = 'Користи [[Викиречник:Lua|Lua]]:\n' .. moduleList
end
boxArgs.type = 'notice'
boxArgs.small = true
boxArgs.image = '[[File:Lua-logo-nolabel.svg|30px|alt=Логото на Lua|link=Википедија:Lua]]'
return mMessageBox.main('mbox', boxArgs)
end
function p.renderTrackingCategories(args, modules, titleObj)
if yesno(args.nocat) then
return ''
end
local cats = {}
-- Error category
if #modules < 1 then
cats[#cats + 1] = 'Шаблони со Lua со грешки'
end
-- Lua templates category
titleObj = titleObj or mw.title.getCurrentTitle()
local subpageBlacklist = {
doc = true,
sandbox = true,
sandbox2 = true,
testcases = true
}
if titleObj.namespace == 10
and not subpageBlacklist[titleObj.subpageText]
then
local category = args.category
if not category then
local categories = {
['Модул:String'] = 'Шаблони на основа на Lua-низи',
['Модул:Math'] = 'Шаблони на основа на Lua-модулот Math',
['Модул:BaseConvert'] = 'Шаблони на основа на Lua-модулот BaseConvert',
['Модул:Citation'] = 'Шаблони за наводи на основа на Lua'
}
categories['Модул:Citation/CS1'] = categories['Модул:Citation']
category = modules[1] and categories[modules[1]]
category = category or 'Шаблони на основа на Lua'
end
cats[#cats + 1] = category
end
for i, cat in ipairs(cats) do
cats[i] = string.format('[[Категорија:%s]]', cat)
end
return table.concat(cats)
end
return p