打开主菜单
首页
随机
登录
设置
关于iFx Wiki
免责声明
iFx Wiki
搜索
更改
←上一编辑
模块:首页
(查看源代码)
2021年4月2日 (五) 13:51的版本
添加529字节
、
2021年4月2日 (五) 13:51
无编辑摘要
第14行:
第14行:
for i, t in ipairs(pages) do
for i, t in ipairs(pages) do
ul:tag("li"):wikitext("[[" .. t .. "]]")
ul:tag("li"):wikitext("[[" .. t .. "]]")
+
end
+
return ul:done()
+
end
+
+
function p.latest_flat_list(frame)
+
local user_query = frame.args.query
+
local query = user_query .. [[
+
|limit=20
+
|offset=0
+
|sort=Modification date
+
|order=desc
+
]]
+
local pages = smw.query_pages(query)
+
local ul = mw.html.create()
+
local first = true
+
for i, t in ipairs(pages) do
+
if first then
+
first = false
+
else
+
ul:wikitext(", ")
+
end
+
ul:tag("span"):wikitext("[[" .. t .. "]]")
end
end
return ul:done()
return ul:done()
VIFF
IFEXEditor、
行政员
、
评论管理员
、
界面管理员
、
管理员(语义MediaWiki)
、
监护人(语义MediaWiki)
、
管理员
1,370
个编辑