프벤위키에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.
- 2024년 5월 21일 (화) 13:42 신사 토론 기여님이 모듈:Text 문서를 만들었습니다 (새 문서: local getArgs = require('Module:Arguments').getArgs local p = {} function p.fontsize( frame, size, text ) local count_char = require('Module:String').count_ local input_size = frame.args[1] or '' local text = frame.args[2] or text local size if string.find(input_size, '[+-]') then size = (( count_char(input_size, '+') - count_char(input_size, '-') ) / 5 + 1)..'rem' else size = input_size end return string.format('<span style="font-size:%s;line-height:1.6em">%s</sp...)
- 2024년 5월 21일 (화) 13:40 신사 토론 기여님이 모듈:Core 문서를 만들었습니다 (새 문서: --[[ __ __ _ _ ____ | \/ | ___ __| |_ _| | ___ _ / ___|___ _ __ ___ | |\/| |/ _ \ / _` | | | | |/ _ (_) | / _ \| '__/ _ \ | | | | (_) | (_| | |_| | | __/_| |__| (_) | | | __/ |_| |_|\___/ \__,_|\__,_|_|\___(_)\____\___/|_| \___| Core is a meta-module that consists of common and useful Lua functions that can be used in many Lua scripts. It was writen as a core...)
- 2024년 5월 21일 (화) 13:39 신사 토론 기여님이 모듈: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 ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in the p -- table for testing purposes. ----...)
- 2024년 5월 21일 (화) 13:39 신사 토론 기여님이 모듈: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. -----------------------------------------------------------------------------------------...)
- 2024년 5월 21일 (화) 13:38 신사 토론 기여님이 모듈:Sortkey 문서를 만들었습니다 (새 문서: local getArgs = require('Module:Arguments').getArgs local p = {} function p._encode(sortkey) -- Protect against sortkey nesting. -- Example: {{sort|{{dts|2013|07|07}}|{{dts|1990|12|01}}}} if string.find(sortkey, "sortkey") or string.find(sortkey, "data-sort-value") then return ""; end return mw.text.encode(sortkey) end function p.encode(frame) local args = getArgs(frame); return p._encode(args[1] or "") end local function valid_number(num) -- Return true if num...)
- 2024년 5월 21일 (화) 13:30 신사 토론 기여님이 모듈:Math 문서를 만들었습니다 (새 문서: --This module provides a number of basic mathematical operations. local yesno, getArgs -- lazily initialized local p = {} -- Holds functions to be returned from #invoke, and functions to make available to other Lua modules. local wrap = {} -- Holds wrapper functions that process arguments from #invoke. These act as intemediary between functions meant for #invoke and functions meant for Lua. --Helper functions used to avoid redundant code. local function err(msg...)
- 2024년 5월 21일 (화) 13:30 신사 토론 기여님이 모듈:List 문서를 만들었습니다 (새 문서: -- This module outputs different kinds of lists. At the moment, bulleted, -- unbulleted, horizontal, ordered, and horizontal ordered lists are supported. 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) --...)
- 2024년 5월 21일 (화) 13:29 신사 토론 기여님이 모듈: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 #invoke....)
- 2024년 5월 21일 (화) 13:27 신사 토론 기여님이 모듈: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, any error condition...)
- 2024년 5월 21일 (화) 13:25 신사 토론 기여님이 모듈:Navbar 문서를 만들었습니다 (새 문서: local p = {} local getArgs local ul function p.addItem (mini, full, link, descrip, args, url) local l if url then l = {'[', '', ']'} else l = {'', ''} end ul:tag('li') :addClass('nv-'..full) :wikitext(l[1] .. link .. l[2]) :tag(args.mini and 'abbr' or 'span') :attr('title', '이 틀'.. descrip) :cssText(args.fontstyle) :wikitext(args.mini and mini or full) :done() :wikitext(l[3]) end function p.brackets (position, c, args, div) if args.b...)
- 2024년 5월 21일 (화) 13:23 신사 토론 기여님이 모듈:Coordinates 문서를 만들었습니다 (새 문서: --[[ This module is intended to replace the functionality of {{Coord}} and related templates. It provides several methods, including {{#Invoke:Coordinates | coord }} : General function formatting and displaying coordinate values. {{#Invoke:Coordinates | dec2dms }} : Simple function for converting decimal degree values to DMS format. {{#Invoke:Coordinates | dms2dec }} : Simple function for converting DMS format to decimal degree format. ]] math_mod = require( "Module:Math"...)
- 2024년 5월 21일 (화) 13:23 신사 토론 기여님이 모듈:Delink 문서를 만들었습니다 (새 문서: -- This module de-links most wikitext. require("strict") local p = {} local getArgs local function delinkReversePipeTrick(s) if s:match("^%[%[|.*[|\n]") then -- Check for newlines or multiple pipes. return s end return s:match("%[%[|(.*)%]%]") end local function delinkPipeTrick(s) -- We need to deal with colons, brackets, and commas, per Help:Pipe trick. -- First, remove the text before the first colon, if any. if s:match(":") then s = s:match("%[%[.-:(.*)|%]...)
- 2024년 5월 21일 (화) 13:22 신사 토론 기여님이 모듈:Side box 문서를 만들었습니다 (새 문서: -- This module implements {{side box}}. local yesno = require('Module:Yesno') 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(args) local data = p.makeData(args) return p.renderSidebox(data) end function p.makeData(args) local data = {} -- Main table classes data.classes = {}...)
- 2024년 5월 21일 (화) 13:17 신사 토론 기여님이 모듈:Sidebar/configuration 문서를 만들었습니다 (새 문서: return { i18n = { child_yes = 'yes', float_none = 'none', float_left = 'left', wrap_true = 'true', navbar_none = 'none', navbar_off = 'off', default_list_title = '목록', title_not_to_add_navbar = '틀:사이드바', collapse_title_not_to_add_navbar = '틀:접이식 사이드바', templatestyles = '모듈:Sidebar/styles.css', category = { child = '분류:자식 변수를 사용하는 사이드바가 있는 문서', conversion = '[[분류:스타...)
- 2024년 5월 21일 (화) 13:17 신사 토론 기여님이 모듈:Sidebar 문서를 만들었습니다 (새 문서: -- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return require(...)
- 2024년 5월 21일 (화) 13:13 신사 토론 기여님이 모듈:Category handler/shared 문서를 만들었습니다 (새 문서: -- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return require(...)
- 2024년 5월 21일 (화) 13:13 신사 토론 기여님이 모듈:Category handler/data 문서를 만들었습니다 (새 문서: -- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist( title.p...)
- 2024년 5월 21일 (화) 13:12 신사 토론 기여님이 모듈:Category handler/blacklist 문서를 만들었습니다 (새 문서: -- This module contains the blacklist used by Module:Category handler. -- Pages that match Lua patterns in this list will not be categorised unless -- categorisation is explicitly requested. return { '^Main Page$', -- don't categorise the main page. -- Don't categorise the following pages or their subpages. -- "%f[/\0]" matches if the next character is "/" or the end of the string. '^Wikipedia:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', -- Th...)
- 2024년 5월 21일 (화) 13:12 신사 토론 기여님이 모듈:Category handler/config 문서를 만들었습니다 (새 문서: -------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. ------------------------------------...)
- 2024년 5월 21일 (화) 13:11 신사 토론 기여님이 모듈:Blur 문서를 만들었습니다 (새 문서: -- 모듈:Blur local p = {} function p.main(frame) local args = frame:getParent().args local indexes = {} for k, v in pairs(args) do if v ~= "" then table.insert(indexes, v) end end return '<div id="blur-indexes" data-blur-indexes="' .. table.concat(indexes, ',') .. '" style="display:none;"></div>' end return p)
- 2024년 5월 21일 (화) 13:10 신사 토론 기여님이 모듈:Anchor 문서를 만들었습니다 (새 문서: -------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace aliases...)
- 2024년 5월 21일 (화) 13:09 신사 토론 기여님이 모듈:Category handler 문서를 만들었습니다 (새 문서: -------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace aliases...)
- 2024년 5월 21일 (화) 13:08 신사 토론 기여님이 모듈:BaseConvert 문서를 만들었습니다 (새 문서: local p = {} local digits = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' function normalizeFullWidthChars(s) return mw.ustring.gsub(s, '[!-~]', function(s) return mw.ustring.char(mw.ustring.codepoint(s, 1) - 0xFEE0) end) end function _convert(n, base, from, precision, width, default, prefix, suffix) n = '' .. n -- convert to a string -- strip off any leading '0x' (unless x is a valid digit in the input base) from = tonumber(from) if...)
- 2024년 5월 21일 (화) 13:08 신사 토론 기여님이 모듈: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) == 'string' then v...)
- 2024년 5월 21일 (화) 13:08 신사 토론 기여님이 모듈:Aruguments 문서를 삭제했습니다 (내용: "-- 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...". 유일한 편집자는 "신사" (토론))
- 2024년 5월 21일 (화) 13:08 신사 토론 기여님이 모듈:Aruguments 문서를 만들었습니다 (새 문서: -- 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) == 'string' then v...)
- 2024년 5월 21일 (화) 11:40 신사 토론 기여님이 미디어위키:Gadgets-definition 문서를 만들었습니다 (새 문서: * autonum[ResourceLoader|default]|autonum.css|autonum.js * ReferenceTooltips[ResourceLoader|default]|ReferenceTooltips-ko.js|ReferenceTooltips.css)
- 2024년 5월 21일 (화) 11:40 신사 토론 기여님이 미디어위키:Gadget-autonum.css 문서를 만들었습니다 (새 문서: * * Auto-number headings * * @source https://www.mediawiki.org/wiki/Snippets/Auto-number_headings * @author Krinkle * @version 2021-10-03: * * Fallback for pages without a TOC. This could in principle work for all pages, * but we don't to ensure consistency between the TOC and heading numbers: .tpl-autonum .mw-parser-output { counter-reset: autonum-h2 autonum-h3 autonum-h4 autonum-h5 autonum-h6; } .tpl-autonum .mw-parser-output h2 { counter-reset: autonum-h...)
- 2024년 5월 21일 (화) 11:39 신사 토론 기여님이 미디어위키:Gadget-autonum.js 문서를 만들었습니다 (새 문서: * * Auto-number headings * * @source https://www.mediawiki.org/wiki/Snippets/Auto-number_headings * @author Krinkle * @version 2021-10-03: var toc = document.querySelector('#toc'); if (toc) { document.querySelectorAll('.mw-parser-output :is(h1,h2,h3,h4,h5,h6) .mw-headline').forEach(function (headline) { var num = toc.querySelector('a[href="#' + CSS.escape(headline.id) + '"] .tocnumber'); if (num) { var link = document.createElement('a'); // 새로운 <a>...)
- 2024년 5월 21일 (화) 11:39 신사 토론 기여님이 미디어위키:펼치기 접기/Styles.css 문서를 삭제했습니다 (내용: "@media screen and (max-width: 768px) { .mobileBtn:active { animation-name: btn-background; animation-duration: .5s; animation-iteration-count: 1; animation-timing-function: steps(1, end); animation-fill-mode: forwards; } } .folding-margin-remove { margin: 0 -10px -5.5px; } .folding-margin-remove-width { margin: 0 -10px -5.5px; } .folding-margin-remove-width-multi { margin:...". 유일한 편집자는 "신사" (토론))
- 2024년 5월 21일 (화) 11:38 신사 토론 기여님이 미디어위키:Gadget-ReferenceTooltips.css 문서를 만들었습니다 (새 문서: Copied from en:MediaWiki:Gadget-ReferenceTooltips.css: See mw:Reference Tooltips: .referencetooltip { position: absolute; list-style: none; list-style-image: none; opacity: 0; font-size: 10px; margin: 0; z-index: 5; padding: 0; } .referencetooltip li { border: #080086 2px solid; max-width: 260px; padding: 10px 8px 13px 8px; margin: 0px; background-color: #F...)
- 2024년 5월 21일 (화) 11:37 신사 토론 기여님이 미디어위키:Gadget-ReferenceTooltips-ko.js 문서를 만들었습니다 (새 문서: // See mw:Reference Tooltips // Source https://en.wikipedia.org/wiki/MediaWiki:Gadget-ReferenceTooltips.js window.pg || $(function() { // Make sure we are in article, project, or help namespace if ( $.inArray(mw.config.get('wgCanonicalNamespace'), [ "", "Project", "Help", "Draft" ]) !== -1 ) { mw.messages.set( { "RT-enable" : "각주 말풍선 켜기", "RT-disable" : "각주 말풍선 끄기", "RT-disablenote" : "각주 말풍선 기능을 끄면, 이...)
- 2024년 5월 21일 (화) 11:19 신사 토론 기여님이 미디어위키:펼치기 접기/Styles.css 문서를 만들었습니다 (새 문서: @media screen and (max-width: 768px) { .mobileBtn:active { animation-name: btn-background; animation-duration: .5s; animation-iteration-count: 1; animation-timing-function: steps(1, end); animation-fill-mode: forwards; } } .folding-margin-remove { margin: 0 -10px -5.5px; } .folding-margin-remove-width { margin: 0 -10px -5.5px; } .folding-margin-remove-width-multi { margin: 0 -10px 0; } .tit-margin-remove { margin: -5.5px -10px; } @keyframes btn-background { fro...)
- 2024년 5월 21일 (화) 10:47 신사 토론 기여님이 김도운 문서를 삭제했습니다 (내용: "{{TVT 아나운서}} {| class="wikitable" style="max-width: 420px; width: 100%; float: right; border: 2px solid #0D57A7; text-align: left; font-size: 10pt" |- ! colspan="2" style="font-size: 10.5pt; background: #0D57A7; color: #FFF" | 前 x12px|link=TVT 아나운서<br><div style="margin: 1px 0px">{{글씨 크기|14|김도운}}</div><br><div style="margin: -25px 0px">金道惲 | Kim Do Woon</div><div style="margin: 26px 0px"></div> |- ! colspan=...")
- 2024년 5월 21일 (화) 10:22 무도리 토론 기여님이 파일:일공이사 신지입니다 로고.svg의 새 판을 올렸습니다
- 2024년 5월 21일 (화) 10:21 무도리 토론 기여님이 파일:일공이사 신지입니다.png의 새 판을 올렸습니다
- 2024년 5월 21일 (화) 08:49 무도리 토론 기여님이 파일:일공이사 신지입니다.png 문서를 만들었습니다
- 2024년 5월 21일 (화) 08:49 무도리 토론 기여님이 파일:일공이사 신지입니다.png 파일을 올렸습니다
- 2024년 5월 21일 (화) 08:49 무도리 토론 기여님이 파일:일공이사 신지입니다.png 문서를 삭제했습니다
- 2024년 5월 21일 (화) 08:40 무도리 토론 기여님이 파일:일공이사 신지입니다.png 문서를 만들었습니다
- 2024년 5월 21일 (화) 08:40 무도리 토론 기여님이 파일:일공이사 신지입니다.png 파일을 올렸습니다
- 2024년 5월 21일 (화) 08:40 무도리 토론 기여님이 파일:일공이사 신지입니다.jpg 문서를 삭제했습니다
- 2024년 5월 21일 (화) 08:38 무도리 토론 기여님이 파일:일공이사 신지입니다.jpg 문서를 만들었습니다
- 2024년 5월 21일 (화) 08:38 무도리 토론 기여님이 파일:일공이사 신지입니다.jpg 파일을 올렸습니다
- 2024년 5월 21일 (화) 08:38 무도리 토론 기여님이 파일:일공이사 신지입니다.png 문서를 삭제했습니다
- 2024년 5월 21일 (화) 08:36 무도리 토론 기여님이 파일:일공이사 신지입니다.png 문서를 만들었습니다
- 2024년 5월 21일 (화) 08:36 무도리 토론 기여님이 파일:일공이사 신지입니다.png 파일을 올렸습니다
- 2024년 5월 21일 (화) 08:35 무도리 토론 기여님이 파일:일공이사 신지입니다.png 문서를 삭제했습니다
- 2024년 5월 21일 (화) 08:34 무도리 토론 기여님이 파일:일공이사 신지입니다.png 문서를 만들었습니다
- 2024년 5월 21일 (화) 08:34 무도리 토론 기여님이 파일:일공이사 신지입니다.png 파일을 올렸습니다