User contributions for Skeeveo
Jump to navigation
Jump to search
13 April 2023
- 12:3312:33, 13 April 2023 diff hist +2 MediaWiki:Sitewide.css No edit summary
- 12:3312:33, 13 April 2023 diff hist +1 MediaWiki:Sitewide.css No edit summary
- 12:3212:32, 13 April 2023 diff hist 0 MediaWiki:Sitewide.css No edit summary
- 12:3112:31, 13 April 2023 diff hist 0 MediaWiki:Sitewide.css No edit summary
- 12:3112:31, 13 April 2023 diff hist −1 MediaWiki:Sitewide.css No edit summary
- 12:3012:30, 13 April 2023 diff hist +32 MediaWiki:Sitewide.css No edit summary
- 12:3012:30, 13 April 2023 diff hist −32 MediaWiki:Sitewide.css No edit summary
- 12:2512:25, 13 April 2023 diff hist +1 MediaWiki:Sitewide.css No edit summary
- 12:2512:25, 13 April 2023 diff hist +234 MediaWiki:Sitewide.css No edit summary
- 11:4311:43, 13 April 2023 diff hist +31 N User talk:Skeeveo Created page with "Hello, welcome to my talk page!" current
- 11:4211:42, 13 April 2023 diff hist +52 N ArdaCraft Wiki:VisualEditor Created page with "See: https://en.wikipedia.org/wiki/Help:VisualEditor" current
- 11:4111:41, 13 April 2023 diff hist +49 N Category:Pages with broken file links Created page with "These pages link to, but have a broken file link." current Tag: Visual edit
- 11:3811:38, 13 April 2023 diff hist 0 MediaWiki:Sitewide.css No edit summary
- 11:3811:38, 13 April 2023 diff hist 0 MediaWiki:Sitewide.css No edit summary
- 11:3811:38, 13 April 2023 diff hist 0 MediaWiki:Sitewide.css No edit summary
- 11:3711:37, 13 April 2023 diff hist 0 MediaWiki:Sitewide.css No edit summary
- 11:3611:36, 13 April 2023 diff hist 0 MediaWiki:Sitewide.css No edit summary
- 11:3511:35, 13 April 2023 diff hist 0 MediaWiki:Sitewide.css No edit summary
- 11:3511:35, 13 April 2023 diff hist 0 MediaWiki:Sitewide.css No edit summary
- 11:3411:34, 13 April 2023 diff hist 0 MediaWiki:Sitewide.css No edit summary
- 11:3311:33, 13 April 2023 diff hist 0 MediaWiki:Sitewide.css No edit summary
- 11:3011:30, 13 April 2023 diff hist −6 MediaWiki:Common.css No edit summary
- 11:2911:29, 13 April 2023 diff hist +341 N MediaWiki:Common.css Created page with "→* This stylesheet is loaded on desktop only. * * Desktop-only theme styles should go in MediaWiki:Vector.css. * Mobile-only styles should go in MediaWiki:Mobile.css. * Sitewide styles should go in MediaWiki:Sitewide.css.: @import url("https://wiki.ardacraft.me/index.php?title=MediaWiki:Sitewide.css?action=raw&ctype=text/css");"
- 11:2711:27, 13 April 2023 diff hist +1,308 N MediaWiki:Sitewide.css Created page with ".mbox { display: table; background-color: #332f24; border-color: #474233 #403b2e #26231b; border-radius: 6px; border-style: solid; border-width: 2px 1px; margin: 6px 10%; padding: 2px; } .mbox-small { clear: right; float: right; font-size: 88%; line-height: 1.2; margin: 6px 0 6px 12px; width: 230px; } .mbox-small-left { clear: left; float: left; font-size: 88%; line-height: 1.2;..."
- 11:1811:18, 13 April 2023 diff hist +3,545 N Module:Namespace detect/config Created page with "-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --..." current
- 11:1811:18, 13 April 2023 diff hist +28 N Template:Mbox Created page with "{{#invoke:Message box|mbox}}" current
- 11:1711:17, 13 April 2023 diff hist +19,976 N Module:Message box Created page with "-- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Load necessary modules. require('Module:No globals') local getArgs local categoryHandler = require('Module:Category handler')._main local yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() ----------------------------------------------..." current
- 11:1711:17, 13 April 2023 diff hist +6,116 N Module:Message box/configuration Created page with "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-spee..." current
- 11:1611:16, 13 April 2023 diff hist +307 N Module:No globals Created page with "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)" current
- 11:1511:15, 13 April 2023 diff hist +2,544 N Module:File link Created page with "-- 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..." current
- 11:1511:15, 13 April 2023 diff hist +888 N Module:Category handler/shared Created page with "-- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return..." current
- 11:1411:14, 13 April 2023 diff hist +631 N Module:Category handler/data Created page with "-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(..." current
- 11:1311:13, 13 April 2023 diff hist +5,755 N Module:Category handler/config Created page with "-------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. ----------------------------..." current
- 11:1311:13, 13 April 2023 diff hist −5 Module:Category handler/blacklist No edit summary current
- 11:1211:12, 13 April 2023 diff hist +265 N Module:Category handler/blacklist Created page with "-- This module contains the blacklist used by Module:Category handler. -- Pages that match Lua patterns in this list will not be categorised unless -- categorisation is explicitly requested. return { '^Ardacraft Wiki$', -- don't categorise the main page. }"
- 11:1111:11, 13 April 2023 diff hist +7,871 N Module:Category handler Created page with "-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace alia..." current
- 11:1011:10, 13 April 2023 diff hist +5,992 N 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..." current
- 11:1011:10, 13 April 2023 diff hist +2,569 N Module:Namespace detect/data Created page with "-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') local function..." current
- 11:0911:09, 13 April 2023 diff hist +8,030 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
- 11:0611:06, 13 April 2023 diff hist +10,054 N Module:Arguments 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'..." current
- 10:5210:52, 13 April 2023 diff hist +34 User:Skeeveo No edit summary current
- 10:5010:50, 13 April 2023 diff hist +745 N Module:Yesno Function allowing for consistent treatment of boolean-like wikitext input. current
- 10:4610:46, 13 April 2023 diff hist −663 Main Page No edit summary
12 April 2023
- 21:4221:42, 12 April 2023 diff hist −27 MediaWiki:Sidebar No edit summary
- 21:4121:41, 12 April 2023 diff hist +13 MediaWiki:Sidebar No edit summary
- 21:4121:41, 12 April 2023 diff hist +167 N MediaWiki:Sidebar Created page with "* navigation ** mainpage|mainpage-description ** recentchanges-url|recentchanges ** randompage-url|randompage ** helppage|help-mediawiki * SEARCH * TOOLBOX * LANGUAGES"
- 21:0421:04, 12 April 2023 diff hist +31 User:Skeeveo/sandbox No edit summary
- 21:0321:03, 12 April 2023 diff hist +103 N Module:Hello World Created page with "local p = {} --p stands for package function p.hello( frame ) return "Hello, world!" end return p" current
- 21:0221:02, 12 April 2023 diff hist +33 N User:Skeeveo/sandbox Created page with "Lets just get this out of the way"
- 21:0221:02, 12 April 2023 diff hist +460 N User:Skeeveo Created page with "<center><h2><strong><span style="color:black; font-family: sans-serif;">Welcome to my Ardacraft Wiki userpage...</span></strong></h2> <br/><div style="overflow: hidden; position: relative; background:rgba(204, 204, 204, 0.98); display: inline-block; width: auto; margin: auto; padding-left: 1em; padding-right: 1em;text-align: center; box-sizing: border-box;{{border-radius|3em}};"><span class="plainlinks">'''where my corners :('''<br/></span></div> </center>"