Main public logs
More actions
Combined display of all available logs of The Tribes Depot. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:47, 18 December 2023 Bigwig talk contribs created page Module:Mbox (Created page with "local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local mArguments -- lazily initialise Module:Arguments local mError -- lazily initialise Module:Error local p = {} --- Helper function to throw error -- -- @param msg string - Error message -- -- @return string - Formatted error message in wikitext local function makeWikitextError( msg ) mError = require( 'Module:Error' ) return mError.error{ message = 'Error: ' .. msg .. '...")
- 22:46, 18 December 2023 Bigwig talk contribs created page Module:Format link (Created page with "-- Imported from: https://en.wikipedia.org/wiki/Module:Format_link -------------------------------------------------------------------------------- -- 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. -----------------------------------------...")
- 22:45, 18 December 2023 Bigwig 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:45, 18 December 2023 Bigwig talk contribs created page Module:User error (Created page with "-------------------------------------------------------------------------------- -- A less intimidating version of the built-in "error()" function, to help -- editors fix their mistakes when transcluding a template. -- -- @see wikia:w:c:Dev:Module:User error for a similar module. -------------------------------------------------------------------------------- local checkType = require("libraryUtil").checkType; return function (message, ...) checkType("Module:User...")
- 22:44, 18 December 2023 Bigwig talk contribs created page Module:DPLlua (Created page with "-- <nowiki> local dpl = {} local libraryUtil = require( 'libraryUtil' ) local hasContent = require( 'Module:Paramtest' ).has_content local checkType = libraryUtil.checkType local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg dpl.pipe = '¦' local dataContentMarker = '`#@@#`' local allIncludedParamNames = {} -- Custom function for splitting a string because mw.text.split() is waaay too slow local function split( str, pattern, plain ) local res = {} local con...")
- 22:44, 18 December 2023 Bigwig talk contribs created page Module:Paramtest (Created page with "-- Imported from: https://runescape.wiki/w/Module:Paramtest --[[ {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any value |fuse3 = If arg1 exists and does not only contain whitespace, the function returns arg1...")
- 22:42, 18 December 2023 Bigwig 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:41, 18 December 2023 Bigwig talk contribs created page Module:Yesno (Created page with "-- Imported from: https://en.wikipedia.org/wiki/Module:Yesno -- 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...")
- 22:41, 18 December 2023 Bigwig talk contribs created page Module:Array (Created page with "-- Imported from: https://runescape.wiki/w/Module:Array local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti ---@class Array ---@operator call(any[]): Array ---@operator concat(any[]): Array ---@operator concat(number|string|function): string ---@operator unm: Array ---@operator add(number|number[]|Array): Array ---@operator sub(number|number[]|Array): Array ---@operator mul(number|number[]...")
- 22:40, 18 December 2023 Bigwig talk contribs created page Module:DependencyList (Created page with "require("strict"); local p = {} local libraryUtil = require( 'libraryUtil' ) local arr = require( 'Module:Array' ) local yn = require( 'Module:Yesno' ) local param = require( 'Module:Paramtest' ) local dpl = require( 'Module:DPLlua' ) local userError = require("Module:User error") local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local moduleIsUsed = false local COLLAPSE_LIST_LENGTH_THRESHOLD = 1 local MAX_DYNAMIC_REQUIRE_LIST_LE...")
- 22:39, 18 December 2023 Bigwig talk contribs created page Module:About (Created page with "local mArguments --initialize lazily local mHatnote = require('Module:Hatnote') local mHatList = require('Module:Hatnote list') local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local p = {} function p.about (frame) -- A passthrough that gets args from the frame and all mArguments = require('Module:Arguments') args = mArguments.getArgs(frame) return p._about(args) end function p._about (args, options) -- Produces "about" hatnote....")
- 22:39, 18 December 2023 Bigwig talk contribs created page Module:Documentation (Created page with "-- <nowiki> local dependencyList = require( 'Module:DependencyList' ) local yn = require( 'Module:Yesno' ) local hatnote = require( 'Module:Hatnote' )._hatnote local mbox = require( 'Module:Mbox' )._mbox local lang = mw.getContentLanguage() local p = {} function p.doc( frame ) local title = mw.title.getCurrentTitle() local args = frame:getParent().args local page = args[1] or mw.ustring.gsub( title.fullText, '/doc$', '' ) local ret, cats, ret1, ret2, ret...")
- 22:38, 18 December 2023 Bigwig talk contribs created page Module:String (Created page with "--[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. Global options ignore_errors: If set to 'true' or 1, any error c...")
- 22:15, 18 December 2023 Bigwig talk contribs created page Template:Statsbar (Created page with "<includeonly>{{#invoke:Statsbar|statsbar}}</includeonly><noinclude> {{/doc}} <!-- Categories go in the /doc subpage --> </noinclude>")
- 22:12, 18 December 2023 Bigwig talk contribs created page Template:Tsh (Redirected page to Template:Template shortcut) Tag: New redirect
- 22:12, 18 December 2023 Bigwig talk contribs created page Template:Mono (Created page with "<span style="font-family: monospace, monospace;">{{{2|{{{1}}}}}}</span><noinclude> {{/doc}}</noinclude>")
- 22:12, 18 December 2023 Bigwig talk contribs created page Template:Template link with link off (Created page with "<includeonly>{{#Invoke:Template link general|main|nowrap=yes|nolink=yes}}</includeonly><noinclude> {{/doc}} <!-- Add categories to the /doc subpage, not here! --> </noinclude>")
- 22:12, 18 December 2023 Bigwig talk contribs created page Template:Tlf (Redirected page to Template:Template link with link off) Tag: New redirect
- 22:11, 18 December 2023 Bigwig talk contribs created page Template:Tlg (Redirected page to Template:Template link general) Tag: New redirect
- 22:10, 18 December 2023 Bigwig talk contribs created page Template:Shortcut (Created page with "<includeonly>{{#invoke:Shortcut|main}}</includeonly><noinclude>{{/doc}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 22:10, 18 December 2023 Bigwig talk contribs created page Template:Short description/doc (Created page with "{{Documentation}} {{tsh|SHORTDESC}} {{t|Short description}} is used to add a short description to a page. == Usage == {{tlx|Short description|Write your short description here}} == TemplateData == <templatedata> { "params": { "1": { "label": "Description", "description": "The short description of the article", "example": "Online free encyclopedia anyone can edit", "required": true, "type": "content" } }, "descrip...")
- 22:09, 18 December 2023 Bigwig talk contribs created page Template:Short description (Created page with "{{#if:{{{1|}}}|{{SHORTDESC:{{{1|}}}}}|{{SHORTDESC:}}}}<noinclude> {{/doc}}</noinclude>")
- 22:09, 18 December 2023 Bigwig talk contribs created page Template:SHORTDESC (Redirected page to Template:Short description) Tag: New redirect
- 22:09, 18 December 2023 Bigwig talk contribs created page Template:Plain link (Created page with "<!-- The {{#if:1|...}} trims any leading and trailing whitespace without breaking <nowiki> like {{#sub:...}} does: --> <onlyinclude><span class="plainlinks">[{{<includeonly>safesubst:</includeonly>#if:1|{{{1|{{{URL|{{{url}}}}}}}}} {{{2|{{{NAME|{{{name|}}}}}}}}}}}]</span></onlyinclude> {{/doc}}")
- 22:09, 18 December 2023 Bigwig talk contribs created page Template:Para (Created page with "<code class="nowrap" {{#if:{{{plain|}}}|style="border:none;background-color:inherit;color:inherit;"}}>|{{#if:{{{1|}}}|{{{1}}}=}}{{{2|}}}</code><noinclude>{{/doc}}</noinclude>")
- 22:08, 18 December 2023 Bigwig talk contribs created page Template:Tag (Created page with "<code class="{{#ifeq:{{{wrap|}}}|yes|wrap|nowrap}}" style="{{#ifeq:{{{style|}}}|plain|border:none;background:transparent;|{{{style|}}}}}"><!-- Opening tag -->{{#switch:{{{2|pair}}} |c|close = |s|single |o|open |p|pair = <{{{1|tag}}}{{#if:{{{params|}}}| {{{params}}}}} }}<!-- Content between tags -->{{#switch:{{{2|pair}}} |c|close = {{{content|}}} |s|single = /> |o|open = >{{{content|}}} |p|pair = {{#ifeq:{{{1|tag}}}|!--||>}}{{{c...")
- 22:08, 18 December 2023 Bigwig talk contribs created page Template:Template shortcut (Created page with "<includeonly>{{#invoke:Shortcut|main|template=yes}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 22:08, 18 December 2023 Bigwig talk contribs created page Template:Time ago (Created page with "{{#invoke:Time ago|main}}<noinclude>{{/doc}}</noinclude>")
- 22:07, 18 December 2023 Bigwig talk contribs created page Template:Template link general/doc (Created page with "{{Documentation}} {{Wikipedia template}} {{tsh|{{{1|tlg}}}|{{{2|}}}}} This template, often abbreviated as {{tlf|{{#switch:{{lc:{{ROOTPAGENAME}}}} | tlg | template link general = tlg | tlb | template link with bold = tlb | tlc | template link code = tlc | tlw ||template link with linked braces = tlw | tlf | template link with link off = tlf | tltss | template link with title span, subst = tltss | tlx | template link expanded = tlx | tlxb | template link expanded with bo...")
- 22:07, 18 December 2023 Bigwig talk contribs created page Template:Template link general (Created page with "{{{{{|safesubst:}}}#Invoke:Template link general|main}}<noinclude> {{/doc}} </noinclude>")
- 22:07, 18 December 2023 Bigwig talk contribs created page Template:Tl (Redirected page to Template:Template link general) Tag: New redirect
- 22:07, 18 December 2023 Bigwig talk contribs created page Template:Template link expanded/doc (Created page with "{{Documentation}} {{Wikipedia template}} {{tsh|{{{1|tlg}}}|{{{2|}}}}} This template, often abbreviated as {{tlf|{{#switch:{{lc:{{ROOTPAGENAME}}}} | tlg | template link general = tlg | tlb | template link with bold = tlb | tlc | template link code = tlc | tlw ||template link with linked braces = tlw | tlf | template link with link off = tlf | tltss | template link with title span, subst = tltss | tlx | template link expanded = tlx | tlxb | template link expanded with bo...")
- 22:06, 18 December 2023 Bigwig talk contribs created page Template:Template link expanded (Created page with "{{#Invoke:Template link general|main|code=on}}<noinclude> {{/doc}} <!-- Add categories to the /doc subpage, not here! --> </noinclude>")
- 22:06, 18 December 2023 Bigwig talk contribs created page Template:Tlx (Redirected page to Template:Template link expanded) Tag: New redirect
- 22:06, 18 December 2023 Bigwig talk contribs created page Template:Tnull (Created page with "<code>{{{{#if:{{{1|}}}|{{{1}}}| tnull|...}}{{#if:{{{2|}}}||{{{2}}}|}}{{#if:{{{3|}}}||{{{3}}}|}}{{#if:{{{4|}}}||{{{4}}}|}}{{#if:{{{5|}}}||{{{5}}}|}}{{#if:{{{6|}}}||{{{6}}}|}}{{#if:{{{7|}}}||{{{7}}}|}}{{#if:{{{8|}}}||{{{8}}}|}}{{#if:{{{9|}}}||{{{9}}}|}}}}</code><noinclude>{{/doc}}</noinclude>")
- 22:05, 18 December 2023 Bigwig talk contribs created page Template:Navplate (Created page with "<includeonly>{{#invoke:Navplate|navplate}}</includeonly><noinclude> {{/doc}} <!-- Categories go in the /doc subpage --> </noinclude>")
- 22:05, 18 December 2023 Bigwig talk contribs moved page Template:HeadingB/ to Template:HeadingB without leaving a redirect
- 22:04, 18 December 2023 Bigwig talk contribs created page Template:HeadingB/ (Created page with "<h2 style="padding:0.2em 0.4em; margin:10px 0 10px 0; border:1px solid var( --border-color-base ); background: var( --color-destructive ); color: white; font-size:120%; font-weight:bold; text-align:left;">{{{1}}}</h2><noinclude>{{PAGENAME}}</noinclude>")
- 22:01, 18 December 2023 Bigwig talk contribs created page Template:Navplate wiki (Created page with "{{Navplate |id=wiki |subtitle=In the |title=Star Citizen Wiki community |label1 = Projects |list1 = {{DPLCat2|Projects|namespace=Star_Citizen}} |label2 = Policies |list2 = {{DPLCat2|Policies|namespace=Star_Citizen}} |label3 = Editing guides |list3 = {{DPLCat2|Star Citizen Wiki editing guides|namespace=Star_Citizen|includesubpages=true}} }} <noinclude>{{/doc}}</noinclude>")
- 22:01, 18 December 2023 Bigwig talk contribs created page Template:Wiki navplate (Redirected page to Template:Navplate wiki) Tag: New redirect
- 22:00, 18 December 2023 Bigwig talk contribs created page Template:Key press (Created page with "<includeonly>{{{{{|safesubst:}}}#invoke:key|keypress}}</includeonly><noinclude> {{/doc}} </noinclude>")
- 21:59, 18 December 2023 Bigwig talk contribs created page Template:Hatnote (Created page with "<includeonly>{{#invoke:Hatnote|hatnote}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 21:59, 18 December 2023 Bigwig talk contribs created page Template:Note (Redirected page to Template:Hatnote) Tag: New redirect
- 21:59, 18 December 2023 Bigwig talk contribs created page Template:Main page/editing/doc (Created page with "{{Documentation}} This template is used on the main page. It is the editing card in the content section. <includeonly>{{PAGENAME}}</includeonly>")
- 21:58, 18 December 2023 Bigwig talk contribs created page Template:Main page/editing/styles.css (Created page with "#home-editing { display: flex; flex-direction: column; justify-content: space-between; } .home-editing__stats { display: flex; }")
- 21:58, 18 December 2023 Bigwig talk contribs created page Template:Main page/featured/doc (Created page with "{{Documentation}} This template is used on the main page. It is the featured article card in the content section. You can update the content by editing the main page settings. <includeonly>{{PAGENAME}}</includeonly>")
- 21:58, 18 December 2023 Bigwig talk contribs created page Template:Main page/featured/styles.css (Created page with "#home-featured { overflow: hidden; } #home-featured .home-card__background a { display: block; height: 100%; } #home-featured .home-card__background:after { top: unset; height: 60%; background: linear-gradient( to top, #000, transparent ); } #home-featured .home-card__foreground { top: unset; }")
- 21:58, 18 December 2023 Bigwig talk contribs created page Template:Main page/gamebuild/doc (Created page with "{{Documentation}} This template is used on the main page. It is the gamebuild card in the content section. You can update the content by editing the main page settings. <includeonly>{{PAGENAME}}</includeonly>")
- 21:57, 18 December 2023 Bigwig talk contribs created page Template:Main page/gamebuild/styles.css (Created page with "#home-gamebuild { display: flex; flex-direction: column; justify-content: space-between; } .home-gamebuild-patch__container { display: flex; align-items: center; justify-content: space-between; } .home-gamebuild-patch { display: flex; align-items: center; } .home-gamebuild-patch__name { font-size: 1.2rem; font-weight: 600; } .home-gamebuild-patch__type { padding: 0.1rem 0.6rem; margin-left: 0.4rem; background: var( --color-surface-3 ); border-radius: 10...")
- 21:57, 18 December 2023 Bigwig talk contribs created page Template:Main page/latestpatch/doc (Created page with "{{Documentation}} This template is used on the main page. It is the latest patch card in the content section. You can update the content by editing the main page settings. <includeonly>{{PAGENAME}}</includeonly>")