User contributions for Tholin
Appearance
13 May 2025
- 15:2215:22, 13 May 2025 diff hist −2 Template:Infobox planet No edit summary
- 15:2115:21, 13 May 2025 diff hist −8 Template:Infobox planet No edit summary
- 15:2015:20, 13 May 2025 diff hist +330 Template:Infobox planet No edit summary
- 15:1715:17, 13 May 2025 diff hist +464 N Template:Longitem Created page with "<noinclude>{{#tag: code| </noinclude>{{#ifeq: {{{1|+}}} | {{{1|-}}} | <div style="}}display: inline-block; line-height: 1.2em; padding: .1em 0; {{#ifeq: {{{1|+}}} | {{{1|-}}} | {{{style|}}}">{{{1|}}}</div> | <includeonly>width: 100%;</includeonly> }}<includeonly>{{#if:{{{2|}}}|Category:Pages using Template:Longitem with unnamed style parameter}}</includeonly><noinclude> |lang=wikitext}} [https://en.wikipedia.org/wiki/Template:Longitem Source] </noinclude>" current
- 15:1315:13, 13 May 2025 diff hist +15,100 N Template:Infobox planet Created page with "{{#invoke:infobox|infoboxTemplate | class = vcard | titleclass = fn org | title = {{{name|<includeonly>{{PAGENAMEBASE}}</includeonly>}}} | image = {{#invoke:InfoboxImage|InfoboxImage|image={{{image|}}}|upright={{#if:{{{image_scale|}}}|{{{image_scale|}}}|1.1}}|alt={{{image_alt|}}}}} | caption = {{{caption|}}} | headerstyle = {{#if:{{{background|{{{bgcolour|}}}}}}|background-color:{{{background|{{{bgcolour|}}}}}}|background-color:#E0CCFF}} | labelsty..."
- 15:1115:11, 13 May 2025 diff hist +9,952 N Module:InfoboxImage Created page with "-- Inputs: -- image - Can either be a bare filename (with or without the File:/Image: prefix) or a fully formatted image link -- page - page to display for multipage images (DjVu) -- size - size to display the image -- maxsize - maximum size for image -- sizedefault - default size to display the image if size param is blank -- alt - alt text for image -- title - title text for image -- border - set to yes if border -- center - set to yes, if th..." current
- 15:1115:11, 13 May 2025 diff hist +3,413 N Module:Check for unknown parameters Created page with "-- This module may be used to compare the arguments passed to the parent -- with a list of arguments, returning a specified result if an argument is -- not on the list -- src: https://en.wikipedia.org/wiki/Module:Check_for_unknown_parameters require ('strict'); local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end local function clean(text) -- Return text cleaned for display and truncate..." current
- 15:1015:10, 13 May 2025 diff hist +917 Useful Templates No edit summary
- 15:0615:06, 13 May 2025 diff hist +1 Useful Templates No edit summary
- 15:0515:05, 13 May 2025 diff hist +239 Useful Templates No edit summary Tag: Visual edit: Switched
- 14:5914:59, 13 May 2025 diff hist +5,956 N Useful Templates Created page with "This page exists to document useful wiki templates you may wish to use in your pages. This is not intended to be an exhaustive list of all templates, only the ones that are likely to be used directly by writers in wiki pages. = Basic Template Usage = To use a template in a page, you have to switch to "Source Editing" mode, which is the dropdown at the pencil-icon in the top-right corner of the edit box. Basic template usage has the name of the template surrounded in d..." Tag: Visual edit: Switched
- 14:5614:56, 13 May 2025 diff hist +136 N Template:Clear Created page with "<div style="clear:{{{1|both}}};" class={{{class|}}}></div><noinclude> [https://en.wikipedia.org/wiki/Template:Clear Source] </noinclude>" current
- 14:3514:35, 13 May 2025 diff hist +146 N Template:Ordered list Created page with "{{<includeonly>safesubst:</includeonly>#invoke:list|ordered}}<noinclude> [https://en.wikipedia.org/wiki/Template:Ordered_list Source] </noinclude>" current
- 14:2314:23, 13 May 2025 diff hist +148 N Template:Bulleted list Created page with "{{<includeonly>safesubst:</includeonly>#invoke:list|bulleted}}<noinclude> [https://en.wikipedia.org/wiki/Template:Bulleted_list Source] </noinclude>" current
- 13:5113:51, 13 May 2025 diff hist +1,843 Module:Infobox/styles.css No edit summary current
- 13:4013:40, 13 May 2025 diff hist −10 Module:Infobox No edit summary current
- 13:4013:40, 13 May 2025 diff hist +422 N Template:Template other Created page with "{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:Template}} | template | other }} }} | template = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch--><noinclude> [https://en.wikipedia.org/w/index.php?title=Template:Template_other Source] </noinclude>" current
- 13:3813:38, 13 May 2025 diff hist +9 Module:Infobox TESTING
- 13:3413:34, 13 May 2025 diff hist +11 Template:Infobox No edit summary current
- 13:2813:28, 13 May 2025 diff hist +155 N Template:Hlist Created page with "{{<includeonly>safesubst:</includeonly>#invoke:list|horizontal}}<noinclude> [https://en.wikipedia.org/w/index.php?title=Template:Hlist Source] </noinclude>" current
- 13:2813:28, 13 May 2025 diff hist +5,694 N Module:List Created page with "-- src: https://en.wikipedia.org/wiki/Module:List local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] = true, ['ordered'] = true, ['horizontal_ordered'] = true } function p.makeListData(listType, args) -- Constructs a data table to be passed to p.renderList. local data = {} -- Classes and Template..." current
- 13:2713:27, 13 May 2025 diff hist +16,633 N Module:TableTools Created page with "------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be called from other Lua modules, and should not -- -- be called directly from #invoke...." current
- 13:2713:27, 13 May 2025 diff hist +1,156 N Module:Exponential search Created page with "-- This module provides a generic exponential search algorithm. -- src: https://en.wikipedia.org/wiki/Module:Exponential_search requirestrict local checkType = require('libraryUtil').checkType local floor = math.floor local function midPoint(lower, upper) return floor(lower + (upper - lower) / 2) end local function search(testFunc, i, lower, upper) if testFunc(i) then if i + 1 == upper then return i end lower = i if upper then i = midPoint(lower, u..." current
- 13:2413:24, 13 May 2025 diff hist +1,390 N Template:Plainlist Created page with "<templatestyles src="Plainlist/styles.css"/><div class="plainlist {{{class|}}}" {{safesubst<noinclude />:#if:{{{style|}}}{{{indent|}}}|style="{{safesubst<noinclude />:#if:{{{indent|}}}|margin-left: {{safesubst<noinclude />:#expr:{{{indent}}}*1.6}}em;}} {{{style|}}}"}}>{{safesubst<noinclude />:#if:{{{1|}}}| {{{1}}} </div>}}<noinclude></div> [https://en.wikipedia.org/w/index.php?title=Template:Plainlist Source] <templatedata> { "params": { "1": { "label": "List conte..." current
- 13:1713:17, 13 May 2025 diff hist +314 N Template:Plainlist/styles.css Created page with "→{{pp-template|small=yes}}: →src: https://en.wikipedia.org/w/index.php?title=Template:Plainlist/styles.css&action=edit: .plainlist ol, .plainlist ul { line-height: inherit; list-style: none; margin: 0; padding: 0; →Reset Minerva default: } .plainlist ol li, .plainlist ul li { margin-bottom: 0; }" current
- 13:1713:17, 13 May 2025 diff hist +3,011 N Template:Hlist/styles.css Created page with "→{{pp-protected|reason=match parent|small=yes}}: →* hlist styles are defined in core and Minerva and differ in Minerva. The * current definitions here (2023-01-01) are sufficient to override Minerva * without use of the hlist-separated class. The most problematic styles were * related to margin, padding, and the bullet. Check files listed at * [[MediaWiki talk:Common.css/to do#hlist-separated]]: /* * TODO: When the majority of readership supports it (or s..." current
- 13:1513:15, 13 May 2025 diff hist −43 Template:Infobox No edit summary Tag: Manual revert
- 13:1413:14, 13 May 2025 diff hist +43 Template:Infobox Don’t forget to include styles Tag: Reverted
- 13:1013:10, 13 May 2025 diff hist +3,048 N Template:Infobox Created page with "{{#invoke:Infobox|infobox}}<includeonly>{{template other|{{#ifeq:{{PAGENAME}}|Infobox||{{#ifeq:{{str left|{{SUBPAGENAME}}|7}}|Infobox|{{remove first word|{{SUBPAGENAME}}}}}}}}|}}</includeonly> <templatedata> { "params": { "name": { "label": "name" }, "child": { "label": "child" }, "subbox": { "label": "subbox" }, "italic title": { "label": "italic title" }, "templatestyles": { "label": "templatestyles" },..."
- 13:0613:06, 13 May 2025 diff hist +30 Module:Infobox Remove navbar requirement, we don’t need it on this wiki for now
- 12:5512:55, 13 May 2025 diff hist +2,195 N Module:Infobox/styles.css Created page with "→{{pp|small=y}}: →* This TemplateStyles sheet deliberately does NOT include the full set of * infobox styles. We are still working to migrate all of the manual * infoboxes. See [[MediaWiki talk:Common.css/to do#Infobox]] * DO NOT ADD THEM HERE: /* * not strictly certain these styles are necessary since the modules now * exclusively output infobox-subbox or infobox, not both * just replicating the module faithfully * * src: https://en.wikipedia.org/w/ind..."
- 12:5312:53, 13 May 2025 diff hist +20,612 N Module:Infobox Created page with "-- src: https://en.wikipedia.org/w/index.php?title=Module:Infobox&action=edit local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_..."
- 12:5212:52, 13 May 2025 diff hist +821 N Module:Yesno Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. -- Src: https://en.wikipedia.org/w/index.php?title=Module:Yesno&action=edit 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
- 12:5112:51, 13 May 2025 diff hist +10,134 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. -- src: https://en.wikipedia.org/w/index.php?title=Module:Arguments&action=edit 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..." current
18 March 2025
- 10:4810:48, 18 March 2025 diff hist +2 m Avalon Alliance Formating error fix current
- 10:4810:48, 18 March 2025 diff hist +1,463 N Avalon Alliance Create page with basic info Tag: Visual edit
- 10:3210:32, 18 March 2025 diff hist +1,377 N Illuminate Republic Create page with some placeholders Tag: Visual edit
- 10:2310:23, 18 March 2025 diff hist +4 m Solakkian Union Insert a link Tag: Visual edit
13 March 2025
- 20:4720:47, 13 March 2025 diff hist +198 Government of the Illuminate Republic No edit summary
11 March 2025
- 09:4809:48, 11 March 2025 diff hist +17 Avalon Standard Calendar Unofficial banner Tag: Visual edit
- 09:4709:47, 11 March 2025 diff hist +694 Avalon Standard Calendar Modern use Tag: Visual edit
- 09:3809:38, 11 March 2025 diff hist +1,784 N Avalon Standard Calendar Create Calendar page with full description Tag: Visual edit
- 09:1609:16, 11 March 2025 diff hist +23 Solakkian Union No edit summary Tag: Visual edit
10 March 2025
- 17:0617:06, 10 March 2025 diff hist −8 Government of the Illuminate Republic No edit summary Tag: Visual edit
- 15:5515:55, 10 March 2025 diff hist +75 Solakkian Union No edit summary Tag: Visual edit
- 15:5415:54, 10 March 2025 diff hist +23 Solakkian Union No edit summary Tag: Visual edit
- 15:5315:53, 10 March 2025 diff hist +4 Solakkian Union No edit summary Tag: Visual edit
- 15:5315:53, 10 March 2025 diff hist +4 Government of the Illuminate Republic No edit summary Tag: Visual edit
- 15:5215:52, 10 March 2025 diff hist +4 Government of the Illuminate Republic No edit summary Tag: Visual edit
- 15:4515:45, 10 March 2025 diff hist +992 Solakkian Union Politics Tag: Visual edit