All public logs
From SoftDiamond Wiki
Jump to navigationJump to search
Combined display of all available logs of SoftDiamond Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:22, 22 February 2023 SoftDiamond talk contribs deleted page Module:No globals (content was: "local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then -- perf optimization here and below: do not load Module:TNT unless there is an error error(require('Module:TNT').format('I18n/No globals', 'err-read', tostring(k)), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error(require('Module:TNT').format('I18n/No globals', 'err-write', tostring(k)), 2) end rawset(t, k, v) end setmetatable(_G, mt)")
- 22:22, 22 February 2023 SoftDiamond talk contribs deleted page Module:Message box/cmbox.css (content was: "* * {{cmbox}} (category message box) styles * * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css * @revision 2021-07-15: table.cmbox { margin: 3px 10%; border-collapse: collapse; border: 1px solid #a2a9b1; Default "notice" blue: background-color: #dfe8ff; box-sizing: border-box; } An empty narrow cell: .cmbox td.mbox-empty-cell { border: none; padding: 0; width: 1px; } The message body cell(s): .cmbox th.mbox-text, .cmbox...")
- 22:22, 22 February 2023 SoftDiamond talk contribs deleted page Module:Message box/fmbox.css (content was: "Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes: th.mbox-text, td.mbox-text { The message body cell(s): padding: 0.25em 0.9em; 0.9em left/right: } td.mbox-image { The left image cell: padding: 2px 0 2px 0.9em; 0.9em left, 0px right: } td.mbox-imageright { The right image cell: padding: 2px 0.9em 2px 0; 0px left, 0.9em right: } Footer and header message box styles: table.fmbox {...")
- 22:21, 22 February 2023 SoftDiamond talk contribs deleted page Module:Message box/ombox.css (content was: "* * {{ombox}} (other pages message box) styles * * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css * @revision 2021-07-15: table.ombox { margin: 4px 10%; border-collapse: collapse; Default "notice" gray: border: 1px solid #a2a9b1; background-color: #f8f9fa; box-sizing: border-box; } An empty narrow cell: .ombox td.mbox-empty-cell { border: none; padding: 0; width: 1px; } The message body cell(s): .ombox th.mbox-text, .om...")
- 22:21, 22 February 2023 SoftDiamond talk contribs deleted page Module:Message box/imbox.css (content was: "* * {{imbox}} (image message box) styles * * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css * @revision 2021-07-15: table.imbox { margin: 4px 10%; border-collapse: collapse; Default "notice" blue: border: 3px solid #36c; background-color: #fbfbfb; box-sizing: border-box; } For imboxes inside imbox-text cells.: .imbox .mbox-text .imbox { 0.9 - 0.5 = 0.4em left/right.: margin: 0 -0.5em; /* Fix for webkit to force 10...")
- 22:21, 22 February 2023 SoftDiamond talk contribs deleted page Module:Message box (content was: "-- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Load necessary modules. require('strict') local getArgs local yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -- Define constants local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox',...")
- 22:21, 22 February 2023 SoftDiamond talk contribs deleted page Module:Message box/ambox.css (content was: "* * {{ambox}} (article message box) styles * * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css * @revision 2021-07-15: table.ambox { 10% = Will not overlap with other elements: margin: 0 10%; border: 1px solid #a2a9b1; Default "notice" blue: border-left: 10px solid #36c; background-color: #fbfbfb; box-sizing: border-box; } Single border between stacked boxes.: table.ambox + table.ambox, table.ambox + link + table.ambox, tab...")
- 22:20, 22 February 2023 SoftDiamond 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...")
- 22:20, 22 February 2023 SoftDiamond 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....")
- 22:20, 22 February 2023 SoftDiamond 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) --...")
- 22:20, 22 February 2023 SoftDiamond talk contribs deleted page Module:Yesno (content was: "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val == 'true...")
- 22:20, 22 February 2023 SoftDiamond talk contribs deleted page Module:Uses TemplateStyles/config (content was: "local cfg = {} -- Don’t touch this line. -- Subpage blacklist: these subpages will not be categorized (except for the -- error category, which is always added if there is an error). -- For example “Template:Foo/doc” matches the `doc = true` rule, so it will have -- no categories. “Template:Foo” and “Template:Foo/documentation” match no rules, -- so they *will* have categories. All rules should be in the -- ['<subpage name>'] = true, -- format. cfg['subpage_blac...")
- 22:20, 22 February 2023 SoftDiamond talk contribs deleted page Module:Uses TemplateStyles (content was: "-- This module implements the {{Uses TemplateStyles}} template. local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') local TNT = require('Module:TNT') local p = {} local function format(msg, ...) -- Content sourced from commons:Data:I18n/Uses TemplateStyles.tab return TNT.format('I18n/Uses TemplateStyles', msg, ...) end local function getConfig() re...")
- 22:20, 22 February 2023 SoftDiamond talk contribs deleted page Template:Uses TemplateStyles (content was: "<onlyinclude><includeonly>{{#invoke:Uses TemplateStyles|main}}</includeonly></onlyinclude> {{Uses TemplateStyles|Template:Uses TemplateStyles/example.css|nocat=true}} {{documentation}}")
- 22:20, 22 February 2023 SoftDiamond talk contribs deleted page Template:Documentation (content was: "<noinclude> <languages/> </noinclude><includeonly>{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}</includeonly><noinclude> {{documentation|content= {{Lua|Module:Documentation}} <translate><!--T:12--> This template automatically displays a documentation box like the one you are seeing now, of which the content is sometimes transcluded from another page.</translate> <translate><!--T:13--> It is intended for pages which are <tvar name=1>Speci...")
- 22:20, 22 February 2023 SoftDiamond talk contribs deleted page Template:Flatlist (content was: "<onlyinclude><templatestyles src="Template:Flatlist/styles.css"/><div class="hlist {{{class|}}}" {{#if:{{{style|}}}{{{indent|}}}|style="{{#if:{{{indent|}}}|margin-left: {{#expr:{{{indent}}}*1.6}}em;}} {{{style|}}}"}}>{{#if:{{{1|}}}| {{{1}}} </div>}}</onlyinclude></div> {{Documentation}}")
- 22:19, 22 February 2023 SoftDiamond talk contribs deleted page Template:Plainlist (content was: "<templatestyles src="Plainlist/styles.css"/><div class="plainlist {{{class|}}}">{{#if:{{{1|}}}| {{{1}}} </div>}}<noinclude></div> {{documentation}} </noinclude>")
- 22:19, 22 February 2023 SoftDiamond talk contribs deleted page Template:Navbox/doc (content was: "{{documentation subpage}} {{lua|Module:Navbox}} {{High-risk}} This template allows a navigational template to be set up relatively quickly by supplying it one or more lists of links. It comes equipped with default styles that should work for most navigational templates. Changing the default styles is not recommended, but is possible. Using this template, or one of its "Navbox suite" sister templates, is highly recommended for standardization of navigationa...")
- 22:19, 22 February 2023 SoftDiamond talk contribs deleted page Template:Navbox (content was: "<includeonly>{{#invoke:Navbox|navbox}}</includeonly><noinclude> {{Documentation}} </noinclude>")
- 22:19, 22 February 2023 SoftDiamond talk contribs deleted page Module:Navbox/doc (content was: "{{Uses TemplateStyles|Module:Navbox/styles.css|Template:Flatlist/styles.css|Template:Plainlist/styles.css}} See Template:Navbox")
- 22:19, 22 February 2023 SoftDiamond talk contribs deleted page Template:Plainlist/styles.css (content was: "* * Unbulleted lists: .plainlist ul { line-height: inherit; list-style: none none; margin: 0; } .plainlist ul li { margin-bottom: 0; }")
- 22:19, 22 February 2023 SoftDiamond talk contribs deleted page Template:Flatlist/styles.css (content was: "* * Style for horizontal lists (separator following item). * @source https://www.mediawiki.org/wiki/Snippets/Horizontal_lists * @revision 9 (2016-08-10) * @author User:Edokter: .hlist dl, .hlist ol, .hlist ul { margin: 0; padding: 0; } Display list items inline: .hlist dd, .hlist dt, .hlist li { don't trust the note that says margin doesn't work with inline * removing margin: 0 makes dds have margins again: margin: 0; display: inline; } /* Displa...")
- 22:19, 22 February 2023 SoftDiamond talk contribs deleted page Module:Navbox/styles.css (content was: ".navbox { border: 1px solid #aaa; box-sizing: border-box; width: 100%; margin: auto; clear: both; font-size: 88%; text-align: center; padding: 1px; } .navbox-inner, .navbox-subgroup { width: 100%; } .navbox + .navbox-styles + .navbox { Single pixel border between adjacent navboxes: margin-top: -1px; } .navbox th, .navbox-title, .navbox-abovebelow { text-align: center; Title and above/below styles: padding-left: 1em; padding-right: 1em; } th.navbox-g...")
- 22:19, 22 February 2023 SoftDiamond talk contribs deleted page Module:Navbox (content was: "-- -- This module implements {{Navbox}} -- local p = {} local navbar = require('Module:Navbar')._navbar local getArgs -- lazily initialized local args local border local listnums local ODD_EVEN_MARKER = '\127_ODDEVEN_\127' local RESTART_MARKER = '\127_ODDEVEN0_\127' local REGEX_MARKER = '\127_ODDEVEN(%d?)_\127' local function striped(wikitext) -- Return wikitext with markers replaced for odd/even striping. -- Child (subgroup) navboxes are flagged with a category that is r...")
- 22:06, 22 February 2023 SoftDiamond talk contribs imported Module:Documentation/doc by file upload (1 revision)
- 22:04, 22 February 2023 SoftDiamond talk contribs imported Module:Documentation by file upload (1 revision)
- 22:03, 22 February 2023 SoftDiamond talk contribs imported Module:Message box by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:Message box/configuration by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:No globals by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:Message box/cmbox.css by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:Message box/fmbox.css by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:Message box/ombox.css by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:Message box/imbox.css by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:Message box/ambox.css by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:TNT by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:TableTools by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:List by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:Yesno by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:Uses TemplateStyles/config by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Module:Uses TemplateStyles by file upload (1 revision)
- 22:02, 22 February 2023 SoftDiamond talk contribs imported Template:Uses TemplateStyles by file upload (1 revision)
- 21:55, 22 February 2023 SoftDiamond talk contribs imported Template:Documentation by file upload (1 revision)
- 21:55, 22 February 2023 SoftDiamond talk contribs imported Template:Flatlist by file upload (1 revision)
- 21:55, 22 February 2023 SoftDiamond talk contribs imported Template:Plainlist by file upload (1 revision)
- 21:55, 22 February 2023 SoftDiamond talk contribs imported Template:Navbox/doc by file upload (1 revision)
- 21:55, 22 February 2023 SoftDiamond talk contribs imported Template:Navbox by file upload (1 revision)
- 21:55, 22 February 2023 SoftDiamond talk contribs imported Module:Navbox/doc by file upload (1 revision)
- 21:55, 22 February 2023 SoftDiamond talk contribs imported Template:Plainlist/styles.css by file upload (1 revision)
- 21:55, 22 February 2023 SoftDiamond talk contribs imported Template:Flatlist/styles.css by file upload (1 revision)
- 21:55, 22 February 2023 SoftDiamond talk contribs imported Module:Navbox/styles.css by file upload (1 revision)