![]() | We're back! Sorry, bad combo of sickness, funeral and a month-long trip abroad. The site is back now. ![]() |
Module:links/templates: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 24: | Line 24: | ||
local alias_of_4 = {alias_of = 4} | local alias_of_4 = {alias_of = 4} | ||
local boolean = {type = "boolean"} | local boolean = {type = "boolean"} | ||
local params = { | local params = { | ||
[1] = {required = true, type = "language", default = "und"}, | [1] = {required = true, type = "language", default = "und"}, | ||
[2] = | [2] = true, | ||
[3] = | [3] = true, | ||
[4] = | [4] = true, | ||
["g"] = {list = true}, | ["g"] = {list = true}, | ||
["gloss"] = alias_of_4, | ["gloss"] = alias_of_4, | ||
["id"] = | ["id"] = true, | ||
["lit"] = | ["lit"] = true, | ||
["pos"] = | ["pos"] = true, | ||
["sc"] = {type = "script"}, | ["sc"] = {type = "script"}, | ||
["t"] = alias_of_4, | ["t"] = alias_of_4, | ||
["tr"] = | ["tr"] = true, | ||
["ts"] = | ["ts"] = true, | ||
["accel-form"] = | ["accel-form"] = true, | ||
["accel-translit"] = | ["accel-translit"] = true, | ||
["accel-lemma"] = | ["accel-lemma"] = true, | ||
["accel-lemma-translit"] = | ["accel-lemma-translit"] = true, | ||
["accel-gender"] = | ["accel-gender"] = true, | ||
["accel-nostore"] = boolean, | ["accel-nostore"] = boolean, | ||
} | } | ||
if iargs.compat then | if iargs.compat then | ||
Line 53: | Line 51: | ||
end | end | ||
if iargs.langname then | if iargs.langname then | ||
params["w"] = | params["w"] = boolean | ||
end | end | ||
return process_params(frame:getParent().args, params), iargs | return process_params(frame:getParent().args, params), iargs | ||
end | end | ||
-- Used in [[Template:l]] and [[Template: | -- Used in [[Template:l]] and [[Template:m]]. | ||
function export.l_term_t(frame) | function export.l_term_t(frame) | ||
local args, iargs = get_args(frame) | local args, iargs = get_args(frame) | ||
local compat = iargs.compat | local compat = iargs.compat | ||
local lang = args[compat and "lang" or 1] | local lang = args[compat and "lang" or 1] | ||
local term = args[(compat and 1 or 2)] | local term = args[(compat and 1 or 2)] | ||
Line 72: | Line 72: | ||
end | end | ||
local langname = | local langname = iargs.langname and ( | ||
args.w and lang:makeWikipediaLink() or | args.w and lang:makeWikipediaLink() or | ||
lang:getCanonicalName() | lang:getCanonicalName() | ||
Line 95: | Line 95: | ||
pos = args["pos"], | pos = args["pos"], | ||
lit = args["lit"], | lit = args["lit"], | ||
accel = args["accel-form"] and { | accel = args["accel-form"] and { | ||
form = args["accel-form"], | form = args["accel-form"], | ||
Line 114: | Line 113: | ||
do | do | ||
local function get_args(frame) | local function get_args(frame) | ||
return process_params(frame:getParent().args, { | return process_params(frame:getParent().args, { | ||
[1] = {required = true, type = "language", default = "und"}, | [1] = {required = true, type = "language", default = "und"}, | ||
[2] = {allow_empty = true}, | [2] = {allow_empty = true}, | ||
[3] = | [3] = true, | ||
["id"] = | ["id"] = true, | ||
["sc"] = {type = "script"}, | ["sc"] = {type = "script"}, | ||
}) | }) | ||
Line 178: | Line 176: | ||
local args = process_params(frame:getParent().args, { | local args = process_params(frame:getParent().args, { | ||
[1] = {required = true}, | [1] = {required = true}, | ||
[2] = true, | |||
["lang"] = {type = "language", default = "en"}, | ["lang"] = {type = "language", default = "en"}, | ||
}) | }) | ||
Line 186: | Line 185: | ||
lang = args.lang, | lang = args.lang, | ||
term = term, | term = term, | ||
alt = term:gsub("^.[\128-\191]*", upper) | alt = term:gsub("^.[\128-\191]*", upper) .. (args[2] or "") | ||
} | } | ||
end | end |
Latest revision as of 21:09, 11 January 2025
Documentation for this module may be created at Module:links/templates/doc
local process_params = require("Module:parameters").process
local remove = table.remove
local upper = require("Module:string utilities").upper
local export = {}
--[=[
Modules used:
[[Module:links]]
[[Module:languages]]
[[Module:scripts]]
[[Module:parameters]]
]=]
do
local function get_args(frame)
-- `compat` is a compatibility mode for {{term}}.
-- If given a nonempty value, the function uses lang= to specify the
-- language, and all the positional parameters shift one number lower.
local iargs = frame.args
iargs.compat = iargs.compat and iargs.compat ~= ""
iargs.langname = iargs.langname and iargs.langname ~= ""
iargs.notself = iargs.notself and iargs.notself ~= ""
local alias_of_4 = {alias_of = 4}
local boolean = {type = "boolean"}
local params = {
[1] = {required = true, type = "language", default = "und"},
[2] = true,
[3] = true,
[4] = true,
["g"] = {list = true},
["gloss"] = alias_of_4,
["id"] = true,
["lit"] = true,
["pos"] = true,
["sc"] = {type = "script"},
["t"] = alias_of_4,
["tr"] = true,
["ts"] = true,
["accel-form"] = true,
["accel-translit"] = true,
["accel-lemma"] = true,
["accel-lemma-translit"] = true,
["accel-gender"] = true,
["accel-nostore"] = boolean,
}
if iargs.compat then
params["lang"] = {type = "language", default = "und"}
remove(params, 1)
alias_of_4.alias_of = 3
end
if iargs.langname then
params["w"] = boolean
end
return process_params(frame:getParent().args, params), iargs
end
-- Used in [[Template:l]] and [[Template:m]].
function export.l_term_t(frame)
local args, iargs = get_args(frame)
local compat = iargs.compat
local lang = args[compat and "lang" or 1]
local term = args[(compat and 1 or 2)]
local alt = args[(compat and 2 or 3)]
term = term ~= "" and term or nil
if not term and not alt and iargs.demo then
term = iargs.demo
end
local langname = iargs.langname and (
args.w and lang:makeWikipediaLink() or
lang:getCanonicalName()
) or nil
if langname and term == "-" then
return langname
end
-- Forward the information to full_link
return (langname and langname .. " " or "") .. require("Module:links").full_link(
{
lang = lang,
sc = args.sc,
track_sc = true,
term = term,
alt = alt,
gloss = args[4],
id = args["id"],
tr = args["tr"],
ts = args["ts"],
genders = args["g"],
pos = args["pos"],
lit = args["lit"],
accel = args["accel-form"] and {
form = args["accel-form"],
translit = args["accel-translit"],
lemma = args["accel-lemma"],
lemma_translit = args["accel-lemma-translit"],
gender = args["accel-gender"],
nostore = args["accel-nostore"],
} or nil
},
iargs.face,
not iargs.notself
)
end
end
-- Used in [[Template:ll]].
do
local function get_args(frame)
return process_params(frame:getParent().args, {
[1] = {required = true, type = "language", default = "und"},
[2] = {allow_empty = true},
[3] = true,
["id"] = true,
["sc"] = {type = "script"},
})
end
function export.ll(frame)
local args = get_args(frame)
local lang = args[1]
local sc = args["sc"]
local term = args[2]
term = term ~= "" and term or nil
return require("Module:links").language_link{
lang = lang,
sc = sc,
term = term,
alt = args[3],
id = args.id
} or "<small>[Term?]</small>" ..
require("Module:utilities").format_categories(
{lang:getFullName() .. " term requests"},
lang, "-", nil, nil, sc
)
end
end
function export.def_t(frame)
local args = process_params(frame:getParent().args, {
[1] = {required = true, default = ""},
})
local lang = require("Module:languages").getByCode("en")
local sc = require("Module:scripts").getByCode("Latn")
return require("Module:script utilities").tag_text(require("Module:links").embedded_language_links{
term = args[1],
lang = lang,
sc = sc
}, lang, sc)
end
function export.linkify_t(frame)
local args = process_params(frame:getParent().args, {
[1] = {required = true, default = ""},
})
args[1] = mw.text.trim(args[1])
if args[1] == "" or args[1]:find("[[", nil, true) then
return args[1]
else
return "[[" .. args[1] .. "]]"
end
end
function export.cap_t(frame)
local args = process_params(frame:getParent().args, {
[1] = {required = true},
[2] = true,
["lang"] = {type = "language", default = "en"},
})
local term = args[1]
return require("Module:links").full_link{
lang = args.lang,
term = term,
alt = term:gsub("^.[\128-\191]*", upper) .. (args[2] or "")
}
end
function export.section_link_t(frame)
local args = process_params(frame:getParent().args, {
[1] = {},
})
return require("Module:links").section_link(args[1])
end
return export