Main public logs
More actions
Combined display of all available logs of Lorcana Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 15:32, 21 April 2026 Khalid talk contribs created page Module:Yesno/doc (Created page with "{{Documentation subpage}} This module provides a consistent interface for processing boolean or boolean-style string input. While Lua allows the <code>true</code> and <code>false</code> boolean values, wikicode templates can only express boolean values through strings such as "yes", "no", etc. This module processes these kinds of strings and turns them into boolean input for Lua to process. It also returns <code>nil</code> values as <code>nil</code>, to allow for distinc...")
- 15:32, 21 April 2026 Khalid 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 =...")
- 15:31, 21 April 2026 Khalid 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...")
- 15:31, 21 April 2026 Khalid 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(...")
- 15:31, 21 April 2026 Khalid 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. ----------------------------...")
- 15:30, 21 April 2026 Khalid 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. '^Lorcana_Wiki:Cascade%-protected items%f[/\0]', '^User:UBX%f[/...")
- 15:29, 21 April 2026 Khalid 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...")
- 15:28, 21 April 2026 Khalid 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...")
- 15:28, 21 April 2026 Khalid talk contribs created page Module:Message box/doc (Created page with "{{Documentation subpage}} This is a meta-module that implements the message box templates {{tl|mbox}}, {{tl|ambox}}, {{tl|cmbox}}, {{tl|fmbox}}, {{tl|imbox}}, {{tl|ombox}}, and {{tl|tmbox}}. It is intended to be used from Lua modules, and should not be used directly from wiki pages. If you want to use this module's functionality from a wiki page, please use the individual message box templates instead. == Usage == To use this module from another Lua module, first you n...")
- 15:27, 21 April 2026 Khalid talk contribs created page Module:Message box (Created page with "-- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Require necessary modules. local getArgs = require('Module:Arguments').getArgs local htmlBuilder = mw.html local categoryHandler = require('Module:Category handler').main local yesno = require('Module:Yesno') -- Load the configuration page. local cfgTables = mw.loadData('Module:Message box/configuration') -- Get a...")
- 15:25, 21 April 2026 Khalid 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'...")
- 15:17, 21 April 2026 Khalid talk contribs created page Template:Tabber (Created page with "local p = {} local getArgs = require( 'Module:Arguments' ).getArgs -- Implements Template:SubTabs -- You must enable namespaces on Main for obtaining the base page name to work correctly -- https://www.mediawiki.org/wiki/Manual:$wgNamespacesWithSubpages#Enabling-for-a-namespace function p.sub(frame) local args = getArgs(frame, { wrappers = { 'Template:SubTabs' } }) local main = args[1] or mw.title.getCurrentTitle().baseText -- Use {{BASEPAGENAME}} i...")
- 15:17, 21 April 2026 Khalid talk contribs created page Module:Tabber/doc (Created page with "{{Documentation subpage}} Implements {{tl|Tabber}} and {{tl|SubTabs}}.")
- 15:15, 21 April 2026 Khalid talk contribs created page Module:Tabber (Created page with "local p = {} local getArgs = require( 'Module:Arguments' ).getArgs -- Implements Template:SubTabs -- You must enable namespaces on Main for obtaining the base page name to work correctly -- https://www.mediawiki.org/wiki/Manual:$wgNamespacesWithSubpages#Enabling-for-a-namespace function p.sub(frame) local args = getArgs(frame, { wrappers = { 'Template:SubTabs' } }) local main = args[1] or mw.title.getCurrentTitle().baseText -- Use {{BASEPAGENAME}} i...")
- 14:52, 21 April 2026 Khalid talk contribs created page Template:Cite web/doc (Created page with "__NOTOC__ This template is used to cite sources in Wikipedia. It is specifically for web sites which are not news sources. This template replaces deprecated template:web reference. It provides lower case parameters only. A general discussion of the use of templates for adding citation of open-source web content to Wikipedia articles is available at citation templates. This pag...")
- 14:51, 21 April 2026 Khalid talk contribs created page Template:Cite web (Created page with "<includeonly>{{ #if: {{#if: {{{url|}}} | {{#if: {{{title|}}} |1}}}} ||Error on call to Template:cite web: Parameters '''url''' and '''title''' must be specified }}{{ #if: {{{archiveurl|}}}{{{archivedate|}}} | {{#if: {{#if: {{{archiveurl|}}}| {{#if: {{{archivedate|}}} |1}}}} ||Error on call to template:cite web: Parameters '''archiveurl''' and '''archivedate''' must be both specified or both omitted }} }}{{#if: {{{author|}}}{{{last|}}} | {{#if: {{{autho...")
- 14:39, 21 April 2026 Khalid talk contribs created page List of Lorcana sets (Redirected page to Set/Full list) Tag: New redirect
- 14:33, 21 April 2026 Khalid talk contribs created page Set/Full list (Created page with "{{Main portal tiles}} {{SubTabs |noitalic=1 |sub1=Full list }} {{TOCright}} {{box-header|title=List of Disney Lorcana sets}} 300px|right|thumb|alt=A booster box for The First Chapter|''The First Chapter'' booster box, the inaugural set of Disney Lorcana. Since the game's launch in August 2023, publisher Ravensburger has released several main sets and special products for the ''Disney Lorcana'' trading card game. Lorcana f...")
- 14:31, 21 April 2026 Khalid talk contribs created page Template:Documentation subpage (Created page with "<noinclude> {{Documentation|fr=Modèle:Sous-page documentation|tr=Şablon:Belgelendirme alt sayfası}} '''You are currently viewing the ''actual'' page for this template,''' despite what the text says in the preview of the banner below. == Template output == </noinclude><div style="margin:0; padding:1em; border: 0.5px solid #444c4d; border-radius:10px; display: flex; align-items: center;"> <div> left|40px|link=</div><div> '''This is a {{#swi...")
- 14:31, 21 April 2026 Khalid talk contribs deleted page Template:SubTabs/doc (content was: "<noinclude>{{Documentation subpage}}</noinclude> {{Lua|Tabber}} == Copy & Paste == <pre> {{SubTabs |sub1 = |sub2 = |sub3 = |sub4 = <noinclude> {{Documentation|fr=Modèle:Sous-page documentation|tr=Şablon:Belgelendirme alt sayfası}} '''You are currently viewing the ''actual'' page for this template,''' despite what the text says in the preview of the banner below. == Templat...", and the only contributor was "Khalid" (talk))
- 14:30, 21 April 2026 Khalid talk contribs created page Template:SubTabs/doc (Created page with "<noinclude>{{Documentation subpage}}</noinclude> {{Lua|Tabber}} == Copy & Paste == <pre> {{SubTabs |sub1 = |sub2 = |sub3 = |sub4 = <noinclude> {{Documentation|fr=Modèle:Sous-page documentation|tr=Şablon:Belgelendirme alt sayfası}} '''You are currently viewing the ''actual'' page for this template,''' despite what the text says in the preview of the banner below. == Template output == </noinclude><div style="margin:0; padding:1em; border: 0.5px solid #444c4d; borde...")
- 14:07, 21 April 2026 Khalid talk contribs created page Template:SubTabs (Created page with "<includeonly>{{#ifeq:{{{noitalic|}}}|1||{{ItalicRootTitle}}}}{{#invoke:Tabber|sub}}</includeonly><noinclude>{{documentation}}</noinclude>")
- 02:42, 21 April 2026 Khalid talk contribs created page Lorcana (Created page with "<!--{{Infobox | title = Disney Lorcana | image = Lorcana logo.png | caption = Official logo | designer = Ryan Miller, Steve Warner | publisher = Ravensburger | date = August 18, 2023 | type = Collectible card game | players = 2 or more | age = 8+ | cards = 60 (minimum) | playing_time = 30–45 minutes | website = [https://www.disneylorcana.com disneylorcana.com] }}--> '''Disney Lorcana''' is a collectible card game released by Ravensburger in collabora...")
- 02:40, 21 April 2026 Khalid talk contribs created page Template:Infobox (Created page with "<noinclude> Example usage: <pre> {{Infobox | title1=Example | image1=Example | caption-image1=Example }} </pre> <templatedata> {"params":{"title1":{"suggested":true},"image1":{"suggested":true},"caption-image1":{"suggested":true}},"sets":[],"maps":{}} </templatedata> </noinclude> <includeonly>{{#invoke:Infobox|infobox}}</includeonly><noinclude>{{Lua|Infobox}}</noinclude>")
- 21:39, 20 April 2026 Khalid talk contribs created page Portal:Products (stub)
- 21:38, 20 April 2026 Khalid talk contribs created page Template:Stub (Created page with "<noinclude>'''Stub''' is the most generic stub template for short articles. When possible, apply a more specific template from Category:Stub templates to help attract the attention of editors with interest in that particular field. == Usage == <code>1</code>: ''scope'', optional parameter. Replaces the text "article" with another phrase. === Example === <code><nowiki>{{Stub}}</nowiki></code> </noinclude>{{HeaderTemplate | image = So Tiny | title = Stub | message =...")
- 21:38, 20 April 2026 Khalid talk contribs created page Template:Random (Created page with "<noinclude>__NOTOC__ {{Lua|Random}} This template randomly selects one option from the given list each time the page loads. Due to caching of page data, the random selection may not change on ''every'' refresh. == Syntax == <code><nowiki>{{Random|Option1|Option2|Option3|...}}</nowiki></code> == Example == <code><nowiki>{{Random|Apples|Bananas|Cherries|Grapes}}</nowiki></code> This randomly displays either "Apples", "Bananas", "Cherries", or "Gra...")
- 21:37, 20 April 2026 Khalid talk contribs created page Template:Ombox (Created page with "{{#invoke:Message box|ombox}}<noinclude>{{documentation}}</noinclude>")
- 21:36, 20 April 2026 Khalid talk contribs created page Template:Lua (Created page with "{{Ombox | type = notice | name = Lua | style = | subst = <includeonly>{{subst:substcheck}}</includeonly> | small = {{{small|}}} | image = 40px|link= | text = '''This template uses Lua.'''{{#if:{{{1|}}}|<br/>Its code can be found under [[Module:{{ucfirst:{{{1}}}}}]].}} }} <includeonly>{{#ifeq:{{#pos:{{FULLPAGENAME}}|Template:}}|0|{{#if:{{#pos:{{FULLPAGENAME}}|/}}||Category:Lua templates}}}}</includeonly>...")
- 21:35, 20 April 2026 Khalid talk contribs created page Template:Expand (Created page with "<noinclude>Header template to encourage editors to expand the article. Adds article to Category:Articles to be expanded unless <code>nocat</code> option is used. == Usage == * <code>1</code>: ''scope'', optional parameter. Replaces the text "article or section" with another phrase. * <code>nocat</code>: optional parameter. Suppresses category if any value is provided. === Example === <code><nowiki>{{Expand}}</nowiki></code> </noinclude>{{HeaderTemplate | image = E...")
- 21:35, 20 April 2026 Khalid talk contribs created page Template:HeaderTemplate (Created page with "<includeonly><div class="headertemplate mobile-only"><!-- --><div class="tg-hatnote-icon">16px|link=</div><!-- --><div class="tg-hatnote-content">{{{message|}}}</div><!-- --></div> <div id="{{{id}}}" class="headertemplate desktop-only" style="background: {{{bg|#aaa}}}; color: {{{fg|#000}}};"> {| cellpadding="0" cellspacing="0" class="headertemplate-table" |- | class="headertemplate-icon" | {{#if:{{{image|}}}|File:{{{image|}}}.{{{ext|jpg}}}|{{{...")
- 21:34, 20 April 2026 Khalid talk contribs created page Category:Stub templates (Created page with "Stubs are short articles that might be improved by expansion, merger into a more notable article, or by deletion if their topic is not notable. Category:Maintenance templates")
- 21:32, 20 April 2026 Khalid talk contribs created page Template:Div col (Created page with "<includeonly><div class="div-col columns column-width" style="{{column-width|{{{colwidth|20em}}}}} <!-- -->{{#if: {{{gap|}}} | {{column-gap|{{{gap}}}}} }}<!-- -->{{#switch: {{{rules|}}} | = <!--empty--> | yes = {{column-rule}} | {{Column-rule|{{{rules}}}}} }} <!-- -->{{#ifeq: {{{small|}}}|yes | font-size:90%; }} <!-- -->{{#if: {{{style|}}} | {{{style}}} }}"><!-- -->{{#if: {{{content|}}} |{{{content}}}<!-- --></div>}}<!-- Inventory how ma...")
- 21:30, 20 April 2026 Khalid talk contribs created page Template:Cat (Created page with "[[:Category:{{{1}}}|{{{1}}}]]<noinclude> Links to a category, but displays the link without the word Category. The only parameter is the name of the category to link to, without the word Category. For example, <code><nowiki>{{cat|Cats}}</nowiki></code> produces {{cat|Cats}}, linking to Category:Cats. Category:Link formatting templates</noinclude>")
- 21:30, 20 April 2026 Khalid talk contribs created page Template:Columns-list (Created page with "<includeonly>{{div col | colwidth = {{{colwidth|20em}}} | gap = {{{gap|}}} | rules = {{{rules|}}} | style = {{{style|}}} | content = {{{1|}}} }}</includeonly><noinclude> {{documentation}}</noinclude>")
- 21:29, 20 April 2026 Khalid talk contribs created page Template:Box-footer (Created page with "<includeonly><!-- -->{{#if:{{{1|}}}|<div class="noprint"<!-- -->style="margin:0.3em 0.2em 0.2em 0.3em;<!-- -->padding:0.3em 0.2em 0.2em 0.3em;<!-- -->text-align:right;"><b>{{{1|}}}</b><!-- --></div>}}<!-- --><div style="clear:both;"></div><!-- --></div></includeonly><noinclude> {{Documentation | content = ===See also=== <!-- {{Portal template list}} --> Category:Wikipedia templates }}<!--(end Documentation)--> </noinclude>")
- 21:29, 20 April 2026 Khalid talk contribs created page Template:Documentation (Created page with "<!-- - Documentation template - A template used to show the contents of a documentation subpage - Note: Comments (<!-- --.>) are often used to avoid unnecessary line breaks or spaces. --> <!-- - Pre-defined variables --><!-- -->{{#vardefine: base page | {{{page| {{#ifeq: {{SUBPAGENAME}} | sandbox | {{NAMESPACE}}:{{BASEPAGENAME}} | {{FULLPAGENAME}} }} }}} }}<!-- -->{{#vardefine: current page | {{FULLPAGENAME}}}}<!-- -->{{#vardefine: doc page | {{#i...")
- 21:28, 20 April 2026 Khalid talk contribs created page Template:Box-header (Created page with "<div style="clear: both; <!-- -->border: {{{border-type|solid}}} {{{titleborder|var(--theme-border-color)}}}; <!-- -->border-width: {{{border-top|{{{border-width|1}}}}}}px {{{border-width|1}}}px 0; <!-- -->background: {{{titlebackground|var(--theme-accent-color)}}};<!-- -->color: {{{titleforeground|var(--theme-page-text-color)}}};<!-- -->padding: {{{padding|.1em}}};<!-- -->padding-top: {{{padding-top|.1em}}};<!-- -->padding-left: {{{padding-left|.1em}}};<!-...")
- 21:22, 20 April 2026 Khalid talk contribs created page Template:Lorcana news (Created page with "* Wilds Unknown releases May 15, 2026 – first Pixar cards! * Lorcana World Championship 2026 at Disneyland. * New ''Coco'' set announced for late 2026.")
- 21:22, 20 April 2026 Khalid talk contribs created page Template:Upcoming events (stub)
- 21:21, 20 April 2026 Khalid talk contribs created page Template:Featured article (sample featured article)
- 21:19, 20 April 2026 Khalid talk contribs created page Template:Main footer (Created page with "{{Main page chunk|align=center|content='''Lorcana Wiki''' is a free, open-content encyclopaedia that anyone can edit. This site is '''not''' affiliated with or endorsed by [http://www.wizards.com/ Wizards of the Coast].}}<noinclude>Category:Main page components</noinclude>")
- 21:15, 20 April 2026 Khalid talk contribs created page Template:Main page chunk (Created page with "<div class="{{{class|mpChunk}}}" style="border:1px solid #A3A9B1; display: block; padding: {{#if:{{{title|}}}|1em|0.5em 1em}}; margin-bottom: 1em; background:transparent; {{#if:{{{align|}}}|text-align:{{{align}}};}} -webkit-box-ordinal-group: {{{mobileorder}}}; -moz-box-ordinal-group: {{{mobileorder}}}; -ms-flex-order: {{{mobileorder}}}; -webkit-order: {{{mobileorder}}}; order: {{{mobileorder}}};"> {{#if:{{{title|}}}|<h3 style="margin: 0 0 1em 0; padding: 0.3em 0.6em; bo...")
- 21:14, 20 April 2026 Khalid talk contribs created page Template:Flexbox-header (Created page with "<noinclude>Flexbox is a template for arranging items on a page in neatly spaced horizontal or vertical grids. This is convenience wrapper for the underlying CSS technology of the same name. Flexbox is intended for use with Template:Flexbox-item-header, but it should work with any HTML element with the correct CSS properties set. It '''must''' be closed with either Template:Flexbox-footer, or a <code><nowiki></div></nowiki></code>. The same is true for each <cod...")
- 21:14, 20 April 2026 Khalid talk contribs created page Template:Flexbox-footer (Created page with "<noinclude>See Template:Flexbox-header.Category:Main page components</noinclude><includeonly></div></includeonly>")
- 21:13, 20 April 2026 Khalid talk contribs created page Template:Flexbox-item-header (Created page with "<noinclude>Flexbox-item-header opens a wrapper for elements within a flexbox. It sets several CSS properties that are meaningless outside of an HTML element with <code><nowiki>display: flex</nowiki></code>. It '''must''' be closed with either Template:Flexbox-footer, or a <code><nowiki></div></nowiki></code>. Flexbox-item-header accepts two parameters. <code>order</code> is required and sets the position of this flexbox-item relative to...")
- 21:12, 20 April 2026 Khalid talk contribs created page Template:Main header (Created page with "__NOTOC__ <div class="main-header-banner"> <h2 style="font-size: 22px; text-align: center; color: #493C51; padding:0 0 20px 0; margin:0; border: 0;"><strong>MTG Wiki</strong> — The unofficial <em>Magic: The Gathering</em> encyclopedia</h2> </div> {{Main portal tiles}}<noinclude> == Usage == This template is the top banner for the main page. For just the tiles without the text banner (e.g. for use on a portal page), see {{tl|Main portal tiles}}. Category:Main page c...")
- 21:12, 20 April 2026 Khalid talk contribs created page Template:Main portal tiles (Created page with "<div class="main-header-portals"> <span class="main-header-portals-desktop-text">Products & </span>Sets <span class="main-header-portals-desktop-text">Magic </span>Story <span class="main-header-portals-desktop-text">Making </span>Magic <span class="main-header-portals-desktop-text">Organized </span>Play Rules </div><noinclude> == Usage == Just the image tiles for portal...")
- 21:12, 20 April 2026 Khalid talk contribs created page Template:Tl (Created page with "{{[[Template:{{{1}}}|{{{1}}}]]}}<noinclude> '''Template link''' generator for use in talk pages and documentation pages. Produces inline text that links to the named template, surrounding it with <nowiki>{{ }}</nowiki>s to make it clear it is a template and reminding users how to use curly braces for template calls. ;Example :<code><nowiki>{{tl|Reflist}}</nowiki></code> produces {{tl|Reflist}} :Note that writing <code><nowiki>{{Reflist}}</nowiki></code> would actually...")
- 21:05, 20 April 2026 MediaWiki default talk contribs created page Main Page