Jump to content

Module:AWBVersions

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Reedy (talk | contribs) at 08:19, 1 July 2016 (Try outputting something useful). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}

function p.main( frame )
    local version = mw.title.makeTitle( 'Wikipedia', 'AutoWikiBrowser/CheckPage/VersionJSON' )
    
    local decoded = mw.text.jsonDecode( version:getContent() )
    local output = "Current Version: " .. decoded.currentversion .. "\n"
    output = output .. "Newest Version: " .. decoded.newestversion .. "\n"
    return output
end

return p