Mòdul:lexic
Aparença
La documentacion d'utilizacion d'aquel modul se pòt crear a Mòdul:lexic/ús
local m_bases = require("Mòdul:basas")
local m_langs = require("Mòdul:lengas")
local m_table = require("Mòdul:taula")
local m_string = require("Mòdul:string")
local m_params = require("Mòdul:paramètres")
local tree = mw.loadData("Mòdul:lexic/data")
local p = {}
function p.categorizeInterlanguageLexicon(_)
local lexicon = mw.title.getCurrentTitle().text
local lexiconData = tree[m_bases.lcfirst(lexicon)] or tree[lexicon]
if lexiconData then
local categories = lexiconData["description"] .. "\n"
if lexiconData["super_categories"] then
for _, v in pairs(lexiconData["super_categories"]) do
categories = categories .. "[[Catégorie:" .. m_bases.ucfirst(v) .. "]]"
end
end
return categories .. "[[Catégorie:Lexiques|" .. m_bases.ucfirst(lexicon) .. "]]"
else
return "[[Catégorie:Wiktionnaire:Lexiques non définis]]"
end
end
local function parseLexiconTitle(title, langCode)
local root = "Lexique en "
if langCode == nil or langCode == "" then
root = root .. "(.+)"
else
root = root .. "(" .. mw.ustring.gsub(m_langs.get_nom(langCode), "([()-])", "%%%1") .. ")"
end
local determiners = { "du ", "de la ", "de l’", "des " }
local langCat, subjectCat, lang, subject
for _, d in ipairs(determiners) do
lang, subject = mw.ustring.match(title, root .. " " .. d .. "(.+)")
-- Récupérer le code à partir du nom de la langue
if langCode == nil then
langCode = m_langs._getLanguageCode(lang)
end
if lang ~= nil and subject ~= nil then
langCat = "Lexiques en " .. lang .. "|" .. subject
-- subjectCat = subject .. "|" .. lang
subjectCat = subject .. "|" .. m_langs.get_tri(langCode)
break
end
end
return langCat, subjectCat, lang, subject
end
function p.categorizeLexicon(frame)
local args = m_params.process(frame:getParent().args, {
[1] = {}
})
local langCode = args[1]
local title = mw.title.getCurrentTitle().text
local langCat, lexiconCat, lang, subject = parseLexiconTitle(title, langCode)
if langCat and lexiconCat and lang and m_langs._getLanguageCode(lang) and subject then
local header = ""
if tree[subject] then
local det
if tree[subject]["determiner"] == "du " then
det = "le "
elseif tree[subject]["determiner"] == "de la " then
det = "la "
elseif tree[subject]["determiner"] == "des " then
det = "les "
elseif tree[subject]["determiner"] == "de l’" then
det = "l’"
end
header = mw.ustring.format(
[=[Cette page liste les mots en [[%s]] en rapport avec %s[[%s]].
%s
Pour ajouter une entrée à cette catégorie, utilisez le modèle <code>{{[[Modèle:lexique|lexique]]|%s|%s}}</code>.
]=],
lang, det, subject, tree[subject]["description"], subject, m_langs._getLanguageCode(lang)
)
if tree[subject]["super_categories"] ~= nil then
for _, v in pairs(tree[subject]["super_categories"]) do
if tree[v] then
header = header .. mw.ustring.format(
"[[Catégorie:Lexique en %s %s|%s]]",
lang, tree[v]["determiner"] .. v, subject
)
else
header = header .. "[[Catégorie:Wiktionnaire:Lexiques avec lexique parent non défini]]"
end
end
end
else
header = "[[Catégorie:Wiktionnaire:Lexiques non définis]]"
end
return header .. mw.ustring.format("[[Catégorie:%s]][[Catégorie:%s]]", langCat, m_bases.ucfirst(lexiconCat))
else
return "[[Catégorie:Wiktionnaire:Lexiques avec erreur]]"
end
end
local function parseLexiconTitleNoLanguage(title)
if not title then
return nil
end
local determiners = { "du ", "de la ", "de l’", "des " }
local subject
for _, d in ipairs(determiners) do
subject = mw.ustring.match(title, "Lexique " .. d .. "(.+) sans langue précisée")
if subject then
break
end
end
return subject
end
function p.categorizeLexiconWithoutLanguage(_)
local title = mw.title.getCurrentTitle().text
local subject = parseLexiconTitleNoLanguage(title)
if subject then
local header = ""
if tree[subject] then
local det
if tree[subject]["determiner"] == "du " then
det = "le "
elseif tree[subject]["determiner"] == "de la " then
det = "la "
elseif tree[subject]["determiner"] == "des " then
det = "les "
elseif tree[subject]["determiner"] == "de l’" then
det = "l’"
end
local templateLink = mw.getCurrentFrame():expandTemplate { title = "M", args = { "lexique", subject } }
local infoTemplate = mw.getCurrentFrame():expandTemplate { title = "M", args = { "info lex", subject } }
header = mw.ustring.format(
[=[Cette catégorie liste les pages qui incluent le modèle %s sans avoir précisé le paramètre de langue.
Cette catégorie devrait être vide : tous les appels du modèle %s doivent mentionner un paramètre de langue.
Si vous ne souhaitez pas que la page soit catégorisée, vous pouvez utiliser %s.
<small>Cette catégorie est une catégorie de maintenance.</small>
[[Catégorie:Wiktionnaire:Lexiques sans langue précisée|%s]]
[[Catégorie:%s|!]]
[[Catégorie:Catégories cachées|! Lexiques %s]]
]=],
templateLink, templateLink, infoTemplate, subject, m_bases.ucfirst(subject), subject
)
end
return header
else
return "[[Catégorie:Wiktionnaire:Lexiques avec erreur]]"
end
end
function p.lexiconNoCat(frame)
return p.lexicon(frame, true)
end
function p.lexicon(frame, nocat)
nocat = nocat or false
-- Analyse des arguments
local args = frame:getParent().args
local tableLen = m_table.length(args)
if nocat then
if tableLen < 1 then
return [[<span style="color:red; font-weight: bold;">Cal picar al mens un lexic !</span>]] .. "[[Categoria:Wikiccionari:Errors d’apèl del modèl lexic]]"
end
else
if tableLen < 2 then
return [[<span style="color:red; font-weight: bold;">Cal picar al mens un lexic e un còdi lenga !</span>]] .. "[[Categoria:Wikiccionari:Errors d’apèl del modèl lexic]]"
end
end
local lexicons = {}
local last
local key = args["clé"]
if key == nil then
key = ""
end
if key ~= "" then
key = "|" .. key
end
for _, arg in ipairs(args) do
if last ~= nil then
table.insert(lexicons, last)
end
last = arg
end
local langCode
local lang
if nocat then
table.insert(lexicons, last)
else
langCode = last
lang = m_langs.get_nom(langCode)
end
local text = ""
local categories = ""
if not nocat and lang == nil then
return mw.ustring.format(
[=[<span style="color:red; font-weight: bold;" title="Code langue saisi : %s">Còdi lenga desconegut !</span>[[Categoria:Wikiccionari:Lexics amb lenga mancanta]]]=],
langCode
)
end
local filteredLexicons = {}
for _, lexicon in ipairs(lexicons) do
if tree[lexicon] then
local span
if langCode then
span = mw.ustring.format(
[[<span title="%s" id="%s-%s">''%s''</span>]],
tree[lexicon]["descripcion"],
langCode,
lexicon,
m_bases.ucfirst(lexicon)
)
else
span = mw.ustring.format(
[[<span title="%s">''%s''</span>]],
tree[lexicon]["descripcion"],
m_bases.ucfirst(lexicon)
)
end
table.insert(filteredLexicons, span)
if tree[lexicon]["determinar"] then
if not nocat then
categories = categories .. mw.ustring.format(
"[[Categoria:Lexic en %s %s%s]]",
lang, tree[lexicon]["determinar"] .. lexicon, key
)
end
else
categories = categories .. "[[Categoria:Wikiccionari:Lexics amb determinant desconegut]]"
end
else
table.insert(filteredLexicons, [[<span style="color:red; font-weight: bold;" title="Lexique inexistant : ]] .. lexicon .. [[">Lexic desconegut !</span>]])
categories = categories .. "[[Categoria:Wikiccionari:Lexics amb un nom desconegut]]"
end
end
if next(filteredLexicons) then
text = "(" .. table.concat(filteredLexicons, ", ") .. ")"
end
if m_bases.page_de_contenu() then
return text .. categories
else
return text
end
end
function p.getLexiconList(_)
local lexicons = {}
for lexicon, _ in pairs(tree) do
table.insert(lexicons, lexicon)
end
table.sort(lexicons, function(a, b)
return m_string.undiacritize(mw.ustring.lower(a)) < m_string.undiacritize(mw.ustring.lower(b))
end)
local res = ""
for _, lexicon in ipairs(lexicons) do
res = res .. "* " .. lexicon .. "\n"
end
return res
end
return p