Module:Check for unknown parameters: বিভিন্ন সংশোধনসমূহৰ মাজৰ পাৰ্থক্য

Content deleted Content added
No edit summary
No edit summary
9 নং শাৰী:
 
local function isnotempty(s)
return s and trim(s) ~= :match('%S')
end
 
local function clean(text)
function p.check (frame)
-- Return text cleaned for display and truncated if too long.
local args = frame.args
-- Strip markers are replaced with dummy text representing the original wikitext.
local pargs = frame:getParent().args
local pos, truncated
local ignoreblank = isnotempty(frame.args['ignoreblank'])
local function truncate(text)
local showblankpos = isnotempty(frame.args['showblankpositional'])
if truncated then
return ''
end
if mw.ustring.len(text) > 25 then
truncated = true
vtext = mw.ustring.sub(vtext, 1, (vlen < 25) and vlen or 25).. '...'
end
return mw.text.nowiki(text)
end
local parts = {}
for before, tag, remainder in text:gmatch('([^\127]*)\127[^\127]*%-(%l+)%-[^\127]*\127()') do
pos = remainder
table.insert(parts, truncate(before) .. '&lt;' .. tag .. '&gt;...&lt;/' .. tag .. '&gt;')
end
table.insert(parts, truncate(text:sub(pos or 1)))
return table.concat(parts)
end
 
function p._check(args, pargs)
if type(args) ~= "table" or type(pargs) ~= "table" then
-- TODO: error handling
return
end
 
local ignoreblank = isnotempty(frame.args['ignoreblank'])
local showblankpos = isnotempty(frame.args['showblankpositional'])
local knownargs = {}
local unknown = frame.args['unknown'] or 'Found _VALUE_, '
local preview = frame.args['preview']
 
local values = {}
Line 34 ⟶ 60:
end
end
if isnotempty(preview) then
preview = '<div class="hatnote" style="color:red"><strong>Warning:</strong> ' .. preview .. ' (this message is shown only in preview).</div>'
elseif preview == nil then
Line 44 ⟶ 70:
if type(k) == 'string' and knownargs[k] == nil then
local knownflag = false
for i_, regexp in ipairs(regexps) do
if mw.ustring.match(k, regexp) then
knownflag = true
Line 51 ⟶ 77:
end
if not knownflag and ( not ignoreblank or isnotempty(v) ) then
table.insert(values, clean(k))
k = mw.ustring.gsub(k, '[^%w\-_ ]', '?')
table.insert(values, k)
end
elseif type(k) == 'number' and
knownargs[tostring(k)] == nil and
( showblankpos or isnotempty(v) )
then
localtable.insert(values, vlenk .. ' = mw' .ustring.len clean(v))
v = mw.ustring.sub(v, 1, (vlen < 25) and vlen or 25)
v = mw.ustring.gsub(v, '[^%w\-_ ]', '?')
table.insert(values, k .. ' = ' .. v .. ((vlen >= 25) and ' ...' or ''))
end
end
 
-- add resulsresults to the output tables
if #values > 0 then
if framemw.getCurrentFrame():preprocess( "{{REVISIONID}}" ) == "" then
unknown = preview
end
for k_, v in pairs(values) do
if v == '' then
-- Fix odd bug for | = which gets stripped to the empty string and
-- breaks category links
v = ' '
end
-- avoid error with v = 'example%2' ("invalid capture index")
local r = unknown:gsub('_VALUE_', {_VALUE_ = v})
table.insert(res, r)
end
Line 82 ⟶ 105:
 
return table.concat(res)
end
 
function p.check (frame)
local args = frame.args
local pargs = frame:getParent().args
return p._check(args, pargs)
end