All public logs
Jump to navigation
Jump to search
Combined display of all available logs of RuneRealm Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 02:34, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-calc.js (Created page with "$(function () { if ($('.jcConfig').length) { mw.loader.load( 'ext.gadget.calc-core' ); } })")
- 02:33, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-articlefeedback-tools.js (Created page with "* <nowiki> * Secondary gadget for the wiki article feedback feature, which runs solely on * pages that have the feedback wrapper (talk pages). It allows people to * mark feedback as "resolved". * * @author Jayden: var conf = mw.config.get([ 'wgPageName' ]), main = { * * Startup method: init: function () { var wrappers = $('.gloop-feedback-wrapper'); // Loop through all of the feedback...")
- 02:33, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-articlefeedback.css (Created page with ".wgl-feedback-trigger { position: fixed; bottom: 10px; right: 10px; width: 40px; height: 40px; background: #363636; border-radius: 2em; box-shadow: 5px 4px 6px -6px #000000; display: flex; justify-content: center; align-items: center; color: #b3b3b3; cursor: pointer; transition: background 0.5s ease; } .wgl-feedback-container { font-size: .5em; display: inline-block; position: relative; top: -7px; right: -20px;...")
- 02:33, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-articlefeedback-core.js (Created page with "* <nowiki> * Gadget for the wiki article feedback feature. * @author Jayden: 'use strict'; (function($, mw){ var conf = mw.config.get([ 'wgNamespaceNumber', 'wgTitle', 'wgAction', 'wgArticleId', 'wgUserGroups' ]), self = { // Constants API_ENDPOINT: 'https://api.weirdgloop.org/wiki/feedback', RESTRICTED_PAGES: [ // List of pages where...")
- 02:32, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-articlefeedback.js (Created page with "// <nowiki> if (mw.config.get('wgNamespaceNumber') === 0 && mw.config.get('wgAction') === 'view' && mw.config.get('wgArticleId') > 0) { mw.loader.load( 'ext.gadget.articlefeedback-core' ); } if (mw.config.get('wgUserGroups').includes('autoconfirmed') && $('.gloop-feedback-wrapper').length > 0) { mw.loader.load( 'ext.gadget.articlefeedback-tools' ); } // </nowiki>")
- 02:32, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-tooltipPopup.css (Created page with ".add-tooltip-popup { position: relative; } .add-tooltip-popup .title { position: absolute; top: 20px; background: var(--body-light); padding: 4px; border: 1px solid var(--body-border); box-shadow: 0 0.25rem 0.35rem -0.25rem rgb(0 0 0 / 10%); white-space: nowrap; }")
- 02:31, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-tooltipPopup-core.js (Created page with "// Adapted from // https://stackoverflow.com/questions/12539006/tooltips-for-mobile-browsers function init() { $('.add-tooltip-popup').click(function () { var $title = $(this).find('.title'); if (!$title.length) { // Remove any existing tooltips $('.add-tooltip-popup .title').remove(); const tooltip = $(document.createElement('span')); tooltip.addClass('title').text($(this).attr('title')); tooltip.css('left', 0); $(thi...")
- 02:31, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-tooltipPopup.js (Created page with "$(function () { if ($('.add-tooltip-popup').length) { mw.loader.load( 'ext.gadget.tooltipPopup-core' ); } })")
- 02:31, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-smwlistsfull.css (Created page with "#smw-list-full .oo-ui-fieldLayout-field, #smw-list-full .oo-ui-fieldLayout-header { margin-top: 5px; margin-bottom: 5px; } #smw-list-full .oo-ui-fieldLayout-header { width:12em; font-weight: bold; } #smw-list-full .oo-ui-fieldLayout-body { display: flow; } #smw-list-full .oo-ui-buttonElement { margin-top: 1rem; } #smw-list-full .oo-ui-inputWidget { width: 30%; } .smw-list-error { font-size: larger; color: #d33; }")
- 02:30, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-smwlistsfull-core.js (Created page with "// <nowiki> var SMW_TEMPLATES = [ { name: 'Drop sources (without RDT)', template: 'Drop sources', short: 'drops' }, { name: 'Drop sources', template: 'Drop sources', short: 'dropsrdt', extra_params: '|incrdt=y' }, { name: 'Store locations', template: 'Store locations list', short: 'stores' }, { name: 'Products', template: 'Uses material list', short: 'products' }, { name: 'Facilities', template: 'Uses facility list', short: 'facilities' }, { name: 'Tools', template...")
- 02:30, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-smwlistsfull.js (Created page with "if ($('#smw-list-full').length) { mw.loader.load('ext.gadget.smwlistsfull-core'); }")
- 02:30, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-wikisync-core.css (Created page with ".rs-wikisync-help { margin: .5em 0 !important; } .rs-wikisync-help .oo-ui-fieldLayout-body { border: 1px solid #9f261e; border-radius: 2px; padding: 4px 8px; } .rs-wikisync-help .oo-ui-fieldLayout-header .oo-ui-labelElement-label { color: #9f261e; } body.wgl-theme-dark .rs-wikisync-help .oo-ui-fieldLayout-body, body.wgl-theme-browntown .rs-wikisync-help .oo-ui-fieldLayout-body { border: 1px solid #fbc0ba; } body.wgl-theme-dark .rs-wikisync-help .oo-ui-fieldLayo...")
- 02:29, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-wikisync-core.js (Created page with "* * WikiSync: * - Utilises our WikiSync API, with data provided by users via RuneLite. * - Adds the ability to check a user's completed quests. * * Slightly adapted from https://runescape.wiki/w/MediaWiki:Gadget-questchecker-core.js * * @author Jayden * @author Andmcadams * @author Jakesterwars * @author Cook Me Plox * @author Lezed1 * @author Haidro: var CLASSES = { QC_ACTIVE: "qc-active", QC_INPUT: "qc-input", QC_ICON: "rs-qc-icon", }; var END...")
- 02:29, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-wikisync.js (Created page with "$(function () { if ($('.qc-active').length) { mw.loader.load( 'ext.gadget.wikisync-core' ); } })")
- 02:28, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-sidebar-tracking.js (Created page with ";(function($, mw){ function trackSidebarClick(event) { var $e = $(event.currentTarget), pagename = mw.config.get('wgPageName'), href, click_type, data; href = $e.attr('href'); switch (event.which) { case 1: click_type = 'left'; if (!(event.altKey || event.ctrlKey || event.altKey || event.metaKey)) { $e.attr({'x-href': href, 'x-leftclicked':'1'}).removeAttr('href'); } break; case 2: click_type = 'middle'; b...")
- 02:28, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-navbox-tracking.js (Created page with ";(function($, mw){ if ($('.navbox').length <= 0) return; var LOADING = false; function trackNavboxClick(event) { var $e = $(event.currentTarget), pagename = mw.config.get('wgPageName'), href, navbox, link_type = ['link'], click_type, data; href = $e.attr('href'); navbox = $e.parents('.navbox[data-navbox-name]'); if (navbox.length<1) { // missing name, template not propagated - skip return; } navbox = navbox.attr('d...")
- 02:28, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-Charts-core.js (Created page with "var DARKMODE_TEXT = (($('body.wgl-theme-browntown').length) ? '#f4eaea' : '#cbd9f4'); function RSWChart(i, dataElement) { var self = this; this.is_error = false; this.index = i; function error(t) { dataElement.removeClass('rsw-chartjs-config').addClass("rsw-chart-parsed rsw-chart-error").text(t); self.is_error = true; } function parseData() { console.log('parsing data for ' + self.index); if (self.is_error) retur...")
- 02:26, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-Charts.js (Created page with "$(function () { if ($( '.rsw-chartjs-config' ).length) { mw.loader.load( 'ext.gadget.Charts-core' ); } })")
- 02:26, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-checkboxList.css (Created page with "CSS for MediaWiki:Gadget-checkboxList.js: Use with Template:Checklist: =========================== lighttable checklists ===========================: /* checklist will otherwise render anything floated to the right unclickable due to overlap; 300px is the width of infoboxes and default thumbnail size the first rule is the fallback for ancient browsers; the second rule keeps 350px space to the side, down to 1000px width of its co...")
- 02:25, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-checkboxList-core.js (Created page with "* * Adds support for checkbox lists (Template:Checklist) * * Examples/Tests: <https://rs.wiki/User:Cqm/Scrapbook_4> * * History: * - 1.0: Original implementation - Cqm: /* * DATA STORAGE STRUCTURE * ---------------------- * * In its raw, uncompressed format, the stored data is as follows: * { * hashedPageName1: [ * [0, 1, 0, 1, 0, 1], * [1, 0, 1, 0, 1, 0], * [0, 0, 0, 0, 0, 0] * ], * hashedPageName2: [ *...")
- 02:25, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-checkboxList.js (Created page with "$(function () { if ($("ul.checklist, div.checklist > ul").length) { mw.loader.load( 'ext.gadget.checkboxList-core' ); } })")
- 02:24, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-countdown.js (Created page with "* * Countdown * * @version 2.1 * * @author Pecoes <https://c.wikia.com/wiki/User:Pecoes> * @author Asaba <https://dev.wikia.com/wiki/User:Asaba> * * Version 1 authors: * - Splarka <https://c.wikia.com/wiki/User:Splarka> * - Eladkse <https://c.wikia.com/wiki/User:Eladkse> * * documentation and examples at: * <https://dev.wikia.com/wiki/Countdown>: /*jshint jquery:true, browser:true, devel:true, camelcase:true, curly:false, undef:true, bitwise:true, eqeq...")
- 02:23, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-Username.js (Created page with "* * Script for {{USERNAME}}: if (mw.config.get("wgUserName")) $(function(){ $('.insertusername').text(mw.config.get("wgUserName")) });")
- 02:21, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-tooltips.js (Created page with "/* JavaScript tooltips usage: recommended usage: see Template:Tooltip and Template:Tooltip text, or Module:Tooltip for module interface raw usage: Place this where you want the button to appear: <span class="hidden js-tooltip-click" style="display:none;" data-tooltip-name="test">clickable</span> place this elsewhere to define the content of the tooltip: <div class="hidden js-tooltip-wrapper" style="display:none;" data-tooltip-for="test" da...")
- 02:21, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-titleparenthesis.css (Created page with ".title-parenthesis { color: var(--subtle-color); font-size: 80%; }")
- 02:21, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-titleparenthesis.js (Created page with "$(function () { var conf = mw.config.get([ 'wgNamespaceNumber', 'wgTitle' ]); if (conf.wgNamespaceNumber !== 0 || conf.wgTitle.lastIndexOf('(') < 0 || $('.no-parenthesis-style').length) { return; } // use the title in the DOM so this respects DISPLAYTITLE var title = mw.html.escape($('h1#firstHeading').text()), start = title.lastIndexOf('('), end = title.substring(start, title.length).lastIndexOf(')'); // add offset here end += s...")
- 02:20, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-highlightTable-core.css (Created page with "CSS for MediaWiki:Gadget-highlightTable.js: =========================== wikitable lighttables ===========================: :root { RS:THEME colours: --lighttable-bg-hover: #def2cc; lighten(@caper, 10%) in .less: --lighttable-bg-active: #bbee91; lighten(@lima, 30%): --lighttable-link-color: #3c780a; @la-palma: } table.lighttable .highlight-on { background-color: var(--lighttable-bg-active); } table.lighttable .highli...")
- 02:20, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-highlightTable-core.js (Created page with "/** * 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 highligh...")
- 02:20, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-highlightTable.js (Created page with "$(function () { if ($("table.lighttable").length) { mw.loader.load( 'ext.gadget.highlightTable-core' ); } })")
- 02:19, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-UncheckFileRedirect.js (Created page with "* Unchecks redirect checkbox on file pages * Because redirects in file namespace are usually unnecessary: $(function () { 'use strict'; var conf = mw.config.get([ 'wgCanonicalSpecialPageName', 'wgRelevantPageName' ]); $(function () { if (conf.wgCanonicalSpecialPageName === 'Movepage'){ if ((/File:/).test(conf.wgRelevantPageName)){ $('#wpLeaveRedirect > input').removeAttr('checked'); } } }); })")
- 02:19, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-autosort.js (Created page with "* * For autosorting sortable tables * @example <>: (function($,mw,rs){ var $sortables = $('.sortable[class*="autosort="]'); if (!$sortables.length) return; rs.autosort = function () { mw.loader.using('jquery.tablesorter', function () { $sortables.each(function () { var $this = $(this), matched = (' ' + $(this).attr( 'class') + ' ') .match(/autosort=(\d+)[,-]{1}(a|d)/),...")
- 02:16, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-compare.css (Created page with ".cioIcon-crush { background: url('filepath://White_warhammer.png?width=20') center no-repeat; } .cioIcon-magic { background: url('filepath://Magic_icon.png?width=24') center no-repeat; } .cioIcon-prayer { background: url('filepath://Prayer_icon.png?width=22') center no-repeat; } .cioIcon-price { background: url('filepath://Coins_25.png?width=22') center no-repeat; } .cioIcon-ranged { background: url('filepath://Ranged_icon.png?width=22') center no-repeat; } .ci...")
- 02:15, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-compare-core.js (Created page with "* * Adds links for compare popups * * @author Quarenon * @author Ryan PM * @author Joeytje50 * @author Cqm * @author JaydenKieran * * @license GPLv3 <https://www.gnu.org/licenses/gpl-3.0.html> * * @todo try to find a standard img url domain to use * @todo re-center (vertical & horizontally) with new items added, or find a way to do it with pure CSS * might require overhaul to #overlay structure/styles: 'use strict'; var modalOpenedPrev = false; va...")
- 02:15, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-compare.js (Created page with "$(function () { if ($('.cioCompareLink, .infobox-bonuses').length) { mw.loader.load( 'ext.gadget.compare-core' ); } })")
- 02:15, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-GECharts-core.js (Created page with "/** <nowiki> * Grand Exchange Charts * Displays price data of item(s) in a chart * * Highstock docs <https://api.highcharts.com/highstock/> * Highstock change log <https://www.highcharts.com/blog/changelog/#highstock> * * @author Joeytje50 * @author Cqm * @author JaydenKieran * * @todo move Highcharts to a core ResourceLoader module * * @todo use a consistent variable for the chart id * currently it's one of c, i or id * @todo remove script URLs (jav...")
- 02:14, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-GECharts.js (Created page with "$(function () { if ($( '.GEdatachart' ).length) { mw.loader.load( 'ext.gadget.GECharts-core' ); } })")
- 02:14, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-exchangePages-core.js (Created page with "$(function () { $('.gemw-button.secondary').each(function(i,e){ var txt = $(e).find('a').text(); var href = $(e).find('a').attr('href'); var button = new OO.ui.ButtonWidget({ label: txt, title: href, href: href }); $(e).parent().append(button.$element); $(e).remove(); }); var exchangeOverlay = $('<div>'); exchangeOverlay .css({position: 'relative', 'z-index': 100}) .attr('id', 'rsw-exchange-overlay') .appendTo('body'); })")
- 02:14, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-exchangePages.js (Created page with "if (mw.config.get('wgCanonicalNamespace') == 'Exchange') { mw.loader.load( 'ext.gadget.exchangePages-core' ); }")
- 02:12, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-switch-infobox.css (Created page with ".switch-infobox > p, .switch-infobox-triggers > p { display: none; } .switch-infobox > p:first-child, .switch-infobox-triggers > p:first-child { display: block; } .switch-infobox > .item { display: none; } .switch-infobox > .item.showing { display: block; } .switch-infobox > .loading-button { display: none; } .switch-infobox.loading > .switch-infobox-triggers { display: none; } .trigger.button { white-space: pre; } .infobox-buttons, .switch-infobox-triggers...")
- 02:11, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-switch-infobox.js (Created page with "/* switch infobox code for infoboxes * contains switching code for both: * * originalInfoboxes: * older infobox switching, such as Template:Infobox Bonuses * which works my generating complete infoboxes for each version * * moduleInfoboxes: * newer switching, as implemented by Module:Infobox * which generates one infobox and a resources pool for switching * * synced switches * as generated by Module:Synced switch and its template * * The scri...")
- 02:11, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-Less.css (Created page with "This wouldn't be needed if the interface possibly used OOUI instead of being * hand-crafted: body.wgl-theme-dark #less-modal, body.wgl-theme-browntown #less-modal { background: var(--body-light) !important; color: var(--text-color) !important; } body.wgl-theme-dark #less-modal a, body.wgl-theme-browntown #less-modal a { color: var(--link-color) !important; } body.wgl-theme-dark #less-modal #less-header, body.wgl-theme-browntown #less-modal #less-header { bor...")
- 02:10, 13 October 2024 Alex talk contribs created page MediaWiki:Vector-theme-browntown.css (Created page with "<pre>: html:has(body.wgl-theme-browntown) { color-scheme: dark; } body.wgl-theme-browntown { color-scheme: dark; --body-background-image: url('https://wiki2.runerealm.org/images/rss/background_brown_darkmode.jpg'); --body-background-color: #1b1612; --body-main: #28221d; --body-light: #3e362f; --body-mid: #312a25; --body-dark: #312a25; --body-border: #736559; --link-color: #b79d7e; --background-link-color: var(--link-color...")
- 02:07, 13 October 2024 Alex talk contribs created page MediaWiki:Vector-darkmode.css (Created page with "<pre>: html:has(body.wgl-theme-dark) { color-scheme: dark; } body.wgl-theme-dark { color-scheme: dark; --body-background-image: url('filepath://Old_School_RuneScape_Wiki_background_darkmode.jpg'); --body-background-color: #071022; --body-main: #172136; --body-light: #313e59; --body-mid: #222e45; --body-dark: #222e45; --body-border: #596e96; --link-color: #8cabe6; --background-link-color: var(--link-color); --redlink-c...")
- 02:06, 13 October 2024 Alex talk contribs created page MediaWiki:Test.css (Created page with "<pre>: body.page-Old_School_RuneScape_Wiki .mw-parser-output { max-width: 75em; margin: 0 auto; } body.page-Old_School_RuneScape_Wiki.action-view .catlinks, body.page-Old_School_RuneScape_Wiki.action-view #contentSub, body.page-Old_School_RuneScape_Wiki.action-view #siteNotice { display: none; } body.page-Old_School_RuneScape_Wiki .line-break { display: none !important; } .mainpage-header { display: flex; margin: 2.6em 1.75em 1.5em; } .ma...")
- 02:04, 13 October 2024 Alex talk contribs created page MediaWiki:Minerva-darkmode.css (Created page with "<pre>: html:has(body.wgl-theme-dark) { color-scheme: dark; } body.wgl-theme-dark { color-scheme: dark; --body-background-image: url('filepath://Old_School_RuneScape_Wiki_background_darkmode.jpg?width=900px'); --body-background-color: #071022; --body-main: #172136; --body-light: #313e59; --body-mid: #222e45; --body-dark: #222e45; --body-border: #596e96; --ooui-text: var(--text-color); --ooui-interface: #222e45; --ooui-...")
- 02:03, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-toplinksDropdown.css (Created page with "body:not(.mw-special-Preferences) #pt-mytalk, body:not(.mw-special-Preferences) #pt-preferences, body:not(.mw-special-Preferences) #pt-watchlist, body:not(.mw-special-Preferences) #pt-mycontris, body:not(.mw-special-Preferences) #pt-logout { display: none; } body:not(.mw-special-Preferences) #p-personal #pt-userpage { float: right; position: relative; padding-bottom: 1.4em; background-position: left center; } body:not(.mw-special-Preferences) #pt-us...")
- 02:02, 13 October 2024 Alex talk contribs created page MediaWiki:Kartographer.css (Created page with "2022/8/22 note: the css in this page is applied before the default css thus * making it ineffective on certain pages e.g.: Elladan and * X Marks the Spot, but not Demonic gorilla (maybe only broken for * <mapframe>s?): ")
- 02:01, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-Less.js (Created page with "window.lessTargets = [ // globals 'MediaWiki:Common.css', 'MediaWiki:Kartographer.css', 'MediaWiki:Minerva.css', 'MediaWiki:Minerva-darkmode.css', 'MediaWiki:Test.css', 'MediaWiki:Vector.css', 'MediaWiki:Vector-darkmode.css', 'MediaWiki:Vector-theme-browntown.css', // gadgets 'MediaWiki:Gadget-toplinksDropdown.css', ] if ( window.lessTargets.includes( mw.config.get( 'wgPageName' ).replace(new RegExp('\.less$'),'.css' ) ) ) {...")
- 01:57, 13 October 2024 Alex talk contribs created page MediaWiki:Gadget-rsw-util.js (Created page with "(function ($, mw, rs) { 'use strict'; function createOOUIWindowManager() { if (window.OOUIWindowManager == undefined) { window.OOUIWindowManager = new OO.ui.WindowManager(); $( 'body' ).append( window.OOUIWindowManager.$element ); } return window.OOUIWindowManager; } /** * Reusable functions * * These are available under the `rswiki` global variable. * @example `rswiki.addCommas` * The alias `rs` is also avai...")
- 01:49, 13 October 2024 Alex talk contribs created page MediaWiki:Gadgets-definition (Created page with "This page contains the definitions for all gadgets on the wiki. In most cases, code that could be placed in Common.js should be made into a module here instead for granularity and better support for mobile, etc. Edits to this page should be done with care. Gadgets are by default enabled on both desktop and mobile; ensure that the gadget '''works''' on mobile properly by debugging it on mobile devices. Some mobile devices do not allow JavaScript to run, or do not run it...")