All public logs

Combined display of all available logs of TwogPedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 14:06, 30 August 2022 Couchor talk contribs created page Dota2/TestTournament (Created page with "{{Infobox tournament |title = PGL Arlington Major |image = PGL Arlington Major.png |series = Dota Pro Circuit |organizer = PGL |type = Offline |location = Arlington |venue = Esports Stadium Arlington |format = Round Robin group stage Double-elimination playoffs |prize = $500,000 |start = 4th August 2022 |end = 14th August 2022 |patch = 7.31d |teams = 17 |points = 4,570 |sponsors = HyperX,Sony INZONE,GG.BET,Bitget,Secretlab |links= true...")
  • 14:05, 30 August 2022 Couchor talk contribs created page Module:Infobox tournament (Created page with "local getArgs = require('Module:Arguments').getArgs local Links = require('Module:Links') local Header = require('Module:Infobox/Widget/Header') local Subheader = require('Module:Infobox/Widget/Subheader') local LinksWidget = require('Module:Infobox/Widget/Links') local SponsorsWidget = require('Module:Infobox/Widget/Sponsors') local Flags = require('Module:Flags') local Infobox = {} function Infobox.main(frame) local args = getArgs(frame) local currentTitleSplit =...")
  • 14:00, 30 August 2022 Couchor talk contribs deleted page Template:TestInfobox team (Was there for test purposes only)
  • 13:56, 30 August 2022 Couchor talk contribs created page Module:Infobox/Widget/Sponsors (Created page with "local Sponsors = {} function Sponsors.make(sponsorArr, variant) local container = mw.html.create('div') -- :addClass('ib-sponsors') local sponsorList = mw.text.split(sponsorArr, ',') for i, v in ipairs(sponsorList) do v = mw.text.trim(v) local pageExists = mw.getCurrentFrame():callParserFunction('#ifexist', v, 'yes', 'no' ) local div = mw.html.create('div') if ( pageExists == 'yes' ) then div:wikitext('' .. v .. '') else div:wik...")
  • 13:17, 30 August 2022 Couchor talk contribs created page Module:Infobox company (Created page with "local getArgs = require('Module:Arguments').getArgs local Links = require('Module:Links') local Header = require('Module:Infobox/Widget/Header') local Subheader = require('Module:Infobox/Widget/Subheader') local LinksWidget = require('Module:Infobox/Widget/Links') local Flags = require('Module:Flags') local Infobox = {} function Infobox.main(frame) local args = getArgs(frame) local currentTitleSplit = mw.text.split(mw.title.getCurrentTitle().text, '/') local head...")
  • 17:16, 29 August 2022 Couchor talk contribs created page MediaWiki:Citizen.css/Dark.css (Created page with "All CSS here will be loaded for users of the Citizen skin: INFOBOX: .ib { background-color: #484848;: background-color: #363636; } .ib-row:nth-of-type(2n + 2) { background-color: #4e4e4e; } .ib-subheader { background-color: #ddffdd; color: #000; } Striped wikitable: .striped-table { color: #e1e1e1; } .striped-table > tbody > tr:nth-of-type(2n + 1) { background-color: #262626; } .striped-table > tbody > tr:nth-of-type(2n + 2) { background-c...")
  • 17:02, 29 August 2022 Couchor talk contribs created page MediaWiki:Citizen.css (Created page with "All CSS here will be loaded for users of the Citizen skin: .ib { background-color: #484848; }")
  • 16:19, 29 August 2022 Couchor talk contribs created page Module:Infobox/Widget/Subheader (Created page with "local Subheader = {} function Subheader.make(title) local title = mw.html.create('div') :addClass('ib-subheader') :wikitext(title) return mw.html.create('div'):node(title) end return Subheader")
  • 09:00, 29 August 2022 Couchor talk contribs created page Module:Infobox/Widget/Header (Created page with "local Header = {} function Header.main(title, image) local title = mw.html.create('div') :addClass('infobox-title') :wikitext(title) local imageDiv = mw.html.create('div') :addClass('infobox-image') :wikitext('250px') -- local image = mw.html.create('img') -- :attr('src', image) -- :attr() return { mw.html.create('div'):node(title):node(imageDiv) } end return Header")
  • 08:19, 29 August 2022 Couchor talk contribs created page Module:Infobox/Widget/Links (Created page with "-- local Class = require('Module:Class') local Widget = require('Module:Infobox/Widget') local UtilLinks = require('Module:Links') local Table = require('Module:Table') local Links = {} -- local Links = Class.new( -- Widget, -- function(self, input) -- self.links = Table.copy(input.content) -- self.variant = input.variant -- end -- ) local _ICON_KEYS_TO_RENAME = { ['bilibili-stream'] = 'bilibili', daumcafe = 'cafe-daum', ['esea-d'] = 'esea-league', ['faceit-...")
  • 21:36, 25 August 2022 Couchor talk contribs created page Module:Infobox/Basic (Created page with "--- -- @Liquipedia -- wiki=commons -- page=Module:Infobox/Basic -- -- Please see https://github.com/Liquipedia/Lua-Modules to contribute -- local Class = require('Module:Class') local Infobox = require('Module:Infobox') -- local String = require('Module:StringUtils') local Logic = require('Module:Logic') local getArgs = require('Module:Arguments').getArgs local BasicInfobox = Class.new( function(self, frame) self.args = getArgs(frame) self.pagename = mw.title.getC...")
  • 21:36, 25 August 2022 Couchor talk contribs created page Module:Infobox (Created page with "local Class = require('Module:Class') local Variables = require('Module:Variables') local Infobox = Class.new() --- Inits the Infobox instance function Infobox:create(frame, gameName, forceDarkMode) self.frame = frame self.root = mw.html.create('div') self.adbox = mw.html.create('div') :addClass('fo-nttax-infobox-adbox') :addClass('wiki-bordercolor-light') :node(self.frame:preprocess('<adbox />')) self.content = mw.html.create('div') :addClass('...")
  • 20:46, 25 August 2022 Couchor talk contribs created page Module:Infobox team (Created page with "local getArgs = require('Module:Arguments').getArgs local Flags = require('Module:Flags') local Infobox = {} function Infobox.run(frame) local args = getArgs(frame) mw.log(args) mw.logObject(args) end return Infobox")
  • 20:45, 25 August 2022 Couchor talk contribs deleted page Module:TestFlags (Not needed)
  • 20:42, 25 August 2022 Couchor talk contribs created page Template:TestInfobox team (Created page with "<includeonly>{{#invoke:Infobox team|run}}</includeonly><noinclude>{{Documentation}}</noinclude>")
  • 20:31, 25 August 2022 Couchor talk contribs created page Module:Links (Created page with "--- -- @Liquipedia -- wiki=commons -- page=Module:Links -- -- Please see https://github.com/Liquipedia/Lua-Modules to contribute -- local Class = require('Module:Class') local Table = require('Module:Table') local Links = {} local _PREFIXES = { ['5ewin'] = { 'https://arena.5eplay.com/tournament/', player = 'https://arena.5eplay.com/data/player/', team = 'https://arena.5eplay.com/team/' }, abiosgaming = {'https://abiosgaming.com/tournaments/'}, afreeca = {'ht...")
  • 15:54, 25 August 2022 Admin talk contribs deleted page Test (content was: "TESTTTTTTTTTTTTTTTTTTTT <ref>{{{{cite journal | last1 = 1 | first1 = 1 | last2 = 1 | first2 = 1 | date = 1 | title = 1 | url = 1 | journal = 1 | volume = 1 | issue = 1 | pages = 1 | doi = 1 | access-date = 1 }}}}</ref> <ref name="whatisesports">{{cite journal |last=Hamari |first=Juho |date=2016 |title=What is eSports and why do people watch it? |ssrn=2686182 |journal=Internet Research |volume=27 |issue=2 |pages=211–...")
  • 13:19, 25 August 2022 Admin talk contribs deleted page Template:Cite Book (content was: "<includeonly><!-- Defines the book, the following shortcuts are allowed, anything not listed in this switch gets parsed as is -->{{#vardefine:Book|{{#switch:{{{type|}}} | Guide = {{Guide|{{{game|}}}|{{{publisher|}}}|-}} | Magazine = {{Magazine|{{{magazine|}}}|-}} | Manga = [[{{Zelda|{{{game|}}}}} ({{{author|}}})|{{{{{game|}}}|-}}]] | #default = {{#switch:{{{book|}}} | A&A...", and the only contributor was "Admin" (talk))
  • 13:08, 25 August 2022 Admin talk contribs created page Template:Cite Book (Created page with "<includeonly><!-- Defines the book, the following shortcuts are allowed, anything not listed in this switch gets parsed as is -->{{#vardefine:Book|{{#switch:{{{type|}}} | Guide = {{Guide|{{{game|}}}|{{{publisher|}}}|-}} | Magazine = {{Magazine|{{{magazine|}}}|-}} | Manga = [[{{Zelda|{{{game|}}}}} ({{{author|}}})|{{{{{game|}}}|-}}]] | #default = {{#switch:{{{book|}}} | A&A = {{A&A}} | HH = {{HH}} | E = {{E}} | CaC = {{CaC}} | DAB = {{DAB}} | TCT = {...")
  • 07:27, 25 August 2022 Couchor talk contribs created page Template:Squad/doc (Created page with "Take in an optional |status=active If status is set to active, then the table will only display the "ID, Name, Position and Join Date" columns. Apart from |status you should only pass <nowiki>{{Person}}</nowiki> Templates as arguments to this template. == Usage == <nowiki> {{Squad|status=active </nowiki> <nowiki> |{{Person|flag=ca|id=PlayerPage|name=PlayerName|position=1|joindate=2016-09-15}} </nowiki> <nowiki> }} </nowiki>")
  • 07:16, 25 August 2022 Couchor talk contribs created page Template:Person/doc (Created page with "Can take the following properties <br/> |flag= <br/> |id= <br/> |name= <br/> |position= <br/> |joindate= <br/> |leavedate= <br/> |newteam= <br/> == Usage == <nowiki>{{TestPerson|flag=us|id=PlayerPage|name=PlayerName|position=1|joindate=2014-09-15}}</nowiki>")
  • 15:49, 24 August 2022 Admin talk contribs created page Module:Citation/CS1/Whitelist (Created page with "--[[--------------------------< S U P P O R T E D P A R A M E T E R S >-------------------------------------- Because a steady-state signal conveys no useful information, whitelist.basic_arguments[] list items can have three values: true - these parameters are valid and supported parameters false - these parameters are deprecated but still supported tracked - these parameters are valid and supported parameters tracked in an eponymous properties category nil - thes...")
  • 15:49, 24 August 2022 Admin talk contribs created page Module:Citation/CS1/Configuration (Created page with "local lang_obj = mw.language.getContentLanguage(); -- make a language object for the local language; used here for languages and dates --[[--------------------------< U N C A T E G O R I Z E D _ N A M E S P A C E S >------------------------------ List of namespaces that should not be included in citation error categories. Same as setting notracking = true by default. Note: Namespace names should use underscores instead of spaces. ]] local uncategorized_names...")
  • 15:48, 24 August 2022 Admin talk contribs created page Module:Citation/CS1/COinS (Created page with "--[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local has_accept_as_written, is_set, in_array, remove_wiki_link, strip_apostrophe_markup; -- functions in Module:Citation/CS1/Utilities local cfg; -- table of configuration tables that are defined in Module:Citation/CS1/Configuration --[[--------------------------< M A K E _ C O I N S _ T I T L E >----------------------------------------...")
  • 15:46, 24 August 2022 Admin talk contribs created page Module:Citation/CS1/Identifiers (Created page with "--[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local has_accept_as_written, is_set, in_array, set_message, select_one, -- functions in Module:Citation/CS1/Utilities substitute, make_wikilink; local z; -- table of tables defined in Module:Citation/CS1/Utilities local cfg; -- table of configuration tables that are defined in Module:Citation/CS1/Configuration --[[-...")
  • 15:44, 24 August 2022 Admin talk contribs created page Module:Citation/CS1/Utilities (Created page with "local z = { error_cats_t = {}; -- for categorizing citations that contain errors error_ids_t = {}; -- list of error identifiers; used to prevent duplication of certain errors; local to this module error_msgs_t = {}; -- sequence table of error messages maint_cats_t = {}; -- for categorizing citations that aren't erroneous per se, but could use a little work prop_cats_t = {}; -- for categorizing cit...")
  • 15:40, 24 August 2022 Couchor talk contribs created page Dota2/TestTeam (Created page with "== Roster == === Active === {{TestSquad|status=active |{{TestPerson|flag=ca|id=TestPlayer|name=Artour Babaev|position=1|joindate=2016-09-15}} |{{TestPerson|flag=us|id=TestPlayer2|name=Mihkel Muhkel|position=2|joindate=2014-09-15}} |{{TestPerson|flag=no|id=TestPlayer3|name=Uugens Buugens|position=3|joindate=2018-09-15|captain=yes}} }}")
  • 15:36, 24 August 2022 Admin talk contribs created page Module:Citation/CS1/Date validation (Created page with "--[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local add_prop_cat, is_set, in_array, set_message, substitute, wrap_style; -- imported functions from selected Module:Citation/CS1/Utilities local cfg; -- table of tables imported from selected Module:Citation/CS1/Configuration --[[--------------------------< F I L E - S C O P E D E C L A R A T I O N S >--------------------------------...")
  • 15:33, 24 August 2022 Admin talk contribs created page Module:Citation/CS1/styles.css (Created page with "cite.citation { font-style: inherit; Remove italics for <cite>: Break long urls, etc., rather than overflowing box: word-wrap: break-word; } .citation q { quotes: '"' '"' "'" "'"; Straight quote marks for <q>: } Highlight linked elements (such as clicked references) in blue: .citation:target { ignore the linter - all browsers of interest implement this: background-color: rgba(0, 127, 255, 0.133); } /* ID and URL access Both core and Comm...")
  • 14:55, 24 August 2022 Admin talk contribs created page Template:Citation/styles.css (Created page with ".citation { word-wrap: break-word; } .citation:target { background-color: rgba(0, 127, 255, 0.133); }")
  • 14:50, 24 August 2022 Couchor talk contribs created page File:Captain-32px.png
  • 14:50, 24 August 2022 Couchor talk contribs uploaded File:Captain-32px.png
  • 14:17, 24 August 2022 Admin talk contribs created page Module:Citation/CS1 (Created page with "require ('Module:No globals'); --[[--------------------------< 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;...")
  • 14:08, 24 August 2022 Admin talk contribs created page Template:Cite journal (Created page with "<includeonly>{{#invoke:Citation/CS1|citation |CitationClass=journal }}</includeonly><noinclude> {{documentation}} </noinclude>")
  • 14:06, 24 August 2022 87.116.163.87 talk created page Test (Created page with "TESTTTTTTTTTTTTTTTTTTTT<ref name="Demon and Fear return with Evil Geniuses">{{cite web|url=http://www.gosugamers.net/dota2/news/17482-d|title=Demon and Fear return with Evil Geniuses}}</ref> <ref>{{cite journal |doi=10.2222/B22.2}}</ref> or <ref>https://doi.org/10.2222/B22.2</ref>")
  • 12:36, 24 August 2022 Couchor talk contribs created page MediaWiki:Common.css/Squad.css (Created page with "CSS placed here will be applied to all skins: .wikitable-striped > tbody > tr:nth-of-type(2n + 1) { background-color: #bbbbbb; }")
  • 10:44, 24 August 2022 Couchor talk contribs deleted page Module:PageVariableNamespace (Not needed)
  • 05:31, 24 August 2022 Couchor talk contribs created page TestPlayer (Created page with "Ugadibugadi")
  • 04:35, 24 August 2022 Couchor talk contribs created page Module:TestFlags (Created page with "local MasterData = mw.loadData('Module:Flags/MasterData') local Flags = {} function Flags.icon(flagString) if ( #flagString == 2 ) then mw.log(MasterData.twoLetter[flagString]) end end")
  • 15:41, 23 August 2022 Admin talk contribs deleted page References (content was: "Amsterdam (/ˈæmstərdæm/ AM-stər-dam, UK also /ˌæmstərˈdæm/ AM-stər-DAM <ref>{{Cite journal |last=Gawronski |first=J |date=2017 |title=Ontstaan uit een storm; De vroegste geschiedenis van Amsterdam archeologisch en landschappelijk belicht |trans-title=Born from a storm; The earliest history of Amsterdam from an archaeological and landscape perspective. |url=https://www.the...", and the only contributor was "Admin" (talk))
  • 15:39, 23 August 2022 Admin talk contribs created page References (Created page with "Amsterdam (/ˈæmstərdæm/ AM-stər-dam, UK also /ˌæmstərˈdæm/ AM-stər-DAM <ref>{{Cite journal |last=Gawronski |first=J |date=2017 |title=Ontstaan uit een storm; De vroegste geschiedenis van Amsterdam archeologisch en landschappelijk belicht |trans-title=Born from a storm; The earliest history of Amsterdam from an archaeological and landscape perspective. |url=https://www.theobakker.net/pdf/TX_Gawronski2017JbAmstelodamum_10.pdf |journal=Jaarboek van Het Genootscha...")
  • 08:13, 23 August 2022 Couchor talk contribs created page Template:TestPerson (Created page with "-->{{#ifeq:{{NAMESPACE}}||{{#subobject:SquadPlayer_{{{link|{{{id|}}}}}}_{{#if:{{{leavedate|{{{inactivedate|}}}}}}|former_}}player_of_{{#var:squad_name|{{FULLPAGENAME}}}} |has id={{{id|}}} |has page={{{link|{{{id|}}}}}} |has team={{#var:squad_name|{{FULLPAGENAME}}}} |has team region={{#var:region|}} |has team page={{FULLPAGENAME}} |has real name={{{name|}}} |has flag={{{flag|}}} |is captain={{#if:{{{captain|}}}|true}} |has join date={{#if:{{{joindate|}}}|{{#replace:{{#rep...")
  • 21:50, 22 August 2022 Couchor talk contribs created page Module:TestSquad (Created page with "local Squad = {} function Squad.header(self) local makeHeader = function(wikiText) local headerCell = mw.html.create('th') if wikiText == nil then return headerCell end return headerCell:wikitext(wikiText):addClass('divCell') end local headerRow = mw.html.create('tr'):addClass('HeaderRow') headerRow :node(makeHeader('ID')) :node(makeHeader()) :node(makeHeader('Name')) :node(makeHeader('Position')) :node(makeHeader('Join Date')) if...")
  • 21:37, 22 August 2022 Couchor talk contribs created page TestTeam (Created page with "{{TestSquad|status=active |{{Person|flag=ca|id=TestPlayer|name=Artour Babaev|position=1|joindate=2016-09-15}} }}")
  • 18:51, 22 August 2022 Couchor talk contribs created page Template:TestSquad (Created page with "<includeonly>{{#invoke:TestSquad|main}}</includeonly><noinclude>{{Documentation}}</noinclude>")
  • 18:02, 22 August 2022 Couchor talk contribs created page Module:Team/override (Created page with "local overrides = { ['game'] = {}, ['games'] = {}, ['templates'] = { ['definitions'] = { ['team'] = '<span data-highlightingclass="TBD" class="team-template-team-standard"><span class="team-template-image-legacy">link=</span> <span class="team-template-text"><abbr title="To Be Determined">TBD</abbr></span></span>', ['team2'] = '<span data-highlightingclass="TBD" class="team-template-team-standard"><span class="team-template-text"><...")
  • 15:30, 22 August 2022 Couchor talk contribs created page Module:TeamCard/Qualifier (Created page with "local Class = require('Module:Class') local Variables = require('Module:Variables') local Qualifier = {} -- Returns the tuple (linkText, linkInternal, linkExternal) -- Link internal and link external is mutually exclusive function Qualifier.parseQualifier(rawQualifier) if not rawQualifier then return nil end local cleanQualifier = rawQualifier:gsub('%[', ''):gsub('%]', '') if cleanQualifier:find('|') then -- Internal link local qualifier = mw.text.split(clea...")
  • 15:29, 22 August 2022 Couchor talk contribs created page Module:TeamCard/Storage (Created page with "local Custom = require('Module:TeamCard/Custom') local String = require('Module:StringUtils') -- TODO: Once the Template calls are not needed (when RL has been moved to Module), deprecate Qualifier Module local Qualifier = require('Module:TeamCard/Qualifier') local Variables = require('Module:Variables') local TeamCardStorage = {} function TeamCardStorage.saveToLpdb(args, teamObject, players, playerPrize) local team, teamTemplateName if type(teamObject) == 'table' t...")
  • 15:28, 22 August 2022 Couchor talk contribs created page Module:TeamCard/Custom (Created page with "local p = {} local Flag = require('Module:Flags') local String = require('Module:StringUtils') local Variables = require('Module:Variables') function p._Players(args, PLAYERS, prefix, prefixVar, prefixLPDB, teamAlias) local name = string.gsub(mw.ext.TeamLiquidIntegration.resolve_redirect(args[prefix .. 'link']), ' ', '_') local displayname = args[prefix] local flag = Flag.CountryName(args[prefix .. 'flag']) PLAYERS[prefixLPDB] = name PLAYERS[prefixLPDB .. 'flag']...")
  • 15:28, 22 August 2022 Couchor talk contribs created page Module:Ordinal (Created page with "--[[ This template will add the appropriate ordinal suffix to a given integer. Please do not modify this code without applying the changes first at Module:Ordinal/sandbox and testing at Module:Ordinal/sandbox/testcases and Module talk:Ordinal/sandbox/testcases. ]] local p = {} local yesno = require('Module:Yesno') -- boolean value interpretation --[[ This function converts an integer value into a numeral followed by ordinal indicator. The output string mig...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)