All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Old School Near-Reality Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 19:44, 3 October 2022 Jacmob talk contribs created page Template:Nowrap (Created page with "<span style="white-space:nowrap;">{{{1|}}}</span><noinclude>{{/doc}}</noinclude>")
- 19:43, 3 October 2022 Jacmob talk contribs created page Template:Wp/doc (Created page with "{{documentation}} This template is used to link to Wikipedia articles. ==Usage== {{t|Wp|wikipedia article name|alt text}} ==Examples== {{t|Wp|Maple}}<br/> {{Wp|Maple}} {{t|Wp|Maple|Maple tree}}<br/> {{Wp|Maple|Maple tree}} {{t|Wp|de:Ahorne|Maple tree (German WP)}}<br/> {{Wp|de:Ahorne|Maple tree (German WP)}} ==Parameters== <templatedata> { "description": "", "params": { "1": { "label": "Article name", "description": "Wikipedia...")
- 19:43, 3 October 2022 Jacmob talk contribs created page Template:Wp (Created page with "<includeonly>[[Wikipedia:{{{1}}}|<span title=""{{{1}}}" on English Wikipedia">{{{2|{{{1}}}}}}</span>]]</includeonly><noinclude>{{/doc}}</noinclude>")
- 19:42, 3 October 2022 Jacmob talk contribs created page Template:DependencyList/doc (Created page with "{{Documentation}} This template is meant to be used on module documentations. {{T|DependencyList|<Module name>|category=<true/false>}} All parameters are optional. If <code>Module name</code> is omitted the page name will be used instead; <code>/doc</code> is automatically removed. If <code>category</code> is <code>false</code> then no categories will be added to the page, the default value is <code>true</code>. ==Examples== {{T|DependencyList|Module:Infobox Monster...")
- 19:42, 3 October 2022 Jacmob talk contribs created page Template:DependencyList (Created page with "<includeonly>{{#invoke:DependencyList|main}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 19:42, 3 October 2022 Jacmob talk contribs created page Template:PageType/doc (Created page with "{{documentation}} Template providing a literal description of the type of a page. This will typically be an economical version of the page's namespace, worded in such a way that it will also be the natural way of describing it verbally. For instance the myriad of talk pages are simply referred to as 'talk page'(s) without any distinction. Namespaces not explicitly covered is handled by a catch-all returning '<page type>'. This template is intended for transclusion by o...")
- 19:41, 3 October 2022 Jacmob talk contribs created page Template:PageType (Created page with "<includeonly>{{#switch:{{NAMESPACE:{{FULLPAGENAME}}}} <noinclude> Regular pages </noinclude> |=article |User=user page |Near-Reality=project page |File=image |Template=template |Help=help page |Category=category |Map=map page |Forum=forum thread |Exchange=exchange page |Update=update page |Calculator=calculator |Transcript=transcript |Property=property |Module=module <noinclude> Talk pages </noinclude> |Talk=talk page |User talk=talk page |Near-Reality talk=talk page |Fi...")
- 19:39, 3 October 2022 Jacmob talk contribs created page Template:DPLlua helper/doc (Created page with "{{Documentation}} {{Invokes|DPLlua/Helper}} Helper template for Module:DPLlua to make it possible to inlude all parameters of a template while maintaining good performace. This template is not meant to be used on content pages.")
- 19:39, 3 October 2022 Jacmob talk contribs created page Template:DPLlua helper (Created page with "<includeonly>{{#Invoke:DPLlua/Helper|_includeTemplateHelper}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 19:38, 3 October 2022 Jacmob talk contribs created page Module:DPLlua/Helper/doc (Created page with "{{Documentation}} {{Invokes|DPLlua/Helper}} Helper template for Module:DPLlua to make it possible to inlude all parameters of a template while maintaining good performace. This template is not meant to be used on content pages.")
- 19:38, 3 October 2022 Jacmob talk contribs created page Module:DPLlua/Helper (Created page with "-- <nowiki> return { _includeTemplateHelper = function( frame ) return '`#@@#`' .. frame:getParent().args['%ARGS%'] .. '`#@@#`' -- DPL supplies this parameter end } -- </nowiki>")
- 19:37, 3 October 2022 Jacmob talk contribs created page Module:DPLlua/doc (Created page with "{{Documentation}} Uses Module:DPLlua/Helper to make it possible to include all parameters of a template while maintaining good performance. {{Helper module|name=DPLlua |fname1 = ask( ... ) |ftype1 = tables |fuse1 = <code>ask</code> takes a series of tables each containing the settings for a DPL query; it will return the same number of result tables as input tables. All formatting settings are stripped from the config. If the config does not contains <code...")
- 19:37, 3 October 2022 Jacmob talk contribs created page Module:DPLlua (Created page with "-- <nowiki> local dpl = {} local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg dpl.pipe = '¦' local dataContentMarker = '`#@@#`' local allIncludedParamNames = {} -- Custom function for splitting a string because mw.text.split() is waaay too slow local function split( str, pattern, plain ) local res = {} local continue = true local startIndex = 1 while continue do loca...")
- 19:34, 3 October 2022 Jacmob talk contribs created page Module:T/doc (Created page with "{{Documentation}} A template link with a variable number of parameters. ===Use=== To use this for templates, use :{{T|T|<nowiki>parameter 1|parameter 2|parameter 3|...|parameter 20</nowiki>}}<!-- self-referential examples! --> To use other namespaces, use the namespace as prefix, for example :{{T|T|User:Example}} And to show transclusions of mainspace pages, use :{{T|T|:Bucket}} ===Example=== <code><nowiki>{{T|Stub}}</nowiki></code> :{{T|Stub}} <code><nowiki>{{T|Stub...")
- 19:34, 3 October 2022 Jacmob talk contribs created page Module:T (Created page with "-- <nowiki> -- Template:T -- local p = {} function p.main(frame) local args = frame:getParent().args return p._main(args) end function p._main(args) local link = args[1] local uri local targs = {} local ns local i = 1 -- strip transclusion modifiers (mw:Help:Magic words#Transclusion modifiers) link = link :gsub('safesubst:', '') :gsub('subst:', '') :gsub('int:', '') :gsub('msg:', '')...")
- 19:32, 3 October 2022 Jacmob talk contribs created page Module:Top icons/doc (Created page with "{{documentation}} This module is used in Template:External to generate the top icons. It can also be called from other modules using its helper function. {{Helper module |name=Top icons |fname1 = _main(args) |ftype1 = String |fuse1 = Returns a string that adds top icons to the page. <code>args</code> must be a table of arguments. Numbered arguments must have values of <code>rs</code>, <code>rsc</code>, <code>meta</code> or <code>wp</code>. To provide a specific pag...")
- 19:32, 3 October 2022 Jacmob talk contribs created page 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...")
- 19:20, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-mmgkc.css (Created page with ".mmg-kph-selector-field { display: inline-block; } .mmg-kph-selector-field .oo-ui-labelElement-label { font-weight: bold; } .mmg-kph-selector { width: 15em; } .mmg-kph-selector .oo-ui-inputWidget-input { text-align: center; }")
- 19:20, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-mmgkc-core.js (Created page with "function parseMmgFloat(x) { var _x = parseFloat(x); if (isNaN(_x)) { return 0; } return _x; } function formatNum(x) { var _x = Math.abs(x); if (_x > 99) { // if over 100 // round to 0 dp and format with commas if needed _x = Math.round(x); _x = _x.toLocaleString('en'); } else if (_x < 0.1) { // if under 0.1 // round to 2 sf var n = Math.floor(Math.log10(x)) - 1; _x = Math.pow(10, n) * Math.round(x/Math.pow(10,n)); // cull binary representat...")
- 19:20, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-mmgkc.js (Created page with "// <nowiki> $(function () { if ($('.mmg-table.mmg-isperkill').length) { mw.loader.load( 'ext.gadget.mmgkc-core' ); } }) // </nowiki>")
- 19:20, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-dropDisplay.css (Created page with "#rsw-drops-overlay2 { font-size: 0.8em; } #rsw-drops-overlay2 .oo-ui-popupWidget-head > .oo-ui-labelElement-label { font-size: 1.25em; font-weight: bold; } #rsw-drops-overlay2 .oo-ui-horizontalLayout { margin-top: 0.85714286em; } #rsw-drops-overlay2 .oo-ui-horizontalLayout > .oo-ui-layout, #rsw-drops-overlay2 .oo-ui-horizontalLayout > .oo-ui-widget { margin-right: 2em; } Vertical align of the table headers: table.item-drops.filterable th {...")
- 19:20, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-dropDisplay-core.js (Created page with "// <nowiki> 'use strict'; var userSettings, settingsName = 'rsw-drop-display-settings', defaultSettings = {_ratedisp: 2, _valcoldisp: 1}; // grabs settings from localstorage (or defaults if not supported) function getSettings(){ var settings = {}; if (rswiki.hasLocalStorage()) { try { settings = JSON.parse(localStorage.getItem(settingsName)); } catch (err) { settings = {}; } if (settings === null) { settings = {}; } } userSettings = $.extend(...")
- 19:19, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-dropDisplay.js (Created page with "// <nowiki> $(function () { if ($('table.item-drops.filterable').length) { mw.loader.load( 'ext.gadget.dropDisplay-core' ); } }) // </nowiki>")
- 19:19, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-calculatorNS.js (Created page with "* * Adds a link to the main calculators directory to every calculator namespace page * in the same place as other subpage links (creates the element if required) * * @author Gaz Lloyd: $(function () { if (mw.config.get('wgNamespaceNumber') !== 116) { return; } function init() { // duplication prevention if ($('#contentSub .subpages .calculatorDirectoryLink').length) return; var link = $('<a>') .attr({ href: mw.util.getUrl('Calculators'),...")
- 19:19, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-infoboxQty.js (Created page with "/** * Infobox quantity script * Adds a number input box next to specific numbers in tables * Primary use case: the price in Infobox Item * * TODO: add infobox monster support (for what?) * * USAGE: * <td><span class="infobox-quantity" data-val-each="100" data-value="1"><span class="infobox-quantity-replace">100</span> coins</span></td> * Everything inside the td should be wrapped in the outer span, which has class=infobox-quantity and attr data-val-each=(value...")
- 19:19, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-calc.css (Created page with ".jcConfig { display: none; } .jcTable { margin: 0 !important; } .jcTable th { text-align: left !important; } .jcSubmit img { margin: 0 auto; } div > .jcTable .jsCalc-field.oo-ui-fieldLayout:before, div > .jcTable .jsCalc-field.oo-ui-fieldLayout:after, div > .jcTable .jsCalc-group.oo-ui-layout:before, div > .jcTable .jsCalc-group.oo-ui-layout:after { display: none; } div > .jcTable .jsCalc-group.oo-ui-layout:before, div > .jcTable .jsCalc-group.oo-ui-layout:a...")
- 19:18, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-calc-core.js (Created page with "/** <nowiki> * Calc script for RuneScape Wiki * * MAIN SCRIPT https://runescape.wiki/w/MediaWiki:Gadget-calc.js * https://runescape.wiki/w/MediaWiki:Gadget-calc.css * DUPLICATE TO https://oldschool.runescape.wiki/w/MediaWiki:Gadget-calc.js * https://oldschool.runescape.wiki/w/MediaWiki:Gadget-calc.css * make sure to update the hiscores URL for OSRS * * This script exposes the following hooks, accessible via `mw.hook`: * 1. 'rscalc.setupComplete' - F...")
- 19:18, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-calc.js (Created page with "// <nowiki> $(function () { if ($('.jcConfig').length) { mw.loader.load( 'ext.gadget.calc-core' ); } }) // </nowiki>")
- 19:17, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-hideRCsidebar.css (Created page with "Hide RC on sidebar: #p-Recent_changes { display: none !important; }")
- 19:17, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-ringbell.css (Created page with "@keyframes ring { 0% { transform: rotate(0); } 1% { transform: rotate(30deg); } 3% { transform: rotate(-28deg); } 5% { transform: rotate(34deg); } 7% { transform: rotate(-32deg); } 9% { transform: rotate(30deg); } 11% { transform: rotate(-28deg); } 13% { transform: rotate(26deg); } 15% { transform: rotate(-24deg); } 17% { transform: rotate(22deg); } 19% { transform: rotate(-20deg); } 21% { transform: rotate(18deg); } 23...")
- 19:17, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-readableRC-core.css (Created page with "padding between "Live updates" button and gadget: .gadget-rc-button { margin-left: .5em; } diff row: .gadget-rc-enabled .mw-changeslist-line { margin: .3em 0; line-height: 1.6; -webkit-hyphens: auto; -ms-hyphens: auto; hyphens: auto; } this is what makes most of it work: .gadget-rc-enabled .mw-changeslist-line tbody > tr { display: flex; } pagename/log name column: .gadget-rc-pagename, .gadget-rc-logname { width: 22v...")
- 19:17, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-readableRC-core.js (Created page with "// <nowiki> // Formats the rows on Special:RecentChanges where all the information runs together // into three columns (page, diff/byte change, and user links) to make it more readable // // @author Iiii_I_I_I // // @TODO: support "Group changes by page" option being unchecked in Special:Preferences? (function ($, mw) { function runReadableRC($content) { if (!$content.hasClass('mw-changeslist')) { return; } $content.addClass('gad...")
- 19:16, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-readableRC.js (Created page with "// <nowiki> if (mw.config.get('wgPageName') == 'Special:RecentChanges') { mw.loader.load('ext.gadget.readableRC-core'); } // </nowiki>")
- 19:16, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-colorRC.css (Created page with "* * Color certain namespaces in RecentChanges * @todo: add something to distinguish watched pages (since this already bolds by default) * * This gadget is enabled for mobile too, so ensure that all CSS styling done here makes * sense for those viewing the wiki from a mobile device.: fix this issue <https://css-tricks.com/multi-line-padded-text/>: .mw-changeslist-title { -webkit-box-decoration-break: clone; box-decoration-break: clone; } .mw-changeslist-ns-10...")
- 19:16, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-falseSubpage.js (Created page with "* * Hides the subpage link on pages that should not be considered subpages - see also Category:Pages with technically restricted titles and Template:Restricted title * @author Gaz Lloyd *: $(function(){ if (!$('.false-subpage').length) return; $('#contentSub .subpages').hide(); })")
- 19:16, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-stickyTableHeaders.css (Created page with "/* keeps table headers stuck to the top of the window, useful for long tables where it normally scrolls offscreen KNOWN PROBLEMS - borders disappear due to browser implementation issue (https://bugs.webkit.org/show_bug.cgi?id=128486) - double-row headers only work as long as the first <tr> does not stretch its height, since MediaWiki doesn't support <thead> - Safari makes the th elements in <tfoot> scroll down along with the top, if they are made stick...")
- 19:15, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-equipment.js (Created page with "// Make buttons for Items Kept on Death and Equipment Stats on Template:Equipment clickable, // if equipment stats and buttons are shown. $(function() { $('.equipment-statsbutton, .equipment-ikodbutton').click(function() { var ikod = $(this).parents('.equipment').find('.equipment-ikod'), stats = $(this).parents('.equipment').find('.equipment-stats'); if ($(this).is('.equipment-statsbutton')) { ikod.hide(); stats.show(); } else { stats.hide(); ikod....")
- 19:15, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-musicMap.css (Created page with "path.leaflet-interactive { stroke: #38f; fill: #38f; fill-opacity: 0.3; opacity: 0.75; } path.leaflet-interactive:hover { fill: #16d; } path.leaflet-interactive.unlocked { fill: #6d6; } path.leaflet-interactive.unlocked:hover { fill: #3b3; } path.leaflet-interactive:active { fill-opacity: 0.25; }")
- 19:15, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-musicMap-core.js (Created page with "Music map * Generates an interactive music map that has toggleable polygons on it. Can be used as a 'checklist' to track music track unlock progression. * See Map:Music tracks: var MM = {}; MM.touch = false; MM.getUnlocked = function() { var ls = localStorage.getItem('musicMap-'+mw.config.get('wgPageName')); if (!ls) return []; // map characters back to numbers and convert to var bitstr = Array.prototype.map.call(ls, function(x) { // go through each cha...")
- 19:14, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-musicMap.js (Created page with "// <nowiki> $(function () { if ($("#musicMap").length) { mw.loader.load( 'ext.gadget.musicmap-core' ); } }) // </nowiki>")
- 19:14, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-audioplayer.css (Created page with ".rsw-music-player { height: 2em; vertical-align: middle; } * Styles for Template:Playlist *: #music-playlist { more mobile-friendly instead of static width: width: 90%; max-width: 350px; margin: 0 auto; text-align: center; padding-bottom: 0.5em; border: none; border: 1px solid var(--body-border); background: var(--body-light); } #music-playlist button { margin: 2px 0.5em; } #music-player { margin: 5px;...")
- 19:14, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-audioplayer-core.js (Created page with "$(function() { * Replace audio track links with the audio file when clicked *: function playTrack(e, playlist) { if ($(this).attr('target') == '_blank') { // do not play another track if the link opens in a new tab. return; } e.preventDefault(); var filename = $(e.target).closest('a').attr('href').match(/File:(.*\.ogg)/)[1]; var $audio = $('<audio>').attr({ src: '/w/Special:Redirect?wptype=file&wpvalue=' + filename, autoplay: playlist !== true,...")
- 19:13, 3 October 2022 Jacmob talk contribs created page MediaWiki:Gadget-audioplayer.js (Created page with "// <nowiki> $(function () { if ($( 'a[href^="/w/File:"][href$=".ogg"]' ).length) { mw.loader.load( 'ext.gadget.audioplayer-core' ); } }) // </nowiki>")
- 19:12, 3 October 2022 Jacmob talk contribs created page Near-Reality:Lua/Modules (Created page with "<dpl> namespace = Module resultsheader = ²{Extension DPL scroll¦total=%TOTALPAGES%¦offset={%DPL_offset:0%}¦count={%DPL_count:400%}¦page={{FULLPAGENAME}} }²\n nottitlematch = Exchange/%|Sandbox/% ignorecase = true columns = 3 format = ,\n*%TITLE% </dpl> ==See also== * Special:PrefixIndex/Module:Exchange/ * Special:PrefixIndex/Module:Sandbox/")
- 19:11, 3 October 2022 Jacmob talk contribs created page NR:LUA (Created page with "{{External|rs|rsc}} '''Lua''' is a programming language that is integrated into ''{{SITENAME}}'' with Scribunto. Lua source code is run from Modules in their own namespace, and invoked with <code><nowiki>{{#invoke:Module|function}}</nowiki></code>; this should done with a wrapper template. For example, if we have a module named "foo", then we should have a template called "Template:Foo" consisting of <code><nowiki>{{#invoke:Foo|main}}</nowiki><...")
- 19:11, 3 October 2022 Jacmob talk contribs created page Category:Modules (Created page with "All lua modules. Like Category:Templates, modules should not be in this category directly, but instead in one of the subcategories. Category:Old School Near-Reality Wiki community")
- 19:11, 3 October 2022 Jacmob talk contribs created page Category:Helper modules (Created page with "Modules that are designed to be used by other modules. See also Near-Reality:Lua/Helper modules. Category:Modules")
- 19:09, 3 October 2022 Jacmob talk contribs created page Near-Reality:Lua/Helper modules (Created page with "This is a table of modules and functions that were created specifically for facilitating the creation of other modules. Documentation for modules here is done in the source code with Template:Helper module. <dpl> namespace = Module uses = Template:Helper module titlematch = %/doc nottitlematch = Helper module/doc include = {Helper module} format = <table class="wikitable"><tr><th>Module</th><th>Function</th><th>Type</th><th>Use</th></tr>,,,</table> ordermethod=title...")
- 19:09, 3 October 2022 Jacmob talk contribs created page Module:Helper module/doc (Created page with "{{Documentation}} {{Invokes|Helper module}} Provides documentation for functions of modules that contain functions useful for other modules. This template should be part of a comment, and should be at the top of the source code, '''before''' any <nowiki><pre> or <nowiki></nowiki> tags. There is no limit to the number of functions this template can list. This template is called by Near-Reality:Lua/Helper modules to help produce a dynamic table. <pre> {{Helper module...")
- 19:08, 3 October 2022 Jacmob talk contribs created page Module:Helper module (Created page with "-- <nowiki> -- Helps RuneScape:Lua/Helper modules format its table with dynamic documentation -- See Template:Helper module for documentation and usage local p = {} function p.main(frame) local args = frame:getParent().args local function_list = {} -- Let there be no limit to number of parameters local i = 1 while args['fname'..i] do local funcname = args['fname'..i] or '' local functype = args['ftype'..i] or '' local funcuse = args['fuse'..i] or ''...")