Комбіноване зображіня вшыткых доступных протоколёвачіх записів про Коцкопедія. Зображіня можете зужыти выбером тіпу запису, мена хоснователя (залежыть на великости букв) або зазначеной сторінкы (тыж залежыть на великости букв).
- 21:16, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:Pagetype/config (Створена сторінка: -------------------------------------------------------------------------------- -- Module:Pagetype configuration data -- -- This page holds localisation and configuration data for Module:Pagetype. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. -------------------------------------------------------------------------------- --...)
- 21:15, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:Pagetype (Створена сторінка: -------------------------------------------------------------------------------- -- -- -- PAGETYPE -- -- -- -- This is a meta-module intended to replace {{pagetype}} and similar -- -- templates. It automatically detects namespaces,...)
- 21:15, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:Error (Створена сторінка: -- This module implements {{error}}. local p = {} local function _error(args) local tag = mw.ustring.lower(tostring(args.tag)) -- Work out what html tag we should use. if not (tag == 'p' or tag == 'span' or tag == 'div') then tag = 'strong' end -- Generate the html. return tostring(mw.html.create(tag) :addClass('error') :wikitext(tostring(args.message or args[1] or error('no message specified', 2))) )...)
- 21:14, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:Yesno (Створена сторінка: -- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val ==...)
- 21:13, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:Format link (Створена сторінка: -------------------------------------------------------------------------------- -- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the {{format link}} template. -------------------------------------------------------------------------------- local library...)
- 21:12, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:Hatnote list (Створена сторінка: -------------------------------------------------------------------------------- -- Module:Hatnote list -- -- -- -- This module produces and formats lists for use in hatnotes. In particular, -- -- it implements the for-see list, i.e. lists of "For X, see Y" statements, -- -- as used in {{about}}, {{redirect}}, and their varian...)
- 21:11, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Шаблона:Коордінаты (Створена сторінка: [http://play.kocky.cc:25683/?worldname=world&mapname=flat&zoom={{{3}}}&x={{{1}}}&y=64&z={{{2}}} {{{1}}} {{{2}}}])
- 21:07, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Шаблона:Tl (Створена сторінка: {{[[Template:{{{1}}}|{{{1}}}]]}})
- 21:04, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:Hatnote (Створена сторінка: -------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules....)
- 21:01, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:Check for unknown parameters (Створена сторінка: -- This module may be used to compare the arguments passed to the parent -- with a list of arguments, returning a specified result if an argument is -- not on the list local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end local function clean(text) -- Return text cleaned for display and truncated if too long. -- Strip markers are replaced with dummy text representing the or...)
- 20:59, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:Data (Створена сторінка: local mt = {} function mt.__index(t, k) return function(frame) local data = mw.loadData(k) local i = 1 for _,v in ipairs(frame.args) do local ty = type(data) if ty ~= 'table' then local args = {} for j = 1, i - 1 do args[j] = frame.args[j] end if frame.args.softfail then return '<span class="error">Category:Pages with failed Module:Data lookupsError: Tried to read index "' .. mw.text.nowiki(v) .. '" of mw.loadDat...)
- 20:58, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:Arguments (Створена сторінка: -- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(va...)
- 20:57, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:String (Створена сторінка: --[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. Global options ignore_errors: If set to 'true' or...)
- 20:55, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Модуль:About (Створена сторінка: local mArguments --initialize lazily local mHatnote = require('Module:Hatnote') local mHatList = require('Module:Hatnote list') local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local p = {} function p.about (frame) -- A passthrough that gets args from the frame and all mArguments = require('Module:Arguments') args = mArguments.getArgs(frame) return p._about(args) end function p._about (args, options) -- Produces "a...)
- 20:52, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Шаблона:За (Створена сторінка: {{#invoke:about|about}}<noinclude> </noinclude>)
- 20:32, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Шаблона:Інфобокс (Створена сторінка: {{#ifeq:{{{child|}}}|yes||<table class="infobox {{{bodyclass|}}}" cellspacing="5" style="float:right; width:22em; text-align:left; font-size:88%; line-height:1.5em; {{{bodystyle|}}}"><!-- Caption -->{{#if:{{{title|}}}|<caption class="{{{titleclass|}}}" style="font-size:125%; font-weight:bold; {{{titlestyle|}}}">{{{title}}}</caption>}}<!-- Header -->{{#if:{{{above|}}}|{{Інфобокс/row |header={{{above}}} |headerstyle=text-align:center; font-size:1...)
- 20:31, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку Шаблона:Інфобокс/row (Створена сторінка: {{#if:{{{header|}}} |<tr><th colspan="2" class="{{{class|}}}" style="text-align:center; {{{headerstyle|}}}">{{{header}}}</th></tr> |{{ #if:{{{data|{{{2|}}}}}} |<tr class="{{{rowclass|}}}">{{ #if:{{{label|{{{1|}}}}}} |<th style="text-align:left; {{{labelstyle|}}}">{{{label|{{{1|}}}}}}</th><td class="{{{class|}}}" style="{{{datastyle|}}}"> |<td colspan="2" class="{{{class|}}}" style="text-align:center; {{{datastyle|}}}"> }}{{{data|{{{2|}}}}}}</td...)
- 16:26, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку MediaWiki:Citizen-footer-tagline (Створена сторінка: Сеся вікі ще у розробці.)
- 16:25, 17 октовбра 2023 Бетярь діскузія приспівкы вытворив сторінку MediaWiki:Citizen-footer-desc (Створена сторінка: Вікі за „Коцкы“ — руснацькый Майнкрафт-сервер.)
- 00:40, 17 октовбра 2023 MediaWiki default діскузія приспівкы вытворив сторінку Головна сторінка