Module:BibleQuote: Difference between revisions
Content deleted Content added
Johnrdorazio (talk | contribs) No edit summary |
Johnrdorazio (talk | contribs) No edit summary |
||
Line 36: | Line 36: | ||
function p._main( args ) |
function p._main( args ) |
||
if (in_table(args.version, VERSIONS_AVAILABLE)) then |
if (in_table(args.version, VERSIONS_AVAILABLE)) then |
||
return "<span class=\"bibleQuoteRef\" |
return "<span class=\"bibleQuoteRef\" data-ref=\"" .. args.ref .. "\" data-version=\"" .. args.version .. "\">" .. args.ref .. "</span>" |
||
-- .. "<div data-ref=\"" .. args.ref .. "\" data-version=\"" .. args.version .. "\" class=\"bibleGetQuote\"></div>" |
|||
else |
else |
||
return "<span style=\"color:red;\" |
return "<span data-ref=\"" .. args.ref .. "\" data-version=\"" .. args.version .. "\">" .. args.ref .. "</span><sup style=\"color:red;\" title=\"The Bible version '" .. args.version .. "' is not supported by the BibleGet endpoint.\">[!]</sup>" |
||
end |
end |
||
Revision as of 23:34, September 4, 2020
Documentation for this module may be created at Module:BibleQuote/doc
-- local fs = require("fs")
local getArgs = require('Module:Arguments').getArgs
local VERSIONS_AVAILABLE = {
"NABRE",
"NVBSE",
"LUZZI",
"CEI2008"
}
-- let's keep the needle in a haystack ordering typical of PHP
local function in_table (val, tab)
for index, value in ipairs(tab) do
if value == val then
return true
end
end
return false
end
local p = {} --p stands for package
function p.main( frame )
local args = getArgs(frame, {
--we will only consider arguments that are passed by the template itself in the invoke
frameOnly = true
})
-- let's make sure defaults are set
args.version = args.version or "NABRE"
args.ref = args.ref or "John 3:16"
return p._main(args)
end
function p._main( args )
if (in_table(args.version, VERSIONS_AVAILABLE)) then
return "<span class=\"bibleQuoteRef\" data-ref=\"" .. args.ref .. "\" data-version=\"" .. args.version .. "\">" .. args.ref .. "</span>"
else
return "<span data-ref=\"" .. args.ref .. "\" data-version=\"" .. args.version .. "\">" .. args.ref .. "</span><sup style=\"color:red;\" title=\"The Bible version '" .. args.version .. "' is not supported by the BibleGet endpoint.\">[!]</sup>"
end
end
--[[
function p.cacheDirExists( args )
if(fs.is_dir("/var/log/snort") = nil) then
else
end
end
]]
return p