Main public logs

Jump to navigation Jump to search

Combined display of all available logs of OSFirstTimer 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 (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 14:12, 24 June 2026 Alee talk contribs undeleted page Module:Format link (2 revisions)
  • 12:44, 24 June 2026 Alee talk contribs created page Bits & Bytes (Redirected page to AstralPhaser Central) Tag: New redirect
  • 11:05, 24 June 2026 Alee talk contribs deleted page Module:Color contrast/colors (content was: "return { aliceblue = 0.92880068253475, antiquewhite = 0.84646951707754, aqua = 0.7874, aquamarine = 0.8078549208338, azure = 0.97265264954166, beige = 0.8988459998705, bisque = 0.80732327372979, black = 0, blanchedalmond = 0.85084439608156, blue = 0.0722, blueviolet = 0.12622014321946, brown = 0.098224287876511, burl...")
  • 11:05, 24 June 2026 Alee talk contribs deleted page Module:Color contrast (content was: "-- -- This module implements -- {{Color contrast ratio}} -- {{Greater color contrast ratio}} -- {{ColorToLum}} -- {{RGBColorToLum}} -- local p = {} local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) local function sRGB (v) if (v <= 0.03928) then v = v / 12.92 else v = math.pow((v+0.055)/1.055, 2.4) end return v end local function rgbdec2lum(R, G, B) if ( 0 <= R and R < 256 and 0 <= G and G < 256 and 0 <= B and B < 256 ) then return 0.2126 * sRGB(R/...")
  • 11:03, 24 June 2026 Alee talk contribs deleted page Module:Lua banner (content was: "-- This module implements the {{lua}} template. local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') local p = {} function p.main(frame) local origArgs = frame:getParent().args local args = {} for k, v in pairs(origArgs) do v = v:match('^%s*(.-)%s*$') if v ~= '' then args[k] = v end end return p._main(args) end function p._main(args) local m...")
  • 11:03, 24 June 2026 Alee talk contribs deleted page Module:Icon (content was: "-- This module implements Template:Icon. require("strict") local yesNo = require("Module:Yesno") local getArgs = require("Module:Arguments").getArgs local p = {} -- Determine whether we're being called from a sandbox local sandbox = mw.getCurrentFrame():getTitle():find('sandbox', 1, true) and '/sandbox' or '' -- Implements Template:Icon -- Returns the icon image corresponding to a string (like 'B') function p._main(args, data) local data_module = 'Module:Icon/data'...")
  • 11:03, 24 June 2026 Alee talk contribs deleted page Module:Icon/data (content was: "-- This module stores icon data for Module:Icon. -------------------------------------------------------------------------------- -- Icon data -------------------------------------------------------------------------------- local data = { fa = { image = "Featured article star.svg", tooltip = "Featured article", link = true, }, far = { image = "Cscr-star piece.png", tooltip = "Featured article review", link = true, }, farc = { image = "Cscr-star piece.pn...")
  • 11:02, 24 June 2026 Alee talk contribs deleted page Module:High-use (content was: "require('strict') local p = {} local getArgs = require('Module:Arguments').getArgs local _fetch = require('Module:Transclusion_count')._fetch -- _fetch looks at the 'demo' argument local yesno = require('Module:Yesno') local lang_obj = mw.getContentLanguage() -- this here because the language object is used multiple places in the module local large_count_cutoff = 100000 local approx_num_total_pages = 65700000 local user_subpage_info_page = 'Wikipedia:User pages#SUB' local s...")
  • 11:02, 24 June 2026 Alee talk contribs deleted page Template:Lua (content was: "<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{Lua|Module:Lua banner}} {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
  • 11:02, 24 June 2026 Alee talk contribs deleted page Module:TableTools (content was: "------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be called from other Lua modules, and should not -- -- be called directly from #invoke....")
  • 11:01, 24 June 2026 Alee talk contribs deleted page Module:Template link general (content was: "-- This implements Template:Template link general and various other templates in its family local getArgs = require('Module:Arguments').getArgs local p = {} -- Is a string non-empty? local function _ne(s) return s ~= nil and s ~= "" end local nw = mw.text.nowiki local function addTemplate(s) local i, _ = s:find(':', 1, true) if i == nil then return 'Template:' .. s end local ns = s:sub(1, i - 1) if ns == '' or mw.site.namespaces[ns] then return s else return 'T...")
  • 11:01, 24 June 2026 Alee talk contribs deleted page Template:Template other (content was: "{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:Template}} | template | other }} }} | template = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch--><noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>")
  • 11:01, 24 June 2026 Alee talk contribs deleted page Template:Icon (content was: "{{#invoke:Icon|main}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
  • 11:01, 24 June 2026 Alee talk contribs deleted page Module:Format link (content was: "-------------------------------------------------------------------------------- -- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " ยง " as a separator rather than the standard MediaWiki "#". Used in -- the {{format link}} template. -------------------------------------------------------------------------------- local libraryUtil = require('librar...")
  • 11:01, 24 June 2026 Alee talk contribs deleted page Module:File link (content was: "-- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "type error in '%s' pa...")
  • 11:01, 24 June 2026 Alee talk contribs deleted page Module:Effective protection level (content was: "local p = {} -- Returns the permission required to perform a given action on a given title. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview' then local level = mw.e...")
  • 11:01, 24 June 2026 Alee talk contribs deleted page Module:Effective protection expiry (content was: "local p = {} -- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview'...")
  • 10:59, 24 June 2026 Alee talk contribs deleted page Template:Sandbox other (content was: "<onlyinclude>{{safesubst:<noinclude/>#if:{{safesubst:<noinclude/>#ifeq:{{safesubst:<noinclude/>#invoke:String|sublength|s={{safesubst:<noinclude/>SUBPAGENAME}}|i=0|len=7}}|sandbox|1}}{{safesubst:<noinclude/>#ifeq:{{safesubst:<noinclude/>SUBPAGENAME}}|doc|1}}{{safesubst:<noinclude/>#invoke:String|match|{{safesubst:<noinclude/>PAGENAME}}|/sandbox/styles.css$|plain=false|nomatch=}}|{{{1|}}}|{{{2|}}}}}</onlyinclude><!-- -->{{documentation}}")
  • 10:59, 24 June 2026 Alee talk contribs deleted page Template:Section link (content was: "<includeonly>{{SAFESUBST:<noinclude />#invoke:Section link|main}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
  • 10:58, 24 June 2026 Alee talk contribs deleted page Template:Hlist/styles.css (content was: "{{pp-template}}: * hlist styles are defined in core and Minerva and differ in Minerva. The * current definitions here (2023-01-01) are sufficient to override Minerva * without use of the hlist-separated class. The most problematic styles were * related to margin, padding, and the bullet. Check files listed at * [[MediaWiki talk:Common.css/to do#hlist-separated]]: /* * TODO: When the majority of readership supports it (or some beautiful world * in which grade...")
  • 10:58, 24 June 2026 Alee talk contribs deleted page Template:High-use (content was: "{{#invoke:High-use|main|1={{{1|}}}|2={{{2|}}}|info={{{info|}}}|demo={{{demo|}}}|form={{{form|}}}|expiry={{{expiry|}}}|system={{{system|}}}}}<noinclude> {{Documentation}} <!-- Add categories to the /doc subpage; interwiki links go to Wikidata, thank you! --> </noinclude>")
  • 10:57, 24 June 2026 Alee talk contribs deleted page Template:Documentation (content was: "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>")
  • 10:55, 24 June 2026 Alee talk contribs deleted page Template:Documentation subpage (content was: "<includeonly><!-- -->{{#ifeq:{{lc:{{SUBPAGENAME}}}} |{{{override|doc}}} | <!--(this template has been transcluded on a /doc or /{{{override}}} page)--> </includeonly><!-- -->{{#ifeq:{{{doc-notice|show}}} |show | {{Mbox | type = notice | style = margin-bottom:1.0em; | image = 40px|alt=icon | text = {{strong|This is a documentation subpage}}...")
  • 10:51, 24 June 2026 Alee talk contribs deleted page Module:Documentation/styles.css (content was: "{{pp|small=yes}}: .documentation, .documentation-metadata { border: 1px solid var( --border-color-base, #a2a9b1 ); background-color: #ecfcf4; color:inherit; 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...")
  • 10:51, 24 June 2026 Alee talk contribs deleted page Module:Documentation/config (content was: "---------------------------------------------------------------------------------------------------- -- -- 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. ----------------------------------------------------------------------------------------...")
  • 10:51, 24 June 2026 Alee talk contribs deleted page Module:Documentation (content was: "-- 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 the p -...")
  • 10:51, 24 June 2026 Alee talk contribs deleted page Module:Protection banner/config (content was: "-- This module provides configuration data for Module:Protection banner. return { -------------------------------------------------------------------------------- -- -- BANNER DATA -- -------------------------------------------------------------------------------- --[[ -- Banner data consists of six fields: -- * text - the main protection text that appears at the top of protection -- banners. -- * explanation - the text that appears below...")
  • 10:50, 24 June 2026 Alee talk contribs deleted page Module:Protection banner (content was: "-- This module implements {{pp-meta}} and its daughter templates such as -- {{pp-dispute}}, {{pp-vandalism}} and {{pp-sock}}. -- Initialise necessary modules. require('strict') local makeFileLink = require('Module:File link')._main local effectiveProtectionLevel = require('Module:Effective protection level')._main local effectiveProtectionExpiry = require('Module:Effective protection expiry')._main local yesno = require('Module:Yesno') -- Lazily initialise modules and objects...")
  • 10:49, 24 June 2026 Alee talk contribs deleted page Module:Navbar (content was: "local p = {} local cfg = mw.loadData('Module:Navbar/configuration') local function get_title_arg(is_collapsible, template) local title_arg = 1 if is_collapsible then title_arg = 2 end if template then title_arg = 'template' end return title_arg end local function choose_links(template, args) -- The show table indicates the default displayed items. -- view, talk, edit, hist, move, watch -- TODO: Move to configuration. local show = {true, true, true, false, false, false...")
  • 10:49, 24 June 2026 Alee talk contribs deleted page Module:Navbar/configuration (content was: "return { ['templatestyles'] = 'Module:Navbar/styles.css', ['hlist_templatestyles'] = 'Hlist/styles.css', ['box_text'] = 'This box: ', -- default text box when not plain or mini ['title_namespace'] = 'Template', -- namespace to default to for title ['invalid_title'] = 'Invalid title ', ['classes'] = { -- set a line to nil if you don't want it ['navbar'] = 'navbar', ['plainlinks'] = 'plainlinks', -- plainlinks ['horizontal_list'] = 'hlist', -- horizontal list class...")
  • 10:48, 24 June 2026 Alee talk contribs deleted page Module:Navbox/configuration (content was: "return { aria_label = 'Navbox', nowrap_item = '%s<span class="nowrap">%s</span>', templatestyles = mw.getCurrentFrame():extensionTag{ name = 'templatestyles', args = { src = 'Module:Navbox/styles.css' } }, hlist_templatestyles = 'Hlist/styles.css', plainlist_templatestyles = 'Plainlist/styles.css', -- do not localize marker table marker = { oddeven = '\127_ODDEVEN_\127', restart = '\127_ODDEVEN0_\127', regex = '\127_ODDEVEN(%d?)_\127' }, category = { orphan...")
  • 10:48, 24 June 2026 Alee talk contribs deleted page Module:Navbox/styles.css (content was: "{{pp|small=y}}: .navbox { box-sizing: border-box; border: 1px solid #a2a9b1; width: 100%; clear: both; font-size: 88%; text-align: center; padding: 1px; margin: 1em auto 0; Prevent preceding content from clinging to navboxes: } .navbox .navbox { margin-top: 0; No top margin for nested navboxes: } .navbox + .navbox-styles + .navbox, category positions are wrapped in an "empty" span in Parsoid [[phab:T378906]]: .navbox + span.mw-empty-elt + .navbox...")
  • 04:09, 24 June 2026 Alee talk contribs created page Category:Channel (Created blank page) Tag: Visual edit: Switched
  • 12:48, 23 June 2026 Alee talk contribs created page File:Wiki Migration Announcement.png
  • 12:48, 23 June 2026 Alee talk contribs uploaded File:Wiki Migration Announcement.png
  • 12:32, 23 June 2026 Alee talk contribs created page File:AstralPhaser Weekly Chat Discontinuation Announcement.png
  • 12:32, 23 June 2026 Alee talk contribs uploaded File:AstralPhaser Weekly Chat Discontinuation Announcement.png
  • 09:41, 23 June 2026 Alee talk contribs created page OSFirstTimer Wiki:Administrators (Redirected page to OSFirstTimer Wiki:Administration) Tag: New redirect
  • 09:41, 23 June 2026 Alee talk contribs created page OSFirstTimer Wiki:Bureaucrats (Redirected page to OSFirstTimer Wiki:Administration) Tag: New redirect
  • 09:40, 23 June 2026 Alee talk contribs created page OSFirstTimer Wiki:Administration (Created page with "== Bureaucrats == * Alee * KomputerKid * Byte of Melon == Past Bureaucrats == * Dungeness<ref>https://community.fandom.com/wiki/Adoption:OSFirstTimer_Wiki</ref> * Paramenttech (Founder) == Past Administrators == * Novanoid == References ==")
  • 09:32, 23 June 2026 Alee talk contribs deleted page OSFirstTimer Wiki:Bureaucrats (remove redirect)
  • 09:32, 23 June 2026 Alee talk contribs deleted page OSFirstTimer Wiki:Administrators (not really relevant anymore)
  • 00:52, 23 June 2026 Alee talk contribs created page MediaWiki:Mainpage-title-loggedin (display nothing)
  • 00:51, 23 June 2026 Alee talk contribs created page MediaWiki:Mainpage-title (display nothing)
  • 21:22, 22 June 2026 Alee talk contribs changed visibility of a revision on page Philip Adams: content hidden (dox)
  • 20:22, 22 June 2026 Alee talk contribs created page File:OSFT Forums - OSFT Wiki by UbuntuMan.png
  • 20:22, 22 June 2026 Alee talk contribs uploaded File:OSFT Forums - OSFT Wiki by UbuntuMan.png
  • 17:48, 22 June 2026 Alee talk contribs created page File:IMG 1199.png (Screenshot of the email with Philip Adams about moving away from YouTube)
  • 17:48, 22 June 2026 Alee talk contribs uploaded File:IMG 1199.png (Screenshot of the email with Philip Adams about moving away from YouTube)
  • 17:51, 17 June 2026 Alee talk contribs created page File:Wiki-wordmark.webp
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)