19.866
Bearbeitungen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 39: | Zeile 39: | ||
local attr = a.attr | local attr = a.attr | ||
local val = a.val | local val = a.val | ||
-- Sonderbehandlung Beruf | |||
if attr == "Beruf" then | if attr == "Beruf" then | ||
table.insert(line, ber.berufePageLinkListe(val, ",")) | table.insert(line, ber.berufePageLinkListe(val, ",")) | ||
-- Sonderbehandlung Datum | |||
elseif attr == "Geburtsdatum" or attr == "Todesdatum" then | elseif attr == "Geburtsdatum" or attr == "Todesdatum" then | ||
val = lfd.formatDate(val) | val = lfd.formatDate(val) | ||
| Zeile 50: | Zeile 52: | ||
table.insert(line, val) | table.insert(line, val) | ||
end | end | ||
elseif attr == "GeburtsdatumISO" or attr == "TodesdatumISO" then | elseif attr == "GeburtsdatumISO" or attr == "TodesdatumISO" then -- ignorieren (leer) | ||
-- alle sonstigen Standard-Attribute | |||
else | else | ||
table.insert(line, val) | table.insert(line, val) | ||