Module:NPP backlog
This module retrieves the size of the backlog at new pages patrol at the start (UTC) of a given day. It uses the data compiled by User:MusikBot at Wikipedia:New pages patrol/Backlog chart/daily.
Note that the data is limited to the last c. 6 months.
Usage
Number of articles in the backlog on date (YYYY-MM-DD format):
{{#invoke:NPP backlog|articles|date}}
Difference between N and the articles backlog on date:
{{#invoke:NPP backlog|diff|N|date}}
If there is no data for date, the module will attempt to estimate by working backwards to the first date with data available. By default, this estimation assumes a one-day difference is being calculated. If not, specify a delta value in days:
{{#invoke:NPP backlog|diff|N|date|delta}}
See also
local modtime = require('Module:Time').time
local data = mw.loadJsonData("Wikipedia:New pages patrol/Backlog chart/daily")
local backlog = { }
for k,v in ipairs(data) do
backlog[v["date"]] = v["value"]
end
local function parseDate(date)
local ymd = {}
for i in string.gmatch(date, "[0-9]+") do
table.insert(ymd, i)
end
ymd = { year = ymd[1], month = ymd[2], day = ymd[3] }
return os.time(ymd)
end
local p = {};
function p._articles(date)
return backlog[date] or 0
end
function p.articles(frame)
local templateArgs = frame.args
local date = templateArgs[1] or os.date("%Y-%m-%d")
return p._articles(date)
end
function p._diff(n1, date, delta)
local n2 = p._articles(date)
if n2 > 0 then
return n1 - n2
else
local date2 = date
local days = 0
while n2 == 0 do
date2 = os.date("%Y-%m-%d", parseDate(date2) - (60*60*24))
n2 = p._articles(date2)
days = days + 1
end
return math.floor( ((n1 - n2) / (days + delta)) * delta )
end
end
function p.diff(frame)
local templateArgs = frame.args
local n1 = templateArgs[1]
local date = templateArgs[2] or os.date("%Y-%m-%d")
local delta = templateArgs[3] or 1
return p._diff(n1, date, delta)
end
return p
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.