2024년 5월 21일 (화)
- 13:122024년 5월 21일 (화) 13:12 차이 역사 +732 새글 모듈: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... 최신
- 13:122024년 5월 21일 (화) 13:12 차이 역사 +5,755 새글 모듈: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. ------------------------------------... 최신
- 13:112024년 5월 21일 (화) 13:11 차이 역사 +362 새글 모듈: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 최신
- 13:102024년 5월 21일 (화) 13:10 차이 역사 −7,233 모듈:Anchor 내용을 "-- {{anchor}}에 쓰이는 모듈입니다. local getArgs = require('모듈:Arguments').getArgs local tableTools = require('모듈:TableTools') local p = {} function p.main(frame) -- Get the positional arguments from #invoke, remove any nil values, -- and pass them to p._main. local args = getArgs(frame) local argArray = tableTools.compressSparseArray(args) return p._main(unpack(argArray)) end function p._main(...) -- Generate the list of anchors. local..."(으)로 바꿈 최신 태그: 대체됨
- 13:102024년 5월 21일 (화) 13:10 차이 역사 +7,871 새글 모듈:Anchor 새 문서: -------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace aliases...
- 13:092024년 5월 21일 (화) 13:09 차이 역사 +7,871 새글 모듈:Category handler 새 문서: -------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace aliases... 최신
- 13:082024년 5월 21일 (화) 13:08 차이 역사 +2,941 새글 모듈: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... 최신
- 13:082024년 5월 21일 (화) 13:08 차이 역사 +10,054 새글 모듈: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... 최신
- 11:452024년 5월 21일 (화) 11:45 차이 역사 −28,914 잔글 미디어위키:Common.css 신사(토론)의 편집을 Ben의 마지막 판으로 되돌림 태그: 일괄 되돌리기 되돌려진 기여
- 11:432024년 5월 21일 (화) 11:43 차이 역사 +168 미디어위키:Common.css 편집 요약 없음 태그: 되돌려진 기여
- 11:412024년 5월 21일 (화) 11:41 차이 역사 −477 미디어위키:Common.css 편집 요약 없음 태그: 되돌려진 기여
- 11:402024년 5월 21일 (화) 11:40 차이 역사 +146 새글 미디어위키:Gadgets-definition 새 문서: * autonum[ResourceLoader|default]|autonum.css|autonum.js * ReferenceTooltips[ResourceLoader|default]|ReferenceTooltips-ko.js|ReferenceTooltips.css 최신
- 11:402024년 5월 21일 (화) 11:40 차이 역사 +1,629 새글 미디어위키: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... 최신
- 11:392024년 5월 21일 (화) 11:39 차이 역사 +746 새글 미디어위키: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>... 최신
- 11:382024년 5월 21일 (화) 11:38 차이 역사 +2,847 새글 미디어위키: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...
- 11:372024년 5월 21일 (화) 11:37 차이 역사 +11,260 새글 미디어위키: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" : "각주 말풍선 기능을 끄면, 이... 최신
- 11:362024년 5월 21일 (화) 11:36 차이 역사 +13,277 미디어위키:Common.js 편집 요약 없음
- 11:352024년 5월 21일 (화) 11:35 차이 역사 +263 미디어위키:Common.css 편집 요약 없음 태그: 되돌려진 기여
- 11:342024년 5월 21일 (화) 11:34 차이 역사 +28,960 미디어위키:Common.css 편집 요약 없음 태그: 되돌려진 기여
- 11:322024년 5월 21일 (화) 11:32 차이 역사 +1 미디어위키:Liberty-Navbar 편집 요약 없음 최신
- 11:322024년 5월 21일 (화) 11:32 차이 역사 −1 미디어위키:Liberty-Navbar 편집 요약 없음
- 11:312024년 5월 21일 (화) 11:31 차이 역사 +92 미디어위키:Liberty-Navbar 편집 요약 없음
- 11:302024년 5월 21일 (화) 11:30 차이 역사 +70 미디어위키:Liberty-Navbar 편집 요약 없음
- 10:562024년 5월 21일 (화) 10:56 차이 역사 +23 사용자:신사 편집 요약 없음 최신
- 10:502024년 5월 21일 (화) 10:50 차이 역사 −37 사용자:신사 편집 요약 없음
2024년 4월 21일 (일)
- 07:012024년 4월 21일 (일) 07:01 차이 역사 0 틀:TVT 편집 요약 없음
- 06:592024년 4월 21일 (일) 06:59 차이 역사 0 틀:삼우 편집 요약 없음
- 06:572024년 4월 21일 (일) 06:57 차이 역사 +1 틀:TVT 관련 둘러보기 편집 요약 없음
- 06:542024년 4월 21일 (일) 06:54 차이 역사 0 틀:TVT 편집 요약 없음
- 06:532024년 4월 21일 (일) 06:53 차이 역사 +3 틀:TVT 편집 요약 없음
- 06:512024년 4월 21일 (일) 06:51 차이 역사 +1 틀:TVT 편집 요약 없음
2024년 4월 20일 (토)
- 17:312024년 4월 20일 (토) 17:31 차이 역사 −4 틀:TVT 편집 요약 없음
- 17:292024년 4월 20일 (토) 17:29 차이 역사 0 파일:TVT 라디오 1.svg 신사님이 파일:TVT 라디오 1.svg의 새 판을 올렸습니다 최신
- 17:292024년 4월 20일 (토) 17:29 차이 역사 −1 틀:TVT 편집 요약 없음
- 17:282024년 4월 20일 (토) 17:28 차이 역사 +1 틀:TVT 편집 요약 없음
- 17:232024년 4월 20일 (토) 17:23 차이 역사 0 새글 파일:TVT.svg 편집 요약 없음
- 17:202024년 4월 20일 (토) 17:20 차이 역사 −33 틀:TVT 편집 요약 없음
2024년 4월 12일 (금)
- 18:332024년 4월 12일 (금) 18:33 차이 역사 +6 신영빈 편집 요약 없음 최신
- 18:332024년 4월 12일 (금) 18:33 차이 역사 +138 신영빈 편집 요약 없음
- 18:312024년 4월 12일 (금) 18:31 차이 역사 +14 신영빈 편집 요약 없음
- 18:312024년 4월 12일 (금) 18:31 차이 역사 +3 신영빈 편집 요약 없음
- 18:302024년 4월 12일 (금) 18:30 차이 역사 +6 신영빈 편집 요약 없음
- 18:302024년 4월 12일 (금) 18:30 차이 역사 +1,518 새글 신영빈 새 문서: {| class="wikitable" style="max-width: 420px; width: 100%; float: right; border: 2px solid #1A2032; text-align: left; font-size: 10pt" |- ! colspan="2" style="font-size: 10.5pt; background: #1A2032; color: #FFF" | <div style="margin: 1px 0px">{{글씨 크기|14|신영빈}}</div><br><div style="margin: -25px 0px">Shin Young-bin</div><div style="margin: 26px 0px"></div> |- ! colspan="2" style="background: #1A2032" | <div style="margin: -5px -9px">420px</di...
- 18:212024년 4월 12일 (금) 18:21 차이 역사 0 새글 파일:신영빈.jpg 편집 요약 없음 최신
2024년 3월 31일 (일)
- 14:332024년 3월 31일 (일) 14:33 차이 역사 +2 변정혁 →연출 특징 최신
- 14:332024년 3월 31일 (일) 14:33 차이 역사 −2 변정혁 →연출 특징
- 14:322024년 3월 31일 (일) 14:32 차이 역사 +62 새글 분류:TVT 드라마 PD 새 문서: TVT 드라마 PD와 관련된 분류입니다. 분류:TVT 최신
- 14:322024년 3월 31일 (일) 14:32 차이 역사 +29 변정혁 편집 요약 없음
- 14:282024년 3월 31일 (일) 14:28 차이 역사 +3,212 새글 변정혁 새 문서: {| class="wikitable" style="max-width: 420px; width: 100%; float: right; border: 2px solid #1A2032; text-align: left; font-size: 10pt" |- ! colspan="2" style="font-size: 10.5pt; background: #1A2032; color: #FFF" | <div style="margin: 1px 0px">{{글씨 크기|14|변정혁}}</div><br><div style="margin: -25px 0px">Byeon Jung-hyuk</div><div style="margin: 26px 0px"></div> |- ! colspan="2" style="background: #1A2032" | <div style="margin: -5px -9px">420px<...
- 14:282024년 3월 31일 (일) 14:28 차이 역사 0 새글 파일:변정혁PD.jpg 편집 요약 없음 최신