Ugrás a tartalomhoz

Modul:CactaceaeTaxonok

Innen: MKOE wiki
A lap korábbi változatát látod, amilyen Dr. Gyúró Zoltán (vitalap | szerkesztései) 2026. január 9., 19:34-kor történt szerkesztése után volt.

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

local p = {}

-- Speciális formázó a taxonómiai nevekhez
local function taxonFormazo(szoveg, isGenus)
    if not szoveg or szoveg == "" then return "" end
    
    -- "Type:" cseréje "Típusfaj:"-ra
    local tiszta_szoveg = szoveg:gsub("Type:", "Típusfaj:")
    
    local s = ""
    if isGenus then
        s = "'''''" .. tiszta_szoveg .. "'''''" -- Félkövér-dőlt a nemzetségeknek
    else
        s = "''" .. tiszta_szoveg .. "''" -- Sima dőlt a fajoknak
    end
    
    -- Álló betűs kulcsszavak
    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 = {}
    local aktualis_sor = ""

    for szint, jel, tartalom in sor:gmatch("(%d)%s*([^%d%s#]+)%s*([^#]+)%s*%d#") do
        local tiszta_jel = mw.ustring.sub(jel, 1, 1)
        
        -- Szinonima-jel csere
        if tiszta_jel == "=" then tiszta_jel = "=" 
        elseif tiszta_jel == "≡" then tiszta_jel = "≡"
        end

        local trimmed_tartalom = mw.text.trim(tartalom)
        -- Nemzetség detektálás: ha nincs benne szóköz, félkövér-dőlt
        local is_syn_genus = not trimmed_tartalom:find(" ") 
        
        local formalt_nev = taxonFormazo(trimmed_tartalom, is_syn_genus)
        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
        elseif szint == "4" then
            aktualis_sor = aktualis_sor .. " " .. elem
        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)

        -- 1-es szint: Nemzetség
        if szint == "1" then
            -- Rugalmasabb illesztés a nemzetségnévre
            local nemz = sor:match("^1%s+([^%s:]+)")
            local maradek = sor:match("::%s*(.*)$") or ""
            
            if nemz then
                if szuro == "" or nemz == szuro then
                    isVisible = true
                    counter = counter + 1
                    
                    local nemz_link = "[[Kategória:" .. nemz .. "|'''''" .. nemz .. "''''']]"
                    table.insert(rows, "|-\n| " .. counter .. "\n| " .. nemz_link .. "\n| " .. formazSzinonimak(maradek))
                else
                    isVisible = false
                end
            end

        -- 2-es szint: Faj
        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)
                local faj_link = "[[" .. tiszta_fajnev .. "|''" .. tiszta_fajnev .. "'']]"
                table.insert(rows, "|-\n| " .. counter .. "\n| " .. faj_link .. "\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