Module:FreeBSD

From Nasqueron Agora
Revision as of 23:37, 21 January 2013 by Dereckson (talk | contribs)

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  then
        link = "http://www.freshports.org/" .. frame.args.port
    else
        link = frame.args.url
    end
    
    return '[' .. link .. ' ' .. frame.args.port .. ']'
end

return p