לדלג לתוכן

יחידה:NUMBEROF: הבדלים בין גרסאות בדף

מתוך חב"דפדיה, אנציקלופדיה חב"דית חופשית
מ. רובין (שיחה | תרומות)
אין תקציר עריכה
מ. רובין (שיחה | תרומות)
אין תקציר עריכה
 
(4 גרסאות ביניים של 2 משתמשים אינן מוצגות)
שורה 1: שורה 1:
local p = {}
local function trimArg(arg, i)
local function trimArg(arg, i)
    arg = mw.text.trim(arg or '')
arg = mw.text.trim(arg or '')
    if arg == '' then
if arg == '' then
        if i then
if i then
            error('פרמטר ' .. i .. ' חסר. ראה תיעוד התבנית')
error('Parameter ' .. i .. ' is missing. See template documentation')
        end
end
        return nil
return nil
    end
end
    return mw.ustring.lower(arg)
return mw.ustring.lower(arg)
end
end


local function getValue(stats, action, map)
local function getValue(stats, action, map)
    if action == 'depth' then
if action == 'depth' then
        -- https://meta.wikimedia.org/wiki/Wikipedia_article_depth
local n = { 'articles', 'edits', 'pages' }
        -- This gives silly results if, for example, the number of articles is small.
if map then
        local n = { 'articles', 'edits', 'pages' }
for i, v in ipairs(n) do
        if map then
n[i] = map[v]
            for i, v in ipairs(n) do
end
                n[i] = map[v]
end
            end
for i, v in ipairs(n) do
        end
n[i] = stats[v] or 0
        for i, v in ipairs(n) do
end
            n[i] = stats[v] or 0
local articles, edits, pages = n[1], n[2], n[3]
        end
if pages == 0 or articles == 0 then
        local articles, edits, pages = n[1], n[2], n[3]
return 0
        if pages == 0 or articles == 0 then
end
            return 0
return math.floor((edits/pages) * ((pages - articles)/articles)^2)
        end
end
        return math.floor((edits/pages) * ((pages - articles)/articles)^2)
if map then
    end
action = map[action]
    if map then
end
        action = map[action]
return stats[action]
    end
    return stats[action]
end
end


local function getIfLocal(site, action)
local function getIfLocal(site, action)
    -- If wanted site is the local site where module is running,
local localSite = string.match(mw.site.server, 'https?://(.-)%.com$')
    -- return numberof result for given action, or nil.
              or string.match(mw.site.server, 'https?://(.-)%.co%.il$')
    -- This is faster than reading the cached table, and gives the current value.
if site == localSite then
    local localSite = string.match(mw.site.server, '.*//he.chabadpedia.co.il$') -- דומיין מותאם לחב"דפדיה
if action == 'activeusers' then
    if site == localSite then
action = 'activeUsers'
        if action == 'activeusers' then
end
            action = 'activeUsers'
return getValue(mw.site.stats, action)
        end
end
        return getValue(mw.site.stats, action)
    end
end
end


local function main(frame)
function p.main(frame)
    local args = frame:getParent().args
local args = frame.args or frame:getParent().args
    local action = trimArg(args[1], 1)  -- activeusers, admins, articles, edits, files, pages, users, depth
local action = trimArg(args[1], 1)  -- articles, edits, etc.
    if action:sub(1, 8) == 'numberof' then -- numberofX is an alias for X
if not action then return -1 end
        action = trimArg(action:sub(9), 1)
 
    end
if action:sub(1, 8) == 'numberof' then
    local site = trimArg(args[2], 2) -- "af" or "af.wikipedia" or "af.wikiquote" etc., including "total"
action = trimArg(action:sub(9), 1)
    if not site:find('.', 1, true) then
end
        site = site .. '.wikipedia'
 
    end
local site = trimArg(args[2], 2) or ''
    local wantComma = trimArg(args[3]) -- nil for no commas in output; "N" or anything nonblank inserts commas
if site ~= 'total' and not site:find('.', 1, true) then
    local result = getIfLocal(site, action)
site = site .. '.chabadpedia'
    if not result then
end
        local data = mw.loadData('Module:NUMBEROF/data') -- ייתכן שצריך ליצור דף נתונים מתאים עבור חב"דפדיה
 
        local map = data.map
local wantComma = trimArg(args[3])
        data = data.data
local result = getIfLocal(site, action)
        result = data[site]
 
        if result then
if not result then
            result = getValue(result, action, map)
local data = mw.loadData('Module:NUMBEROF/data')
        end
local map = data.map
    end
data = data.data
    if result then
result = data[site]
        if wantComma then
if result then
            result = mw.getContentLanguage():formatNum(result)
result = getValue(result, action, map)
        end
end
        return result -- number or formatted string
end
    end
 
    return -1
if result then
if wantComma then
result = mw.getContentLanguage():formatNum(result)
end
return result
end
 
return -1
end
end


local function rank(frame)
function p.rank(frame)
    -- Rank sites in a specified sister project by their number of articles.
local args = frame:getParent().args
    local args = frame:getParent().args
local parm = trimArg(args[1], 1)
    local parm = trimArg(args[1], 1)  -- a number like 12 or a site name like "af" (not "af.wikipedia")
local base = trimArg(args[2]) or 'chabadpedia'
    local base = trimArg(args[2]) or 'wikipedia' -- base of full site name like "wikipedia" or "wikiquote"
local wantComma = trimArg(args[3])
    local wantComma = trimArg(args[3])
 
    local data = mw.loadData('Module:NUMBEROF/' .. (base == 'wikipedia' and 'rank' or 'other')) -- ייתכן שצריך ליצור דף דירוג מתאים עבור חב"דפדיה
local data = mw.loadData('Module:NUMBEROF/' .. (base == 'chabadpedia' and 'rank' or 'other'))
    data = data[base]
data = data[base]
    if data then
 
        local result
if data then
        parm = tonumber(parm) or parm
local result
        if type(parm) == 'number' then
parm = tonumber(parm) or parm
            result = data.rankByIndex[parm]
if type(parm) == 'number' then
        else
result = data.rankByIndex[parm]
            result = data.rankBySite[parm]
else
            if result and wantComma then
result = data.rankBySite[parm]
                result = mw.getContentLanguage():formatNum(result)
if result and wantComma then
            end
result = mw.getContentLanguage():formatNum(result)
        end
end
        if result then
end
            return result -- number or string
if result then
        end
return result
    end
end
    return -1
end
 
return -1
end
end


return {
return p
    main = main,
    rank = rank,
}

גרסה אחרונה מ־16:35, 23 ביולי 2025

ניתן ליצור תיעוד על היחידה הזאת בדף יחידה:NUMBEROF/תיעוד

local p = {}

local function trimArg(arg, i)
	arg = mw.text.trim(arg or '')
	if arg == '' then
		if i then
			error('Parameter ' .. i .. ' is missing. See template documentation')
		end
		return nil
	end
	return mw.ustring.lower(arg)
end

local function getValue(stats, action, map)
	if action == 'depth' then
		local n = { 'articles', 'edits', 'pages' }
		if map then
			for i, v in ipairs(n) do
				n[i] = map[v]
			end
		end
		for i, v in ipairs(n) do
			n[i] = stats[v] or 0
		end
		local articles, edits, pages = n[1], n[2], n[3]
		if pages == 0 or articles == 0 then
			return 0
		end
		return math.floor((edits/pages) * ((pages - articles)/articles)^2)
	end
	if map then
		action = map[action]
	end
	return stats[action]
end

local function getIfLocal(site, action)
	local localSite = string.match(mw.site.server, 'https?://(.-)%.com$')
              or string.match(mw.site.server, 'https?://(.-)%.co%.il$')
	if site == localSite then
		if action == 'activeusers' then
			action = 'activeUsers'
		end
		return getValue(mw.site.stats, action)
	end
end

function p.main(frame)
	local args = frame.args or frame:getParent().args
	local action = trimArg(args[1], 1)  -- articles, edits, etc.
	if not action then return -1 end

	if action:sub(1, 8) == 'numberof' then
		action = trimArg(action:sub(9), 1)
	end

	local site = trimArg(args[2], 2) or ''
	if site ~= 'total' and not site:find('.', 1, true) then
		site = site .. '.chabadpedia'
	end

	local wantComma = trimArg(args[3])
	local result = getIfLocal(site, action)

	if not result then
		local data = mw.loadData('Module:NUMBEROF/data')
		local map = data.map
		data = data.data
		result = data[site]
		if result then
			result = getValue(result, action, map)
		end
	end

	if result then
		if wantComma then
			result = mw.getContentLanguage():formatNum(result)
		end
		return result
	end

	return -1
end

function p.rank(frame)
	local args = frame:getParent().args
	local parm = trimArg(args[1], 1)
	local base = trimArg(args[2]) or 'chabadpedia'
	local wantComma = trimArg(args[3])

	local data = mw.loadData('Module:NUMBEROF/' .. (base == 'chabadpedia' and 'rank' or 'other'))
	data = data[base]

	if data then
		local result
		parm = tonumber(parm) or parm
		if type(parm) == 'number' then
			result = data.rankByIndex[parm]
		else
			result = data.rankBySite[parm]
			if result and wantComma then
				result = mw.getContentLanguage():formatNum(result)
			end
		end
		if result then
			return result
		end
	end

	return -1
end

return p