User contributions for Soulgazer
Jump to navigation
Jump to search
- 04:22, 18 February 2022 diff hist +26 Main Page
- 03:54, 18 February 2022 diff hist +1 Main Page
- 03:54, 18 February 2022 diff hist +56 Main Page
- 03:54, 18 February 2022 diff hist +3 Main Page
- 03:54, 18 February 2022 diff hist +15 Main Page
- 03:54, 18 February 2022 diff hist +21 Main Page
- 03:54, 18 February 2022 diff hist +27 Main Page
- 03:53, 18 February 2022 diff hist +1 Main Page
- 03:53, 18 February 2022 diff hist +17 Main Page
- 03:53, 18 February 2022 diff hist +6 Main Page
- 03:53, 18 February 2022 diff hist −39 Main Page
- 03:52, 18 February 2022 diff hist +1 Main Page
- 03:52, 18 February 2022 diff hist +39 Main Page
- 03:52, 18 February 2022 diff hist +27 Main Page
- 02:57, 18 February 2022 diff hist −2 Main Page
- 02:56, 18 February 2022 diff hist +66 Main Page
- 06:39, 17 February 2022 diff hist +58 MediaWiki:Common.css
- 18:22, 16 February 2022 diff hist +1,277,796 N MediaWiki:Gadget-Bundle.js Created page with "→! For license information please see bundle.js.LICENSE.txt: (()=>{"use strict";var e={376:(e,t,n)=>{function i(e,t){var n=e.__state.conversionName.toString(),i=Math.round(e.r),r=Math.round(e.g),s=Math.round(e.b),a=e.a,o=Math.round(e.h),l=e.s.toFixed(1),c=e.v.toFixed(1);if(t||"THREE_CHAR_HEX"===n||"SIX_CHAR_HEX"===n){for(var h=e.hex.toString(16);h.length<6;)h="0"+h;return"#"+h}return"CSS_RGB"===n?"rgb("+i+","+r+","+s+")":"CSS_RGBA"===n?"rgba("+i+","+r+","+s+","+a+")":..." current
- 09:05, 16 February 2022 diff hist +6,377 MediaWiki:Gadgets-definition current
- 09:04, 16 February 2022 diff hist +3,440 MediaWiki:Gadgets-definition
- 08:58, 16 February 2022 diff hist +17,750 N Module:Map Created page with "-- <nowiki> local hc = require('Module:Paramtest').has_content local p = {} local zoomSizes = { { 3, 8 }, { 2, 4 }, { 1, 2 }, { 0, 1 }, { -1, 1/2 }, { -2, 1/4 }, { -3, 1/8 } } -- Default size of maps (to calc zoom) local default_size = 800 -- 800px for full screen -- Map feature (overlay) types local featureMap = { none = {}, square = { square=true }, rectangle = { square=true }, polygon = { polygon=true }, line = { line=true }, lines = { line=true }, cir..." current
- 08:58, 16 February 2022 diff hist +1,319 N Module:Main article Created page with "-- <pre> local p = {} function p.main(frame) local args = frame:getParent().args local ret = mw.html.create('div') :addClass('seealso') -- list of all articles local params = {} -- total arguments counted counted local ttl = 0 for _, v in ipairs(args) do ttl = ttl + 1 table.insert(params,v) end -- main return string ret:wikitext('Main article'..(#params > 1 and 's' or '')..': ') -- helper function local function link(article) article = string.gs..." current
- 08:57, 16 February 2022 diff hist +7,221 N Module:LocLine Created page with "local p = {} local editBtn = '<small>' .. require('Module:Edit button')() .. '</small>' local yesno = require('Module:Yesno') local isEmpty = require('Module:Paramtest').is_empty local buildMap = require('Module:Map').buildMap local tb = require('Module:Trailblazer Region')._main local membscol = { [true] = 'link=Members', [false] = 'link=Free-to-play', } function p.main(frame) local args = frame:getParent().a..." current
- 08:57, 16 February 2022 diff hist +473 N Module:Edit button Created page with "-- {{Helper module|name=Edit button|fname1=(text)|ftype1=string|fuse1=Creates an edit button for the current page that the module is invoked on<br><br><code>text</code> defaults to "edit"}} -- Creates a link that opens the editor screen for whatever page this module is invoked on return function(text) local page_title = mw.title.getCurrentTitle().fullText local url = tostring(mw.uri.fullUrl(page_title,'action=edit')) return '['..url..' '..(text or 'edit')..']' end" current
- 08:55, 16 February 2022 diff hist +1,261 N Module:Utils Created page with "-- Ordered table iterator, allow to iterate on the natural order of the keys of a -- table. local p = {} function __genOrderedIndex( t ) local orderedIndex = {} for key in pairs(t) do table.insert( orderedIndex, key ) end table.sort( orderedIndex ) return orderedIndex end function orderedNext(t, state) -- Equivalent of the next function, but returns the keys in the alphabetic -- order. We use a temporary ordered key table that is s..." current
- 08:54, 16 February 2022 diff hist +12,847 N Module:Update Created page with "--<nowiki> --TODO - Implement OSRSUpdate into Lua and modify Update template with field for pre-osrs. -- IMPORTS local pt = require('Module:Paramtest') local top_icons = require('Module:Top icons')._main local hc = pt.has_content local dt = pt.default_to -- exposed table local p = {} --[=[ -- -- HELPER TABLES AND FUNCTIONS -- --]=] -- replacement before calling encode -- as lua patterns local repl_before = { ['%('] = '', ['%)'] = '', ['%!'] = '', } -- replace..." current
- 08:53, 16 February 2022 diff hist +1,964 N Module:Top icons Created page with "local p = {} local sites = { rsc = { format = 'The RuneScape Classic Wiki also has an article on: classicrsw:%s', params = { 'rsc', 'classic', 'c' }, abbr = 'CS', title = 'The RuneScape Classic Wiki also has an article on %s.', }, rs = { format = 'The RuneScape Wiki also has an article on: rsw:%s', params = { 'runescape', 'rs', 'rsw', 'rs3' }, abbr = 'RuneScape', title = 'The RuneScape Wiki also has an article on %s.', }, wp = { format..." current
- 08:53, 16 February 2022 diff hist +1,592 N Module:Tooltip Created page with "local p = {} local yn = require('Module:Yesno') local hc = require('Module:Paramtest').has_content -- module access point for div p._div = function(args) local name = args.name if not hc(name) then error('Name is required!') end local content = args.content local hasarrow = yn(args.arrow or 'yes', true) local arrowsize = tonumber(args.arrowsize) or 10 local limitwidthbool = yn(args.limitwidth or 'yes', true) local style = args.style local div = mw.ht..." current
- 08:52, 16 February 2022 diff hist +1,421 N Module:Tables Created page with "--[[ {{Helper module |name = Tables |fname1 = _row(row, elts, header) |ftype1 = mw.html object, table/string, boolean |fuse1 = Adds <code>td</code> or <code>th</code> cells to the html object with the cells data specified by <code>elts</code>. If <code>header</code> = <code>true</code> then all cells added will have the <code>th</code> tag. |fname2 = _table(table, data) |ftype2 = mw.html object, table |fuse2 = Adds <code>tr</code> rows and <code>td</code>/<code>th</code>..." current
- 08:40, 16 February 2022 diff hist +1,518 N MediaWiki:Gadget-ezcopy.css Created page with ".rsw-ezcopy-container { display: inline-block; font-family: 'IBM Plex Sans','Helvetica Neue','Arial',sans-serif; margin-left: 0.2em; } .rsw-ezcopy-container .rsw-ezcopy-button { display: inline-block; height: 2em; width: 4em; vertical-align: middle; text-align: center; font-size: 0.4em; border: 2px solid var(--body-border); background: var(--body-dark); font-weight: normal; cursor: pointer; line-height: 1em; } .rsw-ezcopy-container .rsw-ezcopy..." current
- 08:40, 16 February 2022 diff hist +882 N MediaWiki:Gadget-oswf-core.js Created page with "var showText = 'Get started with this task', hideText = 'Hide additional info', showTitle = 'Show the guidance for this task', hideTitle = 'Hide the guidance for this task'; function init() { $('.oswf-guidance').each(function(i,e){ var $this = $(e), $content, toggleButton, showing = false; $content = $('<div>').append($this.contents()); $content.hide(); toggleButton = new OO.ui.ButtonWidget({ icon: 'expand', title: showTitle, label: showTex..." current
- 08:39, 16 February 2022 diff hist +105 N MediaWiki:Gadget-oswf.js Created page with "// <nowiki> if ( $('.oswf-guidance').length ) { mw.loader.load( 'ext.gadget.oswf-core' ); } // </nowiki>" current
- 08:39, 16 February 2022 diff hist +494 N MediaWiki:Gadget-Message-names.js Created page with "→* Add a toolboox link to display the current page with MediaWiki message names replacing their text * Adapted from https://en.wikipedia.org/wiki/MediaWiki:Gadget-ShowMessageNames.js: $( document ).ready( function() { mw.util.addPortletLink( 'p-tb', location.href.replace( location.hash, '' ) + ( location.search ? '&' : '?' ) + 'uselang=qqx', 'Message names', 't-messagenames', 'Display the current page with MediaWiki message names replacing t..." current
- 08:39, 16 February 2022 diff hist +2,943 N MediaWiki:Gadget-QDmodal.css Created page with "→CSS for [[MediaWiki:Gadget-QDmodal.js]]: .qdmodal-no-scroll { overflow: hidden; } .qdmodal-container { background-color: hsla(0, 0%, 0%, 0.4); font-size: 14px; line-height: 22px; display: flex; justify-content: center; align-items: center; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 101; →#p-personal has z-index of 100: } .qdmodal { color: #36414f; background-color: #e2dbc8;..." current
- 08:39, 16 February 2022 diff hist +2,338 MediaWiki:Gadget-QuickDiff.js current
- 08:38, 16 February 2022 diff hist +4,907 N MediaWiki:Gadget-QuickDiff.js Created page with "→<nowiki> QDmodal - flexbox-based modal library CSS located at [[MediaWiki:Gadget-QDmodal.css]] @author OneTwoThreeFall @source <https://dev.fandom.com/wiki/QDmodal> @source <https://dev.fandom.com/wiki/MediaWiki:QDmodal.js>: →jslint browser, long, this: →global jQuery, mediaWiki: (function ($, mw) { "use strict"; var version = 20180212; if (mw.libs.QDmodal && mw.libs.QDmodal.version >= version) { return; }..."
- 08:37, 16 February 2022 diff hist +4,907 N MediaWiki:Gadget-QDmodal.js Created page with "→<nowiki> QDmodal - flexbox-based modal library CSS located at [[MediaWiki:Gadget-QDmodal.css]] @author OneTwoThreeFall @source <https://dev.fandom.com/wiki/QDmodal> @source <https://dev.fandom.com/wiki/MediaWiki:QDmodal.js>: →jslint browser, long, this: →global jQuery, mediaWiki: (function ($, mw) { "use strict"; var version = 20180212; if (mw.libs.QDmodal && mw.libs.QDmodal.version >= version) { return; }..." current
- 08:37, 16 February 2022 diff hist +6,917 N MediaWiki:Gadget-LazyAdminTools.js Created page with "// LazyAdminTools: easy delete, rollback, and block buttons for admins // @author Jr Mime // @author Iiii_I_I_I (function ($, mw) { if (mw.config.get("wgCanonicalSpecialPageName") != "Contributions") return; var username = mw.config.get("wgPageName").split("/")[1], lazyAdminTools = {}; // Fieldset maker lazyAdminTools.init = function () { var blockSection = new OO.ui.ActionFieldLayout( new OO.ui.ComboBoxInputWidget({..." current
- 08:37, 16 February 2022 diff hist +979 N MediaWiki:Gadget-fileDownload.js Created page with "→* * Adds a download link to file pages * * @author Gaz Lloyd: (function($, mw){ if (!(mw.config.get('wgNamespaceNumber') === 6 && $('.fullMedia, .filehistory').length > 0)) { return; } function addLinks() { // underneath image - also replace filename with page title $('.fullMedia a.internal').after( ' (', $('<a>') .text('download') .addClass('fileDownload') .attr({ href: $('.fullMedia a.internal').attr('href'), download: mw...." current
- 08:36, 16 February 2022 diff hist +2,435 N MediaWiki:Gadget-ReferenceTooltips.css Created page with "→* * Reference tooltips: →Settings link: #rsw-config-open { float: right; font-size: smaller; } →Tooltip: .rsw-tooltip { position: absolute; z-index: 5; background-color: var(--body-light); border: 2px solid var(--body-border); color: var(--text-color); max-width: 300px; overflow-wrap: break-word; padding: 10px 15px; margin: 0px; -moz-box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1); -webkit-box-..." current
- 08:36, 16 February 2022 diff hist +12,877 N MediaWiki:Gadget-ReferenceTooltips.js Created page with "→* * Reference tooltips * * Adds a tooltip to references when hovering over or clicking them * Based on [[mw:Reference tooltips]] * * @author Cqm * * @todo Add fade in/fade out animations for config form and tooltip * @todo Find some way to detect of user has keyboard/mouse * as windows 8 supports touchscreens and a mouse * so allow hover activation if that's the case *: ;(function ($, mw) { 'use strict'; function tooltips() {..." current
- 08:36, 16 February 2022 diff hist +337 N MediaWiki:Gadget-hotcat.js Created page with "→This imports the latest version of HotCat from Commons. HotCat is a gadget to make changes to categories much easier. Full documentation can be found at http://commons.wikimedia.org/wiki/Help:Gadget-HotCat: mw.loader.load( '//commons.wikimedia.org/w/index.php?title=MediaWiki:Gadget-HotCat.js&action=raw&ctype=text/javascript' );" current
- 08:35, 16 February 2022 diff hist +1,122 N MediaWiki:Gadget-dropdown.js Created page with "→* * add various useful links to the "More" dropdown menu * * References: * <https://www.mediawiki.org/wiki/ResourceLoader/Core_modules#addPortletLink> * <https://en.wikipedia.org/wiki/Help:Customizing_toolbars>: $( function () { var conf = mw.config.get([ 'wgPageName', 'wgNamespaceNumber', 'wgArticlePath' ]) if (conf.wgNamespaceNumber === -1) { return; // don't run on special pages } // link to the most recent diff à la Twinkle..." current
- 08:34, 16 February 2022 diff hist +22,668 N MediaWiki:Gadget-sandbox.js Created page with "/** <pre> * highlightTable.js * * Description: * Adds highlighting to tables * * History: * - 1.0: Row highlighting - Quarenon * - 1.1: Update from pengLocations.js v1.0 - Quarenon * - 2.0: pengLocations v2.1, Granular cookie - Saftzie * - 2.1: Made compatible with jquery.tablesorter - Cqm * - 2.2: Switch to localStorage - Cqm * - 3.0: Allow cell highlighting - mejrs * - 4.0: Labelled hi..." current
- 08:33, 16 February 2022 diff hist +120 N MediaWiki:Gadget-crob.css Created page with "#crob-img { background: url('filepath://Crob.gif') no-repeat; background-size: 150px; height: 168px; width: 158px; }" current
- 08:33, 16 February 2022 diff hist +693 N MediaWiki:Gadget-gadgetLinks.js Created page with "// Add gadget links to the gadgets that are being defined on MediaWiki:Gadgets-definition $(function() { function gadgetLink(page) { return '<a href="/w/MediaWiki:Gadget-'+page+'" title="MediaWiki:Gadget-'+page+'">'+page+'</a>'; } $('.page-MediaWiki_Gadgets-definition #bodyContent ul li').not('#toc li').each(function() { var txt = this.innerHTML; var links = txt.replace(/([a-zA-Z-]+)(\^\+\]\|)(.*)/, function(match, name, options, filelist) {..." current
- 08:32, 16 February 2022 diff hist +8,375 N MediaWiki:Gadget-clippy.css Created page with "@keyframes spinny { from { transform: rotate(0); } to { transform: rotate(360deg); } } .spinny { animation: 3s spinny linear infinite; animation-play-state: paused; display: inline-block; } .spinny.spinning { animation-play-state: running; } .infobox-monster { position: relative; } →Borrowed from https://codepen.io/mdg445/pen/Jxgny: .achievement-banner { box-sizing: border-box; opacity: 0; margin: 0 auto;..." current
- 08:32, 16 February 2022 diff hist +108,181 N MediaWiki:Gadget-clippy.js Created page with "→globals $, mw, rswiki: Math.Vector = function (x,y) { this.x = x; this.y = y; } Math.Vector.prototype = { clone: function () { return new Math.Vector(this.x, this.y); }, negate: function () { this.x = -this.x; this.y = -this.y; return this; }, neg: function () { return this.clone().negate(); }, addeq: function (v) { this.x += v.x; this.y += v.y; return this; },..." current
- 08:32, 16 February 2022 diff hist +48 N MediaWiki:Gadget-showAdvancedData.css Created page with ".infobox .advanced-data { display: table-row; }" current
- 08:31, 16 February 2022 diff hist +820 N MediaWiki:Gadget-sigreminder-core.js Created page with "// <nowiki> $('#wpSave').click(function (e) { var text = $('#wpTextbox1').val(), reminder = 'It looks like you forgot to sign your comment. You can sign by placing 4 tildes (~~\~~) to the end of your message.\nAre you sure you want to post it?'; if ( // don't trigger on minor edits $('#wpMinoredit').prop('checked') || // check for signature text.replace(/(<nowiki>.*?<\/nowiki>)/g, '').match('~~\~') || // check for &..." current