All public logs
Jump to navigation
Jump to search
Combined display of all available logs of The Wiki Camp 2 Jr.. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 17:25, 25 September 2023 SGuySMW 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...")
- 17:24, 25 September 2023 SGuySMW 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 function fixChildBoxes(sval, tt) local function notempty( s ) return s and s:match( '%S' ) end if notempty(sval) then local marker = '<span class=special_infobox_marker>' local s = sval -- start moving templatestyles and categories inside of table rows...")
- 17:24, 25 September 2023 SGuySMW 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. -->Category:Templates </noinclude>")
- 17:24, 25 September 2023 SGuySMW talk contribs created page Module:Check for clobbered parameters (Created page with "local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end function p.check(frame) local args = frame.args local pargs = frame:getParent().args local checknested = isnotempty(args['nested']) local delimiter = isnotempty(args['delimiter']) and args['delimiter'] or ';' local argpairs = {} for k, v in pairs(args) do if type(k) == 'number' then local plist = mw.text.split(v, delimiter)...")
- 17:23, 25 September 2023 SGuySMW 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...")
- 17:23, 25 September 2023 SGuySMW talk contribs created page Fischbach (Created page with "{{Infobox settlement | name = Fischbach | settlement_type = City | image_flag = | subdivision_type = Sovereign state | subdivision_name = Wikiland | population_demonyms = | population_as_of = 2022 | population = 98,360 }} '''Fischbach''' is a major city in Wikiland. It is one of the fastest-growing cities in the country, primarily due to its origins as the location of the prison where Death Row played. As suc...")
- 17:20, 25 September 2023 Jurta talk contribs created page Category:Challenges (official) (Created page with "These challenges are ''official''. Not to be confused with Category:Champagnes (official) 🥂")
- 17:08, 25 September 2023 SGuySMW talk contribs created page Module:Message box/ombox.css (Created page with "{{pp|small=y}}: .ombox { margin: 4px 0; border-collapse: collapse; border: 1px solid #a2a9b1; Default "notice" gray: background-color: #f8f9fa; box-sizing: border-box; } For the "small=yes" option.: .ombox.mbox-small { font-size: 88%; line-height: 1.25em; } .ombox-speedy { border: 2px solid #b32424; Red: background-color: #fee7e6; Pink: } .ombox-delete { border: 2px solid #b32424; Red: } .ombox-content { border: 1p...")
- 17:05, 25 September 2023 SGuySMW talk contribs created page Is this the first baby born on the Wiki Camp 2 Jr.!? (Created page with "🐣 Fans of the Wiki Camp 2 are abuzz with chatter today after discovering a precious, cherished newborn '''babe''' swaddled still in its egg<nowiki/>shell! This cute baby is believed to be the first baby born ever on this wiki. For this reason it is beloved and taken care of and will be fed all the things a baby does need to have a lovely and flourished life. Category:Baby Category:Miracles")
- 17:03, 25 September 2023 SGuySMW talk contribs created page 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...")
- 17:03, 25 September 2023 SGuySMW 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:02, 25 September 2023 SGuySMW talk contribs created page 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)")
- 17:01, 25 September 2023 SGuySMW talk contribs created page Module:Message box (Created page with "require('Module:No globals') 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:01, 25 September 2023 SGuySMW talk contribs created page Template:Mbox (Created page with "{{#invoke:Message box|mbox}}")
- 17:00, 25 September 2023 SGuySMW talk contribs created page Template:WIP (Created page with "<languages /> <!--T:1--><onlyinclude>{{mbox | text= '''This article is a work in progress.'''<br />''...Well, all the articles here are, in a way. But this one moreso, and the article may contain incomplete information and editor's notes.''<br />{{#if:{{{reason|{{{1|}}}}}}|Notes: {{{reason|{{{1}}}}}} }} | image= File:Tcrf-wipicon.png | iwidth= 32 | caption= This cactus is UNDER CONSTRUCTION | border= #bf8 | background= #dfc }}<includeonly>...")
- 16:59, 25 September 2023 SGuySMW talk contribs created page Template:Infobox settlement (Created page with "<includeonly>{{Infobox | child = {{yesno|{{{embed|}}}}} | templatestyles = Infobox settlement/styles.css | bodyclass = ib-settlement vcard <!--** names, type, and transliterations ** --> | above = <div class="fn org">{{if empty|{{{name|}}}|{{{official_name|}}}|{{PAGENAMEBASE}}}}</div> {{#if:{{{native_name|}}}|<div class="nickname ib-settlement-native" {{#if:{{{native_name_lang|}}}|lang="{{{native_name_lang}}}"}}>{{{native_name}}}</div>}}{{#if:{{{other_name|}}}|<div...")
- 16:58, 25 September 2023 SGuySMW talk contribs created page Zestful Association of Zoos and Aquariums (Created page with "{{For|zaza|Zaza}} The '''Zestful Association of Zoos and Aquariums''' ('''ZAZA''') is an association of over 200 zoos and aquariums in Wikiland. It is a leader in animal conservation in The Wiki Camp 2. ==Members== ===Aquariums=== *Toba Aquarium, Wiki City *Pinniped Research Centre, Wiki City *TBA, Wiki City *TBA, Wiki City *TBA, Wiki City *TBA, Wiki City *New Cheyenne Aquarium, New Cheyenne, Ferria *Vapo Sea Devil Memorial Aquar...")
- 16:57, 25 September 2023 Betamaj talk contribs created page Template:JuniorPage (template for make page junior)
- 16:54, 25 September 2023 SGuySMW talk contribs created page Chicago (Created page with "'''Chicago''' is the city of beans. The most prominent bean (so-called "Cloud Gaty"), made of stainless steel, lies on a large public park in the city's central business district, called the Loop. Category:Cities")
- 16:53, 25 September 2023 Betamaj talk contribs created page Betamin (Created page with "{{DISPLAYTITLE:betamin}} Get it? cause i'm betamaj and maj is like major and min is like minor. and it's the wiki camp Jr.<br> File:pfpstupidsmall.png<br> Pronouns: {{Junior|he}}/{{Junior|him}} Category:you (official)") Tag: Visual edit: Switched
- 16:53, 25 September 2023 SGuySMW talk contribs created page Disco (Created page with "'''Disco''' is a soulful and melodic genre of electronic dance music typically using four-on-the-floor beats, prominent syncopated basslines, strings, brass, pianos, synthesizers, and electric guitars. After a few years of prominence in the late 1970s, its popularity was overtaken by other EDM genres, as well as new wave, dance-pop, and glam metal. This led to people attempting...") Tag: Visual edit: Switched
- 16:48, 25 September 2023 Betamaj talk contribs created page Template:Junior (Created page with "<span style="font-size:50%;">{{{1}}}</span>")
- 16:47, 25 September 2023 User account SGuySMW talk contribs was created
- 16:44, 25 September 2023 Betamaj talk contribs created page File:Pfpstupidsmall.png
- 16:44, 25 September 2023 Betamaj talk contribs uploaded File:Pfpstupidsmall.png
- 16:39, 25 September 2023 EnbyPie08AgainFromTheWikiCamp2 talk contribs created page Call me Ismael (Call me Ishmael. Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world. It is a way I have of driving off the spleen and regulating the circulation. Whenever I find myself growing grim about the mouth; whenever it is a damp, drizzly November in my soul; whenever I find myself involuntarily pausing before coffin warehouses, and bringing up the re)
- 16:25, 25 September 2023 Coppersalts talk contribs created page Hindsight (Redirected page to 2020) Tag: New redirect
- 16:18, 25 September 2023 Coppersalts talk contribs created page Category:You (official) (Created page with "you")
- 16:18, 25 September 2023 Coppersalts talk contribs created page Copper Pepper Jr. (Created page with "for later Category:You (official)")
- 16:04, 25 September 2023 EnbyPie08AgainFromTheWikiCamp2 talk contribs created page Talk:Challenge 1: You (Created page with "Wait so do we make pages for our characters or what ~~~~")
- 16:03, 25 September 2023 Coppersalts talk contribs created page Camp Learning with Pibby (Created page with "learning is so fun")
- 16:01, 25 September 2023 EnbyPie08AgainFromTheWikiCamp2 talk contribs created page 2020 (Created page with "Quarantine File:SARS-CoV-2_without_background.png")
- 15:25, 25 September 2023 Coppersalts talk contribs created page The Normal Woman (Created page with "me")
- 15:23, 25 September 2023 EnbyPie08AgainFromTheWikiCamp2 talk contribs created page Homestuck (funny)
- 15:22, 25 September 2023 EnbyPie08AgainFromTheWikiCamp2 talk contribs created page File:JohnEdgardBONK.png
- 15:22, 25 September 2023 EnbyPie08AgainFromTheWikiCamp2 talk contribs uploaded File:JohnEdgardBONK.png
- 15:21, 25 September 2023 Coppersalts talk contribs created page The Wiki Camp 2 (Created page with "just... so... big! Catgeory:wikiescategroy:camps")
- 15:20, 25 September 2023 User account EnbyPie08AgainFromTheWikiCamp2 talk contribs was created
- 15:15, 25 September 2023 Jurta talk contribs created page Skibidi Toilet (Created page with "{{Quote|The Wiki Camp 2 bop bop bop yes yes The Wiki Camp 2 bop bop bop trrrp trrrrrp|Skibidi Toilet|''The Wiki Camp 2 Toilet Series YouTube''}} '''Skibidi Toilet''' is the 104th competitor of ''The Wiki Camp 2''.")
- 15:15, 25 September 2023 Jurta talk contribs created page Template:Quote (Created page with "{|class="quote" align="{{{float|center}}}" style="display: table !important; width:auto !important; background:none;text-align:center; margin: {{#if:{{{compact|}}}|0.5em|1em}} auto !important; border-collapse:collapse; border-style:none;" cellspacing="0" |width="20" id="q-mark" style="color:{{{qcolor|#B2B7F2}}};font-size:35px;font-family:Times New Roman,serif;padding:10px 10px; line-height:1px; vertical-align:top;"|'''“''' |id="text" style="text-align:{{{text-align|lef...")
- 15:09, 25 September 2023 Jurta talk contribs created page Challenge 1: You (Created page with "hey guys im w.d. gaster. from udnertale and deltarune maybe. you'r challenge is to create a vessel 🤣🤣🤣 you have until")
- 15:05, 25 September 2023 Jurta talk contribs created page User:Jurta (Created page with "[https://camp2.rectangle.zone/index.php?title=User:Jurta 🦭🚽]")
- 15:01, 25 September 2023 Coppersalts talk contribs changed the content model of the page Module:Hatnote/styles.css from "Scribunto" to "Sanitized CSS"
- 14:53, 25 September 2023 Jurta talk contribs created page Evil The Wiki Camp 2 (Created page with "The '''''Evil The Wiki Camp 2''''' is an '''EVIL''' variation of ''The Wiki Camp 2''. It is '''EVIL''' and engages in '''EVIL''' activities!")
- 14:51, 25 September 2023 User account Jurta talk contribs was created
- 14:34, 25 September 2023 User account Betamaj talk contribs was created
- 14:32, 25 September 2023 Coppersalts talk contribs created page The Wiki Camp 2 Jr.:About (Created page with "it's small! Category:Information")
- 14:31, 25 September 2023 Coppersalts talk contribs created page Duckinzuzu (Created page with "🦆🪣 Category:Video games")
- 14:28, 25 September 2023 Coppersalts talk contribs created page Module:Hatnote/styles.css (Created page with "-- uhh")
- 14:26, 25 September 2023 Coppersalts 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....")