ಮಾಡ್ಯೂಲ್:Toolbar: ಪರಿಷ್ಕರಣೆಗಳ ನಡುವಿನ ವ್ಯತ್ಯಾಸ

Content deleted Content added
use a more efficient string-building algorithm
allow access to the p._main function from other modules, return the blank string if no arguments were specified, and switch indentation to tabs
೧ ನೇ ಸಾಲು:
local p = {}
 
-- Get the keys of the numerical arguments that are present.
local function getArgNums(args)
-- Get the keys of the numerical arguments that are present.
local nums = {}
local nums = {}
local tinsert = table.insert
for k, v in pairs(args) do
if type(k) == 'number' then
tinsert(nums, k)
end
end
table.sort(nums)
return nums
end
 
local function makeToolbarItems(args)
local nums = getArgNums(args)
-- Get numerical argument keys.
local numssep = getArgNums(args.separator or 'pipe') .. '-separator'
sep = mw.message.new(sep):plain()
-- Get the separator text.
local numsret = {}
local sep = (args.separator or 'pipe') .. '-separator'
local tinsert = table.insert
sep = mw.message.new(sep):plain()
for i, v in ipairs(nums) do
tinsert(ret, args[v])
-- Generate the toolbar items.
end
local ret = {}
if #ret > 0 then
local tinsert = table.insert
return table.concat(ret, sep)
for i, v in ipairs(nums) do
end
tinsert(ret, args[v])
end
return table.concat(ret, sep)
end
 
local function makeToolbarp._main(args)
local toolbarItems = makeToolbarItems(args)
return mw.ustring.format(
if not toolbarItems then return '' end -- Return the blank string if no arguments were specified, rather than returning empty brackets
'<span class="plainlinks%s"%s>(%s)</span>',
return mw.ustring.format(
type(args.class) == 'string' and ' ' .. args.class or '',
'<span class="plainlinks%s"%s>(%s)</span>',
type(args.style) == 'string' and mw.ustring.format(' style="%s"', args.style) or '',
type(args.class) == 'string' and ' ' .. args.class or '',
makeToolbarItems(args)
type(args.style) == 'string' and mw.ustring.format(' style="%s"', args.style) or '',
)
toolbarItems
)
end
 
function p.main(frame)
-- If called via #invoke, use the args passed into the invoking template.
-- Otherwise, for testing purposes, assume args are being passed directly in.
local origArgs
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
for k, v in pairs(frame.args) do
origArgs = frame.args
break
end
else
origArgs = frame
end
-- Strip whitespace and remove nil values
local retargs = {}
-- Strip whitespace and remove nil values
for k, v in pairs(origArgs) do
local args = {}
if type(v) == 'string' then
for k, v in pairs(origArgs) do
v = mw.text.trim(v)
if type(v) == 'string' then
end
v = mw.text.trim(v)
if v ~= '' endthen
args[k] = v
if v ~= '' then
end
args[k] = v
end
return makeToolbarp._main(args)
end
return makeToolbar(args)
end
 
return p
"https://kn.wikipedia.org/wiki/ಮಾಡ್ಯೂಲ್:Toolbar" ಇಂದ ಪಡೆಯಲ್ಪಟ್ಟಿದೆ