User contributions for Dotclub
Appearance
27 May 2025
- 19:2919:29, 27 May 2025 diff hist +115 Book of Kings →Interpretations current
26 May 2025
- 01:1101:11, 26 May 2025 diff hist +4 Main Page →Recent updates
- 01:1101:11, 26 May 2025 diff hist +115 Main Page →Recent updates
- 00:4200:42, 26 May 2025 diff hist +60 Main Page →Recent updates
- 00:3800:38, 26 May 2025 diff hist +2,342 N Module:Navbox/styles.css Created page with "→{{pp|small=y}}: .navbox { box-sizing: border-box; border: 1px solid #a2a9b1; width: 100%; clear: both; font-size: 88%; text-align: center; padding: 1px; margin: 1em auto 0; →Prevent preceding content from clinging to navboxes: } .navbox .navbox { margin-top: 0; →No top margin for nested navboxes: } .navbox + .navbox, →TODO: remove first line after transclusions have updated: .navbox + .navbox-styles + .navbox { margin-top: -1px; /* Single pix..." current
- 00:3800:38, 26 May 2025 diff hist +1,323 N Module:Track listing/styles.css Created page with "→{{pp|small=y}}: .tracklist { border-spacing: 0; } →set on all rows we can set the total length row to transparent: .tracklist tr { background-color: var(--background-color-base, #fff); } .tracklist tr:nth-child(2n-1) { background-color: var(--background-color-neutral-subtle, #f8f9fa); } .tracklist caption { text-align: left; font-weight: bold; } .tracklist td, .tracklist th[scope="row"] { vertical-align: top; } .tracklist th[scope="col"] { text-align..." current
- 00:3700:37, 26 May 2025 diff hist +1,105 N Module:Navbar/styles.css Created page with "→{{pp|small=yes}}: .navbar { display: inline; font-size: 88%; font-weight: normal; } .navbar-collapse { float: left; text-align: left; } .navbar-boxtext { word-spacing: 0; } .navbar ul { display: inline-block; white-space: nowrap; line-height: inherit; } .navbar-brackets::before { margin-right: -0.125em; content: '[ '; } .navbar-brackets::after { margin-left: -0.125em; content: ' ]'; } .navbar li { word-spacing: -0.125em; } .navbar a > span, .nav..." current
- 00:2300:23, 26 May 2025 diff hist +915 Module:Navbar/configuration No edit summary current Tag: Manual revert
- 00:2300:23, 26 May 2025 diff hist −915 Module:Navbar/configuration Blanked the page Tags: Blanking Reverted
- 00:1200:12, 26 May 2025 diff hist +915 N Module:Navbar/configuration Created page with "return { ['templatestyles'] = 'Module:Navbar/styles.css', ['hlist_templatestyles'] = 'Hlist/styles.css', ['box_text'] = 'This box: ', -- default text box when not plain or mini ['title_namespace'] = 'Template', -- namespace to default to for title ['invalid_title'] = 'Invalid title ', ['classes'] = { -- set a line to nil if you don't want it ['navbar'] = 'navbar', ['plainlinks'] = 'plainlinks', -- plainlinks ['horizontal_list'] = 'hlist', -- horizontal lis..."
- 00:1200:12, 26 May 2025 diff hist +5,296 N Module:Navbar Created page with "local p = {} local cfg = mw.loadData('Module:Navbar/configuration') local function get_title_arg(is_collapsible, template) local title_arg = 1 if is_collapsible then title_arg = 2 end if template then title_arg = 'template' end return title_arg end local function choose_links(template, args) -- The show table indicates the default displayed items. -- view, talk, edit, hist, move, watch -- TODO: Move to configuration. local show = {true, true, true, false, false..." current
- 00:1100:11, 26 May 2025 diff hist +16,577 N 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...." current
- 00:1100:11, 26 May 2025 diff hist +5,455 N Module:Navbox/configuration Created page with "return { aria_label = 'Navbox', nowrap_item = '%s<span class="nowrap">%s</span>', templatestyles = mw.getCurrentFrame():extensionTag{ name = 'templatestyles', args = { src = 'Module:Navbox/styles.css' } }, hlist_templatestyles = 'Hlist/styles.css', plainlist_templatestyles = 'Plainlist/styles.css', -- do not localize marker table marker = { oddeven = '\127_ODDEVEN_\127', restart = '\127_ODDEVEN0_\127', regex = '\127_ODDEVEN(%d?)_\127' }, category = {..." current
- 00:1000:10, 26 May 2025 diff hist +29,178 N Module:Navbox Created page with "require('strict') local p = {} local cfg = mw.loadData('Module:Navbox/configuration') local inArray = require("Module:TableTools").inArray local getArgs -- lazily initialized local hiding_templatestyles = {} -- global passthrough variables local passthrough = { [cfg.arg.above]=true,[cfg.arg.aboveclass]=true,[cfg.arg.abovestyle]=true, [cfg.arg.basestyle]=true, [cfg.arg.below]=true,[cfg.arg.belowclass]=true,[cfg.arg.belowstyle]=true, [cfg.arg.bodyclass]=true, [cfg.a..." current
- 00:0800:08, 26 May 2025 diff hist +3,339 N Module:Check for unknown parameters Created page with "-- This module may be used to compare the arguments passed to the parent -- with a list of arguments, returning a specified result if an argument is -- not on the list require ('strict'); local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end local function clean(text) -- Return text cleaned for display and truncated if too long. -- Strip markers are replaced with dummy text representing..." current
- 00:0500:05, 26 May 2025 diff hist +2,112 N Module:Track listing/configuration Created page with "return { show_warnings = false, input_error_category = 'Track listings with input errors', collapsed_parameter_category = 'Track listings that use the collapsed parameter ', deprecated_parameter_category = 'Track listings with deprecated parameters', track_field_names = { number = true, title = true, note = true, length = true, lyrics = true, music = true, writer = true, extra = true, }, track_listing_field_names = { width = true, headline = tr..." current
25 May 2025
- 23:5923:59, 25 May 2025 diff hist +745 N Module:Yesno Created page with "-- 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 =..." current
- 23:5823:58, 25 May 2025 diff hist +13,898 N Module:Track listing Created page with "local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local cfg = mw.loadData('Module:Track listing/configuration') -------------------------------------------------------------------------------- -- Helper functions -------------------------------------------------------------------------------- -- Add a mixin to a class. local function addMixin(class, mixin) for k, v in pairs(mixin) do if k ~= 'init' then class[k] = v end e..." current
- 23:1923:19, 25 May 2025 diff hist +35,178 N Module:Documentation Created page with "-- 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 local format = mw.ustring.format ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in..." current
- 22:4722:47, 25 May 2025 diff hist −43 Red Krayola Wiki:About Redirected page to FAQ current Tag: New redirect
- 22:3722:37, 25 May 2025 diff hist +3,498 m Main Page Reverted edit by MediaWiki default (talk) to last revision by Dotclub Tag: Rollback
22 March 2025
- 00:0100:01, 22 March 2025 diff hist 0 N File:Sounds-1981-04-pg35.jpg No edit summary
- 00:0100:01, 22 March 2025 diff hist 0 N File:Sounds-1981-04-pg34.jpg No edit summary
- 00:0100:01, 22 March 2025 diff hist 0 N File:Sounds-1981-04-pg33.jpg No edit summary
- 00:0100:01, 22 March 2025 diff hist 0 N File:Sounds-1981-04-pg32.jpg No edit summary
- 00:0100:01, 22 March 2025 diff hist +169 Press →{{flagdeco|DE}} Sounds, April 1981 current
21 March 2025
- 23:5523:55, 21 March 2025 diff hist 0 File:Common-Knowledge-01-1979-front.jpg Dotclub uploaded a new version of File:Common-Knowledge-01-1979-front.jpg
- 23:5323:53, 21 March 2025 diff hist +16 Press →Crash Smash Crack Ring No.2, 1979
- 23:5223:52, 21 March 2025 diff hist 0 N File:Crash-Smash-Crack-Ring-02-front.jpg No edit summary
- 23:5223:52, 21 March 2025 diff hist +1 Press →Crash Smash Crack Ring No.2, 1979
- 23:5223:52, 21 March 2025 diff hist +81 Press →Common Knowledge No.1, 1979
- 23:5123:51, 21 March 2025 diff hist +5 Press →Crash Smash Crack Ring, 1979
- 23:4023:40, 21 March 2025 diff hist +4 Press →The Red Crayola Songbook, 1979
- 23:3923:39, 21 March 2025 diff hist 0 N File:Not-Fade-Away-01-02-1977-pg20.jpg No edit summary
- 23:3823:38, 21 March 2025 diff hist +28 Press →Not Fade Away Vol.1 No. 2, 1977
- 23:3723:37, 21 March 2025 diff hist +45 Press →{{flagdeco|US}} Not Fade Away Vol.1 No. 2, 1977
- 23:3523:35, 21 March 2025 diff hist 0 File:New-Musical-Express-1979-07-21-pg27.jpg Dotclub uploaded a new version of File:New-Musical-Express-1979-07-21-pg27.jpg
- 23:3523:35, 21 March 2025 diff hist 0 N File:New-Musical-Express-1979-07-21-pg28.jpg No edit summary
- 23:3523:35, 21 March 2025 diff hist +51 Press →{{flagdeco|UK}} New Musical Express, July 21, 1979
18 March 2025
- 20:5420:54, 18 March 2025 diff hist 0 Stand-Up No edit summary current
17 March 2025
- 10:4910:49, 17 March 2025 diff hist +42 We Feel Fine →Interpretations current
- 10:4810:48, 17 March 2025 diff hist +143 We Feel Fine No edit summary
24 February 2025
- 16:0816:08, 24 February 2025 diff hist +79 Transparent Radiation →Covers current
30 January 2025
- 16:1716:17, 30 January 2025 diff hist +55 Ghent music video No edit summary current
- 15:5515:55, 30 January 2025 diff hist +1,748 Hazel →Monitor current
- 14:2314:23, 30 January 2025 diff hist +1,848 The Red Krayola (album) →Retrospectives current
- 14:2014:20, 30 January 2025 diff hist +4 Colour Theory, No. 3 →Retrospectives current
- 14:2014:20, 30 January 2025 diff hist +779 Colour Theory, No. 3 No edit summary
17 January 2025
- 10:2110:21, 17 January 2025 diff hist +416 Art & Language (Van Abbemuseum, 1980) →Contents current
- 10:0810:08, 17 January 2025 diff hist +3 Art-Language Vol. 4 No. 4 →Contents current