Okera의 사용자 기여

둘러보기로 이동 검색으로 이동
기여 검색펼치기접기
⧼contribs-top⧽
⧼contribs-date⧽
(최신 | 오래됨) ( | ) (20 | 50 | 100 | 250 | 500) 보기

2023년 7월 12일 (수)

2023년 7월 11일 (화)

  • 22:032023년 7월 11일 (화) 22:03 차이 역사 +34 Okerawiki:연습장편집 요약 없음
  • 22:032023년 7월 11일 (화) 22:03 차이 역사 −943 모듈:HelloWorld편집 요약 없음 최신
  • 22:022023년 7월 11일 (화) 22:02 차이 역사 +1,371 새글 모듈:HelloWorld새 문서: -- 위키백과의 모든 모듈은 테이블 변수를 정의해주는 것부터 시작해야 합니다. -- 이 변수는 모듈 외부에서 접근하는 함수들이 이 모듈을 쓸 수 있게끔 해줍니다. my_object = {}; -- 테이블 변수에 함수를 추가합니다. 함수를 쓸땐 #invoke 명령어로 쓸수 있습니다. -- "frame"엔 위키백과에서 함수를 호출했을 때 같이 전달된 데이터(매개변수 등)가 -- 포함되어 있을 것입니...
  • 22:002023년 7월 11일 (화) 22:00 차이 역사 +12,326 새글 모듈: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.... 최신
  • 22:002023년 7월 11일 (화) 22:00 차이 역사 +5,410 새글 모듈: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) --... 최신
  • 21:592023년 7월 11일 (화) 21:59 차이 역사 +631 새글 모듈:Namespace detect/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...
  • 21:592023년 7월 11일 (화) 21:59 차이 역사 +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. ------------------------------------... 최신
  • 21:582023년 7월 11일 (화) 21:58 차이 역사 +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... 최신
  • 21:582023년 7월 11일 (화) 21:58 차이 역사 +888 새글 모듈: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(... 최신
  • 21:582023년 7월 11일 (화) 21:58 차이 역사 +631 새글 모듈: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... 최신
  • 21:582023년 7월 11일 (화) 21:58 차이 역사 +902 새글 틀:비자유 만화새 문서: {{imbox |종류 = 저작권 |그림 = 64px|link=|저작권 |본문 = 이 파일은 저작권이 있는 '''만화, 웹 만화 또는 만화책의 표지 및 내부 그림'''입니다. 이 파일의 저작권은 보통 출판사나 저자 등이 갖고 있습니다. * 만화의 표지의 경우 ** 해당 만화의 호 문서이거나 ** 정기적으로 발행되는 만화의 여러 호 중 하나이거나 ** 등장인물의 모습... 최신
  • 21:572023년 7월 11일 (화) 21:57 차이 역사 +15 틀:비자유 미디어편집 요약 없음 최신
  • 21:572023년 7월 11일 (화) 21:57 차이 역사 +144 새글 틀:비자유 미디어새 문서: {{#ifeq:{{NAMESPACE}}|파일|분류:모든 비자유 미디어{{#if:{{{1|}}}|[[분류:{{{1}}}]]}}}}<noinclude> {{설명문서}} </noinclude>
  • 21:562023년 7월 11일 (화) 21:56 차이 역사 +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... 최신
  • 21:552023년 7월 11일 (화) 21:55 차이 역사 +826 새글 모듈: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'... 최신
  • 21:552023년 7월 11일 (화) 21:55 차이 역사 +73 새글 틀:Category handler새 문서: {{#invoke:Category handler|main}}<noinclude> {{설명문서}}</noinclude> 최신
  • 21:542023년 7월 11일 (화) 21:54 차이 역사 +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... 최신
  • 21:542023년 7월 11일 (화) 21:54 차이 역사 +44 새글 모듈:Lua banner/설명문서새 문서: {{틀|루아}}의 구현에 사용됩니다. 최신
  • 21:542023년 7월 11일 (화) 21:54 차이 역사 +2,587 새글 모듈:Lua banner새 문서: -- This module implements the {{lua}} template. local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') 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 m... 최신
  • 21:532023년 7월 11일 (화) 21:53 차이 역사 +1,249 새글 틀:루아/설명문서새 문서: {{설명문서 안내}} 이 틀은 루아를 사용하는 틀임을 알려줄 때 사용됩니다. 틀의 /설명문서 페이지 최상단에 위치해야 하며, 이 틀을 사용하면 분류:루아 틀 또는 그 하위 분류에 자동 분류됩니다. == 사용법 == ; 기본: {{tlx|루아|''모듈명''}} ; 모든 매개 변수: {{tlx|루아|''모듈 1''|''모듈 2''|''모듈 3''|...|category{{=}}''custom category''|nocat{{=}}''tru... 최신
  • 21:532023년 7월 11일 (화) 21:53 차이 역사 +125 새글 틀:루아새 문서: <includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{루아|Module:Lua banner}} {{설명문서}} </noinclude> 최신
  • 21:522023년 7월 11일 (화) 21:52 차이 역사 +1,481 새글 모듈:Message box/localize새 문서: -- localize param, message return { type_map = { ['신속'] = 'speedy', ['삭제'] = 'delete', ['내용'] = 'content', ['모양'] = 'style', ['이동'] = 'move', ['보호'] = 'protection', ['안내'] = 'notice', ['경고'] = 'warning', ['편집안내'] = 'editnotice', ['시스템'] = 'system', ['저작권'] = 'license', ['품질'] = 'featured' }, small_map = { ['작게'] = 'yes', ['크게'] = 'no', ['왼쪽'] = 'left' }, arg_map = { ['데모... 최신
  • 21:522023년 7월 11일 (화) 21:52 차이 역사 +5,723 새글 모듈: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 =... 최신
  • 21:522023년 7월 11일 (화) 21:52 차이 역사 +17,733 새글 모듈: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('strict') local getArgs local categoryHandler = require('Module:Category handler')._main local yesno = require('Module:Yesno') local localize = mw.loadData('Module:Message box/localize') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -----... 최신
  • 21:512023년 7월 11일 (화) 21:51 차이 역사 +70 새글 틀:Imbox새 문서: {{#invoke:Message box|imbox}}<noinclude> {{설명문서}} </noinclude> 최신
  • 21:502023년 7월 11일 (화) 21:50 차이 역사 +200 새글 파일:Yamada Taking Picture Kirara style.jpg하마지 아키 《봇치 더 록》에서, 아티스트 사진을 '키라라 점프' 스타일로 찍는 것을 생각하는 야마다 료 최신
(최신 | 오래됨) ( | ) (20 | 50 | 100 | 250 | 500) 보기