Pangunahing pampublikong log
Sama-samang pagpapakita sa lahat ng mga log ng Wiktionary. Pwede mong pauntiin ang ipinapakita sa pagpili sa uri ng log, ang tagagamit (sensitibo sa case), o sa apektadong pahina (sensitibo rin sa case).
- 14:13, 31 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:tl-sortkey (Nilikha ang pahina na may 'local export = {} local u = mw.ustring.char local a, b = u(0xF000), u(0xF001) local oneChar = { ["ë"] = "e" .. a, ["ñ"] = "n" .. a } local twoChars = { ["ng"] = "n" .. b, ["ng̃"] = "n" .. b, ["ñg"] = "n" .. b } function export.makeSortKey(text, lang, sc) text = mw.ustring.gsub(text, "([!-&])([^%s]+)", "%2%1") for from, to in pairs(twoChars) do text = text:gsub(from, to) end return mw.ustring.upper(mw.ustring.gsub(mw.ustring.toNFC(text), ".",...')
- 05:34, 31 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:languages/iterateAll (Nilikha ang pahina na may 'return function () mw.incrementExpensiveFunctionCount() local m_languages = require("Module:languages") local m_data = mw.loadData("Module:languages/data/all") local func, t, var = pairs(m_data) return function() local code, data = func(t, var) return m_languages.makeObject(code, data) end end')
- 05:14, 31 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:headword utilities (Nilikha ang pahina na may 'local export = {} local table_module = "Module:table" local string_utilities_module = "Module:string utilities" local parse_utilities_module = "Module:parse utilities" local rfind = mw.ustring.find local rmatch = mw.ustring.match local rsplit = mw.text.split local rsubn = mw.ustring.gsub local dump = mw.dumpObject -- version of rsubn() that discards all but the first return value local function rsub(term, foo, bar) local retval = rsubn(term, foo, bar) return...')
- 03:14, 31 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:template parser/templates (Nilikha ang pahina na may '-- Prevent substitution. if mw.isSubsting() then return require("Module:unsubst") end local export = {} local m_template_parser = require("Module:template parser") local display_parameter = m_template_parser.displayParameter local process_params = require("Module:parameters").process local template_link = m_template_parser.templateLink local wikitag_link = m_template_parser.wikitagLink local function get_offset_template_args(frame) -- Process parameters wit...')
- 03:10, 31 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:references (Nilikha ang pahina na may 'local export = {} local rsplit = mw.text.split --[==[ Parse a references spec as used in the {{para|ref}} param to {{tl|IPA}}, {{tl|IPAchar}}, {{tl|homophones}}, {{tl|rhymes}}, etc. and soon the {{para|f<var>N</var>ref}} param to {{tl|head}}. `parse_err` is a function of one argument to throw an error with the specified argument as the error message; defaults to `error`. Multiple references are separated by `!!!` (optionally with spaces around it), and the equ...')
- 17:30, 30 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:pron qualifier (Nilikha ang pahina na may 'local export = {} local labels_module = "Module:labels" local qualifier_module = "Module:qualifier" local references_module = "Module:references" local function track(page) require("Module:debug/track")("pron qualifier/" .. page) return true end --[==[ This function is used by any module that wants to add support for (some subset of) left and right regular and accent qualifiers, labels and references to a template that specifies a pronunciation or related pr...')
- 17:19, 30 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:en-utilities (Nilikha ang pahina na may 'local export = {} local add_suffix -- Defined below. local find = string.find local match = string.match local reverse = string.reverse local sub = string.sub local toNFD = mw.ustring.toNFD local ugsub = mw.ustring.gsub local ulower = mw.ustring.lower local umatch = mw.ustring.match local usub = mw.ustring.sub local vowels = "aæᴀᴁɐɑɒ@eᴇǝⱻəɛɘɜɞɤiıɪɨᵻoøœᴏɶɔᴐɵuᴜʉᵾɯꟺʊʋʌyʏ" local hyphens = "%-‐‑‒–—" --[==[ Load...')
- 17:17, 30 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:data/metamethods (Nilikha ang pahina na may 'return { __add = true, __call = true, __concat = true, __div = true, __eq = true, __gc = true, __index = true, __ipairs = true, __le = true, __len = true, __lt = true, __metatable = true, __mod = true, __mode = true, __mul = true, __newindex = true, __pairs = true, __pow = true, __sub = true, __tostring = true, __unm = true, }')
- 17:10, 30 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:math (Nilikha ang pahina na may 'local export = {} local format = string.format local is_integer -- defined as export.is_integer below local log = math.log local log10 = math.log10 local select = select local tonumber = tonumber local tostring = tostring local type = type --[==[ Returns true if the given value is a finite real number, or false if not.]==] function export.is_finite_real_number(n) return n and type(n) == "number" and n - n == 0 -- INF, -INF and NAN fail here. end --[==[ Return...')
- 16:54, 30 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:scripts/style.css (Nilikha ang pahina na may 'Default style for headwords.: strong.headword { } Default style for mentions outside of "form of" definitions. See Wiktionary:Votes/2007-10/style for mentioned terms: .mention { font-style: italic; } "Empty" script, used for languages with no script set. This is the same as Latn in practice, but allows tagging and formatting of such cases.: .None, .Imag, .Morse, .Semap, .Zyyy { } /* Latin This is the default script, so it has no defini...')
- 14:33, 30 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:memoize (Nilikha ang pahina na may 'local format = string.format local select = select local unpack = unpack ----- M E M O I Z A T I O N----- -- Memoizes a function or callable table. -- Supports any number of arguments and return values. -- If the optional parameter `simple` is set, then the memoizer will use a faster implementation, but this is only compatible with one argument and one return value. If `simple` is set, additional arguments will be accepted, but this should only be done if those...')
- 14:28, 30 Disyembre 2024 Ultron90 usapan Mga gawa created page Module:load (Nilikha ang pahina na may 'local export = {} local load_data = mw.loadData local loaded = package.loaded local main_loader = package.loaders[2] local require = require local setmetatable = setmetatable local loaders, loaded_data, mt local function get_mt() mt, get_mt = {__mode = "kv"}, nil return mt end -- main_loader returns a loader function if the module exists, or nil if it doesn't. local function get_loader(modname) if loaders == nil then local loader = main_loader(modname)...')
- 04:51, 28 Disyembre 2024 Automatikong ginawa ang account ni Ultron90 usapan Mga gawa