All public logs
From MoHA Wiki
Combined display of all available logs of MoHA Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 03:18, August 9, 2022 Moha talk contribs deleted page Template:Wikidata (content was: "<includeonly>{{safesubst:#invoke:Wd|main}}</includeonly><noinclude> {{Documentation}} </noinclude>")
- 03:18, August 9, 2022 Moha talk contribs deleted page Template:Uses Wikidata (content was: "{{Sister project | position = {{{position|}}} | project = data | text = This {{module other|module|template}} uses {{#if:{{{section|}}} | one or more Wikidata properties; see § {{{section}}} for details. | the Wikidata propert{{#if:{{{2|}}}|ies|y}}: {{#invoke:Uses Wikidata|usesProperty}} }}}}{{#switch:{{SUBPAGENAME}} |sandbox |testcases |doc= <!--no category--> |#default={{#ifeq:{{PAGENAME}} |Uses Wikidata ||{{module other |Category:Modul...")
- 03:18, August 9, 2022 Moha talk contribs deleted page Template:Columns-list (content was: "<includeonly>{{#if:{{{1|}}}|{{{{{|safesubst:}}}#invoke:Template wrapper|wrap|_template=div col|_alias-map=1:content|colwidth=30em}}}}</includeonly>{{#invoke:Check for unknown parameters|check|unknown={{main other|_VALUE_{{PAGENAME}}}}|preview=Page using Template:Columns-list with unknown parameter "_VALUE_"|ignoreblank=y| 1 | class | content | colwidth | gap | rules | small | style }}<noinclude> {{documentation}}...")
- 03:18, August 9, 2022 Moha talk contribs deleted page Template:Collapse top (content was: "<div style="margin-left:{{{indent|0}}}"><!-- NOTE: width renders incorrectly if added to main STYLE section --> {| <!-- Template:Collapse top --> class="mw-collapsible {{<includeonly>safesubst:</includeonly>#if:{{{expand|{{{collapse|}}}}}}||mw-collapsed}} {{{class|}}}" style="background: {{{bg1|transparent}}}; text-align: left; border: {{{border|1px}}} solid {{{b-color|Silver}}}; margin: 0.2em auto auto; width:{{<includeonly>safesubst:</includeonly>#if:{{{width|}}}|{{{width}}}|...")
- 03:18, August 9, 2022 Moha talk contribs deleted page Template:Collapse bottom (content was: "<includeonly>|}</div></includeonly><noinclude> {{Documentation|Template:Collapse top/doc}} <!-- PLEASE ADD THIS TEMPLATE'S CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --> </noinclude>")
- 03:18, August 9, 2022 Moha talk contribs deleted page Template:Clear (content was: "<div style="clear:{{{1|both}}};"></div><noinclude> {{documentation}} </noinclude>")
- 03:18, August 9, 2022 Moha talk contribs deleted page Template:Anchor (content was: "{{<includeonly>safesubst:</includeonly>#invoke:anchor|main}}<noinclude> {{Documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 03:17, August 9, 2022 Moha talk contribs deleted page Template:)) (content was: "}}<noinclude> {{documentation}} </noinclude>")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:Transclusion count (content was: "local p = {} function p.fetch(frame) local template = nil local return_value = nil -- Use demo parameter if it exists, otherswise use current template name local namespace = mw.title.getCurrentTitle().namespace if frame.args["demo"] and frame.args["demo"] ~= "" then template = frame.args["demo"] elseif namespace == 10 then -- Template namespace template = mw.title.getCurrentTitle().text elseif namespace == 828 then -- Module namespace template = (mw.site.namespac...")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:TableTools (content was: "------------------------------------------------------------------------------------ -- 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....")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:TNT (content was: "-- -- INTRO: (!!! DO NOT RENAME THIS PAGE !!!) -- This module allows any template or module to be copy/pasted between -- wikis without any translation changes. All translation text is stored -- in the global Data:*.tab pages on Commons, and used everywhere. -- -- SEE: https://www.mediawiki.org/wiki/Multilingual_Templates_and_Modules -- -- ATTENTION: -- Please do NOT rename this module - it has to be identical on all wikis. -- This code is maintained at http...")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:String (content was: "--[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. Global options ignore_errors: If set to 'true' or 1, any error conditio...")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:Protection banner/config (content was: "-- This module provides configuration data for Module:Protection banner. return { -------------------------------------------------------------------------------- -- -- BANNER DATA -- -------------------------------------------------------------------------------- --[[ -- Banner data consists of six fields: -- * text - the main protection text that appears at the top of protection -- banners. -- * explanation - the text that appears below...")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:Protection banner (content was: "-- This module implements {{pp-meta}} and its daughter templates such as -- {{pp-dispute}}, {{pp-vandalism}} and {{pp-sock}}. -- Initialise necessary modules. require('Module:No globals') local makeFileLink = require('Module:File link')._main local effectiveProtectionLevel = require('Module:Effective protection level')._main local effectiveProtectionExpiry = require('Module:Effective protection expiry')._main local yesno = require('Module:Yesno') -- Lazily initialise modules...")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:Lua banner (content was: "-- 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) local m...")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:List (content was: "-- This module outputs different kinds of lists. At the moment, bulleted, -- unbulleted, horizontal, ordered, and horizontal ordered lists are supported. 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) --...")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:High-use (content was: "local p = {} -- _fetch looks at the "demo" argument. local _fetch = require('Module:Transclusion_count').fetch local yesno = require('Module:Yesno') function p.num(frame, count) if count == nil then if yesno(frame.args['fetch']) == false then if (frame.args[1] or '') ~= '' then count = tonumber(frame.args[1]) end else count = _fetch(frame) end end -- Build output string local return_value = "" if count == nil then if frame.args[1] == "risk" then return...")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:Hatnote/styles.css (content was: "{{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; }")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:Hatnote/doc (content was: "{{used in system|in MediaWiki:Wantedpages-summary}} {{module rating|protected}} {{Lua|Module:Yesno|Module:Arguments}} {{Uses TemplateStyles|Module:Hatnote/styles.css}} This is a meta-module that provides various functions for making hatnotes. It implements the {{tl|hatnote}} template, for use in hatnotes at the top of pages, and the {{tl|format link}} template, which is used to format a wikilink for use in hatnotes. It also contains a number of helper...")
- 03:16, August 9, 2022 Moha talk contribs deleted page Module:File link (content was: "-- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "type error in '%s' pa...")
- 03:15, August 9, 2022 Moha talk contribs deleted page Module:Effective protection level (content was: "local p = {} -- Returns the permission required to perform a given action on a given title. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview' then local level = mw....")
- 03:15, August 9, 2022 Moha talk contribs deleted page Module:Effective protection expiry (content was: "local p = {} -- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview'...")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Uses TemplateStyles (content was: "<includeonly>{{#invoke:Uses TemplateStyles|main}}</includeonly><noinclude> {{Uses TemplateStyles|Template:Uses TemplateStyles/example.css|nocat=true}} {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Used in system (content was: "{{#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>")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Tl (content was: "#REDIRECT Template:Template link {{Redirect category shell| {{R from move}} }}")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Template link (content was: "{{[[Template:{{{1}}}|{{{1}}}]]}}<noinclude>{{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Tag (content was: "<code class="{{#ifeq:{{{wrap|}}}|yes|wrap|nowrap}}" style="{{#ifeq:{{{style|}}}|plain|border:none;background:transparent;|{{{style|}}}}}"><!-- Opening tag -->{{#switch:{{{2|pair}}} |c|close = |e|empty|s|single|v|void |o|open |p|pair = <{{#if:{{{link|}}}|tag}}}|{{{1|tag}}}|{{{1|tag}}}}}{{#if:{{{params|{{{attribs|}}}}}}| {{{params|{{{attribs}}}}}}}} }}<!-- Content between tags -->{{#switch:{{{2|pair}}} |c|close = {{{content|}}} |e|empty...")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Sandbox other (content was: "{{#if:{{#ifeq:{{#invoke:String|sublength|s={{SUBPAGENAME}}|i=0|len=7}}|sandbox|1}}{{#ifeq:{{SUBPAGENAME}}|doc|1}}{{#invoke:String|match|{{PAGENAME}}|/sandbox/styles.css$|plain=false|nomatch=}}|{{{1|}}}|{{{2|}}}}}<!-- --><noinclude>{{documentation}}</noinclude>")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Ombox (content was: "{{#invoke:Message box|ombox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Module rating (content was: "<includeonly>{{#ifeq:{{SUBPAGENAME}}|doc|<!--do not show protection level of the module on the doc page, use the second and optionally third parameter if the doc page is also protected -->{{#if:{{{2|}}}|{{Pp|{{{2}}}|action={{{3|}}}}}}}|{{Module other|{{ombox | type = notice | image = {{#switch: {{{1|}}} | pre-alpha | prealpha | pa = 40x40px|link=|alt=Pre-alpha | alpha | a = File:Alpha lowercase.svg|...")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Module other (content was: "{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:Module}} | module | other }} }} | module = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch--><noinclude> {{documentation}} <!-- Add categories to the /doc subpage, not here! --> </noinclude>")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Lua (content was: "<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{Lua|Module:Lua banner}} {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Hatnote (content was: "<includeonly>{{#invoke:Hatnote|hatnote}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 03:15, August 9, 2022 Moha talk contribs deleted page Template:Code (content was: "{{#tag:syntaxhighlight|{{{code|{{{1}}}}}}|lang={{{lang|{{{2|text}}}}}}|class={{{class|}}}|id={{{id|}}}|style={{{style|}}}|inline=1}}<noinclude> {{documentation}} <!-- Add categories to the /doc subpage, interwikis to Wikidata, not here --> </noinclude>")
- 03:14, August 9, 2022 Moha talk contribs deleted page Template:Clc (content was: "#REDIRECT Template:Category link with count")
- 03:14, August 9, 2022 Moha talk contribs deleted page Template:Category link with count (content was: "[[:Category:{{#invoke:string|replace|1={{{1}}}|2=^:?[Cc]ategory:|3=|plain=false}}|<!-- -->{{#if:{{{name|}}}|{{{name}}}|Category:{{#invoke:string|replace|1={{{1}}}|2=^:?[Cc]ategory:|3=|plain=false}}}}<!-- -->]] ({{PAGESINCATEGORY:{{#invoke:string|replace|1={{{1}}}|2=^:?[Cc]ategory:|3=|plain=false}}|{{{2|all}}}}})<noinclude> {{Documentation}} </noinclude>")
- 03:14, August 9, 2022 Moha talk contribs deleted page Module:No globals (content was: "local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('Tried to read nil global ' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('Tried to write global ' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)")
- 03:14, August 9, 2022 Moha talk contribs deleted page Module:Message box/tmbox.css (content was: "{{pp|small=y}}: .tmbox { margin: 4px 0; border-collapse: collapse; border: 1px solid #c0c090; Default "notice" gray-brown: background-color: #f8eaba; box-sizing: border-box; } For the "small=yes" option.: .tmbox.mbox-small { font-size: 88%; line-height: 1.25em; } .tmbox-speedy { border: 2px solid #b32424; Red: background-color: #fee7e6; Pink: } .tmbox-delete { border: 2px solid #b32424; Red: } .tmbox-content { border: 2px...")
- 03:14, August 9, 2022 Moha talk contribs deleted page Module:Message box/ombox.css (content was: "{{pp|small=y}}: .ombox { margin: 4px 0; border-collapse: collapse; border: 1px solid #a2a9b1; Default "notice" gray: background-color: #f8f9fa; box-sizing: border-box; } For the "small=yes" option.: .ombox.mbox-small { font-size: 88%; line-height: 1.25em; } .ombox-speedy { border: 2px solid #b32424; Red: background-color: #fee7e6; Pink: } .ombox-delete { border: 2px solid #b32424; Red: } .ombox-content { border: 1px solid...")
- 03:14, August 9, 2022 Moha talk contribs deleted page Module:Message box/configuration (content was: "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-speedy',...")
- 03:14, August 9, 2022 Moha talk contribs deleted page Module:Documentation/styles.css (content was: "{{pp|small=yes}}: .documentation, .documentation-metadata { border: 1px solid #a2a9b1; background-color: #ecfcf4; clear: both; } .documentation { margin: 1em 0 0 0; padding: 1em; } .documentation-metadata { margin: 0.2em 0; same margin left-right as .documentation: font-style: italic; padding: 0.4em 1em; same padding left-right as .documentation: } .documentation-startbox { padding-bottom: 3px; border-bottom: 1px solid #aaa; margin-bottom: 1ex...")
- 03:14, August 9, 2022 Moha talk contribs deleted page Module:Documentation/config (content was: "---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. ----------------------------------------------------------------------------------------...")
- 03:14, August 9, 2022 Moha talk contribs deleted page Module:Documentation (content was: "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in the p -- table for testing purposes. ---...")
- 03:14, August 9, 2022 Moha talk contribs deleted page Module:Citation/doc (content was: "{{Mbox | type = style | image = 40px|alt=|link= | text = '''{{FULLPAGENAME}}''' is retained for historical and structural reasons; consider using Module:Citation/CS1. }} {{oldtfdfull|date= 2018 May 13 |result=Blank |disc=Module:Citation}} Development of Lua support for both {{cs1}} and {{cs2}} began at '''Module:Citation'''. That development was abandoned in 2013 as development of Module:Citation/CS1 began. Though this module rema...")
- 03:14, August 9, 2022 Moha talk contribs deleted page Template:Tmbox (content was: "{{#invoke:Message box|tmbox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 03:14, August 9, 2022 Moha talk contribs deleted page Template:Oldtfdfull (content was: "#REDIRECT Template:Old TfD {{XFDcloser standard installation}}")
- 03:14, August 9, 2022 Moha talk contribs deleted page Template:Old TfD (content was: "{{ {{{|safesubst:}}}#invoke:Unsubst||$B={{Tmbox | small = {{{small|}}} | image = {{#ifeq:{{{small|}}}|yes|30x20|50x40}}px | style = text-align:center | text = This {{#switch:{{{demospace|{{NAMESPACE}}}}} | {{ns:Category_talk}} = category | {{ns:Module_talk}} = module | template }} {{#if:{{{1|}}}|([[{{{1}}}]])}} was considered for {{#if:{{{merge|}}}|merging|deletion}}{{#if:{{{merge|}}}|{{#ifeq:{{{merg...")
- 03:14, August 9, 2022 Moha talk contribs deleted page Template:Mbox (content was: "{{#invoke:Message box|mbox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 03:13, August 9, 2022 Moha talk contribs deleted page Template:Date (content was: "{{safesubst:<noinclude/>#switch:none |{{safesubst:<noinclude/>#iferror: {{safesubst:<noinclude/>#time:Y_M_d|{{{1|}}} }} | none }} <noinclude><!-- #time: can't handle --></noinclude> |{{safesubst:<noinclude/>#iferror: {{safesubst:<noinclude/>#expr: {{{1|}}}+0 }} |<noinclude><!--not a pure number--></noinclude> |{{safesubst:<noinclude/>#ifexpr: {{{1|}}}+0 > 10000000000000 |<noinclude><!-- a yyyymmddhhmmss timestamp --></noinclude> |{{safesubst:<noinclude/>...")
- 03:13, August 9, 2022 Moha talk contribs deleted page Template:Cs2 (content was: "Citation Style 2<noinclude> Category:Documentation assistance templates </noinclude>")