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).
- 09:16, 13 June 2024 176.40.36.35 talk created page Template:Date/doc (Created page with "This template links to a year's relevant article. It should speed up the editing process and make the text more readable when editing. This template first tries to link to a year's dedicated article (e.g. {{Date|300}}), but if that article doesn't exist the template links to the relevant section of either Years after Aegon's Conquest or Years before Aegon's Conquest. ==Usage== ===One year=== {{tl|Date|#}} where <code>#</code> denotes the number of the year. Yea...")
- 09:16, 13 June 2024 176.40.36.35 talk created page Template:Date (Created page with "<includeonly>{{#invoke:Date|main}}</includeonly><noinclude>{{documentation}}</noinclude>")
- 09:13, 13 June 2024 176.40.36.35 talk created page Template:Ref/doc (Created page with "This template is used to add reference sources from the novels, short stories, for this purpose it is used just like the Wikipedia <code><nowiki><ref></nowiki></code> tag, only using standardised format, grouping references to the same source, to avoid excessive long reference list spam. ==Usage== Use the following codes to reference the respective work: {| class="wikitable" |- ! colspan="2" | ''Forsaken Saga'' |- | {{code|WoW}} || ''...")
- 09:10, 13 June 2024 176.40.36.35 talk created page Template:Ref (Created page with "<includeonly><!-- Using #tag to avoid the ref breaking parse numbering in templates. Next part parse book and chapters. -->{{#tag:ref|{{Ref/core|{{{1|}}}|{{{2|}}}|{{{3|}}}|{{{4|}}}}}<!-- -- Invoke a named footnote. It is what groups the ref's together. It is case sensitive and cannot start with a number, thus the R. -->|name=R{{lc:{{{1}}}{{{2}}}{{{3}}}{{{4}}}}} }}</includeonly><noinclude>{{documentation}}</noinclude>")
- 09:09, 13 June 2024 176.40.36.35 talk created page Module:Listify (Created page with "return function (str) str = str or "" str = mw.ustring.gsub(str, "<br%s*>", "\n") str = mw.ustring.gsub(str, "<BR%s: *>", "\n") str = mw.ustring.gsub(str, "^%*", "\n") str = mw.ustring.gsub(str, "\n%*", "\n") local t = {} for s in mw.ustring.gmatch(str, "([^\n]+)") do table.insert(t, s) end return t end")
- 09:09, 13 June 2024 176.40.36.35 talk created page Module:Ul (Created page with "local getArgs = require('Module:Arguments').getArgs local p = {} function p.main(frame) local args = getArgs(frame) local class = args['class'] local style = args['style'] local ul = mw.html.create('ul') if class ~= nil then ul:addClass(class) end if class ~= nil then ul:cssText(style) end for _, v in ipairs(args) do if v then ul:tag('li'):wikitext(v) end end return tostring(ul) end return p")
- 09:08, 13 June 2024 176.40.36.35 talk created page Template:Infobox value (Created page with "{{#invoke:Singular-plural|value}}")
- 09:08, 13 June 2024 176.40.36.35 talk created page Module:Singular-plural (Created page with "local getArgs = require('Module:Arguments').getArgs local ul = require('Module:Ul').main local listify = require('Module:Listify') local p = {} function p.label(frame) local args = getArgs(frame) local singular = args['singular'] or args['s'] local plural = args['plural'] or args['p'] local items = listify(args[1]) if #items == 1 then return singular else return plural end end function p.value(frame) local args = getArgs(frame) local class =...")
- 09:07, 13 June 2024 176.40.36.35 talk created page Template:Infobox label (Created page with "{{#invoke:Singular-plural|label}}")
- 09:06, 13 June 2024 176.40.36.35 talk created page Module:Coa/data (Created page with "return { -- ------ -- HOUSES -- ------ Ross = { file = "House Ross.png", page = "House Ross", }, Brock = { file = "House Brock.png", page = "House Brock", }, amber = { page = "House Amber", }, ambrose = { file = "House Ambrose.svg", page = "House Ambrose", }, appleton = { file = "House Appleton.svg", page = "House Appleton", }, arryn = { file = "House Arryn.svg", page = "House Arryn", }, arryngul...")
- 09:04, 13 June 2024 176.40.36.35 talk created page Module:Coa/core (Created page with "local getArgs = require('Module:Arguments').getArgs local data = mw.loadData('Module:Coa/data') local p = {} local function find_key(key) key = mw.ustring.lower(key) -- make lowercase local patterns = { -- "^%[%[file:", -- "%|.*%]%]$", -- "^house ", -- "^coin of", -- "%.png$", -- "%.svg$", -- "%.jpe?g$", } for _, pattern in pairs(patterns) do -- remove some words key = mw.ustring.gsub(key, pattern, "") end local patterns2 =...")
- 09:03, 13 June 2024 176.40.36.35 talk created page Module:Roman/doc (Created page with "See wikipedia:Module:Roman/doc. <includeonly> Category:Modules </includeonly>")
- 09:03, 13 June 2024 176.40.36.35 talk created page Module:Roman (Created page with "local getArgs = require('Module:Arguments').getArgs -- This module implements {{Roman}}. local p = {} -- This function implements the {{overline}} template. local function overline(s) return mw.ustring.format( '<span style="text-decoration:overline;">%s</span>', s ) end -- Gets the Roman numerals for a given numeral table. Returns both the string of -- numerals and the value of the number after it is finished being processed. local function getLetters(num, t)...")
- 09:03, 13 June 2024 176.40.36.35 talk created page Module:Separated entries (Created page with "-- This module takes positional parameters as input and concatenates them with -- an optional separator. The final separator (the "conjunction") can be -- specified independently, enabling natural-language lists like -- "foo, bar, baz and qux". The starting parameter can also be specified. local compressSparseArray = require('Module:TableTools').compressSparseArray local p = {} function p._main(args) local separator = args.separator -- Decode (convert to Unicode) HT...")
- 09:02, 13 June 2024 176.40.36.35 talk created page Module:Infobox character/name (Created page with "local getArgs = require('Module:Arguments').getArgs local yesno = require('Module:Yesno') local infobox_image = require('Module:InfoboxImage').InfoboxImage local br = require('Module:Separated entries').br local roman = require('Module:Roman').main local coa = require('Module:Coa/core').main local function split(inputstr, sep) -- This function splits a string by the given separating character sep = sep or '%s' local t = {} for field, s in mw.ustring.gmatch(input...")