All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Super Mario Galaxy wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 03:47, 13 May 2024 Lord-Giganticus talk contribs created page Module:ConvertNumeric (Created page with "-- Module for converting between different representations of numbers. See talk page for user documentation. -- For unit tests see: Module:ConvertNumeric/testcases -- When editing, preview with: Module_talk:ConvertNumeric/testcases -- First, edit Module:ConvertNumeric/sandbox, then preview with Module_talk:ConvertNumeric/sandbox/testcases require('strict') local ones_position = { [0] = 'zero', [1] = 'one', [2] = 'two', [3] = 'three', [4] = 'four',...")
- 16:10, 9 March 2023 Lord-Giganticus talk contribs protected Starlight [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (Let's not cause more issues with this dead program.) (hist)
- 16:08, 9 March 2023 Lord-Giganticus talk contribs created page Starlight (Created page with "Starlight was a WIP tool made by Super Hackio that ultimately was canned due to drama and others not working on the project. = Basic Info = Starlight's developers were: * Super Hackio (Lead Developer) * JuPaHe64 (3d renderer/graphics) * Someone (Object Database/misc) * Lord-Giganticus (Build scripts/misc) Much like Whitehole, Starlight needed to know where your Game's file were, and then could open the galaxy with basic info. Starlight had a feature where certain ani...")
- 21:53, 7 March 2023 Lord-Giganticus talk contribs created page Template:Infobox/scenario (Created page with "{| class="textbox grid alt center" style="max-width:75%; background:656565;" rules=all |- ! colspan=3 | Star info |- ! Name !! Star No. !! Access Requirement |- | {{{Name}}} || {{{Number}}} || {{{Access}}} |}")
- 18:12, 5 March 2023 Lord-Giganticus talk contribs created page Yaz0 (make the page)
- 04:30, 5 March 2023 Lord-Giganticus talk contribs created page Template:Navbox (Created page with "<includeonly>{{#invoke:Navbox|navbox}}</includeonly><noinclude> </noinclude>")
- 04:27, 5 March 2023 Lord-Giganticus talk contribs created page Module:Navbox (Created page with "local p = {} local navbar = require('Module:Navbar')._navbar local cfg = mw.loadData('Module:Navbox/configuration') local getArgs -- lazily initialized local args local format = string.format local function striped(wikitext, border) -- Return wikitext with markers replaced for odd/even striping. -- Child (subgroup) navboxes are flagged with a category that is removed -- by parent navboxes. The result is that the category shows all pages -- where a child navbox is no...")
- 04:23, 5 March 2023 Lord-Giganticus talk contribs created page Template:Hlist/styles.css (Created page with "* 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 some beautiful world * in which grade C support is ab...")
- 04:22, 5 March 2023 Lord-Giganticus talk contribs created page Template:Plainlist/styles.css (Created page with ".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; }")
- 04:11, 5 March 2023 Lord-Giganticus talk contribs created page Module:Navbox/configuration (Created page with "return { aria_label = 'Navbox', nowrap_item = '%s<span class="nowrap">%s</span>', templatestyles = mw.getCurrentFrame():extensionTag{ name = 'templatestyles', args = { src = 'Module:Navbox/styles.css' } }, hlist_templatestyles = 'Hlist/styles.css', plainlist_templatestyles = 'Plainlist/styles.css', -- do not localize marker table marker = { oddeven = '\127_ODDEVEN_\127', restart = '\127_ODDEVEN0_\127', regex = '\127_ODDEVEN(%d?)_\127' }, category = {...")
- 04:10, 5 March 2023 Lord-Giganticus talk contribs created page Module:Navbar (Created page with "local p = {} local cfg = mw.loadData('Module:Navbar/configuration') local function get_title_arg(is_collapsible, template) local title_arg = 1 if is_collapsible then title_arg = 2 end if template then title_arg = 'template' end return title_arg end local function choose_links(template, args) -- The show table indicates the default displayed items. -- view, talk, edit, hist, move, watch -- TODO: Move to configuration. local show = {true, true, true, false, false...")
- 04:09, 5 March 2023 Lord-Giganticus talk contribs created page Module:Navbar/configuration (Created page with "return { ['templatestyles'] = 'Module:Navbar/styles.css', ['hlist_templatestyles'] = 'Hlist/styles.css', ['box_text'] = 'This box: ', -- default text box when not plain or mini ['title_namespace'] = 'Template', -- namespace to default to for title ['invalid_title'] = 'Invalid title ', ['classes'] = { -- set a line to nil if you don't want it ['navbar'] = 'navbar', ['plainlinks'] = 'plainlinks', -- plainlinks ['horizontal_list'] = 'hlist', -- horizontal lis...")
- 04:08, 5 March 2023 Lord-Giganticus talk contribs created page 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....")
- 04:08, 5 March 2023 Lord-Giganticus talk contribs created page Module:Exponential search (Created page with "-- This module provides a generic exponential search algorithm. 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, upper) else i = i * 2 end return search(testFunc, i, low...")
- 04:06, 5 March 2023 Lord-Giganticus talk contribs created page Module:Color contrast (Created page with "-- -- This module implements -- {{Color contrast ratio}} -- {{Greater color contrast ratio}} -- {{ColorToLum}} -- {{RGBColorToLum}} -- local p = {} local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) local function sRGB (v) if (v <= 0.03928) then v = v / 12.92 else v = math.pow((v+0.055)/1.055, 2.4) end return v end local function rgbdec2lum(R, G, B) if ( 0 <= R and R < 256 and 0 <= G and G < 256 and 0 <= B and B < 256 ) then return 0.2126 *...")
- 04:05, 5 March 2023 Lord-Giganticus talk contribs created page Module:Color contrast/colors (Created page with "return { aliceblue = 0.92880068253475, antiquewhite = 0.84646951707754, aqua = 0.7874, aquamarine = 0.8078549208338, azure = 0.97265264954166, beige = 0.8988459998705, bisque = 0.80732327372979, black = 0, blanchedalmond = 0.85084439608156, blue = 0.0722, blueviolet = 0.12622014321946, brown = 0.098224287876511...")
- 04:02, 5 March 2023 Lord-Giganticus talk contribs created page 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'...")
- 03:35, 5 March 2023 Lord-Giganticus talk contribs created page Category:List of Super Mario Galaxy 2 Galaxies (Created page with "This category contains all the galaxies in Super Mario Galaxy 2 LEGEND:<br> <nowiki># Has a Grand Star</nowiki> == World 1 == {| class = "wikitable" ! Name !! No. of Stars !! Access requirement |- | Sky Station Galaxy || 6 || None |- | Yoshi Star Galaxy || 6 || 1 star |- | Spin-Dig Galaxy || 6 || 3 stars including Yoshi Star 1 |- | Fluffy Bluff Galaxy || 6 || Spin Dig 1 |- | Flip-Swap Galaxy || 4 || 3 stars including Yoshi Star 1 |- | Rightside Do...")
- 22:10, 4 March 2023 Lord-Giganticus talk contribs created page Category:List of Super Mario Galaxy 1 Galaxies (not done yet btw)
- 02:54, 1 September 2022 User account Kiz talk contribs was created by Lord-Giganticus talk contribs (Making account for Kiz)
- 02:24, 19 August 2022 Lord-Giganticus talk contribs created page MediaWiki:Monobook.css (Created page with "All CSS here will be loaded for users of the MonoBook skin: Dark Mode fixes: .client-js.client-darkmode .mw-wiki-logo { filter: invert( 1 ) hue-rotate( 180deg ) }")
- 02:24, 19 August 2022 Lord-Giganticus talk contribs created page MediaWiki:Vector-2022.css (Created page with "Dark Mode fixes: .client-js.client-darkmode .mw-wiki-logo { filter: invert( 1 ) hue-rotate( 180deg ) }")
- 02:23, 19 August 2022 Lord-Giganticus talk contribs created page User:Lord-Giganticus/vector-2022.css (Created page with "Dark Mode fixes: .client-js.client-darkmode .mw-wiki-logo { filter: invert( 1 ) hue-rotate( 180deg ) }")
- 02:18, 19 August 2022 Lord-Giganticus talk contribs created page MediaWiki:Timeless.css (Created page with "All CSS here will be loaded for users of the Timeless skin: Dark Mode fixes: .client-js.client-darkmode .mw-wiki-logo { filter: invert( 1 ) hue-rotate( 180deg ) }")
- 02:12, 19 August 2022 Lord-Giganticus talk contribs created page MediaWiki:Vector.css (Created page with "All CSS here will be loaded for users of the Vector skin: .client-js.client-darkmode { background: #f6f6f6; }")
- 23:26, 18 August 2022 Lord-Giganticus talk contribs created page File system (Created page with "<table class="navbox" border="0" style="align-content: left; text-align: center"> <tr><th colspan="16" style="border-left:2px solid #fdfdfd;width:100%;">SMG1 Filesystem</th></tr> <tr> <td width="1px" valign="top"> <table style="width: 150px; height: 250px; display:flex; flex-direction: column; overflow:auto"> <tr><td style="width: 150px;">dev</td></tr> </table> </td> </tr> </table>")
- 22:30, 18 August 2022 Lord-Giganticus talk contribs created page MediaWiki:Style.css (Created page with ".navbox { border: 1px solid #aaa; width: 100%; margin: auto; clear: both; font-size: 88%; text-align: center; padding: 1px; } tbody { display: table-row-group; vertical-align: middle; border-color: inherit; } tr { display: table-row; vertical-align: inherit; border-color: inherit; } table.navbox th { text-align: center; padding-left: 1em; padding-right: 1em; background: #ccccff; }")
- 03:46, 15 August 2022 Lord-Giganticus talk contribs created page MediaWiki:Common.css (add css rule for logo image)
- 03:45, 15 August 2022 Lord-Giganticus talk contribs deleted page MediaWiki:Style.css (Edits didn't work :()
- 03:44, 15 August 2022 Lord-Giganticus talk contribs created page MediaWiki:Style.css (add css rule for logo image)
- 20:48, 14 August 2022 Lord-Giganticus talk contribs created page User:Lord-Giganticus/common.css (Created page with ".body { background: #090909; }")
- 19:29, 14 August 2022 Lord-Giganticus talk contribs created page BTI (bti added)
- 19:28, 14 August 2022 Lord-Giganticus talk contribs created page THPConv (more dead links time)
- 19:24, 14 August 2022 Lord-Giganticus talk contribs created page THP (thp moment)
- 19:22, 14 August 2022 Lord-Giganticus talk contribs created page Category:File formats (Copy over another LW wiki category (sorry for dead links))
- 19:14, 14 August 2022 Lord-Giganticus talk contribs protected User:Lord-Giganticus [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 19:14, 14 August 2022 Lord-Giganticus talk contribs created page User:Lord-Giganticus (make page)
- 19:11, 14 August 2022 Lord-Giganticus talk contribs protected Template:WIP [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 19:10, 14 August 2022 Lord-Giganticus talk contribs protected Template:SDK Reference [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 19:10, 14 August 2022 Lord-Giganticus talk contribs protected Template:Reference [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 19:09, 14 August 2022 Lord-Giganticus talk contribs protected Template:Finished [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 19:08, 14 August 2022 Lord-Giganticus talk contribs created page Template:Finished (Create Finished Template)
- 19:07, 14 August 2022 Lord-Giganticus talk contribs created page Template:WIP (Create WIP Template)
- 19:06, 14 August 2022 Lord-Giganticus talk contribs created page Template:SDK Reference (Create SDK Reference)
- 19:03, 14 August 2022 Lord-Giganticus talk contribs created page Template:Reference (Create first template)