All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Path of Exile 2 Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 19:06, 28 January 2025 KnowledgeJunkie talk contribs created page Relics (Redirected page to Relic) Tag: New redirect
- 19:06, 28 January 2025 KnowledgeJunkie talk contribs created page Charms (Redirected page to Charm) Tag: New redirect
- 02:32, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Hatnote list/doc (Created page with "{{Documentation subpage}} {{Lua|Module:Arguments|Module:Hatnote|Module:Format link}} {{Adapted from Wikipedia|Module:Hatnote list}} {{Documentation categories| <!-- Categories and interwikis go here. --> Category:Modules }}")
- 02:30, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Wikitext Parsing/doc (Created page with "{{Documentation subpage}} {{Adapted from Wikipedia|Module:Wikitext Parsing}} {{Documentation categories| <!-- Categories and interwikis go here. --> Category:Modules }}")
- 02:28, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Disambiguation/doc (Created page with "{{Documentation subpage}} {{Lua|Module:Redirect}} {{Adapted from Wikipedia|Module:Disambiguation}} {{Documentation categories| <!-- Categories and interwikis go here. --> Category:Modules }}")
- 02:24, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Disambiguation (Created page with "local p = {} local mRedirect = require('Module:Redirect') local disambiguationTemplates = mw.loadData('Module:Disambiguation/templates') local function capitalize(s) -- This function only works on ASCII strings. If your wiki has -- disambiguation templates that use Unicode strings, use the commented-out -- line instead. Enwiki uses ASCII string manipulation only here to improve -- performance. return s:sub(1, 1):upper() .. s:sub(2, -1) -- return mw.ustring.upper(m...")
- 02:23, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Pagetype/doc (Created page with "{{Documentation subpage}} {{Lua|Module:Yesno|Module:Arguments|Module:Disambiguation|Module:Namespace detect|Module:Pagetype/config|}} {{Adapted from Wikipedia|Module:Pagetype}} {{Documentation categories| <!-- Categories and interwikis go here. --> Category:Modules }}")
- 02:17, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Format link/doc (Created page with "{{Documentation subpage}} {{Lua|Module:Yesno|Module:Arguments|Module:Error}} {{Adapted from Wikipedia|Module:Format link}} {{Documentation categories| <!-- Categories and interwikis go here. --> Category:Modules }}")
- 02:16, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Hatnote/doc (Created page with "{{Documentation subpage}} {{Lua|Module:Yesno|Module:Arguments|Module:Format link}} {{Adapted from Wikipedia|Module:Hatnote}} {{Documentation categories| <!-- Categories and interwikis go here. --> }}")
- 02:12, 27 January 2025 KnowledgeJunkie talk contribs created page Module:About/doc (Created page with "{{Documentation subpage}} {{Lua|Module:Hatnote|Module:Hatnote list}} {{Adapted from Wikipedia|Module:About}} {{Documentation categories| <!-- Categories and interwikis go here. --> }}")
- 02:05, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Pagetype/disambiguation (Created page with "-- This page contains a table of all disambiguation templates and their -- redirects. Templates names are capitalized, and the Template: prefix is -- removed. Templates are grouped with the main template first, followed by -- its redirects. -- As of 1/26/25, none of these are implemented in PoE2Wiki return { ["Disambiguation"] = true, ["Begriffsklärung"] = true, ["DAB"] = true, ["Dab"] = true, ["Dab page"] = true, ["Dabpage"] = true, ["Dbig"] = true, ["Dis"] =...")
- 02:03, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Pagetype/setindex (Created page with "-- This page contains a table of all set index templates and their -- redirects. Templates names are capitalized, and the Template: prefix is -- removed. Templates are grouped with the main template first, followed by -- its redirects. -- As of 1/26/25, none of these are implemented in PoE2Wiki return { ["Set index article"] = true, ["Sia"] = true, ["Set index"] = true, ["SIA"] = true, ["Set-index"] = true, ["Setindex"] = true, ["Set-index article"] = true,...")
- 01:59, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Hatnote/styles.css (Created page with "{{pp|small=y}}: .hatnote { font-style: italic; } Limit structure CSS to divs because of Module:Hatnote inline: div.hatnote { @noflip: padding-left: 1.6em; margin-bottom: 0.5em; } .hatnote i { font-style: normal; } The templatestyles element inserts a link element before hatnotes. * TODO: Remove link if/when WMF resolves T200206: .hatnote + link + .hatnote { margin-top: -0.5em; } @media print { body.ns-0 .hatnote { display: none !impo...")
- 01:58, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Pagetype/rfd (Created page with "-- This page contains a table of all RfD templates and their -- redirects. Templates names are capitalized, and the Template: prefix is -- removed. Templates are grouped with the main template first, followed by -- its redirects. -- As of 1/26/25, none of these are implemented in PoE2Wiki return { -- Template forms (these should be substituted so we should rarely see these) ["Redirect for discussion"] = true, ["RFD"] = true, ["RfD"] = true, ["Rfd1"] = true, ["...")
- 01:57, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Pagetype/softredirect (Created page with "-- This page contains a table of all soft redirect templates and their -- redirects. Templates names are capitalized, and the Template: prefix is -- removed. Templates are grouped with the main template first, followed by -- its redirects. -- As of 1/26/25, none of these are implemented in PoE2Wiki return { ["R from category navigation"] = true, ["Redirect from category navigation"] = true, ["Category redirect"] = true, ["Cat move"] = true, ["Cat red"] = true, ["...")
- 01:50, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Wikitext Parsing (Created page with "require("strict") --Helper functions local function startswith(text, subtext) return string.sub(text, 1, #subtext) == subtext end local function endswith(text, subtext) return string.sub(text, -#subtext, -1) == subtext end local function allcases(s) return s:gsub("%a", function(c) return "["..c:upper()..c:lower().."]" end) end local trimcache = {} local whitespace = {[" "]=1, ["\n"]=1, ["\t"]=1, ["\r"]=1} local function cheaptrim(str) --mw.text.trim is surprising...")
- 01:42, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Pagetype/config (Created page with "-------------------------------------------------------------------------------- -- Module:Pagetype configuration data -- -- This page holds localisation and configuration data for Module:Pagetype. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. -------------------------------------------------------------------------------- -- St...")
- 01:41, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Pagetype (Created page with "-------------------------------------------------------------------------------- -- -- -- This meta-module which automatically detects namespaces, and allows -- -- for a great deal of customisation. It can easily be ported to other -- -- wikis by changing the values in the Module:Pagetype/config. -- --...")
- 01:40, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Format link (Created page with "-------------------------------------------------------------------------------- -- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the {{format link}} template. -------------------------------------------------------------------------------- local libraryUtil = require(...")
- 01:39, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Hatnote list (Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote list -- -- -- -- This module produces and formats lists for use in hatnotes. In particular, -- -- it implements the for-see list, i.e. lists of "For X, see Y" statements, -- -- as used in {{about}}, {{redirect}}, and their variants. Also introd...")
- 01:38, 27 January 2025 KnowledgeJunkie talk contribs created page Module:Hatnote (Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules....")
- 01:36, 27 January 2025 KnowledgeJunkie talk contribs created page Module:About (Created page with "local mArguments --initialize lazily local mHatnote = require('Module:Hatnote') local mHatList = require('Module:Hatnote list') local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local p = {} function p.about (frame) -- A passthrough that gets args from the frame and all mArguments = require('Module:Arguments') args = mArguments.getArgs(frame) return p._about(args) end function p._about (args, options) -- Produces "about" hatnote....")
- 01:28, 27 January 2025 KnowledgeJunkie talk contribs created page Combo (Created page with "REDIRECT: Melee#Combo")
- 15:01, 20 January 2025 KnowledgeJunkie talk contribs created page Traps (Redirected page to Trap) Tag: New redirect
- 14:42, 20 January 2025 KnowledgeJunkie talk contribs created page Action speed (Creation of page, {{Sister}})
- 21:55, 16 January 2025 KnowledgeJunkie talk contribs created page Category:Proposed merges (Creation of page, {{Sister}})
- 18:45, 16 January 2025 KnowledgeJunkie talk contribs created page Module:Protect/doc (Creation of page, {{Sister}})
- 18:44, 16 January 2025 KnowledgeJunkie talk contribs created page Module:Protect (Created page with "local function processResult(options, success, ...) if not success then local message = tostring(... or '(no message)') if options.removeLocation then message = string.gsub(message, '^Module:[^:]+:%d+: ', '', 1) end return string.format(options.errFormat, message) end return ... end local function protect(func, errFormat, options) if type(errFormat) == 'table' then options = options or errFormat errFormat = nil end options = mw.clone(options) or {}...")
- 18:43, 16 January 2025 KnowledgeJunkie talk contribs created page Module:Template invocation/doc (Creation of page, {{Sister}})
- 18:42, 16 January 2025 KnowledgeJunkie talk contribs created page Module:Template invocation (Created page with "-- This module processes configuration data for use in -- Module:Template test case. It is loaded from the main module with -- mw.loadData. local cfg = require('Module:Template test case/config') local function escapePattern(s) s = s:gsub('%p', '%%%0') return s end -- Escape config items that need to be used as patterns. Doing it here is more -- efficient, as mw.loadData saves them from having to be computed for every -- test case on a page. cfg.templateNameMagi...")
- 18:41, 16 January 2025 KnowledgeJunkie talk contribs created page Module:Template test case/data (Created page with "-- This module processes configuration data for use in -- Module:Template test case. It is loaded from the main module with -- mw.loadData. local cfg = require('Module:Template test case/config') local function escapePattern(s) s = s:gsub('%p', '%%%0') return s end -- Escape config items that need to be used as patterns. Doing it here is more -- efficient, as mw.loadData saves them from having to be computed for every -- test case on a page. cfg.templateNameMagi...")
- 18:40, 16 January 2025 KnowledgeJunkie talk contribs created page Module:Template test case/config (Created page with "------------------------------------------------------------------------------- -- Module:Template test case/config -- This module holds configuration data for Module:Template test case. ------------------------------------------------------------------------------- return { ------------------------------------------------------------------------------- -- Options ------------------------------------------------------------------------------- --...")
- 18:39, 16 January 2025 KnowledgeJunkie talk contribs created page Module:Template test case/doc (Creation of page, {{Sister}})
- 18:38, 16 January 2025 KnowledgeJunkie talk contribs created page Module:Template test case (Created page with "--[[ A module for generating test case templates. This module incorporates code from the English Wikipedia's "Testcase table" module,[1] written by Frietjes [2] with contributions by Mr. Stradivarius [3] and Jackmcbarn,[4] and the English Wikipedia's "Testcase rows" module,[5] written by Mr. Stradivarius. The "Testcase table" and "Testcase rows" modules are released under the CC BY-SA 3.0 License [6] and the GFDL.[7] License: CC BY-SA 3.0 and t...")
- 18:37, 16 January 2025 KnowledgeJunkie talk contribs created page Template:Test case/doc (Creation of page, {{Sister}})
- 18:36, 16 January 2025 KnowledgeJunkie talk contribs created page Template:Test case (Created page with "<includeonly>{{#invoke:Template test case|main}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
- 18:09, 16 January 2025 KnowledgeJunkie talk contribs created page Template:Pagelist/doc (Creation of page, {{Sister}})
- 18:09, 16 January 2025 KnowledgeJunkie talk contribs created page Template:Pagelist (Creation of page)
- 18:06, 16 January 2025 KnowledgeJunkie talk contribs created page Template:Merge to/testcases (Checking propsed template updates)
- 17:58, 16 January 2025 KnowledgeJunkie talk contribs created page Module:Unsubst/doc (Creation of page, {{Sister}})
- 17:57, 16 January 2025 KnowledgeJunkie talk contribs created page Module:Unsubst (Creation of page)
- 17:54, 16 January 2025 KnowledgeJunkie talk contribs created page Template:Merge to/sandbox (Testing updated source from Wikipedia)
- 15:51, 9 January 2025 KnowledgeJunkie talk contribs created page Template:Yesno-no (Created page with "{{safesubst:<noinclude />yesno|{{{1}}}|yes={{{yes|yes}}}|no={{{no|no}}}|blank={{{blank|no}}}|¬={{{¬|no}}}|def={{{def|no}}}}}<noinclude> {{Documentation|Template:Yesno/doc}} <!--Categories go in the doc page referenced above; interwikis go in Wikidata.--> </noinclude>")
- 16:27, 8 January 2025 KnowledgeJunkie talk contribs created page Template:Absolute page title/doc (Created page with "{{Documentation subpage}} {{Adapted from Wikipedia|Template:Absolute page title}} {{Documentation categories| <!-- Categories and interwikis go here. --> Category:Link formatting templates }}")
- 16:26, 8 January 2025 KnowledgeJunkie talk contribs created page Template:Absolute page title (Created page with "<includeonly>{{#ifeq:0|{{NAMESPACENUMBER:{{{2|{{FULLPAGENAME}}}}}}}|:{{{1}}}|:{{#rel2abs:{{{1}}}|{{{2|{{FULLPAGENAME}}}}}}}}}</includeonly><noinclude> {{Documentation}} </noinclude>")
- 16:20, 8 January 2025 KnowledgeJunkie talk contribs created page Template:Transcluded section/doc (Created page with "{{Documentation subpage}} {{Adapted from Wikipedia|Template:Transcluded section}} {{Documentation categories| <!-- Categories and interwikis go here. --> Category:Hatnote templates }}")
- 16:18, 8 January 2025 KnowledgeJunkie talk contribs created page Template:Transcluded section (Creation of page)
- 13:16, 6 January 2025 KnowledgeJunkie talk contribs created page Category:Pages with broken skill progression tables (Creation of page, {{Sister}})
- 13:06, 6 January 2025 KnowledgeJunkie talk contribs created page Category:Weapon added effects (Creation of page, {{Sister}})
- 13:04, 6 January 2025 KnowledgeJunkie talk contribs created page Category:Skill lists based on stats (Creation of page, {{Sister}})