All public logs

Jump to navigation Jump to search

Combined display of all available logs of Discord Dungeons Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 13:54, 31 March 2022 Mackan talk contribs created page Module:Edit button/doc (Created page with "{{Documentation}} {{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" }}")
  • 13:53, 31 March 2022 Mackan talk contribs created page 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")
  • 13:51, 31 March 2022 Mackan talk contribs created page Template:Invokes/doc (Created page with "{{Documentation}} This template should be put near the beginning of a template or module's documentation page to link to a module that the template invokes, or a template that invokes the module (respectively). <pre> {{Invokes|ModuleName}} or {{Invokes|TemplateName}} </pre> ==Parameters== ===(1)=== On a template documentation page, this parameter should be supplied with the page title for a module that the template invokes (without the "Module:" namespace prefix).<br>...")
  • 13:51, 31 March 2022 Mackan talk contribs created page Template:Invokes (Created page with "<includeonly>{{#ifeq:{{NAMESPACE}}|Module|<div class="seealso">'''''{{#replace:{{FULLPAGENAME}}|/doc}}''' is invoked by [[{{{page|Template:{{{1}}}}}}]].{{#ifeq:{{lc:{{{category}}}}}|no||{{#ifeq:{{SUBPAGENAME}}|doc||Category:Template invoked modules}}}}''</div>|<div class="seealso">'''''{{#replace:{{FULLPAGENAME}}|/doc}}''' invokes [[Module:{{{1}}}]] using Lua.{{#ifeq:{{lc:{{{category}}}}}|no||{{#ifeq:{{SUBPAGENAME}}|doc||Category:Lua-based templates...")
  • 13:50, 31 March 2022 Mackan talk contribs created page Template:Main/doc (Created page with "{{Documentation}} {{Invokes|Main article}} This template can be used to link to another relevant article or set of articles when there is no way to fluently link the article in prose. ;Good example <pre> ==Strategies== {{Main|/Items Map}} A map of items </pre> ;Bad example Below, it makes more sense to simply link Health Potion in the paragraph: <pre> ==Health Potion== {{Main|Health Potion}} The health potion heals 5 hp. </pre> {{TemplateData|<templatedata> { "...")
  • 13:49, 31 March 2022 Mackan talk contribs created page Template:Main (Created page with "{{#invoke:Main article|main}}<noinclude> {{/doc}}{{PAGENAME}}</noinclude>")
  • 13:48, 31 March 2022 Mackan talk contribs created page 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...")
  • 13:44, 31 March 2022 Mackan talk contribs created page Template:ToC/doc (Created page with "{{documentation}} The '''ToC''' template aligns the "Table of Contents" in a page. The table may now be able to float at the left or right of a page and the text should wrap around it. This template can improve page layouts in certain cases. It can also force-insert a table of contents in pages where there are not enough sections for an automatic insertion of a "Table of Contents". ==Usage== * {{t|ToC|align}} * {{t|ToC|align|clear|width|limit}} ===Optional parameters=...")
  • 13:44, 31 March 2022 Mackan talk contribs created page Template:ToC (Created page with "{| id="toctemplate" align="{{#switch:{{{align|{{{1|left}}}}}}|right=right|center=center|left|#default=left}}" cellspacing=0 cellpadding=0 style="clear:{{{clear|left}}}; margin-bottom:0.5em; margin-right:1em; float:{{#switch:{{{align|{{{1|left}}}}}}|right=right|center=center|left|#default=left}}; padding:{{#switch:{{{align|{{{1|left}}}}}}|right=0.5em 0 0.8em 1.4em|#default=0.5em 1.4em 0.8em 0}}; background:none; width:{{{width|auto}}};" class="nomobile {{#if:{{{limit|}}}|...")
  • 13:43, 31 March 2022 Mackan talk contribs created page Module:Infobox/doc (Created page with "{{ToC|right}} ==Creating a template step-by-step== ===Import Module:Infobox=== <syntaxhighlight lang="lua"> local infobox = require('Module:Infobox') </syntaxhighlight> ===Unpack the frame arguments=== <syntaxhighlight lang="lua"> function p.main(frame) local args = frame:getParent().args ... </syntaxhighlight> ===Define an Infobox object=== {{Main|Module:Infobox#new}} <syntaxhighlight lang="lua"> local ret = infobox.new(args) </syntaxhighlight> ===Map your argume...")
  • 12:23, 31 March 2022 Mackan talk contribs deleted the user account "ElizbethNapper" (13812)
  • 12:23, 31 March 2022 Mackan talk contribs merged the user account "ElizbethNapper" (13812) into Anonymous (0)
  • 10:54, 31 March 2022 Mackan talk contribs created page 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...")
  • 10:53, 31 March 2022 Mackan 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...")
  • 10:52, 31 March 2022 Mackan talk contribs created page Module:Paramtest (Created page with "--[[ {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any value |fuse3 = If arg1 exists and does not only contain whitespace, the function returns arg1, otherwise returns arg2 |fname4 = defaults{ {arg1,arg2},...}...")
  • 10:51, 31 March 2022 Mackan talk contribs created page Module:Enum (Created page with "-- <nowiki> awawa local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti local p = {} function p.all(enum, fn, clone) checkType('Module:Enum.all', 1, enum, 'table') checkType('Module:Enum.all', 2, fn, 'function', true) checkType('Module:Enum.all', 3, clone, 'boolean', true) if clone then enum = mw.clone(enum) end fn = fn or function(item) return item end for _, item in ipairs(enum) do...")
  • 10:51, 31 March 2022 Mackan talk contribs created page Module:DependencyList/doc (Created page with "<includeonly>{{#invoke:DependencyList|main}}</includeonly><noinclude>{{/doc}}</noinclude>")
  • 10:50, 31 March 2022 Mackan talk contribs protected Module:DependencyList [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 10:50, 31 March 2022 Mackan talk contribs created page Module:DependencyList (Created page with "-- <nowiki> local p = {} local libraryUtil = require( 'libraryUtil' ) local enum = require( 'Module:Enum' ) local yn = require( 'Module:Yesno' ) local param = require( 'Module:Paramtest' ) local dpl = require( 'Module:DPLlua' ) local tooltip = require( 'Module:Tooltip' ) local moduleIsUsed = false local COLLAPSE_LIST_LENGTH_THRESHOLD = 5 local MAX_DYNAMIC_REQUIRE_LIST_LENGTH = 30 local dynamicRequireListQueryCache = {} --- Used in case 'require( varName )' is found. Att...")
  • 10:50, 31 March 2022 Mackan talk contribs created page Template:Documentation/doc (Created page with "{{Documentation}} {{Invokes|Documentation}} <code><nowiki>{{Documentation}}</nowiki></code> is transcluded in template/module documentation pages. This template should only be used on subpages titled "doc". This is '''not''' the template of the same name from Wikipedia and it is not used in the same way. ==Usage== Place {{t|documentation}} at the top of the documentation page, then transclude <code><nowiki>{{/doc}}</nowiki></code> directly from the main template page,...")
  • 10:33, 31 March 2022 Mackan 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) link = link :gsub('safesubst:', '') :gsub('subst:', '') :gsub('int:', '') :gsub('msg:', '')...")
  • 10:32, 31 March 2022 Mackan talk contribs created page Template:T (Created page with "<includeonly><span class="plainlinks">{{#invoke:T|main}}</span></includeonly><noinclude>{{/doc}}</noinclude>")
  • 10:27, 31 March 2022 Mackan talk contribs created page Template:MessageBox/doc (Created page with "{{Documentation}}<includeonly>*</includeonly> The '''MessageBox''' template is a wrapper for all types of message boxes. This includes licenses, Maintenance templates, and general notices used to alert the reader about something. ==Parameters== To use this template, copy the following code and fill in the necessary information <pre> {{MessageB...")
  • 10:27, 31 March 2022 Mackan talk contribs created page Template:MessageBox (Created page with "<includeonly><table class="messagebox {{{class|}}}" style="{{{style|}}}"> <td style="width: {{{imgwidth|50px}}};">{{#if:{{{img|}}}|{{{img}}}|60x60px|center|link=}}</td> <td>'''{{#if:1|{{{1}}}|<!--this #if removes trailing/leading whitespace-->}}'''{{#if:{{{2|}}}|<br style="clear: both;" /><div style="font-size:0.85em; line-height:1.4em;">{{{2}}}</div>}}</td> </table></includeonly><noinclude>{{/doc}}</noinclude>")
  • 12:36, 30 March 2022 Mackan talk contribs created page MediaWiki:Minerva.css (Created page with "All CSS here will be loaded for users of the MinervaNeue skin: @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,700;1,400;1,700&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap"); :root { --body-main: #e2dbc8; --body-light: #d8ccb4; --body-mid: #d0bd97; --body-dark: #b8a282; --body-border: #94866d; --body-background-color: #c0a886; --button-background: #605443; --button-color: #fff; --button-borde...")
  • 17:33, 29 March 2022 Mackan talk contribs created page Template:DD Wiki/Contents (Created page with "<noinclude>{{/doc}}</noinclude>__NOTOC__<div class="mainpage-contents tile-row"> <div class="contents-equipment tile-halves"> <div class="tile-top tile-image">link=Items_map</div> <div class="tile-bottom link-button"><h2>Items_map</h2></div> </div> <div class="contents-guides tile-halves"> <div class="tile-top tile-image">link=Quests</div> <div class="tile-bottom link-button"><h2>Que...")
  • 17:29, 29 March 2022 Mackan talk contribs created page Template:DD Wiki/Popular Pages (Created page with "<div class="mainpage-popular tile-halves nomobile"> <div class="tile-top"> <div class="popular-pages"> <h2>Popular pages</h2> <p> <ul><!--Top 5 are never to be changed, as they're consistently the top pages on the Wiki. Got that???--> <li class="mp-popular-page-light">[[Items_map]</li> </ul> </p> </div> </div> </div><noinclude>{{/doc}}</noinclude>")
  • 17:07, 29 March 2022 Mackan talk contribs protected Template:Recent Updates [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 16:58, 29 March 2022 Mackan talk contribs created page Template:* (Created page with "<includeonly>'''•'''</includeonly><noinclude>{{/doc}}</noinclude>")
  • 16:52, 29 March 2022 Mackan talk contribs created page Template:RSSGameUpdateItem (Created page with "<div class="tile-halves"> <div class="tile-top tile-image">link={{{link}}}</div> <div class="tile-bottom link-button">[[{{{link}}}|<p class="byline">{{{date}}} {{*}} Game update</p><h2>{{{title}}}</h2><p>{{{description}}}</p>]]</div> </div>")
  • 16:45, 29 March 2022 Mackan talk contribs created page Template:Recent Updates (Created page with "<includeonly><div class="mainpage-recent-updates tile-row"> <div class="tile-halves"> <div class="tile-top tile-image">[[File:{{{file1}}}|link={{{page1}}}]]</div> <div class="tile-bottom link-button">[[{{{page1}}}|<p class="byline">{{{byline1}}}</p><h2>{{{title1}}}</h2><p>{{{desc1}}}</p>]]</div> </div> <div class="tile-halves"> <div class="tile-top tile-image">[[File:{{{file2}}}|link={{{page2}}}]]</div> <div class="tile-bottom link...")
  • 16:44, 29 March 2022 Mackan talk contribs created page Template:Wiki/Recent game updates/doc (Created page with "{{Documentation}} This template is used to contain the recent updates section of the Main Page. ==Usage== Updates are displayed with the help of {{T|Recent updates}}. * The image shown on the tiles should be named "<samp>File:Main page - [update name].png</samp>", have an aspect ratio of roughly 4:3 and should not have any transparency. The image should be taken ingame, possibly showcasing the content introduced with the newspost. The image should also be archived...")
  • 16:43, 29 March 2022 Mackan talk contribs created page Template:Wiki/Recent game updates (Created page with "<!-- As these are of the first tiles shown on the main page, PLEASE take extra care when editing the template as to not cause red links etc. Don't tell me what to do!!!!!! :Wowee: -->{{Recent Updates |file1 = Main page - Guardians of the Rift Launch.png |page1 = Guardians of the Rift |byline1 = 23 March 2022 {{*}} Game update |title1 = Guardians of the Rift |desc1 = Discover the Temple of the Eye and fight to seal the rift in this new Runecrafting min...")
  • 16:23, 29 March 2022 Mackan talk contribs created page MediaWiki:Vector-darkmode.css (Created page with "<pre>: body.wgl-darkmode { --filter-black-to-link: invert(63%) sepia(67%) saturate(242%) hue-rotate(182deg) brightness(93%) contrast(94%); background-image: url('filepath://Old_School_RuneScape_Wiki_background_darkmode.jpg'); background-color: #071022; } body.wgl-darkmode .vector-menu-portal h3 { color: #cbd9f4; } body.wgl-darkmode .vector-menu-tabs ul li { background: #222e45; } body.wgl-darkmode .vector-menu-tabs .selected { background:...")
  • 16:01, 29 March 2022 Mackan talk contribs created page User:Mackan/common.js (Created page with "var numWords = $("#mw-content-text > div").text().split(" ").length; var headerWords = $("h1").text().split(" ").length; var totalWords = numWords + headerWords; var timeInMinutes = totalWords / 200; var header = $("h1").text(); $("h1").text(header + " (it will take you " + timeInMinutes + " minutes to read this page)");")
  • 15:38, 29 March 2022 Mackan talk contribs created page MediaWiki:Gadget-toggleDarkMode.js (Created page with "* * Toggles dark mode * * @author Mackan * Adapted from https://oldschool.runescape.wiki/w/MediaWiki:Gadget-skinTogglesNew.js: ;(function($, mw) { const DARKMODE_COOKIE = "darkmode"; let currentDark = localStorage.getItem(DARKMODE_COOKIE) let portletLink let self = { init: () => { portletLink = mw.util.addPortletLink( 'p-personal', '', '', 'pt-skin-toggles', 'Toggle darkmode', null, $('#pt-userpage, #pt-anonuserpag...")
  • 15:31, 29 March 2022 Mackan talk contribs created page MediaWiki:Gadget-toggleDarkMode.css (Created page with "#pt-skin-toggles .oo-ui-icon-advanced { width: 15px; min-width: 15px; height: 14px; background-size: 14px; display: block; background-repeat: no-repeat; background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg height='21' viewBox='0 0 21 21' width='21' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m8.85464918.37900488c-1.91149353 1.51069427-3.13816124 3.84973402-3.13816124 6.47527736 0 4.55564936 3.69308...")
  • 15:28, 29 March 2022 Mackan 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. When targeting a gadget for 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 by default, so there sh...")
  • 18:54, 3 October 2021 Mackan talk contribs changed group membership for Felix Argyle from (none) to administrator
  • 18:54, 3 October 2021 Mackan talk contribs blocked JoleenBurk1 talk contribs with an expiration time of indefinite (account creation disabled, email disabled, cannot edit own talk page) (Spamming links to external sites)
  • 18:53, 3 October 2021 Mackan talk contribs removed protection from Special:AllPages
  • 18:53, 3 October 2021 Mackan talk contribs protected Special:AllPages (0)
  • 07:21, 12 March 2021 Mackan talk contribs created page Template:NPCbox (Created page with "{{Infobox |title = {{{name|}}} |caption = {{#if: {{{image|}}} | {{#if: {{{description|}}} | {{{description}}} }} }} |subheader = {{#if: {{{image|}}} | | {{#if: {{{des...")
  • 09:22, 8 March 2021 Mackan talk contribs protected Template:RSSUpdateItem [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 09:13, 8 March 2021 Mackan talk contribs created page Template:RSSUpdateItem (Created page with "{{ MediaWiki:Rss-feed \ | title = {{{title}}} \ | link = {{{link}}} \ | date = {{{date}}} \ | author = {{{author}}} \ | description = {{{description}}} }}")
  • 08:58, 8 March 2021 Mackan talk contribs created page User:Mackan (Created page with "<rss max=3 highlight="changelog">https://blog.discorddungeons.me/tag/changelog/rss/</rss>")
  • 07:49, 31 August 2019 Mackan talk contribs changed group membership for Alsatian from (none) to administrator
  • 10:02, 15 August 2019 Mackan talk contribs protected File:Main-bg.jpg [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Upload=Allow only administrators] (indefinite) (hist)
  • 10:02, 15 August 2019 Mackan talk contribs created page File:Main-bg.jpg
  • 10:02, 15 August 2019 Mackan talk contribs uploaded File:Main-bg.jpg
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)