Module:FreeBSD

From Nasqueron Agora
Revision as of 17:10, 29 October 2013 by Dereckson (talk | contribs) (One condition)

Documentation for this module may be created at Module:FreeBSD/doc

local p = {}

-- Gets a formatted FreeBSD port link
function p.GetsPortLink(frame)
    if (frame.args.url == nil or frame.args.url == '') then
        link = "http://www.freshports.org/" .. frame.args.port
    else 
        link = frame.args.url
    end
    
    return '[' .. link .. ' ' .. frame.args.port .. ']'
end

return p