All public logs

From The Blockheads Wiki

Combined display of all available logs of The Blockheads 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)
  • 15:56, 6 August 2024 JarlPenguin talk contribs created page Template:Slot (Created page with "<includeonly>{{#invoke: inventory slot | slot }}</includeonly><noinclude> {{documentation}} <!-- Put categories/interwiki on the documentation page -->")
  • 15:55, 6 August 2024 JarlPenguin talk contribs created page Template:Inventory slot/doc (Created page with "{{documentation header}} {{shortcut|Slot}} {{lua|data=Inventory slot/Aliases}} The inventory slot template creates an interface element which looks and acts like an in-game inventory slot. The images used have the <code>Invicon ''<item name>''.png</code> name format, or <code>Grid ''<item name>'' (''<mod name>'').png</code> in case of mods (which are currently being phased out). GIF files are also supported for animated icons. == Usage == All inputs are optional:<b...")
  • 15:54, 6 August 2024 JarlPenguin talk contribs created page Template:Infobox row/doc (Created page with "{{documentation header}} This is a skeleton for infobox rows, for use in {{tl|infobox}}. == Usage == <pre>{{infobox row | label | data }}</pre> Alternatively, you can use the named parameter {{p|label}} as a substitute for {{p|1}}, and {{p|field}} as a substitute for {{p|2}}. The parameter {{p|class}} can be added to add a class to the contents of the row. == Examples == {| class="wikitable" |- ! Wikitext source code !! Visual result |- |style="font-family:monospace;...")
  • 15:54, 6 August 2024 JarlPenguin talk contribs created page Template:Infobox row (Created page with "<includeonly>{{ #if: {{{1|}}}{{{label|}}} | ! {{ucfirst: {{{1|{{{label|}}}}}} }} }} | {{#if: {{{class|}}} | class="{{{class}}}" }} {{ #if: {{{1|}}}{{{label|}}} || colspan="2" }} | {{{2|{{{field|}}}}}} <code class="history-json">{"label": "{{JsonEscape|{{ucfirst: {{{1|{{{label|}}}}}} }}}}", "field": "{{JsonEscape|{{{2|{{{field|}}}}}}}}"}</code> |-</includeonly><noinclude> {{documentation}} <!-- Put categories/interwiki on the documentation page --> </noinclude>")
  • 15:53, 6 August 2024 JarlPenguin talk contribs created page Template:Infobox item (Created page with "{{#invoke:infobox|infobox | defaultimagesize = 160px | defaultimageclass = pixel-image | invimage = title | rows = {{infobox row|class=list-style-none|label={{#ifeq:{{NAMESPACE}}|Earth|Rarity|Rarity tier}}|field={{{rarity|Common}}} }} {{#if: {{{durability|}}} | {{infobox row|label=Durability|field={{{durability}}} }} }} {{#if: {{{armor|}}} | [[Armor::{{{armor}}}| ]]{{infobox row|label=Armor|field={{Armor|{{{armor}}}}} }} }}<includeonly>...")
  • 15:53, 6 August 2024 JarlPenguin talk contribs created page Module:Inventory slot/Aliases/Table/doc (Created page with "{{documentation header}} <!-- Documentation here --> Displays all aliases in a table. <includeonly>{{sandbox other|| <!-- Template categories/interwikis here --> }}</includeonly> <noinclude> <!-- Documentation categories/interwikis here --> </noinclude>")
  • 15:53, 6 August 2024 JarlPenguin talk contribs created page Module:Inventory slot/Aliases/Table (Created page with "local p = {} p.table = function() local slot = require( Module:Inventory slot ) local aliases = mw.loadData( Module:Inventory slot/Aliases ) local aliasNames = {} local aI = 1 for name in pairs( aliases ) do -- Skip the banner aliases (except "Any Banner"), as there are so -- many of them it causes the table to be excessively long if name == 'Any Banner' or not name:find( ' Banner$' ) and not name:find( '^Matching ' ) or not aliases[name:g...")
  • 15:52, 6 August 2024 JarlPenguin talk contribs created page Module:Inventory slot/Aliases/doc (Created page with "{{documentation header}} <!-- Documentation here --> This table defines the aliases used in Module:Inventory slot. {{#invoke: Inventory slot/Aliases/Table | table }} <includeonly> <!-- Template categories/interwiki here --> </includeonly> <noinclude> <!-- Documentation categories/interwiki here --> </noinclude>")
  • 15:52, 6 August 2024 JarlPenguin talk contribs created page Module:Inventory slot/Aliases (Created page with "local aliases = { -- Common fuel types for furnace -- ['Any fuel'] = { 'Coal', 'Charcoal', { title = 'Log', name = 'Oak Log' }, { title = 'Overworld Planks', name = 'Oak Planks' }, 'Block of Coal' }, ['Any leather armor'] = { 'Leather Cap', 'Leather Tunic', 'Leather Pants', 'Leather Boots' }, ['Any golden armor'] = { 'Golden Helmet', 'Golden Chestplate', 'Golden Leggings', 'Golden Boots' }, ['Any chainmail armor'] = { 'Chainmail Helmet', 'Chainmail Chestplate', 'Cha...")
  • 15:50, 6 August 2024 JarlPenguin talk contribs created page Template:Infobox/doc (Created page with "{{documentation header}} {{lua}} This is a skeleton for infoboxes, for use in other infobox templates. == Usage == {<nowiki/>{infobox | title = box title, defaults to page's name | image''N'' = Images displayed below the title. Supports animation. First image defaults to {{{title}}}.png. Set to "none" to remove. | defaultimagesize = Set the default size used by the above images. Defaults to 150px. | image''N''size = Sets the size of the corres...")
  • 15:50, 6 August 2024 JarlPenguin talk contribs created page Template:Infobox (Created page with "{{#invoke: infobox | infobox }}<noinclude> {{Documentation}}</noinclude>")
  • 15:50, 6 August 2024 JarlPenguin talk contribs created page Module:Infobox/doc (Created page with "{{documentation header}} <!-- Documentation here --> Implements {{t|Infobox}} == Usage == <includeonly>{{sandbox other|| <!-- Template categories/interwikis here --> }}</includeonly> <noinclude> <!-- Documentation categories/interwikis here --> </noinclude>")
  • 15:49, 6 August 2024 JarlPenguin talk contribs created page Module:Infobox (Created page with "local p = {} function p.infobox( f ) local args = require( 'Module:ProcessArgs' ).merge( true ) local titleObject = mw.title.getCurrentTitle() local title = args.title or titleObject.baseText local subtitle = args.subtitle or '' local template = f:getParent():getTitle():lower():gsub( 'template:', '' ):gsub( 'infobox ', '' ) local headerArea = '' local json = { images = {}, invimages = {}, rows = {} } local titleArea = args.titlearea if not titleArea t...")
  • 15:48, 6 August 2024 JarlPenguin talk contribs created page Template:TSLoader/doc (Created page with "{{documentation header}} <!-- documentation here --> {{lua|TSLoader}} {{shortcut|tsl|tsloader}} This template loads template styles in pages. Although TemplateStyles have its built-in deduplicator, but multiple reference towards the same stylesheet still remains, will extend the length of the page, might cause performance issues. This template avoids this, makes sure that only one reference remains in the page. == Usage == {{tcode|TSLoader|stylesheet}} * {{p|1}}: The...")
  • 15:48, 6 August 2024 JarlPenguin talk contribs created page Template:Param/doc (Created page with "{{documentation header}} This template outputs the name of a parameter within code tags, without the parameter being affected by page transclusion. == Usage == {{<nowiki/>param|<var>parameter name</var>|<var>optional parameter default</var>}} == Examples == <pre> {{param|1}} </pre> ;produces {{param|1}} <pre> {{param|parameter|default}} </pre> ;produces {{param|parameter|default}} == See also == * {{t|Template link}} * {{t|Para}} * {{t|TemplateCode}} <includeonly...")
  • 15:48, 6 August 2024 JarlPenguin talk contribs created page Template:Param (Created page with "<includeonly><code style=""><nowiki>{{{</nowiki>{{{1}}}{{ #if:{{{2|}}} |{{!}}{{{2}}} }}<nowiki>}}}</nowiki></code></includeonly><noinclude> {{documentation}} <!-- Put categories/interwiki on the documentation page --> </noinclude>")
  • 15:47, 6 August 2024 JarlPenguin talk contribs deleted page Template:Parameter
  • 15:47, 6 August 2024 JarlPenguin talk contribs created page Template:Parameter (Created page with "<code class="nowrap" style="{{SAFESUBST:<noinclude />#if:{{{plain|}}}|border: none; background-color: inherit;}} {{SAFESUBST:<noinclude />#if:{{{plain|}}}{{{mxt|}}}{{{green|}}}{{{!mxt|}}}{{{red|}}}|color: {{SAFESUBST:<noinclude />#if:{{{mxt|}}}{{{green|}}}|#006400|{{SAFESUBST:<noinclude />#if:{{{!mxt|}}}{{{red|}}}|#8B0000|inherit}}}};}} {{SAFESUBST:<noinclude />#if:{{{style|}}}|{{{style}}}}}">|{{SAFESUBST:<noinclude />#if:{{{1|}}}|{{{1}}}=}}{{{2|}}}</code><noinc...")
  • 15:46, 6 August 2024 JarlPenguin talk contribs created page Template:TemplateCode/doc (Created page with "{{Documentation header}} {{shortcut|tcode}} == Usage == {{tcode|tcode|''template name''}} Parameters can also be added, to a maximum of 8. Note that <code>=</code>'s must be escaped using <code><nowiki>{{=}}</nowiki></code> == Examples == {{tcode|tcode|subst:autoUnsigned}} gives:<br> {{tcode|subst:autoUnsigned}} {{tcode|tcode|Block|3=2=type=wood}} gives:<br> {{tcode|Block|2=type=wood}} {{tcode|tcode|:Commands/infobox}} gives:<br> {{tcode|:Commands/infobox}} {{tcode...")
  • 15:46, 6 August 2024 JarlPenguin talk contribs moved page Template:Tcode to Template:TemplateCode
  • 15:45, 6 August 2024 JarlPenguin talk contribs created page Template:Tcode (Created page with "<includeonly><code>{<!-- -->{{{{1}}}{{#if: {{{2|}}}|{{!}}{{{2|}}} }}{{#if: {{{3|}}}|{{!}}{{{3|}}} }}{{#if: {{{4|}}}|{{!}}{{{4|}}} }}{{#if: {{{5|}}}|{{!}}{{{5|}}} }}{{#if: {{{6|}}}|{{!}}{{{6}}}{{#if: {{{7|}}}|{{!}}{{{7|}}} }}{{#if: {{{8|}}}|{{!}}{{{8|}}} }} }}<!-- -->}<!-- -->}</code></includeonly><noinclude> <!-- categories/interwikis on the /doc subpage, not here --> {{Documentation}} </noinclude>")
  • 15:45, 6 August 2024 JarlPenguin talk contribs created page Template:TSLoader (Created page with "<includeonly>{{ #invoke: TSLoader | main }}</includeonly><noinclude>{{documentation}} <!-- Put categories/interwikis on the documentation page --> </noinclude>")
  • 15:29, 6 August 2024 JarlPenguin talk contribs created page Template:Shortcut/doc (Created page with "{{documentation header}} {{shc|redirect=yes|short|shc}} Used to show up to 9 shortcut redirects for templates. == Usage == {{shortcut|cmd}} <code><nowiki>{{shortcut|cmd}}</nowiki></code> <div style="clear:both"> {{shortcut|v|cmd|verlink}} <code><nowiki>{{shortcut|v|cmd|verlink}}</nowiki></code> <div style="clear:both"> {{shortcut|redirect=yes|a}} <code><nowiki>{{shortcut|redirect=yes|a}}</nowiki></code> <div style="clear:both"> == TemplateData == <templatedata> { "p...")
  • 15:28, 6 August 2024 JarlPenguin talk contribs created page Template:Samps/doc (Created page with "{{documentation header}} <!-- Documentation here --> {{lua|Delimited tag}} {{see also|Template:Code}} This template is a simplified usage of {{code|<nowiki><samp>...</samp></nowiki>}}, which is used mainly to format file names and the like. == Usage == Each anonymous parameter is a string to format. Note that {{code|<nowiki>...</nowiki>}} is needed around a parameter value if it contains the pipe ({{code|{{!}}}}) or equals ({{code|{{=}}}}) symbols, or they...")
  • 15:27, 6 August 2024 JarlPenguin talk contribs created page Template:Samps (Created page with "<includeonly>{{ #invoke:delimited tag|output |tag=samp }}</includeonly><noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>")
  • 15:27, 6 August 2024 JarlPenguin talk contribs created page Template:Samp/doc (Created page with "{{documentation header}} <!-- Documentation here --> {{see also|Template:Code}} This template is a simplified usage of {{code|<nowiki><samp>...</samp></nowiki>}}, which is used to format sample outputs. Usage of samp is deprecated for filenames, so use {{t|mono}} instead. == Usage == The first anonymous parameter is a string to format. Note that {{code|<nowiki>...</nowiki>}} is needed around a parameter value if it contains the pipe ({{code|{{!}}}}) or equa...")
  • 15:26, 6 August 2024 JarlPenguin talk contribs created page Template:Samp (Created page with "<samp {{#if:{{{class|}}}|class="{{{class}}}"}} {{#if:{{{id|}}}|id="{{{id}}}"}} style="padding-left:0.4em; padding-right:0.4em; color:{{#if:{{{color|}}}|{{{color}}}}};{{#if:{{{style|}}}| {{{style}}}|}}" {{#if:{{{lang|}}}|lang="{{{lang}}}" xml:lang="{{{lang}}}"}} {{#if:{{{title|}}}|title="{{{title}}}"}}>{{{1}}}</samp><noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>")
  • 15:26, 6 August 2024 JarlPenguin talk contribs created page Template:Code/doc (Created page with "{{documentation header}} <!-- Documentation here --> {{lua|Delimited tag}} {{shortcut|cd}} {{see also|Template:Samp}} This template is an alternative way to use {{cd|<nowiki><code>...</code></nowiki>}} (i.e. the HTML <code><code></code> element). You should avoid using this template in history sections, but it's fine if you do. == Parameters == {| class="wikitable" |+ Code template parameters |- ! Parameter !! Behavior !! Accepted values !! Default |- | Anonymous...")
  • 15:24, 6 August 2024 JarlPenguin talk contribs created page Template:Code (Created page with "<includeonly>{{#invoke:delimited tag|output|1={{{1|{{{code|}}}}}}|tag=code|wordbreak={{{wordbreak|{{{wb|}}}}}}}}</includeonly><noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>")
  • 15:24, 6 August 2024 JarlPenguin talk contribs created page Template:Cd (Redirected page to Template:Code) Tag: New redirect
  • 15:22, 6 August 2024 JarlPenguin talk contribs created page Template:Sandbox other/doc (Created page with "{{documentation header}} <!-- documentation here --> == Usage == <includeonly>{{sandbox other|| <!-- template categories/interwikis here --> Category:Meta templates }}</includeonly> <noinclude> <!-- documentation categories/interwikis here --> </noinclude>")
  • 15:22, 6 August 2024 JarlPenguin talk contribs created page Template:Sandbox other (Created page with "{{#if:{{#pos:{{PAGENAME}}|/sandbox}}|{{{1|}}}|{{{2|}}}}}<noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>")
  • 15:21, 6 August 2024 JarlPenguin talk contribs created page Template:Yesno/doc (Created page with "{{documentation header}} <!-- documentation here --> == Usage == <includeonly>{{sandbox other|| <!-- template categories/interwikis here --> Category:Technical templates }}</includeonly> <noinclude> <!-- documentation categories/interwikis here --> </noinclude>")
  • 15:20, 6 August 2024 JarlPenguin talk contribs created page Template:Yesno (Created page with "<includeonly>{{#switch: {{lc: {{{1|}}}}} | y | yes | t | true | on | 1 = {{{yes|yes}}} | n | no | f | false | off | 0 | = {{{no|}}} |<!--blank--> = {{{blank|{{{no|}}} }}} | #default = {{{yes|yes}}} }}</includeonly><noinclude>{{documentation}} <!-- Put categories/interwiki on the documentation page --></noinclude>")
  • 15:20, 6 August 2024 JarlPenguin talk contribs created page Category:Documentation pages (Created page with "These pages are used for documentation. Category:Templates")
  • 15:18, 6 August 2024 JarlPenguin talk contribs created page Template:Fullurl/doc (Created page with "{{documentation header}} <templatedata> { "params": { "1": { "label": "Page name", "description": "Target page name. Language, interwiki and section links may be used.", "example": "zh:Minecraft Wiki", "type": "wiki-page-name", "default": "{{FULLPAGENAME}}" }, "2": { "label": "Page action", "example": "veaction{{=}}edit&section{{=}}1", "description": "All page actions, separated by '&'. You must use {{=}} or | to escape all '='.", "...")
  • 15:16, 6 August 2024 JarlPenguin talk contribs created page Template:Lua/doc (Created page with "{{documentation header}} Use on the doc page of templates which use Lua modules. <code>{{{1}}}</code> is the module name without namespace, defaulting to <code>{<nowiki/>{BASEPAGENAME}}</code>. If the template uses data stored in a separate module(s) or module subpage(s), this can be noted with <code>{{{data}}}</code> and <code>{{{data2}}}</code>. Automatically adds the template page to Category:Lua-based templates. Set <code>{{{nocat}}}</code> to prevent this. <...")
  • 15:14, 6 August 2024 JarlPenguin talk contribs created page Template:Documentation header/doc (Created page with "{{documentation header}} <!-- Documentation here --> == Usage == Used on the top of a documentation page. <includeonly>{{sandbox other|| <!-- Template categories/interwikis here --> *")
  • 13:40, 6 August 2024 JarlPenguin talk contribs created page Template:Documentation (Created page with "<includeonly>{{#invoke: documentation | page }}</includeonly><noinclude> {{documentation}} <!-- Put categories/interwikis on the documentation page! --> </noinclude>")
  • 13:40, 6 August 2024 JarlPenguin talk contribs created page Template:Documentation header (Created page with "<includeonly>{{#invoke: documentation | docPage }}</includeonly><noinclude>{{documentation}} <!-- Put categories/interwikis on the documentation page --></noinclude>")
  • 13:39, 6 August 2024 JarlPenguin talk contribs created page Module:TSLoader/doc (Created page with "{{documentation header}} <!-- documentation here --> This module implements {{t|TSLoader}}. When invoked from a module, please use <code>p.call( name )</code>, where <code>name</code> represents the page name of template styles you want to load, if under <code>Template:</code> namespace, the prefix can be omitted. == Dependencies == * Module:Static * TemplateStyles Extension <includeonly>{{sandbox other|| <!-- mod...")
  • 13:38, 6 August 2024 JarlPenguin talk contribs created page Module:TSLoader (Created page with "local p = {} local static = require( 'Module:Static' ) if not static.TSLoader then static.TSLoader = {} end function p.call( name ) if not name then return nil end if not static.TSLoader.loadedTS then static.TSLoader.loadedTS = {} end local pagename = mw.title.getCurrentTitle() if not static.TSLoader.loadedTS[ pagename ] then static.TSLoader.loadedTS[ pagename ] = {} end if not name:find( '^%w*:' ) then name = 'Template:' .. name:sub( 1, 1 ):upper() .....")
  • 13:38, 6 August 2024 JarlPenguin talk contribs created page Module:Documentation (Created page with "local p = {} -- Load modules (language wikis exclusive) -- ... -- Customizable strings local i18n = { -- default settings, change when necessary defaultDocPage = 'doc', -- documentation page suffix defaultSandboxPage = 'sandbox', -- sandbox page suffix defaultTestCasePage = 'testcases', -- testcases page suffix defaultPreload = 'Template:Documentation/preload', -- page that stores qualified documentation page contents defaultStyles = 'Module:Documentation/styles....")
  • 13:37, 6 August 2024 JarlPenguin talk contribs created page Module:Documentation/styles.css (Created page with ".documentation { background-color: hsl(215, 75%, 92%); border: 1px solid #ccc; padding: 0.8em 1em 0.7em; margin-top: 1em; clear: both; } body.wgl-theme-dark .documentation { background-color: hsl(215, 25%, 8%); border-color: #121212; } .documentation-header-top, .documentation-header-bottom { padding: 0.8em 1em 0.7em; background-color: hsl(215, 75%, 85%); } body.wgl-theme-dark .documentation-header-top, body.wgl-theme-dark .documentation-header-bottom { backgr...")
  • 13:37, 6 August 2024 JarlPenguin talk contribs created page Module:ProcessArgs (Created page with "local p = {} function p.norm( origArgs ) if type( origArgs ) ~= 'table' then origArgs = mw.getCurrentFrame():getParent().args end local args = {} for k, v in pairs( origArgs ) do v = mw.text.trim( tostring( v ) ) if v ~= '' then args[k] = v end end return args end function p.merge( origArgs, parentArgs, norm ) if type( origArgs ) ~= 'table' then norm = origArgs local f = mw.getCurrentFrame() origArgs = f.args parentArgs = f:getParent().args...")
  • 13:36, 6 August 2024 JarlPenguin talk contribs created page Module:Delimited tag (Created page with "local p = {} function p.output(f) local args = f if f == mw.getCurrentFrame() then args = require('Module:ProcessArgs').merge(true) end local tag = function(txt) return '<' .. args['tag'] .. (args['wordbreak'] and ' style="word-break:break-all"' or '') .. '>' .. txt .. '</' .. args['tag'] .. '>' end local listLevel = args['list-level'] or '**' local output = tag(assert(args[1], 'No tag text provided.?')) local finalDelimiterValues = { ['none'] = '<no...")
  • 13:32, 6 August 2024 JarlPenguin talk contribs created page Module:Static (Created page with "-- Source: https://runescape.wiki/w/Module:Static local mwHtml = getmetatable( mw.html.create() ) mwHtml._static = mwHtml._static or {} return mwHtml._static")
  • 09:20, 1 August 2024 JarlPenguin talk contribs moved page Talk:Current events to The Blockheads Wiki talk:Current events without leaving a redirect
  • 09:20, 1 August 2024 JarlPenguin talk contribs moved page Current events to The Blockheads Wiki:Current events without leaving a redirect
  • 01:32, 1 August 2024 JarlPenguin talk contribs moved page The Blockheads Wiki talk:Current events to Talk:Current events without leaving a redirect (Fix main page link)
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)