Kontributet e përdoruesit për Kujdestari7

Jump to navigation Jump to search
Kërko tek kontributetZgjeroNgushto
⧼contribs-top⧽
⧼contribs-date⧽

(më të rinj | më të vjetër) Shikoni (50 më të reja | ) (20 | 50 | 100 | 250 | 500).

24 gusht 2025

17 gusht 2025

16 gusht 2025

10 gusht 2025

  • 11:5510 gusht 2025 11:55 ndrysh hist +1 v Moduli:IPANo edit summary Etiketa: Manual revert
  • 11:3010 gusht 2025 11:30 ndrysh hist 0 v DemolliNo edit summary
  • 11:2810 gusht 2025 11:28 ndrysh hist +8.059 R Moduli:parse interfaceKrijoi faqen me "local export = {} local string_utilities_module = "Module:string utilities" local parse_utilities_module = "Module:parse utilities" local table_module = "Module:table" --[=[ Loaders for functions in other modules, which overwrite themselves with the target function when called. This ensures modules are only loaded when needed, retains the speed/convenience of locally-declared pre-loaded functions, and has no overhead after the first call, since the target functions are c..." aktual
  • 11:2710 gusht 2025 11:27 ndrysh hist +81.246 R Moduli:parameter utilitiesKrijoi faqen me "local export = {} local debug_track_module = "Module:debug/track" local functions_module = "Module:fun" local parameters_module = "Module:parameters" local parse_interface_module = "Module:parse interface" local parse_utilities_module = "Module:parse utilities" local table_module = "Module:table" local dump = mw.dumpObject local error = error local insert = table.insert local ipairs = ipairs local next = next local pairs = pairs local require = require local tonumber = t..." aktual
  • 11:2610 gusht 2025 11:26 ndrysh hist +52 R Stampa:no deprecated lang param usageKrijoi faqen me "<onlyinclude>{{{1|}}}</onlyinclude>{{documentation}}" aktual
  • 09:3010 gusht 2025 09:30 ndrysh hist −9 v Stampa:IPA-sqNo edit summary aktual
  • 09:2710 gusht 2025 09:27 ndrysh hist +1.278 R Moduli:table/listToSetKrijoi faqen me "local fun_is_callable_module = "Module:fun/isCallable" local function is_callable(...) is_callable = require(fun_is_callable_module) return is_callable(...) end --[==[ Convert `list` (a table with a list of values) into a set (a table where those values are keys instead). This is a useful way to create a fast lookup table, since looking up a table key is much, much faster than iterating over the whole list to see if it contains a given value. By default, each item is..." aktual
  • 09:1310 gusht 2025 09:13 ndrysh hist +5.933 R Moduli:table/deepEqualsKrijoi faqen me "local getmetatable = getmetatable local next = next local pairs = pairs local type = type local function is_eq(a, b, seen, include_mt) -- If `a` and `b` have been compared before, return the memoized result. This will usually be true, since failures normally fail the whole check outright, but match failures are tolerated during the laborious check without this happening, since it compares key/value pairs until it finds a match, so it could be false. local memo_a = seen[..." aktual
  • 09:1310 gusht 2025 09:13 ndrysh hist +1.753 R Moduli:table/findKrijoi faqen me "local table_deep_equals_module = "Module:table/deepEquals" local deep_equals local function get_deep_equals() deep_equals, get_deep_equals = require(table_deep_equals_module), nil return deep_equals end local function equality_op(a, b) return a == b end --[==[ Given a list and a value to be found, returns the value's index if the value is in the array portion of the list, or {nil} if not found. `options` is an optional table of additional options to control the beha..." aktual
  • 09:1210 gusht 2025 09:12 ndrysh hist +2.961 R Moduli:table/insertIfNotKrijoi faqen me "local table_find_module = "Module:table/find" local insert = table.insert local type = type local function table_find(...) table_find = require(table_find_module) return table_find(...) end --[==[ Given a `list` and a `new_item` to be inserted, append the value to the end of the list if not already present (or insert at an arbitrary position, if `options.pos` is given; see below). Comparison is by value, using {deepEquals}. `options` is an optional table of additiona..." aktual
  • 09:1010 gusht 2025 09:10 ndrysh hist 0 v Moduli:yesnoKujdestari7 zhvendosi faqen Moduli:Yesno te Moduli:yesno pa lënë një ridrejtim aktual
  • 09:0910 gusht 2025 09:09 ndrysh hist +1.956 R Moduli:wikimedia languages/dataKrijoi faqen me "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 fr..." aktual
  • 09:0910 gusht 2025 09:09 ndrysh hist +5.599 R Moduli:wikimedia languagesKrijoi faqen me "local export = {} local languages_module = "Module:languages" local language_like_module = "Module:language-like" local load_module = "Module:load" local wm_languages_data_module = "Module:wikimedia languages/data" local get_by_code -- Defined below. local gmatch = string.gmatch local is_known_language_tag = mw.language.isKnownLanguageTag local make_object -- Defined below. local require = require local setmetatable = setmetatable local type = type --[==[ Loaders for fu..." aktual
  • 09:0810 gusht 2025 09:08 ndrysh hist +677 R Moduli:writing systems/dataKrijoi faqen me "local m = {} m["abjad"] = { "abjad", 185087, otherNames = {"consonantary", "consonantal alphabet"}, } m["abugida"] = { "abugida", 335806, otherNames = {"alphasyllabary"}, } m["alphabet"] = { "alphabet", 9779, category = "alphabetic writing system", } m["logography"] = { "logography", 3953107, otherNames = {"ideography"}, category = "logographic writing system", } m["pictography"] = { "pictography", 860735, category = "pictographic writing system", } m..." aktual
  • 09:0710 gusht 2025 09:07 ndrysh hist +390 R Moduli:string/charsetEscapeKrijoi faqen me "local gsub = string.gsub local chars local function get_chars() chars, get_chars = { ["\000"] = "%z", ["%"] = "%%", ["-"] = "%-", ["]"] = "%]", ["^"] = "%^", }, nil return chars end --[==[Escapes the magic characters used in pattern character sets: {%-]^}, and converts the null character to {%z}.]==] return function(str) return (gsub(str, "[%z%%%-%]^]", chars or get_chars())) end" aktual
  • 09:0710 gusht 2025 09:07 ndrysh hist +818 R Moduli:table/packKrijoi faqen me "--[==[ An implementation of the {table.pack} function found in Lua 5.2+, which returns a table containing a list of the arguments passed. The returned table also contains the key {n}, which is an integer giving the number of arguments passed. Note that the list in the returned table will contain gaps if any of the arguments passed were {nil}. This will also be reflected in the value of {n}, which always matches the number of arguments passed (e.g. {pack("foo")} returns th..." aktual
  • 09:0610 gusht 2025 09:06 ndrysh hist +1.953 R Moduli:string/charKrijoi faqen me "local math_module = "Module:math" local char = string.char local error = error local format = string.format local pcall = pcall local select = select local tonumber = tonumber local type = type local function to_hex(...) to_hex = require(math_module).to_hex return to_hex(...) end local function codepoint_err(cp, i) -- Throw error: to_hex can only return integers, so only show the bad value -- if it can be converted into something that looks like a codepoint. local..." aktual
  • 09:0510 gusht 2025 09:05 ndrysh hist +4.514 R Moduli:memoizeKrijoi faqen me "local math_module = "Module:math" local table_pack_module = "Module:table/pack" local require = require local select = select local unpack = unpack or table.unpack -- Lua 5.2 compatibility -- table.pack: in Lua 5.2+, this is a function that wraps the parameters given -- into a table with the additional key `n` that contains the total number of -- parameters given. This is not available on Lua 5.1, so Module:table/pack -- provides the same functionality. local functio..." aktual
  • 09:0410 gusht 2025 09:04 ndrysh hist +6.035 R Moduli:writing systemsKrijoi faqen me "local export = {} local en_utilities_module = "Module:en-utilities" local json_module = "Module:JSON" local language_like_module = "Module:language-like" local load_module = "Module:load" local table_module = "Module:table" local writing_systems_data_module = "Module:writing systems/data" local gmatch = string.gmatch local make_object -- Defined below. local require = require local setmetatable = setmetatable local type = type --[==[ Loaders for functions in other modul..." aktual
  • 09:0310 gusht 2025 09:03 ndrysh hist +58.032 R Moduli:scripts/dataKrijoi faqen me "--[=[ When adding new scripts to this file, please don't forget to add style definitons for the script in MediaWiki:Gadget-LanguagesAndScripts.css. ]=] local concat = table.concat local insert = table.insert local ipairs = ipairs local next = next local remove = table.remove local select = select local sort = table.sort -- Loaded on demand, as it may not be needed (depending on the data). local function u(...) u = require("Module:string utilities").char return u(...." aktual
  • 09:0210 gusht 2025 09:02 ndrysh hist +1.846 R Moduli:require when neededKrijoi faqen me "local getmetatable = getmetatable local ipairs = ipairs local loaded = package.loaded local pairs = pairs local require = require local select = select local setmetatable = setmetatable local tostring = tostring local unpack = unpack or table.unpack -- Lua 5.2 compatibility local function get_nested(obj, ...) local n = select("#", ...) if n == 0 then return obj end obj = obj[...] for i = 2, n do obj = obj[select(i, ...)] end return obj end local function get_o..." aktual
  • 09:0110 gusht 2025 09:01 ndrysh hist +7.027 R Moduli:scripts/charToScriptKrijoi faqen me "local subexport = {} local require_when_needed = require("Module:require when needed") local cp = require_when_needed("Module:string utilities", "codepoint") local floor = math.floor local get_plaintext = require_when_needed("Module:utilities", "get_plaintext") local get_script = require_when_needed("Module:scripts", "getByCode") local insert = table.insert local ipairs = ipairs local min = math.min local pairs = pairs local setmetatable = setmetatable local sort = table..." aktual
  • 09:0010 gusht 2025 09:00 ndrysh hist +8.766 R Moduli:ScribuntoKrijoi faqen me "local export = {} local math_module = "Module:math" local dump = mw.dumpObject local format = string.format local gsub = string.gsub local match = string.match local php_trim -- defined below local sub = string.sub local tonumber = tonumber local tostring = tostring local type = type do local php_htmlspecialchars_data local function get_php_htmlspecialchars_data() php_htmlspecialchars_data, get_php_htmlspecialchars_data = { ["\""] = """, ["&"] = "&",..." aktual
  • 08:5910 gusht 2025 08:59 ndrysh hist +2.146 R Moduli:string/glineKrijoi faqen me "local error = error local find = string.find local gmatch = string.gmatch local match = string.match local sub = string.sub --[==[ Iterates over the lines in a string, treating {"\n"}, {"\r"} and {"\r\n"} as new lines. The optional {skip} parameter determines whether certain lines are skipped: * {NONE}: none (default). * {EMPTY}: empty lines: lines with a length of 0, consisting of no characters. * {BLANK}: blank lines: empty lines and lines which only consist of whitesp..." aktual
  • 08:5910 gusht 2025 08:59 ndrysh hist +2.022 R Moduli:parameters/trackKrijoi faqen me "local debug_track_module = "Module:debug/track" local string_gline_module = "Module:string/gline" local match = string.match local new_title = mw.title.new local require = require local traceback = debug.traceback local function debug_track(...) debug_track = require(debug_track_module) return debug_track(...) end local function gline(...) gline = require(string_gline_module) return gline(...) end local params_title local function get_params_title() params_title,..." aktual
  • 08:5810 gusht 2025 08:58 ndrysh hist +5.244 R Moduli:parameters/finalizeSetKrijoi faqen me "local parameters_track_module = "Module:parameters/track" local dump = mw.dumpObject local error = error local format = string.format local pairs = pairs local tostring = tostring local type = type local function track(...) track = require(parameters_track_module) return track(...) end local type_err = 'expected set members to be of type "string" or "number", but saw %s' --[==[ -- Takes `t`, a list or key map which defines a set, and returns a key map for the set (wh..." aktual
  • 08:5810 gusht 2025 08:58 ndrysh hist +2.212 R Moduli:gender and number utilitiesKrijoi faqen me "local export = {} local parameter_utilities_module = "Module:parameter utilities" local parse_interface_module = "Module:parse interface" --[==[ Parse a gender and number spec, possibly with multiple comma-separated gender/number specs and potentially with inline modifiers. Used by Module:parameters. `data` is an object with the following fields: * `spec`: The unparsed gender/number spec. * `paramname`: The name of the parameter where the gender/number spec was retri..." aktual
  • 08:5710 gusht 2025 08:57 ndrysh hist +10.804 R Moduli:language-likeKrijoi faqen me "local export = {} local string_utilities_module = "Module:string utilities" local table_module = "Module:table" local wikibase = mw.wikibase local category_name_has_suffix -- defined as export.categoryNameHasSuffix below local get_entity = wikibase.getEntity local get_entity_id_for_title = wikibase.getEntityIdForTitle local gsub = string.gsub local ipairs = ipairs local match = string.match local select = select local sitelink = wikibase.sitelink local type = type local..." aktual
  • 08:5710 gusht 2025 08:57 ndrysh hist +7.278 R Moduli:JSONKrijoi faqen me "local export = {} local m_math = require("Module:math") local m_str_utils = require("Module:string utilities") local m_table = require("Module:table") local codepoint = m_str_utils.codepoint local concat = table.concat local converter -- forward declaration local find = string.find local format = string.format local gsub = string.gsub local insert = table.insert local ipairs = ipairs local is_array = m_table.isArray local is_finite_real_number = m_math.is_finite_real_num..." aktual
  • 08:5610 gusht 2025 08:56 ndrysh hist +68.206 R Moduli:families/dataKrijoi faqen me "--[=[ This module contains definitions for all language family codes on Wiktionary. ]=]-- local m = {} m["aav"] = { "Austroasiatic", 33199, aliases = {"Austro-Asiatic"}, } m["aav-khs"] = { "Khasian", 3073734, "aav", aliases = {"Khasic"}, } m["aav-nic"] = { "Nicobarese", 217380, "aav", } m["aav-pkl"] = { "Pnar-Khasi-Lyngngam", nil, "aav-khs", } m["afa"] = { "Afroasiatic", 25268, aliases = {"Afro-Asiatic"}, } m["alg"] = { "Algonquian", 33392, "aql"..." aktual
  • 08:5510 gusht 2025 08:55 ndrysh hist +29.320 R Moduli:families/canonical namesKrijoi faqen me "return { ["Abenaki-Penobscot"] = "alg-abp", ["Abkhaz-Abaza"] = "cau-abz", ["Adamawa"] = "alv-ada", ["Admiralty Islands"] = "poz-aay", ["Afroasiatic"] = "afa", ["Ainuic"] = "qfa-ain", ["Aizi"] = "kro-aiz", ["Alacalufan"] = "aqa", ["Albanian"] = "sqj", ["Algic"] = "aql", ["Algonquian"] = "alg", ["Almora"] = "sit-alm", ["Alumic"] = "nic-alu", ["Anatolian"] = "ine-ana", ["Andian"] = "cau-and", ["Angami-Pochuri"] = "tbq-anp", ["Anglic"] = "gmw-ang", ["Anglo-Fr..." aktual
  • 08:5410 gusht 2025 08:54 ndrysh hist +19.252 R Moduli:familiesKrijoi faqen me "local export = {} local families_by_name_module = "Module:families/canonical names" local families_data_module = "Module:families/data" local json_module = "Module:JSON" local language_like_module = "Module:language-like" local languages_module = "Module:languages" local load_module = "Module:load" local table_module = "Module:table" local get_by_code -- Defined below. local gmatch = string.gmatch local insert = table.insert local ipairs = ipairs local make_object -- Def..." aktual
  • 08:5310 gusht 2025 08:53 ndrysh hist +4.676 R Moduli:collationKrijoi faqen me "local export = {} local compare_module = "Module:compare" local functions_module = "Module:fun" local memoize_module = "Module:memoize" local string_utilities_module = "Module:string utilities" local utilities_module = "Module:utilities" local concat = table.concat local find = string.find local format = string.format local make_sort_function -- defined below local match = string.match local remove = table.remove local require = require local sort = table.sort local sub..." aktual
  • 08:5310 gusht 2025 08:53 ndrysh hist +75.518 R Moduli:parametersKrijoi faqen me "--[==[TODO: * Change certain flag names, as some are misnomers: * Change `allow_holes` to `keep_holes`, because it's not the inverse of `disallow_holes`. * Change `allow_empty` to `keep_empty`, as it causes them to be kept as "" instead of deleted. * Sort out all the internal error calls. Manual error(format()) calls are used when certain parameters shouldn't be dumped, so find a way to avoid that. ]==] local export = {} local collation_module = "Module:collation" loca..." aktual
  • 08:5210 gusht 2025 08:52 ndrysh hist +1.527 R Moduli:fun/isCallableKrijoi faqen me "local debug_track_module = "Module:debug/track" local table_get_metamethod_module = "Module:table/getMetamethod" local require = require local type = type local function debug_track(...) debug_track = require(debug_track_module) return debug_track(...) end local function get_metamethod(...) get_metamethod = require(table_get_metamethod_module) return get_metamethod(...) end --[==[ Return {true} if the input is a function or functor (an object which can be called li..." aktual
  • 08:5110 gusht 2025 08:51 ndrysh hist +55.218 R Moduli:parse utilitiesKrijoi faqen me "local export = {} local fun_is_callable_module = "Module:fun/isCallable" local languages_module = "Module:languages" local parameters_module = "Module:parameters" local string_char_module = "Module:string/char" local string_utilities_module = "Module:string utilities" local table_insert_if_not_module = "Module:table/insertIfNot" local assert = assert local concat = table.concat local dump = mw.dumpObject local error = error local insert = table.insert local ipairs = ipai..." aktual
  • 08:4710 gusht 2025 08:47 ndrysh hist +8.329 R Moduli:mathKrijoi faqen me "local export = {} local byte = string.byte local ceil = math.ceil local floor = math.floor local format = string.format local is_integer -- defined below local match = string.match local select = select local tonumber = tonumber local tonumber_ext -- defined below local tostring = tostring local type = type local INF = math.huge local function sign(x, signed_0) if x > 0 then return 1 elseif x < 0 then return -1 elseif x == 0 then -- 1/(+0) is infinity and 1/(-0..." aktual

(më të rinj | më të vjetër) Shikoni (50 më të reja | ) (20 | 50 | 100 | 250 | 500).