All public logs
Combined display of all available logs of Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 01:09, 2 March 2025 Alfredo talk contribs created page Template:Hidden begin (Created page with "<includeonly><templatestyles src="Template:Hidden begin/styles.css"/><div class="hidden-begin mw-collapsible {{#ifeq:{{{showhide|{{{toggle}}}}}}|left|mw-collapsible-leftside-toggle}} {{#if:{{{expanded|}}}||mw-collapsed}} {{{class|}}}" style="{{#if:{{{width|}}}|width:{{{width}}};}} {{#if:{{{border|}}}|border:{{{border}}};}} {{#if:{{{bgcolor|}}}|background-color:{{{bgcolor}}};}} {{{style|}}}"><!-- --><div class="hidden-title skin-nightmode-reset-color" style="{{#if:{{{ta1|...")
- 01:08, 2 March 2025 Alfredo talk contribs created page Module:InfoboxImage (Created page with "-- Inputs: -- image - Can either be a bare filename (with or without the File:/Image: prefix) or a fully formatted image link -- page - page to display for multipage images (DjVu) -- size - size to display the image -- maxsize - maximum size for image -- sizedefault - default size to display the image if size param is blank -- alt - alt text for image -- title - title text for image -- border - set to yes if border -- center - set to yes, if th...")
- 01:08, 2 March 2025 Alfredo talk contribs created page Module:If empty (Created page with "local p = {} function p.main(frame) local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:If empty', removeBlanks = false}) for k,v in ipairs(args) do if v ~= '' then return v end end end return p")
- 01:07, 2 March 2025 Alfredo talk contribs created page Template:If empty (Created page with "{{<includeonly>safesubst:</includeonly>#invoke:If empty|main}}<noinclude>{{Documentation}}</noinclude>")
- 01:07, 2 March 2025 Alfredo talk contribs created page Template:Infobox website (Created page with "{{Infobox | bodyclass = vcard | child = {{lc:{{{embed|}}}}} | decat = yes | titleclass = fn org | title = {{if empty|{{{name|}}}|{{{company_name|}}}|{{{websitename|}}}|<includeonly>{{PAGENAMEBASE}}</includeonly>}} | image = {{#invoke:InfoboxImage|InfoboxImage|image={{if empty|{{{company_logo|}}}|{{{logo|}}}|{{{websitelogo|}}}}}|size={{{logo_size|}}}|sizedefault=frameless|upright={{{image_upright|1}}}|alt={{{logo_alt|}}}}} | caption1 = {{if empty|{{{logo_captio...")
- 01:06, 2 March 2025 Alfredo talk contribs created page Template:DISPLAYTITLE (Created page with "<includeonly>{{DISPLAYTITLE:{{{1}}}}}C{{PAGENAME}}</includeonly><noinclude>{{Documentation}}</noinclude>")
- 01:04, 2 March 2025 Alfredo talk contribs created page Module:Infobox/styles.css (Created page with "{{pp|small=y}}: * This TemplateStyles sheet deliberately does NOT include the full set of * infobox styles. We are still working to migrate all of the manual * infoboxes. See MediaWiki talk:Common.css/to do#Infobox * DO NOT ADD THEM HERE: * not strictly certain these styles are necessary since the modules now * exclusively output infobox-subbox or infobox, not both * just replicating the module faithfully: .infobox-subbox { padding: 0; borde...")
- 01:04, 2 March 2025 Alfredo talk contribs created page Module:Infobox (Created page with "local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_t = { patterns = { '^hlist$', '%shlist$', '^hlist%s', '%shlist%s'...")
- 01:03, 2 March 2025 Alfredo talk contribs created page Template:Infobox (Created page with "{{#invoke:Infobox|infobox}}<includeonly>{{template other|{{#ifeq:{{PAGENAME}}|Infobox||{{#ifeq:{{str left|{{SUBPAGENAME}}|7}}|Infobox|{{remove first word|{{SUBPAGENAME}}}}}}}}|}}</includeonly><noinclude> {{documentation}} <!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --> </noinclude>")
- 01:01, 2 March 2025 Alfredo talk contribs created page File:Test Template Info-Icon - Version (2).webp
- 01:01, 2 March 2025 Alfredo talk contribs uploaded File:Test Template Info-Icon - Version (2).webp
- 00:56, 2 March 2025 Alfredo talk contribs created page Module:Documentation/styles.css (Created page with "{{pp|small=yes}}: .documentation, .documentation-metadata { border: 1px solid var( --border-color-base, #a2a9b1 ); background-color: #ecfcf4; clear: both; } .documentation { margin: 1em 0 0 0; padding: 1em; } .documentation-metadata { margin: 0.2em 0; same margin left-right as .documentation: font-style: italic; padding: 0.4em 1em; same padding left-right as .documentation: } .documentation-startbox { padding-bottom: 3px; border-bottom:...")
- 00:47, 2 March 2025 Alfredo talk contribs created page Module:Documentation/config (Created page with "---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. ---------------------------------------------------------------------------------...")
- 00:46, 2 March 2025 Alfredo talk contribs created page Module:Yesno (Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val =...")
- 00:45, 2 March 2025 Alfredo talk contribs created page Module:Message box (Created page with "require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions ---------------------------------------------------------------------------...")
- 00:45, 2 March 2025 Alfredo talk contribs created page Template:Ombox (Created page with "{{#invoke:Message box|ombox}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 00:44, 2 March 2025 Alfredo talk contribs created page Module:Arguments (Created page with "-- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string'...")
- 00:43, 2 March 2025 Alfredo talk contribs created page Module:Documentation (Created page with "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub local format = mw.ustring.format ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in...")
- 18:12, 27 February 2025 Alfredo talk contribs created page Alfredobaggiano.click (Created page with "alfredobaggiano.click is a website created by Alfredo.")
- 18:11, 27 February 2025 Alfredo talk contribs created page Alfredobaggiano.com (Created page with "alfredobaggiano.com is a website created by Alfredo, for similar websites see alfredobaggiano.click.")
- 16:45, 27 February 2025 Alfredo talk contribs created page Module:Documentation (Created page with "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub local format = mw.ustring.format ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in...")
- 16:43, 27 February 2025 Alfredo talk contribs created page Template:Documentation (Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>")
- 16:43, 27 February 2025 Alfredo talk contribs created page Template:Top icon (Created page with "<includeonly><nowiki /><!-- This nowiki tag helps prevent whitespace at the top of articles. -->{{#tag:indicator|File:{{{image|{{{imagename|{{{1|}}}}}}}}}|{{#if:{{{width|}}}|{{Str number/trim|{{{width}}}}}|20}}x{{#if:{{{height|}}}|{{Str number/trim|{{{height}}}}}|20}}px |{{#ifeq:{{{link|+}}}|{{{link|-}}}|link={{{link}}}|{{#ifeq:{{{wikilink|+}}}|{{{wikilink|-}}}|link={{{wikilink}}}|{{#ifeq:{{{2|+}}}|{{{2|-}}}|link={{{2}}}|}}}}}} |{{#if:{{{alt|}}}|alt={{{alt}}}}} |{{#...")
- 16:43, 27 February 2025 Alfredo talk contribs created page Template:Administrator topicon (Created page with "{{Top icon | imagename = {{{image|{{#ifeq:{{{1|}}}|tan|Wikipe-tan mopping.svg|Wikipedia Administrator.svg}}}}} | name = ab-administrator | wikilink = Wikipedia:Administrators | description = This user has administrator privileges on the English Wikipedia. | id = administrator-icon | sortkey = {{{sortkey|}}} | width = {{{width|}}} | height = {{#ifeq:{{{1|}}}|tan|24|{{{height|}}}}} | usercat = Category:Administrators | n...")
- 16:40, 27 February 2025 Alfredo talk contribs changed group membership for Moderation from (none) to administrator
- 16:39, 27 February 2025 Alfredo talk contribs protected User:Moderation [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 16:39, 27 February 2025 Alfredo talk contribs protected User:Alfredo [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 14:07, 27 February 2025 Alfredo talk contribs deleted page Wiki:Main Page/styles.css (content was: ".mp-box { border: 1px solid #aaa; all colors overriden on specific elements in @media screen: padding: 0 0.5em 0.5em; margin-top: 4px; } .mp-h2, body.skin-timeless .mp-h2 { Timeless needs a higher specificity: border: 1px solid #aaa; all colors overriden on specific elements in @media screen: margin: 0.5em 0; padding: 0.2em 0.4em; font-size: 120%; font-...", and the only contributor was "Alfredo" (talk))
- 14:03, 27 February 2025 Alfredo talk contribs created page Wiki:Main Page/styles.css (Created page with "{{pp|small=yes}}: .mp-box { border: 1px solid #aaa; all colors overriden on specific elements in @media screen: padding: 0 0.5em 0.5em; margin-top: 4px; } .mp-h2, body.skin-timeless .mp-h2 { Timeless needs a higher specificity: border: 1px solid #aaa; all colors overriden on specific elements in @media screen: margin: 0.5em 0; padding: 0.2em 0.4em; font-size: 120%; font-weight: bold; font-family: inherit; } .mp-later { font-size: 85%; fon...")
- 14:01, 27 February 2025 Alfredo talk contribs deleted page Wiki:Users (content was: "Test", and the only contributor was "Alfredo" (talk))
- 14:00, 27 February 2025 Alfredo talk contribs created page Wiki:Users (Created page with "Test")
- 13:54, 27 February 2025 Alfredo talk contribs deleted page Users (content was: "Users can edit the Wiki.", and the only contributor was "Alfredo" (talk))
- 13:53, 27 February 2025 Alfredo talk contribs created page Users (Created page with "Users can edit the Wiki.")
- 13:36, 27 February 2025 Alfredo talk contribs created page File:AlfredoBaggiano.png
- 13:36, 27 February 2025 Alfredo talk contribs uploaded File:AlfredoBaggiano.png
- 13:13, 27 February 2025 Alfredo talk contribs created page User:Alfredo (Created page with "Administrator")
- 13:12, 27 February 2025 Alfredo talk contribs protected User:Alfredo [Create=Allow only administrators] (indefinite) (hist)
- 00:18, 27 February 2025 Alfredo talk contribs protected Main Page [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)