모든 공개 기록

광부위키에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.

기록 목록
(최신 | 오래됨) ( | 이전 50개) (20 | 50 | 100 | 250 | 500) 보기
  • 2022년 6월 11일 (토) 00:28 Z0k 토론 기여님이 틀:언어 정보/링귀스트 문서를 만들었습니다 (새 문서: <onlyinclude>{{#if:{{{1<includeonly>|</includeonly>}}} |{{#switch:{{{br|}}}|no=|<br />}}<tt>[http://multitree.linguistlist.org/codes/{{{1<includeonly>|</includeonly>}}} {{{1<includeonly>|</includeonly>}}}]</tt>{{#if:{{{2<includeonly>|</includeonly>}}}| — {{{2<includeonly>|</includeonly>}}}|}}}}</onlyinclude> {{틀|언어 정보}}에서 링귀스트 리스트(LINGUIST List)을 표현하기 위한 틀.)
  • 2022년 6월 11일 (토) 00:28 Z0k 토론 기여님이 모듈:Namespace detect/config 문서를 만들었습니다 (새 문서: -------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --...)
  • 2022년 6월 11일 (토) 00:27 Z0k 토론 기여님이 모듈:Namespace detect/data 문서를 만들었습니다 (새 문서: -------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') local function addKey(...)
  • 2022년 6월 11일 (토) 00:26 Z0k 토론 기여님이 모듈: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...)
  • 2022년 6월 11일 (토) 00:26 Z0k 토론 기여님이 모듈: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(...)
  • 2022년 6월 11일 (토) 00:25 Z0k 토론 기여님이 모듈: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. ------------------------------------...)
  • 2022년 6월 11일 (토) 00:25 Z0k 토론 기여님이 모듈: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...)
  • 2022년 6월 11일 (토) 00:25 Z0k 토론 기여님이 모듈:Message box/configuration 문서를 만들었습니다 (새 문서: local ambox = { types = { speedy = { class = 'ambox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'ambox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'ambox-content', image = 'Ambox important.svg' }, style = { class = 'ambox-style', image = 'Edit-clear.svg' }, move = { class = 'ambox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'ambox-protection', image =...)
  • 2022년 6월 11일 (토) 00:24 Z0k 토론 기여님이 모듈: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 == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val == 'true'...)
  • 2022년 6월 11일 (토) 00:24 Z0k 토론 기여님이 모듈:Category handler 문서를 만들었습니다 (새 문서: -------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace aliases...)
  • 2022년 6월 11일 (토) 00:23 Z0k 토론 기여님이 모듈:Message box 문서를 만들었습니다 (새 문서: -- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Load necessary modules. require('Module:No globals') local getArgs local categoryHandler = require('Module:Category handler')._main local yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -- Define constants local CONFIG_MODULE = 'Module:Mess...)
  • 2022년 6월 10일 (금) 23:11 Z0k 토론 기여님이 틀:사트 이미지맵 문서를 만들었습니다 (새 문서: <center><imagemap> Image:Tasdia_de_sat.png|960px rect 599 2157 114 1736 은 장성연맹 poly 393 361 475 327 597 253 624 158 461 16 305 97 312 260 다이와 poly 584 241 471 325 395 354 329 599 424 571 452 429 508 382 593 401 631 344 구오 poly 427 664 495 664 574 685 599 726 549 775 298 775 298 701 자텐다 황금전단 rect 375 1177 544 1305 레프레누제의 툼라시니노 연방 공화국 poly 638 349 589 410 650 44...)
  • 2022년 6월 10일 (금) 21:52 Z0k 토론 기여님이 틀:Fmbox 문서를 만들었습니다 (새 문서: {{#invoke:Message box|fmbox}}<noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>)
  • 2022년 6월 10일 (금) 21:52 Z0k 토론 기여님이 틀:틀 설명문서/끝상자 문서를 만들었습니다 (새 문서: <noinclude><div></noinclude><div style="clear: both;"></div><!--So right or left floating items don't stick out of the doc box.--> </div><!--녹색 설명상자 끝--><!-- 설명문서 메타 데이터에 대한 연결상자: -->{{#if: <!--연결상자를 보여줄지 체크--> {{#ifeq: {{{연결상자|}}} | off | | {{{설명있음|yes}}}{{ #switch: {{SUBJECTSPACE}} | {{ns:User}} | {{ns:Template}} = yes }} }} | {{fmbox | id = documentation-meta-da...)
  • 2022년 6월 10일 (금) 21:52 Z0k 토론 기여님이 틀:틀 설명문서/끝상자2 문서를 만들었습니다 (새 문서: <noinclude><div></noinclude>{{틀 설명문서/끝상자 | 미리싣기 = {{{미리싣기|}}} <!--사용자 미리싣기 지원--> | 내용 = {{{내용|}}} | 연결상자 = {{{연결상자|}}} <!--So "연결상자=off" works--> | 설명문서 = {{#if: {{{1|}}} | {{{1|}}} | {{{설명공간|{{NAMESPACE}}}}}:{{{틀문서|{{PAGENAME}}}}}/설명문서 }} | 설명있음 = {{#ifexist: {{#if: {{{1|}}} | {{{1|}}} <!--주어진 다른 설명이름--> | {{{설...)
  • 2022년 6월 10일 (금) 21:51 Z0k 토론 기여님이 틀:틀 문서를 만들었습니다 (새 문서: {{[[틀:{{{1}}}|{{{1}}}]]}}<noinclude> {{틀 설명문서}} </noinclude>)
  • 2022년 6월 10일 (금) 21:51 Z0k 토론 기여님이 틀:틀 설명문서/틀문서 문서를 만들었습니다 (새 문서: {{#switch: {{SUBPAGENAME}} | 연습장 | 시험장 = {{BASEPAGENAME}} | #default = {{PAGENAME}} }}<noinclude>{{틀 설명문서|내용= {{틀|틀 설명문서}}에서 설명문서가 들어갈 수 있는 이름공간을 돌려줍니다. }} </noinclude>)
  • 2022년 6월 10일 (금) 21:51 Z0k 토론 기여님이 틀:틀 설명문서/설명공간 문서를 만들었습니다 (새 문서: {{#switch: {{SUBJECTSPACE}} | {{ns:0}} | {{ns:File}} | {{ns:MediaWiki}} | {{ns:Category}} = {{TALKSPACE}} | #default = {{SUBJECTSPACE}} }}<noinclude> {{틀 설명문서|내용={{틀|틀 설명문서}}에서 설명문서가 들어갈 수 있는 이름공간을 돌려줍니다. }} </noinclude>)
  • 2022년 6월 10일 (금) 21:50 Z0k 토론 기여님이 틀:틀 설명문서/시작상자 문서를 만들었습니다 (새 문서: <!-- 녹색 설명상자 시작 --><div id="template-documentation" class="template-documentation iezoomfix"><!-- 설명상자 위에 제목을 추가한다: -->{{#ifeq: {{{제목|¬}}} | <!--Defined but empty--> | <!--"제목=", do nothing--> | <div style="padding-bottom: 3px; border-bottom: 1px solid #aaa; margin-bottom: 1ex;"><span style="{{#if: {{{제목-모양|}}} | {{{제목-모양|}}} | {{#ifeq: {{SUBJECTSPACE}} | {{ns:Template}} | font-weight: bold; font-size...)
  • 2022년 6월 10일 (금) 21:50 Z0k 토론 기여님이 틀:틀 설명문서/시작상자2 문서를 만들었습니다 (새 문서: {{틀 설명문서/시작상자 | 미리싣기 = {{{미리싣기|}}} <!--사용자 미리싣기 지원--> | 제목 = {{{제목|¬}}} <!--빈 값을 넣으면 헤더를 없앤다--> | 제목-모양 = {{{제목-모양|}}} | 내용 = {{{내용|}}} | 설명문서 = {{#if: {{{1|}}} | {{{1|}}} | {{{설명공간|{{NAMESPACE}}}}}:{{{틀문서|{{PAGENAME}}}}}/설명문서 }} | 설명있음 = {{#ifexist: {{#if: {{{1|}}} | {{{1|}}} <!--다른 설명문서가 주...)
  • 2022년 6월 10일 (금) 21:50 Z0k 토론 기여님이 틀:틀 기타 문서를 만들었습니다 (새 문서: {{#switch: <!--"데모공간"이 따로 주어지지 않으며 자동으로 이름공간을 검출한다. --> {{#if:{{{데모공간|}}} | {{lc: {{{데모공간}}} }} <!--Use lower case "데모공간"--> | {{#ifeq:{{NAMESPACE}}|{{ns:Template}} | 틀 | 기타 }} }} | 틀 = {{{1|}}} | template = {{{1|}}} | 기타 | #default = {{{2|}}} }}<!--End switch--><noinclude> {{틀 설명문서}} <!-- Add categories and interwikis to the /doc subpage, not here! -->...)
  • 2022년 6월 10일 (금) 21:48 Z0k 토론 기여님이 틀:틀 설명문서 문서를 만들었습니다 (새 문서: <!-- /연습장 문서에 대해서 자동으로 {{틀 연습장 안내}}를 붙인다. -->{{#ifeq: {{하위문서이름}} | 연습장 | <div style="clear: both;"></div>{{틀 연습장 안내}} }}<!-- 보호된 틀에 자동으로 {{보호-틀}} 틀을 붙인다. -->{{틀 기타 | {{#ifeq: {{보호수준:move}} | sysop | {{보호-틀}} | {{#if: {{보호수준:edit}} | {{보호-틀}} | <!--비보호, 또는 이동-준보호--> }} }} }}<!-- 녹색 설명문...)
  • 2022년 6월 10일 (금) 21:48 Z0k 토론 기여님이 틀:학교 정보 문서를 만들었습니다 (새 문서: <onlyinclude>{| class="infobox" style="width:22em;" |- | colspan="2" | <div style="background:lightsteelblue; position:relative; width:300px; height:50px; display:table;"><div style="position:absolute; bottom:0px; right:0;"></div><span style="position:relative; width:100%; display:table-cell; vertical-align:middle; text-align:center; padding:4px;"><big><big>'''{{{이름|{{PAGENAME}}}}}'''</big></big>{{#if: {{{한자표기<includeonly>|</includeonly>}}}|<br /><big>{{{한자표기...)
  • 2022년 6월 10일 (금) 21:30 Z0k 토론 기여님이 파일:Iremna Tinbloods.png의 새 판을 올렸습니다
  • 2022년 6월 10일 (금) 21:18 Z0k 토론 기여님이 틀:바란 문서를 만들었습니다 (새 문서: {| class="wikitable" style="width: 100%; border: 1px;" ! style="background: linear-gradient(90deg, rgba(44,94,198,1) 0%, rgba(72,123,227,1) 20%, rgba(72,123,227,1) 80%, rgba(44,94,198,1) 100%); padding: 10px 0 20px 0;" |<span style="color:white;"><span style="color:white;">+</span></span>x160px|가운데|link=바란150px|가운데 |- | style="text-align: center; text-color: #f2c004;" |왕조 ·...)
  • 2022년 6월 10일 (금) 21:14 Z0k 토론 기여님이 틀:나라자료 한국 문서를 만들었습니다 (새 문서: {{보호 문서|크기=작게}} <onlyinclude>{{ {{{1</onlyinclude>|나라자료/설명문서<onlyinclude>}}} | 나라이름 = 한국 | 국기그림 = Flag of South Korea.svg | 국기그림-한반도 = Unification flag of Korea.svg | 국기그림-통합 = Unification flag of Korea.svg | 국기그림-남조선민족해방전선 = Flag of National Liberation Front of Southern Korea.svg | 국기그림-남조선로동당 = Flag of the People's Republic of Japan (Proposal).png | 국...)
  • 2022년 6월 10일 (금) 20:56 Z0k 토론 기여님이 참기름 문서를 만들었습니다 (구오/참기름 문서로 넘겨주기) 태그: 새 넘겨주기
  • 2022년 6월 10일 (금) 20:46 Z0k 토론 기여님이 모듈: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...)
  • 2022년 6월 10일 (금) 20:45 Z0k 토론 기여님이 모듈:No globals 문서를 만들었습니다 (새 문서: local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('Tried to read nil global ' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('Tried to write global ' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt))
  • 2022년 6월 10일 (금) 20:44 Z0k 토론 기여님이 모듈:TreeChart/data 문서를 만들었습니다 (새 문서: local SLD = '1px solid black' local DSH = '1px dashed black' local DOT = '1px dotted black' local data = { ['!'] = { t = { { attr = { rowspan = '2' }, style = { ['border-right'] = SLD, width = '1em', height = '2em' } }, { attr = { rowspan = '2' }, style = { width = '1em', height = '2em' } } } }, ['%'] = { b = { { style = { ['border-right'] = DSH, width = '1em', height = '1em' } }, { style = { width = '1em', height = '1em' } } }, t = { { style = { ['border-right...)
  • 2022년 6월 10일 (금) 20:44 Z0k 토론 기여님이 모듈:TreeChart 문서를 만들었습니다 (새 문서: require('Module:No globals') local p = {} local cells = mw.loadData('Module:TreeChart/data') function p._main(cell_args) local ret = mw.html.create() local top = ret:tag('tr') :css{ height = '1px', ['text-align'] = 'center' } local bottom = ret:tag('tr') :css{ height = '1px', ['text-align'] = 'center' } for _, v in ipairs(cell_args) do if type(v) == 'string' then top:wikitext(cells[v].t) bottom:wikitext(cells[v].b) else top:tag('td...)
  • 2022년 6월 10일 (금) 20:42 Z0k 토론 기여님이 틀:차트/시작 문서를 만들었습니다 (새 문서: <table style="border-spacing: 0px; {{#switch: {{{정렬|{{{align|}}}}}} |왼쪽|left = float: left; |오른쪽|right = float: right; |가운데|중앙|center = margin: 0 auto; |#default = }} {{{모양|{{{style|}}}}}}"><noinclude> {{차트/끝}} {{설명문서}} </noinclude>)
  • 2022년 6월 10일 (금) 20:42 Z0k 토론 기여님이 틀:차트/끝 문서를 만들었습니다 (새 문서: </table><noinclude>{{설명문서|내용=이 틀은 {{틀|차트/시작}}과 {{틀|차트}}와 함께 쓰입니다. 자세한 설명은 해당 문서를 참고하세요.}} 분류:차트 틀</noinclude>)
  • 2022년 6월 10일 (금) 20:42 Z0k 토론 기여님이 틀:차트 문서를 만들었습니다 (새 문서: <includeonly>{{#invoke:TreeChart|main}}</includeonly><noinclude>{{설명문서}}</noinclude>)
  • 2022년 6월 10일 (금) 20:37 Z0k 토론 기여님이 틀:나라자료 스샤툴루아 문서를 만들었습니다 (새 문서: 이 틀은 각종 나라자료 틀의 뼈대이며 예시입니다. 실제로 사용되는 틀이 아닙니다. 이 틀로 만들어진 실제의 나라자료 틀을 확인하려면 분류:나라자료 틀을 참고하세요. 아래는 설명문서의 예시입니다. ---- <onlyinclude>{{ {{{1</onlyinclude>|나라자료/설명문서<onlyinclude>}}} | 나라이름 = 스샤툴루아 | 국기그림 = 스샤툴루아국기.png <!-- 다른 국기를 등록하시려면 | 국...)
  • 2022년 6월 10일 (금) 20:37 Z0k 토론 기여님이 틀:나라자료 울타펭차르 문서를 만들었습니다 (새 문서: 이 틀은 각종 나라자료 틀의 뼈대이며 예시입니다. 실제로 사용되는 틀이 아닙니다. 이 틀로 만들어진 실제의 나라자료 틀을 확인하려면 분류:나라자료 틀을 참고하세요. 아래는 설명문서의 예시입니다. ---- <onlyinclude>{{ {{{1</onlyinclude>|나라자료/설명문서<onlyinclude>}}} | 나라이름 = 울타펭차르 | 국기그림 = 울타펭차르국기.png <!-- 다른 국기를 등록하시려면 | 국...)
  • 2022년 6월 10일 (금) 20:37 Z0k 토론 기여님이 분류:나라자료 틀 문서를 만들었습니다 (빈 문서를 만듦)
  • 2022년 6월 10일 (금) 20:36 Z0k 토론 기여님이 틀:나라자료 헤스할디레 문서를 만들었습니다 (새 문서: 이 틀은 각종 나라자료 틀의 뼈대이며 예시입니다. 실제로 사용되는 틀이 아닙니다. 이 틀로 만들어진 실제의 나라자료 틀을 확인하려면 분류:나라자료 틀을 참고하세요. 아래는 설명문서의 예시입니다. ---- <onlyinclude>{{ {{{1</onlyinclude>|나라자료/설명문서<onlyinclude>}}} | 나라이름 = 헤스할디레 | 국기그림 = 헤스할디레국기.png <!-- 다른 국기를 등록하시려면 | 국...)
  • 2022년 6월 10일 (금) 02:33 Z0k 토론 기여님이 틀:해상전술단 문서를 만들었습니다 (새 문서: 분류:사트분류:구오분류:오팔투 {| class ="wikitable" style="width: 100%; font-size: 10pt; text-align: center; margin-bottom: 0px;" ! style="text-align: center;" | {{틀 링크|해상전술단|#2c2c2c|8}}<div style="margin: 4px 0;">x50px|link=해상전술단</div> |- ! style="padding: 0;" | 해상전술단 |} <!--{| class="wikitable" style="width: 100%; text-align: center; margin-top: -1px;" | style="padding-top: 10px;...)
  • 2022년 6월 10일 (금) 02:30 Z0k 토론 기여님이 파일:회색해전단상징.png 문서를 만들었습니다
  • 2022년 6월 10일 (금) 02:30 Z0k 토론 기여님이 파일:회색해전단상징.png 파일을 올렸습니다
  • 2022년 6월 10일 (금) 02:30 Z0k 토론 기여님이 파일:흑색해전단상징.png 문서를 만들었습니다
  • 2022년 6월 10일 (금) 02:30 Z0k 토론 기여님이 파일:흑색해전단상징.png 파일을 올렸습니다
  • 2022년 6월 10일 (금) 02:30 Z0k 토론 기여님이 파일:청색해전단상징.png 문서를 만들었습니다
  • 2022년 6월 10일 (금) 02:30 Z0k 토론 기여님이 파일:청색해전단상징.png 파일을 올렸습니다
  • 2022년 6월 10일 (금) 02:30 Z0k 토론 기여님이 파일:백색해전단상징.png 문서를 만들었습니다
  • 2022년 6월 10일 (금) 02:30 Z0k 토론 기여님이 파일:백색해전단상징.png 파일을 올렸습니다
  • 2022년 6월 10일 (금) 02:29 Z0k 토론 기여님이 파일:회색492대표이미지.png 문서를 파일:회색육전단상징.png 문서로 이동했습니다
  • 2022년 6월 9일 (목) 18:01 Z0k 토론 기여님이 틀:글씨 크기 문서를 만들었습니다 (새 문서: <span style="font-size:{{{1|}}}pt;">{{{2|}}}</span>)
  • 2022년 6월 9일 (목) 15:58 Z0k 토론 기여 계정이 생성되었습니다
(최신 | 오래됨) ( | 이전 50개) (20 | 50 | 100 | 250 | 500) 보기