Module:Sandbox/ProcrastinatingReader/three: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
 
(18 intermediate revisions by the same user not shown)
Line 208:
-- allow for aliases
for x, p in pairs( td_params ) do for y, alias in ipairs( p.aliases or {} ) do
--p['primary'] = x
td_params[x] = p
all_aliases[alias] = p
if tonumber(alias) then all_aliases[tonumber(alias)] = p end
end end
 
mw.logObject(all_aliases)
-- handle undeclared and deprecated
local already_seen = {}
Line 242 ⟶ 241:
or tp_param.deprecated and noval and 'empty-deprecated'
or not compatible( tp_param.type, value ) and 'incompatible'
or not series and already_seen[tp_param] =and hasval and 'duplicate'
 
if not table_name then
if not serieshasval and already_seen[tp_param]table_name and~= hasval'duplicate' then
already_seen[tp_param] = p_name
table_name = 'duplicate'
end
end
already_seen[tp_param] = hasval
end
Line 255 ⟶ 251:
if table_name then
res[table_name] = res[table_name] or {}
res[if table_name][p_name] == 'duplicate' valuethen
local primary_param = tp_param['primary']
local primaryData = res[table_name][primary_param]
if not table_nameprimaryData then
primaryData = {}
table.insert(primaryData, already_seen[tp_param])
end
table.insert(primaryData, p_name)
res[table_name][primary_param] = primaryData
else
res[table_name][p_name] = value
end
end
end
Line 304 ⟶ 311:
end
 
local replace_macros = function( error_type, s, param_names )
function concat_and_escape( t ), sep )
local ssep = table.concat(sep t,or ', ' )
local s = table.concat( t, sep )
return ( mw.ustring.gsub( s, '%%', '%%%%' ) )
end
Line 314 ⟶ 322:
for k, v in pairs( param_names ) do
table.insert( k_ar, k )
table.insertif type(v) kv_ar, k ..== ': table' .. v)then
v = table.concat(v, ', ')
end
table_nameif error_type == 'duplicate' then
table.insert( kv_ar, v)
else
table.insert( kv_ar, k .. ': ' .. v)
end
end
s = mw.ustring.gsub( s, 'paramname', concat_and_escape( k_ar ) )
s = mw.ustring.gsub( s, 'paramandvalue', concat_and_escape( kv_ar ) )
s = mw.ustring.gsub( s, 'paramname', concat_and_escape( k_ar ) )
s = mw.ustring.gsub( s, 'paramandvalue', concat_and_escape( kv_ar, ' AND ' ) )
 
if mw.getCurrentFrame():preprocess( "{{REVISIONID}}" ) ~= "" then
s = mw.ustring.gsub( s, "<div.*<%/div>", "", 1 )
Line 327 ⟶ 344:
 
local report_params = function( key, param_names )
local res = replace_macros( key, options[key], param_names )
res = frame:preprocess(res or '')
report = report .. ( res or '' )