Main public logs
Combined display of all available logs of Adaris. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:27, 7 September 2024 Oros talk contribs created page Module:TNT (Created page with "-- -- INTRO: (!!! DO NOT RENAME THIS PAGE !!!) -- This module allows any template or module to be copy/pasted between -- wikis without any translation changes. All translation text is stored -- in the global Data:*.tab pages on Commons, and used everywhere. -- -- SEE: https://www.mediawiki.org/wiki/Multilingual_Templates_and_Modules -- -- ATTENTION: -- Please do NOT rename this module - it has to be identical on all wikis. -- This code is maintained...")
- 22:27, 7 September 2024 Oros 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....")
- 22:27, 7 September 2024 Oros talk contribs created page Template:Tracking category (Created page with "{{Cmbox | type = notice | image = 80px|alt=|link= | text =<div style="text-align: center; font-size: larger; font-weight: bold; width: 87%; margin: 0px auto 0px 0px">This is a tracking category{{#if:{{{template|}}}|<br />for the template {{tl|{{{template}}}}}|}}.</div>''It is used to build and maintain a list or lists of pages{{#if:{{{template|}}}| that use {{tl|{{{template}}}}}|}}—primarily for the sake...")
- 22:26, 7 September 2024 Oros talk contribs created page Template:Tracking cat (Redirected page to Template:Tracking category) Tag: New redirect
- 22:25, 7 September 2024 Oros talk contribs created page Module:List (Created page with "local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] = true, ['ordered'] = true, ['horizontal_ordered'] = true } function p.makeListData(listType, args) -- Constructs a data table to be passed to p.renderList. local data = {} -- Classes and TemplateStyles data.classes = {} data.templatestyles = ''...")
- 22:25, 7 September 2024 Oros talk contribs created page Module:Uses TemplateStyles (Created page with "local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') local TNT = require('Module:TNT') local p = {} local function format(msg, ...) return TNT.format('I18n/Uses TemplateStyles', msg, ...) end local function getConfig() return mw.loadData('Module:Uses TemplateStyles/config') end local function renderBox(tStyles) local boxArgs = { type = 'notice...")
- 22:24, 7 September 2024 Oros talk contribs created page Template:Uses TemplateStyles (Created page with "<includeonly>{{#invoke:Uses TemplateStyles|main}}</includeonly><noinclude>{{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
- 22:24, 7 September 2024 Oros 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...")
- 22:23, 7 September 2024 Oros 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 ---------------------------------------------------------------------------...")
- 22:23, 7 September 2024 Oros talk contribs created page Template:Cmbox (Created page with "{{#invoke:Message box|cmbox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 22:22, 7 September 2024 Oros talk contribs created page Template:Maintenance category (Created page with "__EXPECTUNUSEDCATEGORY__ {{Cmbox |type=notice |text=<div>This is a '''maintenance category''', used for maintenance of the Wikipedia project. It is not part of the encyclopedia and contains non-article pages, or groups articles by status rather than subject. Do not include this category in content categories.</div>{{#if: {{Yesn...")
- 22:22, 7 September 2024 Oros talk contribs created page Category:Hatnote template tracking categories (Created page with "{{Maintenance category|container=true}} Categories used by various hatnote templates for tracking purposes.") Tag: Visual edit
- 22:21, 7 September 2024 Oros talk contribs created page Category:Hatnote templates parameter issues (Created page with "{{Maintenance category|container=yes}} Parameter issues categories in templates that generate Wikipedia:Hatnotes.") Tag: Visual edit
- 22:21, 7 September 2024 Oros talk contribs created page Category:Articles with hatnote templates targeting a nonexistent page (Created page with "{{tracking cat|hidden=yes}} {{polluted category}} {{backlog|200}} {{CatAutoTOC}} This category tracks uses of hatnote templates that provide as targets pages that do not exist. It is populated by all hatnote templates that use automatic formatting.") Tag: Visual edit
- 22:20, 7 September 2024 Oros talk contribs created page Module:Hatnote/styles.css (Created page with "{{pp|small=y}}: .hatnote { font-style: italic; } Limit structure CSS to divs because of Module:Hatnote inline: div.hatnote { @noflip: padding-left: 1.6em; margin-bottom: 0.5em; } .hatnote i { font-style: normal; } The templatestyles element inserts a link element before hatnotes. * TODO: Remove link if/when WMF resolves T200206: .hatnote + link + .hatnote { margin-top: -0.5em; } @media print { body.ns-0 .hatnote { display: none !impo...")
- 22:19, 7 September 2024 Oros 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 =...")
- 22:18, 7 September 2024 Oros 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'...")
- 22:17, 7 September 2024 Oros talk contribs created page Module:Format link (Created page with "-------------------------------------------------------------------------------- -- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the {{format link}} template. -------------------------------------------------------------------------------- local libraryUtil = require(...")
- 22:17, 7 September 2024 Oros talk contribs created page Module:Hatnote list (Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote list -- -- -- -- This module produces and formats lists for use in hatnotes. In particular, -- -- it implements the for-see list, i.e. lists of "For X, see Y" statements, -- -- as used in {{about}}, {{redirect}}, and their variants. Also introd...")
- 22:15, 7 September 2024 Oros 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....")
- 22:15, 7 September 2024 Oros talk contribs created page Module:Labelled list hatnote (Created page with "-------------------------------------------------------------------------------- -- Labelled list -- -- -- -- This module does the core work of creating a hatnote composed of a list -- -- prefixed by a colon-terminated label, i.e. "LABEL: [andList of pages]", -- -- for {{see also}} and similar templates....")
- 21:59, 7 September 2024 Oros talk contribs created page Template:Plainlink (Created page with "<span class="plainlinks">{{SAFESUBST:<noinclude />#if:{{{2|{{{NAME|{{{name|}}}}}}}}} |[{{{1|{{{URL|{{{url}}}}}}}}} {{{2|{{{NAME|{{{name|}}}}}}}}}] |[{{{1|{{{URL|{{{url}}}}}}}}}] }}</span><noinclude> {{documentation}} </noinclude>")
- 21:59, 7 September 2024 Oros talk contribs created page Template:TemplateData header (Created page with "{{#if:{{{1|}}} |<span class="toolbar class" style="font-size:150%; font-weight:bold;">50pxTemplate Data </span> [{{plainlink|url={{fullurl:{{{2|{{SUBJECTSPACE}}:{{ROOTPAGENAME}}/{{SUBPAGENAME}}}}}}}|name=view}}] [{{plainlink|url={{fullurl:{{{2|{{SUBJECTSPACE}}:{{ROOTPAGENAME}}/{{SUBPAGENAME}}}}}}}|name=edit}}] [{{plainlink|url={{fullurl:{{{2|{{SUBJECTSPACE}}:{{ROOTPAGENAME}}/{{SUBPAGENAME}}}}}}}|name=hist...")
- 21:51, 7 September 2024 Oros talk contribs changed the content model of the page Template:Hatnote/styles.css from "wikitext" to "Sanitized CSS"
- 21:50, 7 September 2024 Oros talk contribs changed the content model of the page Hatnote/styles.css from "wikitext" to "Sanitized CSS"
- 19:59, 7 September 2024 Oros talk contribs created page Hatnote/styles.css (Created page with ".hatnote { font-style: italic; padding-bottom: 0.4em; margin-bottom: 0.4em; border-bottom: 1px solid #ccc; } .hatnote.no-border { border-bottom: none; }")
- 19:58, 7 September 2024 Oros talk contribs created page Template:Hatnote/styles.css (Created page with ".hatnote { font-style: italic; padding-bottom: 0.4em; margin-bottom: 0.4em; border-bottom: 1px solid #ccc; } .hatnote.no-border { border-bottom: none; }")
- 19:57, 7 September 2024 Oros talk contribs created page Template:Documentation (Created page with "{{Documentation subpage}} <!-- Add categories where indicated at the bottom of this page and interwikis at Wikidata --> {{Uses TemplateStyles|Template:Hatnote/styles.css}} This template produces formatted text, following the guideline for a '''hatnote'''. :<code><nowiki>{{hatnote|Example hatnote text.}}</nowiki></code> →<br/><!-- a construct to show hatnote as expected (using newline) --> {{hatnote|Example hatnote text.}} Broadly speaking, a hatnote should answer a...")
- 19:57, 7 September 2024 Oros talk contribs created page Template:Hatnote (Created page with "<templatestyles src="Hatnote/styles.css"/><div role="note" class="hatnote {{{extraclasses|}}}">{{{1|{{{text}}}}}}</div><noinclude> {{documentation}} </noinclude>")
- 19:54, 7 September 2024 Oros talk contribs created page Template:See also (Created page with "<includeonly>{{#invoke:Labelled list hatnote|labelledList|See also}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 19:24, 7 September 2024 Oros talk contribs created page File:Errosion.jpg
- 19:24, 7 September 2024 Oros talk contribs uploaded File:Errosion.jpg
- 02:37, 7 September 2024 Oros talk contribs created page File:The Great Erosion.jpg
- 02:37, 7 September 2024 Oros talk contribs uploaded File:The Great Erosion.jpg
- 02:36, 7 September 2024 Oros talk contribs created page The Great Erosion (Created page with "{{Template:Event |title=The Great Erosion |subtitle=The Shaping of Terasil by the Elements |image=thumb |caption=A depiction of the elemental forces of water, air, and fire converging on the unyielding earth of Terasil. |label1=Name |data1=The Great Erosion |label2=Type |data2=Cosmic Event |label3=Location |data3=Primarily Terasil, but its effects rippled throughout Adaris |label4=Significance |data4=The transformation of Terasil and the creati...")
- 02:12, 7 September 2024 Oros talk contribs created page Template:Event (Infobox created with infobox builder.)
- 22:48, 6 September 2024 Oros talk contribs created page Awenlasiari (Redirected page to Awenlasia) Tags: New redirect Visual edit
- 22:43, 6 September 2024 Oros talk contribs created page Awenlasia (Created page with "{{Template:Osia |title=Awenlasia |subtitle=The Esoteric Art of Dream and Imagination Manipulation |image=thumb |caption=A symbol representing the manipulation of imagination and dreams in Adaris. |label1=Practitioners |data1=Awenlasiari |label2=Focus |data2=Manipulation of creativity, dreams, and imagination |label3=Origin |data3=The Primordial Spirit of Imagination, Awenlas }} '''Awenlasia''' is the theoretical and esoteric branch of '''Os...")
- 22:36, 6 September 2024 Oros talk contribs created page Shasiari (Redirected page to Shasia) Tags: New redirect Visual edit
- 22:29, 6 September 2024 Oros talk contribs created page Shasia (Created page with "{{Template:Osia |title=Shasia |subtitle=The Manipulation of Wind and Air Spirits |image=thumb |caption=A symbol representing the manipulation of wind spirits in Adaris |label1=Practitioners |data1=Shasiari |label2=Focus |data2=Control of wind, atmosphere, and air spirits |label3=Origin |data3=The Primordial Spirit of Atmosphere, Shasae }} '''Shasia''' is the branch of '''Osia''' that focuses on the manipulation of wind and air spirits, wit...") Tag: Visual edit: Switched
- 22:25, 6 September 2024 Oros talk contribs deleted page Tajasia (content was: "{{Template:Osia |title=Tajasia |subtitle=The Manipulation of Fire Spirits |image=thumb |caption=A symbol representing the manipulation of fire spirits in Adaris |label1=Practitioners |data1=Tajasiari |label2=Focus |data2=Control of fire, heat, and transformation |label3=Origin |data3=The Primordial Spirit of Fire, Tejas }} '''Tajasia''' is a branch of '''...", and the only contributor was "Oros" (talk))
- 22:24, 6 September 2024 Oros talk contribs deleted page Tajasiari (content was: "#REDIRECT Tajasia", and the only contributor was "Oros" (talk))
- 22:24, 6 September 2024 Oros talk contribs created page Tejasiari (Redirected page to Tejasia) Tags: New redirect Visual edit
- 22:23, 6 September 2024 Oros talk contribs undeleted page Tejasia (2 revisions)
- 22:22, 6 September 2024 Oros talk contribs deleted page Tejasia (content was: "#REDIRECT Tajasia", and the only contributor was "Oros" (talk))
- 22:21, 6 September 2024 Oros talk contribs created page Tejasia (Created page with "{{Template:Osia |title=Tajasia |subtitle=The Manipulation of Fire Spirits |image=thumb |caption=A symbol representing the manipulation of fire spirits in Adaris |label1=Practitioners |data1=Tajasiari |label2=Focus |data2=Control of fire, heat, and transformation |label3=Origin |data3=The Primordial Spirit of Fire, Tejas }} '''Tajasia''' is a branch of '''Osia''', focusing on the manipulation of the fire spirits tied to the primordial elem...")
- 22:17, 6 September 2024 Oros talk contribs created page Kairosiari (Redirected page to Kairosia) Tags: New redirect Visual edit
- 22:14, 6 September 2024 Oros talk contribs created page Kairosia (Created page with "{{Template:Osia |title=Kairosia |subtitle=The Manipulation of Time Spirits |image=thumb |caption=A symbol representing the manipulation of time spirits in Adaris |label1=Practitioners |data1=Kairosiari |label2=Focus |data2=Control of time, temporal flow, and manipulation of moments |label3=Origin |data3=The Ascendant Spirit of Time, Kairos }} '''Kairosia''' is a rare and highly advanced branch of '''Osia''', focusing on the manipulation...")
- 22:13, 6 September 2024 Oros talk contribs created page Dhasari (Redirected page to Dhasia) Tags: New redirect Visual edit
- 22:12, 6 September 2024 Oros talk contribs created page Jalasiari (Redirected page to Jalasia) Tags: New redirect Visual edit