Все доступные журналы

Перейти к навигации Перейти к поиску

Общий список журналов сайта Игорьпедия. Вы можете отфильтровать результаты по типу журнала, имени участника (учитывается регистр) или затронутой странице (также учитывается регистр).

Журналы
  • 00:28, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль:Message box (содержимое: «require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions -----------------------------------------------------------------------...»)
  • 00:28, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль: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._main(arg...»)
  • 00:28, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль: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.templatestyles...»)
  • 00:28, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль:Infobox/styles.css (содержимое: «{{pp|small=y}}: * This TemplateStyles sheet deliberately does NOT include the full set of * infobox styles. We are still working to migrate all of the manual * infoboxes. See MediaWiki talk:Common.css/to do#Infobox * DO NOT ADD THEM HERE: * not strictly certain these styles are necessary since the modules now * exclusively output infobox-subbox or infobox, not both * just replicating the module faithfully: .infobox-subbox { padding: 0; b...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль:Infobox (содержимое: «local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_t = { patterns = { '^hlist$', '%shlist$', '^hlist%s', '%shlis...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль:High-use (содержимое: «local p = {} -- _fetch looks at the "demo" argument. local _fetch = require('Module:Transclusion_count').fetch local yesno = require('Module:Yesno') function p.num(frame, count) if count == nil then if yesno(frame.args['fetch']) == false then if (frame.args[1] or '') ~= '' then count = tonumber(frame.args[1]) end else count = _fetch(frame) end end -- Build output string local return_value = "" if count == nil then if frame.args[1] == "risk" the...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль: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. Also in...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль:Hatnote/styles.css (содержимое: «{{pp|small=y}}: .hatnote { font-style: italic; } Limit structure CSS to divs because of Module:Hatnote inline: div.hatnote { @noflip: padding-left: 1.6em; margin-bottom: 0.5em; } .hatnote i { font-style: normal; } The templatestyles element inserts a link element before hatnotes. * TODO: Remove link if/when WMF resolves T200206: .hatnote + link + .hatnote { margin-top: -0.5em; }»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль: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....»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль: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 libraryUtil = requ...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль:File link (содержимое: «-- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "type error...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль:Effective protection level (содержимое: «local p = {} -- Returns the permission required to perform a given action on a given title. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview' then local...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль:Effective protection expiry (содержимое: «local p = {} -- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == '...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль:Documentation/styles.css (содержимое: «{{pp|small=yes}}: .documentation, .documentation-metadata { border: 1px solid #a2a9b1; background-color: #ecfcf4; clear: both; } .documentation { margin: 1em 0 0 0; padding: 1em; } .documentation-metadata { margin: 0.2em 0; same margin left-right as .documentation: font-style: italic; padding: 0.4em 1em; same padding left-right as .documentation: } .documentation-startbox { padding-bottom: 3px; border-bottom: 1px solid #aaa; margin-...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль: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. -----------------------------------------------------------------------------...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль:Documentation (содержимое: «-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub local format = mw.ustring.format ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль:Distinguish (содержимое: «local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local mArguments --initialize lazily local mTableTools --initialize lazily local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local p = {} function p.distinguish(frame) mArguments = require('Module:Arguments') mTableTools = require('Module:TableTools') local args = mArguments.getArgs(frame) local selfref = args.selfref local text = args.tex...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль: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 original wiki...»)
  • 00:27, 15 ноября 2023 Igor обсуждение вклад удалил страницу Модуль: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) == 'stri...»)
  • 00:22, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Yesno-no (содержимое: «{{safesubst:<noinclude />yesno|{{{1}}}|yes={{{yes|yes}}}|no={{{no|no}}}|blank={{{blank|no}}}|¬={{{¬|no}}}|def={{{def|no}}}}}<noinclude> {{Documentation|Template:Yesno/doc}} <!--Categories go in the doc page referenced above; interwikis go in Wikidata.--> </noinclude>»)
  • 00:21, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Yesno (содержимое: «{{<includeonly>safesubst:</includeonly>#switch: {{<includeonly>safesubst:</includeonly>lc: {{{1|¬}}} }} |no |n |f |false |off |0 = {{{no|<!-- null -->}}} | = {{{blank|{{{no|<!-- null -->}}}}}} |¬ = {{{¬|}}} |yes |y |t |true |on |1 = {{{yes|yes}}} |#default = {{{def|{{{yes|yes}}}}}} }}<noinclude> {{Documentation}} </noinclude>»)
  • 00:21, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Tlf (содержимое: «#REDIRECT Template:Template link with link off {{Redirect category shell| {{R from move}} }}»)
  • 00:21, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Tl (содержимое: «#REDIRECT Template:Template link {{Redirect category shell| {{R from move}} }}»)
  • 00:21, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Template parameter usage (содержимое: «{{#switch:{{{label|}}} |=[https://bambots.brucemyers.com/TemplateParam.php?wiki=enwiki&template={{Urlencode:{{#if:{{{1|}}}|{{ROOTPAGENAME:{{{1|}}}}}|{{ROOTPAGENAME}}}}}} {{#ifeq:{{yesno-no|{{{lc}}}}}|no|C|c}}lick here] to see a monthly parameter usage report for {{#if:{{{1|}}}|[[Template:{{ROOTPAGENAME:{{{1|}}}}}]]|this template}} in articles{{#ifeq:{{yesno-no|{{{based}}}}}|yes| based on {{#if:{{{1|}}}|its|this}} TemplateData}}. |None|none=[https://bambots.bruc...»)
  • 00:21, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Template other (содержимое: «{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:Template}} | template | other }} }} | template = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch--><noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>»)
  • 00:21, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:TemplateData header (содержимое: «<div class="templatedata-header">{{#if:{{{noheader|}}}|<!-- noheader: -->{{Template parameter usage|based=y}}|<!-- +header: -->This is the {{#if:{{{nolink|}}}|<!-- +header, nolink TD -->TemplateData|<!-- +header, +link TD; DEFAULT: -->TemplateData}}<!-- e.o. #if:nolink; DEFAULT: --> for this template used by TemplateWizard, VisualEditor and other tools. {{Template pa...»)
  • 00:21, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Suppress categories (содержимое: «<includeonly>{{{{{|safesubst:}}}#invoke:Suppress categories|main}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>»)
  • 00:20, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Sidebar (содержимое: «{{#invoke:Sidebar|sidebar}}<noinclude> {{documentation}}</noinclude>»)
  • 00:20, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Sandbox other (содержимое: «{{#if:{{#ifeq:{{#invoke:String|sublength|s={{SUBPAGENAME}}|i=0|len=7}}|sandbox|1}}{{#ifeq:{{SUBPAGENAME}}|doc|1}}{{#invoke:String|match|{{PAGENAME}}|/sandbox/styles.css$|plain=false|nomatch=}}|{{{1|}}}|{{{2|}}}}}<!-- --><noinclude>{{documentation}}</noinclude>»)
  • 00:20, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Parameter names example (содержимое: «<includeonly>{{#invoke:Parameter names example|main}}</includeonly><noinclude> {{documentation}}<!-- Add categories to the /doc subpage, interwikis to Wikidata, not here --> </noinclude>»)
  • 00:20, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Para (содержимое: «<code class="tpl-para" style="word-break:break-word;{{SAFESUBST:<noinclude />#if:{{{plain|}}}|border: none; background-color: inherit;}} {{SAFESUBST:<noinclude />#if:{{{plain|}}}{{{mxt|}}}{{{green|}}}{{{!mxt|}}}{{{red|}}}|color: {{SAFESUBST:<noinclude />#if:{{{mxt|}}}{{{green|}}}|#006400|{{SAFESUBST:<noinclude />#if:{{{!mxt|}}}{{{red|}}}|#8B0000|inherit}}}};}} {{SAFESUBST:<noinclude />#if:{{{style|}}}|{{{style}}}}}">|{{SAFESUBST:<noinclude />#if:{{{1|}}}|{{{1}}}...»)
  • 00:20, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Nobold/styles.css (содержимое: «{{pp-template}}: Styling for Template:Nobold: .nobold { font-weight: normal; }»)
  • 00:20, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Nobold (содержимое: «<templatestyles src="Nobold/styles.css"/><span class="nobold">{{{1}}}</span><noinclude> {{documentation}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --> </noinclude>»)
  • 00:20, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Main other (содержимое: «{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:0}} | main | other }} }} | main = {{{1|}}} | other | #default = {{{2|}}} }}<noinclude> {{documentation}} <!-- Add categories to the /doc subpage; interwikis go to Wikidata, thank you! --> </noinclude>»)
  • 00:20, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Template link with link off (содержимое: «<includeonly>{{#Invoke:Template link general|main|nowrap=yes|nolink=yes}}</includeonly><noinclude> {{Documentation|1=Template:Tlg/doc |content = {{tlg/doc|tlf}} }} <!-- Add categories to the /doc subpage, not here! --> </noinclude>»)
  • 00:20, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Template link (содержимое: «{{[[Template:{{{1}}}|{{{1}}}]]}}<noinclude>{{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>»)
  • 00:20, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Tlx (содержимое: «#REDIRECT Template:Template link expanded {{Redirect category shell| {{R from move}} }}»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Lua (содержимое: «<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{Lua|Module:Lua banner}} {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Infobox/doc (содержимое: «{{Documentation subpage}} <!-- Please place categories where indicated at the bottom of this page and interwikis at Wikidata (see Wikipedia:Wikidata) --> {{distinguish|Template:Userbox}} {{#ifeq:{{SUBPAGENAME}}|sandbox||{{High-use}}}} {{Lua|Module:Infobox}} {{Parameter names example |name={{PAGENAME}} <!--|child |subbox |decat--> |title |above |subheader |subheader1 |subheader2={{{subheader2}}}<br/>...... |image|caption |image1|caption1 |image2|caption2={{{capt...»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Infobox (содержимое: «{{#invoke:Infobox|infobox}}<includeonly>{{template other|{{#ifeq:{{PAGENAME}}|Infobox||{{#ifeq:{{str left|{{SUBPAGENAME}}|7}}|Infobox|{{remove first word|{{SUBPAGENAME}}}}}}}}|}}</includeonly><noinclude> {{documentation}} <!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --> </noinclude>»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Hlist/styles.css (содержимое: «{{pp-protected|reason=match parent|small=yes}}: * hlist styles are defined in core and Minerva and differ in Minerva. The * current definitions here (2023-01-01) are sufficient to override Minerva * without use of the hlist-separated class. The most problematic styles were * related to margin, padding, and the bullet. Check files listed at * MediaWiki talk:Common.css/to do#hlist-separated: /* * TODO: When the majority of readership supports it (...»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:High-use (содержимое: «{{#invoke:High-use|main|1={{{1|}}}|2={{{2|}}}|info={{{info|}}}|demo={{{demo|}}}|form={{{form|}}}|expiry={{{expiry|}}}|system={{{system|}}}}}<noinclude> {{Documentation}} <!-- Add categories to the /doc subpage; interwiki links go to Wikidata, thank you! --> </noinclude>»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Documentation subpage (содержимое: «<includeonly><!-- -->{{#ifeq:{{lc:{{SUBPAGENAME}}}} |{{{override|doc}}} | <!--(this template has been transcluded on a /doc or /{{{override}}} page)--> </includeonly><!-- -->{{#ifeq:{{{doc-notice|show}}} |show | {{Mbox | type = notice | style = margin-bottom:1.0em; | image = 40px|alt=|link= | text = {{strong|This is a Wikipedia:Template documentation|documentatio...»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Documentation (содержимое: «{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Div col end (содержимое: «<includeonly></div></includeonly><noinclude> {{Documentation|Template:Div col/doc}} </noinclude>»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Div col/styles.css (содержимое: «{{pp|small=yes}}: .div-col { margin-top: 0.3em; column-width: 30em; } .div-col-small { font-size: 90%; } .div-col-rules { column-rule: 1px solid #aaa; } Reset top margin for lists in div col: .div-col dl, .div-col ol, .div-col ul { margin-top: 0; } Avoid elements breaking between columns See also Template:No col break: .div-col li, .div-col dd { page-break-inside: avoid; Removed from CSS in favor of break-inside c. 2020: break-inside...»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Div col (содержимое: «<includeonly><templatestyles src="Div col/styles.css"/><!-- --><div class="div-col {{#ifeq:{{{small|}}}|yes|div-col-small}} {{#ifeq:{{{rules|}}}|yes|div-col-rules}} {{{class|}}}" <!-- -->{{#if:{{{colwidth|}}}{{{gap|}}}{{{style|}}}|<!-- -->style="{{#if:{{{colwidth|}}}|column-width: {{{colwidth}}};}}{{#if:{{{gap|}}}|column-gap: {{{gap}}};}}{{#if:{{{style|}}}|{{{style}}}}}"<!-- -->}}><!-- -->{{#if:{{{content|}}}|{{{content}}}</div>}}<!-- Inventory how many pages use sma...»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Distinguish (содержимое: «{{#invoke:Distinguish|distinguish}}<noinclude><!-- splitting these lines causes {{Documentation}} template to terminate green shading when Distinguish is used in /doc pages. --> {{Documentation}} <!-- Add categories to the /doc subpage and interwikis to Wikidata, not here! --> </noinclude>»)
  • 00:19, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Clear (содержимое: «<div style="clear:{{{1|both}}};"></div><noinclude> {{documentation}} </noinclude>»)
  • 00:18, 15 ноября 2023 Igor обсуждение вклад удалил страницу Шаблон:Category link with count (содержимое: «[[:Category:{{#invoke:string|replace|1={{{1}}}|2=^:?[Cc]ategory:|3=|plain=false}}|<!-- -->{{#if:{{{name|}}}|{{{name}}}|Category:{{#invoke:string|replace|1={{{1}}}|2=^:?[Cc]ategory:|3=|plain=false}}}}<!-- -->]] ({{PAGESINCATEGORY:{{#invoke:string|replace|1={{{1}}}|2=^:?[Cc]ategory:|3=|plain=false}}|{{{2|all}}}}})<noinclude> {{Documentation}} </noinclude>»)