Дополнительные действия
Общий список журналов сайта wiki.iccup.org. Вы можете отфильтровать результаты по типу журнала, имени участника (учитывается регистр) или затронутой странице (также учитывается регистр).
- 14:01, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Tag/doc (Новая страница: «{{Documentation}} : {{t|tag|''tagname'' [|''type''] [|content=''text''] [|params=''parameters'']}} This template provides a quick way to mention an {{WP|ref=no|XML}}/{{WP|ref=no|HTML}}-style tag in a preformatted way. Mainly used in discussion/help pages. ===Parameters=== Required parameters shown in '''''bold italics'''''. ; {{para|first unnamed}} {{nobold| (''tagname'' above)}} : The XML/HTML tag's name (e.g. {{mono|100%|code}}, {{mono|100%|...») Метка: редактор вики-текста 2017
- 14:01, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Tag (Новая страница: «<code class="{{#ifeq:{{{wrap|}}}|yes|wrap|nowrap}}" style="{{#ifeq:{{{style|}}}|plain|border:none;background:transparent;|{{{style|}}}}}"><!-- Opening tag -->{{#switch:{{{2|pair}}} |c|close = |s|single |o|open |p|pair = <{{{1|tag}}}{{#if:{{{params|}}}| {{{params}}}}} }}<!-- Content between tags -->{{#switch:{{{2|pair}}} |c|close = {{{content|}}} |s|single = /> |o|open = >{{{content|}}} |p|pair = {{#ifeq:{{{1|tag}}}|!-...») Метка: редактор вики-текста 2017
- 14:00, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Arguments/doc (Новая страница: «{{Documentation|scwShared=true|fromWikipedia=true}} '''Module:Arguments''' provides easy processing of arguments passed from #invoke. It is a meta-module, meant for use by other modules, and should not be called from #invoke directly. Its features include: * Easy trimming of arguments and removal of blank arguments. * Arguments can be passed by both the current frame and by the parent frame at the same time. (More details below.) * Arguments can be passed i...») Метка: редактор вики-текста 2017
- 13:59, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль: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)...»)
- 13:58, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Tl (Перенаправление на Шаблон:Template link general) Метки: новое перенаправление редактор вики-текста 2017
- 13:58, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Tlg (Перенаправление на Шаблон:Template link general) Метки: новое перенаправление редактор вики-текста 2017
- 13:57, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон: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...») Метка: редактор вики-текста 2017
- 13:57, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Template link general (Новая страница: «{{{{{|safesubst:}}}#Invoke:Template link general|main}}<noinclude> {{/doc}} </noinclude>») Метка: редактор вики-текста 2017
- 13:56, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Gallery/doc (Новая страница: «{{Documentation}} '''Module:Gallery''' is a module that implements the {{tl|Gallery}} template. Please see the template page for usage instructions.») Метка: редактор вики-текста 2017
- 13:56, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Gallery (Новая страница: «local getArgs = require('Module:Arguments').getArgs local p = {} local root function p.main(frame) local args = getArgs(frame) return p._main(args) end function p._main(args) local filearg = '' local height = '120' local prependarg = '[[File:' local apprendarg = '|frameless|' .. 'x' .. height .. 'px]]' for key,value in pairs(args) do local content = args[key] -- Check if arg is a valid file name if content:match('.[^{}<>]+%.%w+') then...»)
- 13:54, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:For/doc (Новая страница: «{{Documentation|fromWikipedia=true}} '''Module:For''' implements the {{tl|For}} template.») Метка: редактор вики-текста 2017
- 13:54, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:For (Новая страница: «local mArguments --initialize lazily local mHatlist = require('Module:Hatnote list') local mHatnote = require('Module:Hatnote') local yesNo = require('Module:Yesno') local p = {} --Implements {{For}} from the frame --uses capitalized "For" to avoid collision with Lua reserved word "for" function p.For (frame) mArguments = require('Module:Arguments') return p._For(mArguments.getArgs(frame)) end --Implements {{For}} but takes a manual arguments table funct...»)
- 13:53, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:ScribuntoUnit/doc (Новая страница: «{{Documentation|fromWikipedia=true}} This module provides unit tests for other Lua modules. To test a module, you must create a separate test module, usually located at <code>Module:''Module name''/testcases</code>. The module is tested with the ScribuntoUnit module, which verifies that the operations defined in the test module produce the expected results. == Test module structure == To make a test module (test suite), start with the following...») Метка: редактор вики-текста 2017
- 13:53, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:ScribuntoUnit (Новая страница: «------------------------------------------------------------------------------- -- Unit tests for Scribunto. ------------------------------------------------------------------------------- require('strict') local DebugHelper = {} local ScribuntoUnit = {} -- The cfg table contains all localisable strings and configuration, to make it -- easier to port this module to another wiki. local cfg = mw.loadData('Module:ScribuntoUnit/config') ----------------------...»)
- 13:50, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Vehicle/doc (Новая страница: «{{documentation|scwShared=true}} This module handles data related to vehicles. On the vehicle page *Saves template parameters and API data as SMW data *Set category from SMW data *Set short description from SMW data *Display infobox from SMW data On other pages, it can be used to display the infobox of other vehicles.») Метка: редактор вики-текста 2017
- 13:49, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Vehicle (Новая страница: «require( 'strict' ) local Vehicle = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local i18n = require( 'Module:i18n' ):new() local TNT = require( 'Module:Translate' ):new() local common = require( 'Module:Common' ) local manufacturer = require( 'Module:Manufacturer' ):new() local hatnote = require( 'Module:Hatnote' )._hatnote local data = mw.loadJsonData( 'Module:Vehicle/data.json' ) local config = mw.loadJsonData( 'Modu...»)
- 13:48, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Common/testcases/doc (Новая страница: «{{Documentation}}») Метка: редактор вики-текста 2017
- 13:48, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Common/testcases (Новая страница: «-- Unit tests for Module:Common. Click talk page to run tests. local common = require('Module:Common') local ScribuntoUnit = require('Module:ScribuntoUnit') local suite = ScribuntoUnit:new() --common.removeTypeSuffix tests -- function suite:testRemoveTypeSuffix() self:assertEquals('Ship', common.removeTypeSuffix( 'Ship (ship)', 'ship' )) self:assertEquals('Test', common.removeTypeSuffix( 'Test (test)', 'test' )) self:assertEquals('S...»)
- 13:48, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Common/doc (Новая страница: «{{Documentation|scwShared=true}}») Метка: редактор вики-текста 2017
- 13:47, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Common (Новая страница: «local common = {} --- Convert an input to number ---@param num string|integer Input ---@param onFail string|integer Output if conversion fails ---@param base integer Base for tonumber, defaults to 10 ---@return number function common.toNumber( num, onFail, base ) base = base or 10 if num == nil then return onFail end local numCopy = num if type( num ) == 'string' then numCopy = num:gsub( ',', '.' ) end numCopy = tonu...»)
- 13:45, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Navplate vehicles/doc (Новая страница: «{{Documentation}} {{t|Navplate vehicles}} is a navplate template used for navigation on vehicle pages. It should be placed on the bottom of the page. == Usage == Type <code><nowiki>{{Navplate vehicles}}</nowiki></code> == TemplateData == <templatedata> { "params": {}, "description": "A navplate template used for navigation on vehicle pages. It should be placed on the bottom of the page.", "format": "block" } </templatedata> <includeonly>Category:Nav...») Метка: редактор вики-текста 2017
- 13:44, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Navplate vehicles (Новая страница: «<includeonly>{{#invoke:Navplate vehicles|main}}</includeonly><noinclude>{{/doc}}</noinclude>») Метка: редактор вики-текста 2017
- 13:44, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Navplate manufacturers/doc (Новая страница: «{{Documentation}} {{t|Navplate manufacturers}} is a navplate template used for navigation on manufactured product pages. It should be placed on the bottom of the page. It replaced the old {{t|Company navplate}}. == Usage == <code>{{t|Navplate manufacturers|Manufacturer Name/Code}}</code> == TemplateData == <templatedata> { "params": { "1": { "label": "Manufacturer code/name", "description": "The manufacturer code or name (code preferred)", "ex...») Метка: редактор вики-текста 2017
- 13:43, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Navplate manufacturers (Новая страница: «<includeonly>{{#invoke:Navplate/Manufacturers|main}}</includeonly><noinclude>{{/doc}}</noinclude>») Метка: редактор вики-текста 2017
- 13:43, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Gallery/styles.css (Новая страница: «<syntaxhighlight lang="css" line="1"> .template-gallery { margin-top: var( --space-md ); display: flex; gap: var( --space-xs ); } .template-gallery a.mw-file-description { display: block; border-radius: var( --border-radius--small ); overflow: hidden; } .template-gallery a.mw-file-description img { transition: transform 250ms ease; } .template-gallery a.mw-file-description:hover img { transform: scale(1.1); } .template-gallery video {...») Метка: редактор вики-текста 2017
- 13:42, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Gallery/doc (Новая страница: «{{Documentation}} ;Description :This template is used to implement gallery section into a page ;Syntax :Type <code><nowiki>{{Gallery|<<image 1>>|<<image 2>>|<<image 3>>|<...>|<<image 9>>}}</nowiki></code> ;Sample output :<code><nowiki>{{Gallery|tapir.jpg|tapirfront.jpg|tapirback.jpg}}</nowiki></code> ;References <references/>») Метка: редактор вики-текста 2017
- 13:42, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Gallery (Новая страница: «<includeonly>{{#if:{{{1|}}}|{{#invoke:Gallery|main}}}}<templatestyles src="Template:Gallery/styles.css"/></includeonly><noinclude>{{/doc}}</noinclude>») Метка: редактор вики-текста 2017
- 13:41, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:For/doc (Новая страница: «{{Documentation|fromWikipedia=true}} This template is used at the top of pages for simple disambiguations. ==TemplateData== <templatedata> { "description": "This template lists up to four articles on alternative meanings of a term. For further details and examples see the template documentation.", "params": { "1": { "label": "Description", "description": "a phrase describing the major alternative, or a general term for all...») Метка: редактор вики-текста 2017
- 13:41, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:For (Новая страница: «<includeonly>{{#invoke:For|For}}</includeonly><noinclude>{{/doc}}</noinclude>») Метка: редактор вики-текста 2017
- 13:39, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Find item UIF/styles.css (Новая страница: «.t-finditemuif { margin-top: var( --space-md ); } .t-finditemuif a { padding: var( --space-sm ) var( --space-md ); border: 1px solid var( --border-color-base ); border-radius: var( --border-radius--medium ); display: flex; align-items: center; gap: var( --space-sm ); font-size: 0.875rem; text-decoration: none; line-height: var( --line-height-sm ); } .t-finditemuif a::after { display: none; } .t-finditemuif a:hover { backgroun...») Метка: редактор вики-текста 2017
- 13:39, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Find item UIF/doc (Новая страница: «{{Documentation}} This template is used to create the Find item button that links to [https://finder.cstone.space/ Universal Item Finder]. It takes the UUID SMW property from the page and add it to the URL. <includeonly>Category:External link templates</includeonly>») Метка: редактор вики-текста 2017
- 13:39, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Find item UIF (Новая страница: «{{#if:{{SMW property|UUID}}|<div class="t-finditemuif">[https://finder.cstone.space/search/{{SMW property|UUID}} <div class="citizen-ui-icon mw-ui-icon-wikimedia-search"></div><div class="t-finditemuif__label"><div class="t-finditemuif__title">Find item in game</div><div class="t-finditemuif__subtitle">Powered by Universal Item Finder</div></div><div class="citizen-ui-icon mw-ui-icon-wikimedia-collapse"></div>]</div>}}<!-- Templatestyles --><templatestyles...») Метка: редактор вики-текста 2017
- 13:38, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Cite game/doc (Новая страница: «{{Documentation}} <!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE --> {{t|Cite game}} is an citation template for use referencing in-game information. == TemplateData == <templatedata> { "params": { "text": { "label": "Citation text", "description": "The text to describe the citation", "example": "Invictus Week 2950", "type": "string", "suggested": true, "default": "In-game survey" }, "build": { "label": "Game build", "descri...») Метка: редактор вики-текста 2017
- 13:38, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Cite game (Новая страница: «<includeonly><cite class="citation game">{{#if:{{{text|}}}|{{{text}}}|In-game survey}}.{{nbsp}}{{#if:{{{build|}}}|''{{{build}}}'' -{{nbsp}}}}{{#if:{{{game|}}}|''{{{game}}}''|''Star Citizen''}}{{#if:{{{accessdate|}}}|. Retrieved {{{accessdate}}}}}</cite><templatestyles src="Module:Cite/styles.css"/></includeonly><noinclude> {{/doc}} <!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --> </noinclude>») Метка: редактор вики-текста 2017
- 13:38, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Cite RSI/doc (Новая страница: «{{Documentation}} <!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE --> {{t|Cite RSI}} is an citation template for use in any pages on [https://robertsspaceindustries.com robertsspaceindustries.com], including Spectrum, Comm-links, Galactapedia, etc. == TemplateData == <templatedata> { "params": { "int": { "label": "Wiki page title", "description": "The page title on the wiki if a rehosted version exists on the wiki", "example": "Comm-Link:Galact...») Метка: редактор вики-текста 2017
- 13:37, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Cite RSI (Новая страница: «<includeonly>{{#invoke:Cite RSI|main}}</includeonly><noinclude>{{/doc}} <!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --> </noinclude>») Метка: редактор вики-текста 2017
- 13:36, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Documentation/i18n.json (Новая страница: «{ "license": "CC0-1.0", "description": { "en": "Translation table for the Module:Documentation" }, "schema": { "fields": [ { "name": "id", "type": "string" }, { "name": "message", "type": "localized" } ] }, "data": [ [ "module", { "de": "Modul", "en": "module" } ], [ "template", { "de": "Vorlage", "en": "template" } ], [ "message_subpage_title", { "de": "Dies ist di...»)
- 13:35, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:SMW property/doc (Новая страница: «{{Documentation}} {{t|SMW property}} is used to show the value of a single SMW property. It is default to the current page if page is not specified. ==TemplateData== <templatedata> { "params": { "1": { "label": "Property name", "description": "Name of the SMW property", "example": "UUID", "type": "string", "required": true, "suggested": true }, "page": { "label": "Page name", "description": "Page name if it is not current pag...») Метка: редактор вики-текста 2017
- 13:34, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:SMW property (Новая страница: «<includeonly>{{#if:{{{1|}}}|{{#show:{{{page|{{FULLPAGENAME}}}}}|?{{{1}}}}}}}</includeonly><noinclude>{{/doc}}</noinclude>») Метка: редактор вики-текста 2017
- 13:33, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Vehicle availability/doc (Новая страница: «{{Documentation}} Generate a table from SMW data that shows in-game availability of a vehicle. ==Usage== <pre> <nowiki>{{Vehicle availability|100i}}</nowiki> </pre> gives {{Vehicle availability|100i}} ==TemplateData== <templatedata> { "params": { "1": { "label": "Vehicle page name", "description": "Page name of a vehicle", "example": "300i", "type": "wiki-page-name" } }, "description": "Generate a table from SMW data that shows in-game...») Метка: редактор вики-текста 2017
- 13:33, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Vehicle availability (Новая страница: «<includeonly>{{Find item UIF}}<!--<tabber> Buying= {{#ask:+depth=0 |Ground vehicle <q>[[Name::{{{1|{{ROOTPAGENAME}}}}}]]||[[-Has subobject::{{{1|{{ROOTPAGENAME}}}}}]]</q> |default={{Note|This vehicle is not buyable in-game.}} |mainlabel=- |?Shop |?Location |?Price#-p0 |?Game build |format=broadtable |limit=50 |offset=0 |link=all |sort=Game build,Price,Location,Shop |order=desc,asc,asc,asc |headers=plain |searchlabe...») Метка: редактор вики-текста 2017
- 13:32, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Участник:DarkMuse (Новая страница: «Здесь у меня будет скоро информация, но пока просто текст, чтобы хоть как-то заполнить страницу») Метка: редактор вики-текста 2017
- 13:29, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:VehicleHardpoint/data.json (Новая страница: «{ "%matches": "", "matches": { "Armor": { "class": "Facilities", "matches": [], "type": "Armor" }, "ArmorLocker": { "class": "CargoGrid", "matches": [ "hardpoint_armory_cargo_%d+" ], "type": "ArmorStorage" }, "Battery": { "class": "Systems", "matches": [ "hardpoint_battery" ], "type": "Battery" }, "Bed": { "class": "Facilities", "matches": [ "hardpoint_bed", "hardpoint_bed_.+" ], "t...»)
- 13:28, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:VehicleHardpoint/config.json (Новая страница: «{ "%smw_multilingual_text": "If the used SMW attributes are multi-lingual set the flag to 'true'.", "smw_multilingual_text": false, "%module_lang": "Set the language of the module, if set to 'null' the content language of the wiki will be used.", "module_lang": null, "%icon_prefix": "Prefix used to generate the icon file name. File names are then generated as 'icon_prefix ICON.svg", "icon_prefix": "sc-icon-", "%icon_name_lowercase...»)
- 13:27, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:VehicleHardpoint/doc (Новая страница: «{{Documentation|scwShared=true}} This module saves and displays the hardpoints found on a vehicle. Implements {{t|Vehicle hardpoints}}.») Метка: редактор вики-текста 2017
- 13:26, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:VehicleHardpoint (Новая страница: «require( 'strict' ) local VehicleHardpoint = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local i18n = require( 'Module:i18n' ):new() local TNT = require( 'Module:Translate' ):new() local common = require( 'Module:Common' ) -- formatNum and spairs local hatnote = require( 'Module:Hatnote' )._hatnote local data = mw.loadJsonData( 'Module:VehicleHardpoint/data.json' ) local config = mw.loadJsonData( 'Module:VehicleHardpoin...»)
- 13:25, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Vehicle hardpoints/doc (Новая страница: «{{Documentation}} {{t|Vehicle hardpoints}} generates a table of hardpoints for the specification section of a vehicle page. ==Usage== <code><nowiki>{{Vehicle hardpoints|Carrack}}</nowiki></code> gives: {{Vehicle hardpoints|Carrack}} ==TemplateData== <templatedata> { "params": { "1": { "label": "Vehicle name", "description": "Page name of the vehicle on the wiki", "example": "Carrack", "type": "wiki-page-name", "suggested": true } },...») Метка: редактор вики-текста 2017
- 13:22, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Vehicle hardpoints (Новая страница: «<includeonly>{{#invoke:VehicleHardpoint|outputTable}}</includeonly><noinclude>{{/doc}}</noinclude>») Метка: редактор вики-текста 2017
- 13:20, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:T/doc (Новая страница: «{{Documentation}} ;Description :A template link with a variable number of example parameters (0-20), which can be used to show example inputs. :Utilises Template:T/piece. ;Syntax :{{t|t|parameter1|parameter2|parameter3|parameter4|...|parameter20}} ;Sample code :<code><nowiki>{{t|welcome}}</nowiki></code> gives... :{{t|welcome}} :<code><nowiki>{{t|welcome|Item1|Item2|Item3|Item4|Item5|...}}</nowiki></code> gives... :{{t|welcome|Item1|Item2|Item3|Item4|Ite...») Метка: редактор вики-текста 2017
- 13:19, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:T/piece (Новая страница: «{{#ifeq: {{{1|---}}}|---|||<font color="gray">''<{{{1}}}>''</font>}}<noinclude> {{/doc}}</noinclude>») Метка: редактор вики-текста 2017