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).
- 16:56, 6 August 2024 FloofyPlasma talk contribs created page Template:CommentSprite/doc (Created page with "{{Documentation header}} {{lua|Sprite}} frame == Positions == # {{CommentSprite|1}} Question mark # {{CommentSprite|2}} Exclamation mark # {{CommentSprite|3}} Tick # {{CommentSprite|4}} Cross # {{CommentSprite|5}} Plus # {{CommentSprite|6}} Minus # {{CommentSprite|7}} Timer # {{CommentSprite|8}} Information # {{CommentSprite|9}} Reject == Example == <code>{{<nowiki/>CommentSprite|3}}</code> will output {{CommentSprite|3}}. == See also == * {{tl...")
- 16:53, 6 August 2024 FloofyPlasma talk contribs added prefix "whelp" (https://en.wikipedia.org/wiki/Help:$1) (trans: 0; local: 0) to the interwiki table
- 16:52, 6 August 2024 FloofyPlasma talk contribs added prefix "wp" (https://en.wikipedia.org/wiki/Wikipedia:$1) (trans: 0; local: 0) to the interwiki table
- 16:36, 6 August 2024 Maintenance script talk contribs created page Property:Owl:differentFrom (Semantic MediaWiki default vocabulary import)
- 16:36, 6 August 2024 Maintenance script talk contribs created page Property:Foaf:homepage (Semantic MediaWiki default vocabulary import)
- 16:36, 6 August 2024 Maintenance script talk contribs created page Property:Foaf:name (Semantic MediaWiki default vocabulary import)
- 16:36, 6 August 2024 Maintenance script talk contribs created page Property:Foaf:knows (Semantic MediaWiki default vocabulary import)
- 16:36, 6 August 2024 Maintenance script talk contribs created page MediaWiki:Smw import owl (Semantic MediaWiki default vocabulary import)
- 16:36, 6 August 2024 Maintenance script talk contribs created page MediaWiki:Smw import foaf (Semantic MediaWiki default vocabulary import)
- 16:36, 6 August 2024 Maintenance script talk contribs created page MediaWiki:Smw import skos (Semantic MediaWiki default vocabulary import)
- 16:36, 6 August 2024 Maintenance script talk contribs created page MediaWiki:Smw import schema (Semantic MediaWiki default vocabulary import)
- 16:36, 6 August 2024 Maintenance script talk contribs created page smw/schema:Profile:Facetedsearch default profile (Semantic MediaWiki search import)
- 16:36, 6 August 2024 Maintenance script talk contribs created page smw/schema:Group:Predefined properties (Semantic MediaWiki group import)
- 16:36, 6 August 2024 Maintenance script talk contribs created page smw/schema:Group:Schema properties (Semantic MediaWiki group import)
- 16:25, 6 August 2024 FloofyPlasma talk contribs created page Template:Infobox item/doc (Created page with "{{Documentation header}} This template provides a uniform design for usable item pages. <pre style="display:table"> {{Item | title = | image = | image2 = | image3 = <!-- Start Multiple mode --> | group = | 1-1 = | 1-2 = | 1-3 = | group2 = | 2-1 = | 2-2 = | 2-3 = | group3 = | 3-1 = | 3-2 = | 3-3 = | group4 = | 4-1 = | 4-2 = | 4-3 = <!-- End Multiple mode --> | durability = | rarity = | renewable = | stackable = | heals = | effects = | armor = }}<...")
- 16:23, 6 August 2024 FloofyPlasma talk contribs created page Module:SpriteFile (Created page with "local p = {} function p.sprite( f ) local args = f if f == mw.getCurrentFrame() then args = require( 'Module:ProcessArgs' ).merge( true ) else f = mw.getCurrentFrame() end -- Default settings local default = { scale = 1, size = 16, align = 'text-top' } local id = mw.text.trim( tostring( args[1] or '' ) ) if not args.keepcase then id = mw.ustring.lower( id ):gsub( '[%s%+]', '-' ) end local link = ( args.link or '' ) if mw.ustring.lower( link...")
- 16:23, 6 August 2024 FloofyPlasma talk contribs created page Template:ItemLink (Created page with "<includeonly>{{#invoke: SpriteFile | link | name = ItemSprite }}</includeonly><noinclude> {{documentation}} <!-- Put categories/interwiki on the documentation page --> </noinclude>")
- 16:20, 6 August 2024 FloofyPlasma talk contribs created page Module:Animate (Created page with "local p = {} function p.animate( f ) local args = f if f == mw.getCurrentFrame() then args = f:getParent().args end local files = args[1] or '' local size = args[2] or '' local link = args['link'] or args[3] or '' local class = args['class'] or args[4] or '' if size ~= '' then size = '|' .. size end if link ~= '' then link = '|link=' .. link end if class ~= '' then class = '|class=' .. class end local images = {} for image in mw.text.gsplit(...")
- 16:19, 6 August 2024 FloofyPlasma talk contribs created page Template:Animate (Created page with "<includeonly>{{ {{{|safesubst:}}}#invoke:animate|animate}}</includeonly><noinclude> {{documentation}} <!-- Put categories/interwiki on the documentation page --> </noinclude>")
- 16:16, 6 August 2024 JarlPenguin talk contribs created page Template:JsonEscape (Created page with "<includeonly>{{#iferror: {{#replace: {{#dplreplace: {{#dplreplace: {{#replace:{{{1|}}}|"|\"}} | /\[\[([^\]\{{!}}]+)\{{!}}([^\]]+)\]\]([a-z]*)/ | (link to \1 article, displayed as \2\3) }} | /\[\[([^\]]+)\]\]([a-z]*)/ | (link to \1 article, displayed as \1\2) }} | <nowiki/> <nowiki/> | \n }}|(values exceeds 1000 characters...)}}</includeonly><noinclude>{{documentation}}</noinclude>")
- 16:05, 6 August 2024 JarlPenguin talk contribs created page Module:Random/doc (Created page with "{{documentation header}} <!-- Documentation here --> This module generates a pseudo-random number. It is used the same as <code>math.random</code>, however it first sets up a seed so that the number is actually random. <includeonly> <!-- Template categories/interwiki here --> </includeonly> <noinclude> <!-- Documentation categories/interwiki here --> </noinclude>")
- 16:05, 6 August 2024 JarlPenguin talk contribs created page Module:Random (Created page with "local p = {} local seeded local randomseed = math.randomseed local random = math.random function p.random( m, n ) if not seeded then p.seed() end return random( n and m or m and 1 or 0, n or m or 1 ) end function p.seed( seed ) randomseed( seed or ( os.time() + os.clock() * 1000000000 ) ) -- First few values of seed is not guaranteed to be random on some platforms random() random() seeded = true end function p.main( frame ) local m = tonumber( frame.a...")
- 16:04, 6 August 2024 JarlPenguin talk contribs created page Template:Rcat/reasons (Redirected page to Template:Redr/Reason) Tag: New redirect
- 16:01, 6 August 2024 JarlPenguin talk contribs created page Template:Redr/Reason/doc (Created page with "{{documentation header}} <!-- Documentation here --> <onlyinclude> {| class="wikitable" ! Name !! Produces !! Category |- ! colspan=3 | Variations of words |- |<code>plural</code> |From a plural to a singular term. Possibly not necessary, discuss. |Category:Redirects from plurals |- |<code>singular</code> |From a singular to a plural term. |Category:Redirects to plurals |- |<code>inflection</code>...")
- 16:00, 6 August 2024 JarlPenguin talk contribs created page Template:Redr/Reason (Created page with "{{#switch: {{lc:{{{1|}}}}}<!-- Variations of words --> | plural = *From a plural word to the page title in singular. (Discuss usefulness of this type).{{#if: {{{nocat|}}} || Category:Redirects from plurals }} | singular = *From a singular to a plural term.{{#if: {{{nocat|}}} || Category:Redirects to plurals }} | inflection | past tense | present tense | future tense | tense | verb | verb tense | verb inf...")
- 15:59, 6 August 2024 FloofyPlasma talk contribs created page Template:SUBJECTSPACE formatted (Created page with "{{#switch: {{SUBJECTSPACE}} | {{ns:0}} | {{ns:10000}} | {{ns:10002}} | {{ns:10004}} | {{ns:10006}} = article | {{ns:4}} = The Blockheads Wiki page | {{ns:2}} | {{ns:12}} = {{lc:{{SUBJECTSPACE}}}} page | #default = {{lc:{{SUBJECTSPACE}}}} }}<noinclude> {{Documentation}} </noinclude>")
- 15:59, 6 August 2024 JarlPenguin talk contribs moved page Template:Rcat to Template:Redr
- 15:59, 6 August 2024 JarlPenguin talk contribs moved page Template:Rcat/doc to Template:Redr/doc
- 15:58, 6 August 2024 JarlPenguin talk contribs created page Template:Rcat/doc (Created page with "{{documentation header}} <!-- Documentation here --> {{shortcut|Rcat|Useful redirect|UsefulRedirect|R|Rcat shell}} This template should be used on redirect pages to classify redirects under particular redirect categories (rcats), such as, for example, Category:Redirects from other capitalizations. == Usage == <code>{<nowiki/>{Redr|rcat}}</code>. For multiple reasons, <code>{<nowiki/>{Redr|rcat1|rcat2}}</code> '''Do <u>not</u>''' place any templates before the #...")
- 15:58, 6 August 2024 JarlPenguin talk contribs created page Template:Message box/doc (Created page with "{{documentation header}} {{shortcut|msgbox|notice|mbox|ambox}} This template is used to add consistent styling to message boxes. == Usage == <pre style="display: table;">{{Message box | mini = Mini mode | small = Mini mode | subtle = Subtle mode | class = Classes for the template | type = Notice type | bgcol = Custom background color | linecol = Custom line color | width = Custom width | float = Custom alignment | icon = Icon from Template:CommentSprite | imagecss = Cus...")
- 15:57, 6 August 2024 JarlPenguin talk contribs created page Template:Message box (Created page with "<includeonly><div class="msgbox searchaux {{#if: {{{mini|{{{small|}}}}}} | msgbox-mini | }} {{ #switch: {{{type|}}} | style | display | presentation = msgbox-yellow | minor | minor-issue | content | issue = msgbox-orange | major | major-issue | delete = msgbox-red | organization | title | move = msgbox-purple | details | parity | edition | upcoming = msgbox-blue | notice | note | info = msgbox-green | other = msgbox-magenta | #default = {{#if: {{#pos:...")
- 15:57, 6 August 2024 JarlPenguin talk contribs created page Template:Rcat (Created page with "{{Message box | class = msgbox-yellow | title = This page is a redirect: | text = <noinclude> * Actually, this page is a template page. Each redirect page using this template will list its reasons in bullet point format like this, though. There is a maximum of 6 bullet points, because this page currently does not use a module, even though it should (and will, soon). </noinclude><includeonly><nowiki/>{{ #if: {{{1|}}}{{{2|}}}{{{3|}}}{{{4|}}}{{{5|}}}{{{6|}}}...")
- 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:55, 6 August 2024 FloofyPlasma talk contribs created page Template:Inventory slot (Created page with "<includeonly>{{#invoke: inventory slot | slot }}</includeonly><noinclude> {{documentation}} <!-- Put categories/interwiki on the documentation page -->")
- 15:54, 6 August 2024 FloofyPlasma talk contribs created page Module:Inventory slot/doc (Created page with "{{documentation header}} <!-- Documentation here --> This module implements {{tl|inventory slot}}. == Dependencies == * Module:Inventory slot/Aliases <includeonly> <!-- Template categories/interwiki here --> Category:Modules <includeonly>")
- 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 FloofyPlasma talk contribs created page Module:Inventory slot (Created page with "local p = {} local i18n = { filename = 'Invicon $1', legacyFilename = 'Grid $1.png', modLink = 'Mods/$1/$2', moduleAliases = Module:Inventory slot/Aliases, moduleRandom = Module:Random, -- List of special prefixes which should be handled by -- other modules (such as being moved outside links) prefixes = { any = 'Any', matching = 'Matching', damaged = 'Damaged', unwaxed = 'Unwaxed', }, suffixes = { be = 'BE', lce = 'LCE', }, } p.i18n = i18n...")
- 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 FloofyPlasma talk contribs created page Template:Shc (Redirected page to Template:Shortcut) Tag: New redirect
- 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...")