Основные общедоступные журналы
Общий список журналов сайта Ascia Wiki. Вы можете отфильтровать результаты по типу журнала, имени участника (учитывается регистр) или затронутой странице (также учитывается регистр).
- 21:25, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:No globals (Новая страница: «local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('Tried to read nil global ' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('Tried to write global ' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)»)
- 21:23, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:TableTools (Новая страница: «--[[ ------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be called from other Lua modules, and should -- -- not be called directly from #...»)
- 21:22, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:Lua banner (Новая страница: «-- This module implements the {{lua}} template. local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') local p = {} function p.main(frame) local origArgs = frame:getParent().args local args = {} for k, v in pairs(origArgs) do v = v:match('^%s*(.-)%s*$') if v ~= '' then args[k] = v end end return p._main(args) end function p...»)
- 21:21, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:Namespace detect/config (Новая страница: «-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --...»)
- 21:20, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:Namespace detect/data (Новая страница: «-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') l...»)
- 21:16, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:List (Новая страница: «-- This module outputs different kinds of lists. At the moment, bulleted, -- unbulleted, horizontal, ordered, and horizontal ordered lists are supported. local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] = true, ['ordered'] = true, ['horizontal_ordered'] = true } function p.makeListData...»)
- 21:13, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:Documentation/config (Новая страница: «---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. --------------------------------------------------------------------...»)
- 21:12, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:Sidebar (Новая страница: «-- -- This module implements {{Sidebar}} -- require('Module:No globals') local p = {} local getArgs = require('Module:Arguments').getArgs local navbar = require('Module:Navbar')._navbar local function trimAndAddAutomaticNewline(s) -- For compatibility with the original {{sidebar with collapsible lists}} -- implementation, which passed some parameters through {{#if}} to trim -- their whitespace. This also triggered the automatic newline behavior. -- ([...»)
- 20:32, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:Navbar (Новая страница: «local p = {} local getArgs function p._navbar(args) local titleArg = 1 if args.collapsible then titleArg = 2 if not args.plain then args.mini = 1 end if args.fontcolor then args.fontstyle = 'color:' .. args.fontcolor .. ';' end args.style = 'float:left; text-align:left' end local titleText = args[titleArg] or (':' .. mw.getCurrentFrame():getParent():getTitle()) local title = mw.title.new(mw.text.trim(titleText), 'Template'); if n...»)
- 20:27, 19 января 2025 Askell обсуждение вклад создал страницу Шаблон:Infobox (Новая страница: «{{#invoke:Infobox|infobox}}<noinclude> {{documentation}} <!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --> </noinclude>»)
- 20:24, 19 января 2025 Askell обсуждение вклад создал страницу Модуль: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(val)...»)
- 20:22, 19 января 2025 Askell обсуждение вклад создал страницу Шаблон:High-risk (Новая страница: «{{ombox | type = content | image = 40px|alt=Warning|link= | imageright = | text = '''This {{ #switch:{{NAMESPACE}} |Module=Lua module |#default=template }} is used on <span class="plainlinks">[https://tools.wmflabs.org/templatecount/index.php?lang=en&namespace={{NAMESPACENUMBER:{{FULLPAGENAME}}}}&name={{urlencode:{{ #switch: {{SUBPAGENAME}} | doc | sandbox = {{BASEPAGENAME}} | #default = {{PAGENAME}} }}}} {{#if:{{{1|}}...»)
- 20:17, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:Documentation (Новая страница: «-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs local messageBox = require('Module:Message box') -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local function...»)
- 20:16, 19 января 2025 Askell обсуждение вклад создал страницу Шаблон:Documentation (Новая страница: «{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>»)
- 20:15, 19 января 2025 Askell обсуждение вклад создал страницу Шаблон:Clc (Новая страница: «[[:Category:{{#ifeq:{{str left|{{{1}}}|9}}|Category:|{{str right|{{{1}}}|9}}|{{{1}}}}}]] ({{PAGESINCATEGORY:{{#ifeq:{{str left|{{{1}}}|9}}|Category:|{{str right|{{{1}}}|9}}|{{{1}}}}}|{{{2|all}}}}})<noinclude> {{Documentation|Template:Clc/doc}} Category:Internal category-link templates </noinclude>»)
- 20:10, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:Infobox/doc (Новая страница: «{{High-risk|2,900,000 +}} {{module rating|protected}} This module implements the {{tl|Infobox}} template. Please see the template page for usage instructions. == Tracking categories == * {{clc|Articles which use infobox templates with no data rows}} * {{clc|Pages which use embedded infobox templates with the title parameter}} <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox|| Category:Modules that add a tracking category Category:Wikipedia infoboxes }...»)
- 20:02, 19 января 2025 Askell обсуждение вклад создал страницу Модуль:Infobox (Новая страница: «-- -- This module implements {{Infobox}} -- local p = {} local navbar = require('Module:Navbar')._navbar local args = {} local origArgs local root local function notempty( s ) return s and s:match( '%S' ) end local function fixChildBoxes(sval, tt) if notempty(sval) then local marker = '<span class=special_infobox_marker>' local s = sval s = mw.ustring.gsub(s, '(<%s*[Tt][Rr])', marker .. '%1') s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>)', '%1' .....»)
- 19:20, 19 января 2025 Askell обсуждение вклад создал страницу Шаблон:\Цитата (Новая страница: «<div style="display: block; text-align:right; font-weight:bold; font-style:normal;"> — {{{1}}} </div>»)
- 19:17, 19 января 2025 Askell обсуждение вклад создал страницу Шаблон:Цитата (Новая страница: «<div style="display: block; text-align:right; font-weight:bold; font-style:normal;"> — {{{1}}} </div>»)
- 13:02, 19 января 2025 Askell обсуждение вклад переименовал страницу Куку в Песочница без оставления перенаправления (Замена текста — «Куку» на «Песочница»)
- 12:32, 19 января 2025 Askell обсуждение вклад создал страницу Файл:Заголовок.png
- 12:32, 19 января 2025 Askell обсуждение вклад загрузил Файл:Заголовок.png
- 11:30, 19 января 2025 Askell обсуждение вклад переименовал страницу Сайт в Куку без оставления перенаправления (Замена текста — «Сайт» на «Куку»)
- 21:01, 18 января 2025 Askell обсуждение вклад создал страницу Файл:Border8.png
- 21:01, 18 января 2025 Askell обсуждение вклад загрузил Файл:Border8.png
- 17:49, 18 января 2025 Askell обсуждение вклад создал страницу Файл:ФОНGPT.jpg
- 17:49, 18 января 2025 Askell обсуждение вклад загрузил Файл:ФОНGPT.jpg
- 16:35, 18 января 2025 Askell обсуждение вклад создал страницу Файл:Ugol pravyi.jpg
- 16:35, 18 января 2025 Askell обсуждение вклад загрузил Файл:Ugol pravyi.jpg
- 16:12, 18 января 2025 Askell обсуждение вклад создал страницу Файл:BorderAuf.png
- 16:12, 18 января 2025 Askell обсуждение вклад загрузил Файл:BorderAuf.png
- 15:01, 18 января 2025 Askell обсуждение вклад создал страницу Файл:Фон1.jpg
- 15:01, 18 января 2025 Askell обсуждение вклад загрузил Файл:Фон1.jpg
- 17:27, 17 января 2025 Askell обсуждение вклад создал страницу Сайт (Новая страница: «вмвмпываыаыаыууаыцуа»)
- 17:05, 17 января 2025 Askell обсуждение вклад создал страницу MediaWiki:Tweeki.css (Новая страница: «CSS placed here will affect users of the Tweeki skin: @import url('https://fonts.googleapis.com/css?family=Merriweather|Cormorant Infant|PT Mono|Neucha|MedievalSharp|Spectral SC|Kurale|El Messiri|Ledger'); #back-to-top { position: fixed; bottom: 20px; right: 20px; background-color: #333; color: #fff; padding: 10px; border-radius: 5px; cursor: pointer; text-align: center; } #back-to-top a { color: #fff; text-decoration: none; } .tabbertab { border:...»)
- 14:55, 17 января 2025 MediaWiki default обсуждение вклад создал страницу Заглавная страница