Вклад участника Vinogradgarden
Результаты для Vinogradgarden обсуждение блокировки загрузки журналы журнал злоупотреблений
Участник с 1361 правкой. Учётная запись создана 5 марта 2024 года.
6 марта 2024
- 12:5812:58, 6 марта 2024 разн. история +6 Шаблон:Threat Levels Нет описания правки
- 12:5712:57, 6 марта 2024 разн. история 0 Шаблон:Threat Levels Нет описания правки
- 12:5612:56, 6 марта 2024 разн. история +1 Стандартные Рабочие Процедуры Нет описания правки Метка: визуальный редактор отключён
- 12:2012:20, 6 марта 2024 разн. история 0 Н Файл:Axioma.jpg Нет описания правки текущая
- 12:1912:19, 6 марта 2024 разн. история −7 Шаблон:Infobox Role Нет описания правки
- 11:2311:23, 6 марта 2024 разн. история +652 Н Модуль:Hatnote/styles.css Новая страница: «.hatnote-container { display: flex; align-items: center; padding: calc(0.75 * 1rem) 1rem; margin-top: calc(0.5 * 1rem); margin-bottom: 1rem; background: hsl(210,17%,98%); →--border-radius--medium: border-radius: 8px; →--border-radius--medium: color: #72777d; →--color-base--subtle: font-size: 0.875rem; →--font-size-small: line-height: 1.25; →--line-height-xs: } .hatnote-icon img { width: 0.875re...» текущая
- 10:4910:49, 6 марта 2024 разн. история +8376 Н Модуль:Translate Новая страница: «require( 'strict' ) local Translate = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType --- Cache table containing i18n data at the 'data' key, and a key map at the 'keys' key --- The table is keyed by the i18n.json module name local cache = {} local i18nDataset = 'Module:Translate/i18n.json' --- Uses the current title as the base and appe...» текущая
- 10:4810:48, 6 марта 2024 разн. история +1880 Н Модуль:Mbox Новая страница: «local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local mArguments -- lazily initialise Module:Arguments local mError -- lazily initialise Module:Error local p = {} --- Helper function to throw error -- -- @param msg string - Error message -- -- @return string - Formatted error message in wikitext local function makeWikitextError( msg ) mError = require( 'Module:Error' ) return mError.error { message = 'Er...» текущая
- 10:4810:48, 6 марта 2024 разн. история +6544 Н Модуль:Format link Новая страница: «-- Imported from: https://en.wikipedia.org/wiki/Module: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. ----------------------------...» текущая
- 10:4810:48, 6 марта 2024 разн. история +8121 Н Модуль: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 variants...» текущая
- 10:4710:47, 6 марта 2024 разн. история +7258 Н Модуль: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....» текущая
- 10:4710:47, 6 марта 2024 разн. история +920 Н Модуль:User error Новая страница: «-------------------------------------------------------------------------------- -- A less intimidating version of the built-in "error()" function, to help -- editors fix their mistakes when transcluding a template. -- -- @see wikia:w:c:Dev:Module:User error for a similar module. -------------------------------------------------------------------------------- local checkType = require("libraryUtil").checkType; return function (message, ...) checkType(...» текущая
- 10:4610:46, 6 марта 2024 разн. история +2904 Н Модуль:Paramtest Новая страница: «-- Imported from: https://runescape.wiki/w/Module:Paramtest --[[ {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any value |fuse3 = If arg1 exists and does not only contain whitespace, the function...» текущая
- 10:4610:46, 6 марта 2024 разн. история +30 602 Н Модуль:Array Новая страница: «-- Imported from: https://runescape.wiki/w/Module:Array local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti ---@class Array ---@operator call(any[]): Array ---@operator concat(any[]): Array ---@operator concat(number|string|function): string ---@operator unm: Array ---@operator add(number|number[]|Array): Array ---@operator sub(number|number[]|Array): Array ---@operator mul(nu...» текущая
- 10:4510:45, 6 марта 2024 разн. история +22 955 Н Модуль:DependencyList Новая страница: «--- Based on Module:DependencyList from RuneScape Wiki --- Modified to use SMW instead of DPL --- @see https://runescape.wiki/w/Module:DependencyList require("strict"); local p = {} local libraryUtil = require( 'libraryUtil' ) local arr = require( 'Module:Array' ) local yn = require( 'Module:Yesno' ) local param = require( 'Module:Paramtest' ) local userError = require("Module:User error") local hatnote = require('Module:Hatnote')._hatnote local mHatlist =...» текущая
- 10:4410:44, 6 марта 2024 разн. история +6744 Н Модуль:Documentation Новая страница: «-- <nowiki> local dependencyList = require( 'Module:DependencyList' ) local hatnote = require( 'Module:Hatnote' )._hatnote local mbox = require( 'Module:Mbox' )._mbox local TNT = require( 'Module:Translate' ):new() local lang = mw.getContentLanguage() local p = {} --- FIXME: This should go to somewhere else, like Module:Common --- Calls TNT with the given key --- --- @param key string The translation key --- @return string If the key was not found in the ....» текущая
- 10:4410:44, 6 марта 2024 разн. история +1226 Н Шаблон:Documentation/doc Новая страница: «{{Documentation}} The '''documentation''' template is transcluded in the template/module documentation. This template should only be used on subpages titled "doc". ==Usage== Place {{t|documentation}} at the top of the documentation page. If the page to be documented is a subpage, use {{t|documentation|pagename of page to be documented}} at the top of the documentation page. For example, Template:Foo/bar's documentation page would use {{t|documentation|Te...» текущая
- 10:4310:43, 6 марта 2024 разн. история −820 Шаблон:Documentation Нет описания правки
- 10:4310:43, 6 марта 2024 разн. история +388 Н Шаблон:Shortcut/doc Новая страница: «{{Documentation|fromWikipedia=true}} {{Template shortcut|Shc|Short|Shorthand}} {{t|Shortcut}} adds a shortcut box to an article or a section which provides the shortcut link to that article or section. See Template:Shortcut on Wikipedia for more details. <includeonly>{{PAGENAME}}</includeonly><noinclude></noinclude>» текущая
- 10:4210:42, 6 марта 2024 разн. история +159 Н Шаблон:Shortcut Новая страница: «<includeonly>{{#invoke:Shortcut|main}}</includeonly><noinclude>{{/doc}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>» текущая
- 10:4210:42, 6 марта 2024 разн. история +1101 Н SS220:Shortcut Новая страница: «{{Shortcut|SS220:SS220|SS220:SHORT}} A '''shortcut''' is a type of redirect page that provides an abbreviated wikilink to a project page or one of its sections, usually from the Star Citizen: namespace. If there is a shortcut for a page or section, it is usually displayed in an information box labelled 'Shortcuts', as seen at the right side of this page. See Template:Shortcut for instructions on how t...» текущая
- 10:4010:40, 6 марта 2024 разн. история +145 Н Шаблон:Plainlist/styles.css Новая страница: «.plainlist ol, .plainlist ul { line-height: inherit; list-style: none; margin: 0; } .plainlist ol li, .plainlist ul li { margin-bottom: 0; }» текущая
- 10:3910:39, 6 марта 2024 разн. история +466 Н Модуль:Shortcut/styles.css Новая страница: «.module-shortcutboxplain { float: right; margin: 0.8rem 0 0.8rem 1rem; padding: 10px; color: #72777d; background: hsl(205,25%,15%); border-radius: 8px; text-align: center; } .module-shortcutlist { margin-bottom: 0.2rem; font-weight: bold; font-size: 0.825rem; } .module-shortcutboxplain ul { margin: 0!important; padding: 0!important; list-style: none; } .module-shortcutboxplain li { font-size: 0.875re...» текущая
- 10:3710:37, 6 марта 2024 разн. история +8030 Н Модуль: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 #...» текущая
- 10:3610:36, 6 марта 2024 разн. история +5565 Н Модуль:List Новая страница: «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(listType, args) -- Constructs a data table to be passed to p.renderList. local data = {} -- Classes and TemplateStyles data.classes = {} data.templa...» текущая
- 10:3510:35, 6 марта 2024 разн. история +355 Н Шаблон:No redirect Новая страница: «{{{{{|safesubst:}}}#if: {{{{{|safesubst:}}}#invoke:Redirect|isRedirect|{{{1}}}}} | <span class="plainlinks">[{{{{{|safesubst:}}}fullurl:{{{1}}}|redirect=no}} {{{2|{{{1}}}}}}]</span> | {{{{{|safesubst:}}}#if:{{{2|}}}|[[:{{{{{|safesubst:}}}FULLPAGENAME:{{{1}}}}}|{{{2}}}]]|[[:{{{{{|safesubst:}}}FULLPAGENAME:{{{1}}}}}]]}} }}<noinclude> {{/doc}} </noinclude>» текущая
- 10:3410:34, 6 марта 2024 разн. история +1030 Н Модуль:Shortcut/config Новая страница: «-- This module holds configuration data for Module:Shortcut. return { -- The heading at the top of the shortcut box. It accepts the following parameter: -- $1 - the total number of shortcuts. (required) ['shortcut-heading'] = '{{PLURAL:$1|Shortcut|Shortcuts}}', -- The error message to display when a shortcut is invalid (is not a string, or -- is the blank string). It accepts the following parameter: -- $1 - the number of the...» текущая
- 10:3310:33, 6 марта 2024 разн. история +1039 Н Модуль:Yesno Новая страница: «-- Imported from: https://en.wikipedia.org/wiki/Module: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...» текущая
- 10:3210:32, 6 марта 2024 разн. история +4336 Н Модуль:Shortcut Новая страница: «-- This module implements {{shortcut}}. -- Set constants local CONFIG_MODULE = 'Module:Shortcut/config' -- Load required modules local checkType = require('libraryUtil').checkType local yesno = require('Module:Yesno') local p = {} local function message(msg, ...) return mw.message.newRawMessage(msg, ...):plain() end local function makeCategoryLink(cat) return string.format('%s:%s', mw.site.namespaces[14].name, cat) end function p._main(shortcuts,...» текущая
- 10:3110:31, 6 марта 2024 разн. история +1766 Н Шаблон:Template shortcut/doc Новая страница: «{{Documentation|fromWikipedia=true}} {{tsh|tsh}} This template displays one or more of a template's shortcuts (that is, redirects, also known as aliases, as in the box appearing at the right. {{tl|Tsh}} is a shortcut to this template, {{<nowiki />template shortcut}}, and can be used in its place. See Wikipedia:Template:Template shortcut for more details. Note that there are no optional parameter in this template. == Usage == Place this template and its...» текущая
- 10:3010:30, 6 марта 2024 разн. история +96 Н Шаблон:Template shortcut Новая страница: «<includeonly>{{#invoke:Shortcut|main|template=yes}}</includeonly><noinclude>{{/doc}}</noinclude>» текущая
- 10:3010:30, 6 марта 2024 разн. история +40 Н Шаблон:Tsh Перенаправление на Шаблон:Template shortcut текущая Метка: новое перенаправление
- 10:2810:28, 6 марта 2024 разн. история +10 054 Н Модуль: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)...» текущая
- 10:2710:27, 6 марта 2024 разн. история +4323 Н Модуль:Template link general Новая страница: «-- This implements Template:Tlg local getArgs = require('Module:Arguments').getArgs local p = {} -- Is a string non-empty? local function _ne(s) return s ~= nil and s ~= "" end local nw = mw.text.nowiki local function addTemplate(s) local i, _ = s:find(':', 1, true) if i == nil then return 'Template:' .. s end local ns = s:sub(1, i - 1) if ns == '' or mw.site.namespaces[ns] then return s else return 'Template:' .. s end end local function...» текущая
- 10:2610:26, 6 марта 2024 разн. история +88 Н Шаблон:Template link general Новая страница: «{{{{{|safesubst:}}}#Invoke:Template link general|main}}<noinclude> {{/doc}} </noinclude>» текущая
- 10:2610:26, 6 марта 2024 разн. история +44 Н Шаблон:Tlg Перенаправление на Шаблон:Template link general текущая Метка: новое перенаправление
- 10:2610:26, 6 марта 2024 разн. история +3293 Н Шаблон:Template link general/doc Новая страница: «{{Documentation|fromWikipedia=true}} {{tsh|{{{1|tlg}}}|{{{2|}}}}} This template, often abbreviated as {{tlf|{{#switch:{{lc:{{ROOTPAGENAME}}}} | tlg | template link general = tlg | tlb | template link with bold = tlb | tlc | template link code = tlc | tlw ||template link with linked braces = tlw | tlf | template link with link off = tlf | tltss | template link with title span, subst = tltss | tlx | template link expanded = tlx | tlxb | template link expande...» текущая
- 10:2510:25, 6 марта 2024 разн. история +4 Шаблон:Tc Нет описания правки текущая
- 10:2410:24, 6 марта 2024 разн. история +214 Н Шаблон:Template link code Новая страница: «<includeonly>{{#Invoke:Template link general|main|nolink=yes|code=yes|nowrap=yes}}</includeonly><noinclude> {{Template:Template link general/doc}} <!-- Add categories to the /doc subpage, not here! --> </noinclude>» текущая
- 10:2410:24, 6 марта 2024 разн. история +41 Н Шаблон:Tc Перенаправление на Шаблон:Template link code Метка: новое перенаправление
5 марта 2024
- 21:4921:49, 5 марта 2024 разн. история 0 м Модуль:Key/styles.css Vinogradgarden переименовал страницу Шаблон:Модуль:Key/styles.css в Модуль:Key/styles.css без оставления перенаправления текущая
- 21:4821:48, 5 марта 2024 разн. история +275 Н Модуль:Key/styles.css Новая страница: «.keyboard-key { padding: 0.25em 0.5em; display: inline-block; line-height: 1; font-weight: 500; font-size: 0.875rem; border-radius: 4px; border: 1px solid; border-color: rgba(255,255,255,0.05); background: hsl(220,17%,93%); color: #202122; }»
- 21:4521:45, 5 марта 2024 разн. история +1 Шаблон:Key press/doc Нет описания правки текущая
- 21:4521:45, 5 марта 2024 разн. история +4946 Н Модуль:Key Новая страница: «-- This module implements {{key press}}. local kbdPrefix = '<kbd class="keyboard-key nowrap">' local kbdSuffix = '</kbd>' local keyText = { ['caps lock'] = '⇪ Caps Lock', ['caps lock'] = '⇪ Caps Lock', ['shift'] = '⇧ Shift', ['shift'] = '⇧ Shift', ['enter'] = '↵ Enter', ['enter'] = '↵ Enter', ['cmd'] = '⌘ Cmd', ['cmd'] = '⌘ Cmd', ['comm...» текущая
- 21:4421:44, 5 марта 2024 разн. история +8074 Н Шаблон:Key press/doc Новая страница: «{{Documentation|fromWikipedia=true}} This is the {{tl|key press}} template primarily designed to illustrate keys and keystrokes on a computer keyboard. With additional parameters, a single template can even illustrate a combination of multiple ''simultaneous'' keystrokes. A sequence of keystrokes, on the other hand, need to be demonstrated with separate templates. Example : {{tc|key press|A}} → {{key press|A}} As lower-case alphabetic characters a–z do...»
- 21:4421:44, 5 марта 2024 разн. история +101 Н Шаблон:Key press Новая страница: «<includeonly>{{{{{|safesubst:}}}#invoke:key|keypress}}</includeonly><noinclude> {{/doc}} </noinclude>» текущая
- 21:4321:43, 5 марта 2024 разн. история +2902 Н Шаблон:Em/doc Новая страница: «{{Documentation}} {{Wikipedia template}} {{t|Em}} is used to put strong emphasis on the text as simple italicizing is purely typographic and is semantically meaningless. == Purpose == This template makes it faster and easier to apply HTML's <code><nowiki><em>...</em></nowiki></code> emphasis markup to text, and more importantly to indicate to human and bot editors they should not use <code><nowiki>''...''</nowiki></code> or <code><nowiki><i>...</i></nowiki...» текущая
- 21:3621:36, 5 марта 2024 разн. история +5 Участник:Vinogradgarden Нет описания правки Метка: через визуальный редактор
- 21:3621:36, 5 марта 2024 разн. история +170 Н Участник:Vinogradgarden Новая страница: «Лучший вики-редактор! Самопровозглашенный руководитель организации технической части Вики.» Метка: через визуальный редактор
- 21:3521:35, 5 марта 2024 разн. история +6 Цели станции Нет описания правки