יחידה:פרמטרים: הבדלים בין גרסאות בדף
מראה
אין תקציר עריכה |
אין תקציר עריכה |
||
| שורה 12: | שורה 12: | ||
must = data[3] | must = data[3] | ||
suggestions = data[4] | suggestions = data[4] | ||
for tt, t in ipairs(must) do | |||
checkmust(t, pframe.args) | |||
end | |||
for k, v in pairs(pframe.args) do | for k, v in pairs(pframe.args) do | ||
if type(k) == 'string' then checknamed(k) | if type(k) == 'string' then checknamed(k) else | ||
-- local fff | |||
-- if mw.ustring.match(v, "%s*") == nil then fff = "empty" else fff = "full" end | |||
-- out("---" .. k .. "---" .. v .. "---".. mw.text.trim(v) .. "aaa" .. fff .. "aaa") | |||
-- local i = 1 | |||
-- while (i <= len1(v)) do | |||
-- local b = mw.ustring.byte(v, i, i) | |||
-- out(b + 1) | |||
-- if (b < 33) then out("bingo") else out("none") end | |||
-- i = i + 1 | |||
-- end | |||
--out("empty") else out("nonempty") | |||
if not isempty(v) then numbered = k end | |||
end | |||
end | end | ||
if mustnum < numbered then out ("צריך מקסימום " .. mustnum .. " פרמטרים, ישנם " .. numbered) end | if mustnum < numbered then out ("צריך מקסימום " .. mustnum .. " פרמטרים, ישנם " .. numbered) end | ||
| שורה 27: | שורה 43: | ||
if suggestions[k] ~= nil then answer = answer .. ', <span style = "color:green">מומלץ ' .. suggestions[k] .. "</span>" end | if suggestions[k] ~= nil then answer = answer .. ', <span style = "color:green">מומלץ ' .. suggestions[k] .. "</span>" end | ||
out(answer) | out(answer) | ||
end | |||
function checkmust(must, args) | |||
for g, h in pairs(args) do | |||
if must == g then if isempty(h) then out("empty: " .. g) end return end | |||
end | |||
out("missing: " .. must) | |||
end | |||
function isempty(v) | |||
local i = 1 | |||
local b | |||
while (i <= len1(v)) do | |||
b = mw.ustring.byte(v, i, i) | |||
if (b > 32) then return false end | |||
i = i + 1 | |||
end | |||
return true | |||
end | end | ||
גרסה מ־08:57, 10 במאי 2015
function foo(frame)
ans = ""
namespace = "תבנית:"
local pframe = frame:getParent()
local template = pframe:getTitle()
local templatename = template
if find1(templatename, namespace) == 1 then templatename = mw.ustring.sub(templatename, len1(namespace) + 1) end
local data = mw.loadData('יחידה:פרמטרים/' .. templatename)
local numbered = 0
local mustnum = data[1]
parameters = data[2]
must = data[3]
suggestions = data[4]
for tt, t in ipairs(must) do
checkmust(t, pframe.args)
end
for k, v in pairs(pframe.args) do
if type(k) == 'string' then checknamed(k) else
-- local fff
-- if mw.ustring.match(v, "%s*") == nil then fff = "empty" else fff = "full" end
-- out("---" .. k .. "---" .. v .. "---".. mw.text.trim(v) .. "aaa" .. fff .. "aaa")
-- local i = 1
-- while (i <= len1(v)) do
-- local b = mw.ustring.byte(v, i, i)
-- out(b + 1)
-- if (b < 33) then out("bingo") else out("none") end
-- i = i + 1
-- end
--out("empty") else out("nonempty")
if not isempty(v) then numbered = k end
end
end
if mustnum < numbered then out ("צריך מקסימום " .. mustnum .. " פרמטרים, ישנם " .. numbered) end
if (ans == "") then return ans end
return "<div class=error> '''שגיאת פרמטרים ב[[" .. template .. "]]:<br/>" .. ans .. "''' </div>[[קטגוריה:שגיאות פרמטריות]]"
end
function checknamed(k)
local answer = "פרמטר לא ידוע: ''" .. k .. "''"
for p1, p in ipairs(parameters) do
if p == k then return end
end
if suggestions[k] ~= nil then answer = answer .. ', <span style = "color:green">מומלץ ' .. suggestions[k] .. "</span>" end
out(answer)
end
function checkmust(must, args)
for g, h in pairs(args) do
if must == g then if isempty(h) then out("empty: " .. g) end return end
end
out("missing: " .. must)
end
function isempty(v)
local i = 1
local b
while (i <= len1(v)) do
b = mw.ustring.byte(v, i, i)
if (b > 32) then return false end
i = i + 1
end
return true
end
function out(new)
ans = ans .. new .. "</br>"
end
function find1(str, what, where)
local ans = mw.ustring.find(str, what, where, true)
if ans == nil then ans = 0 end
return ans
end
function len1(s)
if s == nil then return 0 end
return mw.ustring.len(s)
end
return {['main'] = foo}