Ugrás a tartalomhoz

„Modul:CactaceaeTaxonok” változatai közötti eltérés

Innen: MKOE wiki
Nincs szerkesztési összefoglaló
Nincs szerkesztési összefoglaló
1. sor: 1. sor:
local p = {}
local p = {}


-- Speciális formázó a taxonómiai nevekhez
-- Speciális formázó a taxonómiai nevekhez + Linkelés
local function taxonFormazo(szoveg, isGenus)
local function taxonFormazo(szoveg, isGenus, isTypeLink)
     if not szoveg or szoveg == "" then return "" end
     if not szoveg or szoveg == "" then return "" end
      
      
     local tiszta_szoveg = szoveg:gsub("Type:", "Típusfaj:")
     local tiszta_szoveg = szoveg:gsub("Type:", "Típusfaj:")
    local megjelenitendo = tiszta_szoveg
   
    -- Ha típusfajról van szó, megpróbáljuk kinyerni a nevet a "Típusfaj:" szó után
    if isTypeLink then
        local nev_resz = tiszta_szoveg:match("Típusfaj:%s*(.*)")
        if nev_resz then
            local tiszta_nev = mw.text.trim(nev_resz)
            megjelenitendo = "Típusfaj: [[" .. tiszta_nev .. "|''" .. tiszta_nev .. "'']]"
        else
            -- Ha nincs benne a "Típusfaj:" szó, az egészet linkeljük
            megjelenitendo = "[[" .. tiszta_szoveg .. "|''" .. tiszta_szoveg .. "'']]"
        end
    end
      
      
     local s = ""
     local s = ""
     if isGenus then
     if isGenus and not isTypeLink then
         s = "'''''" .. tiszta_szoveg .. "'''''"
         s = "'''''" .. megjelenitendo .. "'''''"
    elseif not isTypeLink then
        s = "''" .. megjelenitendo .. "''"
     else
     else
         s = "''" .. tiszta_szoveg .. "''"
         s = megjelenitendo
     end
     end
      
      
    -- Álló betűs kulcsszavak (kivéve a már linkelt részeket)
     local kulcsszavak = {
     local kulcsszavak = {
         "subgen%.", "subg%.", "sect%.", "subsect%.",  
         "subgen%.", "subg%.", "sect%.", "subsect%.",  
28. sor: 44. sor:
end
end


-- Szinonimák feldolgozása (támogatja a nyers szöveget és a blokkokat is)
-- Szinonimák feldolgozása
local function formazSzinonimak(sor)
local function formazSzinonimak(sor)
     if not sor or sor == "" then return "" end
     if not sor or sor == "" then return "" end
34. sor: 50. sor:
     local lista = {}
     local lista = {}


     -- 1. Típusfaj kinyerése (ami a :: és az 1# között van)
     -- 1. Típusfaj kinyerése és linkelése
     local nyers_resz = sor:match("^([^%d]+)1#")
     local nyers_resz = sor:match("^([^%d]+)1#")
     if nyers_resz then
     if nyers_resz then
         local tisztitott = mw.text.trim(nyers_resz:gsub("^::%s*", ""))
         local tisztitott = mw.text.trim(nyers_resz:gsub("^::%s*", ""))
         if tisztitott ~= "" then
         if tisztitott ~= "" then
             -- A típusfaj általában fajnév (tartalmaz szóközt), így nem lesz bold-italic
             -- Itt True-ra állítjuk a harmadik paramétert a linkeléshez
             table.insert(lista, "<li>" .. taxonFormazo(tisztitott, false) .. "</li>")
             table.insert(lista, "<li>" .. taxonFormazo(tisztitott, false, true) .. "</li>")
         end
         end
     end
     end


     -- 2. Számozott blokkok kinyerése (3-as és 4-es szint)
     -- 2. Számozott blokkok (szinonimák)
     local aktualis_sor = ""
     local aktualis_sor = ""
     for szint, jel, tartalom in mw.ustring.gmatch(sor, "(%d)%s*([^%d%s#]+)%s*([^#]+)%s*%d#") do
     for szint, jel, tartalom in mw.ustring.gmatch(sor, "(%d)%s*([^%d%s#]+)%s*([^#]+)%s*%d#") do
52. sor: 68. sor:
             local is_syn_genus = not trimmed_tartalom:find(" ")  
             local is_syn_genus = not trimmed_tartalom:find(" ")  
              
              
             local formalt_nev = taxonFormazo(trimmed_tartalom, is_syn_genus)
             local formalt_nev = taxonFormazo(trimmed_tartalom, is_syn_genus, false)
             local elem = tiszta_jel .. " " .. formalt_nev
             local elem = tiszta_jel .. " " .. formalt_nev


96. sor: 112. sor:
                     local nemz_link = "[[:Kategória:" .. nemz .. "|" .. nemz_display .. "]]"
                     local nemz_link = "[[:Kategória:" .. nemz .. "|" .. nemz_display .. "]]"
                      
                      
                    -- A teljes maradékot átadjuk (a nemzetségnév utáni részt)
                     local maradek = sor:match("^1%s+[^%s:]+%s*(.*)$") or ""
                     local maradek = sor:match("^1%s+[^%s:]+%s*(.*)$") or ""
                     table.insert(rows, "|-\n| " .. counter .. "\n| " .. nemz_link .. "\n| " .. formazSzinonimak(maradek))
                     table.insert(rows, "|-\n| " .. counter .. "\n| " .. nemz_link .. "\n| " .. formazSzinonimak(maradek))

A lap 2026. január 10., 00:28-kori változata

A modult a Modul:CactaceaeTaxonok/doc lapon tudod dokumentálni

local p = {}

-- Speciális formázó a taxonómiai nevekhez + Linkelés
local function taxonFormazo(szoveg, isGenus, isTypeLink)
    if not szoveg or szoveg == "" then return "" end
    
    local tiszta_szoveg = szoveg:gsub("Type:", "Típusfaj:")
    local megjelenitendo = tiszta_szoveg
    
    -- Ha típusfajról van szó, megpróbáljuk kinyerni a nevet a "Típusfaj:" szó után
    if isTypeLink then
        local nev_resz = tiszta_szoveg:match("Típusfaj:%s*(.*)")
        if nev_resz then
            local tiszta_nev = mw.text.trim(nev_resz)
            megjelenitendo = "Típusfaj: [[" .. tiszta_nev .. "|''" .. tiszta_nev .. "'']]"
        else
            -- Ha nincs benne a "Típusfaj:" szó, az egészet linkeljük
            megjelenitendo = "[[" .. tiszta_szoveg .. "|''" .. tiszta_szoveg .. "'']]"
        end
    end
    
    local s = ""
    if isGenus and not isTypeLink then
        s = "'''''" .. megjelenitendo .. "'''''"
    elseif not isTypeLink then
        s = "''" .. megjelenitendo .. "''"
    else
        s = megjelenitendo
    end
    
    -- Álló betűs kulcsszavak (kivéve a már linkelt részeket)
    local kulcsszavak = {
        "subgen%.", "subg%.", "sect%.", "subsect%.", 
        "subsp%.", "var%.", "subvar%.", "f%.", "Típusfaj:"
    }
    
    for _, kulcs in ipairs(kulcsszavak) do
        local tiszta_kulcs = kulcs:gsub("%%", "")
        s = s:gsub(kulcs, "''" .. tiszta_kulcs .. "''")
    end
    
    s = s:gsub("''''''", ""):gsub("''''", "")
    return s
end

-- Szinonimák feldolgozása
local function formazSzinonimak(sor)
    if not sor or sor == "" then return "" end

    local lista = {}

    -- 1. Típusfaj kinyerése és linkelése
    local nyers_resz = sor:match("^([^%d]+)1#")
    if nyers_resz then
        local tisztitott = mw.text.trim(nyers_resz:gsub("^::%s*", ""))
        if tisztitott ~= "" then
            -- Itt True-ra állítjuk a harmadik paramétert a linkeléshez
            table.insert(lista, "<li>" .. taxonFormazo(tisztitott, false, true) .. "</li>")
        end
    end

    -- 2. Számozott blokkok (szinonimák)
    local aktualis_sor = ""
    for szint, jel, tartalom in mw.ustring.gmatch(sor, "(%d)%s*([^%d%s#]+)%s*([^#]+)%s*%d#") do
        if szint == "3" or szint == "4" then
            local tiszta_jel = mw.ustring.sub(jel, 1, 1)
            local trimmed_tartalom = mw.text.trim(tartalom)
            local is_syn_genus = not trimmed_tartalom:find(" ") 
            
            local formalt_nev = taxonFormazo(trimmed_tartalom, is_syn_genus, false)
            local elem = tiszta_jel .. " " .. formalt_nev

            if szint == "3" then
                if aktualis_sor ~= "" then table.insert(lista, "<li>" .. aktualis_sor .. "</li>") end
                aktualis_sor = elem
            else
                aktualis_sor = aktualis_sor .. " " .. elem
            end
        end
    end

    if aktualis_sor ~= "" then
        table.insert(lista, "<li>" .. aktualis_sor .. "</li>")
    end

    if #lista == 0 then return "" end
    return '<ul style="margin-left:1.1em; list-style-type:disc; padding:0; margin:0;">' .. table.concat(lista) .. "</ul>"
end

function p.tablazat(frame)
    local args = frame:getParent().args
    local szuro = args[1] and mw.text.trim(args[1]) or ""
    
    local status, dataModul = pcall(require, 'Modul:CactaceaeTaxonokData')
    if not status then return "Hiba: Modul:CactaceaeTaxonokData nem található." end
    local nyers = dataModul.getAdatok()

    local rows = {}
    local counter = 0
    local isVisible = false

    for sor in nyers:gmatch("[^\r\n]+") do
        local szint = sor:sub(1, 1)

        if szint == "1" then
            local nemz = sor:match("^1%s+([^%s:]+)")
            if nemz then
                if szuro == "" or nemz == szuro then
                    isVisible = true
                    counter = counter + 1
                    local nemz_display = "'''''" .. nemz .. "'''''"
                    local nemz_link = "[[:Kategória:" .. nemz .. "|" .. nemz_display .. "]]"
                    
                    local maradek = sor:match("^1%s+[^%s:]+%s*(.*)$") or ""
                    table.insert(rows, "|-\n| " .. counter .. "\n| " .. nemz_link .. "\n| " .. formazSzinonimak(maradek))
                else
                    isVisible = false
                end
            end
        elseif szint == "2" and isVisible then
            local fajnev, maradek = sor:match("^2%s+([^2#]+)2#%s*(.*)")
            if fajnev then
                counter = counter + 1
                local tiszta_fajnev = mw.text.trim(fajnev)
                table.insert(rows, "|-\n| " .. counter .. "\n| [[" .. tiszta_fajnev .. "|''" .. tiszta_fajnev .. "'']]\n| " .. formazSzinonimak(maradek))
            end
        end
    end

    if #rows == 0 then return "Nincs találat." end
    local head = '{| class="wikitable sortable datatable-hook stripe hover compact" style="width:100%; font-size:90%;"\n! # !! Taxonnév !! Típusfaj, szinonimák\n'
    return frame:preprocess(head .. table.concat(rows, "\n") .. "\n|}")
end

return p