主要公开日志
更多操作
所有武外梗百科公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2025年11月30日 (日) 15:04 Zelda110 留言 贡献创建了页面Module:RecentPages (创建页面,内容为“-- Module:RecentPages local p = {} -- 获取最近创建或修改的页面 -- type: "new" = 最新创建, "changes" = 最近更改 -- limit: 显示条数 function p.list(frame) local args = frame.args local type = args.type or "new" local limit = tonumber(args.limit) or 8 local rcType = (type == "new") and "newpages" or "recentchanges" local list = mw.ext.recentchanges and mw.ext.recentchanges.getRecent(rcType, limit) or {} local htm…”)