Jump to content

Module:Medal tally

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by KEmel49 (talk | contribs) at 17:38, 9 December 2024 (Xperiment2). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

function p.getEditCount(frame)
    local username = frame.args.username or mw.title.getCurrentTitle().text
    
    local contribsUrl = "https://xtools.wmflabs.org/api/user/" .. mw.uri.encode(username, "PATH") .. "/en.wikipedia"
    
    return string.format(
        "Edit count for user [%s]: Unable to fetch directly in Lua. Check: [https://xtools.wmflabs.org/ec/en.wikipedia.org/%s User Contributions].",
        username,
        mw.uri.encode(username)
    )
end

return p