Module:Highest archive number
Appearance
मॉड्यूल बिबरनलेख[बनाईं]
You might want to बनाईं a documentation page for this Scribunto module. संपादक लोग एह मॉड्यूल के अभ्यासपन्ना (सैंडबाक्स) (बनाईं | मिरर करीं) आ टेस्टकेस (बनाईं) पन्ना पर अभ्यास भा प्रयोग (टेस्टिंग) क सकत बाटे। अनुरोध बा कि अगर श्रेणी जोड़े के होखे तब /doc उपपन्ना (सबपेज) पर जोड़ल जाय। एह मॉड्यूल के उपपन्ना (सबपेज) देखीं। |
-- This module finds the highest existing archive number for a set of talk
-- archive pages.
local p = {}
local function pageExists(page)
local success, exists = pcall(function()
return mw.title.new(page).exists
end)
return success and exists
end
local function midPoint(lower, upper)
return math.floor(lower + (upper - lower) / 2)
end
local function findHighestArchive(prefix, i, lower, upper)
if i < 1 then
return nil
elseif pageExists(prefix .. tostring(i)) then
lower = i
if upper and i + 1 == upper then
return i
elseif upper then
i = midPoint(lower, upper)
else
i = i * 2
end
return findHighestArchive(prefix, i, lower, upper)
else
upper = i
lower = lower or 0
i = midPoint(lower, upper)
return findHighestArchive(prefix, i, lower, upper)
end
end
function p._main(prefix)
if type(prefix) ~= 'string' or not prefix:find('%S') then
error('no prefix supplied to [[Module:Highest archive number]]', 2)
end
return findHighestArchive(prefix, 10)
end
function p.main(frame)
local args = require('Module:Arguments').getArgs(frame, {
trim = false,
removeBlanks = false,
wrappers = 'टेम्पलेट:Highest archive number'
})
local prefix = args[1]
return p._main(prefix)
end
return p