User contributions for JabicAdmin

A user with 796 edits. Account created on 5 December 2024.
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

9 January 2025

2 January 2025

1 January 2025

31 December 2024

30 December 2024

  • 20:2420:24, 30 December 2024 diff hist +234 N Module:If emptyCreated page with "local p = {} function p.main(frame) local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:If empty', removeBlanks = false}) for k,v in ipairs(args) do if v ~= '' then return v end end end return p" current
  • 20:2320:23, 30 December 2024 diff hist +3,339 N Module:Check for unknown parametersCreated 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
  • 20:2320:23, 30 December 2024 diff hist +9,894 N Module:InfoboxImageCreated page with "-- Inputs: -- image - Can either be a bare filename (with or without the File:/Image: prefix) or a fully formatted image link -- page - page to display for multipage images (DjVu) -- size - size to display the image -- maxsize - maximum size for image -- sizedefault - default size to display the image if size param is blank -- alt - alt text for image -- title - title text for image -- border - set to yes if border -- center - set to yes, if th..." current
  • 20:2220:22, 30 December 2024 diff hist +5,296 N Module:NavbarCreated 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
  • 20:2120:21, 30 December 2024 diff hist +20,533 N Module:InfoboxCreated page with "local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_t = { patterns = { '^hlist$', '%shlist$', '^hlist%s', '%shlist%s'..." current
  • 20:2020:20, 30 December 2024 diff hist +13,076 N Module:Authority controlCreated page with "require('strict') local p = {} local frame = mw.getCurrentFrame() local config_file = frame.args.config and frame.args.config~='' and ('/' .. frame.args.config) or '' local config = mw.loadData('Module:Authority control/config' .. config_file) local title = mw.title.getCurrentTitle() local namespace = title.namespace local testcases = title.subpageText == config.i18n.testcases local wikilink = function(target, label) return label and '[[' .. target .. '|' .. label .. '..." current
  • 17:1917:19, 30 December 2024 diff hist +745 N Module:YesnoCreated 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
  • 17:1817:18, 30 December 2024 diff hist +10,054 N Module:ArgumentsCreated 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
  • 17:1717:17, 30 December 2024 diff hist +19,175 N Module:NavboxCreated page with "require('strict') local p = {} local cfg = mw.loadData('Module:Navbox/configuration') local inArray = require("Module:TableTools").inArray local getArgs -- lazily initialized local format = string.format function p._navbox(args) local function striped(wikitext, border) -- Return wikitext with markers replaced for odd/even striping. -- Child (subgroup) navboxes are flagged with a category that is removed -- by parent navboxes. The result is that the category shows..." current
  • 17:1717:17, 30 December 2024 diff hist +18,901 N Module:Message boxCreated 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 ---------------------------------------------------------------------------..." current
  • 17:1617:16, 30 December 2024 diff hist +3,691 N Module:Side boxCreated page with "local yesno = require('Module:Yesno') local p = {} local function makeData(args) local data = {} -- Main table classes data.classes = {} if yesno(args.metadata) ~= false then table.insert(data.classes, 'metadata') end if args.position and args.position:lower() == 'left' then table.insert(data.classes, 'side-box-left') else table.insert(data.classes, 'side-box-right') end if args.collapsible then table.insert(data.classes, 'mw-collapsible') if args...." current
  • 17:1417:14, 30 December 2024 diff hist +12,861 N Module:SidebarCreated page with "require('strict') local cfg = mw.loadData('Module:Sidebar/configuration') local p = {} local getArgs = require('Module:Arguments').getArgs --[[ Categorizes calling templates and modules with a 'style' parameter of any sort for tracking to convert to TemplateStyles. TODO after a long cleanup: Catch sidebars in other namespaces than Template and Module. TODO would probably want to remove /log and /archive as CS1 does ]] local function categorizeTemplatesWithInlineStyle..." current
  • 17:1317:13, 30 December 2024 diff hist +3,948 N Module:UnsubstCreated page with "local checkType = require('libraryUtil').checkType local p = {} local BODY_PARAM = '$B' local specialParams = { ['$params'] = 'parameter list', ['$aliases'] = 'parameter aliases', ['$flags'] = 'flags', ['$B'] = 'template content', ['$template-name'] = 'template invocation name override', } function p.main(frame, body) -- If we are substing, this function returns a template invocation, and if -- not, it returns the template body. The template body can be specif..." current
  • 17:0317:03, 30 December 2024 diff hist +6,037 N Module:HatnoteCreated page with "-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules...." current
  • 17:0217:02, 30 December 2024 diff hist +226,986 N Module:Citation/CS1Created page with "require ('strict'); --[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- each of these counts against the Lua upvalue limit ]] local validation; -- functions in Module:Citation/CS1/Date_validation local utilities; -- functions in Module:Citation/CS1/Utilities local z = {}; -- table of tables in Module:Citation/CS1/Utilities local identifiers; -- f..." current
  • 16:5816:58, 30 December 2024 diff hist +4 N MediaWiki:Editsection-bracketsCreated page with "[$1]" current
  • 16:5816:58, 30 December 2024 diff hist +2 N MediaWiki:LangCreated page with "en" current
  • 09:3409:34, 30 December 2024 diff hist +2 1st Battle on the Lonac ZaljevNo edit summary current Tag: Visual edit
  • 09:2409:24, 30 December 2024 diff hist +15 m WFL CommisionChanged redirect target from WFL Commission to World Formula Lego Commission current Tags: Redirect target changed Visual edit
  • 09:2409:24, 30 December 2024 diff hist +5 OctanChanged redirect target from Octan Energies to Lilian Energies Inc current Tags: Redirect target changed Visual edit
  • 06:4406:44, 30 December 2024 diff hist 0 m Prime Minister of the Parliament of RepresentativesNo edit summary Tag: Visual edit: Switched
  • 06:4406:44, 30 December 2024 diff hist +131 m Prime Minister of the Parliament of RepresentativesNo edit summary Tag: Visual edit: Switched
  • 06:4106:41, 30 December 2024 diff hist −7 Prime Minister of the Parliament of RepresentativesNo edit summary Tag: Visual edit
  • 06:3706:37, 30 December 2024 diff hist −862 m Prime Minister of the Parliament of RepresentativesNo edit summary Tag: Visual edit
  • 06:2706:27, 30 December 2024 diff hist +1,040 N Prime Minister of the Parliament of RepresentativesCreated page with "The '''Prime Minister of the Meblat of the United Commonwealth Republic of Rennia''' is the Head of Government of the Rennian Republic. {{Infobox official post|post=Prime Minister|body=Rennia|incumbent=Incumbent|incumbentsince=Last Election|department=Government of the United Commonwealth Republic of Rennia {{!}} Rennian Meblat {{!}} Cabinet of the Rennian Prime Minister|style={{plainlist| * The Right Honourable{{efn|This title is granted to holders of the of..." Tag: Visual edit
  • 06:0806:08, 30 December 2024 diff hist +554 N CklserolvaCreated page with "thumb|The Flag of Cklserolva since 152 '''Cklserolva''' was a Nation in the Western Balkavanians. == Etymology == == History == == Government & Politics == === Leadership === <small>Main Article: Leaders of Cklserolva</small> === Foreign Relations === === Military === === Administrative Divisions === == Geography == == Economy == == Demographics == === Ethnicity === === Language ===..." Tag: Visual edit
  • 06:0606:06, 30 December 2024 diff hist +937 m United Commonwealth Republic of Rennia→‎Government & Politics Tag: Visual edit
  • 05:2205:22, 30 December 2024 diff hist +457 N DolzlatnaCreated page with "'''Dolzlatna''' was a Nation == Etymology == Dolzlatna comes from the ancient description of the region by invaders as the “Golden Valley” (Dolzanta Latnayke). == History == == Government & Politics == === Foreign Relations === === Military === === Administrative Divisions === == Geography == == Economy == == Demographics == === Ethnicity === === Language === == Culture == == Transportation == == Health == == Education == == Media ==" current Tag: Visual edit
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)