Дополнительные действия
Общий список журналов сайта wiki.iccup.org. Вы можете отфильтровать результаты по типу журнала, имени участника (учитывается регистр) или затронутой странице (также учитывается регистр).
- 12:32, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль: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....»)
- 12:31, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:User error/doc (Новая страница: «{{Documentation}} A less intimidating version of the built-in <syntaxhighlight inline lang="lua">error(...)</syntaxhighlight> function, to help editors fix their mistakes when transcluding a template.») Метка: редактор вики-текста 2017
- 12:31, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль: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(...»)
- 12:30, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Paramtest/doc (Новая страница: «{{Documentation}} {{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 returns arg1, otherwise returns arg2 |fname4 =...») Метка: редактор вики-текста 2017
- 12:28, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль: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...»)
- 12:28, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Yesno/doc (Новая страница: «{{Documentation|fromWikipedia=true}} '''Module:Yesno''' provides a consistent interface for processing boolean or boolean-style string input. While Lua allows the <code>true</code> and <code>false</code> boolean values, wikicode templates can only express boolean values through strings such as "yes", "no", etc. This module processes these kinds of strings and turns them into boolean input for Lua to process. It also returns <code>nil</code> values as <code>...») Метка: редактор вики-текста 2017
- 12:27, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль: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...»)
- 12:25, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Array/doc (Новая страница: «{{Documentation}} {{Helper module |name = Array |fname1 = <nowiki>all( arr, [fn] )</nowiki> |ftype1 = <samp>arr: any[]</samp><br><samp>fn?: any</samp><br><samp>-> boolean</samp> |fuse1 = Behaviour depends on the value of <code>fn</code>: * <code>nil</code> - Checks that the array doesn't contain any '''false''' elements. * <code>fun(elem: any, i?: integer): boolean</code> - Returns '''true''' if <code>fn</code> returns '''true''' for every elemen...») Метка: редактор вики-текста 2017
- 12:25, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль: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...»)
- 12:23, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль: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 =...»)
- 12:22, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Documentation/doc (Новая страница: «{{Documentation|scwShared=true}} '''Module:Documentation''' implements Template:Documentation for templates and modules.») Метка: редактор вики-текста 2017
- 12:21, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Модуль:Documentation (Новая страница: «-- <nowiki> local dependencyList = require( 'Module:DependencyList' ) local hatnote = require( 'Module:Hatnote' )._hatnote local mbox = require( 'Module:Mbox' )._mbox local i18n = require( 'Module:i18n' ):new() local TNT = require( 'Module:Translate' ):new() local lang = mw.getContentLanguage() local p = {} --- Wrapper function for Module:i18n.translate --- --- @param key string The translation key --- @return string If the key was not found, the key is re...»)
- 12:20, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон: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...») Метка: редактор вики-текста 2017
- 12:19, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:Documentation (Новая страница: «<includeonly>{{#invoke:Documentation|doc}}__NOEDITSECTION__{{#seo: |type = website |description = {{FULLPAGENAME}} is a template page used on the iCCup Wiki. Templates are pages that are embedded (transcluded) into other pages to allow for the repetition of information. |site_name = iCCup Wiki |locale = {{PAGELANGUAGE}} }}</includeonly><noinclude>{{/doc}}</noinclude>») Метка: редактор вики-текста 2017
- 12:18, 31 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:List item/doc (Новая страница: «{{Documentation}} This template is used to format list items. It should be used with {{t|ubl}}. == Usage == <syntaxhighlight lang="mediawiki"> {{List item |Carrack is the best ship. |Approved by Disco Lando. }} </syntaxhighlight> gives: {{List item |Carrack is the best ship. |Approved by Disco Lando. }} == TemplateData == <templatedata> { "params": { "1": { "label": "Title", "description": "Title of the list item", "required": true }, "2...») Метка: редактор вики-текста 2017
- 19:37, 30 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:List item/styles.css (Новая страница: «.template-listItem { margin-top: 20px; } .template-listItem__title { color: red; font-weight: 700; } .template-listItem__content { font-size: 0.875rem; }»)
- 19:32, 30 августа 2024 DarkMuse обсуждение вклад создал страницу Шаблон:List item (Новая страница: «<!-- Template code ------------- --><div class="template-listItem"><!-- --><div class="template-listItem__title">{{{1}}}</div><!-- --><div class="template-listItem__content">{{{2}}}</div><!-- --></div><!-- TemplateStyles -------------- --><templatestyles src=""/><!-- Documentation ------------- --><noinclude>{{/doc}}</noinclude>»)
- 19:20, 30 августа 2024 Участник создал учётную запись DarkMuse обсуждение вклад