Modul:Source/Leslau
Dokumentaci tohoto modulu lze vytvořit na stránce Nápověda:Modul:Source/Leslau
-- @brief
-- Data for {{Leslau}}
--
local _module = {}
----------------------------------------
_module = {
cite = "monografie",
arguments = {
["heslo"] = {
description = "heslo",
required = true,
fillIn = "kapitola",
fill = function( args )
return args["heslo"]
end
},
["díl"] = {
description = "díl",
required = true,
fillIn = "svazek",
fill = function( args )
return args["díl"]
end
},
["strany"] = {
description = "citovaná strana či strany",
required = true
},
["url"] = {
description = "odkaz na online verzi",
required = false,
fill = function( args )
local output, pageOffset
if args["url"] then
output = args["url"]
else
if args["díl"] == "1" then
pageOffset = 8
if tonumber( args["strany"] or "0" ) > 202 then pageOffset = 7 end
elseif args["díl"] == "2" then
pageOffset = 313
else
pageOffset = 1
end
output = string.format( "https://archive.org/stream/ERIC_ED100127#page/n%d/mode/1up", ( tonumber( args["strany"] or "0" ) + pageOffset ) )
end
return output
end
},
},
common = {
["příjmení"] = "Leslau",
["jméno"] = "Wolf",
["titul"] = "Basic Amharic Dictionary. Amharic-English, English-Amharic",
["vydavatel"] = "Institute of International Studies",
["místo"] = "Washington, D.C.",
["rok"] = 1972,
["typ kapitoly"] = "heslo",
["typ svazku"] = "díl"
},
}
----------------------------------------
return _module