Открыть меню
Открыть персональное меню
Вы не представились системе
Your IP address will be publicly visible if you make any edits.

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

Дополнительные действия

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

Журналы
  • 21:35, 31 августа 2024 77.221.132.30 обсуждение создал страницу Шаблон:Header banner (Новая страница: «<includeonly><div class="header-banner"> <div class="header-banner__logo"> <div class="logo--light-theme">[[File:{{{logo-lighttheme}}}|200px|link=]]</div> <div class="logo--dark-theme">[[File:{{{logo-darktheme}}}|200px|link=]]</div> </div> {{#searchbox:}} </div></includeonly><noinclude>{{documentation}}</noinclude>»)
  • 21:32, 31 августа 2024 77.221.132.30 обсуждение создал страницу Шаблон:Navigation card (Новая страница: «<includeonly><div class="navigation-card"> <div class="navigation-card__image">[[File:{{{file|}}}|link=]]</div><span class="navigation-card__title">{{#if:{{{text|}}}|[[{{{link|{{{text}}}}}}|{{{text}}}]]}}</span>{{#if:{{{count|}}}|<span class="navigation-card__subtitle">{{{count}}}</span>}} </div></includeonly><noinclude>{{documentation}}</noinclude>»)
  • 15:50, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Vehicle/i18n.json (Новая страница: «{ "license": "CC0-1.0", "description": { "en": "Translation table for the Module:Vehicle" }, "template_description": { "en": "This template handles data related to vehicles.", "de": "Diese Vorlage behandelt Daten zu Fahrzeugen." }, "schema": { "fields": [ { "name": "id", "type": "string" }, { "name": "message", "type": "localized" }, { "name": "type", "type": "string" }, { "name": "label", "t...»)
  • 15:48, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:ApiDoc/doc (Новая страница: «Utility for {{tl|ApiDoc}} ==API== {{ApiDocStart|ApiDoc|link=Module:ApiDoc}} {{ApiDoc|isDocPage|params=|description=Returns true if the current page is a documentation page, identified by having "/doc" in its title.|returns=boolean}} {{ApiDocEnd}}») Метка: редактор вики-текста 2017
  • 15:47, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:ApiDoc (Новая страница: «local ApiDoc = {} --- Checks if the current page is a documentation page. --- A documentation page is identified by having "/doc" in its title. --- @return boolean True if the current page is a documentation page, otherwise false. function ApiDoc.isDocPage() local pagename = mw.title.getCurrentTitle().text return string.find(pagename, '/doc') end return ApiDoc»)
  • 15:46, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Logic/doc (Новая страница: «==API== {{ApiDocStart|Logic|link=Module:Logic}} {{ApiDoc|emptyOr|params=val1: value, val2: value, default: value|description=Returns the first non-empty value.|returns=value}} {{ApiDoc|isEmpty|params=val: any|description=Checks if a value or table is empty.|returns=boolean}} {{ApiDoc|isNumeric|params=val: value|description=Checks if a value is numeric.|returns=boolean}} {{ApiDoc|isNotEmpty|params=val: any|description=Checks if a value or table is not empty.|...») Метка: редактор вики-текста 2017
  • 15:45, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Logic (Новая страница: «--- -- @iCCup -- wiki=commons -- page=Module:Logic -- -- This module implements various logical functions for use within templates and other Lua modules on iCCup. -- local Logic = {} ---Returns `val1` if it isn't empty else returns `val2` if that isn't empty, else returns default ---@generic A, B, C ---@param val1 A? ---@param val2 B? ---@param default C? ---@return A|B|C|nil function Logic.emptyOr(val1, val2, default) if not Logic.isEmpty(val1) then re...»)
  • 15:39, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Navplate/doc (Новая страница: «{{Documentation}} {{t|navplate}} allows a navigational template to be set up relatively quickly by supplying it with one or more lists of links, similar to navigational templates used on other wikis. == Usage == Please remove the parameters that are left blank. <pre> {{Navplate |subtitle = |title = |label1 = |list1 = |label2 = |list2 = |label3 = |list3 = }} </pre> == Parameter list == ;<code>subtitle</code> :Subtitle text above the title, it s...») Метка: редактор вики-текста 2017
  • 15:38, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Navplate (Новая страница: «<includeonly>{{#invoke:Navplate|navplate}}</includeonly><noinclude> {{/doc}} <!-- Categories go in the /doc subpage --> </noinclude>») Метка: редактор вики-текста 2017
  • 15:37, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Navplate/doc (Новая страница: «{{Documentation|scwShared=true}} '''Module:Navplate''' implements the {{t|navplate}} template.») Метка: редактор вики-текста 2017
  • 15:37, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Navplate (Новая страница: «-------------------------------------------------------------------------------- -- Module:Navplate -- -- This module implements {{Navplate}} -- -- Based on Module:Infobox -- -- This is a work in progress -- ---------------------------------------------------------...»)
  • 15:34, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Common/Api/doc (Новая страница: «{{Documentation|scwShared=true}}») Метка: редактор вики-текста 2017
  • 15:33, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Common/Api (Новая страница: «local common = {} --- Checks if the provided data structure is valid --- @param table data --- @param string key local function structureValid( data, key ) key = key or nil if type( data ) ~= 'table' then return false end if key ~= nil then return data[key] ~= nil end return true end --- @param table data --- @return string|nil function common.getManufacturerName( data ) if not structureValid( data, 'manufacturer' ) then return nil en...»)
  • 15:27, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Infobox user (Новая страница: «<includeonly>{{#invoke:Lua|invoke|module=Infobox/Person/User/Custom|fn=run|wiki=iccup|id={{#if:{{{id|}}}|{{{id|}}}|{{PAGENAME}}}}}}</includeonly> <noinclude>{{documentation}} Category:Templates Category:Lua-based templates Category:Infoboxes Category:iCCup templates </noinclude>») Метка: редактор вики-текста 2017
  • 15:25, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Hatnote/doc (Новая страница: «{{Documentation|fromWikipedia=true}} The {{t|Hatnote}} template is a simple notice template intended for use when posting editorial notes in articles. It is useful for highlighting important information, such as corrections or comments. Note that the user should supply a short bolded description of what kind of editorial note this is. ;Sample Output: <nowiki>{{Hatnote|'''Note:''' This is an editorial comment.}}</nowiki> ;Results in: {{Hatnote|'''Note:'''...») Метка: редактор вики-текста 2017
  • 15:24, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Hatnote (Новая страница: «<includeonly>{{#invoke:Hatnote|hatnote}}</includeonly><noinclude>{{/doc}}</noinclude>») Метка: редактор вики-текста 2017
  • 15:24, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Example/doc (Новая страница: «{{Documentation}} ===TemplateData=== <templatedata> { "description": "Example template that creates a small note saying it is an example.", "params": {} } </templatedata> ===Usage=== If this were a real template, the documentation would go here, along with a few examples on how to use it. Some templates keep this documentation on a separate page; see Help:Template documentation for details on how to create and maintain template documentation. <inclu...») Метка: редактор вики-текста 2017
  • 15:23, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Note (Перенаправление на Шаблон:Hatnote) Метки: новое перенаправление редактор вики-текста 2017
  • 15:22, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Example (Новая страница: «{{Note|This is an example template}}<noinclude> {{/doc}} </noinclude>») Метка: редактор вики-текста 2017
  • 15:19, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:ApiDocEnd (Новая страница: «<includeonly> <!-- Closing the definition list started elsewhere --> </dl> <!-- Conditional display of a link to the documentation, only if `nolink` is not set --> {{#if:{{{nolink|}}}|| ''See all our documentation here.'' <!-- Link to Scribunto help page --> }}<!-- -->{{#vardefine:api_store|}} <!-- Clear api_store variable --> </includeonly> <noinclude>{{Documentation}}</noinclude>») Метка: редактор вики-текста 2017
  • 15:18, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:ApiDoc (Новая страница: «<includeonly> <!-- Generate a documentation entry for a function with a link to a detailed subpage. --> <dt> {{#if:{{#var:api_module_name|}}| [[{{#var:api_module_name}}/doc/{{{1|}}}|{{{1|}}}]]| <!-- Link to the detailed documentation subpage --> [[/{{{1|}}}|{{{1|}}}]] }} {{#if:{{{params|}}| <span style="font-weight:400;">({{{params|}}})</span> <!-- Display function parameters --> }} {{#if:{{{returns|}}| <...») Метка: редактор вики-текста 2017
  • 15:17, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:ApiDoc/doc (Новая страница: «iCCup API Documentation Guide Allows for easy creation of API documentation (e.g., for modules) within the iCCup platform. Use in combination with {{tl|ApiDocStart}} and {{tl|ApiDocEnd}} (at the start and end of the documentation section). Functions generate links to a subpage, so that more detailed documentation can be provided. Use {{tl|ApiDocBig}} there. By default, this setup stores documentation into LPDB (as datapoints). To turn this off, use the {{tl|...») Метка: редактор вики-текста 2017
  • 15:15, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:FeatureFlag/Config/doc (Новая страница: «<!-- Documentation for FeatureFlag/Config --> =FeatureFlag/Config Documentation= The `FeatureFlag/Config` module is used to define the default values of feature flags used throughout the iCCup platform. Feature flags are used to control the availability of certain features or functionalities, often for testing or phased rollouts. By setting default values here, developers can easily manage which features are enabled or disabled by default. ==How to Use==...») Метка: редактор вики-текста 2017
  • 15:14, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:FeatureFlag/Config (Новая страница: «-- Add feature flags here for iCCup return { award_table = { defaultValue = false }, -- Controls whether award tables are enabled debug_import = { defaultValue = false }, -- Enables debugging for imports debug_match_history = { defaultValue = false }, -- Enables debugging for match history debug_placement = { defaultValue = false }, -- Enables debugging for placements debug_query = { defaultValue = false }, -- Enables debugging fo...»)
  • 15:12, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:FeatureFlag/doc (Новая страница: «<!-- Documentation for Module:FeatureFlag --> =FeatureFlag Module Documentation= The `FeatureFlag` module is used to manage feature flags, which are boolean values controlling whether certain code paths related to new features are enabled or not. This module provides functionality to read, set, and temporarily apply feature flags. ==Usage== Feature flags can be used to enable or disable specific features or parts of code. They can be set permanentl...») Метка: редактор вики-текста 2017
  • 15:10, 31 августа 2024 DarkMuse обсуждение вклад восстановил страницу Модуль:FeatureFlag (1 версия) (Запрос автора)
  • 15:10, 31 августа 2024 DarkMuse обсуждение вклад удалил страницу Модуль:FeatureFlag (По запросу автора)
  • 15:08, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:FeatureFlag (Новая страница: «--- -- @Liquipedia -- wiki=commons -- page=Module:FeatureFlag -- -- Please see https://github.com/Liquipedia/Lua-Modules to contribute -- local FeatureFlagConfig = mw.loadData('Module:FeatureFlag/Config') local Logic = require('Module:Logic') local Table = require('Module:Table') --[[ Module for reading and setting feature flags. Feature flags are boolean values that control whether certain code paths pertaining to new features are enabled. To create a new...»)
  • 15:05, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:ApiDocStart (Новая страница: «<includeonly> <!-- Displaying the function name with a link, based on the availability of the `api_module_name` variable --> <dt> {{#if:{{#var:api_module_name|}}|[[{{#var:api_module_name}}/doc/{{{1|}}}|{{{1|}}}]]|[[/{{{1|}}}|{{{1|}}}]]}} <!-- Displaying parameters if provided --> {{#if:{{{params|}}}|<span style="font-weight:400;">({{{params|}}})</span>}} <!-- Displaying return type if provided --> {{#if:{{{returns|}}}|<span style="font-weight:400;"...») Метка: редактор вики-текста 2017
  • 15:04, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Lua/doc (Новая страница: «Some functions for checking the existence of modules and loading them in the iCCup environment. ==API== {{ApiDocStart|Lua|link=Module:Lua}} {{ApiDoc|moduleExists|params=name: string|description=Checks if a module with the given name exists.|returns=boolean}} {{ApiDoc|requireIfExists|params=name: string, options: table|description=Requires the module if it exists and returns the default otherwise.|returns=Module require or default}} {{ApiDoc|loadDataIfExists...») Метка: редактор вики-текста 2017
  • 15:03, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Lua (Новая страница: «--- -- @iCCup -- wiki=commons -- page=Module:Lua -- -- Please see https://github.com/iCCup/Lua-Modules to contribute -- local FeatureFlag = require('Module:FeatureFlag') local Logic = require('Module:Logic') local StringUtils = require('Module:StringUtils') local Lua = {} ---Checks for the existence of a Lua module ---@param name string ---@return boolean function Lua.moduleExists(name) if package.loaded[name] then return true else -- Package.Search...»)
  • 15:00, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Infobox league/doc (Новая страница: «{{Infobox league |name=Julmust's awesome tournament |image=Dota2 logo.png |caption=This is an image caption. |series=ESL One |series2=Dota Pro Circuit |organizer=Julmust |organizer2=Rapture |sponsor=[https://www.liquiddota.com/ Liquid Dota]<br />[https://www.twitch.tv/team/teamliquid Twitch] |type=Online |sdate=2010-10-10 |edate=2018-10-17 |country=Netherlands |city=Utrecht |venue=Some office |server=Europe West |patch=6.00 |team_number=322 |format=#blamesa...») Метка: редактор вики-текста 2017
  • 14:57, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Infobox league (Новая страница: «<includeonly>{{#invoke:Lua|invoke|module=Infobox/League/Custom|fn=run}}<!-- --></includeonly><noinclude>Category:Infoboxes{{doc}}</noinclude>») Метка: редактор вики-текста 2017
  • 14:15, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Vehicle/config.json (Новая страница: «{ "%api_locale": "Locale the api should return. If set to null, all languages are returned. Allowed values are 'de_DE' and 'en_EN", "api_locale": "en_EN", "%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, "%set_categor...»)
  • 14:14, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Vehicle/data.json (Новая страница: «{ "%includes": "Additional vehicle information that should be returned", "includes": [ "hardpoints", "components", "shops", "parts" ], "%hardpoint_filter": "List of hardpoint types that shall not be returned", "hardpoint_filter": [ "SeatAccess", "SeatDashboard", "DockingAnimator", "DoorController", "Door" ], "%smw_data": "Sets which data gets added to SMW", "smw_data": [ { "SMW_Name": [ "API_name", "ARG_Name" ], "...»)
  • 14:11, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Nbsp (Перенаправление на Шаблон:Spaces) Метки: новое перенаправление редактор вики-текста 2017
  • 14:09, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон: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...») Метка: редактор вики-текста 2017
  • 14:09, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Template shortcut (Новая страница: «<includeonly>{{#invoke:Shortcut|main|template=yes}}</includeonly><noinclude>{{/doc}}</noinclude>») Метка: редактор вики-текста 2017
  • 14:09, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Spaces/doc (Новая страница: «{{Documentation}} {{Template shortcut|&nbsp|nbs|nbsp|nbsp;|space|spcs}} {{Wikipedia template}} A template to produce one or more non-breaking spaces (<code>&nbsp;</code> character entities). == Usage == ; Syntax : <code><nowiki>{{spaces|</nowiki>''N''{{!}}''type''}}</code> ...... to produce ''N'' consecutive non-breaking spaces (where ''N'' is a whole number larger than zero) of the type specified by the second paramete...») Метка: редактор вики-текста 2017
  • 14:08, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:String/doc (Новая страница: «{{Documentation|fromWikipedia=true}} 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 == ;...») Метка: редактор вики-текста 2017
  • 14:08, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль: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 1...»)
  • 14:07, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Spaces (Новая страница: «<span class="nowrap">{{#iferror:{{#expr:{{{1|1}}}}} |{{#switch:{{{1}}} |fig=  |en=  |em=  |thin=  |hair=  |  }} |{{#invoke:String|rep|{{#switch:{{{2}}} |fig=  |en=  |em=  |thin=  |hair=  |  }}|{{{1|1}}}}} }}</span><noinclude> {{/doc}} </noinclude>») Метка: редактор вики-текста 2017
  • 14:06, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Navplate/Manufacturers/doc (Новая страница: «{{Documentation|scwShared=true}}») Метка: редактор вики-текста 2017
  • 14:06, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Navplate/Manufacturers (Новая страница: «-- This is barebone but the idea is to make a generic module that -- build any navplate from template defined from data.json -- -- TODO: -- - Make functions generic -- - Support multiple conditions -- - Support more SMW inline query conditions other than category -- - Implement i18n -- - Support group headers -- - Support icon local NavplateManufacturers = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local common = requi...»)
  • 14:04, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Cite RSI/doc (Новая страница: «{{Documentation}} '''Module:Cite RSI''' implements the {{tl|Cite RSI}} template.») Метка: редактор вики-текста 2017
  • 14:04, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Cite RSI (Новая страница: «local p = {} local args --- Helper function checking if a substring is in a string -- -- @param needle string - Value to search for -- @param haystack string - String to search in -- -- @return bool - True if found local function stringContains( needle, haystack ) return string.find( mw.ustring.lower( haystack ), needle, 1, true ) end -- This is from Module:String2 -- FIXME: Figure out how to call in from Lua properly local function titlecase( text )...»)
  • 14:04, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Manufacturer/doc (Новая страница: «{{documentation|scwShared=true}}») Метка: редактор вики-текста 2017
  • 14:03, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Manufacturer (Новая страница: «require( 'strict' ) local Manufacturer = {} local metatable = {} local methodtable = {} metatable.__index = methodtable local MODULE_NAME = 'Module:Manufacturer' local libraryUtil = require( 'libraryUtil' ) local checkType = libraryUtil.checkType local i18n = require( 'Module:i18n' ):new() local mArguments local cache = {} --- Wrapper function for Module:i18n.translate --- --- @param key string The translation key --- @return string|nil local functi...»)
  • 14:02, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Para/doc (Новая страница: «{{Documentation}} == Usage == This template is for giving examples of template parameter source code (useful in template documentation and talk page discussions of template code). It must have one or two parameters itself. The first parameter is the name of the example parameter to display (this may be ''empty'', but it must be ''present''), and the second (optional) parameter is a value for the first example parameter or, if the first {{tlx|para}} parameter...») Метка: редактор вики-текста 2017
  • 14:01, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Para (Новая страница: «<code class="nowrap" {{#if:{{{plain|}}}|style="border:none;background-color:inherit;color:inherit;"}}>|{{#if:{{{1|}}}|{{{1}}}=}}{{{2|}}}</code><noinclude>{{/doc}}</noinclude>») Метка: редактор вики-текста 2017