Prijeđi na sadržaj

Historija: Modul:Archive list/test

Razlika pomoću verzija: označite kružiće pored dviju verzija za usporedbu i pritisnite enter ili dugme na dnu.
Objašnjenje: (tren) = usporedba s aktualnom verzijom, (razl) = usporedba s prethodnom verzijom, m = manja izmjena.

10. septembra 2023.

  • trenrazl 19:2010. septembra 2023. u 19:20 ImStevan razgovor doprinosi 10.686 bajtova +10.686 Nova stranica: -- This module implements {{archive list}} in Lua, and adds a few -- new features. -- Process a numeric argument to make sure it is a positive -- integer. local function processNumArg( num ) if num then num = tonumber( num ) if type( num ) == 'number' then num = math.floor( num ) if num >= 0 then return num end end end return nil end -- Checks whether a page exists, going through pcall -…