All public logs
Combined display of all available logs of Forsaken Saga Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 01:19, 28 May 2024 Harrigton talk contribs created page Template:Infobox character/doc (Created page with "{{Infobox character | title = {{{title}}} | nickname = {{{nickname}}} | firstname = {{{firstname}}} | particle = {{{particle}}} | lastname = {{{lastname}}} | epithet = {{{epithet}}} | arms = None | arms2 = <!-- not needed if identical to {{{arms}}} --> | image = No portrait.svg | image_caption = {{{image_caption}}} | Alias = {{{Alias}}} | Title = {{{Title}}} | Allegiance = {{{Allegiance}}} | Predecessor = {{{Predecessor}}} | Successor = {{{S...")
- 01:18, 28 May 2024 Harrigton talk contribs created page Template:Infobox character (Created page with "<includeonly>{{Infobox | above = {{#invoke:Infobox character/name|main}} | abovestyle = font-weight:bold; background: none; line-height: 1.1em; | image = {{#if:{{{image|}}}|{{#invoke:InfoboxImage|InfoboxImage|image={{{image}}}|maxsize=400px|sizedefault=350x560px|border=no|suppressplaceholder={{main other|yes|no}}}}}} | caption = {{#if:{{{image_caption|}}} | {{{image_caption}}} }} | data2 = {{#if:{{{image|}}}|{{#ifeq:{{{image|}}}|<br>||<hr>}}|Category:Character...")
- 01:18, 28 May 2024 Harrigton talk contribs created page Template:Infobox/doc (Created page with "<noinclude>{{notice|This is a documentation subpage for Template:Infobox}}<hr></noinclude> =Template documentation= This template is intended as a meta-template: a template used for constructing other templates. It is not meant for use directly in an article, but can be used on a one-off basis if required. for more info see [http://en.wikipedia.org/wiki/Template:Infobox wikipedia] ==Usage Example== {| width=100% |Basic Usage example (for more practical example see [...")
- 01:17, 28 May 2024 Harrigton talk contribs created page File:Template info icon.svg
- 01:17, 28 May 2024 Harrigton talk contribs uploaded File:Template info icon.svg
- 01:00, 28 May 2024 Harrigton 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...")
- 00:58, 28 May 2024 Harrigton talk contribs created page Module:Documentation/config (Created page with "---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. ---------------------------------------------------------------------------------...")
- 00:56, 28 May 2024 Harrigton 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}}. -- Load necessary modules. require('Module:No globals') local getArgs local yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -- Define constants local CONFIG_MODULE = 'Module:Message box/configuration' ---------------------------------...")
- 00:56, 28 May 2024 Harrigton talk contribs created page Template:Infobox (Created page with "<includeonly>{{#invoke:Infobox|infobox}}</includeonly><noinclude> {{documentation}}</noinclude>")
- 00:56, 28 May 2024 Harrigton talk contribs created page Template:Infobox Book (Created page with "{{Infobox | italic title = {{{italic title|yes}}} | above = {{{name<includeonly>|{{PAGENAME}}</includeonly>}}} | abovestyle = background: #DEDEE2; text-align:center; font-style: italic; | subheader = {{{subtitle|}}} | subheaderstyle = text-align:center; font-style: italic; font-weight:bold; | image = {{{image| 175px}}} | caption = {{{image_caption|}}} | label3 = Author | data3 = {{{author|}}} | label4 = Original title |...")
- 00:55, 28 May 2024 Harrigton talk contribs created page Module:Yesno/doc (Created page with "See wikipedia:Module:Yesno/doc. <includeonly> Category:Meta-modules </includeonly>")
- 00:55, 28 May 2024 Harrigton 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 mw.ustring.lower(val) or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y'...")
- 00:54, 28 May 2024 Harrigton talk contribs created page Module:No globals/doc (Created page with "See wikipedia:Module:No globals/doc. <includeonly> Category:Meta-modules </includeonly>")
- 00:54, 28 May 2024 Harrigton 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)")
- 00:52, 28 May 2024 Harrigton talk contribs created page Module:Arguments/doc (Created page with "{{Used in system}} {{Module rating|p}} This module provides easy processing of arguments passed from <code>#invoke</code>. It is a meta-module, meant for use by other modules, and should not be called from <code>#invoke</code> directly (for a module directly invocable by templates you might want to have a look at {{ml|params|}}). Its features include: * Easy trimming of arguments and removal of blank arguments. * Arguments can be passed by both the current frame and by...")
- 00:52, 28 May 2024 Harrigton 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'...")
- 00:50, 28 May 2024 Harrigton talk contribs created page Module:Documentation (Created page with "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs local messageBox = require('Module:Message box') -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are ma...")
- 00:49, 28 May 2024 Harrigton talk contribs created page Template:Nowrap (Created page with "<includeonly><span style="white-space:nowrap">{{{1}}}</span></includeonly><noinclude>{{Documentation}}</noinclude>")
- 00:48, 28 May 2024 Harrigton talk contribs created page Module:Italic title/doc (Created page with "This template italicizes page titles. Article titles cannot contain wiki-formatting, such as <code><nowiki>''</nowiki></code>, so cannot be italicized in the normal way. Instead, place this template in the article, normally at the very top. It will then have the following effect: *Titles with no parentheses <code>()</code> are fully italicised: **{{Nowrap|<code>Foo</code>}} → {{Nowrap|'''''Foo'''''}} **{{Nowrap|<code>Talk:Foo</code>}} → {{Now...")
- 00:48, 28 May 2024 Harrigton talk contribs created page Module:Italic title (Created page with "-- This module implements {{italic title}}. require('Module:No globals') local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg local yesno = require('Module:Yesno') -------------------------------------------------------------------------------- -- ItalicTitle class -------------------------------------------------------------------------------- local ItalicTitle = {} do -----...")
- 00:47, 28 May 2024 Harrigton talk contribs created page Template:Italic title (Created page with "{{#invoke:Italic title|main}}<noinclude> {{documentation}} </noinclude>")
- 21:33, 27 May 2024 Harrigton talk contribs created page Forsaken Saga (Created page with "Although the Forsaken Saga series has not yet been officially published, it is a novel series that continues to be published in stages online. While it is planned to have seven books, this number may change in the future. The first book of the series, 'Winds of Night,' is currently in the writing stage and is being published on RoyalRoad, Wattpad, and ForsakenSaga.com. Forsaken Saga is set in a fictional universe and falls under the fantasy novel genre, specificall...")
- 21:20, 27 May 2024 Harrigton talk contribs created page File:Beige-bg rounded.png
- 21:20, 27 May 2024 Harrigton talk contribs uploaded File:Beige-bg rounded.png
- 20:30, 27 May 2024 Harrigton talk contribs created page MediaWiki:Common.css (Created page with "CSS placed here will be applied to all skins: For linked citation numbers and document IDs, where the number need not be shown on a screen or a handheld, but should be included in the printed version: @media screen, handheld { .citation *.printonly { display: none; } } body.page-Main_Page h1.firstHeading { display: none; } table.collapsed tr.collapsible { display: none; } /* Allow limiting of which header levels are shown in a...")
- 05:17, 26 May 2024 Harrigton talk contribs created page Module:Documentation/config (Created page with "---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. ---------------------------------------------------------------------------------...")
- 05:16, 26 May 2024 Harrigton talk contribs created page Module:Documentation (Created page with "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs local messageBox = require('Module:Message box') -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are ma...")
- 05:15, 26 May 2024 Harrigton talk contribs created page Template:Documentation (Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 05:15, 26 May 2024 Harrigton talk contribs created page Template:Hlist (Created page with "{{<includeonly>safesubst:</includeonly>#invoke:list|horizontal}}<noinclude> {{documentation}} </noinclude>")
- 05:14, 26 May 2024 Harrigton talk contribs created page Template:Columns (Created page with "<includeonly>{{#if: {{{count|}}}{{{style|}}}{{{colwidth|}}} | <div style="columns:{{#if:{{{colwidth|}}}|{{{colwidth}}}}}{{#if:{{{count|}}}|<nowiki> </nowiki>{{{count}}}}}; {{{style|}}}"> {{{data|{{{content|}}}}}}</div> <!-- New line is necessary to properly render wiki markup --> | <div style="column-count:{{{1}}}; column-width:300px;"> {{{2}}}</div>}}</includeonly><noinclude> Divides list or text into columns automatically. No need to count and divide into table cells...")
- 20:48, 17 April 2024 Harrigton talk contribs created page File:Ross.png
- 20:48, 17 April 2024 Harrigton talk contribs uploaded File:Ross.png
- 17:53, 17 April 2024 MediaWiki default talk contribs created page Main Page