User contributions for 2601:18E:C67E:71E0:F176:BC6A:C0A7:4DE5
Results for 2601:18E:C67E:71E0:F176:BC6A:C0A7:4DE5 ވާހަކަ ބްލޮކް ލޮގް logs ބައިނަލްއަގުވާމީ ބުލޮކް ލޮގް abuse log
10 މެއި 2024
- 03:5903:59, 10 މެއި 2024 ފަރަގު ތާރީޚް +1,045 N މޮޑިއުލް:script utilities/data Created page with "local data = {} data.translit = { ["term"] = { --[=[ can't be done until Kana transliterations are correctly parsed by Module:links ["tag"] = "i", ]=] ["classes"] = "mention-tr", }, ["usex"] = { ["tag"] = "i", ["classes"] = "e-transliteration", }, ["head"] = { ["classes"] = "headword-tr", ["dir"] = "ltr", }, ["default"] = {}, } data.transcription = { ["head"] = { ["tag"] = "span", ["classes"] = "headword-ts", ["dir"] = "ltr", }, ["usex..." އެންމެފަހުގެ ބަދަލު
- 03:5803:58, 10 މެއި 2024 ފަރަގު ތާރީޚް +3,861 N މޮޑިއުލް:languages/doSubstitutions Created page with " local gsub = require("Module:string utilities").gsub local function doRemoveExceptions(text, sc, remove_exceptions) substitutes = {} or substitutes local i = 0 for _, exception in ipairs(remove_exceptions) do exception = sc:toFixedNFD(exception) text = gsub(text, exception, function(m) i = i + 1 table.insert(substitutes, m) return "\127" end) end return text end local function undoRemoveExceptions(text) local i = 0 return text:gsub("\127", functi..." އެންމެފަހުގެ ބަދަލު
- 03:5803:58, 10 މެއި 2024 ފަރަގު ތާރީޚް +882 N މޮޑިއުލް:languages/data/patterns Created page with "-- Capture patterns used by Module:languages to prevent formatting from being disrupted while text is being processed. -- Certain character sequences are substituted beforehand to make pattern matching more straightforward: -- "\1" = "" -- "\2" = "" return { "((</?link>))\0", -- Special link formatting added by Module:links "((<[^<>\1\2]+>))", -- HTML tag "((\1[Ff][Ii][Ll][Ee]:[^\1\2]+\2))\0", -- File "((\1[Ii][Mm][Aa][Gg][Ee]:[^\1\2]+\2))\0", -- Image "..." އެންމެފަހުގެ ބަދަލު
- 03:5603:56, 10 މެއި 2024 ފަރަގު ތާރީޚް +328 N މޮޑިއުލް:data/interwikis Created page with "local data = {} local gsub = string.gsub local next = next local ulower = require("Module:string utilities").lower for _, interwiki in next, mw.site.interwikiMap() do data[ulower((gsub(interwiki.prefix, "_", " ")))] = interwiki.isCurrentWiki and "current" or interwiki.isLocal and "local" or "external" end return data" އެންމެފަހުގެ ބަދަލު
- 03:5603:56, 10 މެއި 2024 ފަރަގު ތާރީޚް +359 N މޮޑިއުލް:data/namespaces Created page with "local data = {} local gsub = string.gsub local next = next local ulower = require("Module:string utilities").lower for _, namespace in next, mw.site.namespaces do local prefix = ulower((gsub(namespace.name, "_", " "))) data[prefix] = prefix for _, alias in next, namespace.aliases do data[ulower((gsub(alias, "_", " ")))] = prefix end end return data" އެންމެފަހުގެ ބަދަލު
- 03:5503:55, 10 މެއި 2024 ފަރަގު ތާރީޚް +16,942 N މޮޑިއުލް:script utilities Created page with "local m_string_utils = require("Module:string utilities") local require_when_needed = require("Module:utilities/require when needed") local concat = table.concat local find = m_string_utils.find local gsub = m_string_utils.gsub local insert = table.insert local process_params = require_when_needed("Module:parameters", "process") local toNFD = mw.ustring.toNFD local u = m_string_utils.char local export = {} --[=[ Modules used: Module:script utilities/data [[Modu..." އެންމެފަހުގެ ބަދަލު
- 03:5403:54, 10 މެއި 2024 ފަރަގު ތާރީޚް +847 N މޮޑިއުލް:string/encode entities Created page with "local m_str_utils = require("Module:string utilities") local codepoint = m_str_utils.codepoint local decode_entities = m_str_utils.decode_entities local find = string.find local format = string.format local gsub = string.gsub local match = string.match local pattern_escape = m_str_utils.pattern_escape local function encode_entity(ch) return "&#x" .. format("%X", codepoint(ch)) .. ";" end return function(text, charset, raw) if not raw then text = decode_entities(te..." އެންމެފަހުގެ ބަދަލު
- 03:5303:53, 10 މެއި 2024 ފަރަގު ތާރީޚް +47,492 N މޮޑިއުލް:links Created page with "local export = {} --[=[ Unsupported titles, pages with high memory usage, extraction modules and part-of-speech names are listed at Module:links/data. Other modules used: Module:script utilities Module:scripts Module:languages and its submodules Module:gender and number Module:debug/track ]=] local m_str_utils = require("Module:string utilities") local anchorEncode = mw.uri.anchorEncode local concat = table.concat local decode..." އެންމެފަހުގެ ބަދަލު
- 03:5203:52, 10 މެއި 2024 ފަރަގު ތާރީޚް +52,787 N މޮޑިއުލް:scripts/data Created page with "--[=[ When adding new scripts to this file, please don't forget to add style definitons for the script in MediaWiki:Common.css. ]=] local concat = table.concat local insert = table.insert local remove = table.remove local select = select local sort = table.sort local u = require("Module:string utilities").char ------------------------------------------------------------------------------------ -- -- Helper functions -- ---------------------------------------------..." އެންމެފަހުގެ ބަދަލު
- 03:5103:51, 10 މެއި 2024 ފަރަގު ތާރީޚް +15,046 N މޮޑިއުލް:scripts Created page with "local m_str_utils = require("Module:string utilities") local codepoint = m_str_utils.codepoint local gsplit = m_str_utils.gsplit local select = select local split = m_str_utils.split local toNFC = mw.ustring.toNFC local toNFD = mw.ustring.toNFD local toNFKC = mw.ustring.toNFKC local toNFKD = mw.ustring.toNFKD local type = type local u = m_str_utils.char local ugsub = m_str_utils.gsub local umatch = m_str_utils.match local export = {} local Script = {} --[==[Returns t..." އެންމެފަހުގެ ބަދަލު
- 03:5003:50, 10 މެއި 2024 ފަރަގު ތާރީޚް +1,019 N މޮޑިއުލް:string/char Created page with "local char = string.char local concat = table.concat local tonumber = tonumber local function err(cp) error("Codepoint " .. cp .. " is out of range: codepoints must be between 0x0 and 0x10FFFF.", 2) end local function utf8_char(cp) cp = tonumber(cp) if cp < 0 then err("-0x" .. ("%X"):format(-cp + 1)) elseif cp < 0x80 then return char(cp) elseif cp < 0x800 then return char( 0xC0 + cp / 0x40, 0x80 + cp % 0x40 ) elseif cp < 0x10000 then if cp >= 0xD8..." އެންމެފަހުގެ ބަދަލު
- 03:4903:49, 10 މެއި 2024 ފަރަގު ތާރީޚް +7,053 N މޮޑިއުލް:languages/data Created page with "local table = table local insert = table.insert local u = require("Module:string/char") local export = {} -- UTF-8 encoded strings for some commonly-used diacritics. local c = { grave = u(0x0300), acute = u(0x0301), circ = u(0x0302), tilde = u(0x0303), macron = u(0x0304), overline = u(0x0305), breve = u(0x0306), dotabove = u(0x0307), diaer = u(0x0308), ringabove = u(0x030A), dacute = u(0x030B), caron = u(0x030C), lineabove = u(0x030D)..." އެންމެފަހުގެ ބަދަލު
- 03:4803:48, 10 މެއި 2024 ފަރަގު ތާރީޚް +58,864 N މޮޑިއުލް:languages/data/2 Created page with "local m_lang = require("Module:languages") local m_langdata = require("Module:languages/data") local u = require("Module:string utilities").char local c = m_langdata.chars local p = m_langdata.puaChars local s = m_langdata.shared -- Ideally, we want to move these into Module:languages/data, but because (a) it's necessary to use require on that module, and (b) they're only used in this data module, it's less memory-efficient to do that at the moment. If it becomes..." އެންމެފަހުގެ ބަދަލު
- 03:4603:46, 10 މެއި 2024 ފަރަގު ތާރީޚް +78,324 N މޮޑިއުލް:languages Created page with "local require = require local m_str_utils = require("Module:string utilities") local m_table = require("Module:table") local mw = mw local string = string local table = table local ustring = mw.ustring local check_object = require("Module:utilities").check_object local concat = table.concat local decode_entities = m_str_utils.decode_entities local decode_uri = m_str_utils.decode_uri local gmatch = string.gmatch local gsub = string.gsub local insert = table.insert local..." އެންމެފަހުގެ ބަދަލު
- 03:4503:45, 10 މެއި 2024 ފަރަގު ތާރީޚް +1,969 N މޮޑިއުލް:wikimedia languages/data Created page with "local m = {} --[=[ This table maps *FROM* Wikimedia language codes (used in lang-specific Wikipedias and Wiktionaries) into English Wiktionary language codes. See also the following: * `interwiki_langs` in Module:translations/data, which maps in the other direction (from English Wiktionary codes to foreign Wiktionaries), specifically for {{t+}}; * the `wiktprefix` field of the `metadata` variable in MediaWiki:Gadget-TranslationAdder-Data.js, which also maps..." އެންމެފަހުގެ ބަދަލު
- 03:4403:44, 10 މެއި 2024 ފަރަގު ތާރީޚް +2,448 N މޮޑިއުލް:wikimedia languages Created page with "local export = {} local WikimediaLanguage = {} function WikimediaLanguage:getCode() return self._code end function WikimediaLanguage:getCanonicalName() return self._rawData.canonicalName end --function WikimediaLanguage:getAllNames() -- return self._rawData.names --end --[==[Given a list of types as strings, returns true if the Wikimedia language has all of them. Possible types are explained in Module:wikimedia languages/data.]==] function WikimediaLanguage:ha..." އެންމެފަހުގެ ބަދަލު
- 03:4303:43, 10 މެއި 2024 ފަރަގު ތާރީޚް +16,656 N މޮޑިއުލް:utilities Created page with "local mw = mw local mw_text = mw.text local package = package local table = table local require = require local concat = table.concat local decode_entities = require("Module:string utilities").decode_entities local get_current_frame = mw.getCurrentFrame local insert = table.insert local ipairs = ipairs local maxn = table.maxn local tonumber = tonumber local trim = mw_text.trim local type = type local unstrip = mw_text.unstrip local unstripNoWiki = mw_text.unstripNoWiki..." އެންމެފަހުގެ ބަދަލު
- 03:4203:42, 10 މެއި 2024 ފަރަގު ތާރީޚް +4,435 N މޮޑިއުލް:collation Created page with "local export = {} local require = require local byte = string.byte local concat = table.concat local get_plaintext = require("Module:utilities").get_plaintext local match = string.match local memoize = require("Module:fun").memoize local remove = table.remove local sort = table.sort local string_sort -- defined below as export.string_sort local trim = mw.text.trim local type = type -- Custom functions for generating a sortkey that will achieve the desired sort -- order..." އެންމެފަހުގެ ބަދަލު
- 03:4003:40, 10 މެއި 2024 ފަރަގު ތާރީޚް +29,787 N މޮޑިއުލް:table Created page with "--[[ ------------------------------------------------------------------------------------ -- table (formerly 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...." އެންމެފަހުގެ ބަދަލު
- 03:3903:39, 10 މެއި 2024 ފަރަގު ތާރީޚް +491 N މޮޑިއުލް:utilities/require when needed Created page with "local loaded = package.loaded local require = require local setmetatable = setmetatable return function(text, key) local module = loaded[text] if module then return key and module[key] or module end local mt = {} function mt:__index(k) module = module or key and require(text)[key] or require(text) return module[k] end function mt:__call(...) module = module or key and require(text)[key] or require(text) return module(...) end return setmetat..." އެންމެފަހުގެ ބަދަލު
- 03:3803:38, 10 މެއި 2024 ފަރަގު ތާރީޚް +10,621 N މޮޑިއުލް:fun Created page with "local export = {} local libraryUtil = require("libraryUtil") local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti local format = string.format local getmetatable = getmetatable local ipairs = ipairs local is_callable -- defined as export.is_callable below local pairs = pairs local select = select local tostring = tostring local type = type local unpack = unpack local iterableTypes = { "table", "string" } local function _check(func..." އެންމެފަހުގެ ބަދަލު
- 03:3703:37, 10 މެއި 2024 ފަރަގު ތާރީޚް +35,963 N މޮޑިއުލް:string utilities Created page with "local mw = mw local string = string local table = table local ustring = mw.ustring local byte = string.byte local char = string.char local concat = table.concat local find = string.find local format = string.format local gmatch = string.gmatch local gsub = string.gsub local len = string.len local load_data = mw.loadData local lower = string.lower local match = string.match local next = next local reverse = string.reverse local select = select local sort = table.sort loc..." އެންމެފަހުގެ ބަދަލު
- 03:3503:35, 10 މެއި 2024 ފަރަގު ތާރީޚް +17,164 N މޮޑިއުލް:parameters Created page with "local m_str_utils = require("Module:string utilities") local require_when_needed = require("Module:utilities/require when needed") local dump = mw.dumpObject local floor = math.floor local gsplit = mw.text.gsplit local gsub = string.gsub local huge = math.huge local insert = table.insert local list_to_set = require("Module:table").listToSet local list_to_text = mw.text.listToText local match = string.match local max = math.max local pairs = pairs local pattern_escape =..." އެންމެފަހުގެ ބަދަލު
- 03:3403:34, 10 މެއި 2024 ފަރަގު ތާރީޚް +6,310 N މޮޑިއުލް:interproject Created page with "local export = {} local m_params = require("Module:parameters") local function track(page) require("Module:debug/track")("interproject/" .. page) return true end local function process_links(linkdata, prefix, name, wmlang, sc) prefix = prefix .. ":" .. (wmlang:getCode() == "en" and "" or wmlang:getCode() .. ":") local links = {} local iplinks = {} local m_links = require("Module:links") local lang = wmlang:getWiktionaryLanguage() local ipalt = name .. " "..." އެންމެފަހުގެ ބަދަލު
- 03:3203:32, 10 މެއި 2024 ފަރަގު ތާރީޚް +78 N ފަންވަތް:wikipedia Created page with "{{#invoke:interproject|wikipedia_box}}<noinclude>{{documentation}}</noinclude>" އެންމެފަހުގެ ބަދަލު