Wikipédi bewwiki https://bew.wikipedia.org/wiki/Bal%C3%A9-bal%C3%A9 MediaWiki 1.47.0-wmf.7 first-letter Wasilah Istimèwa Kongko Pemaké Kongko pemaké Wikipédi Kongko Wikipédi Gepokan Kongko gepokan MediaWiki Kongko MediaWiki Sablonan Kongko sablonan Pertulungan Kongko pertulungan Bangsaan Kongko bangsaan TimedText TimedText talk Modul Pembicaraan Modul Pegelaran Kongko Pegelaran Mikrosop 0 2281 34916 34298 2026-06-23T12:06:54Z Mirlim 595 34916 wikitext text/x-wiki [[Gepokan:Microsoft logo (2012).svg|jmpl|Lambang Mikrosop]] [[Gepokan:Building92microsoft.jpg|jmpl|Gedong 92 di Mikrosop punya hopkantor, nama ''[[Microsoft campus|Microsoft Redmond campus]]'']] '''Microsoft Corporation''' atawa dibetawiin jadi '''Mikrosop''' (hurup Arab Gundul: {{Script|Arabic|ميکروسوف}}) entu atu matskepé nyang ngeja [[peranti alus]] èn [[Gim delengan|gim delengan]] [[Kumputer|kumpiuter]]. Ni matskepé dikeja awalnya ama [[Bill Gates]] ama [[Paul Allen]] dalem tahon 1975. Mikrosop ngeja [[Microsoft Windows]], [[Microsoft Office]] (masup juga' [[Microsoft Word]]), [[Microsoft Edge|Edge]], [[MSN]], [[Xbox]], èns. Kebanyakan program Mikrosop punya bikin kaga' kena dicomot perdèo, mangkanya orang pada kudu mbeli tu peranti alus pada di toko atawa liwat dalem-jala. Ada berapa produk (kaya' [[sistim operasi]] [[Microsoft Windows|Windows]]) udah otomatis kepasang bawaannya pas orang beli kumpiuter anyar. == Ruju'an == [[Category:Tèhnolohi]] [[Category:Kumpiuter]] c9d9bqcqpsyqbibgtlwnceebg3wqdad Modul:Params 828 4424 34919 34890 2026-06-23T20:08:06Z Grufo 3706 Upstream updates 34919 Scribunto text/plain require[[strict]] --- --- --- LOCAL ENVIRONMENT --- --- ________________________________ --- --- --- --[[ Abstract utilities ]]-- ---------------------------- -- Helper function for `string.gsub()` (for managing zero-padded numbers) local function zero_padded (str) return ('%03d%s'):format(#str, str) end -- Helper function for `table.sort()` (for natural sorting) local function natural_sort (var1, var2) return var1:gsub('%d+', zero_padded) < var2:gsub('%d+', zero_padded) end -- Parse a parameter name string and return it as a string or a number local function get_parameter_name (par_str) local ret = par_str:match'^%s*(.-)%s*$' if ret ~= '0' and ret:find'^%-?[1-9]%d*$' == nil then return ret end return tonumber(ret) end -- Return a copy or a reference to a table local function copy_or_ref_table (src, refonly) if refonly then return src end local newtab = {} for key, val in pairs(src) do newtab[key] = val end return newtab end -- Remove some numeric elements from a table, shifting everything to the left local function remove_numeric_keys (tbl, idx, len) local cache, tmp = {}, idx + len - 1 for key, val in pairs(tbl) do if type(key) == 'number' and key >= idx then if key > tmp then cache[key - len] = val end tbl[key] = nil end end for key, val in pairs(cache) do tbl[key] = val end end -- Make a reduced copy of a table (shifting in both directions if necessary) local function copy_table_reduced (tbl, idx, len) local ret, tmp = {}, idx + len - 1 if idx > 0 then for key, val in pairs(tbl) do if type(key) ~= 'number' or key < idx then ret[key] = val elseif key > tmp then ret[key - len] = val end end elseif tmp > 0 then local nshift = 1 - idx for key, val in pairs(tbl) do if type(key) ~= 'number' then ret[key] = val elseif key > tmp then ret[key - tmp] = val elseif key < idx then ret[key + nshift] = val end end else for key, val in pairs(tbl) do if type(key) ~= 'number' or key > tmp then ret[key] = val elseif key < idx then ret[key + len] = val end end end return ret end -- Make an expanded copy of a table (shifting in both directions if necessary) local function copy_table_expanded (tbl, idx, len) local ret, tmp = {}, idx + len - 1 if idx > 0 then for key, val in pairs(tbl) do if type(key) ~= 'number' or key < idx then ret[key] = val else ret[key + len] = val end end elseif tmp > 0 then local nshift = idx - 1 for key, val in pairs(tbl) do if type(key) ~= 'number' then ret[key] = val elseif key > 0 then ret[key + tmp] = val elseif key < 1 then ret[key + nshift] = val end end else for key, val in pairs(tbl) do if type(key) ~= 'number' or key > tmp then ret[key] = val else ret[key - len] = val end end end return ret end -- Move a key from a table to another, but only if under a different name and -- always parsing numeric strings as numbers local function steal_if_renamed (val, src, skey, dest, dkey) local realkey = get_parameter_name(dkey) if skey ~= realkey then dest[realkey] = val src[skey] = nil end end -- Given a table, create two new tables containing the sorted list of keys local function get_key_list_sorted (tbl, sort_fn) local nums, words, nn, nw = {}, {}, 0, 0 for key, val in pairs(tbl) do if type(key) == 'number' then nn = nn + 1 nums[nn] = key else nw = nw + 1 words[nw] = key end end table.sort(nums) table.sort(words, sort_fn) return nums, words, nn, nw end --[[ Public strings ]]-- ------------------------ -- Special match keywords (functions and modifiers MUST avoid these names) local mkeywords = { ['or'] = 0, pattern = 1, plain = 2, strict = 3 } -- Sort functions (functions and modifiers MUST avoid these names) local sortfunctions = { alphabetically = false, naturally = natural_sort } -- Callback styles for the `mapping_*` and `renaming_*` class of modifiers -- (functions and modifiers MUST avoid these names) --[[ Meanings of the columns: col[1] = Loop type (0-3) col[2] = Number of module arguments that the style requires (1-3) col[3] = Minimum number of sequential parameters passed to the callback col[4] = Name of the callback parameter where to place each parameter name col[5] = Name of the callback parameter where to place each parameter value col[6] = Argument in the modifier's invocation that will override `col[4]` col[7] = Argument in the modifier's invocation that will override `col[5]` A value of `-1` indicates that no meaningful value is stored (i.e. `nil`) ]]-- local mapping_styles = { names_and_values = { 3, 2, 2, 1, 2, -1, -1 }, values_and_names = { 3, 2, 2, 2, 1, -1, -1 }, values_only = { 1, 2, 1, -1, 1, -1, -1 }, names_only = { 2, 2, 1, 1, -1, -1, -1 }, names_and_values_as = { 3, 4, 0, -1, -1, 2, 3 }, names_only_as = { 2, 3, 0, -1, -1, 2, -1 }, values_only_as = { 1, 3, 0, -1, -1, -1, 2 }, blindly = { 0, 2, 0, -1, -1, -1, -1 } } -- Memory slots (functions and modifiers MUST avoid these names) local memoryslots = { h = 'header', f = 'footer', i = 'itersep', l = 'lastsep', n = 'ifngiven', p = 'pairsep', s = 'oxfordsep' } -- Possible trimming modes for the `parsing` modifier local trim_parse_opts = { trim_none = { false, false }, trim_positional = { false, true }, trim_named = { true, false }, trim_all = { true, true } } -- Possible string modes for the iteration separator in the `parsing` and -- `reinterpreting` modifiers local isep_parse_opts = { splitter_pattern = false, splitter_string = true } -- Possible string modes for the key-value separator in the `parsing` and -- `reinterpreting` modifiers local psep_parse_opts = { setter_pattern = false, setter_string = true } -- Possible position references for the `splicing` modifier local position_references = { add_nothing = 0, add_smallest_number = 1, add_last_of_sequence = 2, add_largest_number = 3 } -- Functions and modifiers MUST avoid these names too: `let` --[[ Module's private environment ]]-- -------------------------------------- -- Hard-coded name of the module (to avoid going through `frame:getTitle()`) local modulename = 'Module:Params' -- The functions listed here declare that they don't need the `frame.args` -- metatable to be copied into a regular table; if they are modifiers they also -- guarantee that they will make their own (modified) copy available local refpipe = { call_for_each_group = true, --coins = true, count = true, evaluating = true, for_each = true, list = true, list_values = true, list_maybe_with_names = true, value_of = true } -- The functions listed here declare that they don't need the -- `frame:getParent().args` metatable to be copied into a regular table; if -- they are modifiers they also guarantee that they will make their own -- (modified) copy available local refparams = { call_for_each_group = true, combining = true, combining_by_calling = true, combining_values = true, concat_and_call = true, concat_and_invoke = true, concat_and_magic = true, count = true, grouping_by_calling = true, mixing_names_and_values = true, renaming_by_mixing = true, renaming_to_sequence = true, renaming_to_uppercase = true, renaming_to_lowercase = true, --renaming_to_values = true, shifting = true, splicing = true, --swapping_names_and_values = true, value_of = true, with_name_matching = true } -- Maximum number of numeric parameters that can be filled, if missing (we -- chose an arbitrary number for this constant; you can discuss about its -- optimal value at Module talk:Params) local maxfill = 1024 -- The private table of functions local library = {} -- Functions and modifiers that can only be invoked in first position local static_iface = {} -- Create a new context local function context_new (child_frame) local ctx = {} ctx.frame = child_frame:getParent() ctx.opipe = child_frame.args ctx.oparams = ctx.frame.args ctx.firstposonly = static_iface ctx.iterfunc = pairs ctx.sorttype = 0 ctx.n_parents = 0 ctx.n_children = 0 ctx.n_available = maxfill return ctx end -- Move to the next action within the user-given list local function context_iterate (ctx, n_forward) local nextfn if ctx.pipe[n_forward] ~= nil then nextfn = ctx.pipe[n_forward]:match'^%s*(.*%S)' end if nextfn == nil then error(modulename .. ': You must specify a function to call', 0) end if library[nextfn] == nil then if ctx.firstposonly[nextfn] == nil then error(modulename .. ': The function ‘' .. nextfn .. '’ does not exist', 0) else error(modulename .. ': The ‘' .. nextfn .. '’ directive can only appear in first position', 0) end end remove_numeric_keys(ctx.pipe, 1, n_forward) return library[nextfn] end -- Main loop local function main_loop (ctx, start_with) local fn = start_with repeat fn = fn(ctx) until not fn if ctx.n_parents > 0 then error(modulename .. ': One or more ‘merging_substack’ directives are missing', 0) end if ctx.n_children > 0 then error(modulename .. ', For some of the snapshots either the ‘flushing’ directive is missing or a group has not been properly closed with ‘merging_substack’', 0) end end -- Load a `setting`-like directive string into the `dest` table local function set_strings (dest, opts, start_from) local cmd if opts[start_from] == nil then return start_from - 1 end cmd = opts[start_from]:gsub('%s+', ''):gsub('/+', '/') :match'^/*(.*[^/])' if cmd == nil then return start_from end local amap, sep, argc = {}, string.byte('/'), start_from + 1 local vname local chr for idx = 1, #cmd do chr = cmd:byte(idx) if chr == sep then for key, val in ipairs(amap) do dest[val] = opts[argc] amap[key] = nil end argc = argc + 1 else vname = memoryslots[string.char(chr)] if vname == nil then error(modulename .. ', ‘setting’: Unknown slot ‘' .. string.char(chr) .. '’', 0) end table.insert(amap, vname) end end for key, val in ipairs(amap) do dest[val] = opts[argc] end return argc end -- Add a new stack of parameters to `ctx.children` local function push_cloned_stack (ctx, tbl) local newparams = {} local currsnap = ctx.n_children + 1 if ctx.children == nil then ctx.children = { newparams } else ctx.children[currsnap] = newparams end for key, val in pairs(tbl) do newparams[key] = val end ctx.n_children = currsnap end -- Parse a raw argument containing a `sortfunctions` directive, or -- `'without_sorting'`, or `nil` local function load_sort_opt (raw_arg) if raw_arg == nil then return nil, 1, false end local tmp = raw_arg:match'^%s*(.-)%s*$' if tmp == 'without_sorting' then return nil, 2, false end tmp = sortfunctions[tmp] if tmp == nil then return nil, 1, false end return tmp or nil, 2, true end -- Parse optional user arguments of type `...|[let]|[...][number of additional -- parameters]|[parameter 1]|[parameter 2]|[...]` local function load_child_opts (src, start_from, append_after) local tbl, pin = {}, start_from local names if src[pin] ~= nil and src[pin]:match'^%s*let%s*$' and src[pin + 1] ~= nil and src[pin + 2] ~= nil then names = {} repeat names[get_parameter_name(src[pin + 1])] = src[pin + 2] pin = pin + 3 until src[pin] == nil or not src[pin]:match'^%s*let%s*$' or src[pin + 1] == nil or src[pin + 2] == nil end local tmp = tonumber(src[pin]) if tmp ~= nil and math.floor(tmp) == tmp then if tmp < 0 then tmp = -1 end local shf = append_after - pin for idx = pin + 1, pin + tmp do tbl[idx + shf] = src[idx] end pin = pin + tmp + 1 end if names ~= nil then for key, val in pairs(names) do tbl[key] = val end end return tbl, pin end -- Load the optional arguments of some of the `mapping_*` and `renaming_*` -- class of modifiers local function load_callback_opts (src, n_skip, default_style) local style local shf local tmp = src[n_skip + 1] if tmp ~= nil then style = mapping_styles[tmp:match'^%s*(.-)%s*$'] end if style == nil then style, shf = default_style, n_skip - 1 else shf = n_skip end local n_exist, karg, varg = style[3], style[4], style[5] tmp = style[6] if tmp > -1 then karg = src[tmp + shf]:match'^%s*(.-)%s*$' if karg == '0' or karg:find'^%-?[1-9]%d*$' ~= nil then karg = tonumber(karg) n_exist = math.max(n_exist, karg) end end tmp = style[7] if tmp > -1 then varg = src[tmp + shf]:match'^%s*(.-)%s*$' if varg == '0' or varg:find'^%-?[1-9]%d*$' ~= nil then varg = tonumber(varg) n_exist = math.max(n_exist, varg) end end local dest, nargs = load_child_opts(src, style[2] + shf, n_exist) tmp = style[1] if (tmp == 3 or tmp == 2) and dest[karg] ~= nil then tmp = tmp - 2 end if (tmp == 3 or tmp == 1) and dest[varg] ~= nil then tmp = tmp - 1 end return dest, nargs, tmp, karg, varg end -- Parse the arguments of some of the `mapping_*` and `renaming_*` class of -- modifiers local function load_replace_args (opts, whoami) if opts[1] == nil then error(modulename .. ', ‘' .. whoami .. '’: No pattern string was given', 0) end if opts[2] == nil then error(modulename .. ', ‘' .. whoami .. '’: No replacement string was given', 0) end local ptn, repl, nmax, argc = opts[1], opts[2], tonumber(opts[3]), 3 if nmax ~= nil or (opts[3] or ''):match'^%s*$' ~= nil then argc = 4 end local flg = opts[argc] if flg ~= nil then flg = mkeywords[flg:match'^%s*(.-)%s*$'] end if flg == 0 then flg = nil elseif flg ~= nil then argc = argc + 1 end return ptn, repl, nmax, flg, argc, (nmax ~= nil and nmax < 1) or (flg == 3 and ptn == repl) end -- Parse the arguments of the `with_*_matching` class of modifiers local function load_pattern_args (opts, whoami) local ptns, state, nptns, cnt = {}, 0, 0, 1 local keyw for _, val in ipairs(opts) do if state == 0 then nptns, state = nptns + 1, -1 ptns[nptns] = { val, false, false } else keyw = val:match'^%s*(.*%S)' if keyw == nil or mkeywords[keyw] == nil or ( state > 0 and mkeywords[keyw] > 0 ) then break else state = mkeywords[keyw] if state > 1 then ptns[nptns][2] = true end if state == 3 then ptns[nptns][3] = true end end end cnt = cnt + 1 end if state == 0 then error(modulename .. ', ‘' .. whoami .. '’: No pattern was given', 0) end return ptns, nptns, cnt end -- Load the optional arguments of the `parsing` and `reinterpreting` modifiers local function load_parse_opts (opts, start_from, isp, psp) local tmp local optslots, noptslots, argc = { true, true, true }, 3, start_from local trimn, trimu, iplain, pplain = true, false, true, true repeat noptslots, tmp = noptslots - 1, opts[argc] if tmp == nil then break end tmp = tmp:match'^%s*(.-)%s*$' if optslots[1] ~= nil and trim_parse_opts[tmp] ~= nil then tmp = trim_parse_opts[tmp] trimn, trimu = tmp[1], tmp[2] optslots[1] = nil elseif optslots[2] ~= nil and isep_parse_opts[tmp] ~= nil then argc = argc + 1 iplain, isp = isep_parse_opts[tmp], opts[argc] optslots[2] = nil elseif optslots[3] ~= nil and psep_parse_opts[tmp] ~= nil then argc = argc + 1 pplain, psp = psep_parse_opts[tmp], opts[argc] optslots[3] = nil else break end argc = argc + 1 until noptslots < 1 return isp, iplain, psp, pplain, trimn, trimu, argc end -- Map parameters' values using a custom callback and a referenced table local value_maps = { [0] = function (tbl, margs, karg, varg, fn) for key in pairs(tbl) do tbl[key] = fn() end end, [1] = function (tbl, margs, karg, varg, fn) for key, val in pairs(tbl) do margs[varg] = val tbl[key] = fn() end end, [2] = function (tbl, margs, karg, varg, fn) for key in pairs(tbl) do margs[karg] = key tbl[key] = fn() end end, [3] = function (tbl, margs, karg, varg, fn) for key, val in pairs(tbl) do margs[karg] = key margs[varg] = val tbl[key] = fn() end end } -- Private table for `map_names()` local name_thieves = { [0] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do steal_if_renamed(val, tbl, key, cache, fn()) end end, [1] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do rargs[varg] = val steal_if_renamed(val, tbl, key, cache, fn()) end end, [2] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do rargs[karg] = key steal_if_renamed(val, tbl, key, cache, fn()) end end, [3] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do rargs[karg] = key rargs[varg] = val steal_if_renamed(val, tbl, key, cache, fn()) end end } -- Map parameters' names using a custom callback and a referenced table local function map_names (tbl, rargs, karg, varg, looptype, fn) local cache = {} name_thieves[looptype](cache, tbl, rargs, karg, varg, fn) for key, val in pairs(cache) do tbl[key] = val end end -- Return a new table that contains `src` regrouped according to the numeric -- suffixes in its keys local function make_groups (src) -- NOTE: `src` might be the original metatable! local prefix local gid local groups = {} for key, val in pairs(src) do -- `key` must only be a string or a number... if type(key) == 'string' then prefix, gid = key:match'^%s*(.-)%s*(%-?%d*)%s*$' gid = tonumber(gid) or '' else prefix = '' gid = key end if groups[gid] == nil then groups[gid] = {} end if prefix == '0' or prefix:find'^%-?[1-9]%d*$' ~= nil then prefix = tonumber(prefix) if prefix < 1 then prefix = prefix - 1 end end groups[gid][prefix] = val end return groups end -- Split into parts a string containing the `$#` and `$@` placeholders and -- return the information as a skeleton table, a canvas table and a length local function parse_placeholder_string (target) local skel = {} local canvas = {} local idx = 1 local s_pos = 1 local e_pos = string.find(target, '%$[@#]', 1, false) while e_pos ~= nil do canvas[idx] = target:sub(s_pos, e_pos - 1) skel[idx + 1] = target:sub(e_pos, e_pos + 1) == '$@' idx = idx + 2 s_pos = e_pos + 2 e_pos = string.find(target, '%$[@#]', s_pos, false) end if (s_pos > target:len()) then idx = idx - 1 else canvas[idx] = target:sub(s_pos) end return skel, canvas, idx end -- Populate a table by parsing a parameter string local function parse_parameter_string (tbl, str, isp, ipl, psp, ppl, trn, tru) local key local val local spos1 local spos2 local pos1 local pos2 local pos3 = 0 local idx = 1 local lenplone = #str + 1 if isp == nil or isp == '' then if psp == nil or psp == '' then if tru then tbl[idx] = str:match'^%s*(.-)%s*$' else tbl[idx] = str end return idx end spos1, spos2 = str:find(psp, 1, ppl) if spos1 == nil then key = idx if tru then val = str:match'^%s*(.-)%s*$' else val = str end idx = idx + 1 else key = get_parameter_name(str:sub(1, spos1 - 1)) val = str:sub(spos2 + 1) if trn then val = val:match'^%s*(.-)%s*$' end end tbl[key] = val return idx end if psp == nil or psp == '' then repeat pos1 = pos3 + 1 pos2, pos3 = str:find(isp, pos1, ipl) val = str:sub(pos1, (pos2 or lenplone) - 1) if tru then val = val:match'^%s*(.-)%s*$' end tbl[idx] = val idx = idx + 1 until pos2 == nil return idx end repeat pos1 = pos3 + 1 pos2, pos3 = str:find(isp, pos1, ipl) val = str:sub(pos1, (pos2 or lenplone) - 1) spos1, spos2 = val:find(psp, 1, ppl) if spos1 == nil then key = idx if tru then val = val:match'^%s*(.-)%s*$' end idx = idx + 1 else key = get_parameter_name(val:sub(1, spos1 - 1)) val = val:sub(spos2 + 1) if trn then val = val:match'^%s*(.-)%s*$' end end tbl[key] = val until pos2 == nil return idx end -- Heavy lifting for `combining` and `combining_values` local function combine_parameters (ctx, keyval_fn, whoami) -- NOTE: `ctx.params` might be the original metatable! This function -- MUST create a copy of it before returning local opts = ctx.pipe if ctx.pipe[1] == nil then error(modulename .. ', ‘' .. whoami .. '’: No parameter name was provided', 0) end local tbl = ctx.params local vars = {} local sortfn, tmp, do_sort = load_sort_opt(opts[2]) local argc = set_strings(vars, opts, tmp + 1) if argc < tmp then error(modulename .. ', ‘' .. whoami .. '’: No setting directive was given', 0) end if next(tbl) == nil then if vars.ifngiven ~= nil then ctx.params = { [get_parameter_name(ctx.pipe[1])] = vars.ifngiven } elseif tbl == ctx.oparams then ctx.params = {} end return argc end local cache local len if do_sort then local words cache, words, len, tmp = get_key_list_sorted(tbl, sortfn) for idx = 1, tmp do cache[len + idx] = words[idx] end len = len + tmp else cache = {} len = 0 for key in pairs(tbl) do len = len + 1 cache[len] = key end end local pmap, nss, kvs, pps = {}, 0, vars.pairsep or '', vars.itersep or '' for idx = 1, len do tmp = cache[idx] pmap[nss + 1] = pps pmap[nss + 2] = keyval_fn(tmp, tbl[tmp], kvs) nss = nss + 2 end tmp = vars.oxfordsep or vars.lastsep if tmp ~= nil and nss > 4 then pmap[nss - 1] = tmp elseif nss > 2 and vars.lastsep ~= nil then pmap[nss - 1] = vars.lastsep end pmap[1] = vars.header or '' if vars.footer ~= nil then pmap[nss + 1] = vars.footer end ctx.params = { [get_parameter_name(ctx.pipe[1])] = table.concat(pmap) } return argc end -- Concatenate the numeric keys from the table of parameters to the numeric -- keys from the table of options; non-numeric keys from the table of options -- will prevail over colliding non-numeric keys from the table of parameters local function concat_params (ctx) local retval, tbl, nmax = {}, ctx.params, table.maxn(ctx.pipe) if ctx.subset == 1 then -- We need only the sequence for key, val in ipairs(tbl) do retval[key + nmax] = val end else if ctx.subset == -1 then for key in ipairs(tbl) do tbl[key] = nil end end for key, val in pairs(tbl) do if type(key) == 'number' and key > 0 then retval[key + nmax] = val else retval[key] = val end end end for key, val in pairs(ctx.pipe) do retval[key] = val end return retval end -- Flush the parameters by calling a custom function for each value (after this -- function has been invoked `ctx.params` will be no longer usable) local function flush_params (ctx, fn) local tbl = ctx.params if ctx.subset == 1 then for key, val in ipairs(tbl) do fn(key, val) end return end if ctx.subset == -1 then for key, val in ipairs(tbl) do tbl[key] = nil end end if ctx.sorttype > 0 then local nums, words, nn, nw = get_key_list_sorted(tbl, natural_sort) if ctx.sorttype == 2 then for idx = 1, nw do fn(words[idx], tbl[words[idx]]) end for idx = 1, nn do fn(nums[idx], tbl[nums[idx]]) end return end for idx = 1, nn do fn(nums[idx], tbl[nums[idx]]) end for idx = 1, nw do fn(words[idx], tbl[words[idx]]) end return end if ctx.subset ~= -1 then for key, val in ipairs(tbl) do fn(key, val) tbl[key] = nil end end for key, val in pairs(tbl) do fn(key, val) end end -- Flush the parameters by calling one of two custom functions for each value -- (after this function has been invoked `ctx.params` will be no longer usable) local function mixed_flush_params (ctx, fn_seq, fn_oth) if ctx.subset == 1 then for key, val in ipairs(ctx.params) do fn_seq(key, val) end return end if ctx.subset == -1 then flush_params(ctx, fn_oth) return end local tbl = ctx.params if ctx.sorttype > 0 then local nums, words, nn, nw = get_key_list_sorted(tbl, natural_sort) local sequence = {} for key, val in ipairs(tbl) do sequence[key] = val end if ctx.sorttype == 2 then for idx = 1, nw do fn_oth(words[idx], tbl[words[idx]]) end end for idx = 1, nn do if sequence[nums[idx]] then fn_seq(nums[idx], sequence[nums[idx]]) else fn_oth(nums[idx], tbl[nums[idx]]) end end if ctx.sorttype ~= 2 then for idx = 1, nw do fn_oth(words[idx], tbl[words[idx]]) end end return end for key, val in ipairs(tbl) do fn_seq(key, val) tbl[key] = nil end for key, val in pairs(tbl) do fn_oth(key, val) end end -- Finalize and return a concatenated list local function finalize_and_return_concatenated_list (ctx, lst, len, modsize) if len > 0 then local tmp = ctx.oxfordsep or ctx.lastsep if tmp ~= nil and len > modsize * 2 then lst[len - modsize + 1] = tmp elseif len > modsize and ctx.lastsep ~= nil then lst[len - modsize + 1] = ctx.lastsep end lst[1] = ctx.header or '' if ctx.footer ~= nil then lst[len + 1] = ctx.footer end ctx.text = table.concat(lst) else ctx.text = ctx.ifngiven or '' end end --[[ Modifiers ]]-- ----------------------------- -- Syntax: #invoke:params|sequential|pipe to library.sequential = function (ctx) if ctx.subset == 1 then error(modulename .. ': The ‘sequential’ directive has been provided more than once', 0) end if ctx.subset == -1 then error(modulename .. ': The two directives ‘non-sequential’ and ‘sequential’ are in contradiction with each other', 0) end if ctx.sorttype > 0 then error(modulename .. ': The ‘all_sorted’ and ‘reassorted’ directives are redundant when followed by ‘sequential’', 0) end ctx.iterfunc = ipairs ctx.subset = 1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|non-sequential|pipe to library['non-sequential'] = function (ctx) if ctx.subset == -1 then error(modulename .. ': The ‘non-sequential’ directive has been provided more than once', 0) end if ctx.subset == 1 then error(modulename .. ': The two directives ‘sequential’ and ‘non-sequential’ are in contradiction with each other', 0) end ctx.iterfunc = pairs ctx.subset = -1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|all_sorted|pipe to library.all_sorted = function (ctx) if ctx.sorttype == 1 then error(modulename .. ': The ‘all_sorted’ directive has been provided more than once', 0) end if ctx.subset == 1 then error(modulename .. ': The ‘all_sorted’ directive is redundant after ‘sequential’', 0) end if ctx.sorttype == 2 then error(modulename .. ': The two directives ‘reassorted’ and ‘sequential’ are in contradiction with each other', 0) end ctx.sorttype = 1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|reassorted|pipe to library.reassorted = function (ctx) if ctx.sorttype == 2 then error(modulename .. ': The ‘reassorted’ directive has been provided more than once', 0) end if ctx.subset == 1 then error(modulename .. ': The ‘reassorted’ directive is redundant after ‘sequential’', 0) end if ctx.sorttype == 1 then error(modulename .. ': The two directives ‘sequential’ and ‘reassorted’ are in contradiction with each other', 0) end ctx.sorttype = 2 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|setting|directives|...|pipe to library.setting = function (ctx) local argc = set_strings(ctx, ctx.pipe, 1) if argc < 2 then error(modulename .. ', ‘setting’: No directive was given', 0) end return context_iterate(ctx, argc + 1) end -- Syntax: #invoke:params|scoring|new parameter name|pipe to library.scoring = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘scoring’: No parameter name was provided', 0) end local retval = 0 for _ in pairs(ctx.params) do retval = retval + 1 end ctx.params[get_parameter_name(ctx.pipe[1])] = tostring(retval) return context_iterate(ctx, 2) end -- Syntax: #invoke:params|squeezing|pipe to library.squeezing = function (ctx) local store, indices, tbl, newlen = {}, {}, ctx.params, 0 for key, val in pairs(tbl) do if type(key) == 'number' then newlen = newlen + 1 indices[newlen] = key store[key] = val tbl[key] = nil end end table.sort(indices) for idx = 1, newlen do tbl[idx] = store[indices[idx]] end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|filling_the_gaps|pipe to library.filling_the_gaps = function (ctx) local tbl, tmp, nmin, nmax, nnums = ctx.params, {}, 1, nil, -1 for key, val in pairs(tbl) do if type(key) == 'number' then if nmax == nil then if key < nmin then nmin = key end nmax = key elseif key > nmax then nmax = key elseif key < nmin then nmin = key end nnums = nnums + 1 tmp[key] = val end end if nmax ~= nil and nmax - nmin > nnums then ctx.n_available = ctx.n_available + nmin + nnums - nmax if ctx.n_available < 0 then error(modulename .. ', ‘filling_the_gaps’: It is possible to fill at most ' .. tostring(maxfill) .. ' parameters', 0) end for idx = nmin, nmax, 1 do tbl[idx] = '' end for key, val in pairs(tmp) do tbl[key] = val end end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|clearing|pipe to library.clearing = function (ctx) local tbl = ctx.params local numerics = {} for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key] = val tbl[key] = nil end end for key, val in ipairs(numerics) do tbl[key] = val end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|cutting|left cut|right cut|pipe to library.cutting = function (ctx) local lcut = tonumber(ctx.pipe[1]) if lcut == nil or math.floor(lcut) ~= lcut then error(modulename .. ', ‘cutting’: Left cut must be an integer number', 0) end local rcut = tonumber(ctx.pipe[2]) if rcut == nil or math.floor(rcut) ~= rcut then error(modulename .. ', ‘cutting’: Right cut must be an integer number', 0) end local tbl = ctx.params local len = #tbl if lcut < 0 then lcut = len + lcut end if rcut < 0 then rcut = len + rcut end local tot = lcut + rcut if tot > 0 then local cache = {} if tot >= len then for key in ipairs(tbl) do tbl[key] = nil end tot = len else for idx = len - rcut + 1, len, 1 do tbl[idx] = nil end for idx = 1, lcut, 1 do tbl[idx] = nil end end for key, val in pairs(tbl) do if type(key) == 'number' and key > 0 then if key > len then cache[key - tot] = val else cache[key - lcut] = val end tbl[key] = nil end end for key, val in pairs(cache) do tbl[key] = val end end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|cropping|left crop|right crop|pipe to library.cropping = function (ctx) local lcut = tonumber(ctx.pipe[1]) if lcut == nil or math.floor(lcut) ~= lcut then error(modulename .. ', ‘cropping’: Left crop must be an integer number', 0) end local rcut = tonumber(ctx.pipe[2]) if rcut == nil or math.floor(rcut) ~= rcut then error(modulename .. ', ‘cropping’: Right crop must be an integer number', 0) end local tbl = ctx.params local nmin local nmax for key in pairs(tbl) do if type(key) == 'number' then if nmin == nil then nmin, nmax = key, key elseif key > nmax then nmax = key elseif key < nmin then nmin = key end end end if nmin ~= nil then local len = nmax - nmin + 1 if lcut < 0 then lcut = len + lcut end if rcut < 0 then rcut = len + rcut end if lcut + rcut - len > -1 then for key in pairs(tbl) do if type(key) == 'number' then tbl[key] = nil end end elseif lcut + rcut > 0 then for idx = nmax - rcut + 1, nmax do tbl[idx] = nil end for idx = nmin, nmin + lcut - 1 do tbl[idx] = nil end local lshift = nmin + lcut - 1 if lshift > 0 then for idx = lshift + 1, nmax, 1 do tbl[idx - lshift] = tbl[idx] tbl[idx] = nil end end end end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|purging|start offset|length|pipe to library.purging = function (ctx) local idx = tonumber(ctx.pipe[1]) if idx == nil or math.floor(idx) ~= idx then error(modulename .. ', ‘purging’: Start offset must be an integer number', 0) end local len = tonumber(ctx.pipe[2]) if len == nil or math.floor(len) ~= len then error(modulename .. ', ‘purging’: Length must be an integer number', 0) end local tbl = ctx.params if len < 1 then len = len + table.maxn(tbl) if idx > len then return context_iterate(ctx, 3) end len = len - idx + 1 end ctx.params = copy_table_reduced(tbl, idx, len) return context_iterate(ctx, 3) end -- Syntax: #invoke:params|backpurging|start offset|length|pipe to library.backpurging = function (ctx) local last = tonumber(ctx.pipe[1]) if last == nil or math.floor(last) ~= last then error(modulename .. ', ‘backpurging’: Start offset must be an integer number', 0) end local len = tonumber(ctx.pipe[2]) if len == nil or math.floor(len) ~= len then error(modulename .. ', ‘backpurging’: Length must be an integer number', 0) end local idx local tbl = ctx.params if len > 0 then idx = last - len + 1 else for key in pairs(tbl) do if type(key) == 'number' and (idx == nil or key < idx) then idx = key end end if idx == nil then return context_iterate(ctx, 3) end idx = idx - len if last < idx then return context_iterate(ctx, 3) end len = last - idx + 1 end ctx.params = copy_table_reduced(ctx.params, idx, len) return context_iterate(ctx, 3) end -- Syntax: #invoke:params|shifting|addend|pipe to library.shifting = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local nshift = tonumber(ctx.pipe[1]) if nshift == nil or nshift == 0 or math.floor(nshift) ~= nshift then error(modulename .. ', ‘shifting’: A non-zero integer number must be provided', 0) end local tbl = {} for key, val in pairs(ctx.params) do if type(key) == 'number' then tbl[key + nshift] = val else tbl[key] = val end end ctx.params = tbl return context_iterate(ctx, 2) end -- Syntax: #invoke:params|reversing_numeric_names|pipe to library.reversing_numeric_names = function (ctx) local tbl, numerics, nmax = ctx.params, {}, 0 for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key] = val tbl[key] = nil if key > nmax then nmax = key end end end for key, val in pairs(numerics) do tbl[nmax - key + 1] = val end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|pivoting_numeric_names|pipe to --[[ library.pivoting_numeric_names = function (ctx) local tbl = ctx.params local shift = #tbl + 1 if shift < 2 then return library.reversing_numeric_names(ctx) end local numerics = {} for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key] = val tbl[key] = nil end end for key, val in pairs(numerics) do tbl[shift - key] = val end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|mirroring_numeric_names|pipe to --[[ library.mirroring_numeric_names = function (ctx) local tbl, numerics = ctx.params, {} local nmax local nmin for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key] = val tbl[key] = nil if nmax == nil then nmin, nmax = key, key elseif key > nmax then nmax = key elseif key < nmin then nmin = key end end end for key, val in pairs(numerics) do tbl[nmax + nmin - key] = val end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|swapping_numeric_names|pipe to --[[ library.swapping_numeric_names = function (ctx) local tbl, cache, nsize = ctx.params, {}, 0 local tmp for key in pairs(tbl) do if type(key) == 'number' then nsize = nsize + 1 cache[nsize] = key end end table.sort(cache) for idx = math.floor(nsize / 2), 1, -1 do tmp = tbl[cache[idx] ] tbl[cache[idx] ] = tbl[cache[nsize - idx + 1] ] tbl[cache[nsize - idx + 1] ] = tmp end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|sorting_sequential_values|[criterion]|pipe to library.sorting_sequential_values = function (ctx) local sortfn if ctx.pipe[1] ~= nil then sortfn = sortfunctions[ctx.pipe[1]:match'^%s*(.-)%s*$'] end if sortfn then table.sort(ctx.params, sortfn) else table.sort(ctx.params) end -- i.e. either `false` or `nil` if sortfn == nil then return context_iterate(ctx, 1) end return context_iterate(ctx, 2) end -- Syntax: #invoke:params|splicing|[add to position]|position|increment| -- [number of elements to write]|...|pipe to library.splicing = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local opts, tbl = ctx.pipe, ctx.params local tmp1 = opts[1] local tmp2 local argc local pos local refp if tmp1 ~= nil then tmp2 = tonumber(tmp1) if tmp2 == nil or math.floor(tmp2) ~= tmp2 then pos, argc, tmp2 = tonumber(opts[2]), 4, tmp1:match'^%s*(.*%S)' if tmp2 ~= nil then refp = position_references[tmp2] if refp == nil then error(modulename .. ', ‘splicing’: ‘' .. tostring(tmp2) .. '’ is not a valid first argument', 0) end else refp = 0 end else pos, argc, refp = tmp2, 3, 0 end else pos, argc, refp = tonumber(opts[2]), 4, 0 end if pos == nil or math.floor(pos) ~= pos then error(modulename .. ', ‘splicing’: The position must be an integer number', 0) end local len = tonumber(opts[argc - 1]) if len == nil or math.floor(len) ~= len then error(modulename .. ', ‘splicing’: The increment must be an integer number', 0) end if refp == 2 then for _ in ipairs(tbl) do pos = pos + 1 end refp = 0 end tmp1, tmp2 = nil, nil if refp ~= 0 or len ~= 0 then for key, val in pairs(tbl) do if type(key) == 'number' then if tmp1 == nil then tmp1, tmp2 = key, key elseif key < tmp1 then tmp1 = key elseif key > tmp2 then tmp2 = key end end end end if tmp2 == nil then len = 0 elseif refp == 3 then pos = pos + tmp2 elseif refp == 1 then pos = pos + tmp1 end if len > 0 and pos + len > tmp1 and pos <= tmp2 then tbl = copy_table_expanded(tbl, pos, len) elseif len < 0 and pos - len > tmp1 and pos <= tmp2 then tbl = copy_table_reduced(tbl, pos, -len) else tbl = copy_or_ref_table(tbl, tbl ~= ctx.oparams) end ctx.params = tbl tmp1 = tonumber(opts[argc]) if len == 0 and (tmp1 == nil or tmp1 < 1) then error(modulename .. ', ‘splicing’: When the increment is zero the number of elements to add cannot be zero', 0) end if tmp1 == nil or tmp1 < 0 or math.floor(tmp1) ~= tmp1 then return context_iterate(ctx, argc) end tmp2 = argc - pos + 1 for key = pos, pos + tmp1 - 1 do tbl[key] = opts[key + tmp2] end return context_iterate(ctx, argc + tmp1 + 1) end -- Syntax: #invoke:params|imposing|name|value|pipe to library.imposing = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘imposing’: Missing parameter name to impose', 0) end ctx.params[get_parameter_name(ctx.pipe[1])] = ctx.pipe[2] return context_iterate(ctx, 3) end -- Syntax: #invoke:params|providing|name|value|pipe to library.providing = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘providing’: Missing parameter name to provide', 0) end local key = get_parameter_name(ctx.pipe[1]) if ctx.params[key] == nil then ctx.params[key] = ctx.pipe[2] end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|discarding|name|[how many]|pipe to library.discarding = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘discarding’: Missing parameter name to discard', 0) end local len = tonumber(ctx.pipe[2]) if len == nil then ctx.params[get_parameter_name(ctx.pipe[1])] = nil return context_iterate(ctx, 2) end local key = tonumber(ctx.pipe[1]) if key == nil or math.floor(key) ~= key then error(modulename .. ', ‘discarding’: A range was provided, but the initial parameter name is not an integer number', 0) end if len < 1 or math.floor(len) ~= len then error(modulename .. ', ‘discarding’: A range can only be an integer number greater than zero', 0) end for idx = key, key + len - 1 do ctx.params[idx] = nil end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|excluding_non-numeric_names|pipe to library['excluding_non-numeric_names'] = function (ctx) local tmp = ctx.params for key, val in pairs(tmp) do if type(key) ~= 'number' then tmp[key] = nil end end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|excluding_numeric_names|pipe to library.excluding_numeric_names = function (ctx) local tmp = ctx.params for key, val in pairs(tmp) do if type(key) == 'number' then tmp[key] = nil end end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|with_name_matching|target 1|[plain flag 1]|[or] -- |[target 2]|[plain flag 2]|[or]|[...]|[target N]|[plain flag -- N]|pipe to library.with_name_matching = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_name_matching') local tmp local ptn local tbl = ctx.params local newparams = {} for idx = 1, nptns do ptn = targets[idx] if ptn[3] then tmp = ptn[1] if tmp == '0' or tmp:find'^%-?[1-9]%d*$' ~= nil then tmp = tonumber(tmp) end newparams[tmp] = tbl[tmp] else for key, val in pairs(tbl) do if tostring(key):find(ptn[1], 1, ptn[2]) then newparams[key] = val end end end end ctx.params = newparams return context_iterate(ctx, argc) end -- Syntax: #invoke:params|with_name_not_matching|target 1|[plain flag 1] -- |[and]|[target 2]|[plain flag 2]|[and]|[...]|[target N]|[plain -- flag N]|pipe to library.with_name_not_matching = function (ctx) local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_name_not_matching') local tbl = ctx.params if nptns == 1 and targets[1][3] then local tmp = targets[1][1] if tmp == '0' or tmp:find'^%-?[1-9]%d*$' ~= nil then tbl[tonumber(tmp)] = nil else tbl[tmp] = nil end return context_iterate(ctx, argc) end local yesmatch local ptn for key in pairs(tbl) do yesmatch = true for idx = 1, nptns do ptn = targets[idx] if ptn[3] then if tostring(key) ~= ptn[1] then yesmatch = false break end elseif not tostring(key):find(ptn[1], 1, ptn[2]) then yesmatch = false break end end if yesmatch then tbl[key] = nil end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|with_value_matching|target 1|[plain flag 1]|[or] -- |[target 2]|[plain flag 2]|[or]|[...]|[target N]|[plain flag -- N]|pipe to library.with_value_matching = function (ctx) local tbl = ctx.params local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_value_matching') local nomatch local ptn for key, val in pairs(tbl) do nomatch = true for idx = 1, nptns do ptn = targets[idx] if ptn[3] then if val == ptn[1] then nomatch = false break end elseif val:find(ptn[1], 1, ptn[2]) then nomatch = false break end end if nomatch then tbl[key] = nil end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|with_value_not_matching|target 1|[plain flag 1] -- |[and]|[target 2]|[plain flag 2]|[and]|[...]|[target N]|[plain -- flag N]|pipe to library.with_value_not_matching = function (ctx) local tbl = ctx.params local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_value_not_matching') local yesmatch local ptn for key, val in pairs(tbl) do yesmatch = true for idx = 1, nptns do ptn = targets[idx] if ptn[3] then if val ~= ptn[1] then yesmatch = false break end elseif not val:find(ptn[1], 1, ptn[2]) then yesmatch = false break end end if yesmatch then tbl[key] = nil end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|trimming_values|pipe to library.trimming_values = function (ctx) local tbl = ctx.params for key, val in pairs(tbl) do tbl[key] = val:match'^%s*(.-)%s*$' end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mapping_to_lowercase|pipe to library.mapping_to_lowercase = function (ctx) local tbl = ctx.params for key, val in pairs(tbl) do tbl[key] = val:lower() end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mapping_to_uppercase|pipe to library.mapping_to_uppercase = function (ctx) local tbl = ctx.params for key, val in pairs(tbl) do tbl[key] = val:upper() end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mapping_by_calling|template name|[call -- style]|[let]|[...][number of additional parameters]|[parameter -- 1]|[parameter 2]|[...]|[parameter N]|pipe to library.mapping_by_calling = function (ctx) local opts = ctx.pipe local tname if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘mapping_by_calling’: No template name was provided', 0) end local margs, argc, looptype, karg, varg = load_callback_opts(opts, 1, mapping_styles.values_only) local model = { title = tname, args = margs } value_maps[looptype](ctx.params, margs, karg, varg, function () return ctx.frame:expandTemplate(model) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_invoking|module name|function -- name|[call style]|[let]|[...]|[number of additional -- arguments]|[argument 1]|[argument 2]|[...]|[argument N]|pipe to library.mapping_by_invoking = function (ctx) local opts = ctx.pipe local mname local fname if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘mapping_by_invoking’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘mapping_by_invoking’: No function name was provided', 0) end local margs, argc, looptype, karg, varg = load_callback_opts(opts, 2, mapping_styles.values_only) local model = { title = 'Module:' .. mname, args = margs } local mfunc = require(model.title)[fname] if mfunc == nil then error(modulename .. ', ‘mapping_by_invoking’: The function ‘' .. fname .. '’ does not exist', 0) end value_maps[looptype](ctx.params, margs, karg, varg, function () return tostring(mfunc(ctx.frame:newChild(model))) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_magic|parser function|[call -- style]|[let]|[...][number of additional arguments]|[argument -- 1]|[argument 2]|[...]|[argument N]|pipe to library.mapping_by_magic = function (ctx) local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘mapping_by_magic’: No parser function was provided', 0) end local margs, argc, looptype, karg, varg = load_callback_opts(opts, 1, mapping_styles.values_only) value_maps[looptype](ctx.params, margs, karg, varg, function () return ctx.frame:callParserFunction(magic, margs) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_replacing|target|replace|[count]|[plain -- flag]|pipe to library.mapping_by_replacing = function (ctx) local ptn, repl, nmax, flg, argc, die = load_replace_args(ctx.pipe, 'mapping_by_replacing') if die then return context_iterate(ctx, argc) end local tbl = ctx.params if flg == 3 then for key, val in pairs(tbl) do if val == ptn then tbl[key] = repl end end else if flg == 2 then -- Copied from Module:String's `str._escapePattern()` ptn = ptn:gsub('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0') end for key, val in pairs(tbl) do tbl[key] = val:gsub(ptn, repl, nmax) end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_mixing|mixing string|pipe to library.mapping_by_mixing = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘mapping_by_mixing’: No mixing string was provided', 0) end local mix = ctx.pipe[1] local tbl = ctx.params if mix == '$#' then for key in pairs(tbl) do tbl[key] = tostring(key) end return context_iterate(ctx, 2) end local skel, cnv, n_parts = parse_placeholder_string(mix) for key, val in pairs(tbl) do for idx = 2, n_parts, 2 do if skel[idx] then cnv[idx] = val else cnv[idx] = tostring(key) end end tbl[key] = table.concat(cnv) end return context_iterate(ctx, 2) end -- Syntax: #invoke:params|mapping_to_names|pipe to --[[ library.mapping_to_names = function (ctx) local tbl = ctx.params for key in pairs(tbl) do tbl[key] = tostring(key) end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|renaming_to_lowercase|pipe to library.renaming_to_lowercase = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for key, val in pairs(ctx.params) do if type(key) == 'string' then cache[key:lower()] = val else cache[key] = val end end ctx.params = cache return context_iterate(ctx, 1) end -- Syntax: #invoke:params|renaming_to_uppercase|pipe to library.renaming_to_uppercase = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for key, val in pairs(ctx.params) do if type(key) == 'string' then cache[key:upper()] = val else cache[key] = val end end ctx.params = cache return context_iterate(ctx, 1) end -- Syntax: #invoke:params|renaming_to_sequence|[sort order]|pipe to library.renaming_to_sequence = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local tbl = ctx.params local sortfn, argc, do_sort = load_sort_opt(ctx.pipe[1]) local cache local len if do_sort then local words local wl cache, words, len, wl = get_key_list_sorted(tbl, sortfn) for idx = 1, len do cache[idx] = tbl[cache[idx]] end for idx = 1, wl do cache[len + idx] = tbl[words[idx]] end else cache = {} len = 0 for _, val in pairs(tbl) do len = len + 1 cache[len] = val end end ctx.params = cache return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_calling|template name|[call -- style]|[let]|[...][number of additional parameters]|[parameter -- 1]|[parameter 2]|[...]|[parameter N]|pipe to library.renaming_by_calling = function (ctx) local opts = ctx.pipe local tname if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘renaming_by_calling’: No template name was provided', 0) end local rargs, argc, looptype, karg, varg = load_callback_opts(opts, 1, mapping_styles.names_only) local model = { title = tname, args = rargs } map_names(ctx.params, rargs, karg, varg, looptype, function () return ctx.frame:expandTemplate(model) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_invoking|module name|function -- name|[call style]|[let]|[...]|[number of additional -- arguments]|[argument 1]|[argument 2]|[...]|[argument N]|pipe to library.renaming_by_invoking = function (ctx) local opts = ctx.pipe local mname local fname if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘renaming_by_invoking’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘renaming_by_invoking’: No function name was provided', 0) end local rargs, argc, looptype, karg, varg = load_callback_opts(opts, 2, mapping_styles.names_only) local model = { title = 'Module:' .. mname, args = rargs } local mfunc = require(model.title)[fname] if mfunc == nil then error(modulename .. ', ‘renaming_by_invoking’: The function ‘' .. fname .. '’ does not exist', 0) end map_names(ctx.params, rargs, karg, varg, looptype, function () return tostring(mfunc(ctx.frame:newChild(model))) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_magic|parser function|[call -- style]|[let]|[...][number of additional arguments]|[argument -- 1]|[argument 2]|[...]|[argument N]|pipe to library.renaming_by_magic = function (ctx) local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘renaming_by_magic’: No parser function was provided', 0) end local rargs, argc, looptype, karg, varg = load_callback_opts(opts, 1, mapping_styles.names_only) map_names(ctx.params, rargs, karg, varg, looptype, function () return ctx.frame:callParserFunction(magic, rargs) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_replacing|target|replace|[count]|[plain -- flag]|pipe to library.renaming_by_replacing = function (ctx) local ptn, repl, nmax, flg, argc, die = load_replace_args(ctx.pipe, 'renaming_by_replacing') if die then return context_iterate(ctx, argc) end local tbl = ctx.params if flg == 3 then ptn = get_parameter_name(ptn) local val = tbl[ptn] if val ~= nil then tbl[ptn] = nil tbl[get_parameter_name(repl)] = val end else if flg == 2 then -- Copied from Module:String's `str._escapePattern()` ptn = ptn:gsub('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0') end local cache = {} for key, val in pairs(tbl) do steal_if_renamed(val, tbl, key, cache, tostring(key):gsub(ptn, repl, nmax)) end for key, val in pairs(cache) do tbl[key] = val end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_mixing|mixing string|pipe to library.renaming_by_mixing = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning if ctx.pipe[1] == nil then error(modulename .. ', ‘renaming_by_mixing’: No mixing string was provided', 0) end local mix = ctx.pipe[1]:match'^%s*(.-)%s*$' local cache = {} if mix == '$@' then for _, val in pairs(ctx.params) do cache[get_parameter_name(val)] = val end else local skel, canvas, n_parts = parse_placeholder_string(mix) for key, val in pairs(ctx.params) do for idx = 2, n_parts, 2 do if skel[idx] then canvas[idx] = val else canvas[idx] = tostring(key) end end cache[get_parameter_name(table.concat(canvas))] = val end end ctx.params = cache return context_iterate(ctx, 2) end -- Syntax: #invoke:params|renaming_to_values|pipe to --[[ library.renaming_to_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for _, val in pairs(ctx.params) do cache[val] = val end ctx.params = cache return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|grouping_by_calling|template -- name|[let]|[...]|[number of additional arguments]|[argument -- 1]|[argument 2]|[...]|[argument N]|pipe to library.grouping_by_calling = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local opts = ctx.pipe local tmp if opts[1] ~= nil then tmp = opts[1]:match'^%s*(.*%S)' end if tmp == nil then error(modulename .. ', ‘grouping_by_calling’: No template name was provided', 0) end local model = { title = tmp } local argc tmp, argc = load_child_opts(opts, 2, 0) local gargs = {} for key, val in pairs(tmp) do if type(key) == 'number' and key < 1 then gargs[key - 1] = val else gargs[key] = val end end local groups = make_groups(ctx.params) for gid, group in pairs(groups) do for key, val in pairs(gargs) do group[key] = val end group[0] = gid model.args = group groups[gid] = ctx.frame:expandTemplate(model) end ctx.params = groups return context_iterate(ctx, argc) end -- Syntax: #invoke:params|parsing|string to parse|[trim flag]|[iteration -- delimiter setter]|[...]|[key-value delimiter setter]|[...]|pipe to library.parsing = function (ctx) local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘parsing’: No string to parse was provided', 0) end local isep, iplain, psep, pplain, trimnamed, trimunnamed, argc = load_parse_opts(opts, 2, '|', '=') parse_parameter_string(ctx.params, opts[1], isep, iplain, psep, pplain, trimnamed, trimunnamed) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|reinterpreting|parameter to reinterpret|[trim -- flag]|[iteration delimiter setter]|[...]|[key-value delimiter -- setter]|[...]|pipe to library.reinterpreting = function (ctx) local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘reinterpreting’: No parameter to reinterpret was provided', 0) end local isep, iplain, psep, pplain, trimnamed, trimunnamed, argc = load_parse_opts(opts, 2, '|', '=') local tbl, tmp = ctx.params, get_parameter_name(opts[1]) local str = tbl[tmp] if str ~= nil then tbl[tmp] = nil parse_parameter_string(tbl, str, isep, iplain, psep, pplain, trimnamed, trimunnamed) end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|evaluating|string to parse|[trim flag]|[iteration -- delimiter setter]|[...]|[key-value delimiter setter]|[...]|pipe to library.evaluating = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘evaluating’: No string to parse was provided', 0) end local isep, iplain, psep, pplain, trimnamed, trimunnamed, argc = load_parse_opts(opts, 2, '!', ':') if opts[1]:match'^%s*(.*%S)' == nil then ctx.pipe = copy_or_ref_table(opts, opts ~= ctx.opipe) return context_iterate(ctx, argc) end local new_opts, cache = {}, {} local shift = parse_parameter_string(cache, opts[1], isep, iplain, psep, pplain, trimnamed, trimunnamed) - argc for key, val in pairs(opts) do if type(key) ~= 'number' or key < 1 then new_opts[key] = val elseif key >= argc then new_opts[key + shift] = val end end for key, val in pairs(cache) do new_opts[key] = val end ctx.pipe = new_opts return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mixing_names_and_values|mixing string|pipe to library.mixing_names_and_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning if ctx.pipe[1] == nil then error(modulename .. ', ‘mixing_names_and_values’: No mixing string was provided for parameter names', 0) end if ctx.pipe[2] == nil then error(modulename .. ', ‘mixing_names_and_values’: No mixing string was provided for parameter values', 0) end local cache = {} local mix_k, mix_v = ctx.pipe[1]:match'^%s*(.-)%s*$', ctx.pipe[2] local tmp if mix_k == '$@' and mix_v == '$@' then for _, val in pairs(ctx.params) do cache[get_parameter_name(val)] = val end elseif mix_k == '$@' and mix_v == '$#' then for key, val in pairs(ctx.params) do cache[get_parameter_name(val)] = tostring(key) end elseif mix_k == '$#' and mix_v == '$#' then for key in pairs(ctx.params) do cache[key] = tostring(key) end else local skel_k, cnv_k, n_parts_k = parse_placeholder_string(mix_k) local skel_v, cnv_v, n_parts_v = parse_placeholder_string(mix_v) for key, val in pairs(ctx.params) do tmp = tostring(key) for idx = 2, n_parts_k, 2 do if skel_k[idx] then cnv_k[idx] = val else cnv_k[idx] = tmp end end for idx = 2, n_parts_v, 2 do if skel_v[idx] then cnv_v[idx] = val else cnv_v[idx] = tmp end end cache[get_parameter_name(table.concat(cnv_k))] = table.concat(cnv_v) end end ctx.params = cache return context_iterate(ctx, 3) end -- Syntax: #invoke:params|swapping_names_and_values|pipe to --[[ library.swapping_names_and_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for key, val in pairs(ctx.params) do cache[val] = key end ctx.params = cache return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|combining|new parameter name|[sort order]|setting -- directives|...|pipe to library.combining = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning return context_iterate(ctx, combine_parameters( ctx, function (key, val, kvs) return key .. kvs .. val end, 'combining' ) + 1) end -- Syntax: #invoke:params|combining_values|new parameter name|[sort -- order]|setting directives|...|pipe to library.combining_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning return context_iterate(ctx, combine_parameters( ctx, function (key, val, kvs) return val end, 'combining_values' ) + 1) end -- Syntax: #invoke:params|combining_by_calling|template name|new parameter -- name|pipe to library.combining_by_calling = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local tname = ctx.pipe[1] if tname ~= nil then tname = tname:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_calling’: No template name was provided', 0) end if ctx.pipe[2] == nil then error(modulename .. ', ‘combining_by_calling’: No parameter name was provided', 0) end ctx.params = { [get_parameter_name(ctx.pipe[2])] = ctx.frame:expandTemplate{ title = tname, args = ctx.params } } return context_iterate(ctx, 3) end -- Syntax: #invoke:params|combining_by_invoking|module name|function name|new -- parameter name|pipe to library.combining_by_invoking = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local mname = ctx.pipe[1] if mname ~= nil then mname = mname:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_invoking’: No module name was provided', 0) end local fname = ctx.pipe[2] if fname ~= nil then fname = fname:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_invoking’: No function name was provided', 0) end if ctx.pipe[3] == nil then error(modulename .. ', ‘combining_by_invoking’: No parameter name was provided', 0) end local model = { title = 'Module:' .. mname, args = ctx.params } local mfunc = require(model.title)[fname] if mfunc == nil then error(modulename .. ', ‘mapping_by_invoking’: The function ‘' .. fname .. '’ does not exist', 0) end ctx.params = { [get_parameter_name(ctx.pipe[3])] = tostring(mfunc(ctx.frame:newChild(model))) } return context_iterate(ctx, 4) end -- Syntax: #invoke:params|combining_by_magic|parser function|new parameter -- name|pipe to library.combining_by_magic = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local magic = ctx.pipe[1] if magic ~= nil then magic = magic:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_magic’: No parser function was provided', 0) end if ctx.pipe[2] == nil then error(modulename .. ', ‘combining_by_magic’: No parameter name was provided', 0) end ctx.params = { [get_parameter_name(ctx.pipe[2])] = ctx.frame:callParserFunction(magic, ctx.params) } return context_iterate(ctx, 3) end -- Syntax: #invoke:params|snapshotting|pipe to library.snapshotting = function (ctx) push_cloned_stack(ctx, ctx.params) return context_iterate(ctx, 1) end -- Syntax: #invoke:params|remembering|pipe to library.remembering = function (ctx) push_cloned_stack(ctx, ctx.oparams) return context_iterate(ctx, 1) end -- Syntax: #invoke:params|entering_substack|[new]|pipe to library.entering_substack = function (ctx) local tbl = ctx.params local ncurrparent = ctx.n_parents + 1 if ctx.parents == nil then ctx.parents = { tbl } else ctx.parents[ncurrparent] = tbl end ctx.n_parents = ncurrparent if ctx.pipe[1] ~= nil and ctx.pipe[1]:match'^%s*new%s*$' then ctx.params = {} return context_iterate(ctx, 2) end local currsnap = ctx.n_children if currsnap > 0 then ctx.params = ctx.children[currsnap] ctx.children[currsnap] = nil ctx.n_children = currsnap - 1 else local newparams = {} for key, val in pairs(tbl) do newparams[key] = val end ctx.params = newparams end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|pulling|parameter name|pipe to library.pulling = function (ctx) local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘pulling’: No parameter to pull was provided', 0) end local parent local tmp = ctx.n_parents if tmp < 1 then parent = ctx.oparams else parent = ctx.parents[tmp] end tmp = get_parameter_name(opts[1]) if parent[tmp] ~= nil then ctx.params[tmp] = parent[tmp] end return context_iterate(ctx, 2) end -- Syntax: #invoke:params|detaching_substack|pipe to library.detaching_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘detaching_substack’: No substack has been created', 0) end local parent = ctx.parents[ncurrparent] for key in pairs(ctx.params) do parent[key] = nil end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|dropping_substack|pipe to library.dropping_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘dropping_substack’: No substack has been created', 0) end ctx.params = ctx.parents[ncurrparent] ctx.parents[ncurrparent] = nil ctx.n_parents = ncurrparent - 1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|leaving_substack|pipe to library.leaving_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘leaving_substack’: No substack has been created', 0) end local currsnap = ctx.n_children + 1 if ctx.children == nil then ctx.children = { ctx.params } else ctx.children[currsnap] = ctx.params end ctx.params = ctx.parents[ncurrparent] ctx.parents[ncurrparent] = nil ctx.n_parents = ncurrparent - 1 ctx.n_children = currsnap return context_iterate(ctx, 1) end -- Syntax: #invoke:params|merging_substack|pipe to library.merging_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘merging_substack’: No substack has been created', 0) end local parent = ctx.parents[ncurrparent] local child = ctx.params ctx.params = parent ctx.parents[ncurrparent] = nil ctx.n_parents = ncurrparent - 1 for key, val in pairs(child) do parent[key] = val end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|flushing|pipe to library.flushing = function (ctx) if ctx.n_children < 1 then error(modulename .. ', ‘flushing’: There are no substacks to flush', 0) end local parent = ctx.params local currsnap = ctx.n_children for key, val in pairs(ctx.children[currsnap]) do parent[key] = val end ctx.children[currsnap] = nil ctx.n_children = currsnap - 1 return context_iterate(ctx, 1) end --[[ Functions ]]-- ----------------------------- -- Syntax: #invoke:params|count library.count = function (ctx) -- NOTE: `ctx.pipe` and `ctx.params` might be the original metatables! local retval = 0 for _ in ctx.iterfunc(ctx.params) do retval = retval + 1 end if ctx.subset == -1 then retval = retval - #ctx.params end ctx.text = retval return false end -- Syntax: #invoke:args|concat_and_call|template name|[prepend 1]|[prepend 2] -- |[...]|[item n]|[named item 1=value 1]|[...]|[named item n=value -- n]|[...] library.concat_and_call = function (ctx) -- NOTE: `ctx.params` might be the original metatable! local opts = ctx.pipe local tname if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘concat_and_call’: No template name was provided', 0) end remove_numeric_keys(opts, 1, 1) ctx.text = ctx.frame:expandTemplate{ title = tname, args = concat_params(ctx) } return false end -- Syntax: #invoke:args|concat_and_invoke|module name|function name|[prepend -- 1]|[prepend 2]|[...]|[item n]|[named item 1=value 1]|[...]|[named -- item n=value n]|[...] library.concat_and_invoke = function (ctx) -- NOTE: `ctx.params` might be the original metatable! local opts = ctx.pipe local mname local fname if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘concat_and_invoke’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘concat_and_invoke’: No function name was provided', 0) end remove_numeric_keys(opts, 1, 2) local mfunc = require('Module:' .. mname)[fname] if mfunc == nil then error(modulename .. ', ‘concat_and_invoke’: The function ‘' .. fname .. '’ does not exist', 0) end ctx.text = mfunc(ctx.frame:newChild{ title = 'Module:' .. mname, args = concat_params(ctx) }) return false end -- Syntax: #invoke:args|concat_and_magic|parser function|[prepend 1]|[prepend -- 2]|[...]|[item n]|[named item 1=value 1]|[...]|[named item n= -- value n]|[...] library.concat_and_magic = function (ctx) -- NOTE: `ctx.params` might be the original metatable! local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘concat_and_magic’: No parser function was provided', 0) end remove_numeric_keys(opts, 1, 1) ctx.text = ctx.frame:callParserFunction(magic, concat_params(ctx)) return false end -- Syntax: #invoke:params|value_of|parameter name library.value_of = function (ctx) -- NOTE: `ctx.pipe` and `ctx.params` might be the original metatables! local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘value_of’: No parameter name was provided', 0) end local val local key = opts[1]:match'^%s*(.-)%s*$' if key == '0' or key:find'^%-?[1-9]%d*$' ~= nil then key = tonumber(key) val = ctx.params[key] -- No worries: #ctx.params is unused when the modifier is in -- first position (and therefore `ctx.params` is a metatable) if val ~= nil and ( ctx.subset ~= -1 or key > #ctx.params or key < 1 ) and ( ctx.subset ~= 1 or (key <= #ctx.params and key > 0) ) then ctx.text = (ctx.header or '') .. val .. (ctx.footer or '') else ctx.text = ctx.ifngiven or '' end else val = ctx.params[key] if ctx.subset ~= 1 and val ~= nil then ctx.text = (ctx.header or '') .. val .. (ctx.footer or '') else ctx.text = ctx.ifngiven or '' end end return false end -- Syntax: #invoke:params|list library.list = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local ret, nss, kvs, pps = {}, 0, ctx.pairsep or '', ctx.itersep or '' flush_params( ctx, function (key, val) ret[nss + 1] = pps ret[nss + 2] = key ret[nss + 3] = kvs ret[nss + 4] = val nss = nss + 4 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 4) return false end -- Syntax: #invoke:params|list_values library.list_values = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! -- NOTE: `library.coins()` and `library.unique_coins()` rely on us local ret, nss, pps = {}, 0, ctx.itersep or '' flush_params( ctx, function (key, val) ret[nss + 1] = pps ret[nss + 2] = val nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|list_maybe_with_names library.list_maybe_with_names = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local ret, nss, kvs, pps = {}, 0, ctx.pairsep or '', ctx.itersep or '' mixed_flush_params( ctx, function (key, val) ret[nss + 1] = pps ret[nss + 2] = '' ret[nss + 3] = '' ret[nss + 4] = val nss = nss + 4 end, function (key, val) ret[nss + 1] = pps ret[nss + 2] = key ret[nss + 3] = kvs ret[nss + 4] = val nss = nss + 4 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 4) return false end -- Syntax: #invoke:params|coins|[first coin = value 1]|[second coin = value -- 2]|[...]|[last coin = value N] --[[ library.coins = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local opts, tbl = ctx.pipe, ctx.params for key, val in pairs(tbl) do tbl[key] = opts[get_parameter_name(val)] end return library.list_values(ctx) end ]]-- -- Syntax: #invoke:params|unique_coins|[first coin = value 1]|[second coin = -- value 2]|[...]|[last coin = value N] library.unique_coins = function (ctx) local opts, tbl = ctx.pipe, ctx.params local tmp for key, val in pairs(tbl) do tmp = get_parameter_name(val) tbl[key] = opts[tmp] opts[tmp] = nil end return library.list_values(ctx) end -- Syntax: #invoke:params|for_each|wikitext library.for_each = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local ret, nss, pps, txt = {}, 0, ctx.itersep or '', ctx.pipe[1] or '' local skel, cnv, n_parts = parse_placeholder_string(txt) flush_params( ctx, function (key, val) for idx = 2, n_parts, 2 do if skel[idx] then cnv[idx] = val else cnv[idx] = tostring(key) end end ret[nss + 1] = pps ret[nss + 2] = table.concat(cnv) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|call_for_each|template name|[append 1]|[append 2] -- |[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.call_for_each = function (ctx) local opts = ctx.pipe local tname if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘call_for_each’: No template name was provided', 0) end local model = { title = tname, args = opts } local ret, nss, ccs = {}, 0, ctx.itersep or '' table.insert(opts, 1, true) flush_params( ctx, function (key, val) opts[1] = key opts[2] = val ret[nss + 1] = ccs ret[nss + 2] = ctx.frame:expandTemplate(model) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|invoke_for_each|module name|module function|[append -- 1]|[append 2]|[...]|[append n]|[named param 1=value 1]|[...] -- |[named param n=value n]|[...] library.invoke_for_each = function (ctx) local opts = ctx.pipe local mname local fname if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘invoke_for_each’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘invoke_for_each’: No function name was provided', 0) end local model = { title = 'Module:' .. mname, args = opts } local mfunc = require(model.title)[fname] local ret, nss, ccs = {}, 0, ctx.itersep or '' flush_params( ctx, function (key, val) opts[1] = key opts[2] = val ret[nss + 1] = ccs ret[nss + 2] = mfunc(ctx.frame:newChild(model)) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|magic_for_each|parser function|[append 1]|[append 2] -- |[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.magic_for_each = function (ctx) local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘magic_for_each’: No parser function was provided', 0) end local ret, nss, ccs = {}, 0, ctx.itersep or '' table.insert(opts, 1, true) flush_params( ctx, function (key, val) opts[1] = key opts[2] = val ret[nss + 1] = ccs ret[nss + 2] = ctx.frame:callParserFunction(magic, opts) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|call_for_each_value|template name|[append 1]|[append -- 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.call_for_each_value = function (ctx) local opts = ctx.pipe local tname if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘call_for_each_value’: No template name was provided', 0) end local model = { title = tname, args = opts } local ret, nss, ccs = {}, 0, ctx.itersep or '' flush_params( ctx, function (key, val) opts[1] = val ret[nss + 1] = ccs ret[nss + 2] = ctx.frame:expandTemplate(model) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|invoke_for_each_value|module name|[append 1]|[append -- 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.invoke_for_each_value = function (ctx) local opts = ctx.pipe local mname local fname if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘invoke_for_each_value’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘invoke_for_each_value’: No function name was provided', 0) end local model = { title = 'Module:' .. mname, args = opts } local mfunc = require(model.title)[fname] local ret, nss, ccs = {}, 0, ctx.itersep or '' remove_numeric_keys(opts, 1, 1) flush_params( ctx, function (key, val) opts[1] = val ret[nss + 1] = ccs ret[nss + 2] = mfunc(ctx.frame:newChild(model)) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|magic_for_each_value|parser function|[append 1] -- |[append 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named -- param n=value n]|[...] library.magic_for_each_value = function (ctx) local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘magic_for_each_value’: No parser function was provided', 0) end local ret, nss, ccs = {}, 0, ctx.itersep or '' flush_params( ctx, function (key, val) opts[1] = val ret[nss + 1] = ccs ret[nss + 2] = ctx.frame:callParserFunction(magic, opts) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|call_for_each_group|template name|[append 1]|[append -- 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.call_for_each_group = function (ctx) -- NOTE: `ctx.pipe` and `ctx.params` might be the original metatables! local tmp if ctx.pipe[1] ~= nil then tmp = ctx.pipe[1]:match'^%s*(.*%S)' end if tmp == nil then error(modulename .. ', ‘call_for_each_group’: No template name was provided', 0) end local model = { title = tmp } local opts, ret, nss, ccs = {}, {}, 0, ctx.itersep or '' for key, val in pairs(ctx.pipe) do if type(key) == 'number' then opts[key - 1] = val else opts[key] = val end end ctx.pipe = opts ctx.params = make_groups(ctx.params) flush_params( ctx, function (gid, group) for key, val in pairs(opts) do group[key] = val end group[0] = gid model.args = group ret[nss + 1] = ccs ret[nss + 2] = ctx.frame:expandTemplate(model) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end --- --- --- PUBLIC ENVIRONMENT --- --- ________________________________ --- --- --- --[[ First-position-only modifiers ]]-- --------------------------------------- -- Syntax: #invoke:params|new|pipe to static_iface.new = function (child_frame) local ctx = context_new(child_frame) ctx.pipe = copy_or_ref_table(ctx.opipe, false) ctx.params = {} main_loop(ctx, context_iterate(ctx, 1)) return ctx.text end --[[ First-position-only functions ]]-- --------------------------------------- -- Syntax: #invoke:params|self static_iface.self = function (frame) return frame:getParent():getTitle() end --[[ Public metatable of functions ]]-- --------------------------------------- return setmetatable({}, { __index = function (_, query) local fname = query:match'^%s*(.*%S)' if fname == nil then error(modulename .. ': You must specify a function to call', 0) end local func = static_iface[fname] if func ~= nil then return func end func = library[fname] if func == nil then error(modulename .. ': The function ‘' .. fname .. '’ does not exist', 0) end return function (child_frame) local ctx = context_new(child_frame) ctx.pipe = copy_or_ref_table(ctx.opipe, refpipe[fname]) ctx.params = copy_or_ref_table(ctx.oparams, refparams[fname]) main_loop(ctx, func) return ctx.text end end }) fdgmy2j5zj2k25i8s1rqr5wi8hre2zs Kongko pemaké:OrangKalideres 3 5259 34917 34788 2026-06-23T13:48:09Z Badak Jawa 13 /* Maap ya */ bagèan baru 34917 wikitext text/x-wiki <div style="border:2px solid #f3e4f2; background-color:#ffffff; font-size:95%; margin-bottom : 1em; padding: 5px;">'''Selamet dateng''' di '''[[Wikipédi basa Betawi]]''' !! Buat ngenal kerabat laénnyé, sampéyan bisé isi halaman [[User:{{PAGENAME}}|Pemaké {{PAGENAME}}]] amé beberapé hal nyang perlu sampéyan ketauin, apé lagi tentang bidang apé pun nyang sampéyan minatin. buat urusan téknis: :*kalo sampéyan baru ngenal Wikipédi enih, sampéyan bisé kunjungin halaman [[:mw:Help:Contents/id|pertulungan]] :*sampéyan bisa nanyé atawa ngasi saran tentang wikipédi ini di halaman '''''[[Wikipédi:Saung|saung]]'''''. :*gunain jugé '''[[Wikipédi:Tempat orak-arèk|tempat orak-arék]]''' buat nyobé ngepermak. buat '''nandatanganin''' di halaman kongko, macem halaman enih, ketik &#126;&#126;&#126;&#126; (empat kali tandé gelombang/''tilde''). {|width="100%" |align="right"|'''[[Wikipédi:Babel/bew-0|Kagak bisé basa Betawi (don't speak Batavians)?]]''' |} </div> [[Pemaké:Ariandi Lie|Ariandi Lie]] <sup>[[Kongko pemaké:Ariandi Lie|Ngomong disini baé]]</sup> 29 Juni 2024 21.48 (WIB) </div> </div> </div> ==Minta tolong== Met malem bro, bisa ga lu bikin artikel [[Wikipédi basa Betawi]] di Wikipedia Indonesia? Biar bisa di pranala anter wiki [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 18 Juni 2024 22.24 (WIB) :ni makalahnya masi pendek aja, kalo diunggahnya sependek itu bakal dihapus ama merbot idwiki. Jadi perlu dikembangin.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 18 Juni 2024 22.31 (WIB) ::ok dah. Untuk sementara jangan dibikin baheula di Wikipédi Indonésia kalo gitu biar nunggu makalah nyang ada di mari dikembangkan baheula [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 18 Juni 2024 22.36 (WIB) == [[Wikipedia:Merbot/Rembukan milih merbot/OrangKalideres jadi merbot 26 Juni 2024]] == Halo bro kayaknya lu belon hoki jadi merbot soalnya banyak pemaké pada sibuk èn lu ngajuin diri terlalu buru-buru mangkanya cuma 2 orang doangan nyang milih elu. Gue tutup ya bro [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 5 Juli 2024 17.15 (WIB) :Pan juga entu rembukan sampe 7 ari baru selesai cuman rembukan elu udah lewat 7 ari lebih [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 5 Juli 2024 17.17 (WIB) ==BintangWiki== {{BintangWiki Jawara Wikipédi|Kamsia ya udah bantuin balikin gratilan di mari. Ni BintangWiki buat lu}} [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 22 Sèptèmber 2024 08.57 (WIB) :{{ping|Badak Jawa}} kamsia bang bintangnya.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 22 Sèptèmber 2024 09.10 (WIB) == Minta tolong == Halo OrangKalideres gue suka semangat lu nyalonin diri lagi jadi merbot di mari. Entar kalo lu rembukannya kelar èn lu kepilih tolong apusin daptar pengalihan rusak nyang ada di [[Kongko pemaké:Badak Jawa#Alihan ga' perlu|kongko pemaké gua]] ya soalnya belon gua apusin semua karna kebanyakan [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 21 Nopèmber 2024 14.49 (WIB) :{{Ping|Badak Jawa}} siap dah, bakal di-''laksana''in nanti.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 21 Nopèmber 2024 18.36 (WIB) == Tulung apusin, dong == Uda dituker sablonan {{[[Sablonan:Logat|logat]]}} semua, dibikin alihan juga' ga' bakal kepaké. * [[Sablonan:Kotak lingir logat Bekasih]] * [[Sablonan:Kotak lingir logat Kota]] * [[Sablonan:Kotak lingir logat Kotè]] * [[Sablonan:Kotak lingir logat Tenabang]] * [[Sablonan:Logat Bekasih]] * [[Sablonan:Logat Kotè]] * [[Sablonan:Logat Tenabang]] [[Pemaké:Swarabakti|Swarabakti]] ([[Kongko pemaké:Swarabakti|ngomong]]) 31 Maret 2025 18.43 (WIB) :{{ping|Swarabakti}} {{kelar}}. Kamsia, ya, udah kasi tau.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 31 Maret 2025 18.55 (WIB) == UCDM 2025 == Halo! Gue punya saran nih buat lu. Coba deh lu ikut UCDM 2025 wakilin Wikipédi Betawi ngeja makalah seabrek biar makalahnya bejibun. Mayan ga tuh? Lu juga dapet peris kalo menang [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 23 April 2025 12.02 (WIB) :Gua sih mau aja ngewakilin Betawi cuman karna bukan Orang Betawi jadi ga monès-monès amat basa Betawinya mangkannya gua wakilin Wikipédi Indonésia ama Melayu aja dah [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 23 April 2025 12.04 (WIB) ::{{Ping|Badak Jawa}} apa yg lu maksud [[:m:Ukraine's Cultural Diplomacy Month 2025]], ya? Ayé ikutan, dah, lantaran menarik topiknya😁.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 23 April 2025 13.32 (WIB) :::@[[Pemaké:OrangKalideres|OrangKalideres]] iye, itu nyang gua maksud. Lumayan kan nambah makalah Wikipédi Betawi? [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 23 April 2025 13.51 (WIB) == Peralatan CampaignEvents akan diterapkan di Wikipedia bahasa Betawi == Halo, pengurus Wikipedia bahasa Betawi! Pertama-tama, kami meminta maaf karena mengirimkan pesan ini dalam Bahasa Indonesia. Melalui pengumuman ini, kami dari [[metawiki:Special:MyLanguage/Campaigns/Foundation_Product_Team|Tim Kampanye Wikimedia Foundation]] menginformasikan bahwa Wikipedia bahasa Betawi telah diusulkan menjadi bagian dari tahap kedua [[metawiki:CampaignEvents/Deployment_status|peluncuran peralatan CampaignEvents]]. Peralatan ini akan membantu memudahkan dalam mengelola acara maupun kegiatan yang berlangsung di wiki. Sebagai pengurus, masukan Anda sangat penting karena peralatan ini akan menyertakan hak pengguna baru yang bernama “Penyelenggara acara”. Hak pengguna ini akan diberikan oleh Anda yang dapat memberikan pengguna akses sebagai berikut: * Menghubungi peserta acara melalui surel dalam jumlah besar (untuk Pendaftaran acara). * Mengumpulkan data demografi peserta acara (untuk Pendaftaran acara). * Membuat daftar undangan acara berdasarkan riwayat penyuntingan pengguna (untuk Daftar undangan). Ketika peralatan CampaignEvents diluncurkan di wiki ini, kontributor dengan hak pengguna tersebut dapat [[mediawikiwiki:Event_Center/Registration/Instructions/id#Cara_menggunakan_perkakas:_dari_sisi_penyelenggara|mengatur acara yang dibuat]]. Satu-satunya perkakas yang langsung tersedia setelah CampaignEvents diaktifkan adalah “Daftar acara”, yaitu berupa halaman istimewa yang menampilkan seluruh acara (baik akan dan sedang berlangsung) maupun ProyekWiki yang tersedia. Sebagai persiapan tahap awal, kami menyarankan untuk membuat draf kebijakan atau pedoman berupa kriteria yang diperlukan bagi pengguna dalam mendapatkan hak pengguna “Penyelenggara acara”. Silakan kunjungi halaman terkait di [[metawiki:Meta:Event_organizers|Meta]], [[wikidata:Wikidata:Event_organizers|Wikidata]], dan [[:id:Wikipedia:Penyelenggara_acara|Wikipedia bahasa Indonesia]] untuk contohnya. Untuk korespondesi selengkapnya, jangan sungkan untuk mengunjungi [[metawiki:Talk:CampaignEvents|halaman pembicaraan peralatan]], atau kirimkan surel ke Benedict Udeh (budeh-ctr@wikimedia.org) dan Bonaventura Aditya Perdana (baperdana-ctr@wikimedia.org). Kami mohon bantuannya untuk menyebarkan pesan ini kepada pengurus lainnya. Salam. [[Pemaké:BAPerdana-WMF|BAPerdana-WMF]] ([[Kongko pemaké:BAPerdana-WMF|ngomong]]) 25 April 2025 00.30 (WIB) == Notice of expiration of your sysop right == <div dir="ltr">Hi, as part of [[:m:Special:MyLanguage/Global reminder bot|Global reminder bot]], this is an automated reminder to let you know that your permission "sysop" (Merbot) will expire on 2025-05-28 07:35:20. Please renew this right if you would like to continue using it. <i>In other languages: [[:m:Special:MyLanguage/Global reminder bot/Messages/default|click here]]</i> [[Pemaké:Leaderbot|Leaderbot]] ([[Kongko pemaké:Leaderbot|ngomong]]) 22 Méi 2025 02.42 (WIB)</div> == Undangan sarasehan pengurus 2025 == Halo, Anda menerima pesan ini sebagai salah satu [[m:Administrators of Wikimedia projects/Indonesian projects|pengurus proyek-proyek Wikimedia dalam bahasa yang dipertuturkan di Indonesia]]. Kami mengharapkan kehadiran Anda dalam sarasehan tahunan pengurus Wikipedia Bahasa Indonesia yang akan berlangsung pada: * Hari: Minggu, 17 Agustus 2025 * Waktu: 90 menit, dimulai pukul 15.00 WIB / 16.00 WITA / 17.00 WIT * Tempat: Ruang obrolan daring Zoom (pranala dibagikan kepada yang mendaftar di bawah via surel) Anda dapat mendaftar dengan [[w:id:Wikipedia:Pengurus/Sarasehan/2025#Peserta|membubuhkan tanda tangan di sini]] dan [[w:id:Wikipedia:Pengurus/Sarasehan/2025#Agenda|menambahkan usulan agenda untuk dibahas di sini]]. Terima kasih dan salam, [[Pemaké:David Wadie Fisher-Freberg|David Wadie Fisher-Freberg]] ([[Kongko pemaké:David Wadie Fisher-Freberg|ngomong]]) 6 Agustus 2025 14.09 (WIB) == Rembukan milih merbot == Halo! Aye ngajuin diri lagi jadi merbot buat bantuin lu. Tulung kasi sablonan akur di [[Wikipédi:Merbot/Rembukan milih merbot/Badak Jawa jadi merbot 27 Sèptèmber 2025]] ya. Kamsia [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 27 Sèptèmber 2025 18.49 (WIB) :{{Kelar}} [[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 27 Sèptèmber 2025 19.05 (WIB) == Usulan dari gua == Halo OrangKalideres gua mau usul nih gimana kalo halaman rembukan milih merbot nya kita kunci biar kaga ada yang bisa gratilin? Lu akur kaga? [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 27 Nopèmber 2025 20.28 (WIB) :Biar bisa negesin sablonan rembukan ditutup nya kalo entu rembukan kaga boleh dipermak ama siapapun [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 27 Nopèmber 2025 20.35 (WIB) ::Kalo lu akur gua bisa langsung kunci sekarang nih halaman rembukan nya [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 27 Nopèmber 2025 20.40 (WIB) :::{{Ping|Badak Jawa}} kalo kata gua, si, kaga' akur. gua rasa kalo entu halaman kaya'nya kaga' perlu dilindungin bahna ada kemungkinan kena gratilnya kecit pisan, kecuali calon merbotnya entu nyang kontroversial di wiki apa aja (mis. Ariandi Lie). Èn ampé wayah gini, kaga' ada pemaké kontroversial nyang nyalonin jadi merbot.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 28 Nopèmber 2025 19.32 (WIB) ::::Ya udah deh gua ga jadi kunci halaman rembukannya. Kamsiah sudah nanggepin gua ya [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 28 Nopèmber 2025 20.23 (WIB) == Pemontenan Bulan Asia Wikipedia 2025 di Wikipédi Indonésia == Tolong kelarin pemontenan Fountain Bulan Asia Wikipedia 2025 sekarang juga karna mau gua tambahin di [https://meta.wikimedia.org/wiki/Wikipedia_Asian_Month_2025/Golden_Award sini] soalnya ini hari terakhir pemontenan nya [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 1 Januari 2026 09.45 :Kalo kaga ada jawaban dari lu pemontenan nya di anggap udah kelar biar kata tinggal lu beloman nyang kelarin entu pemontenan nya :[[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 1 Januari 2026 09.50 (WIB) == You may be an eligible candidate for the U4C election == <div lang="en" dir="ltr" class="mw-content-ltr"> Greetings, The [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee|Universal Code of Conduct Coordinating Committee (U4C)]] seeks candidates for the 2026 election. The U4C is the global committee responsible for overseeing enforcement of the [[foundation:Special:MyLanguage/Policy:Universal Code of Conduct|Universal Code of Conduct]]. Elections are held annually, if elected a committee member serves for two years. This year the U4C requires candidates to hold administrator rights on at least one wiki, which is why you are being contacted as you appear to hold this right. There are other requirements, such as candidates must be at least 18 years old and may not be employed by the Wikimedia Foundation or other related chapters and affiliates. You can find more information in the [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2026#Call_for_Candidates|call for candidates on Meta-wiki]]. Additionally, the committee's working language is English; some ability to communicate in English is required. The election opens on 18 May, if you are eligible and interested you have until 10 May to submit your candidacy. There will week between for candidates to answer questions from the community. Voting takes place privately in [[m:Special:MyLanguage/SecurePoll|SecurePoll]], successful candidates must receive at least 60% support. More information is available on [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2026|the 2026 Elections page]], including timelines and other candidacy information. If you read over the material and consider yourself qualified, please consider submitting your name to run for the committee. If you think someone else in your community might be interested and qualified, please encourage them to run. In partnership with the U4C -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User_talk:Keegan (WMF)|talk]]) 29 April 2026 01.30 (WIB) </div> <!-- Pesan dikirim oleh Pengguna:Keegan (WMF)@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=User:Keegan_(WMF)/test&oldid=30471712 --> == Notice of expiration of your sysop right == <div dir="ltr">Hi, as part of [[:m:Special:MyLanguage/Global reminder bot|Global reminder bot]], this is an automated reminder to let you know that your permission "sysop" (Merbot) will expire on 2026-06-03 17:04:04. Please renew this right if you would like to continue using it. <i>In other languages: [[:m:Special:MyLanguage/Global reminder bot/Messages/default|click here]]</i> [[Pemaké:Leaderbot|Leaderbot]] ([[Kongko pemaké:Leaderbot|ngomong]]) 28 Méi 2026 02.42 (WIB)</div> == Maap ya == Halo OrangKalideres maap ya karna wayah gini aye belon patroli bewwiki saking lupanya ni Wikipédi rawan banget di gratilin orang. Abisnya sih ni Wikipédi biasanya sepi kaga ada yang gratilin [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 23 Juni 2026 20.48 (WIB) jakn744zpou3hmiufdo1ur4qlxzhnah 34918 34917 2026-06-23T13:54:50Z Badak Jawa 13 /* Maap ya */ Bales 34918 wikitext text/x-wiki <div style="border:2px solid #f3e4f2; background-color:#ffffff; font-size:95%; margin-bottom : 1em; padding: 5px;">'''Selamet dateng''' di '''[[Wikipédi basa Betawi]]''' !! Buat ngenal kerabat laénnyé, sampéyan bisé isi halaman [[User:{{PAGENAME}}|Pemaké {{PAGENAME}}]] amé beberapé hal nyang perlu sampéyan ketauin, apé lagi tentang bidang apé pun nyang sampéyan minatin. buat urusan téknis: :*kalo sampéyan baru ngenal Wikipédi enih, sampéyan bisé kunjungin halaman [[:mw:Help:Contents/id|pertulungan]] :*sampéyan bisa nanyé atawa ngasi saran tentang wikipédi ini di halaman '''''[[Wikipédi:Saung|saung]]'''''. :*gunain jugé '''[[Wikipédi:Tempat orak-arèk|tempat orak-arék]]''' buat nyobé ngepermak. buat '''nandatanganin''' di halaman kongko, macem halaman enih, ketik &#126;&#126;&#126;&#126; (empat kali tandé gelombang/''tilde''). {|width="100%" |align="right"|'''[[Wikipédi:Babel/bew-0|Kagak bisé basa Betawi (don't speak Batavians)?]]''' |} </div> [[Pemaké:Ariandi Lie|Ariandi Lie]] <sup>[[Kongko pemaké:Ariandi Lie|Ngomong disini baé]]</sup> 29 Juni 2024 21.48 (WIB) </div> </div> </div> ==Minta tolong== Met malem bro, bisa ga lu bikin artikel [[Wikipédi basa Betawi]] di Wikipedia Indonesia? Biar bisa di pranala anter wiki [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 18 Juni 2024 22.24 (WIB) :ni makalahnya masi pendek aja, kalo diunggahnya sependek itu bakal dihapus ama merbot idwiki. Jadi perlu dikembangin.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 18 Juni 2024 22.31 (WIB) ::ok dah. Untuk sementara jangan dibikin baheula di Wikipédi Indonésia kalo gitu biar nunggu makalah nyang ada di mari dikembangkan baheula [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 18 Juni 2024 22.36 (WIB) == [[Wikipedia:Merbot/Rembukan milih merbot/OrangKalideres jadi merbot 26 Juni 2024]] == Halo bro kayaknya lu belon hoki jadi merbot soalnya banyak pemaké pada sibuk èn lu ngajuin diri terlalu buru-buru mangkanya cuma 2 orang doangan nyang milih elu. Gue tutup ya bro [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 5 Juli 2024 17.15 (WIB) :Pan juga entu rembukan sampe 7 ari baru selesai cuman rembukan elu udah lewat 7 ari lebih [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 5 Juli 2024 17.17 (WIB) ==BintangWiki== {{BintangWiki Jawara Wikipédi|Kamsia ya udah bantuin balikin gratilan di mari. Ni BintangWiki buat lu}} [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 22 Sèptèmber 2024 08.57 (WIB) :{{ping|Badak Jawa}} kamsia bang bintangnya.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 22 Sèptèmber 2024 09.10 (WIB) == Minta tolong == Halo OrangKalideres gue suka semangat lu nyalonin diri lagi jadi merbot di mari. Entar kalo lu rembukannya kelar èn lu kepilih tolong apusin daptar pengalihan rusak nyang ada di [[Kongko pemaké:Badak Jawa#Alihan ga' perlu|kongko pemaké gua]] ya soalnya belon gua apusin semua karna kebanyakan [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 21 Nopèmber 2024 14.49 (WIB) :{{Ping|Badak Jawa}} siap dah, bakal di-''laksana''in nanti.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 21 Nopèmber 2024 18.36 (WIB) == Tulung apusin, dong == Uda dituker sablonan {{[[Sablonan:Logat|logat]]}} semua, dibikin alihan juga' ga' bakal kepaké. * [[Sablonan:Kotak lingir logat Bekasih]] * [[Sablonan:Kotak lingir logat Kota]] * [[Sablonan:Kotak lingir logat Kotè]] * [[Sablonan:Kotak lingir logat Tenabang]] * [[Sablonan:Logat Bekasih]] * [[Sablonan:Logat Kotè]] * [[Sablonan:Logat Tenabang]] [[Pemaké:Swarabakti|Swarabakti]] ([[Kongko pemaké:Swarabakti|ngomong]]) 31 Maret 2025 18.43 (WIB) :{{ping|Swarabakti}} {{kelar}}. Kamsia, ya, udah kasi tau.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 31 Maret 2025 18.55 (WIB) == UCDM 2025 == Halo! Gue punya saran nih buat lu. Coba deh lu ikut UCDM 2025 wakilin Wikipédi Betawi ngeja makalah seabrek biar makalahnya bejibun. Mayan ga tuh? Lu juga dapet peris kalo menang [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 23 April 2025 12.02 (WIB) :Gua sih mau aja ngewakilin Betawi cuman karna bukan Orang Betawi jadi ga monès-monès amat basa Betawinya mangkannya gua wakilin Wikipédi Indonésia ama Melayu aja dah [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 23 April 2025 12.04 (WIB) ::{{Ping|Badak Jawa}} apa yg lu maksud [[:m:Ukraine's Cultural Diplomacy Month 2025]], ya? Ayé ikutan, dah, lantaran menarik topiknya😁.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 23 April 2025 13.32 (WIB) :::@[[Pemaké:OrangKalideres|OrangKalideres]] iye, itu nyang gua maksud. Lumayan kan nambah makalah Wikipédi Betawi? [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 23 April 2025 13.51 (WIB) == Peralatan CampaignEvents akan diterapkan di Wikipedia bahasa Betawi == Halo, pengurus Wikipedia bahasa Betawi! Pertama-tama, kami meminta maaf karena mengirimkan pesan ini dalam Bahasa Indonesia. Melalui pengumuman ini, kami dari [[metawiki:Special:MyLanguage/Campaigns/Foundation_Product_Team|Tim Kampanye Wikimedia Foundation]] menginformasikan bahwa Wikipedia bahasa Betawi telah diusulkan menjadi bagian dari tahap kedua [[metawiki:CampaignEvents/Deployment_status|peluncuran peralatan CampaignEvents]]. Peralatan ini akan membantu memudahkan dalam mengelola acara maupun kegiatan yang berlangsung di wiki. Sebagai pengurus, masukan Anda sangat penting karena peralatan ini akan menyertakan hak pengguna baru yang bernama “Penyelenggara acara”. Hak pengguna ini akan diberikan oleh Anda yang dapat memberikan pengguna akses sebagai berikut: * Menghubungi peserta acara melalui surel dalam jumlah besar (untuk Pendaftaran acara). * Mengumpulkan data demografi peserta acara (untuk Pendaftaran acara). * Membuat daftar undangan acara berdasarkan riwayat penyuntingan pengguna (untuk Daftar undangan). Ketika peralatan CampaignEvents diluncurkan di wiki ini, kontributor dengan hak pengguna tersebut dapat [[mediawikiwiki:Event_Center/Registration/Instructions/id#Cara_menggunakan_perkakas:_dari_sisi_penyelenggara|mengatur acara yang dibuat]]. Satu-satunya perkakas yang langsung tersedia setelah CampaignEvents diaktifkan adalah “Daftar acara”, yaitu berupa halaman istimewa yang menampilkan seluruh acara (baik akan dan sedang berlangsung) maupun ProyekWiki yang tersedia. Sebagai persiapan tahap awal, kami menyarankan untuk membuat draf kebijakan atau pedoman berupa kriteria yang diperlukan bagi pengguna dalam mendapatkan hak pengguna “Penyelenggara acara”. Silakan kunjungi halaman terkait di [[metawiki:Meta:Event_organizers|Meta]], [[wikidata:Wikidata:Event_organizers|Wikidata]], dan [[:id:Wikipedia:Penyelenggara_acara|Wikipedia bahasa Indonesia]] untuk contohnya. Untuk korespondesi selengkapnya, jangan sungkan untuk mengunjungi [[metawiki:Talk:CampaignEvents|halaman pembicaraan peralatan]], atau kirimkan surel ke Benedict Udeh (budeh-ctr@wikimedia.org) dan Bonaventura Aditya Perdana (baperdana-ctr@wikimedia.org). Kami mohon bantuannya untuk menyebarkan pesan ini kepada pengurus lainnya. Salam. [[Pemaké:BAPerdana-WMF|BAPerdana-WMF]] ([[Kongko pemaké:BAPerdana-WMF|ngomong]]) 25 April 2025 00.30 (WIB) == Notice of expiration of your sysop right == <div dir="ltr">Hi, as part of [[:m:Special:MyLanguage/Global reminder bot|Global reminder bot]], this is an automated reminder to let you know that your permission "sysop" (Merbot) will expire on 2025-05-28 07:35:20. Please renew this right if you would like to continue using it. <i>In other languages: [[:m:Special:MyLanguage/Global reminder bot/Messages/default|click here]]</i> [[Pemaké:Leaderbot|Leaderbot]] ([[Kongko pemaké:Leaderbot|ngomong]]) 22 Méi 2025 02.42 (WIB)</div> == Undangan sarasehan pengurus 2025 == Halo, Anda menerima pesan ini sebagai salah satu [[m:Administrators of Wikimedia projects/Indonesian projects|pengurus proyek-proyek Wikimedia dalam bahasa yang dipertuturkan di Indonesia]]. Kami mengharapkan kehadiran Anda dalam sarasehan tahunan pengurus Wikipedia Bahasa Indonesia yang akan berlangsung pada: * Hari: Minggu, 17 Agustus 2025 * Waktu: 90 menit, dimulai pukul 15.00 WIB / 16.00 WITA / 17.00 WIT * Tempat: Ruang obrolan daring Zoom (pranala dibagikan kepada yang mendaftar di bawah via surel) Anda dapat mendaftar dengan [[w:id:Wikipedia:Pengurus/Sarasehan/2025#Peserta|membubuhkan tanda tangan di sini]] dan [[w:id:Wikipedia:Pengurus/Sarasehan/2025#Agenda|menambahkan usulan agenda untuk dibahas di sini]]. Terima kasih dan salam, [[Pemaké:David Wadie Fisher-Freberg|David Wadie Fisher-Freberg]] ([[Kongko pemaké:David Wadie Fisher-Freberg|ngomong]]) 6 Agustus 2025 14.09 (WIB) == Rembukan milih merbot == Halo! Aye ngajuin diri lagi jadi merbot buat bantuin lu. Tulung kasi sablonan akur di [[Wikipédi:Merbot/Rembukan milih merbot/Badak Jawa jadi merbot 27 Sèptèmber 2025]] ya. Kamsia [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 27 Sèptèmber 2025 18.49 (WIB) :{{Kelar}} [[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 27 Sèptèmber 2025 19.05 (WIB) == Usulan dari gua == Halo OrangKalideres gua mau usul nih gimana kalo halaman rembukan milih merbot nya kita kunci biar kaga ada yang bisa gratilin? Lu akur kaga? [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 27 Nopèmber 2025 20.28 (WIB) :Biar bisa negesin sablonan rembukan ditutup nya kalo entu rembukan kaga boleh dipermak ama siapapun [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 27 Nopèmber 2025 20.35 (WIB) ::Kalo lu akur gua bisa langsung kunci sekarang nih halaman rembukan nya [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 27 Nopèmber 2025 20.40 (WIB) :::{{Ping|Badak Jawa}} kalo kata gua, si, kaga' akur. gua rasa kalo entu halaman kaya'nya kaga' perlu dilindungin bahna ada kemungkinan kena gratilnya kecit pisan, kecuali calon merbotnya entu nyang kontroversial di wiki apa aja (mis. Ariandi Lie). Èn ampé wayah gini, kaga' ada pemaké kontroversial nyang nyalonin jadi merbot.[[Pemaké:OrangKalideres|OrangKalideres]] ([[Kongko pemaké:OrangKalideres|ngomong]]) 28 Nopèmber 2025 19.32 (WIB) ::::Ya udah deh gua ga jadi kunci halaman rembukannya. Kamsiah sudah nanggepin gua ya [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 28 Nopèmber 2025 20.23 (WIB) == Pemontenan Bulan Asia Wikipedia 2025 di Wikipédi Indonésia == Tolong kelarin pemontenan Fountain Bulan Asia Wikipedia 2025 sekarang juga karna mau gua tambahin di [https://meta.wikimedia.org/wiki/Wikipedia_Asian_Month_2025/Golden_Award sini] soalnya ini hari terakhir pemontenan nya [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 1 Januari 2026 09.45 :Kalo kaga ada jawaban dari lu pemontenan nya di anggap udah kelar biar kata tinggal lu beloman nyang kelarin entu pemontenan nya :[[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 1 Januari 2026 09.50 (WIB) == You may be an eligible candidate for the U4C election == <div lang="en" dir="ltr" class="mw-content-ltr"> Greetings, The [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee|Universal Code of Conduct Coordinating Committee (U4C)]] seeks candidates for the 2026 election. The U4C is the global committee responsible for overseeing enforcement of the [[foundation:Special:MyLanguage/Policy:Universal Code of Conduct|Universal Code of Conduct]]. Elections are held annually, if elected a committee member serves for two years. This year the U4C requires candidates to hold administrator rights on at least one wiki, which is why you are being contacted as you appear to hold this right. There are other requirements, such as candidates must be at least 18 years old and may not be employed by the Wikimedia Foundation or other related chapters and affiliates. You can find more information in the [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2026#Call_for_Candidates|call for candidates on Meta-wiki]]. Additionally, the committee's working language is English; some ability to communicate in English is required. The election opens on 18 May, if you are eligible and interested you have until 10 May to submit your candidacy. There will week between for candidates to answer questions from the community. Voting takes place privately in [[m:Special:MyLanguage/SecurePoll|SecurePoll]], successful candidates must receive at least 60% support. More information is available on [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2026|the 2026 Elections page]], including timelines and other candidacy information. If you read over the material and consider yourself qualified, please consider submitting your name to run for the committee. If you think someone else in your community might be interested and qualified, please encourage them to run. In partnership with the U4C -- [[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User_talk:Keegan (WMF)|talk]]) 29 April 2026 01.30 (WIB) </div> <!-- Pesan dikirim oleh Pengguna:Keegan (WMF)@metawiki dengan menggunakan daftar di https://meta.wikimedia.org/w/index.php?title=User:Keegan_(WMF)/test&oldid=30471712 --> == Notice of expiration of your sysop right == <div dir="ltr">Hi, as part of [[:m:Special:MyLanguage/Global reminder bot|Global reminder bot]], this is an automated reminder to let you know that your permission "sysop" (Merbot) will expire on 2026-06-03 17:04:04. Please renew this right if you would like to continue using it. <i>In other languages: [[:m:Special:MyLanguage/Global reminder bot/Messages/default|click here]]</i> [[Pemaké:Leaderbot|Leaderbot]] ([[Kongko pemaké:Leaderbot|ngomong]]) 28 Méi 2026 02.42 (WIB)</div> == Maap ya == Halo OrangKalideres maap ya karna wayah gini aye belon patroli bewwiki saking lupanya ni Wikipédi rawan banget di gratilin orang. Abisnya sih ni Wikipédi biasanya sepi kaga ada yang gratilin [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 23 Juni 2026 20.48 (WIB) :Tapi lu bisa lega dah karna gua udah gibang akun sementara èn rentang IP nya [[Pemaké:Badak Jawa|Badak Jawa]] ([[Kongko pemaké:Badak Jawa|ngomong]]) 23 Juni 2026 20.54 (WIB) c93tncl9o5b7iv7umdqtu84hredq7dl Sablonan:Recent changes article requests/list 10 5798 34921 24506 2026-06-24T02:27:40Z ~2026-36376-65 3737 /* */ 34921 wikitext text/x-wiki <noinclude>:Permintaan baru silakan diajukan lewat [[Wikipedia:Permintaan makalah]]</noinclude><!-- ================== ================== ================== CATATAN! Urutan berdasarkan ABJAD (tidak lagi berdasarkan WAKTU PERMINTAAN) ================== ================== ================== --><includeonly>{{select parameter|jamaah={{{n}}} |maximum length = 250 <!-- If articles exceed this number of characters, no more will be added to list --></includeonly> |[[Ahmad Basuni]] |[[Ajin: Demi-Human]] ([[:en:Ajin: Demi-Human|en]]) |[[Al-Jarrah bin Abdullah]] ([[:en:Al-Jarrah ibn Abdallah|en]]) |[[Al-Muhallab bin Abi Shufrah]] ([[:en:Al-Muhallab ibn Abi Sufra|en]]) |[[Alf Ramsey]] ([[:en:Alf Ramsey|en]]) |[[Aluchin (gunung berapi)]] ([[:en:Aluchin (volcano)|en]]) |[[Antofagasta de la Sierra]] ([[:en:Antofagasta de la Sierra|en]]) |[[Anyuyskiy]] ([[:en:Anyuyskiy|en]]) |[[Aracar]] ([[:en:Aracar|en]]) |[[Armed Forces Research Institute of Medical Sciences]] ([[:en:Armed Forces Research Institute of Medical Sciences|en]]) |[[Attab bin Asid]] ([[:en:Attab ibn Asid|en]]) |[[Bank Alexa]] ([[:en:Alexa Bank|en]]) |[[Batu Garam]] ([[:sv:Batu Garam|sv]]) ([[:ceb:Batu Garam|ceb]]) |[[Bazman]] ([[:en:Bazman|en]]) |[[Berti Vogts]] ([[:en:Berti Vogts|en]]) |[[Bukit Igwisi]] ([[:en:Igwisi Hills|en]]) |[[Bunting ortolan]] ([[:en:Ortolan bunting|en]]) |[[Cerro Chao]] ([[:en:Cerro Chao|en]]) |[[Chiliques]] ([[:en:Chiliques|en]]) |[[Claremont Colleges]] ([[:en:Claremont Colleges|en]]) |[[Cláudio Taffarel]] ([[:en:Cláudio Taffarel|en]]) |[[Cordón de Puntas Negras]] ([[:en:Cordón de Puntas Negras|en]]) |[[Cordón del Azufre]] ([[:en:Cordón del Azufre|en]]) |[[Daftar episode The Cosby Show]] ([[:en:List of The Cosby Show episodes|en]]) |[[Daftar gubernur Basra]] ([[:ar:قائمة ولاة البصرة|ar]]) |[[Danau Corcoran]] ([[:en:Lake Corcoran|en]]) |[[Danau Minchin]] ([[:en:Lake Minchin|en]]) |[[Danau Palomas]] ([[:en:Lake Palomas|en]]) |[[Dataran tinggi Udokan]] ([[:en:Udokan Plateau|en]]) |[[Dengeki Bunko: Fighting Climax]] ([[:en:Dengeki Bunko: Fighting Climax|en]]) |[[Departemen Pemasyarakatan (Thailand)]] ([[:en:Department of Corrections (Thailand)|en]]) <!--http://www.correct.go.th/eng/correcteng/prisoner_handbook/Indonesian.pdf TIDAK BERFUNGSI LAGI--> |[[Ekspedisi Nansen's Fram]] ([[:en:Nansen's Fram Expedition|en]]) |[[Ekspedisi Shackleton-Rowett]] ([[:en:Shackleton-Rowett Expedition|en]]) |[[Fate/Apocrypha]] ([[:en:Fate/Apocrypha|en]]) |[[Fate/Zero]] ([[:en:Fate/Zero|en]]) |[[Feromon kucing]] ([[:en:Cat pheromone|en]]) |[[Fred Whipple]] ([[:en:Fred Whipple|en]]) |[[Friedrich Christoph Dahlmann]] ([[:en:Friedrich Christoph Dahlmann|en]]) |[[Genetik bulu kucing]] ([[:en:Cat coat genetics|en]]) |[[Guar]] ([[:en:Cyamopsis tetragonoloba|en]]) |[[Gum guar]] ([[:en:Gum guar|en]]) |[[Gunung Berlin]] ([[:en:Mount Berlin|en]]) |[[Gunung laut Macdonald]] ([[:en:Macdonald seamount|en]]) |[[Guyot MIT]] ([[:en:MIT Guyot|en]]) |[[Günter Netzer]] ([[:en:Günter Netzer|en]]) |[[Hans, Count von Bülow]] ([[:en:Hans, Count von Bülow|en]]) |[[Hazn bin Abi Wahb]] ([[:ar:حزن بن أبي وهب|ar]]) |[[Heinrich von Sybel]] ([[:en:Heinrich von Sybel|en]]) |[[Hotel Mercure Pantai Indah]]<!-- (dahulu Hotel Horison Jakarta)--> |[[Hualca Hualca]] ([[:en:Hualca Hualca|en]]) |[[Jagged Alliance 2]] ([[:en:Jagged Alliance 2|en]]) |[[Jaime Moreno]] ([[:en:Jaime Moreno|en]]) |[[Jalan lewat]] ([[:en:Walkthrough|en]]) |[[Jan Boldingh]] ([[:en:Jan Boldingh|en]]) |[[Jargon matematika]] ([[:en:Mathematical jargon|en]]) |[[Johann Joseph von Görres]] ([[:en:Johann Joseph von Görres|en]]) |[[John Adair]] ([[:en:John Adair|en]]) |[[John Lerew]] ([[:en:John Lerew|en]]) |[[Jom-Bolok volcanic field]] ([[:en:Jom-Bolok volcanic field|en]]) |[[Joseph Maria von Radowitz]] ([[:en:Joseph Maria von Radowitz|en]]) |[[Joseph Salvador Marino]] ([[:de:Joseph Salvador Marino|de]]) |[[Josh Stewart]] ([[:en:Josh Stewart|en]]) |[[Jotabeche]] ([[:en:Jotabeche|en]]) |[[Kambalny]] ([[:en:Kambalny|en]]) |[[Kari-Kari]] ([[:en:Kari-Kari (caldera)|en]] |[[Karl Baedeker]] ([[:en:Karl Baedeker|en]]) |[[Karl Blind]] ([[:en:Karl Blind|en]]) |[[Karl Philipp von Wrede]] ([[:en:Karl Philipp von Wrede|en]]) |[[Kebebasan (logika matematika)]] ([[:en:Independence (mathematical logic)|en]]) |[[Keluarga Darwin–Wedgwood]] ([[:en:Darwin–Wedgwood family|en]]) |[[Keluarga Huxley]] ([[:en:Huxley family|en]]) |[[Kendaraan tanpa emisi]] ([[:en:Zero-emissions vehicle|en]]) |[[Kesehatan ibu dan bayi]] |[[Klasifikasi alat musik]] ([[:en:Musical instrument classification|en]]) |[[Kode darurat rumah sakit]] ([[:en:Hospital emergency codes|en]]) |[[Kompleks gunung berapi Altiplano–Puna]] ([[:en:Altiplano–Puna volcanic complex|en]]) |[[Kompleks gunung berapi Apacheta-Aguilucho]] ([[:en:Apacheta-Aguilucho volcanic complex|en]]) |[[Komunikasi interdipliner dalam keperawatan]] |[[Kratylos (dialog)]] ([[:en:Cratylus (dialogue)|en]]) |[[Kriton]] ([[:en:Crito|en]]) |[[Kumpulan Dacht-i-Navar]] ([[:en:Dacht-i-Navar Group|en]]) |[[Kunjungan Raja Willem-Alexander ke Indonesia]] (2020) |[[LST kelas-Ōsumi]] ([[:en:Ōsumi-class tank landing ship|en]]) |[[Laguna Amarga]] ([[:en:Laguna Amarga|en]]) |[[Lalat zaitun]] ([[:en:Olive oil flies|en]]) |[[Lambertus Jitmau]] |[[Lamyai Haithongkham]] ([[:en:Lamyai Haithongkham|en]]) |[[Lapangan udara Henderson (Guadalkanal)]] ([[:en:Henderson Field (Guadalcanal)|en]]) |[[Lapangan udara Henderson (Midway)]] ([[:en:Henderson Field (Midway)|en]]) |[[Larbre Compétition]] ([[:en:Larbre Compétition|en]]) |[[Louis Oosthuizen]] ([[:en:Louis Oosthuizen|en]]) |[[Lvinaya Past]] ([[:en:Lvinaya Past|en]]) |[[Manajemen pupuk]] |[[Mansoor]] ([[:en:Mansoor (wrestler)|en]]) |[[Manuel Mejuto González]] ([[:en:Manuel Mejuto González|en]]) |[[Maria Stella]] ([[:en:Maria Stella|en]]) |[[Max Schneckenburger]] ([[:en:Max Schneckenburger|en]]) |[[Melimoyu]] ([[:en:Melimoyu|en]]) |[[Mes-ag-tshoms]] ([[:en:Mes-ag-tshoms|en]]) |[[Micajah Autry]] ([[:en:Micajah Autry|en]]) |[[Michelle Leslie]] ([[:en:Michelle Leslie|en]]) |[[Mini WRC Team]] ([[:en:Mini WRC Team|en]]) |[[Mobbing]] ([[:en:Mobbing|en]]) |[[Moneeb Josephs]] ([[:en:Moneeb Josephs|en]]) |[[Monica's Gang]] ([[:en:Monica's Gang|en]]) |[[Monsit Khamsoi]] ([[:en:Monsit Khamsoi|en]]) |[[Moukdavanh Santiphone]] ([[:th:มุกดาวัน สันติพอน|th]]) |[[Musa bin Nusair]] ([[:en:Musa ibn Nusayr|en]]) |[[Musyawarah Guru Mata Pelajaran]] |[[Mutisalah]] ([[:en:Mutisalah|en]]) |[[N. John Habraken]] ([[:en:N. John Habraken|en]]) |[[NALISTIC]] ([[:en:NALISTIC|en]]) |[[Natapohn Tameeruks]] ([[:en:Natapohn Tameeruks|en]]) |[[Neil Abercrombie]] ([[:en:Neil Abercrombie|en]]) |[[Nevado Tres Cruces]] ([[:en:Nevado Tres Cruces|en]]) |[[Newman/Haas Racing]] ([[:en:Newman/Haas Racing|en]]) |[[Noknoi Uraiporn]] ([[:en:Noknoi Uraiporn|en]]) |[[Ocean Racing Technology]] ([[:en:Ocean Racing Technology|en]]) |[[Ouki]] ([[:en:Ouki|en]]) |[[Paniri]] ([[:en:Paniri|en]]) |[[Param]] ([[:en:Param|en]]) |[[Parmenides (dialog)]] ([[:en:Parmenides (dialogue)|en]]) |[[Pegawai negeri tidak tetap]] |[[Pembalap gravitasi]] ([[:en:Gravity racer|en]]) |[[Peng-Peng Gong]] ([[:en:Peng-Peng Gong|en]]) |[[Penggalan (sastra)]] ([[:en:Caesura|en]]) |[[Penyangkalan (hukum)]] ([[:en:Disclaimer|en]]) |[[Perang FISA-FOCA]] ([[:en:FISA-FOCA war|en]]) |[[Perselisihan FIA-FOTA]] ([[:en:FIA–FOTA dispute|en]]) |[[Peter Fröjdfeldt]] ([[:en:Peter Fröjdfeldt|en]]) |[[Peter Green]] ([[:en:Peter Green (referee)|en]]) |[[Peter James Bailey III]] ([[:en:Peter James Bailey III|en]]) |[[Piala Asia Timur EAFF]] ([[:en:EAFF East Asian Cup|en]]) |[[Pichu Pichu]] ([[:en:Pichu Pichu|en]]) |[[Pirgel]] ([[:en:Pirgel|en]]) |[[Pola spekel]] ([[:en:Speckle pattern|en]]) |[[Pomona College]] ([[:en:Pomona College|en]], [[:simple:Pomona College|s.en.]]) |[[Protagoras (dialog)]] ([[:en:Protagoras (dialogue)|en]]) |[[Puchuldiza]] ([[:en:Puchuldiza|en]]) |[[Putana (gunung berapi)]] ([[:en:Putana (volcano)|en]]) |[[Qal'eh Hasan Ali]] ([[:en:Qal'eh Hasan Ali|en]]) |[[Quimsachata]] ([[:en:Quimsachata (Canchis)|en]]) |[[Rainer Zepperitz]] ([[:en:Rainer Zepperitz|en]]) |[[Ramandu]] ([[:en:Ramandu|en]]) |[[Rapax Team]] ([[:en:Rapax Team|en]]) |[[Reverend Ike]] ([[:en:Reverend Ike|en]]) |[[Ricardo Clark]] ([[:en:Ricardo Clark|en]]) |[[Richie Regehr]] ([[:en:Richie Regehr|en]]) |[[Robert E. Cochran]] ([[:en:Robert E. Cochran|en]]) |[[Robyn Regehr]] ([[:en:Robyn Regehr|en]]) |[[Ronald Bronstein]] ([[:en:Ronald Bronstein|en]]) |[[Rumah Sakit Umum Daerah Sele Be Solu]] |[[Sairecabur]] ([[:en:Sairecabur|en]]) |[[Samuel J. Aquila]] ([[:en:Samuel J. Aquila|en]]) |[[Saraṇa Bhikkhu]] ([[:es:Saraṇa Bhikkhu|es]]) |[[Serikat]] |[[Shadia Marhaban]] ([[:en:Shadia Marhaban|en]]) |[[Shift (Narnia)]] ([[:en:Shift (Narnia)|en]]) |[[Simona Senoner]] ([[:en:Simona Senoner|en]]) |[[Skandal NASCAR Gatorade Duel tahun 2007]] ([[:en:2007 NASCAR Gatorade Duel scandal|en]]) |[[Solimana (gunung berapi)]] ([[:en:Solimana (volcano)|en]]) |[[Solomon P. Sharp]] ([[:en:Solomon P. Sharp|en]]) |[[Somjit Borthong]] ([[:th:สมจิตร บ่อทอง|th]]) |[[Standar ras]] ([[:en:Breed standard|en]]) |[[Steve Harris (musisi)]] ([[:en:Steve Harris (musician)|en]]) |[[Strebre Delovski]] ([[:en:Strebre Delovski|en]]) |[[Sukeban]] ([[:en:Sukeban|en]]) |[[Sun Hei S.C.]] ([[:en:Sun Hei S.C.|en]]) |[[Suraqah bin Malik]] ([[:ar:سراقة بن مالك|ar]]) |[[Susi Hutapea]] |[[Sylheti Nagari]] ([[:en:Sylheti Nagari|en]]) |[[Sálvio Spínola Fagundes Filho]] ([[:en:Sálvio Spínola Fagundes Filho|en]]) |[[Taryatu-Chulutu]] ([[:en:Taryatu-Chulutu|en]]) |[[Team Air Asia]] ([[:en:Team Air Asia|en]]) |[[Team Astromega]] ([[:en:Team Astromega|en]]) |[[Team Meritus]] ([[:en:Team Meritus|en]]) |[[Ten Kate Racing]] ([[:en:Ten Kate Racing|en]]) |[[Thariq bin Amr]] ([[:en:Tariq ibn Amr|en]]) |[[Timotius Arifin Tedjakusuma]] |[[Tirhuta]] ([[:en:Tirhuta|en]]) |[[Titik panas Arago]] ([[:en:Arago hotspot|en]]) |[[Titik panas Macdonald]] ([[:en:Macdonald hotspot|en]]) |[[Tom Mastny]] ([[:en:Tom Mastny|en]]) |[[Topless]] ([[:en:Toplessness|en]]) |[[Topologi diferensial]] ([[:en:Differential topology|en]]) |[[Ubehebe Craters]] ([[:en:Ubehebe Craters|en]]) |[[Umayyah bin Abi Salt]] ([[:ar:أمية بن أبي الصلت|ar]]) |[[Unit penyedia daya]] ([[:en:Power supply unit (computer)|en]]) |[[Urs Meier]] ([[:en:Urs Meier|en]]) |[[Usia merokok]] ([[:en:Smoking age|en]]) |[[Utbah bin Farqad al-Sulami]] ([[:ar:عتبة بن فرقد السلمي|ar]]) |[[Utsman bin Muhammad bin Abi Sufyan]] ([[:en:Uthman ibn Muhammad ibn Abi Sufyan|en]]) |[[Viabilitas]] ([[:en:Viability|en]]) |[[Vinnie Jones]] ([[:en:Vinnie Jones|en]]) |[[Vladimir Arnold]] ([[:en:Vladimir Arnold|en]]) |[[Walter Hagen]] ([[:en:Walter Hagen|en]]) |[[West Surrey Racing]] ([[:en:West Surrey Racing|en]]) |[[Wiktoria Gasiewska]] ([[:en:Wiktoria Gasiewska|en]]) |[[William Whewell]] ([[:en:William Whewell|en]]) |[[Willie Park, Sr.]] ([[:en:Willie Park, Sr.|en]]) |[[Willy Schmidhamer]] ([[:en:Willy Schmidhamer|en]]) |[[Wolf's Rain]] ([[:en:Wolf's Rain|en]]) |[[XGen Studios]] ([[:en:XGen Studios|en]]) |[[Young Tom Morris]] ([[:en:Young Tom Morris|en]]) |[[Yoko Taro]] ([[:en:Yoko Taro|en]]) |[[Yui Yatyer]] ([[:en:Yui Yatyer|th]]) |[[Simbol nasional Indonesia]] ([[:en:National symbols of Indonesia|en]]) |[[Rick and Morty]] ([[:en:Rick and Morty|en]]) |[[Hutan hujan Biak–Numfoor]] ([[:en:Biak–Numfoor rain forests|en]]) |[[Rampasasa]] ([[:en:Rampasasa|en]]) |[[Silat Melayu]] ([[:en:Silat Melayu|en]]) |[[Lima Prinsip Hidup Berdampingan Secara Damai]] ([[:en:Five Principles of Peaceful Coexistence]]) yang diadopsi ke [[Dasasila Bandung]] |[[Mundaneum]] ([[:en:Mundaneum]]) |Jumlah permintaan = 188 <!-- Number of articles in this list minus about 25 (to allow for existing articles to be skipped) --> <!-- --><includeonly>}}</includeonly><noinclude><!-- ================== ================== Jumlah: 213 (per 2022-12-06) ================== ================== CATATAN! Urutan berdasarkan ABJAD (tidak lagi berdasarkan WAKTU PERMINTAAN) ================== ================== ================== --> Tambahkan permintaan Anda di [[Sablonan:Recent changes article requests/add]] [[Bangsaan:Templat perubahan terbaru]]</noinclude> 6vg0h3w4mwi06m9rv5xlntjyb6i8wah 34922 34921 2026-06-24T03:20:25Z Mtarch11 93 Ngebalikin permakan kejaan [[Special:Contributions/~2026-36376-65|~2026-36376-65]] ([[User talk:~2026-36376-65|kongko]]) ke perbaèkan paling belakangan kejaan [[User:OrangKalideres|OrangKalideres]] 24506 wikitext text/x-wiki <noinclude>:Permintaan baru silakan diajukan lewat [[Wikipedia:Permintaan makalah]]</noinclude><!-- ================== ================== ================== CATATAN! Urutan berdasarkan ABJAD (tidak lagi berdasarkan WAKTU PERMINTAAN) ================== ================== ================== --><includeonly>{{select parameter|n={{{n}}} |maximum length = 250 <!-- If articles exceed this number of characters, no more will be added to list --></includeonly> |[[Ahmad Basuni]] |[[Ajin: Demi-Human]] ([[:en:Ajin: Demi-Human|en]]) |[[Al-Jarrah bin Abdullah]] ([[:en:Al-Jarrah ibn Abdallah|en]]) |[[Al-Muhallab bin Abi Shufrah]] ([[:en:Al-Muhallab ibn Abi Sufra|en]]) |[[Alf Ramsey]] ([[:en:Alf Ramsey|en]]) |[[Aluchin (gunung berapi)]] ([[:en:Aluchin (volcano)|en]]) |[[Antofagasta de la Sierra]] ([[:en:Antofagasta de la Sierra|en]]) |[[Anyuyskiy]] ([[:en:Anyuyskiy|en]]) |[[Aracar]] ([[:en:Aracar|en]]) |[[Armed Forces Research Institute of Medical Sciences]] ([[:en:Armed Forces Research Institute of Medical Sciences|en]]) |[[Attab bin Asid]] ([[:en:Attab ibn Asid|en]]) |[[Bank Alexa]] ([[:en:Alexa Bank|en]]) |[[Batu Garam]] ([[:sv:Batu Garam|sv]]) ([[:ceb:Batu Garam|ceb]]) |[[Bazman]] ([[:en:Bazman|en]]) |[[Berti Vogts]] ([[:en:Berti Vogts|en]]) |[[Bukit Igwisi]] ([[:en:Igwisi Hills|en]]) |[[Bunting ortolan]] ([[:en:Ortolan bunting|en]]) |[[Cerro Chao]] ([[:en:Cerro Chao|en]]) |[[Chiliques]] ([[:en:Chiliques|en]]) |[[Claremont Colleges]] ([[:en:Claremont Colleges|en]]) |[[Cláudio Taffarel]] ([[:en:Cláudio Taffarel|en]]) |[[Cordón de Puntas Negras]] ([[:en:Cordón de Puntas Negras|en]]) |[[Cordón del Azufre]] ([[:en:Cordón del Azufre|en]]) |[[Daftar episode The Cosby Show]] ([[:en:List of The Cosby Show episodes|en]]) |[[Daftar gubernur Basra]] ([[:ar:قائمة ولاة البصرة|ar]]) |[[Danau Corcoran]] ([[:en:Lake Corcoran|en]]) |[[Danau Minchin]] ([[:en:Lake Minchin|en]]) |[[Danau Palomas]] ([[:en:Lake Palomas|en]]) |[[Dataran tinggi Udokan]] ([[:en:Udokan Plateau|en]]) |[[Dengeki Bunko: Fighting Climax]] ([[:en:Dengeki Bunko: Fighting Climax|en]]) |[[Departemen Pemasyarakatan (Thailand)]] ([[:en:Department of Corrections (Thailand)|en]]) <!--http://www.correct.go.th/eng/correcteng/prisoner_handbook/Indonesian.pdf TIDAK BERFUNGSI LAGI--> |[[Ekspedisi Nansen's Fram]] ([[:en:Nansen's Fram Expedition|en]]) |[[Ekspedisi Shackleton-Rowett]] ([[:en:Shackleton-Rowett Expedition|en]]) |[[Fate/Apocrypha]] ([[:en:Fate/Apocrypha|en]]) |[[Fate/Zero]] ([[:en:Fate/Zero|en]]) |[[Feromon kucing]] ([[:en:Cat pheromone|en]]) |[[Fred Whipple]] ([[:en:Fred Whipple|en]]) |[[Friedrich Christoph Dahlmann]] ([[:en:Friedrich Christoph Dahlmann|en]]) |[[Genetik bulu kucing]] ([[:en:Cat coat genetics|en]]) |[[Guar]] ([[:en:Cyamopsis tetragonoloba|en]]) |[[Gum guar]] ([[:en:Gum guar|en]]) |[[Gunung Berlin]] ([[:en:Mount Berlin|en]]) |[[Gunung laut Macdonald]] ([[:en:Macdonald seamount|en]]) |[[Guyot MIT]] ([[:en:MIT Guyot|en]]) |[[Günter Netzer]] ([[:en:Günter Netzer|en]]) |[[Hans, Count von Bülow]] ([[:en:Hans, Count von Bülow|en]]) |[[Hazn bin Abi Wahb]] ([[:ar:حزن بن أبي وهب|ar]]) |[[Heinrich von Sybel]] ([[:en:Heinrich von Sybel|en]]) |[[Hotel Mercure Pantai Indah]]<!-- (dahulu Hotel Horison Jakarta)--> |[[Hualca Hualca]] ([[:en:Hualca Hualca|en]]) |[[Jagged Alliance 2]] ([[:en:Jagged Alliance 2|en]]) |[[Jaime Moreno]] ([[:en:Jaime Moreno|en]]) |[[Jalan lewat]] ([[:en:Walkthrough|en]]) |[[Jan Boldingh]] ([[:en:Jan Boldingh|en]]) |[[Jargon matematika]] ([[:en:Mathematical jargon|en]]) |[[Johann Joseph von Görres]] ([[:en:Johann Joseph von Görres|en]]) |[[John Adair]] ([[:en:John Adair|en]]) |[[John Lerew]] ([[:en:John Lerew|en]]) |[[Jom-Bolok volcanic field]] ([[:en:Jom-Bolok volcanic field|en]]) |[[Joseph Maria von Radowitz]] ([[:en:Joseph Maria von Radowitz|en]]) |[[Joseph Salvador Marino]] ([[:de:Joseph Salvador Marino|de]]) |[[Josh Stewart]] ([[:en:Josh Stewart|en]]) |[[Jotabeche]] ([[:en:Jotabeche|en]]) |[[Kambalny]] ([[:en:Kambalny|en]]) |[[Kari-Kari]] ([[:en:Kari-Kari (caldera)|en]] |[[Karl Baedeker]] ([[:en:Karl Baedeker|en]]) |[[Karl Blind]] ([[:en:Karl Blind|en]]) |[[Karl Philipp von Wrede]] ([[:en:Karl Philipp von Wrede|en]]) |[[Kebebasan (logika matematika)]] ([[:en:Independence (mathematical logic)|en]]) |[[Keluarga Darwin–Wedgwood]] ([[:en:Darwin–Wedgwood family|en]]) |[[Keluarga Huxley]] ([[:en:Huxley family|en]]) |[[Kendaraan tanpa emisi]] ([[:en:Zero-emissions vehicle|en]]) |[[Kesehatan ibu dan bayi]] |[[Klasifikasi alat musik]] ([[:en:Musical instrument classification|en]]) |[[Kode darurat rumah sakit]] ([[:en:Hospital emergency codes|en]]) |[[Kompleks gunung berapi Altiplano–Puna]] ([[:en:Altiplano–Puna volcanic complex|en]]) |[[Kompleks gunung berapi Apacheta-Aguilucho]] ([[:en:Apacheta-Aguilucho volcanic complex|en]]) |[[Komunikasi interdipliner dalam keperawatan]] |[[Kratylos (dialog)]] ([[:en:Cratylus (dialogue)|en]]) |[[Kriton]] ([[:en:Crito|en]]) |[[Kumpulan Dacht-i-Navar]] ([[:en:Dacht-i-Navar Group|en]]) |[[Kunjungan Raja Willem-Alexander ke Indonesia]] (2020) |[[LST kelas-Ōsumi]] ([[:en:Ōsumi-class tank landing ship|en]]) |[[Laguna Amarga]] ([[:en:Laguna Amarga|en]]) |[[Lalat zaitun]] ([[:en:Olive oil flies|en]]) |[[Lambertus Jitmau]] |[[Lamyai Haithongkham]] ([[:en:Lamyai Haithongkham|en]]) |[[Lapangan udara Henderson (Guadalkanal)]] ([[:en:Henderson Field (Guadalcanal)|en]]) |[[Lapangan udara Henderson (Midway)]] ([[:en:Henderson Field (Midway)|en]]) |[[Larbre Compétition]] ([[:en:Larbre Compétition|en]]) |[[Louis Oosthuizen]] ([[:en:Louis Oosthuizen|en]]) |[[Lvinaya Past]] ([[:en:Lvinaya Past|en]]) |[[Manajemen pupuk]] |[[Mansoor]] ([[:en:Mansoor (wrestler)|en]]) |[[Manuel Mejuto González]] ([[:en:Manuel Mejuto González|en]]) |[[Maria Stella]] ([[:en:Maria Stella|en]]) |[[Max Schneckenburger]] ([[:en:Max Schneckenburger|en]]) |[[Melimoyu]] ([[:en:Melimoyu|en]]) |[[Mes-ag-tshoms]] ([[:en:Mes-ag-tshoms|en]]) |[[Micajah Autry]] ([[:en:Micajah Autry|en]]) |[[Michelle Leslie]] ([[:en:Michelle Leslie|en]]) |[[Mini WRC Team]] ([[:en:Mini WRC Team|en]]) |[[Mobbing]] ([[:en:Mobbing|en]]) |[[Moneeb Josephs]] ([[:en:Moneeb Josephs|en]]) |[[Monica's Gang]] ([[:en:Monica's Gang|en]]) |[[Monsit Khamsoi]] ([[:en:Monsit Khamsoi|en]]) |[[Moukdavanh Santiphone]] ([[:th:มุกดาวัน สันติพอน|th]]) |[[Musa bin Nusair]] ([[:en:Musa ibn Nusayr|en]]) |[[Musyawarah Guru Mata Pelajaran]] |[[Mutisalah]] ([[:en:Mutisalah|en]]) |[[N. John Habraken]] ([[:en:N. John Habraken|en]]) |[[NALISTIC]] ([[:en:NALISTIC|en]]) |[[Natapohn Tameeruks]] ([[:en:Natapohn Tameeruks|en]]) |[[Neil Abercrombie]] ([[:en:Neil Abercrombie|en]]) |[[Nevado Tres Cruces]] ([[:en:Nevado Tres Cruces|en]]) |[[Newman/Haas Racing]] ([[:en:Newman/Haas Racing|en]]) |[[Noknoi Uraiporn]] ([[:en:Noknoi Uraiporn|en]]) |[[Ocean Racing Technology]] ([[:en:Ocean Racing Technology|en]]) |[[Ouki]] ([[:en:Ouki|en]]) |[[Paniri]] ([[:en:Paniri|en]]) |[[Param]] ([[:en:Param|en]]) |[[Parmenides (dialog)]] ([[:en:Parmenides (dialogue)|en]]) |[[Pegawai negeri tidak tetap]] |[[Pembalap gravitasi]] ([[:en:Gravity racer|en]]) |[[Peng-Peng Gong]] ([[:en:Peng-Peng Gong|en]]) |[[Penggalan (sastra)]] ([[:en:Caesura|en]]) |[[Penyangkalan (hukum)]] ([[:en:Disclaimer|en]]) |[[Perang FISA-FOCA]] ([[:en:FISA-FOCA war|en]]) |[[Perselisihan FIA-FOTA]] ([[:en:FIA–FOTA dispute|en]]) |[[Peter Fröjdfeldt]] ([[:en:Peter Fröjdfeldt|en]]) |[[Peter Green]] ([[:en:Peter Green (referee)|en]]) |[[Peter James Bailey III]] ([[:en:Peter James Bailey III|en]]) |[[Piala Asia Timur EAFF]] ([[:en:EAFF East Asian Cup|en]]) |[[Pichu Pichu]] ([[:en:Pichu Pichu|en]]) |[[Pirgel]] ([[:en:Pirgel|en]]) |[[Pola spekel]] ([[:en:Speckle pattern|en]]) |[[Pomona College]] ([[:en:Pomona College|en]], [[:simple:Pomona College|s.en.]]) |[[Protagoras (dialog)]] ([[:en:Protagoras (dialogue)|en]]) |[[Puchuldiza]] ([[:en:Puchuldiza|en]]) |[[Putana (gunung berapi)]] ([[:en:Putana (volcano)|en]]) |[[Qal'eh Hasan Ali]] ([[:en:Qal'eh Hasan Ali|en]]) |[[Quimsachata]] ([[:en:Quimsachata (Canchis)|en]]) |[[Rainer Zepperitz]] ([[:en:Rainer Zepperitz|en]]) |[[Ramandu]] ([[:en:Ramandu|en]]) |[[Rapax Team]] ([[:en:Rapax Team|en]]) |[[Reverend Ike]] ([[:en:Reverend Ike|en]]) |[[Ricardo Clark]] ([[:en:Ricardo Clark|en]]) |[[Richie Regehr]] ([[:en:Richie Regehr|en]]) |[[Robert E. Cochran]] ([[:en:Robert E. Cochran|en]]) |[[Robyn Regehr]] ([[:en:Robyn Regehr|en]]) |[[Ronald Bronstein]] ([[:en:Ronald Bronstein|en]]) |[[Rumah Sakit Umum Daerah Sele Be Solu]] |[[Sairecabur]] ([[:en:Sairecabur|en]]) |[[Samuel J. Aquila]] ([[:en:Samuel J. Aquila|en]]) |[[Saraṇa Bhikkhu]] ([[:es:Saraṇa Bhikkhu|es]]) |[[Serikat]] |[[Shadia Marhaban]] ([[:en:Shadia Marhaban|en]]) |[[Shift (Narnia)]] ([[:en:Shift (Narnia)|en]]) |[[Simona Senoner]] ([[:en:Simona Senoner|en]]) |[[Skandal NASCAR Gatorade Duel tahun 2007]] ([[:en:2007 NASCAR Gatorade Duel scandal|en]]) |[[Solimana (gunung berapi)]] ([[:en:Solimana (volcano)|en]]) |[[Solomon P. Sharp]] ([[:en:Solomon P. Sharp|en]]) |[[Somjit Borthong]] ([[:th:สมจิตร บ่อทอง|th]]) |[[Standar ras]] ([[:en:Breed standard|en]]) |[[Steve Harris (musisi)]] ([[:en:Steve Harris (musician)|en]]) |[[Strebre Delovski]] ([[:en:Strebre Delovski|en]]) |[[Sukeban]] ([[:en:Sukeban|en]]) |[[Sun Hei S.C.]] ([[:en:Sun Hei S.C.|en]]) |[[Suraqah bin Malik]] ([[:ar:سراقة بن مالك|ar]]) |[[Susi Hutapea]] |[[Sylheti Nagari]] ([[:en:Sylheti Nagari|en]]) |[[Sálvio Spínola Fagundes Filho]] ([[:en:Sálvio Spínola Fagundes Filho|en]]) |[[Taryatu-Chulutu]] ([[:en:Taryatu-Chulutu|en]]) |[[Team Air Asia]] ([[:en:Team Air Asia|en]]) |[[Team Astromega]] ([[:en:Team Astromega|en]]) |[[Team Meritus]] ([[:en:Team Meritus|en]]) |[[Ten Kate Racing]] ([[:en:Ten Kate Racing|en]]) |[[Thariq bin Amr]] ([[:en:Tariq ibn Amr|en]]) |[[Timotius Arifin Tedjakusuma]] |[[Tirhuta]] ([[:en:Tirhuta|en]]) |[[Titik panas Arago]] ([[:en:Arago hotspot|en]]) |[[Titik panas Macdonald]] ([[:en:Macdonald hotspot|en]]) |[[Tom Mastny]] ([[:en:Tom Mastny|en]]) |[[Topless]] ([[:en:Toplessness|en]]) |[[Topologi diferensial]] ([[:en:Differential topology|en]]) |[[Ubehebe Craters]] ([[:en:Ubehebe Craters|en]]) |[[Umayyah bin Abi Salt]] ([[:ar:أمية بن أبي الصلت|ar]]) |[[Unit penyedia daya]] ([[:en:Power supply unit (computer)|en]]) |[[Urs Meier]] ([[:en:Urs Meier|en]]) |[[Usia merokok]] ([[:en:Smoking age|en]]) |[[Utbah bin Farqad al-Sulami]] ([[:ar:عتبة بن فرقد السلمي|ar]]) |[[Utsman bin Muhammad bin Abi Sufyan]] ([[:en:Uthman ibn Muhammad ibn Abi Sufyan|en]]) |[[Viabilitas]] ([[:en:Viability|en]]) |[[Vinnie Jones]] ([[:en:Vinnie Jones|en]]) |[[Vladimir Arnold]] ([[:en:Vladimir Arnold|en]]) |[[Walter Hagen]] ([[:en:Walter Hagen|en]]) |[[West Surrey Racing]] ([[:en:West Surrey Racing|en]]) |[[Wiktoria Gasiewska]] ([[:en:Wiktoria Gasiewska|en]]) |[[William Whewell]] ([[:en:William Whewell|en]]) |[[Willie Park, Sr.]] ([[:en:Willie Park, Sr.|en]]) |[[Willy Schmidhamer]] ([[:en:Willy Schmidhamer|en]]) |[[Wolf's Rain]] ([[:en:Wolf's Rain|en]]) |[[XGen Studios]] ([[:en:XGen Studios|en]]) |[[Young Tom Morris]] ([[:en:Young Tom Morris|en]]) |[[Yoko Taro]] ([[:en:Yoko Taro|en]]) |[[Yui Yatyer]] ([[:en:Yui Yatyer|th]]) |[[Simbol nasional Indonesia]] ([[:en:National symbols of Indonesia|en]]) |[[Rick and Morty]] ([[:en:Rick and Morty|en]]) |[[Hutan hujan Biak–Numfoor]] ([[:en:Biak–Numfoor rain forests|en]]) |[[Rampasasa]] ([[:en:Rampasasa|en]]) |[[Silat Melayu]] ([[:en:Silat Melayu|en]]) |[[Lima Prinsip Hidup Berdampingan Secara Damai]] ([[:en:Five Principles of Peaceful Coexistence]]) yang diadopsi ke [[Dasasila Bandung]] |[[Mundaneum]] ([[:en:Mundaneum]]) |Jumlah permintaan = 188 <!-- Number of articles in this list minus about 25 (to allow for existing articles to be skipped) --> <!-- --><includeonly>}}</includeonly><noinclude><!-- ================== ================== Jumlah: 213 (per 2022-12-06) ================== ================== CATATAN! Urutan berdasarkan ABJAD (tidak lagi berdasarkan WAKTU PERMINTAAN) ================== ================== ================== --> Tambahkan permintaan Anda di [[Sablonan:Recent changes article requests/add]] [[Bangsaan:Templat perubahan terbaru]]</noinclude> dw30atw7jy8ukmf16j5ukrke1rxvrdc Wikipédi:Pepintaan makalah 4 5799 34920 34911 2026-06-24T02:27:04Z ~2026-36376-65 3737 /* */ 34920 wikitext text/x-wiki :''Ni halaman lagi mao dipegarin, dia punya isi masing bisa berobah-robah''. {{see also|Wikipédi:Daptar makalah nyang saban Wikipédi kudu gableg}} {{(●○▪︎*)|WP:PM|WP:RA|WP:REQ|WP:REQUEST}} == [[/Applied arts and sciences|Applied arts and sciences]] == * [[/Applied arts and sciences#Agriculture|Agriculture]] * [[/Applied arts and sciences/Architecture|Architecture]] * [[/Applied arts and sciences#Communications|Communications]] * [[/Applied arts and sciences/Computer science, computing, and Internet|Computer science, computing, and Internet]] * [[/Applied arts and sciences#Design|Design]] * [[/Applied_arts_and_sciences/Education|Education, schools, colleges, and universities]] * [[/Applied arts and sciences/Electronics|Electronics]] * [[/Applied arts and sciences/Engineering|Engineering]] * [[/Applied arts and sciences#Fishing, fisheries, and aquaculture|Fishing, fisheries, and aquaculture]] * [[/Applied arts and sciences#Flags, coat of arms, logos and trademarks|Flags, coat of arms, logos and trademarks]] * [[/Applied arts and sciences/Law|Law, law enforcement and crime]] * [[/Applied arts and sciences#Library science|Library science]] * [[/Applied arts and sciences/Technology and tools|Technology and tools]] * [[/Applied arts and sciences/Transport|Transportation]] == [[/Arts and entertainment|Arts and entertainment]] == * [[/Arts and entertainment#Design|Design]] * [[/Arts and entertainment/Fashion|Fashion]] * [[/Arts and entertainment/Film, radio and television|Film, radio and television]] * [[/Arts and entertainment#Food, drink, and nutrition|Food, drink, and nutrition]] * [[/Arts and entertainment/Internet and tech culture|Internet and tech culture]] * [[/Arts and entertainment/Literature|Literature, books]] * [[/Arts and entertainment#Media networks and organizations|Media networks and organizations]] * [[/Arts and entertainment#Museums|Museums]] * [[/Arts and entertainment#National or ethnic cultures|National or ethnic cultures]] * [[/Arts and entertainment/Performing arts|Performing arts]] * [[/Arts and entertainment/Print media|Print media]] * [[/Arts and entertainment#Recreation and hobbies|Recreation, hobbies, games]] * [[/Arts and entertainment#Surrealism|Surrealism]] * [[/Arts and entertainment#Theory|Theory]] * [[/Arts and entertainment#Tourism|Tourism]] * [[/Arts and entertainment/Visual arts|Visual arts]] == [[/Betawi|Betawi]] == * [[/Betawi]] == [[/Biograpi|Biograpi]] == * [[/Biograpi/Ngikutin profesi|Ngikutin profesi]] * [[/Biograpi/Ngikutin kebangsaan|Ngikutin kebangsaan]] == [[/Business and economics|Business and economics]] == * [[/Business and economics/Organizations|Associations]] * [[/Business and economics#Business|Business]] * [[/Business and economics/Companies|Companies]] * [[/Business and economics#Econometrics|Econometrics]] * [[/Business and economics/Economic theory and history|Economic theory and history]] * [[/Business and economics/Economic theory and history|Economic policy]] * [[/Business and economics/Economic theory and history|Economic problems]] * [[/Business and economics#Economics|Economics]] * [[/Business and economics#Economists|Economists]] * [[/Business and economics#Finance|Finance]] * [[/Business and economics/Companies|Law firms]] * [[/Business and economics/Organizations|Non-profit organizations]] * [[/Business and economics/People in business|People in business]] * [[/Business and economics#Terminology (business)|Terminology (business)]] * [[/Business and economics#Terminology (economics)|Terminology (economics)]] == [[/Géograpi|Géograpi]] == * [[/Géograpi#Kali|Kali]] * [[/Géograpi/Pulo|Pulo]] == [[/Gerak badan|Gerak badan]] == * [[/Gerak badan/|/Gerak badan èn tukang gerak badan]] * [[/Sports/American football|/American football]] * [[/Gerak badan/Bola hong|/Bola hong]] * [[/Gerak badan/Bola tendang|/Bola tendang]] * [[/Gerak badan/Bola tendang wadon|/Bola tendang wadon]] * [[Wikipedia:WikiProject_Australian_rules_football/Players/ToDo|/Australian rules football]] * [[/Sports/Basketball|/Basketball]] * [[Wikipedia:WikiProject_Chess#..._to_create|/Chess]] * [[/Sports/Motor_sports|/Motor sports]] * [[/Sports/Rugby_league|/Rugby league]] * [[/Sports/Rugby_union|/Rugby union]] * [[/Gerak badan/Tènes|/Tènes]] * [[/Gerak badan/Tènes méja|/Tènes méja]] * [[/Gerak badan/Tepok bulu|/Tepok bulu]] == [[/Guwernemèn|Guwernemèn]] == === Indonésia === * [[/Guwernemèn/Kabupatèn kota|Kabupatèn/Kota]] * [[/Guwernemèn/Kecamatan|Kecamatan]] * [[/Guwernemèn/Désa di Indonésia|Désa]] == [[/Mathematics|Mathematics]] == * [[/Mathematics/Logic|Logic]] * [[/Mathematics|Mathematics]] ==[[/Medicine|Medicine]]== * [[User:Skysmith/Missing topics about Anatomy|Anatomy]] * [[User:Skysmith/Missing topics about Blood|Blood]] * [[User:Skysmith/Missing topics about Metabolism|Biochemistry]] * [[Wikipedia:WikiProject Missing encyclopedic articles/List of notable books on history of medicine|Books on History of Medicine]] * [[Wikipedia:WikiProject Missing encyclopedic articles/Cancer dictionary|Cancer]] * [[/Medicine/Dentistry|Dentistry]] * [[Wikipedia:WikiProject_Missing_encyclopedic_articles/Missing_diseases|Diseases]] * [[User:Skysmith/Missing_topics_about_Emergencies|Emergencies]] * [[User:Skysmith/Missing topics about Eyes|Eyes]] * [[Wikipedia:WikiProject Missing encyclopedic articles/Skysmith's list of missing articles/Genetics|Genetics]] * [[User:Skysmith/Missing_topics_about_Hospitals|Hospitals]] * [[User:Skysmith/Missing topics about Medical Technology|Medical technology]] * [[User:Skysmith/Missing topics about Neurology|Neurology]] * [[/Medicine/People in medicine|People in medicine]] * [[/Medicine/Pharmacology|Pharmacology]] * [[User:Skysmith/Missing topics about Pharmacy|Pharmacy]] * [[User:Skysmith/Missing topics about Surgery|Surgery]] * [[/Medicine/Veterinary|Veterinary medicine]] * [[User:Skysmith/Missing topics about Medicine|Unsorted]] * [[User:Brainist/MeSH articles/redlinks|MeSH Database]] == [[/music|Music]] == * [[/music/Albums|Albums]] * [[/music/Performers, bands and songwriters|Bands, performers and songwriters]] * [[/music#Chamber ensembles|Chamber ensembles]] * [[/music#Classical composers|Classical composers]] * [[/music#Classical compositions|Classical compositions]] * [[/music#Conductors|Conductors]] * [[/music#Critics, historians, journalists, and publications|Critics, historians, journalists and publications]] * [[/music#Festivals, concerts and awards|Festivals, concerts and awards]] * [[/music#Genres|Genres]] * [[/music#Musical_instruments|Instruments]] * [[/music#Music theory|Music theory]] * [[/music#Orchestras|Orchestras]] * [[/music#Organizations|Organizations]] * [[/music#Producers, sound engineers, etc.|Producers, sound engineers, etc.]] * [[/music#Record labels|Record labels]] * [[/music#Schools and music education|Schools and music education]] * [[/music/Songs|Songs]] * [[/music#Stage musicals|Stage musicals]] * [[/music#Technical and business terms|Technical and business terms]] == [[/Natural sciences|Natural sciences]] == * [[/Natural sciences#Astronomy and cosmology|Astronomy and cosmology]] * [[/Natural sciences/Biology|Biology]] * [[/Natural sciences/Chemistry|Chemistry, chemicals and labs]] * [[/Natural sciences/Environment and geology|Environment and geology]] * [[/Natural sciences#Journals and trade publications|Journals and trade publications]] * [[/Natural sciences#Materials science|Materials science]] * [[/Natural sciences/Neuroscience|Neuroscience]] * [[/Natural sciences#Physical science|Physical science]] * [[/Natural sciences/Physics|Physics]] * [[/Natural sciences#Scientists and people in science|Scientists and people in science]] * [[/Natural sciences#Other|Other]] == [[/Philosophy|Philosophy]] == * [[/Philosophy#Aesthetics|Aesthetics]] * [[/Philosophy#Epistemology|Epistemology]] * [[/Philosophy#Ethics|Ethics]] * [[/Philosophy#Logic|Logic]] * [[/Philosophy#Metaphysics|Metaphysics]] * [[/Philosophy#Other|Other]] == [[/Social sciences|Social sciences]] == * [[/Social sciences#Archaeology|Archaeology]] * [[/Social sciences#Genealogy|Genealogy]] * [[/Social sciences/Geography, cities, regions and named places|Geography, cities, regions and named places]] * [[/Social sciences#Historic places|Historic places]] * [[/Social sciences/History|History]] * [[/Social sciences#LGBT (lesbian, gay, bisexual, transgender)|LGBT (lesbian, gay, bisexual, transgender)]] * [[/Social sciences#Linguistics|Linguistics]] * [[/Social sciences/Military and military history|Military and military history]] * [[/Social sciences/Mythology|Mythology]] * [[/Social sciences/Politics and government|Politics and government]] * [[/Social sciences/Psychology|Psychology]] * [[/Social sciences/Religion|Religion]] * [[/Social sciences#Sociology|Sociology]] * [[/Social sciences#Urban studies|Urban Studies]] * [[/Social sciences#Other social sciences topics|Other social sciences topics]] == [[/Wikipédi|Wikipédi]] == * [[Wikipedia:Permintaan sablonan|Sablonan]] * [[Wikipedia:ProyèkWiki Dèwan/Usulan|ProyèkWiki]] == Makalah nyang diminta di [[Sablonan:Recent changes article requests/list]] == Tambahkan permintaan Anda di [[Sablonan:Permintaan makalah]]. Merbot: pindahkan permintaan dari [[Sablonan:Permintaan makalah]] ke [[Sablonan:Recent changes article requests/list]]. <!-- 100 item di tiap kolom --> {{Recent changes article requests/list}} {{col-begin}} {{col-break}} {{Recent changes article requests/full/100 |hundred=0 |existonly={{{existonly|}}} }} {{col-break}} {{Recent changes article requests/full/100 |hundred=1 |existonly={{{existonly|}}} }} {{col-break}} {{Recent changes article requests/full/100 |hundred=2 |existonly={{{existonly|}}} }} {{col-break}} {{Recent changes article requests/full/100 |hundred=3 |existonly={{{existonly|}}} }} {{col-break}} {{Recent changes article request/full/100 |hundred=4 |existonly={{{existonly|}}} }} {{col-end}} ---- ---- {{/Melengkapi artikel templat}} ---- {{:Wikipedia:Kotak pengguna/Permohonan kotak pengguna baru}} ---- <!-- {{/Wikipedia dan Bantuan}} --> ==Images needing articles== See [[Wikipedia:Requested articles/Images]] == Other categories == * [[/By country|By country]] * [[Wikipedia:Requested lists|Lists]] * [[/Other|Other or unknown topic]] == Deleng juga == {{Sisterlinks |wikt=Wiktionary:Requested entries |b=Wikibooks:Requested books |q=Wikiquote:Requested entries |s=Wikisource:Requested texts |commons=Commons:Requested audio and video |n=Wikinews:Requested articles |v=Wikiversity:Requested articles }} * [[Wikipedia:WikiProject Requested articles|WikiProject Requested articles]] * [[Wikipedia:Most-wanted articles]] (most linked to) * [[Wikipedia:WikiProject Missing encyclopedic articles]] * Many [[:Category:WikiProjects|WikiProjects]] and [[:Category:Regional Wikipedian notice boards|notice boards]] have requests for new articles pertaining to a specific topic. * [[Wikipedia:WikiProject Red Link Recovery]] * [[Wikipedia:Articles for creation]] - allows unregistered and new users to create new articles with the assistance of experienced Wikipedians. * [[:Category:Stubs]] lists very short preliminary articles that have not yet been developed. * [[:Category:All articles to be expanded]] and [[:Category:Wikipedia pages with to-do lists]] list more established articles which need expansion, by section or by specific coverage, respectively. * [[:Category:Redirects with possibilities]] lists many redirects with good potential to become future articles. * [[Portal:Current events]] - displays newsworthy topics{{mdash}} even brief entries for those are very helpful. They have the advantage of already having a reference webpage, and would have been verified in most cases by the news media. (see also [[Wikinews]]) * [[Wikipedia:Requested lists]] * [[Wikipedia:Requested pictures]] and [[commons:Commons:Picture requests|Commons:Picture requests]] * [[Wikipedia:Requested recordings]] * [[Wikipedia:Requested templates]] * [[Wikipedia:Translation]] * [[User:Emijrp/All Human Knowledge]] ===Historical=== * [[Wikipedia:Most wanted stubs]] * [[Wikipedia:Articles requested for more than a year]] * [[Special:WantedPages]] * [[Wikipedia:Drawing board]] - a noticeboard for discussing new article ideas. (Inactive) * [[Wikipedia:Requests for expansion/Archive]] {{Requested content}} {{Wikipedia community|state=collapsed}} [[Bangsaan:Komunitas Wikipedia]] 32wv3jyjv8u5trzsvz16remyt58gii3 34923 34920 2026-06-24T03:20:25Z Mtarch11 93 Ngebalikin permakan kejaan [[Special:Contributions/~2026-36376-65|~2026-36376-65]] ([[User talk:~2026-36376-65|kongko]]) ke perbaèkan paling belakangan kejaan [[User:OrangKalideres|OrangKalideres]] 34911 wikitext text/x-wiki :''Ni halaman lagi mao dipegarin, dia punya isi masing bisa berobah-robah''. {{see also|Wikipédi:Daptar makalah nyang saban Wikipédi kudu gableg}} {{Shortcut|WP:PM|WP:RA|WP:REQ|WP:REQUEST}} == [[/Applied arts and sciences|Applied arts and sciences]] == * [[/Applied arts and sciences#Agriculture|Agriculture]] * [[/Applied arts and sciences/Architecture|Architecture]] * [[/Applied arts and sciences#Communications|Communications]] * [[/Applied arts and sciences/Computer science, computing, and Internet|Computer science, computing, and Internet]] * [[/Applied arts and sciences#Design|Design]] * [[/Applied_arts_and_sciences/Education|Education, schools, colleges, and universities]] * [[/Applied arts and sciences/Electronics|Electronics]] * [[/Applied arts and sciences/Engineering|Engineering]] * [[/Applied arts and sciences#Fishing, fisheries, and aquaculture|Fishing, fisheries, and aquaculture]] * [[/Applied arts and sciences#Flags, coat of arms, logos and trademarks|Flags, coat of arms, logos and trademarks]] * [[/Applied arts and sciences/Law|Law, law enforcement and crime]] * [[/Applied arts and sciences#Library science|Library science]] * [[/Applied arts and sciences/Technology and tools|Technology and tools]] * [[/Applied arts and sciences/Transport|Transportation]] == [[/Arts and entertainment|Arts and entertainment]] == * [[/Arts and entertainment#Design|Design]] * [[/Arts and entertainment/Fashion|Fashion]] * [[/Arts and entertainment/Film, radio and television|Film, radio and television]] * [[/Arts and entertainment#Food, drink, and nutrition|Food, drink, and nutrition]] * [[/Arts and entertainment/Internet and tech culture|Internet and tech culture]] * [[/Arts and entertainment/Literature|Literature, books]] * [[/Arts and entertainment#Media networks and organizations|Media networks and organizations]] * [[/Arts and entertainment#Museums|Museums]] * [[/Arts and entertainment#National or ethnic cultures|National or ethnic cultures]] * [[/Arts and entertainment/Performing arts|Performing arts]] * [[/Arts and entertainment/Print media|Print media]] * [[/Arts and entertainment#Recreation and hobbies|Recreation, hobbies, games]] * [[/Arts and entertainment#Surrealism|Surrealism]] * [[/Arts and entertainment#Theory|Theory]] * [[/Arts and entertainment#Tourism|Tourism]] * [[/Arts and entertainment/Visual arts|Visual arts]] == [[/Betawi|Betawi]] == * [[/Betawi]] == [[/Biograpi|Biograpi]] == * [[/Biograpi/Ngikutin profesi|Ngikutin profesi]] * [[/Biograpi/Ngikutin kebangsaan|Ngikutin kebangsaan]] == [[/Business and economics|Business and economics]] == * [[/Business and economics/Organizations|Associations]] * [[/Business and economics#Business|Business]] * [[/Business and economics/Companies|Companies]] * [[/Business and economics#Econometrics|Econometrics]] * [[/Business and economics/Economic theory and history|Economic theory and history]] * [[/Business and economics/Economic theory and history|Economic policy]] * [[/Business and economics/Economic theory and history|Economic problems]] * [[/Business and economics#Economics|Economics]] * [[/Business and economics#Economists|Economists]] * [[/Business and economics#Finance|Finance]] * [[/Business and economics/Companies|Law firms]] * [[/Business and economics/Organizations|Non-profit organizations]] * [[/Business and economics/People in business|People in business]] * [[/Business and economics#Terminology (business)|Terminology (business)]] * [[/Business and economics#Terminology (economics)|Terminology (economics)]] == [[/Géograpi|Géograpi]] == * [[/Géograpi#Kali|Kali]] * [[/Géograpi/Pulo|Pulo]] == [[/Gerak badan|Gerak badan]] == * [[/Gerak badan/|/Gerak badan èn tukang gerak badan]] * [[/Sports/American football|/American football]] * [[/Gerak badan/Bola hong|/Bola hong]] * [[/Gerak badan/Bola tendang|/Bola tendang]] * [[/Gerak badan/Bola tendang wadon|/Bola tendang wadon]] * [[Wikipedia:WikiProject_Australian_rules_football/Players/ToDo|/Australian rules football]] * [[/Sports/Basketball|/Basketball]] * [[Wikipedia:WikiProject_Chess#..._to_create|/Chess]] * [[/Sports/Motor_sports|/Motor sports]] * [[/Sports/Rugby_league|/Rugby league]] * [[/Sports/Rugby_union|/Rugby union]] * [[/Gerak badan/Tènes|/Tènes]] * [[/Gerak badan/Tènes méja|/Tènes méja]] * [[/Gerak badan/Tepok bulu|/Tepok bulu]] == [[/Guwernemèn|Guwernemèn]] == === Indonésia === * [[/Guwernemèn/Kabupatèn kota|Kabupatèn/Kota]] * [[/Guwernemèn/Kecamatan|Kecamatan]] * [[/Guwernemèn/Désa di Indonésia|Désa]] == [[/Mathematics|Mathematics]] == * [[/Mathematics/Logic|Logic]] * [[/Mathematics|Mathematics]] ==[[/Medicine|Medicine]]== * [[User:Skysmith/Missing topics about Anatomy|Anatomy]] * [[User:Skysmith/Missing topics about Blood|Blood]] * [[User:Skysmith/Missing topics about Metabolism|Biochemistry]] * [[Wikipedia:WikiProject Missing encyclopedic articles/List of notable books on history of medicine|Books on History of Medicine]] * [[Wikipedia:WikiProject Missing encyclopedic articles/Cancer dictionary|Cancer]] * [[/Medicine/Dentistry|Dentistry]] * [[Wikipedia:WikiProject_Missing_encyclopedic_articles/Missing_diseases|Diseases]] * [[User:Skysmith/Missing_topics_about_Emergencies|Emergencies]] * [[User:Skysmith/Missing topics about Eyes|Eyes]] * [[Wikipedia:WikiProject Missing encyclopedic articles/Skysmith's list of missing articles/Genetics|Genetics]] * [[User:Skysmith/Missing_topics_about_Hospitals|Hospitals]] * [[User:Skysmith/Missing topics about Medical Technology|Medical technology]] * [[User:Skysmith/Missing topics about Neurology|Neurology]] * [[/Medicine/People in medicine|People in medicine]] * [[/Medicine/Pharmacology|Pharmacology]] * [[User:Skysmith/Missing topics about Pharmacy|Pharmacy]] * [[User:Skysmith/Missing topics about Surgery|Surgery]] * [[/Medicine/Veterinary|Veterinary medicine]] * [[User:Skysmith/Missing topics about Medicine|Unsorted]] * [[User:Brainist/MeSH articles/redlinks|MeSH Database]] == [[/music|Music]] == * [[/music/Albums|Albums]] * [[/music/Performers, bands and songwriters|Bands, performers and songwriters]] * [[/music#Chamber ensembles|Chamber ensembles]] * [[/music#Classical composers|Classical composers]] * [[/music#Classical compositions|Classical compositions]] * [[/music#Conductors|Conductors]] * [[/music#Critics, historians, journalists, and publications|Critics, historians, journalists and publications]] * [[/music#Festivals, concerts and awards|Festivals, concerts and awards]] * [[/music#Genres|Genres]] * [[/music#Musical_instruments|Instruments]] * [[/music#Music theory|Music theory]] * [[/music#Orchestras|Orchestras]] * [[/music#Organizations|Organizations]] * [[/music#Producers, sound engineers, etc.|Producers, sound engineers, etc.]] * [[/music#Record labels|Record labels]] * [[/music#Schools and music education|Schools and music education]] * [[/music/Songs|Songs]] * [[/music#Stage musicals|Stage musicals]] * [[/music#Technical and business terms|Technical and business terms]] == [[/Natural sciences|Natural sciences]] == * [[/Natural sciences#Astronomy and cosmology|Astronomy and cosmology]] * [[/Natural sciences/Biology|Biology]] * [[/Natural sciences/Chemistry|Chemistry, chemicals and labs]] * [[/Natural sciences/Environment and geology|Environment and geology]] * [[/Natural sciences#Journals and trade publications|Journals and trade publications]] * [[/Natural sciences#Materials science|Materials science]] * [[/Natural sciences/Neuroscience|Neuroscience]] * [[/Natural sciences#Physical science|Physical science]] * [[/Natural sciences/Physics|Physics]] * [[/Natural sciences#Scientists and people in science|Scientists and people in science]] * [[/Natural sciences#Other|Other]] == [[/Philosophy|Philosophy]] == * [[/Philosophy#Aesthetics|Aesthetics]] * [[/Philosophy#Epistemology|Epistemology]] * [[/Philosophy#Ethics|Ethics]] * [[/Philosophy#Logic|Logic]] * [[/Philosophy#Metaphysics|Metaphysics]] * [[/Philosophy#Other|Other]] == [[/Social sciences|Social sciences]] == * [[/Social sciences#Archaeology|Archaeology]] * [[/Social sciences#Genealogy|Genealogy]] * [[/Social sciences/Geography, cities, regions and named places|Geography, cities, regions and named places]] * [[/Social sciences#Historic places|Historic places]] * [[/Social sciences/History|History]] * [[/Social sciences#LGBT (lesbian, gay, bisexual, transgender)|LGBT (lesbian, gay, bisexual, transgender)]] * [[/Social sciences#Linguistics|Linguistics]] * [[/Social sciences/Military and military history|Military and military history]] * [[/Social sciences/Mythology|Mythology]] * [[/Social sciences/Politics and government|Politics and government]] * [[/Social sciences/Psychology|Psychology]] * [[/Social sciences/Religion|Religion]] * [[/Social sciences#Sociology|Sociology]] * [[/Social sciences#Urban studies|Urban Studies]] * [[/Social sciences#Other social sciences topics|Other social sciences topics]] == [[/Wikipédi|Wikipédi]] == * [[Wikipedia:Permintaan sablonan|Sablonan]] * [[Wikipedia:ProyèkWiki Dèwan/Usulan|ProyèkWiki]] == Makalah nyang diminta di [[Sablonan:Recent changes article requests/list]] == Tambahkan permintaan Anda di [[Sablonan:Permintaan makalah]]. Merbot: pindahkan permintaan dari [[Sablonan:Permintaan makalah]] ke [[Sablonan:Recent changes article requests/list]]. <!-- 100 item di tiap kolom --> {{Recent changes article requests/list}} {{col-begin}} {{col-break}} {{Recent changes article requests/full/100 |hundred=0 |existonly={{{existonly|}}} }} {{col-break}} {{Recent changes article requests/full/100 |hundred=1 |existonly={{{existonly|}}} }} {{col-break}} {{Recent changes article requests/full/100 |hundred=2 |existonly={{{existonly|}}} }} {{col-break}} {{Recent changes article requests/full/100 |hundred=3 |existonly={{{existonly|}}} }} {{col-break}} {{Recent changes article request/full/100 |hundred=4 |existonly={{{existonly|}}} }} {{col-end}} ---- ---- {{/Melengkapi artikel templat}} ---- {{:Wikipedia:Kotak pengguna/Permohonan kotak pengguna baru}} ---- <!-- {{/Wikipedia dan Bantuan}} --> ==Images needing articles== See [[Wikipedia:Requested articles/Images]] == Other categories == * [[/By country|By country]] * [[Wikipedia:Requested lists|Lists]] * [[/Other|Other or unknown topic]] == Deleng juga == {{Sisterlinks |wikt=Wiktionary:Requested entries |b=Wikibooks:Requested books |q=Wikiquote:Requested entries |s=Wikisource:Requested texts |commons=Commons:Requested audio and video |n=Wikinews:Requested articles |v=Wikiversity:Requested articles }} * [[Wikipedia:WikiProject Requested articles|WikiProject Requested articles]] * [[Wikipedia:Most-wanted articles]] (most linked to) * [[Wikipedia:WikiProject Missing encyclopedic articles]] * Many [[:Category:WikiProjects|WikiProjects]] and [[:Category:Regional Wikipedian notice boards|notice boards]] have requests for new articles pertaining to a specific topic. * [[Wikipedia:WikiProject Red Link Recovery]] * [[Wikipedia:Articles for creation]] - allows unregistered and new users to create new articles with the assistance of experienced Wikipedians. * [[:Category:Stubs]] lists very short preliminary articles that have not yet been developed. * [[:Category:All articles to be expanded]] and [[:Category:Wikipedia pages with to-do lists]] list more established articles which need expansion, by section or by specific coverage, respectively. * [[:Category:Redirects with possibilities]] lists many redirects with good potential to become future articles. * [[Portal:Current events]] - displays newsworthy topics{{mdash}} even brief entries for those are very helpful. They have the advantage of already having a reference webpage, and would have been verified in most cases by the news media. (see also [[Wikinews]]) * [[Wikipedia:Requested lists]] * [[Wikipedia:Requested pictures]] and [[commons:Commons:Picture requests|Commons:Picture requests]] * [[Wikipedia:Requested recordings]] * [[Wikipedia:Requested templates]] * [[Wikipedia:Translation]] * [[User:Emijrp/All Human Knowledge]] ===Historical=== * [[Wikipedia:Most wanted stubs]] * [[Wikipedia:Articles requested for more than a year]] * [[Special:WantedPages]] * [[Wikipedia:Drawing board]] - a noticeboard for discussing new article ideas. (Inactive) * [[Wikipedia:Requests for expansion/Archive]] {{Requested content}} {{Wikipedia community|state=collapsed}} [[Bangsaan:Komunitas Wikipedia]] ijpk1ryd7gd0jwh873bik2cudxegjpi