More actions
28 September 2024
- 07:1007:10, 28 September 2024 diff hist +242 N Template:Main page/event/styles.css Created page with ".home-event .home-card { height: 5rem; } .home-event .home-card__background:after { →* Theme gradient color * FIXME: Find a way to make customize it through wikitext: background: linear-gradient(to right,#101e3c,transparent); }"
- 07:0907:09, 28 September 2024 diff hist +133 N Template:Main page/shared/styles.css Created page with "#home-editing { display: flex; flex-direction: column; justify-content: space-between; } .home-editing__stats { display: flex; }"
- 07:0907:09, 28 September 2024 diff hist +569 N Template:Main page/editing Created page with "<div id="home-editing" class="home-card home-card--col2 home-card--row3"> <div class="home-editing__intro"> <div class="home-card__header">Start editing</div> <p>The Star Citizen Wiki is made by people like you! Be Bold and get started here!</p> </div> {{Statsbar |label1 = Articles |data1 = {{NUMBEROFARTICLES}} |label2 = Edits |data2 = {{NUMBEROFEDITS}} }} </div><templatestyles src="Template:Main page/editing/styles.css"/><noinclude><!-- For pre..."
- 06:5906:59, 28 September 2024 diff hist +2,902 N Template:Em/doc Created page with "{{Documentation}} {{Wikipedia template}} {{t|Em}} is used to put strong emphasis on the text as simple italicizing is purely typographic and is semantically meaningless. == Purpose == This template makes it faster and easier to apply HTML's <code><nowiki><em>...</em></nowiki></code> emphasis markup to text, and more importantly to indicate to human and bot editors they should not use <code><nowiki>''...''</nowiki></code> or <code><nowiki><i>...</i></nowiki></code> typo..." current
- 06:5806:58, 28 September 2024 diff hist +297 N Template:Em Created page with "<em {{#if:{{{role|}}}|role="{{{role}}}"}} {{#if:{{{class|}}}|class="{{{class}}}"}} {{#if:{{{id|}}}|id="{{{id}}}"}} {{#if:{{{style|}}}|style="{{{style}}}"}} {{#if:{{{title|}}}|title="{{{title}}}"}}>{{{1}}}</em><noinclude> {{/doc}} <!-- Add categories to the /doc subpage, not here! --> </noinclude>" current
27 September 2024
- 17:1717:17, 27 September 2024 diff hist −610 MediaWiki:Sidebar No edit summary Tag: Manual revert
- 17:1617:16, 27 September 2024 diff hist +610 MediaWiki:Sidebar No edit summary Tag: Reverted
- 16:5416:54, 27 September 2024 diff hist −1,882 MediaWiki:Sidebar Replaced content with " * navigation ** mainpage|mainpage-description ** recentchanges-url|recentchanges ** randompage-url|randompage ** helppage|help-mediawiki * SEARCH * TOOLBOX * LANGUAGES" Tag: Replaced
- 16:5316:53, 27 September 2024 diff hist +2,050 N MediaWiki:Sidebar Created page with " * navigation ** mainpage|mainpage-description ** recentchanges-url|recentchanges ** randompage-url|randompage ** helppage|help-mediawiki * SEARCH * TOOLBOX * LANGUAGES * navigation ** mainpage|mainpage-description ** recentchanges-url|recentchanges ** randompage-url|randompage * Vehicles ** Ships|Ships ** :Category:Ship components|Components ** List of pledge vehicles|Pledge vehicles ** List of ship packages|Pledge packages * Personal items ** :Category:Personal equipme..."
- 12:3812:38, 27 September 2024 diff hist +89 Main Page No edit summary
- 12:3512:35, 27 September 2024 diff hist +13 Main Page No edit summary Tag: Manual revert
- 12:2112:21, 27 September 2024 diff hist +534 N Template:Navpills/doc Created page with "{{Documentation}} {{t|Navpills}} is used to create a grid of navigation button. Optimized background image resolution: 400x92px == Example == <syntaxhighlight lang="mediawiki"> {{Navpills |page1 = Merchantman |page2 = Polaris |page3 = Carrack |text3 = Best ship |image3 = Carrack over microTech 3.8.png }} </syntaxhighlight> will give: {{Navpills |page1 = Merchantman |page2 = Polaris |page3 = Carrack |text3 = Best ship |image3 = Carrack over microTech 3.8.png }} <inc..."
- 12:2012:20, 27 September 2024 diff hist +86 Template:Navpills No edit summary current
- 12:1412:14, 27 September 2024 diff hist +837 N Module:Documentation/styles.css Created page with ".documentation { margin-top: 5px; padding-top: 5px; border-top: 1px solid; border-color: lightyellow; font-size: 0.75rem; } .documentation-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; } .documentation-title { color: grey; font-size: 1.2rem; font-weight: 600; line-height: 1; } .documentation-links { font-family: monospace; } .documentation-subheader { color: li..."
- 12:0812:08, 27 September 2024 diff hist −21 Template:T No edit summary current
- 12:0312:03, 27 September 2024 diff hist +1,226 N 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..."
- 12:0212:02, 27 September 2024 diff hist −814 Template:Documentation No edit summary
- 11:5811:58, 27 September 2024 diff hist +1,039 N 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..." current
- 11:5811:58, 27 September 2024 diff hist +920 N 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..." current
- 11:5711:57, 27 September 2024 diff hist +8,632 N Module:Translate Created page with "require( 'strict' ) local Translate = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local i18n = require( 'Module:i18n' ):new() --- Cache table containing i18n data at the 'data' key, and a key map at the 'keys' key --- The table is keyed by the i18n.json module name local cache = {} local i18nDataset = 'Module:Translate/i18n.json' --- Uses the cur..." current
- 11:5611:56, 27 September 2024 diff hist +2,904 N 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..." current
- 11:5611:56, 27 September 2024 diff hist +1,273 N Module:Mbox/styles.css Created page with ".mbox { position: relative; display: flex; flex-direction: column; margin-top: 1rem; margin-bottom: 1rem; background-color: darkgrey; border-radius: 0.5rem; color: black; font-size: 0.75rem; line-height: 1; } .mbox.mbox-high { →FIXME: Update back to Citzen CSS var when patched: background-color: rgba( 221, 51, 51, 0.1 ); } .mbox.mbox-med { →FIXME: Update back to Citzen CSS var when patched: background-colo..."
- 11:4711:47, 27 September 2024 diff hist +1,880 N 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..." current
- 11:4611:46, 27 September 2024 diff hist +4,013 N Module:I18n Created page with "require( 'strict' ) local i18n = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType --- Cache table containing i18n data --- e.g. cache['en']['SMW'] will get you the SMW table in English local cache = {} --- Cache language codes for reuse local languages = {} --- Retrieve dataset namespace from key prefix --- --- @param key string The translation key -..." current
- 11:4511:45, 27 September 2024 diff hist +8,121 N 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..." current
- 11:4211:42, 27 September 2024 diff hist +406 N Module:Hatnote/styles.css Created page with ".hatnote-container { display: flex; align-items: center; padding: 1rem; margin-top: 1rem; margin-bottom: 2rem; background: var( --color-surface-2 ); border-radius: 2rem; color: grey; font-size: small; line-height: 1; } .hatnote-icon img { display: block; width: 1rem; height: auto; margin-right: 1rem; opacity: 0.5; filter: grayscale(70%); }"
- 11:3711:37, 27 September 2024 diff hist +7,258 N 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...." current
- 11:3611:36, 27 September 2024 diff hist +6,544 N 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. -----------------------------------------..." current
- 11:3211:32, 27 September 2024 diff hist +7,012 N Module:Documentation Created page with "-- <nowiki> local dependencyList = require( 'Module:DependencyList' ) local hatnote = require( 'Module:Hatnote' )._hatnote local mbox = require( 'Module:Mbox' )._mbox local i18n = require( 'Module:i18n' ):new() local TNT = require( 'Module:Translate' ):new() local lang = mw.getContentLanguage() local p = {} --- Wrapper function for Module:i18n.translate --- --- @param key string The translation key --- @return string If the key was not found, the key is returned local..."
- 11:3011:30, 27 September 2024 diff hist +23,145 N Module:DependencyList Created page with "--- Based on Module:DependencyList from RuneScape Wiki --- Modified to use SMW instead of DPL --- @see https://runescape.wiki/w/Module:DependencyList require("strict"); local p = {} local libraryUtil = require( 'libraryUtil' ) local arr = require( 'Module:Array' ) local yn = require( 'Module:Yesno' ) local param = require( 'Module:Paramtest' ) local userError = require("Module:User error") local hatnote = require('Module:Hatnote')._hatnote local mHatlist = require('Mod..."
- 11:2911:29, 27 September 2024 diff hist +30,602 N 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[]..." current
- 11:2511:25, 27 September 2024 diff hist +10,054 N 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'..." current
- 09:4909:49, 27 September 2024 diff hist −13 Main Page No edit summary Tag: Reverted
- 09:4809:48, 27 September 2024 diff hist −440 Template:Navpills Replaced content with "a" Tag: Replaced
- 09:4409:44, 27 September 2024 diff hist −177 Template:Navpills No edit summary
- 09:4309:43, 27 September 2024 diff hist +111 N Template:T/piece Created page with "{{#ifeq: {{{1|---}}}|---|||<font color="gray">''<{{{1}}}>''</font>}}<noinclude> {{/doc}}</noinclude>" current
- 09:4209:42, 27 September 2024 diff hist +1,226 N Template:Documentation 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..."
- 09:4109:41, 27 September 2024 diff hist +627 N 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..."
- 09:3909:39, 27 September 2024 diff hist +224 Template:Navpills →Example
- 09:3609:36, 27 September 2024 diff hist −75 Main Page No edit summary
- 09:3609:36, 27 September 2024 diff hist −140 Template:Navpills No edit summary
- 09:3509:35, 27 September 2024 diff hist +534 N Template:Navpills Created page with "{{Documentation}} {{t|Navpills}} is used to create a grid of navigation button. Optimized background image resolution: 400x92px == Example == <syntaxhighlight lang="mediawiki"> {{Navpills |page1 = Merchantman |page2 = Polaris |page3 = Carrack |text3 = Best ship |image3 = Carrack over microTech 3.8.png }} </syntaxhighlight> will give: {{Navpills |page1 = Merchantman |page2 = Polaris |page3 = Carrack |text3 = Best ship |image3 = Carrack over microTech 3.8.png }} <inc..."
- 09:3409:34, 27 September 2024 diff hist −68 Main Page No edit summary
- 09:3309:33, 27 September 2024 diff hist −6 Main Page No edit summary Tag: Visual edit
- 09:3209:32, 27 September 2024 diff hist +13 N Page2 Created page with "This is page2" Tag: Visual edit
- 09:3109:31, 27 September 2024 diff hist +163 Main Page No edit summary Tag: Visual edit
- 09:3009:30, 27 September 2024 diff hist +1,414 N Module:Navpills/styles.css Created page with ".template-navpills { display: grid; gap: 1%; grid-template-columns: repeat( auto-fill, minmax( 160px, 1fr ) ); grid-auto-rows: 3rem; font-size: small; } .template-navpill { position: relative; border: 1px solid yellow; border-radius: 1rem; font-weight: bold; line-height: 1; overflow: hidden; } .template-navpill-background { position: absolute; } .template-navpill-background:after { content: ''; position: absolute;..."
- 09:2309:23, 27 September 2024 diff hist +1,538 N Module:Navpills Created page with "local mArguments --initialize lazily local p = {} -- Returns a table containing the numbers of the arguments that exist -- for the specified prefix. For example, if the prefix was 'data', and -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}. local function getArgNums(prefix, args) local nums = {} for k, v in pairs(args) do local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$') if num then table.insert(nums, tonumber(num)) end end table.s..." current
- 09:2209:22, 27 September 2024 diff hist +6 Main Page No edit summary Tag: Visual edit
25 September 2024
- 23:5823:58, 25 September 2024 diff hist +13 N Page1 Created page with "this is page1" Tag: Visual edit