Test3: Unterschied zwischen den Versionen
Aus Bohnenwiki
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
(4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 4: | Zeile 4: | ||
local span_Nr = nil | local span_Nr = nil | ||
local span_Thema = {{{Thema}}} | local span_Thema = {{{Thema}}} | ||
local span_Moderator = | local span_Moderator = {{{Moderator}}} | ||
local span_Gaeste = 234 | local span_Gaeste = 234 | ||
local span_Zuschauer = nil | local span_Zuschauer = nil | ||
Zeile 10: | Zeile 10: | ||
local span_Datum = nil | local span_Datum = nil | ||
span_zahl = 0 | |||
if span_Nr == nil | if span_Nr == nil | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
elseif span_Nr == | elseif span_Nr == {{{Nr}}} | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
else | else | ||
Zeile 23: | Zeile 23: | ||
if span_Thema == nil | if span_Thema == nil | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
elseif span_Thema == | elseif span_Thema == {{{Thema}}} | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
else | else | ||
Zeile 31: | Zeile 31: | ||
if span_Moderator == nil | if span_Moderator == nil | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
elseif span_Moderator == | elseif span_Moderator == {{{Moderator}}} | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
else | else | ||
Zeile 39: | Zeile 39: | ||
if span_Gaeste == nil | if span_Gaeste == nil | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
elseif span_Gaeste == | elseif span_Gaeste == {{{Gaeste}}} | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
else | else | ||
Zeile 47: | Zeile 47: | ||
if span_Zuschauer == nil | if span_Zuschauer == nil | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
elseif span_Zuschauer == | elseif span_Zuschauer == {{{Zuschauer}}} | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
else | else | ||
Zeile 55: | Zeile 55: | ||
if span_VOD == nil | if span_VOD == nil | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
elseif span_VOD == | elseif span_VOD == {{{VOD}}} | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
else | else | ||
Zeile 63: | Zeile 63: | ||
if span_Datum == nil | if span_Datum == nil | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
elseif span_Datum == | elseif span_Datum == {{{Datum}}} | ||
then span_zahl = span_zahl | then span_zahl = span_zahl | ||
else | else |
Aktuelle Version vom 17. Juli 2015, 12:46 Uhr
Die Dokumentation für dieses Modul kann unter Modul:Test3/Doku erstellt werden
Folge = {}
function Folge.Linie(frame)
local span_Nr = nil
local span_Thema = {{{Thema}}}
local span_Moderator = {{{Moderator}}}
local span_Gaeste = 234
local span_Zuschauer = nil
local span_VOD = 2214
local span_Datum = nil
span_zahl = 0
if span_Nr == nil
then span_zahl = span_zahl
elseif span_Nr == {{{Nr}}}
then span_zahl = span_zahl
else
span_zahl = span_zahl + 1
end
if span_Thema == nil
then span_zahl = span_zahl
elseif span_Thema == {{{Thema}}}
then span_zahl = span_zahl
else
span_zahl = span_zahl + 1
end
if span_Moderator == nil
then span_zahl = span_zahl
elseif span_Moderator == {{{Moderator}}}
then span_zahl = span_zahl
else
span_zahl = span_zahl + 1
end
if span_Gaeste == nil
then span_zahl = span_zahl
elseif span_Gaeste == {{{Gaeste}}}
then span_zahl = span_zahl
else
span_zahl = span_zahl + 1
end
if span_Zuschauer == nil
then span_zahl = span_zahl
elseif span_Zuschauer == {{{Zuschauer}}}
then span_zahl = span_zahl
else
span_zahl = span_zahl + 1
end
if span_VOD == nil
then span_zahl = span_zahl
elseif span_VOD == {{{VOD}}}
then span_zahl = span_zahl
else
span_zahl = span_zahl + 1
end
if span_Datum == nil
then span_zahl = span_zahl
elseif span_Datum == {{{Datum}}}
then span_zahl = span_zahl
else
span_zahl = span_zahl + 1
end
return span_zahl
end
return Folge