All public logs
Combined display of all available logs of JoJo's Bizarre Encyclopedia - JoJo Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:51, 6 May 2023 Vish talk contribs created page Module:InterviewUtils (Created page with "local p = {} function p.parse(dateString) local year, month, day local yearOnlyPattern = '^(%d%d%d%d)$' local monthYearPattern = '^(%a+)%s(%d%d%d%d)$' local fullDatePattern = '^(%a+)%s(%d+),%s(%d%d%d%d)$' year = dateString:match(yearOnlyPattern) if not year then month, year = dateString:match(monthYearPattern) if not year then month, day, year = dateString:match(fullDatePattern) end end...")
- 23:24, 3 May 2023 Paisley Park talk contribs deleted page Module:InterviewUtils (content was: "local interviewUtils = {} local p = {} function interviewUtils.getInterviewsByCategory() local interviewListModule = require("Module:InterviewList") local interviewList = interviewListModule.list() mw.log("Interview list content: " .. mw.text.jsonEncode(interviewList)) local interviews = {} for i, interview in ipairs(interviewList) do mw.log("Processing int...", and the only contributor was "Vish" (talk))
- 01:20, 2 May 2023 Vish talk contribs created page Module:InterviewUtils (Created page with "local interviewUtils = {} function interviewUtils.getInterviewsByCategory(category) local query = { action = "query", list = "categorymembers", cmtitle = "Category:" .. category, cmlimit = 500, format = "json" } local response = mw.site.api(query) local interviews = {} for _, page in ipairs(response.query.categorymembers) do if page.ns == 7000 then table.insert(interviews, {title = page.ti...")