All public logs
Combined display of all available logs of Wiki Balkavani. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 06:58, 2 January 2025 JabicAdmin talk contribs created page Côte Blanche (Created page with "'''Côte Blanche''' (or the '''Shirenelle Duchy''') was a Nation.") Tag: Visual edit
- 06:56, 2 January 2025 JabicAdmin talk contribs created page Shirenelle Duchy (Redirected page to Côte Blanche) Tags: New redirect Visual edit
- 06:55, 2 January 2025 JabicAdmin talk contribs created page Remnite Duchy (Redirected page to Cagne Duchy) Tags: New redirect Visual edit
- 06:52, 2 January 2025 JabicAdmin talk contribs created page Kingdom of the Creisze & Marppesieux (Created page with "'''The Kingdom of the Creisze & Marppesieux''' was a Nation in the West formed within 150 years of The Great Question. It fell in the year == Colonisation of the Balkavanians == In an attempt to grasp at the Balkavanians (As much of the continent was trying to do) without exposing their vulnerable financial & social situation, King Gastier & Queen Gastier chose to make an offer to six of their smallest Noble Families (Viscounts & Viscountesses) the chance to create...") Tag: Visual edit
- 01:53, 2 January 2025 JabicAdmin talk contribs created page Colonization of the Balkavanians (Redirected page to Colonisation of the Balkavanians) Tags: New redirect Visual edit
- 01:53, 2 January 2025 JabicAdmin talk contribs created page Colonisation of the Balkavanians (Created page with "NOTE PAGE The Balkavanians were defenitely colonised == By 235-6 Borders == Hoketleri, Srebvona, Jelispsobva, part of Buklirasakzi - Colonised by Komarna Southern Mezhdomnoven - Held through Colonisation by Dolzlatnan Indigenous Forces Northern Cklserolva & Krjstendodjl (Islands) - North Islander Coaltion Southern Krjstendodjl, Kaubodoroc Ada - Krjstendodi (Unnamed) Southern Krjstendodjl, EotLP - Koverat Southern Soramti, Krajbretura - Alkakese Buklirasakzi - K...") Tag: Visual edit
- 20:24, 30 December 2024 JabicAdmin talk contribs created page Module:If empty (Created 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")
- 20:23, 30 December 2024 JabicAdmin 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...")
- 20:23, 30 December 2024 JabicAdmin talk contribs created page Module:InfoboxImage (Created 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...")
- 20:22, 30 December 2024 JabicAdmin 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...")
- 20:21, 30 December 2024 JabicAdmin talk contribs created page Module:Infobox (Created 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'...")
- 20:20, 30 December 2024 JabicAdmin talk contribs created page Module:Authority control (Created 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 .. '...")
- 17:19, 30 December 2024 JabicAdmin 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 =...")
- 17:18, 30 December 2024 JabicAdmin 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'...")
- 17:17, 30 December 2024 JabicAdmin talk contribs created page 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 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...")
- 17:17, 30 December 2024 JabicAdmin 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 ---------------------------------------------------------------------------...")
- 17:16, 30 December 2024 JabicAdmin talk contribs created page Module:Side box (Created 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....")
- 17:14, 30 December 2024 JabicAdmin talk contribs created page Module:Sidebar (Created 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...")
- 17:13, 30 December 2024 JabicAdmin talk contribs created page Module:Unsubst (Created 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...")
- 17:03, 30 December 2024 JabicAdmin talk contribs created page Module:Hatnote (Created 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....")
- 17:02, 30 December 2024 JabicAdmin talk contribs created page Module:Citation/CS1 (Created 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...")
- 16:58, 30 December 2024 JabicAdmin talk contribs created page MediaWiki:Editsection-brackets (Created page with "[$1]")
- 16:58, 30 December 2024 JabicAdmin talk contribs created page MediaWiki:Lang (Created page with "en")
- 09:34, 30 December 2024 JabicAdmin talk contribs created page Template:Infobox (Created page with "{{#invoke:Infobox|infobox}}<includeonly>{{template other|{{#ifeq:{{PAGENAME}}|Infobox||{{#ifeq:{{str left|{{SUBPAGENAME}}|7}}|Infobox|{{remove first word|{{SUBPAGENAME}}}}}}}}|}}</includeonly><noinclude> {{documentation}} <!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --> </noinclude>")
- 09:22, 30 December 2024 BKWikiSysop talk contribs changed group membership for JabicAdmin from (none) to administrator, bureaucrat and suppressor
- 09:22, 30 December 2024 BKWikiSysop talk contribs changed group membership for BKWikiSysop from bureaucrat to bureaucrat and administrator
- 09:21, 30 December 2024 Maintenance script talk contribs changed group membership for BKWikiSysop from (none) to bureaucrat
- 09:21, 30 December 2024 User account BKWikiSysop talk contribs was created automatically
- 06:28, 30 December 2024 JabicAdmin talk contribs created page Template:Infobox official post (Created page with "{{#invoke:infobox|infoboxTemplate |style = width:{{#if:{{{width|}}}|{{{width}}}|17.5em}}; |above = <includeonly>{{{name|{{{post}}} <!-- -->{{#if:{{{body|}}} | of {{{body}}} }} }}}</includeonly> |abovestyle = font-size: 125%; |subheader = {{{native_name|}}} |subheaderstyle = font-size: 125%; font-weight: normal; | child = {{lc:{{{child|{{{embed|}}}}}}}} |image = {{#i...")
- 06:27, 30 December 2024 JabicAdmin talk contribs created page Prime Minister of the Meblat (Created 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:16, 30 December 2024 JabicAdmin talk contribs created page Template:Infobox Official Post (Created page with "{{Infobox official post | post = <!-- Required. No wikilinks here. --> | body = <!-- Optional. --> | native_name = <!-- Optional. --> | insignia = <!-- An insignia; such as a coat of arms, logo, seal, or other symbol associated with this post, if any. Just the image name, no "File:" or "Image:" coding. --> | insigniasize = <!-- Example, "150px"....")
- 06:08, 30 December 2024 JabicAdmin talk contribs created page Cklserolva (Created 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
- 05:22, 30 December 2024 JabicAdmin talk contribs created page Dolzlatna (Created 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 ==") Tag: Visual edit
- 07:21, 25 December 2024 JabicAdmin talk contribs created page History of the EotLP (Created page with "'''A History of the EotLP''' is a state sponsored, periodically updated official account of the History of the EotLP. The full text is below. It's first edition was published in 236. == Timeline of Major Events == All Dates are given in MT (Memorable TIME) -4 Legoian Empire Conquers the Irin 17 Legoian Empire Collapses 17 - 23 War of Legoian Succession 23 William of Catlish conquers all opposers within Irin 23 – 192 Catlish Dynasty...") Tag: Visual edit
- 07:18, 25 December 2024 JabicAdmin talk contribs created page Military Coups in the EotLP (Created page with "The Balkavanian EotLP brought prosperity and stability that had never been possible to promise in the old EotLP. But it took a lot of in-fighting to prove so. Ren wanted his nation to be stable, and happy in the new EotLP, but others didn’t see it so; there were many inside the EotLP who would’ve been happier to stay and fight Smelly Cabbage back in the old EotLP. It would end up taking three Coup attempts before people realised what they had was good, before they re...") Tag: Visual edit
- 04:47, 25 December 2024 JabicAdmin talk contribs created page Rennian Inter Metro System (Created page with "== Settler-Era Inter Metro Construction == thumb|A Map of the Final Form of the EotLP Inter Metro System The last Transit project to be started in the reconstruction effort was the Inter Metro System, a series of high-speed rails that ran between the major population hubs in the EotLP") Tag: Visual edit
- 04:45, 25 December 2024 JabicAdmin talk contribs created page File:EotLP Transit Map - Inter Metro.png
- 04:45, 25 December 2024 JabicAdmin talk contribs uploaded File:EotLP Transit Map - Inter Metro.png
- 04:18, 25 December 2024 JabicAdmin talk contribs created page Rennian National Rail Line System (Created page with "== Pre-EotLP Railways == == Settler-Era National Rail Line Construction == thumb|A Map of the Final Form of the National Rail Line of the EotLP The EotLP's next major transport project after the initialization of the Highway System was their cargo and passenger rail lines, which were constructed in the same area divisions as the highways. Three of the four areas connected up to a major supply depot in Laiiwath, North o...") Tag: Visual edit
- 04:14, 25 December 2024 JabicAdmin talk contribs created page File:EotLP Transit Map - National Rail Line.png
- 04:14, 25 December 2024 JabicAdmin talk contribs uploaded File:EotLP Transit Map - National Rail Line.png
- 02:36, 25 December 2024 JabicAdmin talk contribs created page Rennian Highway System (Created page with "== Pre-EotLP Highways == == Settler-Era Highways == alt=HW SYS|thumb|A Map of the Final Form of the EotLP's Highway Network Emperor Ren authorized the country to be divided into four sections of Infrastructure; The South Wing, the East Wing, the Centre, and Cagne Island. The south wing was contracted to Osborne to construct Infrastructure and Public Transit systems, the East to Octan, and the Centre was contracted to the Governm...") Tag: Visual edit
- 02:36, 25 December 2024 JabicAdmin talk contribs created page File:EotLP Transit Map - Highways.png
- 02:36, 25 December 2024 JabicAdmin talk contribs uploaded File:EotLP Transit Map - Highways.png
- 02:27, 25 December 2024 JabicAdmin talk contribs created page Rennian Settlement of the Balkavanians (Created page with "== Background == Main Article: Smelly Cabbage Incident == Invasion == General Krennic convinced the Emperor that it was a good idea, and the EotLP Navy set course for the Balkavanians after nearly a year out at sea. With just under a few days of warning, on the 25th of 236, the EotLP Navy came upon the Balkavanians. Their navy entered the archipelago through the Bijelo & Krvavo Strait, surrounding Solemion Otok. They quickly approached Cagne Island, which at the tim...") Tag: Visual edit
- 02:21, 25 December 2024 JabicAdmin talk contribs created page Smelly Cabbage Incident (Created page with "Despite all of Ren’s preparation, and all his strengthening, he couldn’t plan for other’s failures. The neighbouring Regional Superpower (The EotBTH) was the only Nuclear Power in the EotLP’s corner of the world, and they managed to let their entire nuclear stockpile fall into the control of the strange, unusually methodized terror organization Smelly Cabbage. Then they declared their threats. They wanted all the land that belonged to the EotLP, EotBTH, Ottenburg...") Tag: Visual edit
- 23:24, 24 December 2024 JabicAdmin talk contribs created page Rennian Expansionism (Created page with "== Pre-Balkavanian == === Replacing the NRR === Over the first year of the EotLP’s existence, Ren spent most of his time trying to consolidate his new-found power. He expanded the military, signed a second draft of the constitution (which would later be officially instated as the 1<sup>st</sup> constitution of the EotLP) However, without the NRR supporting them, one of the few benefits of colonisation was lost – almost all outside trade stopped. The Economy of the E...") Tag: Visual edit
- 22:30, 24 December 2024 JabicAdmin talk contribs created page Latian Republic (Created page with "== History == === Conquest of the Irin Territory === In 192 MT, the Latian republic conquered all three spatting nations, after launching an air invasion, through Irin, which they saw as a strategically useful center of operations in the region. This proved correct, and benefitted the Latians greatly, and once again the Irin ended up oppressed by others. Just 8 years afterwards, in 200, a group of Latian Rebels who called themselves the Spartans saw the same strategic...") Tag: Visual edit
- 22:27, 24 December 2024 JabicAdmin talk contribs created page Catlish Kingdom (Created page with "William I of Catlish took control of the Irinian Plateau in 23 and named himself the Legoian God-Emperor, officially founding the Catlish God-Emperor Religion. However, other Generals of the former Legoian Empire took control of enough former parts of the Empire that his claims are widely disregarded. He renamed his kingdom Irin, as the majority of his holdings were on the plateau and set about strengthening his rule. He ruled for 14 years...") Tag: Visual edit
- 02:02, 22 December 2024 JabicAdmin talk contribs created page Formula Lego Season 12 Entries (Created page with "10 different Car Designs were entered into the 12th Season of Formula Lego. 31 Drivers entered into Season 13, with Evacio Torra taking Ani Novak's position while Novak was injured from Races 8 to 10. == Team Entries (Vehicles) == {| class="wikitable mw-collapsible" |+Season 12 Vehicle Entries !Pos. !Chassis !Team !Vehicle Name !Season Highest Position |- |1 |File:National F1 S12 Car.png|alt=National NC4|frameless|The Title-Winning...") Tag: Visual edit