Zuletzt bearbeitet vor 3 Tagen
von Xineohp1506

Modul:Publikation/Serie: Unterschied zwischen den Versionen

Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
 
Zeile 2: Zeile 2:


function serie.render(frame)
function serie.render(frame)
    -- Versuche, die Argumente abzurufen
     local args = frame:getParent().args  -- Abrufen der Vorlagenparameter
     local args = frame:getParent().args  -- Abruf der Vorlagenargumente
     local output = '<table class="publikation serie">'
     local output = "<pre>Debugging-Informationen:\n"


     -- Prüfen, ob `args` überhaupt Werte enthält
     -- Titel
     if not args then
    local title = args["Titel"] or "Unbekannt"
         return output .. "Keine Argumente übergeben.</pre>"
    output = output .. '<tr><td><strong>Titel</strong></td><td>[[Hat Titel::' .. title .. ']]</td></tr>'
 
    -- Autor(en)
    if args["Autor"] then
        output = output .. '<tr><td><strong>Autor(en)</strong></td><td>'
        for author in mw.text.gsplit(args["Autor"], ",") do
            output = output .. '[[Hat Autor::' .. mw.text.trim(author) .. ']], '
        end
        output = output:sub(1, -3) .. '</td></tr>' -- Entfernt das letzte Komma
    end
 
    -- Complete volumes
    if args["Complete volumes"] then
        output = output .. '<tr><td><strong>Complete volumes</strong></td><td>[[Complete volumes::' .. args["Complete volumes"] .. ']]</td></tr>'
    end
 
    -- Serienbeschreibung
     if args["Hat SerienBeschreibung"] then
         output = output .. '<tr><td><strong>Beschreibung</strong></td><td>[[Hat SerienBeschreibung::' .. args["Hat SerienBeschreibung"] .. ']]</td></tr>'
     end
     end


     -- Durchlaufe alle Argumente und gib sie aus
     -- Datensatz-IDs
     for k, v in pairs(args) do
     if args["Bücher"] then
        output = output .. k .. ": " .. tostring(v) .. "\n"
        output = output .. '<tr><td><strong>Bücher (Datensatz-ID)</strong></td><td>'
        for id in mw.text.gsplit(args["Bücher"], ",") do
            output = output .. '[[Hat Datensatz ID::' .. mw.text.trim(id) .. ']], '
        end
        output = output:sub(1, -3) .. '</td></tr>' -- Entfernt das letzte Komma
     end
     end


     return output .. "</pre>"
     output = output .. '</table>'
    return output
end
end


return serie
return serie

Aktuelle Version vom 20. November 2024, 00:07 Uhr

Die Dokumentation für dieses Modul kann unter Modul:Publikation/Serie/Doku erstellt werden

local serie = {}

function serie.render(frame)
    local args = frame:getParent().args  -- Abrufen der Vorlagenparameter
    local output = '<table class="publikation serie">'

    -- Titel
    local title = args["Titel"] or "Unbekannt"
    output = output .. '<tr><td><strong>Titel</strong></td><td>[[Hat Titel::' .. title .. ']]</td></tr>'

    -- Autor(en)
    if args["Autor"] then
        output = output .. '<tr><td><strong>Autor(en)</strong></td><td>'
        for author in mw.text.gsplit(args["Autor"], ",") do
            output = output .. '[[Hat Autor::' .. mw.text.trim(author) .. ']], '
        end
        output = output:sub(1, -3) .. '</td></tr>' -- Entfernt das letzte Komma
    end

    -- Complete volumes
    if args["Complete volumes"] then
        output = output .. '<tr><td><strong>Complete volumes</strong></td><td>[[Complete volumes::' .. args["Complete volumes"] .. ']]</td></tr>'
    end

    -- Serienbeschreibung
    if args["Hat SerienBeschreibung"] then
        output = output .. '<tr><td><strong>Beschreibung</strong></td><td>[[Hat SerienBeschreibung::' .. args["Hat SerienBeschreibung"] .. ']]</td></tr>'
    end

    -- Datensatz-IDs
    if args["Bücher"] then
        output = output .. '<tr><td><strong>Bücher (Datensatz-ID)</strong></td><td>'
        for id in mw.text.gsplit(args["Bücher"], ",") do
            output = output .. '[[Hat Datensatz ID::' .. mw.text.trim(id) .. ']], '
        end
        output = output:sub(1, -3) .. '</td></tr>' -- Entfernt das letzte Komma
    end

    output = output .. '</table>'
    return output
end

return serie