Module:Dashboard entry
This module is used to generate summaries of noticeboards displayed on Wikipedia:Dashboard.
local p = {}
local plain = require("Module:Plain text")._main
function p.main(frame)
local page = frame.args[1]
local pipe = frame.args[2]
local content = mw.title.new(page):getContent()
-- Unfortunately, the bot that this is replacing uses "prop=sections", which isn't accessible to Lua.
-- Therefore, we have to parse the page manuallly
local sections = content:gmatch("\n== *([^=]+) *==")
local count = 0
local sect
-- copy array to table so it can be iterated in reverse
local secttable = {}
for sect in sections do
secttable[#secttable + 1] = sect
end
local plural, declutter
if #secttable < 3 then
declutter = "|class="
if #secttable == 1 then
plural = ""
else
plural = "s"
end
else
plural = "s"
declutter = ""
end
local output = string.format("{{Dashboard grouping%s|1='''[[%s|%s]]''' (%s thread%s)<div style='font-size:85%%; padding-left:1.5em;'>''Most recent:''",
declutter, page, pipe, #secttable, plural)
local count = 0
for i = #secttable, 1, -1 do
sect = frame:preprocess(secttable[i])
output = output .. string.format("\n* [[%s#%s|%s]]", page, mw.uri.anchorEncode(sect), plain(sect))
count = count + 1
if count == 3 then
output = output .. "\n</div>}}\n<div style=\"padding-left:3em;\">"
end
end
if count < 3 then
output = output .. "</div>}} {{end}}"
else
output = output .. "</div>\n{{end}}"
end
return frame:preprocess(output)
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.