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ó
(9 közbenső módosítás ugyanattól a felhasználótól nincs mutatva)
1. sor: 1. sor:
local p = {}
local p = {}


-- Segédfüggvény a szimbólumokhoz
-- Szupergyors tisztító: csak sima string műveleteket használ
local function formazSzinonimak(szoveg)
local function gyorsTisztitas(szoveg)
     if not szoveg or szoveg == "" then return "" end
     if not szoveg or szoveg == "" then return "" end
     local tiszta = mw.ustring.gsub(szoveg, "[đ÷]", "")
     -- Eltávolítjuk a speciális bájtokat, amik a đ, ÷, ¤ jeleket alkotják
    tiszta = mw.ustring.gsub(tiszta, "¤+", "")
     -- đ = \196\145, ÷ = \195\183, ¤ = \194\164
     tiszta = mw.ustring.gsub(tiszta, ">−", "−")
     local tiszta = szoveg:gsub("\196\145", ""):gsub("\195\183", ""):gsub("\194\164", "")
    tiszta = mw.ustring.gsub(tiszta, ">≡", "≡")
     tiszta = tiszta:gsub(">%-", "−"):gsub(">≡", "≡"):gsub(">=", "=")
     tiszta = mw.ustring.gsub(tiszta, ">=", "=")
     return tiszta
    tiszta = mw.ustring.gsub(tiszta, "≡≡", "|≡")
    tiszta = mw.ustring.gsub(tiszta, "==", "|=")
     tiszta = mw.ustring.gsub(tiszta, "−−", "|−")
    tiszta = mw.ustring.gsub(tiszta, "%-%-", "|−")
 
    local lista_elemek = {}
    local reszek = mw.text.split(tiszta, "|", true)
    for _, resz in ipairs(reszek) do
        local tiszta_resz = mw.text.trim(resz)
        if tiszta_resz ~= "" then
            local formazott = "''" .. tiszta_resz .. "''"
            formazott = formazott:gsub("≡", "''''"):gsub("=", "''=''"):gsub("−", "''−''")
            formazott = formazott:gsub("Type:", "''Type:''"):gsub("var%.", "''var.''"):gsub("subsp%.", "''subsp.''"):gsub("f%.", "''f.''")
            formazott = formazott:gsub("''''", "")
            table.insert(lista_elemek, "<li>" .. formazott .. "</li>")
        end
    end
     return #lista_elemek > 0 and ('<ul style="margin-left: 1.1em; list-style-type: disc; padding: 0; margin: 0;">' .. table.concat(lista_elemek) .. "</ul>") or ""
end
end


function p.tablazat(frame)
function p.tablazat(frame)
    -- Paraméter átvétele a sablonból vagy közvetlen hívásból
     local args = frame:getParent().args
     local args = frame.args
     local szuro = args[1] and mw.text.trim(args[1]) or ""
     if args[1] == nil or args[1] == "" then
   
         args = frame:getParent().args
    if szuro == "" then
         return "<div style='color:red;'>Hiba: Adj meg egy nemzetséget!</div>"
     end
     end
    local szuroNemzettseg = args[1] ~= "" and args[1] or nil


     local status, adatModul = pcall(require, 'Modul:CactaceaeTaxonokData')
     local status, dataModul = pcall(require, 'Modul:CactaceaeTaxonokData')
     if not status then return "Hiba: Adatmodul nem található!" end
     if not status then return "Hiba: Adatmodul hiányzik." end
     local nyers_adat = adatModul.getAdatok()
     local nyers = dataModul.getAdatok()


     local res = '{| class="wikitable sortable datatable-hook stripe hover compact" data-page-length="50" style="width:100%; font-size:90%;"\n'
     local rows = {}
    res = res .. "! # !! Taxonnév !! Típusfaj, szinonima\n"
    local counter = 0
    local isVisible = false
   
    -- Soronkénti feldolgozás bájtszinten (ez a leggyorsabb)
    for sor in nyers:gmatch("[^\r\n]+") do
        local b1 = sor:byte(1)
       
        -- ß karakter (195 159)
        if b1 == 195 and sor:byte(2) == 159 then
            if sor:find(szuro, 1, true) then
                local nemz = sor:match("ß%s*([^:]+)")
                if nemz and mw.text.trim(nemz):gsub("\194\164", "") == szuro then
                    isVisible = true
                    counter = counter + 1
                    local tip = sor:match("::%s*(.+)") or ""
                    table.insert(rows, {counter, "'''[[:Kategória:"..szuro.."|"..szuro.."]]'''", tip})
                else isVisible = false end
            else isVisible = false end
           
        -- Ł karakter (197 129)
        elseif isVisible and b1 == 197 and sor:byte(2) == 129 then
            local t, sz = sor:match("Ł%s*([^¤]+)¤¤¤(.*)")
            if t then
                counter = counter + 1
                table.insert(rows, {counter, "''[["..mw.text.trim(t).."]]''", sz})
            end
        end
        if counter >= 1000 then break end
    end


     local sorszam = 0
     if #rows == 0 then return "Nincs találat: " .. szuro end
    local jelenlegiNemzettseg = ""
    local megjelenit = true


     for sor in mw.ustring.gmatch(nyers_adat, "[^\r\n]+") do
     -- TÁBLÁZAT ÖSSZEÁLLÍTÁSA (Csak itt formázunk, hogy spóroljunk a CPU-val)
        local taxon_link = ""
    local finalRows = {}
    for i, data in ipairs(rows) do
         local szinonimak = ""
         local szinonimak = ""
         local tiszta_nev = ""
         if data[3] ~= "" then
 
            local t = gyorsTisztitas(data[3])
        if mw.ustring.match(sor, "^ß") then
             local lista = {}
             local nemz, tip = mw.ustring.match(sor, "^ß%s*([^:]+)::%s*(.+)")
            -- Egyszerű darabolás
            if nemz then
            for r in t:gmatch("[^|≡=−]+") do
                 tiszta_nev = mw.text.trim(nemz):gsub("¤+", "")
                 local tr = mw.text.trim(r)
                 jelenlegiNemzettseg = tiszta_nev
                 if tr ~= "" and tr ~= "''" then
                taxon_link = "'''[[:Kategória:" .. tiszta_nev .. "|" .. tiszta_nev .. "]]'''"
                    table.insert(lista, "<li>''" .. tr .. "''</li>")
                 szinonimak = tip
                 end
                -- Ha van szűrő, csak akkor jelenítjük meg, ha egyezik
                megjelenit = (not szuroNemzettseg or szuroNemzettseg == jelenlegiNemzettseg)
             end
             end
        elseif mw.ustring.match(sor, "^Ł") then
            if #lista > 0 then
            local tiszta_sor = mw.ustring.gsub(sor, "^Ł%s*", "")
                szinonimak = '<ul style="margin-left:1.1em; list-style-type:disc; padding:0; margin:0;">' .. table.concat(lista) .. "</ul>"
            local t, sz = mw.ustring.match(tiszta_sor, "([^¤]+)¤¤¤(.*)")
            if t then
                tiszta_nev = mw.text.trim(t)
                taxon_link = "''[[" .. tiszta_nev .. "]]''"
                szinonimak = sz
                -- Faj megjelenítése csak ha a szűrőnek megfelelő nemzetségben vagyunk
                megjelenit = (not szuroNemzettseg or szuroNemzettseg == jelenlegiNemzettseg)
             end
             end
         end
         end
 
         table.insert(finalRows, "|-\n| " .. data[1] .. "\n| " .. data[2] .. "\n| " .. szinonimak)
         if taxon_link ~= "" and megjelenit then
            sorszam = sorszam + 1
            res = res .. "|-\n| " .. sorszam .. "\n| " .. taxon_link .. "\n| " .. formazSzinonimak(szinonimak) .. "\n"
        end
     end
     end


     return frame:preprocess(res .. "|}")
    local head = '{| class="wikitable sortable datatable-hook stripe hover compact" style="width:100%; font-size:90%;"\n! # !! Taxonnév !! Típusfaj, szinonima\n'
     return frame:preprocess(head .. table.concat(finalRows, "\n") .. "\n|}")
end
end


return p
return p

A lap 2026. január 7., 10:36-kori változata

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

local p = {}

-- Szupergyors tisztító: csak sima string műveleteket használ
local function gyorsTisztitas(szoveg)
    if not szoveg or szoveg == "" then return "" end
    -- Eltávolítjuk a speciális bájtokat, amik a đ, ÷, ¤ jeleket alkotják
    -- đ = \196\145, ÷ = \195\183, ¤ = \194\164
    local tiszta = szoveg:gsub("\196\145", ""):gsub("\195\183", ""):gsub("\194\164", "")
    tiszta = tiszta:gsub(">%-", "−"):gsub(">≡", "≡"):gsub(">=", "=")
    return tiszta
end

function p.tablazat(frame)
    local args = frame:getParent().args
    local szuro = args[1] and mw.text.trim(args[1]) or ""
    
    if szuro == "" then
        return "<div style='color:red;'>Hiba: Adj meg egy nemzetséget!</div>"
    end

    local status, dataModul = pcall(require, 'Modul:CactaceaeTaxonokData')
    if not status then return "Hiba: Adatmodul hiányzik." end
    local nyers = dataModul.getAdatok()

    local rows = {}
    local counter = 0
    local isVisible = false
    
    -- Soronkénti feldolgozás bájtszinten (ez a leggyorsabb)
    for sor in nyers:gmatch("[^\r\n]+") do
        local b1 = sor:byte(1)
        
        -- ß karakter (195 159)
        if b1 == 195 and sor:byte(2) == 159 then
            if sor:find(szuro, 1, true) then
                local nemz = sor:match("ß%s*([^:]+)")
                if nemz and mw.text.trim(nemz):gsub("\194\164", "") == szuro then
                    isVisible = true
                    counter = counter + 1
                    local tip = sor:match("::%s*(.+)") or ""
                    table.insert(rows, {counter, "'''[[:Kategória:"..szuro.."|"..szuro.."]]'''", tip})
                else isVisible = false end
            else isVisible = false end
            
        -- Ł karakter (197 129)
        elseif isVisible and b1 == 197 and sor:byte(2) == 129 then
            local t, sz = sor:match("Ł%s*([^¤]+)¤¤¤(.*)")
            if t then
                counter = counter + 1
                table.insert(rows, {counter, "''[["..mw.text.trim(t).."]]''", sz})
            end
        end
        if counter >= 1000 then break end
    end

    if #rows == 0 then return "Nincs találat: " .. szuro end

    -- TÁBLÁZAT ÖSSZEÁLLÍTÁSA (Csak itt formázunk, hogy spóroljunk a CPU-val)
    local finalRows = {}
    for i, data in ipairs(rows) do
        local szinonimak = ""
        if data[3] ~= "" then
            local t = gyorsTisztitas(data[3])
            local lista = {}
            -- Egyszerű darabolás
            for r in t:gmatch("[^|≡=−]+") do
                local tr = mw.text.trim(r)
                if tr ~= "" and tr ~= "''" then
                    table.insert(lista, "<li>''" .. tr .. "''</li>")
                end
            end
            if #lista > 0 then
                szinonimak = '<ul style="margin-left:1.1em; list-style-type:disc; padding:0; margin:0;">' .. table.concat(lista) .. "</ul>"
            end
        end
        table.insert(finalRows, "|-\n| " .. data[1] .. "\n| " .. data[2] .. "\n| " .. szinonimak)
    end

    local head = '{| class="wikitable sortable datatable-hook stripe hover compact" style="width:100%; font-size:90%;"\n! # !! Taxonnév !! Típusfaj, szinonima\n'
    return frame:preprocess(head .. table.concat(finalRows, "\n") .. "\n|}")
end

return p