Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of Runnina. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 20:29, 8 July 2025 Administrator talk contribs created page 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...")
- 20:28, 8 July 2025 Administrator talk contribs created page Module:Message box (Created page with "require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions ---------------------------------------------------------------------------...")
- 20:27, 8 July 2025 Administrator talk contribs created page 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. ----------------------------...")
- 20:26, 8 July 2025 Administrator talk contribs created page 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 { '^Main Page$', -- don't categorise the main page. -- Don't categorise the following pages or their subpages. -- "%f[/\0]" matches if the next character is "/" or the end of the string. '^Wikipedia:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', -- The userbo...")
- 20:26, 8 July 2025 Administrator talk contribs created page 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...")
- 20:26, 8 July 2025 Administrator talk contribs created page 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(...")
- 20:25, 8 July 2025 Administrator talk contribs created page 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 =...")
- 20:23, 8 July 2025 Administrator talk contribs created page 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...")
- 20:21, 8 July 2025 Administrator talk contribs created page Module:Message Box (Created page with "require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions ---------------------------------------------------------------------------...")
- 20:19, 8 July 2025 Administrator talk contribs created page Module:No globals (Created page with "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)")
- 20:19, 8 July 2025 Administrator talk contribs created page 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 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 the original wikitext...")
- 20:08, 8 July 2025 Administrator talk contribs created page Template:Plainlist/styles.css (Created page with "{{pp-template|small=yes}}: .plainlist ol, .plainlist ul { line-height: inherit; list-style: none; margin: 0; padding: 0; Reset Minerva default: } .plainlist ol li, .plainlist ul li { margin-bottom: 0; }")
- 20:07, 8 July 2025 Administrator talk contribs created page Template:Plainlist (Created page with "<templatestyles src="Plainlist/styles.css"/><div class="plainlist {{{class|}}}" {{#if:{{{style|}}}{{{indent|}}}|style="{{#if:{{{indent|}}}|margin-left: {{#expr:{{{indent}}}*1.6}}em;}} {{{style|}}}"}}>{{#if:{{{1|}}}| {{{1}}} </div>}}<noinclude></div> {{documentation}} </noinclude>")
- 20:07, 8 July 2025 Administrator talk contribs created page Module:List (Created page with "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) -- Constructs a data table to be passed to p.renderList. local data = {} -- Classes and TemplateStyles data.classes = {} data.templatestyles = ''...")
- 20:06, 8 July 2025 Administrator talk contribs created page Template:Hlist/styles.css (Created page with "{{pp-protected|reason=match parent|small=yes}}: * hlist styles are defined in core and Minerva and differ in Minerva. The * current definitions here (2023-01-01) are sufficient to override Minerva * without use of the hlist-separated class. The most problematic styles were * related to margin, padding, and the bullet. Check files listed at * MediaWiki talk:Common.css/to do#hlist-separated: /* * TODO: When the majority of readership supports it (or s...")
- 20:04, 8 July 2025 Administrator talk contribs created page Template:Hlist (Created page with "{{#switch: {{NAMESPACE}} | #default = <div class="hlist {{{class|}}}" {{#if:{{{style|}}}|style="{{{style}}}"}}> {{{1|}}} </div> }} <noinclude> {{documentation}} </noinclude>") Tag: Recreated
- 19:57, 8 July 2025 Administrator talk contribs deleted page Template:Hlist (content was: "{{pp-protected|reason=match parent|small=yes}}: /* * hlist styles are defined in core and Minerva and differ in Minerva. The * current definitions here (2023-01-01) are sufficient to override Minerva * without use of the hlist-separated class. The most problematic styles were * related to margin, padding, and the bullet. Check files listed at * M...", and the only contributor was "Administrator" (talk))
- 19:57, 8 July 2025 Administrator talk contribs created page Template:Hlist (Created page with "{{pp-protected|reason=match parent|small=yes}}: * hlist styles are defined in core and Minerva and differ in Minerva. The * current definitions here (2023-01-01) are sufficient to override Minerva * without use of the hlist-separated class. The most problematic styles were * related to margin, padding, and the bullet. Check files listed at * MediaWiki talk:Common.css/to do#hlist-separated: /* * TODO: When the majority of readership supports it (or s...")
- 19:55, 8 July 2025 Administrator talk contribs created page Hlist/styles.css (Created page with "{{pp-protected|reason=match parent|small=yes}}: * hlist styles are defined in core and Minerva and differ in Minerva. The * current definitions here (2023-01-01) are sufficient to override Minerva * without use of the hlist-separated class. The most problematic styles were * related to margin, padding, and the bullet. Check files listed at * MediaWiki talk:Common.css/to do#hlist-separated: /* * TODO: When the majority of readership supports it (or s...")
- 19:54, 8 July 2025 Administrator talk contribs created page Module:Infobox/styles.css (Created page with "{{pp|small=y}}: * This TemplateStyles sheet deliberately does NOT include the full set of * infobox styles. We are still working to migrate all of the manual * infoboxes. See MediaWiki talk:Common.css/to do#Infobox * DO NOT ADD THEM HERE: * not strictly certain these styles are necessary since the modules now * exclusively output infobox-subbox or infobox, not both * just replicating the module faithfully: .infobox-subbox { padding: 0; borde...")
- 19:54, 8 July 2025 Administrator talk contribs created page 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...")
- 19:53, 8 July 2025 Administrator talk contribs created page Module:Exponential search (Created page with "-- This module provides a generic exponential search algorithm. requirestrict local checkType = require('libraryUtil').checkType local floor = math.floor local function midPoint(lower, upper) return floor(lower + (upper - lower) / 2) end local function search(testFunc, i, lower, upper) if testFunc(i) then if i + 1 == upper then return i end lower = i if upper then i = midPoint(lower, upper) else i = i * 2 end return search(testFunc, i, low...")
- 19:53, 8 July 2025 Administrator talk contribs created page 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....")
- 19:52, 8 July 2025 Administrator talk contribs created page 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...")
- 19:51, 8 July 2025 Administrator talk contribs created page Module:Italic title (Created page with "-- This module implements {{italic title}}. require('strict') local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg local yesno = require('Module:Yesno') -------------------------------------------------------------------------------- -- ItalicTitle class -------------------------------------------------------------------------------- local ItalicTitle = {} do ----------------...")
- 19:51, 8 July 2025 Administrator talk contribs created page 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...")
- 19:45, 8 July 2025 Administrator talk contribs created page 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...")
- 19:43, 8 July 2025 Administrator talk contribs created page 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'...")
- 09:41, 8 July 2025 Administrator talk contribs deleted page Infobox Country (content was: "{{#invoke:Template display|main |template = Infobox country |parameters = official_name, native_name, flag, motto, map_image, map_caption, capital, largest_cities, religious_identification, demonym, ethnic_groups, government, chambers, laws, independence, head_of_state, power_status, common_background, gdp_total, gdp_per_capita, hdi, currency, codex |descript...", and the only contributor was "Administrator" (talk))
- 09:05, 8 July 2025 Administrator talk contribs created page Infobox Country (Created page with "{{Documentation subpage}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> {{#invoke:Template display|main |template = Infobox country |parameters = official_name, native_name, flag, motto, map_image, map_caption, capital, largest_cities, religious_identification, demonym, ethnic_groups, government, chambers, laws, independence, head_of_state, power_status, common_background, gdp_total, gdp_per_capita, hdi, currency, codex |description = This inf...")
- 08:50, 8 July 2025 Administrator talk contribs created page Template:Documentation (Created page with "<noinclude>{{pp-template}}</noinclude> <div class="documentation-box"> <div class="documentation-header"> {{#if:{{{header|}}}|{{{header}}}|Template documentation}} </div> <div class="documentation-content"> {{{content|{{Documentation subpage}}}}} </div> </div> <noinclude> Category:Documentation templates </noinclude>")
- 08:47, 8 July 2025 Administrator talk contribs deleted page Template:Infobox warning (content was: "<infobox> {| class="infobox" style="border:2px solid #d33; background-color:#fee; width:90%; font-size:90%;" |- ! style="background-color:#d33; color:white; text-align:center; font-size:120%; padding:0.4em;" | {{{title|⚠ Warning}}} |- | style="padding:0.8em;" | {{{message|This page contains important warnings or notices.}}} |} </infobox>", and the only contributor was "Administrator" (talk))
- 08:45, 8 July 2025 Administrator talk contribs created page Template:Infobox warning (Created page with "<infobox> {| class="infobox" style="border:2px solid #d33; background-color:#fee; width:90%; font-size:90%;" |- ! style="background-color:#d33; color:white; text-align:center; font-size:120%; padding:0.4em;" | {{{title|⚠ Warning}}} |- | style="padding:0.8em;" | {{{message|This page contains important warnings or notices.}}} |} </infobox>")
- 08:41, 8 July 2025 Administrator talk contribs created page Template:Collapse top (Created page with "<div class="mw-collapsible mw-collapsed"> <div class="mw-collapsible-toggle-label"> {{{title|Click to expand}}} </div> <div class="mw-collapsible-content">")
- 08:39, 8 July 2025 Administrator talk contribs created page Template:Documentation subpage (Created page with "<!-- This is a documentation subpage. It is transcluded onto the main template page. --> <!-- No visible content is usually needed here, but it can be used for categorization. -->")
- 08:33, 8 July 2025 Administrator talk contribs created page Module:Template display (Created page with "-- Module:Template display -- A simplified module to display template documentation boxes. -- Based on a common pattern used on Wikipedia. local p = {} function p.main(frame) local args = frame.args local template_name = args.template or 'Template' local description = args.description or '' local parameters = args.parameters or '' local style = args.style or '' local content = args.content or '' local output = '<div class="template-display-...")
- 08:23, 8 July 2025 Administrator talk contribs deleted page Arkauidia (content was: "{{Infobox Country | official_name = Federal Republic of Arkaudia | native_name = ''Republik Federal Arkadia'' | motto = "Unity Through Steel" | map_image = Arkaudia_Map.png <!-- Replace with your actual map image filename --> | map_caption = Map of Arkaudia and its recognized territories. | capital = Arkadiopolis | largest_cities = * Arkadiopolis * Ironhold *...", and the only contributor was "Administrator" (talk))
- 08:22, 8 July 2025 Administrator talk contribs created page Arkauidia (Created page with "{{Infobox Country | official_name = Federal Republic of Arkaudia | native_name = ''Republik Federal Arkadia'' | motto = "Unity Through Steel" | map_image = Arkaudia_Map.png <!-- Replace with your actual map image filename --> | map_caption = Map of Arkaudia and its recognized territories. | capital = Arkadiopolis | largest_cities = * Arkadiopolis * Ironhold * New Haven | religious_identification = Sparklian (85%), Atheist (10%), Other (5%) | demonym = Arkadian | ethnic_g...")
- 08:21, 8 July 2025 Administrator talk contribs created page Template:Infobox country (Created page with "<includeonly> {{#invoke:Infobox|main}} </includeonly> <templatedata> { "description": "Infobox for country data.", "params": { "official_name": { "label": "Official Name of Country", "type": "string", "required": true, "description": "The full official name of the country." }, "native_name": { "label": "Country Name in Own Native Language", "type": "string",...")
- 08:20, 8 July 2025 Administrator talk contribs created page Module:Infobox (Created page with "-- Module:Infobox -- A simplified Lua module to generate infobox tables for country data. local p = {} -- Function to generate a single row in the infobox local function makeRow(label, value) if value and value ~= '' then return '|- \n! scope="row" | ' .. label .. ' \n| ' .. value .. '\n' else return '' -- Return empty string if value is nil or empty end end -- Main function to build the infobox function p.main(frame) local args = frame...")
- 08:19, 8 July 2025 Administrator talk contribs created page Template:Infobox country/styles.css (Created page with "Entire Block of Code for; Template:Infobox_Country: table.infobox { border-collapse: collapse !important; margin: 0 0 1em 1em !important; padding: 0 !important; float: right !important; clear: right !important; width: 22em !important; Standard infobox width: font-size: 90% !important; line-height: 1.5em !important; border: 1px solid #444 !important; Replaced var(--border-color): background-color: #222 !important; /*...")
- 07:07, 8 July 2025 Administrator talk contribs undeleted page Template:Infobox Country (6 revisions)
- 07:06, 8 July 2025 Administrator talk contribs created page Template:Infobox Country (Created page with "<includeonly>{| class="infobox" |+ {{{official_name|Country Name}}} |- ! scope="row" | Native Name | ''{{{native_name|}}}'' |- ! scope="row" | Motto | {{{motto|}}} |- | colspan="2" style="text-align: center; padding: 0.5em 0;" | {{#if:{{{map_image|}}}|[[File:{{{map_image}}}|250px|center|alt={{{map_caption|Official Map}}}]]|}} {{#if:{{{map_caption|}}}|<div class="infobox-map-caption">Official Borders & Territories Recognized.<br>{{{map_caption|}}}</div>|}} |- ! scope="row...") Tags: Recreated Reverted
- 07:05, 8 July 2025 Administrator talk contribs deleted page Template:Infobox Country (content before blanking was: "<includeonly>{| class="infobox" |+ {{{official_name|Country Name}}} |- ! scope="row" | Native Name | ''{{{native_name|}}}'' |- ! scope="row" | Motto | {{{motto|}}} |- | colspan="2" style="text-align: center; padding: 0.5em 0;" | {{#if:{{{map_image|}}}|[[File:{{{map_image}}}|250px|center|alt={{{map_caption|Official Map}}}]]|}} {{#if:{{{map_caption|}}}|<div class="infobox-map-caption">Official Borders & Territories Recognized.<br>{{{map_caption|}}}</div>|}} |- ! s...")
- 06:31, 8 July 2025 Administrator talk contribs created page Arkaudia (Created page with "{{Infobox country |conventional_long_name = <!--Formal or official full name of the country in English--> |native_name = <!--Country's name (usually full name) in its native language, hence in italics (double quotemarks)--> |common_name = <!--Common name in English (used for wikilinks and to produce a default iso3166 code)--> |image_flag = <!--e.g. Flag of country.svg--> |alt_flag = <!--alt text for flag (text shown when pointer hovers ove...") Tag: Visual edit: Switched
- 06:29, 8 July 2025 Administrator talk contribs created page Template:Infobox Country (Created page with "{{#invoke:Infobox|infoboxTemplate |templatestyles = Template:Infobox country/styles.css | bodyclass = ib-country vcard | aboveclass = adr | above = {{#if:{{{conventional_long_name|}}}{{{native_name|}}}{{{name|}}} | {{#if:{{{conventional_long_name|}}} |<div class="fn org country-name">{{{conventional_long_name|}}}</div> }}{{#if:{{{native_name|}}}{{{name|}}} |<div class="ib-country-names"><!-- -->{{br separated e...")
- 22:22, 7 July 2025 Administrator talk contribs created page MediaWiki:Common.css (Created page with "- Global Dark for CountryGame: Runnina -: --- Overall Background Page ---: body, #content, .mw-body, .mw-body-content { background-color: #030104 !important; Onyx background: color: #ffffff !important; White text for readability: } === LINK COLOR ===: a, a:visited { color: #900603 !important; Ruby red: text-decoration: none; } a:hover, a:active { color: #ff1a1a !important; Bright hover effect (optional): text-decoration:...")
- 22:15, 7 July 2025 Administrator talk contribs moved page Main Page to Runnina (Misspelled title: Main Page Directory.)
- 22:08, 7 July 2025 User account ChillComrade talk contribs was created
- 18:07, 7 July 2025 MediaWiki default talk contribs created page Main Page