All public logs
From Black Cat Studios
Jump to navigationJump to search
Combined display of all available logs of Black Cat Studios. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 19:00, 19 June 2023 Blackcat talk contribs imported Module:Message box/fmbox.css by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Template:Editnotice by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Template:Fmbox by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Ns has subpages by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Template:Ns has subpages by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Template:FULLROOTPAGENAME by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Message box/configuration by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:If empty by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Check for unknown parameters by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:InfoboxImage by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Navbar by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Infobox by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Authority control by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Yesno by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Arguments by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Navbox by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Message box by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Sidebar by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Unsubst by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Hatnote by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported Module:Citation by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported MediaWiki:Common.js by file upload (1 revision)
- 18:56, 19 June 2023 Blackcat talk contribs imported MediaWiki:Common.css by file upload (1 revision)
- 18:43, 19 June 2023 Blackcat talk contribs moved page Template:Documentation/sandbox/styles.css to Module:Documentation/sandbox/styles.css without leaving a redirect
- 18:42, 19 June 2023 Blackcat talk contribs created page Template:Documentation/sandbox/styles.css (Created page with ".ts-doc-sandbox .mbox-image { padding:.75em 0 .75em .75em; } .ts-doc-doc { clear: both; background-color: #ecfcf4; border: 1px solid #a2a9b1; margin-top: 1em; border-top-left-radius: 2px; border-top-right-radius: 2px; } .ts-doc-header { background-color: #CEF2E0; padding: .642857em 1em .5em; border-top-left-radius: 2px; border-top-right-radius: 2px; } .ts-doc-header .ts-tlinks-tlinks { line-height: 24px; margin-left: 0; } .ts-doc-header .ts-tlinks-tlink...")
- 18:42, 19 June 2023 Blackcat talk contribs created page Module:Documentation/sandbox (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/sandbox') 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 testin...")
- 18:40, 19 June 2023 Blackcat talk contribs created page Module:Documentation/config/sandbox (Created page with "---------------------------------------------------------------------------------------------------- -- -- 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. ---------------------------------------------------------------------------------...")
- 18:39, 19 June 2023 Blackcat talk contribs created page Module:Distinguish/sandbox (Created page with "local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local mArguments --initialize lazily local mTableTools --initialize lazily local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local p = {} function p.distinguish(frame) mArguments = require('Module:Arguments') mTableTools = require('Module:TableTools') local args = mArguments.getArgs(frame) local selfref = args.selfref local text = args.text a...")
- 18:38, 19 June 2023 Blackcat talk contribs created page Module:Demo/sandbox (Created page with "local p = {} --creates a frame object that cannot access any of the parent's args --unless a table containing a list keys of not to inherit is provided function disinherit(frame, onlyTheseKeys) local parent = frame:getParent() or frame local orphan = parent:newChild{} orphan.getParent = parent.getParent --returns nil orphan.args = {} if onlyTheseKeys then local family = {parent, frame} for f = 1, 2 do for k, v in pairs(family[f] and family[f].args or {}) do...")
- 18:37, 19 June 2023 Blackcat talk contribs created page Module:DecodeEncode/sandbox (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 =...")
- 18:35, 19 June 2023 Blackcat talk contribs created page Module:Color contrast/sandbox (Created page with "-- -- This module implements -- {{Color contrast ratio}} -- {{Greater color contrast ratio}} -- {{ColorToLum}} -- {{RGBColorToLum}} -- local p = {} local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) local function sRGB (v) if (v <= 0.03928) then v = v / 12.92 else v = math.pow((v+0.055)/1.055, 2.4) end return v end local function rgbdec2lum(R, G, B) if ( 0 <= R and R < 256 and 0 <= G and G < 256 and 0 <= B and B < 256 ) then return 0.2126...")
- 18:34, 19 June 2023 Blackcat talk contribs deleted page Module:Color contrast/colors/sandbox/doc (content was: "{{High-use|327086}} {{Module rating |protected}} This module contains the relative luminance of HTML colors. It is used in Module:Color contrast.", and the only contributor was "Blackcat" (talk))
- 18:34, 19 June 2023 Blackcat talk contribs created page Module:Color contrast/colors/sandbox/doc (Created page with "{{High-use|327086}} {{Module rating |protected}} This module contains the relative luminance of HTML colors. It is used in Module:Color contrast.")
- 18:33, 19 June 2023 Blackcat talk contribs created page Module:Color contrast/colors/sandbox (Created page with "return { aliceblue = 0.92880068253475, antiquewhite = 0.84646951707754, aqua = 0.7874, aquamarine = 0.8078549208338, azure = 0.97265264954166, beige = 0.8988459998705, bisque = 0.80732327372979, black = 0, blanchedalmond = 0.85084439608156, blue = 0.0722, blueviolet = 0.12622014321946, brown = 0.098224287876511...")
- 18:33, 19 June 2023 Blackcat talk contribs created page Module:Color/testcases (Created page with "local p = require('Module:UnitTests') function p:test01_rgb() self:preprocess_equals_preprocess( '{{#invoke:Color/sandbox|hexToRgbTriplet|fefdfc}}', '{{#invoke:Color |hexToRgbTriplet|fefdfc}}' ) end function p:test02_cmyk_black() self:preprocess_equals_preprocess( '{{#invoke:Color/sandbox|hexToCmyk|precision=3|000}}', '{{#invoke:Color |hexToCmyk|precision=3|000}}' ) end function p:test03_cmyk_white() self:preprocess_equals_preprocess(...")
- 18:32, 19 June 2023 Blackcat talk contribs moved page Module:Colo/sandboxr to Module:Color/sandbox without leaving a redirect
- 18:32, 19 June 2023 Blackcat talk contribs created page Module:Colo/sandboxr (Created page with "-- Introduction: https://colorspace.r-forge.r-project.org/articles/color_spaces.html local p = {} local function isEmpty(value) return value == nil or value == '' end local function isNotEmpty(value) return value ~= nil and value ~= '' end local function argDefault(value, default) if (value == nil or value == '') then return default else return value end end local function numArgDefault(value, default) if (value == nil or value == '') then return default...")
- 18:31, 19 June 2023 Blackcat talk contribs created page Module:Color/doc (Created page with "{{Module rating|beta<!-- release • protected • semiprotected -->}} This module is used primarily by {{tl|Infobox color}}, eliminating the need for external color converters and preventing mismatch between color coordinates. == Usage == To use this module, you may use one of the above listed templates or invoke the module directly. All functions that accept hexadecimal triplets also handle the shorthand three-digit format. To convert a hexadecimal tr...")
- 18:31, 19 June 2023 Blackcat talk contribs created page Module:Color (Created page with "-- Introduction: https://colorspace.r-forge.r-project.org/articles/color_spaces.html local p = {} local function isempty(v) return v == nil or v == '' end local function hexToRgb(color) local cleanColor = color:gsub("#", "#"):match('^[%s#]*(.-)[%s;]*$') if (#cleanColor == 6) then return { r = tonumber(string.sub(cleanColor, 1, 2), 16), g = tonumber(string.sub(cleanColor, 3, 4), 16), b = tonumber(string.sub(cleanColor, 5, 6), 16) } elseif (#cleanCo...")
- 18:30, 19 June 2023 Blackcat talk contribs moved page Template:Check for unknown parameters/testcases/template call/sandbox to Module:Check for unknown parameters/testcases/template call/sandbox without leaving a redirect
- 18:30, 19 June 2023 Blackcat talk contribs created page Template:Check for unknown parameters/testcases/template call/sandbox (Created page with "{{#invoke:check for unknown parameters/sandbox|check|unknown=Unknown _VALUE_, |preview=unknown parameter "_VALUE_"|arg1|arg2|argN}}")
- 18:29, 19 June 2023 Blackcat talk contribs moved page Template:Check for unknown parameters/testcases/template call to Module:Check for unknown parameters/testcases/template call without leaving a redirect
- 18:29, 19 June 2023 Blackcat talk contribs created page Template:Check for unknown parameters/testcases/template call (Created page with "{{#invoke:check for unknown parameters|check|unknown=Unknown _VALUE_, |preview=unknown parameter "_VALUE_"|arg1|arg2|argN}}")
- 18:28, 19 June 2023 Blackcat talk contribs created page Module:Check for unknown parameters/testcases (Created page with "-- Unit tests for Module:Check for unknown parameters. Click talk page to run tests. local p = require('Module:UnitTests') function p:test_01_1_check_live() self:preprocess_equals_many('{{Module:Check for unknown parameters/testcases/template call|', '}}', { {"arg1=arg1| arg2=arg2 | name=name | height=height | weight=weight | website=website", "Unknown name,Unknown height,Unknown website,Unknown weight,"}, }) end function p:test_01_2_check_sandbox() self:prepro...")
- 18:28, 19 June 2023 Blackcat talk contribs created page Module:Check for unknown parameters/sandbox (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 t...")
- 18:24, 19 June 2023 Blackcat talk contribs created page Module:Category handler/testcases (Created page with "-- Unit tests for Module:Category handler. Click talk page to run tests. local m_category_handler = require('Module:Category handler/sandbox') local chmain = m_category_handler._main local ScribuntoUnit = require('Module:ScribuntoUnit') local suite = ScribuntoUnit:new() -- Define table of defaults local d = {} -- Values d.absent = nil d.blank = '' d.negation = '¬' d.yes = 'yes' d.no = 'no' d.subpageOnly = 'only' d.subpageNo = 'no' -- Categories d.category = 'Cate...")
- 18:24, 19 June 2023 Blackcat talk contribs created page Module:Category handler/sandbox (Created page with "-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace alia...")
- 18:22, 19 June 2023 Blackcat talk contribs created page Module:Arguments/testcases (Created page with "local getArgs = require('Module:Arguments/sandbox').getArgs local ScribuntoUnit = require('Module:ScribuntoUnit') local suite = ScribuntoUnit:new() -------------------------------------------------------------------------- -- Default values -------------------------------------------------------------------------- local d = {} d.frameTitle = 'Frame title' d.parentTitle = 'Parent title' -- Precedence-testing values d.firstFrameArg = 'first frame argument' d.firstParen...")
- 18:22, 19 June 2023 Blackcat talk contribs created page Module:Arguments/sandbox (Created page with "-- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string'...")
- 18:21, 19 June 2023 Blackcat talk contribs created page Module:Anchor/testcases (Created page with "-- Unit tests for Module:Anchor. Click talk page to run tests. local anchor = require('Module:Anchor') -- the module to be tested local ScribuntoUnit = require('Module:ScribuntoUnit') local suite = ScribuntoUnit:new() function suite:testmain() self:assertResultEquals('<span class="anchor" id="foo"></span>', '{{#invoke:Anchor|main|foo}}') self:assertResultEquals('<span class="anchor" id="foo"></span><span class="anchor" id="bar"></span>', '{{#invoke:Anchor|main|fo...")