More actions
Combined display of all available logs of Prism Party. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 21:03, 25 January 2023 BakiDance talk contribs created page Module:Format link/doc (Created page with "{{Documentation}} {{Wikipedia template}} This module, migrated from origins in Module:Hatnote, provides functionality for formatting links for display, including that powering the {{tl|format link}} template. It can pretty-format section links with the section symbol ("§") and appropriate whitespace, it automatically escapes category and file names with the colon trick, and includes functionality for italicizing the page or section name, and f...")
- 21:01, 25 January 2023 BakiDance 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(...")
- 21:00, 25 January 2023 BakiDance talk contribs created page Module:Hatnote list/doc (Created page with "{{Documentation}} {{Wikipedia template}} '''Module:Hatnote list''' 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 {{t|about}}, {{t|redirect}}, and their variants. Also introduced are andList & orList helpers for formatting lists with those conjunctions.")
- 21:00, 25 January 2023 BakiDance 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...")
- 20:49, 25 January 2023 BakiDance talk contribs created page Module:Hatnote/doc (Created page with "{{Documentation}} {{Wikipedia template}} '''Module:Hatnote''' is a meta-module that provides various functions for making hatnotes. It implements the {{tl|hatnote}} template, for use in hatnotes at the top of pages, and the {{tl|format link}} template, which is used to format a wikilink for use in hatnotes. It also contains a number of helper functions for use in other Lua hatnote modules.")
- 20:48, 25 January 2023 BakiDance 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....")
- 20:45, 25 January 2023 BakiDance talk contribs created page Module:DPLlua/doc (Created page with "{{Documentation}} '''Module:DPLlua''' uses Template:DPLlua helper to make it possible to include all parameters of a template while maintaining good performance. See [https://runescape.wiki/w/Module:DPLlua Module:DPLlua] on RuneScape Wiki for more details.")
- 20:45, 25 January 2023 BakiDance 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...")
- 20:41, 25 January 2023 BakiDance talk contribs created page Module:Paramtest/doc (Created page with "{{Documentation}} '''Module:Paramtest''' is a helper module to be used by other modules. See [https://runescape.wiki/w/Module:Paramtest Module:Paramtest] on RuneScape Wiki for more details.")
- 20:41, 25 January 2023 BakiDance talk contribs created page Module:Paramtest (Created page with "--[[ {{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, otherwise returns arg2 |fname4 = defaults{ {arg1,arg2},...}...")
- 20:40, 25 January 2023 BakiDance talk contribs created page Module:Yesno/doc (Created page with "{{Documentation}} {{Wikipedia template}} '''Module:Yesno''' 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...")
- 20:40, 25 January 2023 BakiDance 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 =...")
- 20:39, 25 January 2023 BakiDance talk contribs created page Module:Array/doc (Created page with "{{Documentation}} This module is a helper module to be used by other modules; it may not designed to be invoked directly. See [https://runescape.wiki/w/Module:Array Module:Array] on RuneScape Wiki for more details.")
- 20:39, 25 January 2023 BakiDance talk contribs created page Module:Array (Created page with "-- <nowiki> awawa local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti local arr = {} setmetatable(arr, { __call = function (_, array) return arr.new(array) end }) function arr.__index(t, k) if type(k) == 'table' then local res = arr.new() for i = 1, #t do res[i] = t[k[i]] end return res else return arr[k] end end function arr.__tostring(array) local dumpObject = requi...")
- 20:38, 25 January 2023 BakiDance talk contribs created page Module:DependencyList/doc (Created page with "{{Documentation}} '''Module:DependencyList''' generates a list of dependency used by template and module documentation.")
- 20:36, 25 January 2023 BakiDance talk contribs created page Module:DependencyList (Created page with "-- <nowiki> 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 mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local moduleIsUsed = false local COLLAPSE_LIST_LENGTH_THRESHOLD = 1 local MAX_DYNAMIC_REQUIRE_LIST_LENGTH = 30 local dynamicRequireListQueryCache = {} ---...")
- 20:33, 25 January 2023 BakiDance talk contribs created page Module:Documentation/doc (Created page with "{{Documentation}} '''Module:Documentation''' implements Template:Documentation for templates and modules.")
- 20:30, 25 January 2023 BakiDance talk contribs created page Module:Documentation (Created page with "-- <nowiki> local dependencyList = require( 'Module:DependencyList' ) local yn = require( 'Module:Yesno' ) 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 addDependencyList = yn( args.DependencyList or true ) local ret, cats, ret1, ret2, ret3 local onModule = title.namespace == 828 -- subpage head...")
- 20:29, 25 January 2023 BakiDance talk contribs created page Template:T (Created page with "{{Documentation}} ;Description :A template link with a variable number of example parameters (0-20), which can be used to show example inputs. :Utilises Template:T/piece. ;Syntax :{{t|t|parameter1|parameter2|parameter3|parameter4|...|parameter20}} ;Sample code :<code><nowiki>{{t|welcome}}</nowiki></code> gives... :{{t|welcome}} :<code><nowiki>{{t|welcome|Item1|Item2|Item3|Item4|Item5|...}}</nowiki></code> gives... :{{t|welcome|Item1|Item2|Item3|Item4|Item5|...}} ;See...")
- 20:04, 25 January 2023 BakiDance talk contribs created page Template:Documentation/doc (Created page with "{{Documentation}} The '''documentation''' template is transcluded in the template/module documentation. This template should only be used on subpages titled "doc". ==Usage== Place {{t|documentation}} at the top of the documentation page. If the page to be documented is a subpage, use {{t|documentation|pagename of page to be documented}} at the top of the documentation page. For example, Template:Foo/bar's documentation page would use {{t|documentation|Template:Foo/ba...")
- 20:03, 25 January 2023 BakiDance talk contribs created page Template:Documentation (Created page with "<includeonly>{{#invoke:Documentation|doc}}__NOEDITSECTION__{{#seo: |type = website |description = {{FULLPAGENAME}} is a template page used on the Star Citizen Wiki. Templates are pages that are embedded (transcluded) into other pages to allow for the repetition of information. |site_name = Star Citizen Wiki |locale = {{PAGELANGUAGE}} }}</includeonly><noinclude>{{/doc}}</noinclude>")
- 19:53, 25 January 2023 BakiDance talk contribs created page Module:String/doc (import documentation)
- 19:52, 25 January 2023 BakiDance 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 e...")
- 19:47, 25 January 2023 BakiDance talk contribs created page Template:Spaces (Created page with "<span class="nowrap">{{#iferror:{{#expr:{{{1|1}}}}} |{{#switch:{{{1}}} |fig= |en= |em= |thin= |hair= | }} |{{#invoke:String|rep|{{#switch:{{{2}}} |fig= |en= |em= |thin= |hair= | }}|{{{1|1}}}}} }}</span><noinclude> {{/doc}} </noinclude>")
- 19:47, 25 January 2023 BakiDance talk contribs created page Template:Spaces (Redirected page to Template:Spaces) Tag: New redirect
- 19:44, 25 January 2023 BakiDance talk contribs created page Template:En (Created page with "<div class="description mw-content-ltr en" dir="ltr" lang="en"><span class="language en">'''English:'''{{nbsp}}</span>{{{1}}}</div><noinclude> {{/doc}} <!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --> </noinclude>")
- 19:44, 25 January 2023 BakiDance talk contribs created page Template:Own (Created page with "Own work {{#if:{{{1|}}} | by {{{1}}}. }}<noinclude>{{/doc}}</noinclude>")
- 19:41, 25 January 2023 BakiDance talk contribs created page File:WikimediaUI-Notice.svg (Uploaded own work with UploadWizard)
- 19:41, 25 January 2023 BakiDance talk contribs uploaded File:WikimediaUI-Notice.svg (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 19:24, 25 January 2023 BakiDance talk contribs created page MediaWiki:Common.css (template css import from star citizen)
- 19:22, 25 January 2023 BakiDance talk contribs created page Template:Author missing (star citizen template)
- 19:22, 25 January 2023 BakiDance talk contribs created page Template:Source missing (star citizen template)
- 19:21, 25 January 2023 BakiDance talk contribs created page Template:Description missing (star citizen template)
- 19:20, 25 January 2023 BakiDance talk contribs created page Template:Information (star citizen information template)
- 19:01, 25 January 2023 BakiDance talk contribs created page File:EditScreenshot.png
- 19:01, 25 January 2023 BakiDance talk contribs uploaded File:EditScreenshot.png
- 09:09, 25 January 2023 BakiDance talk contribs created page Help:Contents (Created page with "Prism Party runs on a customized version of [https://www.mediawiki.org/wiki/MediaWiki MediaWiki], the software powering Wikipedia. Although Prism Party looks and operates differently compared to Wikipedia, both sites use the same software under the hood. Also like Wikipedia, Prism Party is a collaborative project: Everyone is encouraged to contribute edits to help build the site. Once you've created an account and confirmed your email address,...")
- 08:54, 25 January 2023 BakiDance talk contribs created page Category:Uploaded with UploadWizard (Created page with "This category contains files that were uploaded using Prism Party's upload wizard. For a list of all files uploaded to the site, visit Special:ListFiles.")
- 08:51, 25 January 2023 BakiDance talk contribs created page Category:Protected files (Created page with "This category contains files that have been protected from modification or deletion. Examples may include files used in the website interface, graphics or screenshots included in blog posts, or files meant to be used in templates or on high-traffic pages.") Tag: Visual edit
- 08:47, 25 January 2023 BakiDance talk contribs created page Category:Site files (Created page with "This category contains files used in interface pages or templates. Examples may include images, icons, or logos that are included within commonly-used templates, on locked high-traffic pages, or within the interface itself. Files in this category are likely also protected files.")
- 08:42, 25 January 2023 BakiDance talk contribs protected File:PrismLogo 3D.png [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Upload=Allow only administrators] (indefinite) (High traffic page) (hist)
- 08:12, 25 January 2023 BakiDance talk contribs created a new forum, Ban Appeals (An archive of threads from the old Prism Party...)
- 08:12, 25 January 2023 BakiDance talk contribs created a new forum, Feedback (An archive of threads from the old Prism Party...)
- 08:12, 25 January 2023 BakiDance talk contribs created a new forum, Suggestions (An archive of threads from the old Prism Party...)
- 08:11, 25 January 2023 BakiDance talk contribs created a new forum, Bug Reports (An archive of threads from the old Prism Party...)
- 08:11, 25 January 2023 BakiDance talk contribs created a new forum, General Discussion (An archive of threads from the old Prism Party...)
- 08:10, 25 January 2023 BakiDance talk contribs created a new category, Archive
- 07:55, 25 January 2023 BakiDance talk contribs created a new thread, Appeal Format (If you believe you were unfairly punished on Pr...)
- 07:34, 25 January 2023 BakiDance talk contribs created a new forum, Feedback
- 07:33, 25 January 2023 BakiDance talk contribs created a new forum, Community Help