All public logs
Jump to navigation
Jump to search
Combined display of all available logs of TAMS Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 08:27, 6 February 2021 Jeongwoo talk contribs deleted page Module:Anchor (content was: "-- This module implements {{anchor}}. local getArgs = require('Module:Arguments').getArgs local tableTools = require('Module:TableTools') local p = {} function p.main(frame) -- Get the positional arguments from #invoke, remove any nil values, -- and pass them to p._main. local args = getArgs(frame) local argArray = tableTools.compressSparseArray(args) return p._main(unpack(argArray)) end function p._main(...) -- Generate the list of anchors. local anchors = {...} lo...")
- 08:27, 6 February 2021 Jeongwoo talk contribs deleted page Module:Check for clobbered parameters (content was: "local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end function p.check(frame) local args = frame.args local pargs = frame:getParent().args local checknested = isnotempty(args['nested']) local delimiter = isnotempty(args['delimiter']) and args['delimiter'] or ';' local cat = '' if args['cat'] and mw.ustring.match(args['cat'],'^[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]:') then cat = args['cat'] end...")
- 08:27, 6 February 2021 Jeongwoo 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/...")
- 08:27, 6 February 2021 Jeongwoo 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...")
- 08:27, 6 February 2021 Jeongwoo talk contribs deleted page Module:Cslist (content was: "p = {} p.makelist = function(frame) local args = frame.args if not args[1] then args = frame:getParent().args if not args[1] then return end end local semi = (args.semi or ""):sub(1,1):lower() semi = (semi == "t") or (semi == "y") local embedded = (args.embedded or ""):sub(1,1):lower() embedded = (embedded == "y") local out = "" for k, v in ipairs(args) do v = mw.text.trim(v) if v ~= "" then out = out .. "<li>" .. v .. "</li>" end end local listclass =...")
- 08:27, 6 February 2021 Jeongwoo talk contribs deleted page Module:Date (content was: "-- Date functions for use by other modules. -- I18N and time zones are not supported. local MINUS = '−' -- Unicode U+2212 MINUS SIGN local floor = math.floor local Date, DateDiff, diffmt -- forward declarations local uniq = { 'unique identifier' } local function is_date(t) -- The system used to make a date read-only means there is no unique -- metatable that is conveniently accessible to check. return type(t) == 'table' and t._id == uniq end local function is_diff(t)...")
- 08:27, 6 February 2021 Jeongwoo 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'...")
- 08:27, 6 February 2021 Jeongwoo 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....")
- 08:27, 6 February 2021 Jeongwoo talk contribs deleted page Module:Exponential search (content was: "-- This module provides a generic exponential search algorithm. local checkType = require('libraryUtil').checkType local floor = math.floor local function midPoint(lower, upper) return floor(lower + (upper - lower) / 2) end local function search(testFunc, i, lower, upper) if testFunc(i) then if i + 1 == upper then return i end lower = i if upper then i = midPoint(lower, upper) else i = i * 2 end return search(testFunc, i, lower, upper) else upper...")
- 08:27, 6 February 2021 Jeongwoo 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...")
- 08:27, 6 February 2021 Jeongwoo talk contribs deleted page Module:For (content was: "local mArguments --initialize lazily local mHatlist = require('Module:Hatnote list') local mHatnote = require('Module:Hatnote') local yesNo = require('Module:Yesno') local p = {} --Implements {{For}} from the frame --uses capitalized "For" to avoid collision with Lua reserved word "for" function p.For (frame) mArguments = require('Module:Arguments') return p._For(mArguments.getArgs(frame)) end --Implements {{For}} but takes a manual arguments table function p._For (args) l...")
- 08:27, 6 February 2021 Jeongwoo talk contribs deleted page Module:Hatnote inline (content was: "-------------------------------------------------------------------------------- -- Module:Hatnote-inline -- -- -- -- This module produces hatnote-style links and links to related articles, -- -- but inside a <span>, instead of the <div> used by Module:Hatnote. It -- -- implements the {{hatnote-inline}} meta-template....")
- 01:55, 6 February 2021 Jeongwoo talk contribs deleted page Module:Navbar/configuration (content was: "local configuration = { ['templatestyles'] = 'Module:Navbar/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 ['mini'] = 'navbar-mini', -- c...")
- 01:55, 6 February 2021 Jeongwoo talk contribs deleted page Module:Message box/configuration (content was: "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-speedy',...")
- 01:55, 6 February 2021 Jeongwoo talk contribs deleted page Module:Language/data/iana languages (content was: "-- File-Date: 2020-12-18 local active = { ["aa"] = {"Afar"}, ["ab"] = {"Abkhazian"}, ["ae"] = {"Avestan"}, ["af"] = {"Afrikaans"}, ["ak"] = {"Akan"}, ["am"] = {"Amharic"}, ["an"] = {"Aragonese"}, ["ar"] = {"Arabic"}, ["as"] = {"Assamese"}, ["av"] = {"Avaric"}, ["ay"] = {"Aymara"}, ["az"] = {"Azerbaijani"}, ["ba"] = {"Bashkir"}, ["be"] = {"Belarusian"}, ["bg"] = {"Bulgarian"}, ["bh"] = {"Bihari languages"}, ["bi"] = {"Bislama"}, ["bm"] = {"Bambara"}, ["bn"] =...")
- 01:55, 6 February 2021 Jeongwoo talk contribs deleted page Module:Language/data/iana regions (content was: "-- File-Date: 2020-12-18 return { ["AC"] = {"Ascension Island"}, ["AD"] = {"Andorra"}, ["AE"] = {"United Arab Emirates"}, ["AF"] = {"Afghanistan"}, ["AG"] = {"Antigua and Barbuda"}, ["AI"] = {"Anguilla"}, ["AL"] = {"Albania"}, ["AM"] = {"Armenia"}, ["AO"] = {"Angola"}, ["AQ"] = {"Antarctica"}, ["AR"] = {"Argentina"}, ["AS"] = {"American Samoa"}, ["AT"] = {"Austria"}, ["AU"] = {"Australia"}, ["AW"] = {"Aruba"}, ["AX"] = {"Åland Islands"}, ["AZ"] = {"Azerbaijan"...")
- 01:55, 6 February 2021 Jeongwoo talk contribs deleted page Module:Language/data/iana scripts (content was: "-- File-Date: 2020-12-18 return { ["Adlm"] = {"Adlam"}, ["Afak"] = {"Afaka"}, ["Aghb"] = {"Caucasian Albanian"}, ["Ahom"] = {"Ahom", "Tai Ahom"}, ["Arab"] = {"Arabic"}, ["Aran"] = {"Arabic (Nastaliq variant)"}, ["Armi"] = {"Imperial Aramaic"}, ["Armn"] = {"Armenian"}, ["Avst"] = {"Avestan"}, ["Bali"] = {"Balinese"}, ["Bamu"] = {"Bamum"}, ["Bass"] = {"Bassa Vah"}, ["Batk"] = {"Batak"}, ["Beng"] = {"Bengali", "Bangla"}, ["Bhks"] = {"Bhaiksuki"}, ["Blis"] = {"Bliss...")
- 01:55, 6 February 2021 Jeongwoo talk contribs deleted page Module:Language/data/iana suppressed scripts (content was: "-- File-Date: 2020-12-18 return { ["Arab"] = {"ar", "fa", "ps", "ur"}, ["Armn"] = {"hy"}, ["Beng"] = {"as", "bn"}, ["Blis"] = {"zbl"}, ["Cyrl"] = {"ab", "be", "bg", "kk", "mk", "ru", "uk"}, ["Deva"] = {"hi", "mr", "ne", "kok", "mai"}, ["Ethi"] = {"am", "ti"}, ["Geor"] = {"ka"}, ["Grek"] = {"el"}, ["Gujr"] = {"gu"}, ["Guru"] = {"pa"}, ["Hebr"] = {"he", "iw", "yi"}, ["Jpan"] = {"ja"}, ["Khmr"] = {"km"}, ["Knda"] = {"kn"}, ["Kore"] = {"ko"}, ["Laoo"] = {"lo"}, ["...")
- 01:55, 6 February 2021 Jeongwoo talk contribs deleted page Module:Language/data/iana variants (content was: "-- File-Date: 2020-12-18 return { ["1606nict"] = { ["descriptions"] = {"Late Middle French (to 1606)"}, ["prefixes"] = {"frm"}, }, ["1694acad"] = { ["descriptions"] = {"Early Modern French"}, ["prefixes"] = {"fr"}, }, ["1901"] = { ["descriptions"] = {"Traditional German orthography"}, ["prefixes"] = {"de"}, }, ["1959acad"] = { ["descriptions"] = {"\"Academic\" (\"governmental\") variant of Belarusian as codified in 1959"}, ["prefixes"] = {"be"}, },...")
- 01:55, 6 February 2021 Jeongwoo talk contribs deleted page Module:List (content was: "-- This module outputs different kinds of lists. At the moment, bulleted, -- unbulleted, horizontal, ordered, and horizontal ordered lists are supported. local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] = true, ['ordered'] = true, ['horizontal_ordered'] = true } function p.makeListData(listType, args) --...")
- 01:55, 6 February 2021 Jeongwoo 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...")
- 01:55, 6 February 2021 Jeongwoo talk contribs deleted page Module:Main (content was: "--[[ -- This module produces a link to a main article or articles. It implements the -- template {{main}}. -- -- If the module is used in category or category talk space, it produces "The -- main article for this category is xxx." Otherwise, it produces -- "Main article: xxx". --]] local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local mArguments -- lazily initialise local p = {} function p.main(frame) mArguments = require('Module:A...")
- 01:54, 6 February 2021 Jeongwoo talk contribs restored page Module:Main (2 revisions)
- 01:54, 6 February 2021 Jeongwoo talk contribs deleted page Module:Main (content was: "--[[ -- This module produces a link to a main article or articles. It implements the -- template {{main}}. -- -- If the module is used in category or category talk space, it produces "The -- main article for this category is xxx." Otherwise, it produces -- "Main article: xxx". --]] local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local mArguments -- lazily initialise local p = {} function p.main(frame) mArguments = require('Module:A...")
- 01:53, 6 February 2021 Jeongwoo talk contribs deleted page Template:High-risk (content was: "#REDIRECT Template:High-use {{Rcat shell| {{Wikidata redirect}} {{R from merge}} {{R from template shortcut}} }}")
- 01:52, 6 February 2021 Jeongwoo talk contribs deleted page Template:Crossreference (content was: "{{Hatnote inline|1={{{1|{{{text|{{{content|<noinclude>sample content</noinclude>}}}}}}}}}|extraclasses={{{class|{{{extraclasses|}}}}}}|selfref={{#if:{{{selfref|{{{printworthy|{{{unprintworthy|}}}}}}}}}||yes}}}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 01:52, 6 February 2021 Jeongwoo talk contribs deleted page Template:Unbulleted list (content was: "{{<includeonly>safesubst:</includeonly>#invoke:list|unbulleted}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
- 01:52, 6 February 2021 Jeongwoo talk contribs deleted page Template:When on basepage (content was: "{{#switch: <!--If no or empty "page" parameter then detect basepage/subpage/subsubpage--> {{#if:{{{page|}}} | {{#if:{{#titleparts:{{{page}}}|0|3}} | subsubpage <!--Subsubpage or lower--> | {{#if:{{#titleparts:{{{page}}}|0|2}} | subpage | basepage }} }} | {{#if:{{#titleparts:{{FULLPAGENAME}}|0|3}} | subsubpage <!--Subsubpage or lower--> | {{#if:{{#titleparts:{{FULLPAGENAME}}|0|2}} | subpage | basepage }}...")
- 01:43, 6 February 2021 Jeongwoo talk contribs created page File:Richard Sinclair.jpg (Richard Sinclair's Facebook Picture)
- 01:43, 6 February 2021 Jeongwoo talk contribs uploaded File:Richard Sinclair.jpg (Richard Sinclair's Facebook Picture)
- 01:25, 6 February 2021 Jeongwoo talk contribs created page Travis Brooks (Created page with "{{Infobox Student|class-of=2020|senior-quote=Cancel Disney Plus, the Baby Yoda Show is over, This is the way. *Baby Yoda Sad Meme*}} Category:Class of 2020") Tag: Visual edit
- 01:23, 6 February 2021 Jeongwoo talk contribs created page Tanvi Bobba (Created page with "{{Infobox Student|class-of=2020|senior-quote=People who don't know me think I'm quiet. People who do know me wish I was...}} Category:Class of 2020") Tag: Visual edit
- 01:22, 6 February 2021 Jeongwoo talk contribs created page Naman Bhasin (Created page with "{{Infobox Student|class-of=2020}} Category:Class of 2020") Tag: Visual edit
- 01:21, 6 February 2021 Jeongwoo talk contribs created page Abhijeet Bendapudi (Created page with "{{Infobox Student|class-of=2020|senior-quote=I love ketchup. I am in awe of it. I am set free by it. It will be the finest condiment our galaxy has ever seen}} Category:Clas...") Tag: Visual edit
- 01:18, 6 February 2021 Jeongwoo talk contribs created page Adil Basha (Created page with "{{Infobox Student|class-of=2020|senior-quote=Aaj logon ki baari Jo kahein keh lene de Tera bi din aayega Uss din hisaab chuka ke rehna}} Category:Class of 2020") Tag: Visual edit
- 01:16, 6 February 2021 Jeongwoo talk contribs created page Sneha Banerjee (Created page with "{{Infobox Student|class-of=2020|senior-quote=polyamorous relationship: me, lizzy, & bruce cafeteria}} Category:Class of 2020") Tag: Visual edit
- 01:15, 6 February 2021 Jeongwoo talk contribs created page Arinze Appio-Riley (Created page with "{{Infobox Student|class-of=2020}} Category:Class of 2020") Tag: Visual edit
- 01:13, 6 February 2021 Jeongwoo talk contribs created page Thritha Anand (Created page with "{{Infobox Student|class-of=2020|clubs=Dull Roar|senior-quote="They say the step you're about to take is the beginning of your greatest adventure yet." - Ferb Fletcher}}") Tag: Visual edit
- 01:11, 6 February 2021 Jeongwoo talk contribs created page Wail Aldahni (Created page with "{{Infobox Student|class-of=2020}} Category:Class of 2020") Tag: Visual edit
- 00:58, 6 February 2021 Jeongwoo talk contribs deleted page Module:No globals (content was: "local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('Tried to read nil global ' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('Tried to write global ' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)")
- 00:58, 6 February 2021 Jeongwoo talk contribs deleted page Module:Noinclude (content was: "local p = {} function p.noinclude(frame) return frame:getParent():preprocess("<noinclude>" .. frame.args.text .. "</noinclude>"); end return p")
- 00:57, 6 February 2021 Jeongwoo talk contribs deleted page Module:Parameter names example (content was: "-- This module implements {{parameter names example}}. local p = {} local function makeParam(s) local lb = '{' local rb = '}' return lb:rep(3) .. s .. rb:rep(3) end local function italicize(s) return "''" .. s .. "''" end local function plain(s) return s end function p._main(args, frame) -- Find how we want to format the arguments to the template. local formatFunc if args._display == 'italics' or args._display == 'italic' then formatFunc = italicize el...")
- 00:57, 6 February 2021 Jeongwoo talk contribs deleted page Module:Person height (content was: "-- This module implements Template:Infobox person/height local p = {} local function clean(s) s = mw.ustring.gsub(s, 'metre', 'm') s = mw.ustring.gsub(s, '([^a])meter', '%1m') -- prevents "parameter" from being changed to "param" s = mw.ustring.gsub(s, 'centi', 'c') -- changes "centim" to "cm" s = mw.ustring.gsub(s, 'ms', 'm') s = mw.ustring.gsub(s, 'm[%.,]', 'm') s = mw.ustring.gsub(s, 'feet', 'ft') s = mw.ustring.gsub(s, 'foot', 'ft') s = mw.ustring.gsub(s, '...")
- 00:57, 6 February 2021 Jeongwoo 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('Module:No globals') 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...")
- 00:57, 6 February 2021 Jeongwoo 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...")
- 00:57, 6 February 2021 Jeongwoo talk contribs deleted page Module:Separated entries (content was: "-- This module takes positional parameters as input and concatenates them with -- an optional separator. The final separator (the "conjunction") can be -- specified independently, enabling natural-language lists like -- "foo, bar, baz and qux". The starting parameter can also be specified. local compressSparseArray = require('Module:TableTools').compressSparseArray local p = {} function p._main(args) local separator = args.separator -- Decode (convert to Unicode) HTML esca...")
- 00:57, 6 February 2021 Jeongwoo talk contribs deleted page Module:Side box (content was: "-- This module implements {{side box}}. local yesno = require('Module:Yesno') 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 data = p.makeData(args) return p.renderSidebox(data) end function p.makeData(args) local data = {} -- Main table classes data.classes = {}...")
- 00:57, 6 February 2021 Jeongwoo talk contribs deleted page Module:String (content was: "--[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. Global options ignore_errors: If set to 'true' or 1, any error conditio...")
- 00:54, 6 February 2021 Jeongwoo talk contribs protected MediaWiki:Common.js [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:54, 6 February 2021 Jeongwoo talk contribs protected Template:Infobox Student [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)