Main public logs

Combined display of all available logs of Insurer Brain. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 10:59, 18 September 2025 Wikilah admin talk contribs created page Template:Used in system (Created page with "{{#invoke:High-use|main|1=|2={{{2|}}}|system={{#if:{{{1|}}}|{{{1}}}|in system messages}}<noinclude>|nocat=true</noinclude>}}<noinclude> {{documentation}}<!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>")
  • 10:59, 18 September 2025 Wikilah admin talk contribs created page Template:Tl (Created page with "<span class="nowrap">{{</span>[[Template:{{{1}}}|{{{1}}}]]<span class="nowrap">}}</span><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
  • 10:57, 18 September 2025 Wikilah admin talk contribs created page Template:Ombox (Created page with "{{#invoke:Message box|ombox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
  • 10:57, 18 September 2025 Wikilah admin talk contribs created page Module:Namespace detect (Created page with "--[[ -------------------------------------------------------------------------------- -- -- -- NAMESPACE DETECT -- -- -- -- This module implements the {{namespace detect}} template in Lua, with a -- -- few improvements: all namespaces and all namespace aliases are...")
  • 10:56, 18 September 2025 Wikilah admin talk contribs created page Template:Namespace detect (Created page with "{{SAFESUBST:<noinclude />#invoke:Namespace detect|main}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
  • 10:55, 18 September 2025 Wikilah admin talk contribs created page Module:Error (Created page with "-- This module implements {{error}}. local p = {} function p._error(args) local tag = mw.ustring.lower(tostring(args.tag)) -- Work out what html tag we should use. if not (tag == 'p' or tag == 'span' or tag == 'div') then tag = 'strong' end -- Generate the html. return tostring(mw.html.create(tag) :addClass('error') :cssText(args.style) :wikitext(tostring(args.message or args[1] or error('no message specified',...")
  • 10:55, 18 September 2025 Wikilah admin talk contribs created page Template:Error (Created page with "{{#invoke:Error|error|{{{message|{{{1}}}}}}|tag={{{tag|}}}}}<noinclude> {{documentation}} </noinclude>")
  • 10:54, 18 September 2025 Wikilah admin talk contribs created page Module:If preview/styles.css (Created page with "{{pp|small=yes}}: .preview-warning { font-style: italic; @noflip: padding-left: 1.6em; margin-bottom: 0.5em; color: var(--color-error, red); } The templatestyles element inserts a link element before hatnotes. * TODO: Remove link if/when WMF resolves T200206: .preview-warning + link + .preview-warning { margin-top: -0.5em; }")
  • 10:53, 18 September 2025 Wikilah admin talk contribs created page Module:If preview/configuration (Created page with "--We perform the actual check for whether this is a preview here since preprocessing is relatively expensive. local frame = mw.getCurrentFrame() local function is_preview() local revision_id = frame:preprocess('{{REVISIONID}}') -- {{REVISIONID}} is usually the empty string when previewed. -- I don't know why we're checking for nil but hey, maybe someday things -- would have broken return revision_id == nil or revision_id == '' end local function templatestyl...")
  • 10:52, 18 September 2025 Wikilah admin talk contribs created page Module:If preview (Created page with "local p = {} local getArgs = require("Module:Arguments").getArgs local yn = require("Module:Yesno") local cfg = mw.loadData('Module:If preview/configuration') --main This function returns either the first argument or second argument passed to this module, depending on whether the page is being previewed. function p.main(frame) local args = getArgs(frame) if cfg.preview then return args[1] or '' else return args[2] or '' end end --[[ pmain This function...")
  • 10:52, 18 September 2025 Wikilah admin talk contribs created page Template:If preview (Created page with "<onlyinclude>{{safesubst:<noinclude/>#invoke:If preview|pmain}}</onlyinclude><!-- -->{{documentation}}")
  • 10:51, 18 September 2025 Wikilah admin talk contribs created page Template:Template rating (Created page with "<noinclude>{{pp-template|small=yes}}</noinclude><includeonly>{{#if:{{{1|}}}<!-- Escape empty required first unnamed parameter -->|{{#switch:{{Namespace detect|template=t|module=m|demospace={{{demospace|}}}}} |m = <!-- ***** IF IN MODULE NAMESPACE ***** -->{{ombox | type = notice | image = {{#switch: {{lc:{{{1|}}}}} | pre-alpha | prealpha | pa | experimental = 40x40px|link=|alt= | alpha | a...")
  • 10:51, 18 September 2025 Wikilah admin talk contribs created page Template:Module rating (Created page with "<noinclude>{{pp-template|small=yes}}</noinclude><includeonly>{{#if:{{{1|}}}<!-- Escape empty required first unnamed parameter -->|{{#switch:{{Namespace detect|template=t|module=m|demospace={{{demospace|}}}}} |m = <!-- ***** IF IN MODULE NAMESPACE ***** -->{{ombox | type = notice | image = {{#switch: {{lc:{{{1|}}}}} | pre-alpha | prealpha | pa | experimental = 40x40px|link=|alt= | alpha | a...")
  • 10:49, 18 September 2025 Wikilah admin talk contribs created page Module:TableTools (Created page with "------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be called from other Lua modules, and should not -- -- be called directly from #invoke....")
  • 10:49, 18 September 2025 Wikilah admin talk contribs created page Module:List (Created page with "local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] = true, ['ordered'] = true, ['horizontal_ordered'] = true } function p.makeListData(listType, args) -- Constructs a data table to be passed to p.renderList. local data = {} -- Classes and TemplateStyles data.classes = {} data.templatestyles = ''...")
  • 10:48, 18 September 2025 Wikilah admin talk contribs created page Module:Lua banner (Created page with "-- This module implements the {{lua}} template. local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') local p = {} function p.main(frame) local origArgs = frame:getParent().args local args = {} for k, v in pairs(origArgs) do v = v:match('^%s*(.-)%s*$') if v ~= '' then args[k] = v end end return p._main(args) end function p._main(args)...")
  • 10:47, 18 September 2025 Wikilah admin talk contribs created page Template:Lua (Created page with "<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{Lua|Module:Lua banner}} {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
  • 10:39, 18 September 2025 Wikilah admin talk contribs created page Extension:External Data (Created page with "<languages/> {{External Data navigation}} {{Extension |status = stable |type1 = parser function |type2 = special |author = Yaron Koren, Alexander Mashin <translate><!--T:91--> and others</translate> |image = |version = 3.4 |update = {{ym|2025|7}} |mediawiki = 1.39.4+ |compatibility policy = master |download = <translate><!--T:92--> See {{<tvar name=1>ll|Extension:External Data/Download an...")
  • 10:09, 18 September 2025 Wikilah admin talk contribs created page MediaWiki:Common.js (Created page with "Any JavaScript here will be loaded for all users on every page load.: /** * Keep code in MediaWiki:Common.js to a minimum as it is unconditionally * loaded for all users on every wiki page. If possible create a gadget that is * enabled by default instead of adding it here (since gadgets are fully * optimized ResourceLoader modules with possibility to add dependencies etc.) * * Since Common.js isn't a gadget, there is no place to declare its * dependencies, so...")
  • 10:07, 18 September 2025 Wikilah admin talk contribs created page MediaWiki:Common.css (Created page with "CSS placed here will be applied to all skins: * This is the CSS common to all desktop skins on en.Wikipedia. * Styling inside .mw-parser-output should generally use TemplateStyles.: Reset italic styling set by user agent: cite, dfn { font-style: inherit; } Straight quote marks for <q>: q { quotes: '"' '"' "'" "'"; } Avoid collision of blockquote with floating elements by swapping margin and padding: blockquote { overflow: hidden; margin:...")
  • 10:00, 18 September 2025 Wikilah admin 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...")
  • 09:59, 18 September 2025 Wikilah admin 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....")
  • 09:59, 18 September 2025 Wikilah admin 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(...")
  • 09:58, 18 September 2025 Wikilah admin 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...")
  • 09:57, 18 September 2025 Wikilah admin talk contribs created page Module:GetParameters (Created page with "local p = {} --[[ Helper function that populates the argument list given that user may need to use a mix of named and unnamed parameters. This is relevant because named parameters are not identical to unnamed parameters due to string trimming, and when dealing with strings we sometimes want to either preserve or remove that whitespace depending on the application. ]] function p.getParameters( frame_args, arg_list ) local new_args = {}; local index = 1; loca...")
  • 09:56, 18 September 2025 Wikilah admin talk contribs created page Module:String2 (Created page with "require ('strict'); local p = {} p.trim = function(frame) return mw.text.trim(frame.args[1] or "") end p.sentence = function (frame) -- {{lc:}} is strip-marker safe, string.lower is not. frame.args[1] = frame:callParserFunction('lc', frame.args[1]) return p.ucfirst(frame) end p.ucfirst = function (frame) local s = frame.args[1]; if not s or '' == s or s:match ('^%s+$') then -- when <s> is nil, empty, or only whitespace return s; -- abando...")
  • 09:55, 18 September 2025 Wikilah admin talk contribs created page Module:Plain text (Created page with "--converts text with wikilinks to plain text, e.g "gah is bar" to "gah is bar" --removes anything enclosed in tags that isn't nested, mediawiki strip markers (references etc), files, italic and bold markup requirestrict local p = {} function p.main(frame) local text = frame.args[1] local encode = require('Module:yesno')(frame.args.encode) return p._main(text, encode) end function p._main(text, encode) if not text then return end text = mw.text.kill...")
  • 09:55, 18 September 2025 Wikilah admin talk contribs created page Template:R/where (Created page with "<!-- Only for internal use: |plural=pages |singular=page |location=in-source-location |spacing=character -->{{#if:{{{plural|}}}|{{{plural|}}}{{#if:{{{singular|}}}|,{{{spacing|}}}[{{{singular|}}}]}}|{{{singular|}}}}}{{#if:{{{location|}}}|{{#if:{{{plural|}}}{{{singular|}}}|,{{{spacing|}}}}}{{{location|}}}}}<noinclude> {{documentation}} </noinclude>")
  • 09:54, 18 September 2025 Wikilah admin talk contribs created page Template:R/superscript (Created page with "<!-- Only for internal use: |wrap=n[o]/y[es]/f[orced] |leadin=value |prefix=value |pp=value |where=value |sup-where=value |quote-where=value |quote=value |language=value |translation=value |suffix=value -->{{#if:{{{where|}}}|<sup class="reference {{#switch:{{{wrap|}}}|f|forced=|no}}wrap">{{#if:{{{quote|}}}|{{{prefix|}}}}}<span title="<!--{{#invoke:String|replace|source={{#invoke:String|replace|source={{#invoke:String|replace|source=-->{{#invoke:DecodeEncode|encode|s={{#i...")
  • 09:54, 18 September 2025 Wikilah admin talk contribs created page Template:Rp (Created page with "{{#if:{{{needed|}}}|{{page needed|date={{{date|}}}|reason={{{reason|}}}}}|{{r/superscript |prefix={{#switch:{{{style|}}}|AMA|Ama|ama=(|: }} |suffix={{#switch:{{{style|}}}|AMA|Ama|ama=)| }} |pp={{#switch:{{{style|}}}|AMA|Ama|ama={{#if:{{{no-pp|{{{nopp|}}}}}}||{{#if:{{{pages|{{{pp|}}}}}}|pp|{{#if:{{{page|{{{p|}}}}}}|p}}}}}}}}<!-- p/pp is only used in superscript label, therefore it does not contain any qp params --> |leadin={{#switch:{{{quotation-pages|{{...")
  • 09:53, 18 September 2025 Wikilah admin talk contribs created page Module:Catalog lookup link (Created page with "--[[ |1=, |2=, |3=, |4=, |5=, |6=, |7=, |8=, |9=: Optional unnamed parameters for 0 to 9 items to be listed. Whitespace is trimmed off both ends and the strings are urlencoded as if they were query strings. |article-link=: Optional Wikipedia article name to link to. |article-name=: Optional alternative text to be displayed for |article-link= link in front of catalog link. If not specified, |article-link= is used for display as well. If both parameters are not specified...")
  • 09:52, 18 September 2025 Wikilah admin talk contribs created page Template:Catalog lookup link (Created page with "{{#invoke:Catalog lookup link|main}}<noinclude> {{documentation}} </noinclude>")
  • 09:52, 18 September 2025 Wikilah admin talk contribs created page Template:ProQuest (Created page with "{{Catalog lookup link|{{{1|}}}|{{{2|}}}|{{{3|}}}|{{{4|}}}|{{{5|}}}|{{{6|}}}|{{{7|}}}|{{{8|}}}|{{{9|}}}|article-link=ProQuest|article-name=ProQuest|link-prefix=https://www.proquest.com/docview/|list-leadout={{{leadout|}}}|url-access1={{{url-access1|{{{url-access|}}}}}}|url-access2={{{url-access2|}}}|url-access3={{{url-access3|}}}|url-access4={{{url-access4|}}}|url-access5={{{url-access5|}}}|url-access6={{{url-access6|}}}|url-access7={{{url-access7|}}}|url-access8={{{url-a...")
  • 09:51, 18 September 2025 Wikilah admin talk contribs created page Module:For (Created page with "local mArguments --initialize lazily local mHatlist = require('Module:Hatnote list') local mHatnote = require('Module:Hatnote') local yesNo = require('Module:Yesno') local p = {} --Implements {{For}} from the frame --uses capitalized "For" to avoid collision with Lua reserved word "for" function p.For (frame) mArguments = require('Module:Arguments') return p._For(mArguments.getArgs(frame)) end --Implements {{For}} but takes a manual arguments table function p._For (a...")
  • 09:50, 18 September 2025 Wikilah admin talk contribs created page Template:For (Created page with "<includeonly>{{#invoke:For|For}}</includeonly><noinclude> {{Documentation}} </noinclude>")
  • 09:49, 18 September 2025 Wikilah admin talk contribs created page Template:Pp-template (Created page with "<includeonly>{{#invoke:Protection banner|main}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
  • 09:49, 18 September 2025 Wikilah admin talk contribs created page Template:Fix/category (Created page with "<noinclude>{{pp-template|small=yes}}</noinclude>{{{cat|Category:All pages needing cleanup}}}{{#if:{{{cat-date|}}} |[[{{{cat-date}}} {{#if:{{{date|}}} |from {{{date}}} }}]]{{#if:{{{date|}}} |{{#ifexist:{{{cat-date}}} from {{{date}}}| |Category:Articles with invalid date parameter in template }} }} }}{{#if:{{{cat2|}}}|{{{cat2}}}}}{{#if:{{{cat-date2|}}} |[[{{{cat-date2}}} {{#if:{{{date|}}} |from {{{date}}} }}]]{{#if:{{{date|}}} |{{#ifex...")
  • 09:48, 18 September 2025 Wikilah admin talk contribs created page Template:Doi (Created page with "<includeonly>{{#invoke:CS1 identifiers|main|_template=doi}}</includeonly><noinclude> {{documentation}} </noinclude>")
  • 09:47, 18 September 2025 Wikilah admin talk contribs created page Module:DecodeEncode (Created page with "require('strict') local p = {} local function _getBoolean( boolean_str ) -- from: module:String; adapted -- requires an explicit true local boolean_value if type( boolean_str ) == 'string' then boolean_str = boolean_str:lower() if boolean_str == 'true' or boolean_str == 'yes' or boolean_str == '1' then boolean_value = true else boolean_value = false end elseif type( boolean_str ) == 'boolean' then boolean_value = boolean_str else boolean_value =...")
  • 09:46, 18 September 2025 Wikilah admin talk contribs created page Template:Category handler (Created page with "{{#invoke:Category handler|main}}<noinclude> {{documentation}} <!-- Add categories to the /doc subpage, and interwikis to Wikidata. --> </noinclude>")
  • 09:46, 18 September 2025 Wikilah admin talk contribs created page Template:Fix-span (Created page with "{{#if:{{{content|}}}|<span class="{{{span-class|cleanup-needed-content}}}" style="padding-left:0.1em; padding-right:0.1em; color:var(--color-subtle, #54595d); border:1px solid var(--border-color-subtle, #c8ccd1);">{{{content|}}}</span>}}{{#switch:{{{subst|¬}}} |¬={{category handler |template=Category:Templates needing substitution checking |nocat={{{nocat|<noinclude>true</noinclude>}}} }} |SUBST=Category:Pages with incorrectly substituted templates }}{{C...")
  • 09:45, 18 September 2025 Wikilah admin talk contribs created page Template:Clarify (Created page with "{{ safesubst:<noinclude/>#invoke:Unsubst||date=__DATE__ |$B= {{Fix-span |link=Wikipedia:Please clarify |text=clarification needed |title={{delink|{{{reason|The text near this tag may need clarification or removal of jargon.}}}}} |date={{{date|}}} |pre-text={{{pre-text|}}} |post-text={{{post-text|}}} |cat-date=Category:Wikipedia articles needing clarification |content={{{text|}}} }} }}<noinclude> {{documentation}} </noinclude>")
  • 09:44, 18 September 2025 Wikilah admin talk contribs created page Module:Delink (Created page with "-- This module de-links most wikitext. require("strict") local p = {} local getArgs local function delinkReversePipeTrick(s) if s:match("^%[%[|.*[|\n]") then -- Check for newlines or multiple pipes. return s end return s:match("%[%[|(.*)%]%]") end local function delinkPipeTrick(s) -- We need to deal with colons, brackets, and commas, per Help:Pipe trick. -- First, remove the text before the first colon, if any. if s:match(":") then s = s:match("%[%[.-...")
  • 09:44, 18 September 2025 Wikilah admin talk contribs created page Template:Delink (Created page with "{{<includeonly>safesubst:</includeonly>#invoke:delink|delink}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
  • 09:43, 18 September 2025 Wikilah admin talk contribs created page Template:Citation needed (Created page with "{{<includeonly>safesubst:</includeonly>#invoke:Unsubst||date=__DATE__ |$B= {{Fix |name = {{{name|Citation needed}}} |link = Wikipedia:Citation needed |text = citation needed |class = Template-Fact |title = {{{reason|This claim needs references to reliable sources.}}} |date = {{{date|}}} |cat = Category:All articles with unsourced statements |cat-date = Category:Articles with unsourced statements }}{{#invoke:Check for unknown paramet...")
  • 09:43, 18 September 2025 Wikilah admin talk contribs created page Template:' (Created page with "<span class="nowrap" style="padding-left:0.1em;">'</span><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
  • 09:42, 18 September 2025 Wikilah admin talk contribs created page Template:Fix (Created page with "{{#switch:{{{subst|¬}}} |¬={{#invoke:Category handler|main |template=Category:Templates needing substitution checking |nocat={{{nocat|<noinclude>true</noinclude>}}} }} |SUBST=Category:Pages with incorrectly substituted templates }}{{#invoke:Category handler|main |main={{Fix/category |cat-date={{{cat-date|}}} |cat={{{cat|}}} |cat-date2={{{cat-date2|}}} |cat2={{{cat2|}}} |cat-date3={{{cat-date3|}}} |cat3={{{cat3|}}} |date={{{date|}}}...")
  • 09:41, 18 September 2025 Wikilah admin talk contribs created page Template:Original research inline (Created page with "{{ safesubst:<noinclude/>#invoke:Unsubst||date=__DATE__ |$B= <!--{{OR}} begin-->{{Fix | subst = <includeonly>{{subst:substcheck}}</includeonly> | link = Wikipedia:No original research | title = The material near this tag {{#if:{{{certain|}}}||possibly}} contains original research. | text = original research{{ safesubst:<noinclude/>#if:{{{certain|}}}||?}} | date = {{{date|}}} | cat = Category:All articles that may contain original research | cat-date = Category:A...")
  • 09:28, 18 September 2025 Wikilah admin talk contribs created page Template:FULLROOTPAGENAME (Created page with "{{ safesubst:<noinclude/>#if: {{ safesubst:<noinclude/>Ns has subpages | {{ safesubst:<noinclude/>#if:{{{1|}}}|{{ safesubst:<noinclude/>NAMESPACE:{{{1}}}}}|{{ safesubst:<noinclude/>NAMESPACE}}}} }} | {{ safesubst:<noinclude/>#titleparts:{{ safesubst:<noinclude/>#if:{{{1|}}}|{{{1}}}|{{ safesubst:<noinclude/>FULLPAGENAME}}}}|1}} | {{ safesubst:<noinclude/>#if:{{{1|}}}|{{{1}}}|{{ safesubst:<noinclude/>FULLPAGENAME}}}} }}<noinclude> {{documentation}} </noinclude>")
  • 09:28, 18 September 2025 Wikilah admin talk contribs created page Template:Dated maintenance category (Created page with "<nowiki/><!--This nowiki helps to prevent whitespace at the top of articles-->{{#ifeq:{{FULLROOTPAGENAME}}|Wikipedia:Template messages|<!--Do not categorize-->|<!-- -->{{#ifexpr:{{#if:{{NAMESPACE}}|0|1}}+{{#ifeq:{{{onlyarticles|no}}}|yes|0|1}} |{{#if:{{{3|}}} |[[Category:{{{1}}} {{{2}}} {{{3}}}]]<!-- -->{{#ifexist:Category:{{{1}}} {{{2}}} {{{3}}} |<!-- -->|Category:Articles with invalid date parameter in template<!-- -->}} |Category:{{#if:{{{5|}}}...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)